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 |
|---|---|---|---|---|---|
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>Function template operator==</title>
<link rel="stylesheet" href="../../../../doc/src/boostbook.css" type="text/css">
<meta name="generator" content="DocBook XSL Stylesheets V1.76.1">
<link rel="home" href="../../index.html" title="The Boost C++ Libraries BoostBook Documentation Subset">
<link rel="up" href="../../boost_interprocess_reference.html#header.boost.interprocess.smart_ptr.intrusive_ptr_hpp" title="Header <boost/interprocess/smart_ptr/intrusive_ptr.hpp>">
<link rel="prev" href="intrusive_ptr.html" title="Class template intrusive_ptr">
<link rel="next" href="operator___id997632.html" title="Function template operator!=">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
<table cellpadding="2" width="100%"><tr>
<td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../boost.png"></td>
<td align="center"><a href="../../../../index.html">Home</a></td>
<td align="center"><a href="../../../../libs/libraries.htm">Libraries</a></td>
<td align="center"><a href="http://www.boost.org/users/people.html">People</a></td>
<td align="center"><a href="http://www.boost.org/users/faq.html">FAQ</a></td>
<td align="center"><a href="../../../../more/index.htm">More</a></td>
</tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="intrusive_ptr.html"><img src="../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../boost_interprocess_reference.html#header.boost.interprocess.smart_ptr.intrusive_ptr_hpp"><img src="../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="operator___id997632.html"><img src="../../../../doc/src/images/next.png" alt="Next"></a>
</div>
<div class="refentry">
<a name="boost.interprocess.operator==_id997590"></a><div class="titlepage"></div>
<div class="refnamediv">
<h2><span class="refentrytitle">Function template operator==</span></h2>
<p>boost::interprocess::operator==</p>
</div>
<h2 xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv-title">Synopsis</h2>
<div xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv"><pre class="synopsis"><span class="comment">// In header: <<a class="link" href="../../boost_interprocess_reference.html#header.boost.interprocess.smart_ptr.intrusive_ptr_hpp" title="Header <boost/interprocess/smart_ptr/intrusive_ptr.hpp>">boost/interprocess/smart_ptr/intrusive_ptr.hpp</a>>
</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> T<span class="special">,</span> <span class="keyword">typename</span> U<span class="special">,</span> <span class="keyword">typename</span> VP<span class="special">></span>
<span class="keyword">bool</span> <span class="keyword">operator</span><span class="special">==</span><span class="special">(</span><a class="link" href="intrusive_ptr.html" title="Class template intrusive_ptr">intrusive_ptr</a><span class="special"><</span> <span class="identifier">T</span><span class="special">,</span> <span class="identifier">VP</span> <span class="special">></span> <span class="keyword">const</span> <span class="special">&</span> a<span class="special">,</span>
<a class="link" href="intrusive_ptr.html" title="Class template intrusive_ptr">intrusive_ptr</a><span class="special"><</span> <span class="identifier">U</span><span class="special">,</span> <span class="identifier">VP</span> <span class="special">></span> <span class="keyword">const</span> <span class="special">&</span> b<span class="special">)</span><span class="special">;</span></pre></div>
<div class="refsect1">
<a name="id1842072"></a><h2>Description</h2>
<p>Returns a.get() == b.get(). Does not throw </p>
</div>
</div>
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
<td align="left"></td>
<td align="right"><div class="copyright-footer">Copyright © 2005-2011 Ion Gaztanaga<p>
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)
</p>
</div></td>
</tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="intrusive_ptr.html"><img src="../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../boost_interprocess_reference.html#header.boost.interprocess.smart_ptr.intrusive_ptr_hpp"><img src="../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="operator___id997632.html"><img src="../../../../doc/src/images/next.png" alt="Next"></a>
</div>
</body>
</html>
| djsedulous/namecoind | libs/boost_1_50_0/doc/html/boost/interprocess/operator___id997590.html | HTML | mit | 5,034 |
{% if feed.elementGroup %}
{% set calendarId = feed.elementGroup[elementType] %}
{% set calendar = craft.calendar.calendar({ id: calendarId }) %}
{% endif %}
{% set users = [{ label: 'Don\'t import', value: '' }] %}
{% if CraftEdition >= CraftClient %}
{% for user in craft.users.can('createEvents:' ~ calendarId) %}
{% set users = users | merge([{ label: user, value: user.id }]) %}
{% endfor %}
{% endif %}
{% set fields = [{
label: 'Title' | t,
handle: 'title',
required: true,
default: forms.textField({
id: 'fieldDefaults-title',
name: 'fieldDefaults[title]',
value: feed.fieldDefaults.title ?? '',
}),
}, {
label: 'Slug' | t,
handle: 'slug',
instructions: 'If not set, the Slug will be automatically created from Title.' | t,
}, {
label: 'Start Date' | t,
handle: 'startDate',
required: true,
instructions: 'Accepts Unix timestamp, or just about any English textual datetime description.' | t,
default: forms.dateTimeField({
id: 'fieldDefaults-startDate',
name: 'fieldDefaults[startDate]',
value: feed.fieldDefaults.startDate is defined ? craft.feedme.formatDateTime(feed.fieldDefaults.startDate) : '',
}),
}, {
label: 'End Date' | t,
handle: 'endDate',
required: true,
instructions: 'Accepts Unix timestamp, or just about any English textual datetime description.' | t,
default: forms.dateTimeField({
id: 'fieldDefaults-endDate',
name: 'fieldDefaults[endDate]',
value: feed.fieldDefaults.endDate is defined ? craft.feedme.formatDateTime(feed.fieldDefaults.endDate) : '',
}),
}, {
label: 'All Day' | t,
handle: 'allDay',
instructions: 'Whether this event is all day or not.' | t,
default: forms.selectField({
id: 'fieldDefaults-allDay',
name: 'fieldDefaults[allDay]',
value: feed.fieldDefaults.allDay is defined ? feed.fieldDefaults.allDay : '',
options: [
{ label: 'Don\'t import', value: '' },
{ label: 'Yes', value: '1' },
{ label: 'No', value: '0' },
],
}),
}, {
label: 'Enabled' | t,
handle: 'enabled',
instructions: 'Choose either a default status from the list or the imported field that will contain the status.' | t,
default: forms.selectField({
id: 'fieldDefaults-enabled',
name: 'fieldDefaults[enabled]',
value: feed.fieldDefaults.enabled is defined ? feed.fieldDefaults.enabled : '',
options: [
{ label: 'Don\'t import', value: '' },
{ label: 'Enabled', value: '1' },
{ label: 'Disabled', value: '0' },
],
}),
}, {
label: 'Author' | t,
handle: 'authorId',
instructions: 'Entries will be assigned to the user in this field. If the field does not match any existing member, the default author will be assigned.' | t,
default: forms.selectField({
id: 'fieldDefaults-authorId',
name: 'fieldDefaults[authorId]',
value: feed.fieldDefaults.authorId ?? '',
options: users,
}),
}, {
label: 'Event ID' | t,
handle: 'id',
instructions: '<strong class="error">Warning: </strong>This should only be used for an existing Solspace Event ID.' | t,
}] %}
<h2>{{ 'Event Fields' | t }}</h2>
<table class="feedme-mapping data fullwidth collapsible">
<thead>
<th>{{ 'Field' | t }}</th>
<th>{{ 'Feed Element' | t }}</th>
<th>{{ 'Default Value' | t }}</th>
</thead>
<tbody>
{% for field in fields if field %}
{{ feedMeMacro.generateRow(_context, field) }}
{% endfor %}
</tbody>
</table>
{% set recurrenceFields = [{
label: 'Repeat Rule' | t,
handle: 'rrule',
}, {
label: 'Repeat Interval' | t,
handle: 'interval',
}, {
label: 'Repeat Frequency' | t,
handle: 'freq',
}, {
label: 'Repeat Count' | t,
handle: 'count',
}, {
label: 'Until' | t,
handle: 'until',
}, {
label: 'By Month' | t,
handle: 'byMonth',
}, {
label: 'By Year Day' | t,
handle: 'byYearDay',
}, {
label: 'By Month Day' | t,
handle: 'byMonthDay',
}, {
label: 'By Day' | t,
handle: 'byDay',
}] %}
<h2>{{ 'Recurrence Fields' | t }}</h2>
<table class="feedme-mapping data fullwidth collapsible">
<thead>
<th>{{ 'Field' | t }}</th>
<th>{{ 'Feed Element' | t }}</th>
<th>{{ 'Default Value' | t }}</th>
</thead>
<tbody>
{% for field in recurrenceFields if field %}
{{ feedMeMacro.generateRow(_context, field) }}
{% endfor %}
</tbody>
</table>
{% for tab in craft.fields.getLayoutById(calendar.fieldLayoutId).getTabs() %}
<hr>
<h2>{{ tab.name }} Fields</h2>
<table class="feedme-mapping data fullwidth collapsible">
<thead>
<th>{{ 'Field' | t }}</th>
<th>{{ 'Feed Element' | t }}</th>
<th>{{ 'Default Value' | t }}</th>
</thead>
<tbody>
{% for fieldtype in tab.getFields() %}
{% set field = fieldtype.getField() %}
{% set variables = { field: field, fieldtype: fieldtype, feed: feed, feedData: feedData } %}
{% include 'feedme/_includes/field' with variables %}
{% endfor %}
</tbody>
</table>
{% endfor %}
<hr>
<h2>{{ "Set a unique identifier for existing elements" | t }}</h2>
<p>{{ "Select the fields you want to use to check for existing elements. When selected, Feed Me will look for existing elements that match the fields provided below and either update, or skip depending on your choice of Import Strategy." | t }}</p>
{% set fields = fields | merge(recurrenceFields) %}
{% for tab in craft.fields.getLayoutById(calendar.fieldLayoutId).getTabs() %}
{% for fieldtype in tab.getFields() %}
{% set field = fieldtype.getField() %}
{% set fields = fields | merge([{ label: field.name, handle: field.handle }]) %}
{% endfor %}
{% endfor %}
<div class="feedme-uniques">
{% for field in fields if field %}
{{ forms.checkboxField({
name: 'fieldUnique[' ~ field.handle ~ ']',
label: field.label,
checked: feed.fieldUnique[field.handle] ?? '',
}) }}
{% endfor %}
</div>
| engram-design/FeedMe-Helpers | calendarhelper/templates/_integrations/feedme/elementtypes/map.html | HTML | mit | 6,337 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (version 1.7.0_75) on Wed Apr 01 17:01:07 CEST 2015 -->
<title>Uses of Class roulette.Outcome</title>
<meta name="date" content="2015-04-01">
<link rel="stylesheet" type="text/css" href="../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class roulette.Outcome";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../roulette/Outcome.html" title="class in roulette">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../index-files/index-1.html">Index</a></li>
<li><a href="../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../index.html?roulette/class-use/Outcome.html" target="_top">Frames</a></li>
<li><a href="Outcome.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h2 title="Uses of Class roulette.Outcome" class="title">Uses of Class<br>roulette.Outcome</h2>
</div>
<div class="classUseContainer">
<ul class="blockList">
<li class="blockList">
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation">
<caption><span>Packages that use <a href="../../roulette/Outcome.html" title="class in roulette">Outcome</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Package</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href="#roulette">roulette</a></td>
<td class="colLast"> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="#roulette.bet">roulette.bet</a></td>
<td class="colLast"> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="#roulette.bin">roulette.bin</a></td>
<td class="colLast"> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="#roulette.wheel">roulette.wheel</a></td>
<td class="colLast"> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="roulette">
<!-- -->
</a>
<h3>Uses of <a href="../../roulette/Outcome.html" title="class in roulette">Outcome</a> in <a href="../../roulette/package-summary.html">roulette</a></h3>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../roulette/package-summary.html">roulette</a> with parameters of type <a href="../../roulette/Outcome.html" title="class in roulette">Outcome</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>int</code></td>
<td class="colLast"><span class="strong">Outcome.</span><code><strong><a href="../../roulette/Outcome.html#compareTo(roulette.Outcome)">compareTo</a></strong>(<a href="../../roulette/Outcome.html" title="class in roulette">Outcome</a> other)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><span class="strong">Outcome.</span><code><strong><a href="../../roulette/Outcome.html#equals(roulette.Outcome)">equals</a></strong>(<a href="../../roulette/Outcome.html" title="class in roulette">Outcome</a> other)</code> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="roulette.bet">
<!-- -->
</a>
<h3>Uses of <a href="../../roulette/Outcome.html" title="class in roulette">Outcome</a> in <a href="../../roulette/bet/package-summary.html">roulette.bet</a></h3>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing constructors, and an explanation">
<caption><span>Constructors in <a href="../../roulette/bet/package-summary.html">roulette.bet</a> with parameters of type <a href="../../roulette/Outcome.html" title="class in roulette">Outcome</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colLast"><code><strong><a href="../../roulette/bet/Bet.html#Bet(int,%20roulette.Outcome)">Bet</a></strong>(int amount,
<a href="../../roulette/Outcome.html" title="class in roulette">Outcome</a> outcome)</code> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="roulette.bin">
<!-- -->
</a>
<h3>Uses of <a href="../../roulette/Outcome.html" title="class in roulette">Outcome</a> in <a href="../../roulette/bin/package-summary.html">roulette.bin</a></h3>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../roulette/bin/package-summary.html">roulette.bin</a> that return types with arguments of type <a href="../../roulette/Outcome.html" title="class in roulette">Outcome</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>java.util.Set<<a href="../../roulette/Outcome.html" title="class in roulette">Outcome</a>></code></td>
<td class="colLast"><span class="strong">Bin.</span><code><strong><a href="../../roulette/bin/Bin.html#getOutcomes()">getOutcomes</a></strong>()</code> </td>
</tr>
</tbody>
</table>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../roulette/bin/package-summary.html">roulette.bin</a> with parameters of type <a href="../../roulette/Outcome.html" title="class in roulette">Outcome</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="strong">Bin.</span><code><strong><a href="../../roulette/bin/Bin.html#add(roulette.Outcome)">add</a></strong>(<a href="../../roulette/Outcome.html" title="class in roulette">Outcome</a> outcome)</code> </td>
</tr>
</tbody>
</table>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing constructors, and an explanation">
<caption><span>Constructors in <a href="../../roulette/bin/package-summary.html">roulette.bin</a> with parameters of type <a href="../../roulette/Outcome.html" title="class in roulette">Outcome</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colLast"><code><strong><a href="../../roulette/bin/Bin.html#Bin(roulette.Outcome[])">Bin</a></strong>(<a href="../../roulette/Outcome.html" title="class in roulette">Outcome</a>[] outcomeArray)</code> </td>
</tr>
</tbody>
</table>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing constructors, and an explanation">
<caption><span>Constructor parameters in <a href="../../roulette/bin/package-summary.html">roulette.bin</a> with type arguments of type <a href="../../roulette/Outcome.html" title="class in roulette">Outcome</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colLast"><code><strong><a href="../../roulette/bin/Bin.html#Bin(java.util.Set)">Bin</a></strong>(java.util.Set<<a href="../../roulette/Outcome.html" title="class in roulette">Outcome</a>> outcomeCollection)</code> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="roulette.wheel">
<!-- -->
</a>
<h3>Uses of <a href="../../roulette/Outcome.html" title="class in roulette">Outcome</a> in <a href="../../roulette/wheel/package-summary.html">roulette.wheel</a></h3>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../roulette/wheel/package-summary.html">roulette.wheel</a> that return <a href="../../roulette/Outcome.html" title="class in roulette">Outcome</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code><a href="../../roulette/Outcome.html" title="class in roulette">Outcome</a></code></td>
<td class="colLast"><span class="strong">Wheel.</span><code><strong><a href="../../roulette/wheel/Wheel.html#getOutcome(java.lang.String)">getOutcome</a></strong>(java.lang.String name)</code>
<div class="block">Returns the outcome corresponding to a certain outcome name.</div>
</td>
</tr>
</tbody>
</table>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../roulette/wheel/package-summary.html">roulette.wheel</a> with parameters of type <a href="../../roulette/Outcome.html" title="class in roulette">Outcome</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="strong">Wheel.</span><code><strong><a href="../../roulette/wheel/Wheel.html#addOutcomeToBin(int,%20roulette.Outcome)">addOutcomeToBin</a></strong>(int binIndex,
<a href="../../roulette/Outcome.html" title="class in roulette">Outcome</a> outcome)</code>
<div class="block">Associates the bin at index binIndex with the given Outcome.</div>
</td>
</tr>
</tbody>
</table>
</li>
</ul>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../roulette/Outcome.html" title="class in roulette">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../index-files/index-1.html">Index</a></li>
<li><a href="../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../index.html?roulette/class-use/Outcome.html" target="_top">Frames</a></li>
<li><a href="Outcome.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>
| 2d6/roulette | doc/roulette/class-use/Outcome.html | HTML | mit | 12,665 |
<!doctype html>
<!--[if lt IE 7]><html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
<!--[if (IE 7)&!(IEMobile)]><html class="no-js lt-ie9 lt-ie8" lang="en"><![endif]-->
<!--[if (IE 8)&!(IEMobile)]><html class="no-js lt-ie9" lang="en"><![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"><!--<![endif]-->
<head>
<meta charset="utf-8">
<title>About the Developer – Musings of a Developer</title>
<meta name="description" content="I am a 23 year old, Front-End Developer working at an amazing startup: [Ziftr.com](http://www.ziftr.com).">
<!-- Twitter Cards -->
<meta name="twitter:title" content="About the Developer">
<meta name="twitter:description" content="I am a 23 year old, Front-End Developer working at an amazing startup: [Ziftr.com](http://www.ziftr.com).">
<meta name="twitter:card" content="summary">
<meta name="twitter:image" content="/images/site-logo.png">
<!-- Open Graph -->
<meta property="og:locale" content="en_US">
<meta property="og:type" content="article">
<meta property="og:title" content="About the Developer">
<meta property="og:description" content="I am a 23 year old, Front-End Developer working at an amazing startup: [Ziftr.com](http://www.ziftr.com).">
<meta property="og:url" content="/about/">
<meta property="og:site_name" content="Musings of a Developer">
<link rel="canonical" href="/about/">
<link href="/feed.xml" type="application/atom+xml" rel="alternate" title="Musings of a Developer Feed">
<!-- http://t.co/dKP3o1e -->
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- For all browsers -->
<link rel="stylesheet" href="/assets/css/main.css">
<!-- Webfonts -->
<script src="//use.edgefonts.net/source-sans-pro:n2,i2,n3,i3,n4,i4,n6,i6,n7,i7,n9,i9;source-code-pro:n4,n7;volkhov.js"></script>
<meta http-equiv="cleartype" content="on">
<!-- HTML5 Shiv and Media Query Support -->
<!--[if lt IE 9]>
<script src="/assets/js/vendor/html5shiv.min.js"></script>
<script src="/assets/js/vendor/respond.min.js"></script>
<![endif]-->
<!-- Modernizr -->
<script src="/assets/js/vendor/modernizr-2.7.1.custom.min.js"></script>
<!-- Icons -->
<!-- 16x16 -->
<link rel="shortcut icon" href="/favicon.ico">
<!-- 32x32 -->
<link rel="shortcut icon" href="/favicon.png">
<!-- 57x57 (precomposed) for iPhone 3GS, pre-2011 iPod Touch and older Android devices -->
<link rel="apple-touch-icon-precomposed" href="/images/apple-touch-icon-precomposed.png">
<!-- 72x72 (precomposed) for 1st generation iPad, iPad 2 and iPad mini -->
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="/images/apple-touch-icon-72x72-precomposed.png">
<!-- 114x114 (precomposed) for iPhone 4, 4S, 5 and post-2011 iPod Touch -->
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="/images/apple-touch-icon-114x114-precomposed.png">
<!-- 144x144 (precomposed) for iPad 3rd and 4th generation -->
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="/images/apple-touch-icon-144x144-precomposed.png">
</head>
<body id="page">
<div class="navigation-wrapper">
<nav role="navigation" id="site-nav" class="animated drop">
<ul>
<li><a href="/about/" >About</a></li>
<li><a href="/articles/" >Articles</a></li>
<li><a href="/blog/" >Blog</a></li>
<li class="dosearch"><i class="fa fa-search"></i> Search</li>
</ul>
</nav>
</div><!-- /.navigation-wrapper -->
<!--[if lt IE 9]><div class="upgrade"><strong><a href="http://whatbrowser.org/">Your browser is quite old!</strong> Why not upgrade to a different browser to better enjoy this site?</a></div><![endif]-->
<div class="search-wrapper">
<div class="search-form">
<input type="text" class="search-field" placeholder="Search...">
<button class="close-btn"><i class="fa fa-times-circle fa-2x"></i></button>
<ul class="search-results post-list"></ul><!-- /.search-results -->
</div><!-- /.search-form -->
</div><!-- ./search-wrapper -->
<header class="masthead">
<div class="wrap">
<a href="/" class="site-logo" rel="home" title="Musings of a Developer"><h1 class="masthead_logo animated bounceInDown">{ MMK }</h1></a>
<h1 class="site-title animated fadeIn"><a href="/">Musings of a Developer</a></h1>
<h2 class="site-description animated fadeIn" itemprop="description">Thoughts, ideas, rants, useful tech stuff.</h2>
</div>
</header><!-- /.masthead -->
<div id="main" role="main">
<article class="entry">
<div class="entry-wrapper">
<header class="entry-header">
<h1 class="entry-title">About the Developer</h1>
</header>
<div class="entry-content">
<p>I am a 23 year old, Front-End Developer working at an amazing startup: <a href="http://www.ziftr.com">Ziftr.com</a>.</p>
<!-- ## So Simple Theme is all about:
* Responsive templates. Looking good on mobile, tablet, and desktop.
* Gracefully degrading in older browsers. Compatible with Internet Explorer 9+ and all modern browsers.
* Minimal embellishments and subtle animations.
* Readable typography to make your words shine.
* Support for large images to call out your favorite posts.
* Disqus comments if you choose to enable.
* Simple and clear permalink structure[^1].
* Tags for [Open Graph](https://developers.facebook.com/docs/opengraph/) and [Twitter Cards](https://dev.twitter.com/docs/cards) for a better social sharing experience.
* Vanilla [custom 404 page](/404.html) to get you started.
* Stylesheets for Pygments and Coderay [syntax highlighting](http://mmistakes.github.io/so-simple-theme/articles/code-highlighting-post/) to make your code examples look snazzy.
* Simple search that overlays results based on post title.
* [Grunt build script](/theme-setup/index.html#theme-development) for easier theme development.
<a markdown="0" href="/theme-setup" class="btn">Install Minimal Mistakes Theme</a>
[^1]: Example: *domain.com/category-name/post-title* -->
</div><!-- /.entry-content -->
</div><!-- /.entry-wrapper -->
</article>
</div><!-- /#main -->
<div class="footer-wrapper">
<footer role="contentinfo">
<span>© 2014 Martha Kobus. Powered by <a href="http://jekyllrb.com">Jekyll</a> using a manipulated <a href="http://mademistakes.com/so-simple/">So Simple Theme</a>.</span>
<div class="social-icons">
<a href="https://www.linkedin.com/pub/martha-kobus/7a/413/491" title="Martha Kobus on LinkedIn" target="_blank"><i class="fa fa-linkedin-square fa-2x"></i></a>
<a href="http://github.com/mkobus" title="Martha Kobus on Github" target="_blank"><i class="fa fa-github-square fa-2x"></i></a>
<a href="mailto:marthakobus@gmail.com"><i class="fa fa-envelope fa-2x"></i></a>
<a href="/feed.xml" title="Atom/RSS feed"><i class="fa fa-rss-square fa-2x"></i></a>
</div><!-- /.social-icons -->
</footer>
</div><!-- /.footer-wrapper -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="/assets/js/vendor/jquery-1.9.1.min.js"><\/script>')</script>
<script src="/assets/js/scripts.min.js"></script>
<!-- Jekyll Simple Search option -->
<script>
$(document).ready(function() {
$('.search-field').simpleJekyllSearch({
jsonFile : '/search.json',
searchResults : '.search-results',
template : '<li><article><a href="{url}">{title} <span class="entry-date"><time datetime="{date}">{shortdate}</time></span></a></article></li>',
noResults: '<p>Nothing found.</p>'
});
});
(function( $, window, undefined ) {
var bs = {
close: $(".close-btn"),
searchform: $(".search-form"),
canvas: $("body"),
dothis: $('.dosearch')
};
bs.dothis.on('click', function() {
$('.search-wrapper').css({ display: "block" });
bs.searchform.toggleClass('active');
bs.searchform.find('input').focus();
bs.canvas.toggleClass('search-overlay');
});
bs.close.on('click', function() {
$('.search-wrapper').removeAttr( 'style' );
bs.searchform.toggleClass('active');
bs.canvas.removeClass('search-overlay');
});
})( jQuery, window );
</script>
</body>
</html> | MKobus/jekyll-blog | _site/about/index.html | HTML | mit | 8,429 |
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en"> <![endif]-->
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en"> <![endif]-->
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" dir="ltr" lang="fr-FR"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<!-- Set the viewport width to device width for mobile -->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta name="keywords" content="keywords" />
<meta name="author" content="Olivier Legras" />
<meta name="description" content="Descritpion site" />
<title>Rémi PERAL - Portfolio Web</title>
<link href="favicon.ico" rel="shortcut icon" type="image/vnd.microsoft.icon" />
<!-- CSS
================================================== -->
<link rel="stylesheet" href="css/cssbrandi/font-awesome.min.css"/>
<link rel="stylesheet" href="css/cssbrandi/bootstrap.min.css"/>
<link rel="stylesheet" href="css/cssbrandi/animate.css"/>
<link rel="stylesheet" href="css/cssbrandi/main.css"/>
<link href="css/reset.css" rel="stylesheet" type="text/css" media="screen" />
<link href="css/styles.css" rel="stylesheet" type="text/css" media="screen" />
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css"/>
<link rel="stylesheet" href="css/jquery.fancybox.css">
<link href="owl-carousel/owl.carousel.css" rel="stylesheet">
<link href="owl-carousel/owl.transitions.css" rel="stylesheet">
<!-- Fonts
================================================== -->
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300,300italic,700,600,800' rel='stylesheet' type='text/css' />
<script src="http://maps.google.com/maps/api/js?sensor=false" type="text/javascript"></script>
<link href='http://fonts.googleapis.com/css?family=Oswald:700' rel='stylesheet' type='text/css'/>
<link href='http://fonts.googleapis.com/css?family=Fredericka+the+Great' rel='stylesheet' type='text/css'/>
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700,800' rel='stylesheet' type='text/css'>
<!-- Javascript
================================================== -->
<script src="js/jquery.singlePageNav.min.js"></script>
<script src="js/jquery-1.7.1.js" type="text/javascript"></script>
<script src="js/jquery-easing-1.3.js" type="text/javascript"></script>
<script src="js/modernizr.js" type="text/javascript"></script>
<script src="js/jquery.gomap-1.3.2.min.js" type="text/javascript"></script>
<script src="js/jquery.isotope.min.js" type="text/javascript"></script>
<script src="js/jquery.isotope.load.simple.js" type="text/javascript"></script>
<script src="js/jquery.form.js" type="text/javascript"></script>
<script src="js/input.fields.js" type="text/javascript"></script>
<script src="js/responsive-nav.js" type="text/javascript"></script>
<script src="js/jquery.fancybox.pack.js"></script>
<script src="js/stayOnTop.js" type="text/javascript"></script>
<script type="text/javascript" src="js/jssor.js"></script>
<script type="text/javascript" src="js/jssor.slider.js"></script>
<script src="owl-carousel/owl.carousel.js"></script>
<script src="js/custom.js"></script>
</head>
<body id="body">
<!-- preloader -->
<!-- end preloader -->
<!--
Fixed Navigation
==================================== -->
<!--
End Fixed Navigation
==================================== -->
<div id="options" class="clearfix">
<ul id="filters" class="option-set clearfix" data-option-key="filter">
<li><a href="#filter" id = "lAccueil" data-option-value=":not(.fichePerso)" class="selected">Accueil</a></li>
<li><a href="#filter" id = "leCv" data-sort-value="number" data-option-value=".cv, .fichePerso">CV</a></li>
<li><a href="#filter" id = "leStage" data-option-value=".stages, .missionExpert ">Stages</a></li>
<li><a href="#filter" id = "laReal" data-option-value=".realisations, .missionBTS">Réalisations</a></li>
<li><a href="#filter" id = "laMusique" data-option-value=".musique">Musique</a></li>
<li><a href="#filter" id = "leBts" data-option-value=".btssio">A propos du BTS SIO</a></li>
</ul>
</div>
<!-- end nav -->
<!--
Home Slider
==================================== -->
<section id="slider">
<div id="owl-demo" class="owl-carousel">
<div><img src="img/banner.jpg" class = "limage" ><div class="carousel-caption">
<h2 data-wow-duration="700ms" data-wow-delay="500ms" class="wow bounceInDown animated">Rémi<span> PERAL</span></h2>
<h3 data-wow-duration="1000ms" class="wow slideInLeft animated">Etudiant programmeur <span class="color">créatif</span> </h3>
<p data-wow-duration="1000ms" class="wow slideInRight animated">Deuxième Année de BTS SIO</p>
<ul class="social-links text-center">
<li><a href="https://soundcloud.com/r-mi-peral/"><i class="fa fa-soundcloud fa-lg"></i></a></li>
<li><a href="https://www.youtube.com/user/SkyroadMusic"><i class="fa fa-youtube fa-lg"></i></a></li>
<li><a href="https://fr.linkedin.com/pub/r%C3%A9mi-peral/b5/523/56a"><i class="fa fa-linkedin fa-lg"></i></a></li>
</ul>
</div>
</div>
<div><img src="img/banner2.jpg" class = "limage"><div class="carousel-caption">
<h2 data-wow-duration="700ms" data-wow-delay="500ms" class="wow bounceInDown animated">Rémi<span> PERAL</span></h2>
<h3 data-wow-duration="1000ms" class="wow slideInLeft animated">Etudiant programmeur <span class="color">créatif</span> </h3>
<p data-wow-duration="1000ms" class="wow slideInRight animated">Deuxième Année de BTS SIO</p>
<ul class="social-links text-center">
<li><a href="https://soundcloud.com/r-mi-peral/"><i class="fa fa-soundcloud fa-lg"></i></a></li>
<li><a href="https://www.youtube.com/user/SkyroadMusic"><i class="fa fa-youtube fa-lg"></i></a></li>
<li><a href="https://fr.linkedin.com/pub/r%C3%A9mi-peral/b5/523/56a"><i class="fa fa-linkedin fa-lg"></i></a></li>
</ul>
</div>
</div>
</div>
</section>
<!-- end header -->
<div class="container">
<div id="container" class="clearfix">
<div class="element clearfix col2-3 home">
<h2>Rémi Peral</h2>
<h3>Etudiant en deuxième année de
<div class="tooltip">BTS SIO <span>Brevet de Technicien Supérieur de Services Informatiques aux Organisations</span></div> option
<div class="tooltip">SLAM<span><center>Solutions Logicielles et Applications Métiers</center></span></div> au Lycée Ozenne à
<div class="tooltip">Toulouse.<span><center>La plus belle ville de France</center></span></div> </br>Programmation
<div class="tooltip">web<span><center>HTML, CSS, PHP, Javascript, JSon, JQuery</center></span></div>,</br>
<div class="tooltip2">objet<span><center>C#, Java, Python</center></span></div>, de
<div class="tooltip">base de données<span><center>SQL, PL/SQL | MySql, SQLite, SQLServer...</center></span></div> </h3>
</div>
<div class="element clearfix col1-3 blog">
<div class="movable-content">
<div class="images"><img src="img/profile3.png" alt="" /></div>
</div>
</div>
<div class="element clearfix col1-3slider blog" style = "background-color: #0eb493;">
<div class="slider" style = "background-color: #0eb493;"><img src="img/slider.png" style = "background-color: #0eb493);" alt="" /></div>
<div id="slider1_container" style="left: 60px; top:65px; width: 220px; height: 130px">
<!-- Slides Container -->
<div u="slides" style="cursor: move; position: absolute; left: 45px; top:70px; width: 210px; height: 120px; overflow: hidden ;">
<div><img u="image" src="img/codePNG.png" /></div>
<div><img u="image" src="img/code2.png" /></div>
<div><img u="image" src="img/coffee.png" /></div>
<div><img u="image" src="img/guitar.png" /></div>
<div><img u="image" src="img/link2.png" /></div>
</div>
</div>
</div>
<div class="element colContact home">
<div id="wrap">
<div id='form_wrap'>
<form>
<center><p>Contact</p></center>
</br><a>Tel :</a> 0610200239</br>
<a>Mail :</a> remi.peral@gmail.com</br>
<a>Retrouvez-moi sur :</a></br></br>
<center><a href="https://soundcloud.com/r-mi-peral/" target="_blank"><i class="fa fa-soundcloud fa-3x"></i></a>
<a href="https://fr.linkedin.com/pub/r%C3%A9mi-peral/b5/523/56a" target="_blank"><i class="fa fa-linkedin fa-3x"></i></a>
<a href="https://www.youtube.com/user/SkyroadMusic" target="_blank"><i class="fa fa-youtube fa-3x"></i></a></center>
</form>
</div>
</div>
</div>
<div class="element clearfix col1-3 realisations" style = "border-bottom :3px solid #E72939;">
<div class="movable-content">
<div class="images"><img src="img/screenGermn/germn.png" alt="" /></div>
<div class="title">
<h4>Mlle GermN</h4>
<p>Site web de la troupe Mlle GermN</p>
</div>
</div>
<div class="infos">
<a class="fancybox fancybox.iframe" rel="detailsGermN" title="Mlle GermN | Réalisation Personnelle" href="detailsGermn.html">
<div class='tab'><i class='icons fa fa-info'> </i>A propos du projet</div></a>
<a href='http://mllegermn.olympe.in/'>
<div class='tab'><i class='icons fa fa-location-arrow'></i>Site internet</div></a>
</div>
</div>
<div class="element clearfix col1-3 realisations" style = "border-bottom :3px solid #E72939;">
<div class="movable-content">
<div class="images"><img src="img/screenPortfolio/portfolio.png" alt="" /></div>
<div class="title">
<h4>Portfolio Web</h4>
<p>Portfolio de professionnalisation</p>
</div>
</div>
<div class="infos">
<a class="fancybox fancybox.iframe" rel="detailsPortfolio" title="Portfolio Web Personnel | Réalisation Personnelle" href="detailsPortfolio.html">
<div class='tab'><i class='icons fa fa-info'> </i>A propos du projet</div></a>
<a href='remiperal.fr'>
<div class='tab'><i class='icons fa fa-location-arrow'></i>Site internet</div></a>
</div>
</div>
<div class="element work-item clearfix col1-3 missionBTS" style = "border-bottom :3px solid #04342B;">
<div class="movable-content">
<div class="images"><img src="img/projetGSB/GSB.png" alt="" /></div>
<div class="title">
<h4>Projet GSB</h4>
<p>Application Web</p>
</div>
<figcaption class="overlay">
<a class="fancybox fancybox.iframe" rel="projetGSB" title="Projet GSB | Réalisation dans le cadre scolaire" href="detailsGSB.html"><i class="fa fa-eye fa-lg"></i></a>
<h4>Html, CSS, PHP, SQL</h4>
<p>Application de gestion de rapports de visites </p>
</figcaption>
</div>
</div>
<div class="element work-item clearfix col1-3 missionBTS" style = "border-bottom :3px solid #04342B;">
<div class="movable-content">
<div class="images"><img src="img/projetM2L/M2L.png" alt="" /></div>
<div class="title">
<h4>Projet M2L</h4>
<p>Application Web</p>
</div>
<figcaption class="overlay">
<a class="fancybox fancybox.iframe" rel="projetM2L" title="Projet M2L | Réalisation dans le cadre scolaire" href="detailsM2L.html"><i class="fa fa-eye fa-lg"></i></a>
<h4>Html, CSS, PHP, SQL</h4>
<p>Application de gestion de remboursements de frais de déplacements </p>
</figcaption>
</div>
</div>
<div class="element work-item clearfix col1-3 missionBTS" style = "border-bottom :3px solid #04342B;">
<div class="movable-content">
<div class="images"><img src="img/screenAccord/selecteurAC.png" alt="" /></div>
<div class="title">
<h4>Accordiko</h4>
<p>Outil électronique</p>
</div>
<figcaption class="overlay">
<a class="fancybox fancybox.iframe" rel="Accordiko" title="Accordiko | Réalisation dans le cadre scolaire" href="accordiko.html"><i class="fa fa-eye fa-lg"></i></a>
<h4>C, carte EasyPic, smartMP3, Ecran GLCD, gestion de projet </h4>
<p>Métronome et dictionnaire d'accords électronique pour guitare</p>
</figcaption>
</div>
</div>
<div class="element clearfix col1-3 stages" style = "border-bottom :3px solid #25404E;">
<div class="movable-content">
<div class="images"><img src="img/expertise.png" alt="" /></div>
<div class="title">
<h4>Expertise & concept</h4>
<p>Stage de seconde année</p>
</div>
</div>
<div class="infos">
<a class="fancybox fancybox.iframe" rel="detailsExpertise" title="Expertise & Concept | Stage de seconde année" href="detailsExpertise.html">
<div class='tab'><i class='icons fa fa-info'> </i>A propos de l'entreprise</div></a>
<a href='http://www.expertiseconcept.com/'>
<div class='tab'><i class='icons fa fa-location-arrow'></i>Site internet</div></a>
</div>
</div>
<div class='element work-item clearfix col1-3 missionExpert' style = "border-bottom :3px solid #25404E;">
<div class='movable-content'>
<div class="images"><img src="img/screenMission1EC/modif1.png" alt="" /></div>
<div class='title'>
<h4>Mission 1</h4>
<p>Maintenance informatique</p>
</div>
<figcaption class="overlay">
<a class="fancybox fancybox.iframe" rel="mission1" title="Mission 1 | Stage de seconde année" href="mission1.html"><i class="fa fa-eye fa-lg"></i></a>
<h4>PHP, Jquery, JSon, MVC Backbone, gestion de projet</h4>
<p>Recettage, corrections de bugs, assistance & ajout de fonctionnalités </p>
</figcaption>
</div>
</div>
<div class='element work-item clearfix col1-3 missionExpert' style = "border-bottom :3px solid #25404E;">
<div class='movable-content'>
<div class="images"><img src="img/mission3.png" alt="" /></div>
<div class='title'>
<h4>Mission 2</h4>
<p>Développement d'application</p>
</div>
<figcaption class="overlay">
<a class="fancybox fancybox.iframe" rel="mission3" title="Mission 2 | Stage de seconde année" href="concept.html"><i class="fa fa-eye fa-lg"></i></a>
<h4>Python, Veille technologique</h4>
<p>Application de génération de script d'insertion</p>
</figcaption>
</div>
</div>
<div class="element clearfix col1-3 stages" style = "border-bottom :3px solid #29A6E7;">
<div class="movable-content">
<div class="images"><img src="img/enfa.png" alt="" /></div>
<div class="title">
<h4>ENFA</h4>
<p>Stage de première année</p>
</div>
</div>
<div class="infos">
<a href='detailsENFA.html'>
<div class='tab'><i class='icons fa fa-info'> </i>A propos de l'école</div></a>
<a href='http://www.enfa.fr/'>
<div class='tab'><i class='icons fa fa-location-arrow'></i>Site internet</div></a>
</div>
</div>
<div class='element work-item clearfix col1-3 missionExpert' style = "border-bottom :3px solid #29A6E7;">
<div class='movable-content'>
<div class="images"><img src="img/mission1.jpg" alt="" /></div>
<div class='title'>
<h4>Mission 1</h4>
<p>Développement d'application web</p>
</div>
<figcaption class="overlay">
<a class="fancybox fancybox.iframe" rel="works" title="ENFA | Stage de première année" href="mission1ENFA.html"><i class="fa fa-eye fa-lg"></i></a>
<h4>Html, Php, SQL, MVC CakePhp</h4>
<p>Application de gestion d'interventions des enseignants</p>
</figcaption>
</div>
</div>
<div class="element clearfix colPerso fichePerso">
<div class="movable-contentPerso">
</div>
<div class="infosPerso">
<h2><span>PERAL Rémi</span></h2>
<div class = "descriptionPerso">10 Avenue des troubadours | 31750 Escalquens </div>
<div class = "descriptionPerso"><span>Mail</span> remi.peral@gmail.com </div>
<div class = "descriptionPerso"><span>Téléphone</span> 0610200239 </div>
<div class = "descriptionPerso"><span>Âge</span> 19 Ans </div>
<div class = "descriptionPerso"><a href="documents/CV.pdf"> Télecharger mon CV</a><img src="img/profile3.png" alt="" /> </div>
</div>
</div>
<div class="element clearfix colFormations cv">
<div class="movable-contentFormations">
<div class="titleFormations">
<h3><span>Diplômes & Formations</span></h3>
<div class="image"><img src="img/laureat.jpg" alt="" /></div>
</div>
</div>
<div class="infosFormations">
<h2><span>2ème Année BTS SIO Option Slam</span></h2>
<h4>2014 - 2015 | Lycée Ozenne - 31 Toulouse</h4>
<h2><span>1ère Année BTS SIO</span></h2>
<h4>2013 - 2014 | Lycée Ozenne - 31 Toulouse</h4>
<h2><span>Baccalauréat STI2D option SIN - Mention Assez Bien</span></h2>
<h4>2013 | Lycée Déodat de Séverac - 31 Toulouse</h4>
<h2><span>Brevet des collèges - Mention Assez Bien</span></h2>
<h4>2010 | Collège François Mitterrand - 31 Fenouillet</h4>
</div>
</div>
<div class="element clearfix colFormations cv">
<div class="movable-contentFormations">
<div class="titleFormations">
<h3><span>Stages</span></h3>
<div class="image"><img src="img/stage.jpg" alt="" /></div>
</div>
</div>
<div class="infosStages">
<h2><span>Stage de Seconde Année | Expertise & Concept</span></h2>
<h4>23 Mars 2015 - 03 Avril 2015 | 31 Saint-Jean</h4>
<p>Maintenance informatique, gestion de projet, amélioration de l'existant, développement web et développement d'application lourde</p>
<h2><span>Stage de Première Année | ENFA</span></h2>
<h4>1 Juin 2014 - 26 Juin 2014 | 31 Auzeville-Tolosane</h4>
<p>Projet de développement d'une application web de gestion de fiches de paie</p>
</div>
</div>
<div class="element clearfix col1-3 cv">
<div class="movable-content">
<div class="images"><img src="img/csharp2.png" alt="" /></div>
<div class="title">
<h4>Langages Objet</h4>
</div>
</div>
<div class="infos">
<h3><span>C# </br> Java </br> Python</span></h3>
</div>
</div>
<div class="element clearfix col1-3 cv">
<div class="movable-content">
<div class="images"><img src="img/html5.jpg" alt="" /></div>
<div class="title">
<h4>Langages Web</h4>
</div>
</div>
<div class="infos">
<h3><span>Html CSS PHP JSon Javascript JQuery</span></h3>
</div>
</div>
<div class="element clearfix col1-3 cv">
<div class="movable-content">
<div class="images"><img src="img/sqlLogo.png" alt="" /></div>
<div class="title">
<h4>Langages de requête</h4>
</div>
</div>
<div class="infos">
<h3><span>SQL</br> PL/SQL</span></h3>
</div>
</div>
<div class="element clearfix col1-3 cv">
<div class="movable-content">
<div class="images"><img src="img/mysqlLogo.png" alt="" /></div>
<div class="title">
<h4>SGBD</h4>
</div>
</div>
<div class="infos">
<h4><span>MySql</br>SQLite</br>SQLServer</br>Access</br>Méthodes : Merise et UML</span></h4>
</div>
</div>
<div class="element clearfix col1-3 cv">
<div class="movable-content">
<div class="images"><img src="img/eclipseLogo.png" alt="" /></div>
<div class="title">
<h4>Environnement de développement</h4>
</div>
</div>
<div class="infos">
<h3><span>Visual studio</br>Notepad++</br>Eclipse</span></h3>
</div>
</div>
<div class="element clearfix col1-3 cv">
<div class="movable-content">
<div class="images"><img src="img/bureautique.png" alt="" /></div>
<div class="title">
<h4>Bureautique</h4>
</div>
</div>
<div class="infos">
<h3><span>Word</br>Excel</br>Powerpoint </br>OpenOffice</span></h3>
</div>
</div>
<div class="element clearfix col1-3 cv">
<div class="movable-content">
<div class="images"><img src="img/microTuile.png" alt="" /></div>
<div class="title">
<h4>Mixage son & Production</h4>
</div>
</div>
<div class="infos">
<h3><span>MS Pro X</span></br>
<span>Audacity</span>
</div>
</div>
<div class="element clearfix col1-3 cv">
<div class="movable-content">
<div class="images"><img src="img/langue.png" alt="" /></div>
<div class="title">
<h4>Langues</h4>
</div>
</div>
<div class="infos">
<h3><span>Anglais</span> Niveau B2 <span>Espagnol</span> Notions</h3>
</div>
</div>
<div class="element clearfix col1-3 cv">
<div class="movable-content">
<div class="images"><img src="img/interet.jpg" alt="" /></div>
<div class="title">
<h4>Centres d'intérêts</h4>
</div>
</div>
<div class="infos">
<h3><span>Musique</br>Voyages </br> Jeux-Vidéos</span></h3>
</div>
</div>
<div class="element clearfix colYoutube musique">
<div class="movable-content">
<iframe width="560" height="315" src="https://www.youtube.com/embed/NcBfZxSwNvc" frameborder="0" allowfullscreen></iframe>
</div>
</div>
<div class="element clearfix colYoutube musique">
<div class="movable-content">
<iframe width="560" height="315" src="https://www.youtube.com/embed/wJGkK6Y4JmA" frameborder="0" allowfullscreen></iframe>
</div>
</div>
<div class="element clearfix colYoutube musique">
<div class="movable-content">
<iframe frameborder="0" width="560" height="270" src="//www.dailymotion.com/embed/video/x2jlso0" allowfullscreen></iframe><br />
</div>
</div>
<div class="element clearfix colSoundcloud musique">
<div class="movable-content">
<iframe width="560" height="169" scrolling="no" frameborder="no" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/204064465&color=0eb493&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false"></iframe>
</div>
</div>
<div class="element clearfix colSoundcloud musique">
<div class="movable-content">
<iframe width="560" height="169" scrolling="no" frameborder="no" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/204588638&color=0eb493&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false"></iframe>
</div>
</div>
<div class="element clearfix colSoundcloud musique">
<div class="movable-content">
<iframe width="560" height="166" scrolling="no" frameborder="no" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/194625918&color=0eb493&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false"></iframe>
</div>
</div>
<div class="element clearfix col2-3 btssio">
<h2>Présentation</h2>
<h3>Le BTS <div class="tooltip">SIO <span>Services Informatiques aux Organisations</span></div> a été créé à la rentrée 2011 et remplace le BTS Informatique de Gestion.
Il comprend deux options : <div class="tooltip">SISR<center><span>Solutions d’Infrastructures </br>Systèmes et Réseaux </span></center></div> et <div class="tooltip2">SLAM<center><span>Solutions Logicielles et </br> Applications Métiers</span></center></div> </h3>
</div>
<div class="element clearfix col2-3 btssio">
<h2>L'option SLAM</h2>
<h3>Forme au développement de logiciels personnalisés, de sites web et
à la participation de toutes les phases de la production des solutions logicielles</h3>
</div>
</div>
</div>
<!-- end header -->
<footer class="centered">2015<br><br>
<a href="https://soundcloud.com/r-mi-peral/"><i class="fa fa-soundcloud fa-lg"></i></a>
<a href="https://www.youtube.com/user/SkyroadMusic"><i class="fa fa-youtube fa-lg"></i></a>
<a href="https://fr.linkedin.com/pub/r%C3%A9mi-peral/b5/523/56a"><i class="fa fa-linkedin fa-lg"></i></a></a>
</footer>
<!-- Google Analytics: change UA-XXXXX-X to be your site's ID. -->
<script>
(function(b,o,i,l,e,r){b.GoogleAnalyticsObject=l;b[l]||(b[l]=
function(){(b[l].q=b[l].q||[]).push(arguments)});b[l].l=+new Date;
e=o.createElement(i);r=o.getElementsByTagName(i)[0];
e.src='//www.google-analytics.com/analytics.js';
r.parentNode.insertBefore(e,r)}(window,document,'script','ga'));
ga('create','UA-XXXXX-X','auto');ga('send','pageview');
</script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-1326807-13']);
_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>
<a href="javascript:void(0);" id="back-top"><i class="fa fa-angle-up fa-3x"></i></a>
</body>
</html> | RemiPeral/remiperal.github.io | index.html | HTML | mit | 25,926 |
<?xml version="1.0" ?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<!-- saved from url=(0017)http://localhost/ -->
<script language="JavaScript" src="../../displayToc.js"></script>
<script language="JavaScript" src="../../tocParas.js"></script>
<script language="JavaScript" src="../../tocTab.js"></script>
<link rel="stylesheet" type="text/css" href="../../scineplex.css">
<title></title>
<link rel="stylesheet" href="../../Active.css" type="text/css" />
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<link rev="made" href="mailto:" />
</head>
<body>
<ul id="index">
<li><a href="#NAME">NAME</a></li>
<li><a href="#SYNOPSIS">SYNOPSIS</a></li>
<li><a href="#DESCRIPTION">DESCRIPTION</a></li>
<li><a href="#AUTHOR">AUTHOR</a></li>
<li><a href="#LICENSE">LICENSE</a></li>
</ul>
<h1 id="NAME">NAME</h1>
<p>CPAN::Mirrors - Get CPAN miror information and select a fast one</p>
<h1 id="SYNOPSIS">SYNOPSIS</h1>
<pre><code><code> <span class="keyword">use</span> <span class="variable">CPAN::Mirrors</span><span class="operator">;</span>
<span class="keyword">my</span> <span class="variable">$mirrors</span> <span class="operator">=</span> <span class="variable">CPAN::Mirrors</span><span class="operator">-></span><span class="variable">new</span><span class="operator">;</span>
<span class="variable">$mirrors</span><span class="operator">-></span><span class="variable">parse_from_file</span><span class="operator">(</span> <span class="variable">$mirrored_by_file</span> <span class="operator">);</span>
<span class="keyword">my</span> <span class="variable">$seen</span> <span class="operator">=</span> <span class="operator">{}</span><span class="operator">;</span>
<span class="keyword">my</span> <span class="variable">$best_continent</span> <span class="operator">=</span> <span class="variable">$mirrors</span><span class="operator">-></span><span class="variable">find_best_continents</span><span class="operator">(</span> <span class="operator">{</span> <span class="string">seen</span> <span class="operator">=></span> <span class="variable">$seen</span> <span class="operator">}</span> <span class="operator">);</span>
<span class="keyword">my</span> <span class="variable">@mirrors</span> <span class="operator">=</span> <span class="variable">$mirrors</span><span class="operator">-></span><span class="variable">get_mirrors_by_continents</span><span class="operator">(</span> <span class="variable">$best_continent</span> <span class="operator">);</span>
<span class="keyword">my</span> <span class="variable">$callback</span> <span class="operator">=</span> <span class="keyword">sub</span><span class="variable"> </span><span class="operator">{</span>
<span class="keyword">my</span><span class="operator">(</span> <span class="variable">$m</span> <span class="operator">)</span> <span class="operator">=</span> <span class="variable">@_</span><span class="operator">;</span>
<span class="keyword">printf</span> <span class="string">"%s = %s\n"</span><span class="operator">,</span> <span class="variable">$m</span><span class="operator">-></span><span class="variable">hostname</span><span class="operator">,</span> <span class="variable">$m</span><span class="operator">-></span><span class="variable">rtt</span>
<span class="operator">};</span>
<span class="variable">$mirrors</span><span class="operator">-></span><span class="variable">get_mirrors_timings</span><span class="operator">(</span> <span class="operator">\</span><span class="variable">@mirrors</span><span class="operator">,</span> <span class="variable">$seen</span><span class="operator">,</span> <span class="variable">$callback</span> <span class="operator">);</span>
<span class="variable">@mirrors</span> <span class="operator">=</span> <span class="keyword">sort</span> <span class="operator">{</span> <span class="variable">$a</span><span class="operator">-></span><span class="variable">rtt</span> <span class="operator"><=></span> <span class="variable">$b</span><span class="operator">-></span><span class="variable">rtt</span> <span class="operator">}</span> <span class="variable">@mirrors</span><span class="operator">;</span>
<span class="keyword">print</span> <span class="string">"Best mirrors are "</span><span class="operator">,</span> <span class="keyword">map</span><span class="operator">(</span> <span class="operator">{</span> <span class="variable">$_</span><span class="operator">-></span><span class="variable">rtt</span> <span class="operator">}</span> <span class="variable">@mirrors</span><span class="operator">[</span><span class="number">0</span><span class="operator">..</span><span class="number">3</span><span class="operator">]</span> <span class="operator">),</span> <span class="string">"\n"</span><span class="operator">;</span>
</code></code></pre>
<h1 id="DESCRIPTION">DESCRIPTION</h1>
<dl>
<dt id="new-LOCAL_FILE_NAME-">new( LOCAL_FILE_NAME )</dt>
<dd>
</dd>
<dt id="continents-">continents()</dt>
<dd>
<p>Return a list of continents based on those defined in <i>MIRRORED.BY</i>.</p>
</dd>
<dt id="countries-CONTINENTS-">countries( [CONTINENTS] )</dt>
<dd>
<p>Return a list of countries based on those defined in <i>MIRRORED.BY</i>. It only returns countries for the continents you specify (as defined in <code><code>continents</code></code>). If you don't specify any continents, it returns all of the countries listed in <i>MIRRORED.BY</i>.</p>
</dd>
<dt id="mirrors-COUNTRIES-">mirrors( [COUNTRIES] )</dt>
<dd>
<p>Return a list of mirrors based on those defined in <i>MIRRORED.BY</i>. It only returns mirrors for the countries you specify (as defined in <code><code>countries</code></code>). If you don't specify any countries, it returns all of the mirrors listed in <i>MIRRORED.BY</i>.</p>
</dd>
<dt id="get_mirrors_by_countries-COUNTRIES-">get_mirrors_by_countries( [COUNTRIES] )</dt>
<dd>
<p>A more sensible synonym for mirrors.</p>
</dd>
<dt id="get_mirrors_by_continents-CONTINENTS-">get_mirrors_by_continents( [CONTINENTS] )</dt>
<dd>
<p>Return a list of mirrors for all of continents you specify. If you don't specify any continents, it returns all of the mirrors.</p>
</dd>
<dt id="get_countries_by_continents-CONTINENTS-">get_countries_by_continents( [CONTINENTS] )</dt>
<dd>
<p>A more sensible synonym for countries.</p>
</dd>
<dt id="best_mirrors">best_mirrors</dt>
<dd>
<p><code><code>best_mirrors</code></code> checks for the best mirrors based on the list of continents you pass, or, without that, all continents, as defined by <code><code>CPAN::Mirrored::By</code></code>. It pings each mirror, up to the value of <code><code>how_many</code></code>. In list context, it returns up to <code><code>how_many</code></code> mirror. In scalar context, it returns the single best mirror.</p>
<p>Arguments</p>
<pre><code><code> how_many - the number of mirrors to return. Default: 1
callback - a callback for find_best_continents
verbose - true or false on all the whining and moaning. Default: false
continents - an array ref of the continents to check</code></code></pre>
<p>If you don't specify the continents, <code><code>best_mirrors</code></code> calls <code><code>find_best_continents</code></code> to get the list of continents to check.</p>
</dd>
<dt id="get_n_random_mirrors_by_continents-N-CONTINENTS-">get_n_random_mirrors_by_continents( N, [CONTINENTS]</dt>
<dd>
<p>Returns up to N random mirrors for the specified continents. Specify the continents as an array reference.</p>
</dd>
<dt id="get_mirrors_timings-MIRROR_LIST-SEEN-CALLBACK-">get_mirrors_timings( MIRROR_LIST, SEEN, CALLBACK );</dt>
<dd>
<p>Pings the listed mirrors and returns a list of mirrors sorted in ascending ping times.</p>
</dd>
<dt id="find_best_continents-HASH_REF-">find_best_continents( HASH_REF );</dt>
<dd>
<p><code><code>find_best_continents</code></code> goes through each continent and pings <code><code>N</code></code> random mirrors on that continent. It then orders the continents by ascending median ping time. In list context, it returns the ordered list of continent. In scalar context, it returns the same list as an anonymous array.</p>
<p>Arguments:</p>
<pre><code><code> n - the number of hosts to ping for each continent. Default: 3
seen - a hashref of cached hostname ping times
verbose - true or false for noisy or quiet. Default: false
callback - a subroutine to run after each ping.
ping_cache_limit - how long, in seconds, to reuse previous ping times.
Default: 1 day</code></code></pre>
<p>The <code><code>seen</code></code> hash has hostnames as keys and anonymous arrays as values. The anonymous array is a triplet of a <code><code>CPAN::Mirrored::By</code></code> object, a ping time, and the epoch time for the measurement.</p>
<p>The callback subroutine gets the <code><code>CPAN::Mirrored::By</code></code> object, the ping time, and measurement time (the same things in the <code><code>seen</code></code> hashref) as arguments. <code><code>find_best_continents</code></code> doesn't care what the callback does and ignores the return value.</p>
</dd>
</dl>
<h1 id="AUTHOR">AUTHOR</h1>
<p>Andreas Koenig <code><code><andk@cpan.org></code></code>, David Golden <code><code><dagolden@cpan.org></code></code>, brian d foy <code><code><bdfoy@cpan.org></code></code></p>
<h1 id="LICENSE">LICENSE</h1>
<p>This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.</p>
<p>See <a href="http://www.perl.com/perl/misc/Artistic.html">http://www.perl.com/perl/misc/Artistic.html</a></p>
</body>
</html>
| amidoimidazol/bio_info | Beginning Perl for Bioinformatics/html/lib/CPAN/Mirrors.html | HTML | mit | 9,978 |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>
Top Level Namespace
— my_help
</title>
<link rel="stylesheet" href="css/style.css" type="text/css" />
<link rel="stylesheet" href="css/common.css" type="text/css" />
<script type="text/javascript">
pathId = "";
relpath = '';
</script>
<script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>
<script type="text/javascript" charset="utf-8" src="js/app.js"></script>
</head>
<body>
<div class="nav_wrap">
<iframe id="nav" src="class_list.html?1"></iframe>
<div id="resizer"></div>
</div>
<div id="main" tabindex="-1">
<div id="header">
<div id="menu">
<a href="_index.html">Index</a> »
<span class="title">Top Level Namespace</span>
</div>
<div id="search">
<a class="full_list_link" id="class_list_link"
href="class_list.html">
<svg width="24" height="24">
<rect x="0" y="4" width="24" height="4" rx="1" ry="1"></rect>
<rect x="0" y="12" width="24" height="4" rx="1" ry="1"></rect>
<rect x="0" y="20" width="24" height="4" rx="1" ry="1"></rect>
</svg>
</a>
</div>
<div class="clear"></div>
</div>
<div id="content"><h1>Top Level Namespace
</h1>
<div class="box_info">
</div>
<h2>Defined Under Namespace</h2>
<p class="children">
<strong class="modules">Modules:</strong> <span class='object_link'><a href="MyHelp.html" title="MyHelp (module)">MyHelp</a></span>
<strong class="classes">Classes:</strong> <span class='object_link'><a href="OrgToYaml.html" title="OrgToYaml (class)">OrgToYaml</a></span>
</p>
</div>
<div id="footer">
Generated on Thu Apr 1 16:20:44 2021 by
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
0.9.26 (ruby-2.7.2).
</div>
</div>
</body>
</html> | daddygongon/my_help | doc/top-level-namespace.html | HTML | mit | 2,088 |
<!doctype html>
<html ng-csp ng-cloak ng-app="madbid">
<head>
<link rel="stylesheet" href="bower_components/angular-material/angular-material.css"/>
<link rel="stylesheet" href="styles/tabs_animation.css"/>
</head>
<body ng-controller="AuctionController as ctrl" layout-fill layout="column">
<md-toolbar md-scroll-shrink>
<h1 class="md-toolbar-tools">
<span flex>MadBid extension {{ctrl.time | date:'H:mm:ss'}}</span>
<md-button class="md-fab" aria-label="delete cache" ng-click="ctrl.resetCache()">
<md-tooltip>
Delete cache
</md-tooltip>
<md-icon icon="bower_components/material-design-icons/action/svg/production/ic_delete_24px.svg" style="width: 24px; height: 24px;">
</md-icon>
</md-button>
</h1>
</md-toolbar>
<md-content class="md-padding">
<md-whiteframe class="md-whiteframe-z1 animate-if-slide" layout="column" layout-align="space-around center">
<form name="auction">
<div layout="row" layout-align="space-around center">
<md-input-container>
<label>Select an auction :</label>
<select ng-model="ctrl.selection.auction" ng-change="ctrl.changingAuction()" ng-options="val as (val.item.name || key) for (key,val) in ctrl.model.auctions | validAuction" ng-disabled="ctrl.autoBidEnable">
<option value="">--Empty--</option>
</select>
</md-input-container>
<md-input-container>
<label>Select a bidder :</label>
<select ng-model="ctrl.selection.bidder" ng-options="val as key for (key,val) in ctrl.model.bidders | biddingBidder:ctrl.selection.auction">
<option value="">--Empty--</option>
</select>
</md-input-container>
</div>
</form>
</md-whiteframe>
<md-whiteframe class="md-whiteframe-z1 animate-if-slide" layout="column" layout-align="space-around center" ng-if="ctrl.selection.auction">
<form name="autobidder">
<div layout="row">
<md-input-container>
<label>Constant bid time</label>
<input type="number" step="any" name="bidtime" ng-model="ctrl.constantBidTime" min="0" max="120" ng-disabled="ctrl.autoBidEnable" required>
</md-input-container>
<md-input-container>
<label>Max bid to place</label>
<input type="number" step="any" name="bidnumber" ng-model="ctrl.maxBidToPlace" min="0" max="10000" ng-disabled="ctrl.autoBidEnable" required>
</md-input-container>
</div>
<md-button class="md-raised" ng-click="ctrl.activeAutobid(ctrl.selection.auction, ctrl.constantBidTime, ctrl.maxBidToPlace)" ng-disabled="ctrl.autoBidEnable">Enable Autobid</md-button>
<md-button class="md-raised" ng-click="ctrl.stopAutobid()" ng-disabled="!ctrl.autoBidEnable">Disable Autobid</md-button>
</form>
<!--<div ng-if="ctrl.autoBidEnable"><strong>Enable</strong> already <strong>{{ctrl.autoBidPlaced}}</strong> placed.</div>-->
</md-whiteframe>
<md-whiteframe class="md-whiteframe-z1 animate-if-slide" layout layout-align="space-around center" ng-if="ctrl.selection.auction">
<h3>{{ctrl.selection.auction.remainingTime}} seconds remain</h3>
<h3>{{ctrl.selection.auction.currentPrice}} euros</h3>
<h4>{{ctrl.selection.auction.pacingBidderNumber}} pacing bidders</h4>
<h4>{{ctrl.selection.auction.aggresiveBidderNumber}} aggresive bidders</h4>
<h4>{{ctrl.selection.auction.sleepyActiveBidderNumber}} sleepy active bidders</h4>
<h4>{{ctrl.selection.auction.persistentBidderNumber}} active bidders</h4>
</md-whiteframe>
<md-whiteframe class="md-whiteframe-z1 animate-if-slide" layout layout-align="center center" ng-if="ctrl.selection.auction.endingPatternDetected" class="animate-if">
<h1 style="color: red;">Ending Pattern detected !!!</h1>
</md-whiteframe>
<div ng-if="ctrl.selection.auction" class="tabs animate-if">
<md-tabs class="md-accent" md-selected="ctrl.data.selectedIndex">
<md-tab id="tab1" aria-controls="tab1-content">
Bids
</md-tab>
<md-tab id="tab2" aria-controls="tab2-content">
Bidders
</md-tab>
<md-tab id="tab3" aria-controls="tab3-content">
Bid Times
</md-tab>
</md-tabs>
<ng-switch on="ctrl.data.selectedIndex" class="tabpanel-container">
<div role="tabpanel" id="tab1-content" aria-labelledby="tab1" ng-switch-when="0" md-swipe-left="ctrl.next()" md-swipe-right="ctrl.previous()">
<auction-info ng-model="ctrl.model"
auction="ctrl.selection.auction"
bidder="ctrl.selection.bidder"
time-selection="ctrl.timeSelection"></auction-info>
</div>
<div role="tabpanel" id="tab2-content" aria-labelledby="tab2" ng-switch-when="1" md-swipe-left="ctrl.next()" md-swipe-right="ctrl.previous()">
<bidder-info ng-model="ctrl.model"
auction="ctrl.selection.auction"
time-selection="ctrl.timeSelection"
observe-bidder-selection="ctrl.observeBidderSelection(bidderName)"></bidder-info>
</div>
<div role="tabpanel" id="tab3-content" aria-labelledby="tab3" ng-switch-when="2" md-swipe-left="ctrl.next()" md-swipe-right="ctrl.previous()">
<bid-info ng-model="ctrl.model"
auction="ctrl.selection.auction"
bidder="ctrl.selection.bidder"
time-selection="ctrl.timeSelection"></bid-info>
</div>
</ng-switch>
</div>
</md-content>
<script src="bower_components/hammerjs/hammer.js"></script>
<script src="bower_components/jquery/dist/jquery.js"></script>
<script src="bower_components/angular/angular.js"></script>
<script src="bower_components/angular-messages/angular-messages.js"></script>
<script src="bower_components/angular-animate/angular-animate.js"></script>
<script src="bower_components/angular-aria/angular-aria.js"></script>
<script src="bower_components/angular-material/angular-material.js"></script>
<script src="bower_components/angular-cookies/angular-cookies.js"></script>
<script src="bower_components/angularLocalStorage/src/angularLocalStorage.js"></script>
<script src="bower_components/highcharts/highcharts.js"></script>
<script src="scripts/chrome/messaging.js"></script>
<script src="scripts/app.js"></script>
<script src="scripts/controllers/AuctionController.js"></script>
<script src="scripts/models/AuctionModel.js"></script>
<script src="scripts/services/NetworkService.js"></script>
<script src="scripts/directives/AuctionInfoDirective.js"></script>
<script src="scripts/directives/BidderInfoDirective.js"></script>
<script src="scripts/directives/BidInfoDirective.js"></script>
<script src="scripts/filters/ValidAuctionFilter.js"></script>
<script src="scripts/filters/BiddingBidderFilter.js"></script>
<script src="scripts/models/Auction.js"></script>
<script src="scripts/models/Bid.js"></script>
<script src="scripts/models/Bidder.js"></script>
<script src="scripts/models/Item.js"></script>
<script src="scripts/models/AuctionHouse.js"></script>
</body>
</html>
| hourliert/madbid-chrome-extension | app/devtools_page.html | HTML | mit | 8,112 |
<section class="u-section-separator">
<h2 id="pregnancy" class="content__h2">Pregnancy and breastfeeding</h2>
<p>Salbutamol is generally considered safe to use in pregnancy and while breastfeeding.</p>
<p>If you have asthma, your doctor will most likely recommend that you continue to use your salbutamol inhaler during pregnancy to keep your asthma under control.</p>
<p>The risks of having serious asthma attacks during pregnancy are much worse than the risks of using salbutamol. Asthma attacks in pregnancy can prevent your baby from getting enough oxygen.</p>
<p><span class="alertbanner">Tell your doctor if you plan to get pregnant or become pregnant while taking this medicine.</span></p>
<h3>Salbutamol and breastfeeding</h3>
<p>Salbutamol may pass into breast milk in very small amounts.</p>
<p>In general though, you can use your salbutamol inhaler as normal while you're breastfeeding. The amount of medicine that passes into breast milk is so small that it's unlikely to harm the baby.</p>
<p><span class="alertbanner">For safety, tell your doctor if you want to breastfeed while taking salbutamol.</span></p>
</section>
| NHSChoices/medicines-alpha | app/views/salbutamol/includes/pregnancy-breastfeeding.html | HTML | mit | 1,152 |
<!DOCTYPE html>
<html ng-app = "DforD" lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="Ryan Lesson">
<title>Design for Dallas</title>
<!-- Bootstrap Core CSS -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<script type="text/javascript" src='vendor/bootstrap-validator/validator.min.js'></script>
<!-- Angular -->
<script src = "vendor/angular/angular.min.js"></script>
<script type="text/javascript" src = 'vendor/angular-ui-router/angular-ui-router.min.js'></script>
<!-- Custom Fonts -->
<link href="vendor/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href='https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Merriweather:400,300,300italic,400italic,700,700italic,900,900italic' rel='stylesheet' type='text/css'>
<!-- Plugin CSS -->
<link href="vendor/magnific-popup/magnific-popup.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="build/css/login.css">
<link rel="stylesheet" type="text/css" href="build/css/signup.css">
<!-- Theme CSS -->
<link href="build/css/creative.css" rel="stylesheet">
<script src="./parallax/parallax.min.js"></script>
<!-- jQuery -->
<script src="vendor/jquery/jquery.min.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="vendor/bootstrap/js/bootstrap.min.js"></script>
<!-- Plugin JavaScript -->
<script src="vendor/scrollreveal/scrollreveal.min.js"></script>
<script src="vendor/magnific-popup/jquery.magnific-popup.min.js"></script>
<script src="build/js/creative.min.js"></script>
<link rel="stylesheet" type="text/css" href="build/css/profile.css">
<!-- JavaScript -->
<script src='build/js/appAll.js'></script>
<!-- edit -->
<link href="bower_components/angular-xeditable/dist/css/xeditable.css" rel="stylesheet">
<script src="bower_components/angular-xeditable/dist/js/xeditable.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular-ui-bootstrap/1.3.1/ui-bootstrap-tpls.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.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body id="page-top" ng-controller = 'NavigationController'>
<nav id="mainNav" class="navbar navbar-default navbar-fixed-top">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span> Menu <i class="fa fa-bars"></i>
</button>
<a class="navbar-brand page-scroll" href="/">Design for Dallas</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li>
<a class="page-scroll" href="/">Home</a>
</li>
<li ng-show = '!loggedIn'>
<a class = "page-scroll" href="profile.html">Login</a>
</li>
<li ng-show = 'loggedIn'>
<a class = 'page-scroll' ng-click = 'logout()'>Logout</a>
</li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container-fluid -->
</nav>
<span ui-view></span>
</body>
</html> | Bigless27/D4D | profile.html | HTML | mit | 4,448 |
<!doctype html>
<html>
<title>uninstall</title>
<meta http-equiv="content-type" value="text/html;utf-8">
<link rel="stylesheet" type="text/css" href="../style.css">
<body>
<div id="wrapper">
<h1><a href="../api/uninstall.html">uninstall</a></h1> <p>uninstall a package programmatically</p>
<h2 id="SYNOPSIS">SYNOPSIS</h2>
<pre><code>npm.commands.uninstall(packages, callback)</code></pre>
<h2 id="DESCRIPTION">DESCRIPTION</h2>
<p>This acts much the same ways as uninstalling on the command-line.</p>
<p>The 'packages' parameter is an array of strings. Each element in the array is
the name of a package to be uninstalled.</p>
<p>Finally, 'callback' is a function that will be called when all packages have been
uninstalled or when an error has been encountered.</p>
</div>
<p id="footer">uninstall — npm@1.1.45</p>
<script>
;(function () {
var wrapper = document.getElementById("wrapper")
var els = Array.prototype.slice.call(wrapper.getElementsByTagName("*"), 0)
.filter(function (el) {
return el.parentNode === wrapper
&& el.tagName.match(/H[1-6]/)
&& el.id
})
var l = 2
, toc = document.createElement("ul")
toc.innerHTML = els.map(function (el) {
var i = el.tagName.charAt(1)
, out = ""
while (i > l) {
out += "<ul>"
l ++
}
while (i < l) {
out += "</ul>"
l --
}
out += "<li><a href='#" + el.id + "'>" +
( el.innerText || el.text || el.innerHTML)
+ "</a>"
return out
}).join("\n")
toc.id = "toc"
document.body.appendChild(toc)
})()
</script>
</body></html>
| cokita/cheff | node_modules/npm/html/api/uninstall.html | HTML | mit | 1,552 |
<ion-header>
<ion-navbar primary>
<ion-title>Cadastro de Livros</ion-title>
<!--<ion-buttons end>
<button ion-button icon-only (click)="scan()">
<ion-icon name="barcode"></ion-icon>
</button>
</ion-buttons> -->
</ion-navbar>
</ion-header>
<ion-content padding>
<center><h2>Informações do Livro</h2></center>
<ion-list>
<ion-item>
<ion-label floating>Titulo</ion-label>
<ion-input type="text" autocorrect="on" [(ngModel)]= "TxtTitulo"></ion-input> <ion-icon name="search"></ion-icon>
</ion-item>
<ion-item>
<ion-label floating>Autor</ion-label>
<ion-input type="text" [(ngModel)]= "TxtAutor"></ion-input>
</ion-item>
<ion-list>
<ion-item>
<ion-label>Gênero</ion-label>
<ion-select [(ngModel)]="TxtGenero">
<ion-option value="Ação">Ação</ion-option>
<ion-option value="Aventura">Aventura</ion-option>
<ion-option value="Biografia">Biografia</ion-option>
<ion-option value="Fantasia">Fantasia</ion-option>
<ion-option value="Ficção">Ficção</ion-option>
<ion-option value="Infantil">Infantil</ion-option>
<ion-option value="Romance">Romance</ion-option>
<ion-option value="Suspense">Suspense</ion-option>
<ion-option value="Terror">Terror</ion-option>
</ion-select>
</ion-item>
</ion-list>
</ion-list>
<center><button (click)="salvaLivro()">Cadastrar</button>
<!-- <button ion-button icon-only (click)="showPrompt()">
<ion-icon name="search"></ion-icon>
</button> -->
</center>
</ion-content>
| kr4x/Bookswap | app/pages/acervocad/acervocad.html | HTML | mit | 1,652 |
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, maximum-scale=1.0, minimum-scale=1.0, initial-scale=1.0" />
<title>Characters</title>
<!-- <link rel="stylesheet" type="text/css" href="css/screen_styles.css" /> -->
<link rel="stylesheet" type="text/css" href="../css/style.css">
<link rel="stylesheet" type="text/css" href="../css/screen_layout_large.css" />
<link rel="stylesheet" type="text/css" media="only screen and (min-width: 50px) and (max-width: 500px)" href="../css/screen_layout_small.css" />
<link rel="stylesheet" type="text/css" media="only screen and (min-width: 501px) and (max-width: 800px)" href="../css/screen_layout_medium.css" />
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div class="page">
<header>
<a class="logo" href="#"></a>
</header>
<nav>
<a href="../index.html">Rick and Morty</a>
<a href="characters.html">Characters</a>
<a href="locations.html">Locations</a>
<a href="episodes.html">Episodes</a>
</nav>
<article>
<h1>Character List</h1>
</article>
<div class="promo_container">
<p>+ Add Character</p>
<!-- hidden div for input form -->
<section class="character-form">
<form id="form">
<h2>Add a character</h2><br>
<h4>Character Name:</h4>
<input type="text" name="character" id="character">
<h4>Description:</h4>
<input type="text" name="description" id="description">
<h4>Image (url):</h4>
<input type="url" name="img-url" id="character-image">
<div class="submit-button"> <input id="button" type="submit" value="Add Character"></div>
</form>
</section>
<!-- -->
<ul class="character-list">
<li></li>
</ul>
</div>
</div>
<footer>
</footer>
</body>
</html> | Alan-mag/Schwifty | html/characters.html | HTML | mit | 1,967 |
<section class="resume-section p-3 p-lg-5 d-flex flex-column" id="experience">
<div class="my-auto" id="experience-content">
<h2 class="mb-5">Experience</h2>
{{ range .Site.Data.experience }}
<div class="resume-item d-flex flex-column flex-md-row mb-5">
<div class="resume-content mr-auto">
<h3 class="mb-0">{{ .role }}</h3>
<div class="subheading mb-3">{{ .company }}</div>
<p>{{ .summary }}</p>
</div>
<div class="resume-date text-md-right">
<span class="text-primary">{{ .range }}</span>
</div>
</div>
{{ end }}
</div>
</section>
| localstatic/morganterry.com | themes/hugo-resume-customized/layouts/partials/portfolio/experience.html | HTML | mit | 654 |
<section data-ng-controller="EventsController" data-ng-init="find()">
<div class="page-header">
<h1>Events</h1>
</div>
<div class="list-group">
<a data-ng-repeat="event in events" data-ui-sref="events.view({eventId: event._id})" class="list-group-item">
<h2 data-ng-bind="event.name"></h2>
<small class="list-group-item-text">
Posted on <span data-ng-bind="event.created | date:'medium'"></span>
<span data-ng-bind="event._id"></span>
</small>
<h4 class="list-group-item-heading" data-ng-bind="event.address"></h4>
<!-- <h3 class="list-group-item" data-ng-bind="event._id"></h3> -->
</a>
</div>
<div class="alert alert-warning text-center" data-ng-if="events.$resolved && !events.length">
No Events yet, why don't you <a data-ui-sref="events.create">create one</a>?
</div>
</section>
| ucsddb/let-it-ride | modules/events/client/views/list-events.client.view.html | HTML | mit | 932 |
<div class="featurebook-scenario">
<div class="featurebook-tag" ng-repeat="tag in scenario.tags track by $index">{{tag.name}}</div>
<div class="featurebook-scenario-name">{{scenario.keyword}}: {{scenario.name}}</div>
<div class="featurebook-scenario-description featurebook-markdown"
ng-if="scenario.description"
ng-bind-html="scenario.description"></div>
<gherkin-step ng-model="step" ng-repeat="step in scenario.steps"></gherkin-step>
<div class="featurebook-examples" ng-repeat="example in scenario.examples">
<div class="featurebook-examples-name">{{example.keyword}}: {{example.name}}</div>
<div class="featurebook-examples-description featurebook-markdown"
ng-if="example.description"
ng-bind-html="example.description"></div>
<gherkin-data-table class="featurebook-indent-1x"
table-header="example.tableHeader"
table-body="example.tableBody"></gherkin-data-table>
</div>
</div> | SOFTWARE-CLINIC/featurebook-serve | public/views/gherkin-scenario.html | HTML | mit | 1,035 |
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Models — Research Survival Manual</title>
<link rel="stylesheet" href="../../_static/basic.css" type="text/css" />
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
<link rel="stylesheet" href="../../_static/modify.css" type="text/css" />
<link rel="stylesheet" href="../../_static/css/rrssb.css" type="text/css" />
<link rel="stylesheet" href="../../_static/bootswatch-3.3.4/flatly/bootstrap.min.css" type="text/css" />
<link rel="stylesheet" href="../../_static/bootstrap-sphinx.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../../',
VERSION: '1.38',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
};
</script>
<script type="text/javascript" src="../../_static/jquery.js"></script>
<script type="text/javascript" src="../../_static/underscore.js"></script>
<script type="text/javascript" src="../../_static/doctools.js"></script>
<script type="text/javascript" src="../../_static/js/rrssb.js"></script>
<script type="text/javascript" src="../../_static/js/jquery-1.11.0.min.js"></script>
<script type="text/javascript" src="../../_static/js/jquery-fix.js"></script>
<script type="text/javascript" src="../../_static/bootstrap-3.3.4/js/bootstrap.min.js"></script>
<script type="text/javascript" src="../../_static/bootstrap-sphinx.js"></script>
<link rel="top" title="Research Survival Manual" href="../../index.html" />
<link rel="up" title="Vocabulary and Program" href="main.html" />
<link rel="next" title="Program" href="program.html" />
<link rel="prev" title="Vocabulary" href="vocabulary.html" />
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-44466929-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>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge,chrome=1'>
<meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1'>
<meta name="apple-mobile-web-app-capable" content="yes">
</head>
<body role="document">
<div id="navbar" class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<!-- .btn-navbar is used as the toggle for collapsed navbar content -->
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="../../index.html">
Physics Research Survival Manual</a>
<span class="navbar-text navbar-version pull-left"><b>1.38</b></span>
</div>
<div class="collapse navbar-collapse nav-collapse">
<ul class="nav navbar-nav">
<li class="dropdown globaltoc-container">
<a role="button"
id="dLabelGlobalToc"
data-toggle="dropdown"
data-target="#"
href="../../index.html">Site <b class="caret"></b></a>
<ul class="dropdown-menu globaltoc"
role="menu"
aria-labelledby="dLabelGlobalToc"><ul>
<li class="toctree-l1"><a class="reference internal" href="../../preface.html">Whatever</a></li>
</ul>
<ul>
<li class="toctree-l1"><a class="reference internal" href="../../fun.html">Fun</a></li>
</ul>
<ul>
<li class="toctree-l1"><a class="reference internal" href="../../voc/vocabulary.html">Vocabulary</a></li>
<li class="toctree-l1"><a class="reference internal" href="../../basic.html">Basic</a></li>
</ul>
<ul>
<li class="toctree-l1"><a class="reference internal" href="../../math.html">Mathematics</a></li>
<li class="toctree-l1"><a class="reference internal" href="../../special-functions.html">Special Functions</a></li>
<li class="toctree-l1"><a class="reference internal" href="../../equation-solving.html">Equation Solving</a></li>
</ul>
<ul class="current">
<li class="toctree-l1"><a class="reference internal" href="../../classicalMechanics.html">Classical Mechanics</a></li>
<li class="toctree-l1"><a class="reference internal" href="../../quantum/quantumMechanics.html">Quantum Mechanics</a></li>
<li class="toctree-l1"><a class="reference internal" href="../../quantum/quantumMechanics2.html">Quantum Mechanics 2</a></li>
<li class="toctree-l1"><a class="reference internal" href="../../quantum/quantumMechanics3.html">Quantum Mechanics 3</a></li>
<li class="toctree-l1"><a class="reference internal" href="../../statmech/statisticalPhysics.html">Statistical Physics</a></li>
<li class="toctree-l1 current"><a class="reference internal" href="../index.html">Electrodynamics</a></li>
</ul>
<ul>
<li class="toctree-l1"><a class="reference internal" href="../../relativity/specialRelativity.html">Special Relativity</a></li>
<li class="toctree-l1"><a class="reference internal" href="../../relativity/generalRelativity.html">General Relativity</a></li>
</ul>
<ul>
<li class="toctree-l1"><a class="reference internal" href="../../astrophysics.html">Astrophysics</a></li>
<li class="toctree-l1"><a class="reference internal" href="../../relativity/generalRelativityAdv.html">General Relativity Revisited</a></li>
<li class="toctree-l1"><a class="reference internal" href="../../cosmology/cosmoIndex.html">Cosmology</a></li>
<li class="toctree-l1"><a class="reference internal" href="../../quantum/quantumOptics.html">Quantum Optics</a></li>
<li class="toctree-l1"><a class="reference internal" href="../../quantum/susyQuantum.html">Super-Symmetric Quantum Mechanics</a></li>
</ul>
</ul>
</li>
<li class="dropdown">
<a role="button"
id="dLabelLocalToc"
data-toggle="dropdown"
data-target="#"
href="#">Page <b class="caret"></b></a>
<ul class="dropdown-menu localtoc"
role="menu"
aria-labelledby="dLabelLocalToc"><ul>
<li><a class="reference internal" href="#">Models</a><ul>
<li><a class="reference internal" href="#drude-model">Drude Model</a><ul>
<li><a class="reference internal" href="#maxwell-equations">Maxwell Equations</a></li>
<li><a class="reference internal" href="#current-density">Current Density</a></li>
<li><a class="reference internal" href="#maxwell-s-equation-in-neutral-matter">Maxwell’s Equation in Neutral Matter</a></li>
<li><a class="reference internal" href="#dispersion-relation">Dispersion Relation</a></li>
</ul>
</li>
<li><a class="reference internal" href="#lorentz-model">Lorentz Model</a><ul>
<li><a class="reference internal" href="#limits">Limits</a></li>
</ul>
</li>
</ul>
</li>
</ul>
</ul>
</li>
<li>
<a href="vocabulary.html" title="Previous Chapter: Vocabulary"><span class="glyphicon glyphicon-chevron-left visible-sm"></span><span class="hidden-sm hidden-tablet">« Vocabulary</span>
</a>
</li>
<li>
<a href="program.html" title="Next Chapter: Program"><span class="glyphicon glyphicon-chevron-right visible-sm"></span><span class="hidden-sm hidden-tablet">Program »</span>
</a>
</li>
</ul>
<form class="navbar-form navbar-right" action="../../search.html" method="get">
<div class="form-group">
<input type="text" name="q" class="form-control" placeholder="Search" />
</div>
<input type="hidden" name="check_keywords" value="yes" />
<input type="hidden" name="area" value="default" />
</form>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="section" id="models">
<h1>Models<a class="headerlink" href="#models" title="Permalink to this headline">¶</a></h1>
<div class="section" id="drude-model">
<span id="id1"></span><h2>Drude Model<a class="headerlink" href="#drude-model" title="Permalink to this headline">¶</a></h2>
<p>Drude models models the electromagnetic properties of conductors. In this simple model, electromagnetic interaction with the electromagnetic waves comes from the free charges governed by this equation of motion.</p>
<div class="math">
<p><img src="../../_images/math/581dbca5632afd8a65bab3aea067544533a49939.png" alt="m\frac{d \vec v}{d t} = q \vec E - \frac{m \vec v}{\tau},"/></p>
</div><p>where <img class="math" src="../../_images/math/31e7d7a5e6deb3403466ceb934916c3957367fa5.png" alt="\tau"/> is the damping term like the one in Brownian motion. In fact this is a Brownian motion like equation since <img class="math" src="../../_images/math/d8ed03426dcf54f80353a474ef0978a8f72a4e8e.png" alt="\vec E"/> is periodic and averages to 0 in a simple case <strong>except that this external electric force is not random</strong>.</p>
<div class="note admonition">
<p class="first admonition-title">Math</p>
<p>Now consider the solution to this equation which is simple using Green’s function,</p>
<div class="math">
<p><img src="../../_images/math/511d826b982bc4e168596506991ef8e2c93e86b6.png" alt="\vec v(t) &= \vec v(0) e^{-t/\tau} + \frac{q\vec E _0}{m}\int_0^t dt' e^{-(t-t')/\tau} e^{-i \omega t'}\\
&= \vec v(0) e^{-t/\tau} + \frac{q\vec E_0}{m} e^{-t/\tau} \frac{i\tau (-1 + e^{t(1/2-i\omega)})}{\tau \omega + i}."/></p>
</div><p>The first term is the damping contribution to the velocity of the charges and the second term is the contribution of electric field.</p>
<p>As a practice, we can show that the ratio of two contributions is</p>
<div class="math">
<p><img src="../../_images/math/10a79c06e523e3d4f1637794b66e0094e69c4636.png" alt="M &= \frac{\lvert v_2 \rvert}{\lvert v_1 \rvert} \\
& = \frac{1}{v(0)} \frac{q E_0}{m} \frac{i\tau (-1 + e^{t(1/2-i\omega)})}{\tau \omega + i} \\
& = \frac{q E_0}{m v(0)} \frac{i\tau ( e^{t/\tau (1-i\omega \tau)} - 1)}{i + \omega \tau}."/></p>
</div><p>It is obvious that in the limit <img class="math" src="../../_images/math/20f2e3d1107576d882bd3a63df576d1afdabfef8.png" alt="\omega \tau \gg 1"/>, and after a long time this ratio becomes 0 which actually comes from the fact that <img class="math" src="../../_images/math/09eb07492fdbc0a78bdb9895372d783db4ec6562.png" alt="\omega"/> is very large.</p>
<p>This means that in a long run, the damping always takes over the system if we have a very large frequency. Now the next question is what is the energy contribution of electric field after a long time?</p>
<div class="math">
<p><img src="../../_images/math/46bb28e348ade9c4f35cbf383625490ba4d7fff6.png" alt="\vec v_2(t) = \frac{q\vec E_0}{m} e^{-t/\tau} \frac{i\tau (-1 + e^{t(1/2-i\omega)})}{\tau \omega + i}"/></p>
</div><p>becomes 0 as <img class="math" src="../../_images/math/09eb07492fdbc0a78bdb9895372d783db4ec6562.png" alt="\omega"/> becomes large enough.</p>
<p>So in a high frequency limit, the system take no energy from electric field.</p>
<p class="last">Note that this result is complex. Explain why is a velocity is complex.</p>
</div>
<p>In this model, what to calculate is the electromagnetic response of the material like reflection ration etc.</p>
<div class="section" id="maxwell-equations">
<h3>Maxwell Equations<a class="headerlink" href="#maxwell-equations" title="Permalink to this headline">¶</a></h3>
<div class="note admonition">
<p class="first admonition-title">Maxwell Equations</p>
<p class="last">nablacdot vec D &= 4pi rho ,\
nablacdot vec B & = 0 ,\
nabla times vec E & = -frac{1}{c} partial_t vec B ,\
nabla times vec H & = frac{1}{c}partial_t vec D + frac{4pi}{c} vec j .</p>
</div>
<p>In Drude model, for each mode <img class="math" src="../../_images/math/77cf077bf7b6d95f9e04090177811878885047a6.png" alt="\vec E, \vec B \propto e^{i(\vec k \cdot \vec )}"/>, I can replace <img class="math" src="../../_images/math/c33c02952591a1632847cbaa90e0a3c8dd21a007.png" alt="\partial_t"/> with <img class="math" src="../../_images/math/708587ee97b450cfe81780c6fbf51a6e735d53b3.png" alt="-i\omega"/> and <img class="math" src="../../_images/math/87a15611e13fedbf1446a6084ec85b8b9282e365.png" alt="\vec \nabla"/> with <img class="math" src="../../_images/math/f655dc4eb2c7f2522abf8be442f2ab2311d1df90.png" alt="i\vec k"/>. With the help of this, the Maxwell’s equation becomes</p>
<div class="math">
<p><img src="../../_images/math/038b9c0040976a6d1f1d5d61ad9598f1ae5b5067.png" alt="\vec k \cdot \vec D &= 4\pi \rho, \\
\vec k \cdot \vec B & = 0, \\
\vec k \times \vec E & = -\frac{1}{c} (-i\omega) \vec B, \\
\vec k \times \vec H & = \frac{1}{c} (-i\omega) \vec D + \frac{4\pi}{c} \vec j."/></p>
</div></div>
<div class="section" id="current-density">
<h3>Current Density<a class="headerlink" href="#current-density" title="Permalink to this headline">¶</a></h3>
<p>The current density is</p>
<div class="math">
<p><img src="../../_images/math/7e5bc3bd8861e385fdc3ff84b91088886ba0bbc9.png" alt="\vec j = q n_q \langle \vec v \rangle."/></p>
</div><p>Meanwhile, the Drude model tells us the velocity is governed by</p>
<div class="math">
<p><img src="../../_images/math/ce7972a774ca0c299363c184345fef2a4dcc09c2.png" alt="m \frac{d \vec v}{dt} = q\vec E - \frac{m \vec v}{\tau},"/></p>
</div><p>where <img class="math" src="../../_images/math/30356cd10359eea90bc235fa4e5c5c4412f3a5a2.png" alt="- \frac{m \vec v}{\tau}"/> is a damping term.</p>
<div class="note admonition">
<p class="first admonition-title">Damping Term</p>
<p class="last">This damping term can also be interpreted as the mean free time or some kind of probability.</p>
</div>
<p>Plugin the current density we could find the equation for current density.</p>
<div class="math">
<p><img src="../../_images/math/b45141a9af740fce1b63a0f4ea7e63d7f5c0f63c.png" alt="\vec j &= q n_q \langle \vec v \rangle \\
& = \vec E \left( \frac{q^2 n_q \tau}{m(1 - i \omega\tau)} \right) \\"/></p>
</div><p>Ohm’s law tells us that</p>
<div class="math">
<p><img src="../../_images/math/42a0d618fdbe2a986eb8b1ff6763d69d414ada76.png" alt="\vec j = \sigma \vec E."/></p>
</div><p>Now we can have a phenomelogical conductivity from Drude model,</p>
<div class="math">
<p><img src="../../_images/math/cfecf376b7b3907c62755ece43eeab03ce574ae3.png" alt="\sigma(\omega) = \frac{q^2 n_q \tau}{m(1 - i \omega\tau)}."/></p>
</div></div>
<div class="section" id="maxwell-s-equation-in-neutral-matter">
<h3>Maxwell’s Equation in Neutral Matter<a class="headerlink" href="#maxwell-s-equation-in-neutral-matter" title="Permalink to this headline">¶</a></h3>
<p>Pluging in the current density we calculated previously, the Maxwell’s equation becomes</p>
<div class="math">
<p><img src="../../_images/math/f7ce54a06afde5ebac6075db081f0c8ac82ec7d5.png" alt="\vec k \cdot \vec D &= 4\pi \rho, \\
\vec k \cdot \vec B & = 0, \\
\vec k \times \vec E & = -\frac{1}{c} (-i\omega) \vec B, \\
\vec k \times \vec H & = \frac{1}{c} (-i\omega) \epsilon \vec E + \frac{4\pi}{c} \sigma \vec E."/></p>
</div><p>Comparing with the equations in matter without free charge, where the transverse wave satisfies</p>
<div class="math">
<p><img src="../../_images/math/f2105d2ddb86a3544bf641778d23b5aa9f58e317.png" alt="\vec k \cdot \vec E &= 0, \\
\vec k \cdot \vec B &=0, \\
\vec k \times \vec E &= \frac{\omega}{c} \vec B, \\
\vec k \times \vec H & = -\frac{\omega}{c} \vec D"/></p>
</div><p>we can find the expression for permitivity,</p>
<div class="math">
<p><img src="../../_images/math/037c1e37ed91d29e64f57d2d20758b93a194123a.png" alt="\epsilon = 1 + \frac{i \omega_p^2 \tau}{\omega(1- i\omega \tau)}."/></p>
</div><p>since <img class="math" src="../../_images/math/26e4eee0f290e960fa832fe726b69c44f0d5230b.png" alt="\mu=1"/>. In the result I defined</p>
<div class="math">
<p><img src="../../_images/math/92867a6b659083df25e7b0941bd482b13daec090.png" alt="\omega^2 = e^2n_e\tau/m ."/></p>
</div><p>The next quantity is to calculate the refractive index with <img class="math" src="../../_images/math/26e4eee0f290e960fa832fe726b69c44f0d5230b.png" alt="\mu=1"/>.</p>
<div class="math">
<p><img src="../../_images/math/ea8ad06c39ca65d805e5e77ec88e997bf3666083.png" alt="n = \sqrt{\epsilon\mu} = \sqrt{1 + \frac{i \omega_p^2 \tau}{\omega(1- i\omega \tau)} }."/></p>
</div><p>In the limit of <img class="math" src="../../_images/math/20f2e3d1107576d882bd3a63df576d1afdabfef8.png" alt="\omega \tau \gg 1"/>, refractive index becomes</p>
<div class="math">
<p><img src="../../_images/math/fbba70d070e1a651cd300c427fe3363e9ceffc3f.png" alt="n^2 = 1 - \frac{\omega_p^2}{\omega^2}."/></p>
</div></div>
<div class="section" id="dispersion-relation">
<h3>Dispersion Relation<a class="headerlink" href="#dispersion-relation" title="Permalink to this headline">¶</a></h3>
<div class="math">
<p><img src="../../_images/math/fab89e2fbefa536b71cd4d8adc45e7a5b7942227.png" alt="\vec k \times \vec E &= \frac{\omega}{c} \vec B, \\
\vec k \times \vec H & = -\frac{\omega}{c} \vec D"/></p>
</div><p>gives us the dispersion relation. However, we need to make a choice that the field need to be broken into parts that is perpendicular and parallel to wave vector. For the transverse wave, we could write down</p>
<div class="math">
<p><img src="../../_images/math/f2ea7d9372b7e262c042ef6588911381f52f68c5.png" alt="k^2 = \frac{\omega}{c}\epsilon."/></p>
</div></div>
</div>
<div class="section" id="lorentz-model">
<span id="id2"></span><h2>Lorentz Model<a class="headerlink" href="#lorentz-model" title="Permalink to this headline">¶</a></h2>
<p>Drude model only considers the damping part of conducting charges. Lorentz model, considers the actually polarization inside medium, using a simple but efficient model.</p>
<p>In models about matter response to electromagnetic waves, we have to get the permitivity out of it and furthure calculate the refractive index.</p>
<p>Suppose we already know how to write down polarization,</p>
<div class="math">
<p><img src="../../_images/math/3a9d0c20e776e63c6b3a487826181aabceed3863.png" alt="\vec P = n \vec p,"/></p>
</div><p>which means the polarization is caused by a lot of small dipoles. At this point we are not binded to the calculation of the detailed expression of these small dipoles. Instead we are going to calculate the permitivity first then come back to have a look at the details.</p>
<p>In statics we know,</p>
<div class="math">
<p><img src="../../_images/math/4b98621c99657849cbbec20e3fd6bbb87d185294.png" alt="\vec D = \vec E + 4\pi \vec P \equiv \vec E + 4\pi \chi\vec E = \epsilon \vec E."/></p>
</div><p>To find <img class="math" src="../../_images/math/d881ac49cfda22889a9ffebf2610dca805c62061.png" alt="\epsilon"/> we need to establish the relation between <img class="math" src="../../_images/math/13b4f72617cefc0f53fc6493114ec04200714fd9.png" alt="\vec P"/> and <img class="math" src="../../_images/math/d8ed03426dcf54f80353a474ef0978a8f72a4e8e.png" alt="\vec E"/> which is equivalently setting up the relation between <img class="math" src="../../_images/math/3c1e9feb358b1390412193fe16fb218b8fdad507.png" alt="n \vec p"/> and <img class="math" src="../../_images/math/d8ed03426dcf54f80353a474ef0978a8f72a4e8e.png" alt="\vec E"/>.</p>
<p>Here we introduce Lorentz model. In this context, we consider the case that equation of motion for the charges are governed by</p>
<div class="math">
<p><img src="../../_images/math/f4f62e4dd340fb796b893dafa3f045eddbcf1cbb.png" alt="m\ddot {\vec x} = - e\vec E -m \omega_0^2 \vec x - \gamma m \dot{\vec x}."/></p>
</div><p>Solve the equation of motion we have the relation between <img class="math" src="../../_images/math/1965e2c30cd0d5928cbd589a3f403d94ac59d86f.png" alt="\vec x"/> and <img class="math" src="../../_images/math/d8ed03426dcf54f80353a474ef0978a8f72a4e8e.png" alt="\vec E"/> thus we can write down</p>
<div class="math">
<p><img src="../../_images/math/b97e7e42575f0f97955fa959d78d72496308801a.png" alt="\vec P &= n \vec p \\
& = - e n \vec x \\
& = -e n \frac{-e \vec E/m}{\omega_0^2 - \omega^2 - i \gamma \omega}\\
& = \frac{e^2 n /m}{\omega_0^2 - \omega^2 - i \gamma \omega}\vec E ."/></p>
</div><p>Imediately, we have the permitivity</p>
<div class="math">
<p><img src="../../_images/math/900c381fbf0cd9e942b822fcd510f5b43016e8c8.png" alt="\epsilon &= \epsilon_0 + 4\pi \chi \\
& = 1 + 4\pi \frac{e^2 n /m}{\omega_0^2 - \omega^2 - i \gamma \omega} \\
& = 1 + \frac{\omega_p^2}{\omega_0^2 - \omega^2 - i \gamma \omega} ,"/></p>
</div><p>where we used the definition of plasma frequency</p>
<div class="math">
<p><img src="../../_images/math/2db01ab82f9dd555a4e32c3999022ce2e9e6a61c.png" alt="\omega_p^2 = \frac{4\pi n e^2}{m}."/></p>
</div><div class="section" id="limits">
<h3>Limits<a class="headerlink" href="#limits" title="Permalink to this headline">¶</a></h3>
<p>We have got three important parameters or arguments in Lorentz model, <img class="math" src="../../_images/math/be38f4ee8b2a562e94d6ef19be884da00e294a42.png" alt="\omega_0"/>, <img class="math" src="../../_images/math/09eb07492fdbc0a78bdb9895372d783db4ec6562.png" alt="\omega"/>, <img class="math" src="../../_images/math/bdf8bd9306e1aeef5ebf2ac8836f087b05304983.png" alt="\gamma"/> and on overall <img class="math" src="../../_images/math/332fd15eb99ab94498b9b346dbf75563798b1208.png" alt="\omega_p"/>. One should notice that in normal matter we would see <img class="math" src="../../_images/math/7f125af099d9dfd259d56d911121f88910e46ebe.png" alt="\gamma \ll \omega_0\ll \omega_p"/>.</p>
<p>Three limits can be considered,</p>
<ol class="arabic simple">
<li>low frequency, <img class="math" src="../../_images/math/09eb07492fdbc0a78bdb9895372d783db4ec6562.png" alt="\omega"/> is very small like <img class="math" src="../../_images/math/42775686031a157e0004d9fb36a712e735dc0089.png" alt="\omega_0 - \omega \gg \gamma"/>;</li>
<li>critical, <img class="math" src="../../_images/math/394baf4e9e26f0a7404dfe18a2b86eb1ba5d727a.png" alt="\omega = \omega_0"/> where we have only <img class="math" src="../../_images/math/b0320040f2a82be28859e546b21216ed95c3289c.png" alt="-i\gamma \omega"/> appears in denominator;</li>
<li>intermediate, <img class="math" src="../../_images/math/147750411cdff404158f69267b4828b193e19a79.png" alt="\omega_0 \ll \omega \ll \omega_p"/>;</li>
<li>very high frequency, <img class="math" src="../../_images/math/18ea3c21f4add0d06d0fcc5a045173c391139ed5.png" alt="\omega \gg \omega _p"/>.</li>
</ol>
<p>The interesting thing is that in situation 3, we get back to Drude model.</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="container" style="border-top:solid 1px black;margin-top:10px;padding-top:10px;padding-bottom:10px;">
<div id="disqus_thread"></div>
<script type="text/javascript">
/* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */
var disqus_shortname = 'researchsurvivalmanual'; // required: replace example with your forum shortname
/* * * DON'T EDIT BELOW THIS LINE * * */
(function() {
var dsq = document.createElement('script');
dsq.type = 'text/javascript';
dsq.async = true;
dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>
<noscript>Please enable JavaScript to view the
<a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a>
</noscript>
</div>
<hr>
<div class="container" style="border-top:solid 1px black;margin-top:10px;padding-top:10px;padding-bottom:10px;">
<p class="pull-right">
<a href="#">Back to top</a>
</p>
<p>
<span>© Copyright 2014, Lei Ma.</span>|
<a href="https://github.com/emptymalei/StatisticalPhysics">On GitHub</a>|
<span>Created with
<a href="http://sphinx.pocoo.org/">Sphinx</a>1.2b2.</span> <span><script data-gittip-username="emptymalei"
data-gittip-widget="button"
src="//gttp.co/v1.js"></script></span>
</p>
<hr>
<div class="share-container">
<span class="label">Share:</span>
<!-- buttons start here -->
<ul class="rrssb-buttons clearfix">
<li class="email">
<a href="mailto:?subject=Check%20out%20this%20statistical%20mechanics%20website&body=http%3A%2F%2Femptymalei.github.io%2FStatisticalPhysics">
<span class="icon">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="28px" height="28px" viewBox="0 0 28 28" enable-background="new 0 0 28 28" xml:space="preserve">
<g>
<path d="M20.111 26.147c-2.336 1.051-4.361 1.401-7.125 1.401c-6.462 0-12.146-4.633-12.146-12.265 c0-7.94 5.762-14.833 14.561-14.833c6.853 0 11.8 4.7 11.8 11.252c0 5.684-3.194 9.265-7.399 9.3 c-1.829 0-3.153-0.934-3.347-2.997h-0.077c-1.208 1.986-2.96 2.997-5.023 2.997c-2.532 0-4.361-1.868-4.361-5.062 c0-4.749 3.504-9.071 9.111-9.071c1.713 0 3.7 0.4 4.6 0.973l-1.169 7.203c-0.388 2.298-0.116 3.3 1 3.4 c1.673 0 3.773-2.102 3.773-6.58c0-5.061-3.27-8.994-9.303-8.994c-5.957 0-11.175 4.673-11.175 12.1 c0 6.5 4.2 10.2 10 10.201c1.986 0 4.089-0.43 5.646-1.245L20.111 26.147z M16.646 10.1 c-0.311-0.078-0.701-0.155-1.207-0.155c-2.571 0-4.595 2.53-4.595 5.529c0 1.5 0.7 2.4 1.9 2.4 c1.441 0 2.959-1.828 3.311-4.087L16.646 10.068z" />
</g>
</svg>
</span>
<span class="text">email</span>
</a>
</li>
<li class="facebook">
<a href="https://www.facebook.com/sharer/sharer.php?u=http://emptymalei.github.io/StatisticalPhysics
">
<span class="icon">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="30px" height="30px" viewBox="0 0 100 100" xml:space="preserve" class="style0">
<path d="M99.5,17.001C99.5,8.31,91.689,0.5,83,0.5H17C8.327,0.5,0.5,8.31,0.5,17.001v65.998C0.5,91.689,8.31,99.5,17,99.5h33V62.1 H37.9V45.6H50v-6.428C50,28.11,58.359,18.1,68.59,18.1H81.9v16.5H68.562c-1.46,0-3.162,1.761-3.162,4.427V45.6h16.5v16.5H65.4v37.4 H83c8.672,0,16.5-7.83,16.5-16.501V17.001z" />
</svg>
</span>
<span class="text">facebook</span>
</a>
</li>
<li class="linkedin">
<a href="http://www.linkedin.com/shareArticle?mini=true&url=http://emptymalei.github.io/StatisticalPhysics
&title=Statistical%20Mechanics%20Notes&summary=Statistical%20Mechanics%20Notes">
<span class="icon">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="100px" height="100px" viewBox="0 0 100 100" xml:space="preserve" class="style0">
<path d="M95 59.727V93H75.71V61.955c0-7.799-2.79-13.121-9.773-13.121c-5.33 0-8.502 3.587-9.897 7.1 c-0.509 1.241-0.64 2.967-0.64 4.704V93H36.104c0 0 0.26-52.58 0-58.028h19.295v8.225c-0.039 0.062-0.09 0.128-0.127 0.188h0.127 v-0.188c2.563-3.948 7.141-9.588 17.388-9.588C85.483 33.6 95 41.9 95 59.727z M15.919 7C9.318 7 5 11.3 5 17 c0 5.6 4.2 10 10.7 10.031h0.129c6.729 0 10.914-4.46 10.914-10.031C26.579 11.3 22.5 7 15.9 7z M6.146 93h19.289 V34.972H6.146V93z" />
</svg>
</span>
<span class="text">linkedin</span>
</a>
</li>
<li class="twitter">
<a href="http://twitter.com/home?status=Statistical%20Mechanics%20Notes%20http://emptymalei.github.io/StatisticalPhysics
">
<span class="icon">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="328 355 335 276" preserveAspectRatio="xMidYMid meet">
<path d=" M 630 425 A 195 195 0 0 1 331 600 A 142 142 0 0 0 428 570 A 70 70 0 0 1 370 523 A 70 70 0 0 0 401 521 A 70 70 0 0 1 344 455 A 70 70 0 0 0 372 460 A 70 70 0 0 1 354 370 A 195 195 0 0 0 495 442 A 67 67 0 0 1 611 380 A 117 117 0 0 0 654 363 A 65 65 0 0 1 623 401 A 117 117 0 0 0 662 390 A 65 65 0 0 1 630 425 Z" />
</svg>
</span>
<span class="text">twitter</span>
</a>
</li>
<li class="googleplus">
<a href="https://plus.google.com/share?url=Statistical%20Mechanics%20Notes%20http://emptymalei.github.io/StatisticalPhysics
">
<span class="icon">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="134.658px" height="131.646px" viewBox="0 0 134.658 131.646" enable-background="new 0 0 134.658 131.646" xml:space="preserve">
<g>
<g>
<path d="M72.689,75.044l-6.05-4.698c-1.842-1.527-4.362-3.545-4.362-7.237c0-3.708,2.521-6.064,4.707-8.246
c7.046-5.547,14.089-11.45,14.089-23.892c0-12.793-8.05-19.523-11.907-22.716h10.401l10.918-6.86H57.408
c-9.077,0-22.157,2.147-31.733,10.054c-7.217,6.226-10.739,14.813-10.739,22.542c0,13.121,10.075,26.421,27.865,26.421
c1.681,0,3.518-0.165,5.368-0.337c-0.831,2.021-1.671,3.706-1.671,6.561c0,5.211,2.678,8.406,5.038,11.435
c-7.559,0.519-21.671,1.356-32.074,7.752c-9.907,5.891-12.923,14.465-12.923,20.519c0,12.458,11.743,24.062,36.092,24.062
c28.875,0,44.159-15.976,44.159-31.791C86.792,86.988,80.078,81.269,72.689,75.044z M50.698,55.698
c-14.444,0-20.988-18.673-20.988-29.94c0-4.387,0.831-8.915,3.688-12.453C36.09,9.936,40.781,7.75,45.16,7.75
c13.925,0,21.147,18.84,21.147,30.957c0,3.032-0.333,8.405-4.194,12.287C59.411,53.69,54.893,55.698,50.698,55.698z
M50.863,123.353c-17.961,0-29.545-8.593-29.545-20.541c0-11.943,10.74-15.984,14.435-17.321
c7.048-2.373,16.117-2.704,17.63-2.704c1.678,0,2.518,0,3.855,0.17c12.77,9.087,18.311,13.615,18.311,22.219
C75.549,115.594,66.984,123.353,50.863,123.353z" />
<polygon points="115.087,55.441 115.087,38.619 106.778,38.619 106.778,55.441 89.984,55.441 89.984,63.84 106.778,63.84
106.778,80.766 115.087,80.766 115.087,63.84 131.966,63.84 131.966,55.441 " />
</g>
</g>
</svg>
</span>
<span class="text">google+</span>
</a>
</li>
<!-- <li class="youtube">
<a href="#">
<span class="icon">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="100px" height="100px" viewBox="0 0 100 100" xml:space="preserve" class="style0"><path d="M95 32.458C95 25 89 19 81.5 19h-63.1 C11.021 19 5 25 5 32.458v36.084C5 76 11 82 18.4 82h63.1C88.979 82 95 76 95 68.542V32.458z M41 65.724V31.83 l25.702 16.947L41 65.724z" class="style1"/></svg>
</span>
<span class="text">youtube</span>
</a>
</li> -->
<li class="pinterest">
<a href="http://pinterest.com/pin/create/button/?url=http://emptymalei.github.io/StatisticalPhysics
&media=http://emptymalei.github.io/StatisticalPhysics
/_static/images/cc_byncsa.png&description=Statistical%20Mechanics%20Notes.">
<span class="icon">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="28px" height="28px" viewBox="0 0 512 512" enable-background="new 0 0 512 512" xml:space="preserve">
<path d="M256 0C114.615 0 0 114.6 0 256s114.613 256 256 256c141.385 0 256-114.615 256-256S397.385 0 256 0z M280.822 342.1 c-23.26-1.807-33.021-13.328-51.252-24.404c-10.03 52.589-22.282 103.009-58.57 129.3 c-11.202-79.484 16.447-139.182 29.285-202.557c-21.892-36.853 2.635-111.017 48.81-92.737 c56.813 22.474-49.2 137 22 151.308c74.311 14.9 104.645-128.929 58.571-175.712 c-66.579-67.553-193.799-1.54-178.155 95.178c3.807 23.6 28.2 30.8 9.8 63.451c-42.61-9.446-55.325-43.051-53.688-87.856 c2.634-73.337 65.892-124.682 129.343-131.783c80.242-8.982 155.6 29.5 166 104.9 C414.553 256.4 366.6 348.7 280.8 342.059z" />
</svg>
</span>
<span class="text">pinterest</span>
</a>
</li>
<li class="github">
<a href="https://github.com/emptymalei/StatisticalPhysics">
<span class="icon">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="100px" height="100px" viewBox="0 0 100 100" enable-background="new 0 0 100 100" xml:space="preserve">
<style>
.style0{fill-rule: evenodd;clip-rule: evenodd;fill: #181616;}
</style>
<path d="M49.997 0.93c-27.268 0-49.382 22.109-49.382 49.4 c0 21.8 14.1 40.3 33.8 46.858c2.47 0.5 3.37-1.072 3.37-2.381c0-1.171-0.043-4.278-0.066-8.397 c-13.736 2.982-16.636-6.622-16.636-6.622c-2.245-5.705-5.483-7.223-5.483-7.223c-4.482-3.065 0.339-3.004 0.339-3.004 c4.956 0.4 7.6 5.1 7.6 5.091c4.405 7.5 11.6 5.4 14.4 4.103c0.449-3.189 1.726-5.367 3.137-6.602 c-10.967-1.246-22.495-5.483-22.495-24.407c0-5.392 1.924-9.8 5.083-13.253c-0.508-1.248-2.203-6.27 0.484-13.069 c0 0 4.146-1.328 13.6 5.063c3.939-1.096 8.164-1.644 12.363-1.662c4.194 0 8.4 0.6 12.4 1.7 c9.427-6.392 13.566-5.063 13.566-5.063c2.695 6.8 1 11.8 0.5 13.069c3.165 3.5 5.1 7.9 5.1 13.3 c0 18.972-11.547 23.146-22.549 24.368c1.776 1.5 3.4 4.5 3.4 9.147c0 6.602-0.062 11.928-0.062 13.5 c0 1.3 0.9 2.9 3.4 2.375c19.604-6.544 33.742-25.041 33.742-46.853C99.386 23 77.3 0.9 50 0.93z" class="style0" />
</svg>
</span>
<span class="text">github</span>
</a>
</li>
</ul>
<!-- buttons end here -->
</div>
<script>
window.jQuery || document.write('<script src="_static/js/vendor/jquery-1.9.1.min.js"><\/script>')
</script>
</div>
</body>
</html> | CosmologyTaskForce/PhysicsResearchSurvivalManual | docs/_build/html/electrodynamics/vocabulary/models.html | HTML | mit | 35,811 |
<table class="table table-striped table-bordered">
<thead>
<tr>
<th>Name</th>
<th>Size</th>
<th>Price</th>
<th>Quantity</th>
<th>Totals</th>
</tr>
</thead>
<tbody>
{% for row in cart %}
<tr>
<td><a data-toggle="modal" data-target="#row_{{ row.product_id }}">{{ row.name }}</a></td>
<td>{{ row.size }}</td>
<td>{{ row.price | decimal }}</td>
<td>{{ row.quantity }}</td>
<td><span class="pull-right">{{ row.extended | decimal }}</span></td>
</tr>
{% endfor %}
</tbody>
<tfoot>
<tr>
<td colspan="4"><strong>Total</strong></td>
<td><span class="pull-right">$ {{ total | decimal }}</span></td>
</tr>
</tfoot>
</table>
{% for row in cart %}
<div class="modal fade" id="row_{{ row.product_id }}" tabindex="-1" role="dialog" aria-labelledby="rowLabel{{ row.product_id }}" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3 class="modal-title" id="rowLabel{{ row.product_id }}">{{ row.name }}</h3>
</div>
<div class="modal-body">
<img src='/Content/images/product/{{ row.image }}' class="alignright img-thumbnail img-detail" alt='{{ row.name }}' />
<dl>
<dt>{{ row.brand }}</dt>
<dd>{{ row.name }}, {{ row.size }}</dd>
<dt>Serving</dt>
<dd>{{ row.servingsize }}</dd>
<dt>Per Container</dt>
<dd>{{ row.servings }}</dd>
<dt>Ingredients</dt>
<dd>{{ row.ingredients }}</dd>
</dl>
<div class="row">
<div class="col-sm-6">
<div class="input-group input-group-sm update-cart">
<select class="form-control" data-id="{{ row.product_id }}" data-price="{{ row.price }}">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
<option value="7">7</option>
<option value="8">8</option>
<option value="9">9</option>
<option value="10">10</option>
<option value="11">11</option>
<option value="12">12</option>
<option value="13">13</option>
<option value="14">14</option>
<option value="15">15</option>
<option value="16">16</option>
<option value="17">17</option>
<option value="18">18</option>
<option value="19">19</option>
<option value="20">20</option>
<option value="21">21</option>
<option value="22">22</option>
<option value="23">23</option>
<option value="24">24</option>
</select>
<span class="input-group-btn">
<button class="btn btn-default" type="submit" data-dismiss="modal"><span class="glyphicon glyphicon-shopping-cart"></span> Add to cart</button>
</span>
</div>
</div>
</div>
<p />
<div>
<button class="btn btn-warning delete-cart" type="submit" data-dismiss="modal" data-id="{{ row.product_id }}" data-quantity="-{{ row.quantity }}"><span class=" glyphicon glyphicon-trash"></span> Remove</button>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-primary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
{% endfor %}
| darkoverlordofdata/monomart | monomart/Content/templates/shopping/index.html | HTML | mit | 4,618 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN""http://www.w3.org/TR/REC-html40/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc on Fri Aug 06 17:37:29 EST 2004 -->
<TITLE>
PathFinding
</TITLE>
<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
</HEAD>
<SCRIPT>
function asd()
{
parent.document.title="PathFinding";
}
</SCRIPT>
<BODY BGCOLOR="white" onload="asd();">
<!-- ========== START OF NAVBAR ========== -->
<A NAME="navbar_top"><!-- --></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0">
<TR>
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Package</FONT> </TD>
</TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="OverlayLoader.html"><B>PREV CLASS</B></A>
<A HREF="Player.html"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="index.html" TARGET="_top"><B>FRAMES</B></A>
<A HREF="PathFinding.html" TARGET="_top"><B>NO FRAMES</B></A>
<SCRIPT>
<!--
if(window==top) {
document.writeln('<A HREF="allclasses-noframe.html" TARGET=""><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="allclasses-noframe.html" TARGET=""><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: NESTED | <A HREF="#field_summary">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: <A HREF="#field_detail">FIELD</A> | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<!-- =========== END OF NAVBAR =========== -->
<HR>
<!-- ======== START OF CLASS DATA ======== -->
<H2>
Class PathFinding</H2>
<PRE>
java.lang.Object
|
+--<B>PathFinding</B>
</PRE>
<HR>
<DL>
<DT>public class <B>PathFinding</B><DT>extends java.lang.Object</DL>
<P>
<HR>
<P>
<!-- ======== NESTED CLASS SUMMARY ======== -->
<!-- =========== FIELD SUMMARY =========== -->
<A NAME="field_summary"><!-- --></A>
<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TD COLSPAN=2><FONT SIZE="+2">
<B>Field Summary</B></FONT></TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected Army</CODE></FONT></TD>
<TD><CODE><B><A HREF="PathFinding.html#army">army</A></B></CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected int</CODE></FONT></TD>
<TD><CODE><B><A HREF="PathFinding.html#current">current</A></B></CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected int</CODE></FONT></TD>
<TD><CODE><B><A HREF="PathFinding.html#cx">cx</A></B></CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected int</CODE></FONT></TD>
<TD><CODE><B><A HREF="PathFinding.html#cy">cy</A></B></CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected GameData</CODE></FONT></TD>
<TD><CODE><B><A HREF="PathFinding.html#gd">gd</A></B></CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected java.util.ArrayList</CODE></FONT></TD>
<TD><CODE><B><A HREF="PathFinding.html#path">path</A></B></CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected UnitTypeLoader</CODE></FONT></TD>
<TD><CODE><B><A HREF="PathFinding.html#uloader">uloader</A></B></CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected int</CODE></FONT></TD>
<TD><CODE><B><A HREF="PathFinding.html#x1">x1</A></B></CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected int</CODE></FONT></TD>
<TD><CODE><B><A HREF="PathFinding.html#x2">x2</A></B></CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected int</CODE></FONT></TD>
<TD><CODE><B><A HREF="PathFinding.html#y1">y1</A></B></CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected int</CODE></FONT></TD>
<TD><CODE><B><A HREF="PathFinding.html#y2">y2</A></B></CODE>
<BR>
</TD>
</TR>
</TABLE>
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<A NAME="constructor_summary"><!-- --></A>
<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TD COLSPAN=2><FONT SIZE="+2">
<B>Constructor Summary</B></FONT></TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><B><A HREF="PathFinding.html#PathFinding(GameData, UnitTypeLoader, Army, int, int, int, int)">PathFinding</A></B>(GameData gdat,
UnitTypeLoader ul,
Army a,
int cx1,
int cy1,
int cx2,
int cy2)</CODE>
<BR>
</TD>
</TR>
</TABLE>
<!-- ========== METHOD SUMMARY =========== -->
<A NAME="method_summary"><!-- --></A>
<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TD COLSPAN=2><FONT SIZE="+2">
<B>Method Summary</B></FONT></TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="PathFinding.html#checkLine(LineIterator, boolean)">checkLine</A></B>(LineIterator li,
boolean add)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="PathFinding.html#checkPath(LineIterator, int, int)">checkPath</A></B>(LineIterator li,
int x,
int y)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.awt.Point</CODE></FONT></TD>
<TD><CODE><B><A HREF="PathFinding.html#nextPoint()">nextPoint</A></B>()</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="PathFinding.html#reset()">reset</A></B>()</CODE>
<BR>
</TD>
</TR>
</TABLE>
<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A>
<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TD><B>Methods inherited from class java.lang.Object</B></TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</CODE></TD>
</TR>
</TABLE>
<P>
<!-- ============ FIELD DETAIL =========== -->
<A NAME="field_detail"><!-- --></A>
<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TD COLSPAN=1><FONT SIZE="+2">
<B>Field Detail</B></FONT></TD>
</TR>
</TABLE>
<A NAME="x1"><!-- --></A><H3>
x1</H3>
<PRE>
protected int <B>x1</B></PRE>
<DL>
<DL>
</DL>
</DL>
<HR>
<A NAME="y1"><!-- --></A><H3>
y1</H3>
<PRE>
protected int <B>y1</B></PRE>
<DL>
<DL>
</DL>
</DL>
<HR>
<A NAME="x2"><!-- --></A><H3>
x2</H3>
<PRE>
protected int <B>x2</B></PRE>
<DL>
<DL>
</DL>
</DL>
<HR>
<A NAME="y2"><!-- --></A><H3>
y2</H3>
<PRE>
protected int <B>y2</B></PRE>
<DL>
<DL>
</DL>
</DL>
<HR>
<A NAME="cx"><!-- --></A><H3>
cx</H3>
<PRE>
protected int <B>cx</B></PRE>
<DL>
<DL>
</DL>
</DL>
<HR>
<A NAME="cy"><!-- --></A><H3>
cy</H3>
<PRE>
protected int <B>cy</B></PRE>
<DL>
<DL>
</DL>
</DL>
<HR>
<A NAME="current"><!-- --></A><H3>
current</H3>
<PRE>
protected int <B>current</B></PRE>
<DL>
<DL>
</DL>
</DL>
<HR>
<A NAME="path"><!-- --></A><H3>
path</H3>
<PRE>
protected java.util.ArrayList <B>path</B></PRE>
<DL>
<DL>
</DL>
</DL>
<HR>
<A NAME="gd"><!-- --></A><H3>
gd</H3>
<PRE>
protected GameData <B>gd</B></PRE>
<DL>
<DL>
</DL>
</DL>
<HR>
<A NAME="army"><!-- --></A><H3>
army</H3>
<PRE>
protected Army <B>army</B></PRE>
<DL>
<DL>
</DL>
</DL>
<HR>
<A NAME="uloader"><!-- --></A><H3>
uloader</H3>
<PRE>
protected UnitTypeLoader <B>uloader</B></PRE>
<DL>
<DL>
</DL>
</DL>
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<A NAME="constructor_detail"><!-- --></A>
<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TD COLSPAN=1><FONT SIZE="+2">
<B>Constructor Detail</B></FONT></TD>
</TR>
</TABLE>
<A NAME="PathFinding(GameData, UnitTypeLoader, Army, int, int, int, int)"><!-- --></A><H3>
PathFinding</H3>
<PRE>
public <B>PathFinding</B>(GameData gdat,
UnitTypeLoader ul,
Army a,
int cx1,
int cy1,
int cx2,
int cy2)</PRE>
<DL>
</DL>
<!-- ============ METHOD DETAIL ========== -->
<A NAME="method_detail"><!-- --></A>
<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TD COLSPAN=1><FONT SIZE="+2">
<B>Method Detail</B></FONT></TD>
</TR>
</TABLE>
<A NAME="nextPoint()"><!-- --></A><H3>
nextPoint</H3>
<PRE>
public java.awt.Point <B>nextPoint</B>()</PRE>
<DL>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="reset()"><!-- --></A><H3>
reset</H3>
<PRE>
public void <B>reset</B>()</PRE>
<DL>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="checkLine(LineIterator, boolean)"><!-- --></A><H3>
checkLine</H3>
<PRE>
protected boolean <B>checkLine</B>(LineIterator li,
boolean add)</PRE>
<DL>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="checkPath(LineIterator, int, int)"><!-- --></A><H3>
checkPath</H3>
<PRE>
protected boolean <B>checkPath</B>(LineIterator li,
int x,
int y)</PRE>
<DL>
<DD><DL>
</DL>
</DD>
</DL>
<!-- ========= END OF CLASS DATA ========= -->
<HR>
<!-- ========== START OF NAVBAR ========== -->
<A NAME="navbar_bottom"><!-- --></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0">
<TR>
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Package</FONT> </TD>
</TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="OverlayLoader.html"><B>PREV CLASS</B></A>
<A HREF="Player.html"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="index.html" TARGET="_top"><B>FRAMES</B></A>
<A HREF="PathFinding.html" TARGET="_top"><B>NO FRAMES</B></A>
<SCRIPT>
<!--
if(window==top) {
document.writeln('<A HREF="allclasses-noframe.html" TARGET=""><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="allclasses-noframe.html" TARGET=""><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: NESTED | <A HREF="#field_summary">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: <A HREF="#field_detail">FIELD</A> | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<!-- =========== END OF NAVBAR =========== -->
<HR>
</BODY>
</HTML>
| hhminh/continents | documents/PathFinding.html | HTML | mit | 15,190 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><HTML>
<HEAD>
<TITLE></TITLE>
</HEAD>
<BODY>
<A name=1></a>This well is CONFIDENTIAL, any<br>
information included in this well file was<br>
public information prior to the issuance of<br>
the CONFIDENTIAL status<br>
<hr>
<A name=2></a><hr>
<A name=3></a><hr>
<A name=4></a><hr>
<A name=5></a><hr>
<A name=6></a><hr>
<A name=7></a><hr>
<A name=8></a><hr>
<A name=9></a><hr>
<A name=10></a>October 15, 2014<br>
Tex Hall, Chairman<br>
Three Affiliated Tribes<br>
404 Frontage Road<br>
New Town, ND 58763<br>
RE:<br>
WELL PERMITTED ON FORT BERTHOLD RESERVATION<br>
MHA 6-06-01H-149-92<br>
LOT4 Section 5-149N-91W<br>
Dunn County<br>
NDIC File No. 29715<br>
Chairman Hall:<br>
Please be advised that QEP ENERGY COMPANY was issued the above captioned permit on October 13, 2014 and<br>
will remain in effect for a period of one year. In addition, it was permitted with a 1280 acre spacing unit in S/2 of<br>
Sections 31 & 36 and the N/2 of Sections 1 & 6 T149N, T150N via Commission Order 25079.<br>
Should you have any questions, feel free to contact me.<br>
Sincerely,<br>
Todd L. Holweger<br>
Mineral Resources Permit Manager<br>
cc: </span><span class="ft1">Tax Commissioner<br>
Field Inspector<br>
<hr>
<A name=11></a>October 15, 2014<br>
Heidi Kaczor<br>
Sr. Permit Agent<br>
QEP ENERGY COMPANY<br>
1050 17th Street, STE 800<br>
Denver, CO 80265<br>
RE:<br>
HORIZONTAL WELL<br>
MHA 6-06-01H-149-92<br>
LOT4 Section 5-149N-91W<br>
Dunn County<br>
Well File # 29715<br>
Dear Heidi:<br>
Pursuant to Commission Order No. 25079, approval to drill the above captioned well is hereby given. The<br>
approval is granted on the condition that all portions of the well bore not isolated by cement, be no closer than<br>
the </span><span class="ft2">500' setback </span><span class="ft0">from the north & south boundaries and </span><span class="ft2">200' setback </span><span class="ft0">from the east & west boundaries within the<br>
1280 acre spacing unit consisting of S/2 of Section 36, T150N R92W, the S/2 of Section 31, T150N R91W, the<br>
N/2 of Section 1, T149N R92W and the N/2 of Section 6, T149N R91W.<br>
PERMIT STIPULATIONS: Due to Lake Sakakawea adjacent to the well site, a dike is required<br>
surrounding the entire location.<br>
Automatic shut offs required on well head and high/low tank<br>
indicators. In cases where a spacing unit is accessed from an off-site drill pad, an affidavit must be<br>
provided affirming that the surface owner of the multi-well pad agrees to drilling the well(s) into an<br>
offsite spacing unit.<br>
Effective June 1, 2014, a covered leak-proof container (with placard) for filter sock<br>
disposal must be maintained on the well site beginning when the well is spud, and must remain on-site<br>
during clean-out, completion, and flow-back whenever filtration operations are conducted. QEP<br>
ENERGY CO must contact NDIC Field Inspector Allen Christensen at 701-989-9183 prior to location<br>
construction.<br>
Drilling pit<br>
NDAC 43-02-03-19.4 states that "a pit may be utilized to bury drill cuttings and solids generated during well<br>
drilling and completion operations, providing the pit can be constructed, used and reclaimed in a manner that will<br>
prevent pollution of the land surface and freshwaters. Reserve and circulation of mud system through earthen pits<br>
are prohibited. All pits shall be inspected by an authorized representative of the director prior to lining and use.<br>
Drill cuttings and solids must be stabilized in a manner approved by the director prior to placement in a cuttings<br>
pit."<br>
Form 1 Changes & Hard Lines<br>
Any changes, shortening of casing point or lengthening at Total Depth must have prior approval by the NDIC.<br>
The proposed directional plan is at a legal location. The minimum legal coordinate from the well head at casing<br>
point is: 1033 W. Also, based on the azimuth of the proposed lateral the maximum legal coordinate from the<br>
well head is: 11053 W.<br>
<hr>
<A name=12></a>Heidi Kaczor<br>
October 15, 2014<br>
Page 2<br>
Location Construction Commencement (Three Day Waiting Period)<br>
Operators shall not commence operations on a drill site until the 3rd business day following publication of the<br>
approved drilling permit on the NDIC - OGD Daily Activity Report. If circumstances require operations to<br>
commence before the 3rd business day following publication on the Daily Activity Report, the waiting period may<br>
be waived by the Director. Application for a waiver must be by sworn affidavit providing the information<br>
necessary to evaluate the extenuating circumstances, the factors of NDAC 43-02-03-16.2 (1), (a)-(f), and any other<br>
information that would allow the Director to conclude that in the event another owner seeks revocation of the<br>
drilling permit, the applicant should retain the permit.<br>
Permit Fee & Notification<br>
Payment was received in the amount of $100 via credit card .The permit fee has been received. It is requested<br>
that notification be given immediately upon the spudding of the well. This information should be relayed to the<br>
Oil & Gas Division, Bismarck, via telephone. The following information must be included: Well name, legal<br>
location, permit number, drilling contractor, company representative, date and time of spudding. Office hours are<br>
8:00 a.m. to 12:00 p.m. and 1:00 p.m. to 5:00 p.m. Central Time. Our telephone number is (701) 328-8020, leave a<br>
message if after hours or on the weekend.<br>
Survey Requirements for Horizontal, Horizontal Re-entry, and Directional Wells<br>
NDAC Section 43-02-03-25 (Deviation Tests and Directional Surveys) states in part (that) the survey contractor<br>
shall file a certified copy of all surveys with the director free of charge within thirty days of completion. Surveys<br>
must be submitted as one electronic copy, or in a form approved by the director. However, the director may<br>
require the directional survey to be filed immediately after completion if the survey is needed to conduct the<br>
operation of the director's office in a timely manner. Certified surveys must be submitted via email in one adobe<br>
document, with a certification cover page to </span><span class="ft3">certsurvey@nd.gov</span><span class="ft0">.<br>
Survey points shall be of such frequency to accurately determine the entire location of the well bore.<br>
Specifically, the Horizontal and Directional well survey frequency is 100 feet in the vertical, 30 feet in the curve<br>
(or when sliding) and 90 feet in the lateral.<br>
Surface casing cement<br>
Tail cement utilized on surface casing must have a minimum compressive strength of 500 psi within 12<br>
hours, and tail cement utilized on production casing must have a minimum compressive strength of 500 psi<br>
before drilling the plug or initiating tests.<br>
Logs </span><span class="ft4">NDAC Section 43-02-03-31 requires the running of (1) a suite of open hole logs from which formation tops and<br>
porosity zones can be determined, (2) a Gamma Ray Log run from total depth to ground level elevation of the well bore, and<br>
(3) a log from which the presence and quality of cement can be determined (Standard CBL or Ultrasonic cement evaluation<br>
log) in every well in which production or intermediate casing has been set, this log must be run prior to completing the well.<br>
All logs run must be submitted free of charge, as one digital TIFF (tagged image file format) copy and one digital LAS (log<br>
ASCII) formatted copy. Digital logs may be submitted on a standard CD, DVD, or attached to an email sent to<br>
digitallogs@nd.gov<br>
Thank you for your cooperation.<br>
Sincerely,<br>
David Burns<br>
Engineering Technician<br>
<hr>
<A name=13></a>INDUSTRIAL COMMISSION OF NORTH DAKOTA<br>
OIL AND GAS DIVISION<br>
600 EAST BOULEVARD DEPT 405<br>
BISMARCK, ND 58505-0840<br>
SFN 54269 (08-2005)<br>
PLEASE READ INSTRUCTIONS BEFORE FILLING OUT FORM.<br>
PLEASE SUBMIT THE ORIGINAL AND ONE COPY.<br>
Type of Work<br>
Type of Well<br>
Approximate Date Work Will Start<br>
Confidential Status<br>
New Location<br>
Oil & Gas<br>
11 / 1 / 2014<br>
No<br>
Operator<br>
Telephone Number<br>
QEP ENERGY COMPANY<br>
303-672-6900<br>
Address<br>
City<br>
State<br>
Zip Code<br>
1050 17th Street, STE 800<br>
Denver<br>
CO<br>
80265<br>
Notice has been provided to the owner of any<br>
This well is not located within five hundred<br>
permanently occupied dwelling within 1,320 feet.<br>
feet of an occupied dwelling.<br>
enter data for additional laterals on page 2)<br>
Well Name<br>
Well Number<br>
MHA<br>
6-06-01H-149-92<br>
Surface Footages<br>
Qtr-Qtr<br>
Section<br>
Township<br>
Range<br>
County<br>
608 </span><span class="ft0">FL<br>
N<br>
833 </span><span class="ft0">F </span><span class="ft6">W </span><span class="ft0">L<br>
LOT4<br>
5<br>
149<br>
91<br>
Dunn<br>
Longstring Casing Point Footages<br>
Qtr-Qtr<br>
Section<br>
Township<br>
Range<br>
County<br>
363 </span><span class="ft0">F </span><span class="ft6">N </span><span class="ft0">L<br>
338 </span><span class="ft0">F </span><span class="ft6">E<br>
L<br>
LOT1<br>
6149<br>
91<br>
Dunn<br>
Longstring Casing Point Coordinates From Well Head<br>
Azimuth<br>
Longstring Total Depth<br>
245 N </span><span class="ft0">From WH<br>
1171 W </span><span class="ft0">From WH<br>
283<br>
10442 </span><span class="ft0">Feet MD<br>
10066 </span><span class="ft0">Feet TVD<br>
Bottom Hole Footages From Nearest Section Line<br>
Qtr-Qtr<br>
Section<br>
Township<br>
Range<br>
County<br>
1692 </span><span class="ft0">F </span><span class="ft6">S<br>
LF<br>
235<br>
W </span><span class="ft0">L<br>
NWSW<br>
36<br>
150<br>
92<br>
Mountrail<br>
Bottom Hole Coordinates From Well Head<br>
KOP Lateral 1<br>
Azimuth Lateral 1<br>
Estimated Total Depth Lateral 1<br>
2300 N </span><span class="ft0">From WH<br>
11018 W </span><span class="ft0">From WH<br>
8900<br>
Feet MD<br>
281<br>
20502 </span><span class="ft0">Feet MD<br>
10066 </span><span class="ft0">Feet TVD<br>
Latitude of Well Head<br>
Longitude of Well Head<br>
NAD Reference<br>
Description of<br>
(Subject to NDIC Approval)<br>
47<br>
45<br>
33.11<br>
-102<br>
21<br>
41.03<br>
NAD83<br>
Spacing Unit:<br>
S/2 31& 36, N/2 of 1&6 T149, T150<br>
Ground Elevation<br>
Acres in Spacing/Drilling Unit<br>
Spacing/Drilling Unit Setback Requirement<br>
Industrial Commission Order<br>
2010 </span><span class="ft0">Feet Above S.L.<br>
1280<br>
500 </span><span class="ft8">Feet N/S<br>
200<br>
Feet<br>
Feet E/W<br>
25079<br>
North Line of Spacing/Drilling Unit<br>
South Line of Spacing/Drilling Unit<br>
East Line of Spacing/Drilling Unit<br>
West Line of Spacing/Drilling Unit<br>
10420 </span><span class="ft0">Feet<br>
10449 </span><span class="ft0">Feet<br>
5279 </span><span class="ft0">Feet<br>
5242 </span><span class="ft0">Feet<br>
Objective Horizons<br>
Pierre Shale Top<br>
Middle Bakken<br>
1808<br>
Proposed<br>
Size<br>
Weight<br>
Depth<br>
Cement Volume<br>
Surface Casing<br>
9<br>
5/8<br>
36 </span><span class="ft0">Lb./Ft. </span><span class="ft6">1960<br>
Feet<br>
616<br>
Sacks<br>
Proposed<br>
Size<br>
Weight(s)<br>
Longstring Total Depth<br>
Cement Volume<br>
Cement Top<br>
Top Dakota Sand<br>
Longstring Casing<br>
700<br>
32<br>
Lb./Ft.<br>
10442 </span><span class="ft0">Feet MD<br>
10066 </span><span class="ft0">Feet TVD<br>
986<br>
Sacks<br>
1960 </span><span class="ft0">Feet<br>
4936<br>
Feet<br>
Base of Last<br>
Last<br>
Salt (If<br>
Charles </span><span class="ft0">Applicable)<br>
Salt (If Applicable)<br>
8422 </span><span class="ft0">Feet<br>
Proposed Logs<br>
Mud/Triple Combo/MWD/GR<br>
Drilling Mud Type (Vertical Hole - Below Surface Casing)<br>
Drilling Mud Type (Lateral)<br>
Invert<br>
Brine<br>
Survey Type in Vertical Portion of Well<br>
Survey Frequency: Build Section<br>
Survey Frequency: Lateral<br>
Survey Contractor<br>
MWD/Con't Gyro </span><span class="ft0">Every 100 Feet<br>
30 </span><span class="ft0">Feet<br>
90 </span><span class="ft0">Feet<br>
Scientific Drilling<br>
proposed mud/cementing plan,<br>
directional plot/plan, $100 fee.<br>
<hr>
<A name=14></a>Page 2<br>
SFN 54269 (08-2005)<br>
This will be the 2nd well consecutively drilled on the same pad {4-5E} as the MHA 8-06-01H-149-92, MHA 6-32-29H-150-91 and MHA 8-32-29H-150-91 wells by a rig capable of walking. A legal street<br>
address was applied for on 7/21/14, and the attached letter was received. Please also see attached a GCP, proposed production facility layout on Drawing #13, and an OH Log Waiver sundry.<br>
Lateral 2<br>
KOP Lateral 2<br>
Azimuth Lateral 2<br>
Estimated Total Depth Lateral 2<br>
KOP Coordinates From Well Head<br>
Feet MD<br>
Feet MD<br>
Feet TVD<br>
From WH<br>
From WH<br>
Formation Entry Point Coordinates From Well Head<br>
Bottom Hole Coordinates From Well Head<br>
From WH<br>
From WH<br>
From WH<br>
From WH<br>
KOP Footages From Nearest Section Line<br>
Qtr-Qtr<br>
Section<br>
Township<br>
Range<br>
County<br>
FL<br>
FL<br>
Bottom Hole Footages From Nearest Section Line<br>
Qtr-Qtr<br>
Section<br>
Township<br>
Range<br>
County<br>
FL<br>
F<br>
L<br>
Lateral 3<br>
KOP Lateral 3<br>
Azimuth Lateral 3<br>
Estimated Total Depth Lateral 3<br>
KOP Coordinates From Well Head<br>
Feet MD<br>
Feet MD<br>
Feet TVD<br>
From WH<br>
From WH<br>
Formation Entry Point Coordinates From Well Head<br>
Bottom Hole Coordinates From Well Head<br>
From WH<br>
From WH<br>
From WH<br>
From WH<br>
KOP Footages From Nearest Section Line<br>
Qtr-Qtr<br>
Section<br>
Township<br>
Range<br>
County<br>
F<br>
L<br>
FL<br>
Bottom Hole Footages From Nearest Section Line<br>
Qtr-Qtr<br>
Section<br>
Township<br>
Range<br>
County<br>
F<br>
L<br>
FL<br>
Lateral 4<br>
KOP Lateral 4<br>
Azimuth Lateral 4<br>
Estimated Total Depth Lateral 4<br>
KOP Coordinates From Well Head<br>
Feet MD<br>
Feet MD<br>
Feet TVD<br>
From WH<br>
From WH<br>
Formation Entry Point Coordinates From Well Head<br>
Bottom Hole Coordinates From Well Head<br>
From WH<br>
From WH<br>
From WH<br>
From WH<br>
KOP Footages From Nearest Section Line<br>
Qtr-Qtr<br>
Section<br>
Township<br>
Range<br>
County<br>
FL<br>
FL<br>
Bottom Hole Footages From Nearest Section Line<br>
Qtr-Qtr<br>
Section<br>
Township<br>
Range<br>
County<br>
FL<br>
FL<br>
Lateral 5<br>
KOP Lateral 5<br>
Azimuth Lateral 5<br>
Estimated Total Depth Lateral 5<br>
KOP Coordinates From Well Head<br>
Feet MD<br>
Feet MD<br>
Feet TVD<br>
From WH<br>
From WH<br>
Formation Entry Point Coordinates From Well Head<br>
Bottom Hole Coordinates From Well Head<br>
From WH<br>
From WH<br>
From WH<br>
From WH<br>
KOP Footages From Nearest Section Line<br>
Qtr-Qtr<br>
Section<br>
Township<br>
Range<br>
County<br>
FL<br>
FL<br>
Bottom Hole Footages From Nearest Section Line<br>
Qtr-Qtr<br>
Section<br>
Township<br>
Range<br>
County<br>
FL<br>
FL<br>
Date<br>
I hereby swear or affirm the information provided is true, complete and correct as determined from all available records.<br>
9 / 4 / 2014<br>
Signature<br>
Printed Name<br>
Title<br>
ePermit<br>
Heidi Kaczor<br>
Sr. Permit Agent<br>
Email Address(es)<br>
Permit and File Number<br>
API Number<br>
Date Approved<br>
29715<br>
025<br>
02705<br>
10 / 13 / 2014<br>
Field<br>
By<br>
HEART BUTTE<br>
David Burns<br>
Pool<br>
Permit Type<br>
Title<br>
BAKKEN<br>
DEVELOPMENT<br>
Engineering Technician<br>
<hr>
<A name=15></a><hr>
<A name=16></a>April 9, 2014<br>
RE:<br>
Filter Socks and Other Filter Media<br>
Leakproof Container Required<br>
Oil and Gas Wells<br>
Dear Operator,<br>
North Dakota Administrative Code Section 43-02-03-19.2 states in part that all waste material associated with<br>
exploration or production of oil and gas must be properly disposed of in an authorized facility in accord with all<br>
applicable local, state, and federal laws and regulations.<br>
Filtration systems are commonly used during oil and gas operations in North Dakota. The Commission is very<br>
concerned about the proper disposal of used filters (including filter socks) used by the oil and gas industry.<br>
Effective June 1, 2014, a container must be maintained on each well drilled in North Dakota beginning when the<br>
well is spud and must remain on-site during clean-out, completion, and flow-back whenever filtration operations<br>
are conducted. The on-site container must be used to store filters until they can be properly disposed of in an<br>
authorized facility. Such containers must be:<br>
leakproof to prevent any fluids from escaping the container<br>
covered to prevent precipitation from entering the container<br>
placard to indicate only filters are to be placed in the container<br>
If the operator will not utilize a filtration system, a waiver to the container requirement will be considered, but<br>
only upon the operator submitting a Sundry Notice (Form 4) justifying their request.<br>
As previously stated in our March 13, 2014 letter, North Dakota Administrative Code Section 33-20-02.1-01<br>
states in part that every person who transports solid waste (which includes oil and gas exploration and production<br>
wastes) is required to have a valid permit issued by the North Dakota Department of Health, Division of Waste<br>
Management. Please contact the Division of Waste Management at (701) 328-5166 with any questions on the<br>
solid waste program. Note oil and gas exploration and production wastes include produced water, drilling mud,<br>
invert mud, tank bottom sediment, pipe scale, filters, and fly ash.<br>
Thank you for your cooperation.<br>
Sincerely,<br>
Bruce E. Hicks<br>
Assistant Director<br>
<hr>
<A name=17></a><hr>
<A name=18></a><hr>
<A name=19></a><hr>
<A name=20></a><hr>
<A name=21></a>VariCem, EconoCem and ExtendaCem are Halliburton trademarked products</span><span class="ft7">.<br>
<hr>
<A name=22></a>WPS<br>
Chlorides<br>
Interval<br>
Weight<br>
Oil/Water<br>
X1000<br>
X1000<br>
Water<br>
(Hole size)<br>
Type<br>
(ppg)<br>
Ratio<br>
ppm<br>
(mg/L)<br>
Viscosity<br>
pH<br>
Loss<br>
<hr>
<A name=23></a><hr>
<A name=24></a><hr>
<A name=25></a><hr>
<A name=26></a>MHA 6-06-01H-149-92<br>
SHL: Sec 5-T149N-R91W<br>
BHL: Sec 36-T150N-R92W<br>
Dunn County, North Dakota<br>
20" Conductor<br>
Bakken Well<br>
SET @ 80'<br>
IN 22" HOLE<br>
Cement to Surface<br>
9-5/8", 36#, J55<br>
SURFACE CASING<br>
Top of 7" lead cement at 1,960'<br>
SET @ 1,960' in<br>
13-1/2" HOLE<br>
Cement to surface<br>
Top of 7" tail cement at ~6,300'<br>
- minimum of 200' above the Pine Salt<br>
4-1/2" Tie-back "frac" string:<br>
13.5#, HCP-110 CDC<br>
(from surface to liner hanger)<br>
4-1/2" Liner: Hanger @ ~ 8,800'<br>
13.5#, HCP-110, CDC<br>
Uncemented<br>
(from liner hanger to 7" shoe)<br>
KOP: 8,900' MD<br>
4-1/2", 13.5#, HCP-110 CDC - PRODUCTION LINER<br>
Build 12.00°/100ft<br>
SET @ 20,501' MD (10,066' TVD) IN 6" HOLE<br>
to 90° inclination<br>
Uncemented with packers and frac sleeves<br>
(from the 7" shoe to TD)<br>
7", 32.0#, HCL-80, LTC - INTERMEDIATE CASING SET<br>
@ 10,442' MD (10,066' TVD) IN 8-3/4" HOLE<br>
TD 20,501' MD<br>
427 sxs lead and 559 sxs tail<br>
(10,066' TVD)<br>
TOC @ surface casing shoe<br>
<hr>
<A name=27></a>0<br>
lls<br>
500<br>
we<br>
4-<br>
00<br>
40<br>
Pad<br>
5E-0<br>
0<br>
04<br>
300<br>
00<br>
20<br>
0<br>
91<br>
50-<br>
0<br>
-1<br>
0<br>
29H<br>
1<br>
-32-<br>
4<br>
A<br>
-91<br>
H<br>
M<br>
-150<br>
-32-29H<br>
2<br>
A<br>
0<br>
MH<br>
-91<br>
-150<br>
-32-29H<br>
8<br>
A<br>
00<br>
H<br>
0<br>
M<br>
-1<br>
-91<br>
-150<br>
-32-29H<br>
0<br>
6<br>
A<br>
0<br>
MH<br>
0-2<br>
-91<br>
-150<br>
-31-30H<br>
0<br>
3<br>
0<br>
A<br>
0<br>
)<br>
MH<br>
-3<br>
t(+sa<br>
00<br>
-)/E<br>
-91<br>
0<br>
-150<br>
-4<br>
st(<br>
0H<br>
e<br>
31-3<br>
A 1-<br>
W<br>
MH<br>
000-5<br>
-92<br>
50<br>
-1<br>
0<br>
5H<br>
0<br>
31-2<br>
4-<br>
A<br>
H<br>
-60<br>
M<br>
00<br>
-70<br>
50-92<br>
-1<br>
-31-25H<br>
2<br>
HA<br>
M<br>
000-8<br>
92<br>
0<br>
-150-<br>
5H<br>
0<br>
31-2<br>
3-<br>
-90<br>
A<br>
MH<br>
000<br>
-92<br>
-92<br>
-150<br>
-92<br>
-92<br>
92<br>
92<br>
92<br>
92<br>
-92<br>
-10<br>
-150<br>
50<br>
-150<br>
50-<br>
49-<br>
49-<br>
49-<br>
-1<br>
-1<br>
-149<br>
-1<br>
-1<br>
-31-25H<br>
-1<br>
1H<br>
1H<br>
1<br>
6H<br>
6H<br>
01H<br>
A<br>
-31-25H<br>
1-25H<br>
6-0<br>
6-01H<br>
6-0<br>
H<br>
1-3<br>
7<br>
1-3<br>
M<br>
A<br>
-06-<br>
A 5-3<br>
1-3<br>
3-0<br>
4<br>
A 3-3<br>
MH<br>
A<br>
A 6-0<br>
A 8-0<br>
A<br>
A<br>
H<br>
MH<br>
H<br>
H<br>
H<br>
M<br>
M<br>
MH<br>
MH<br>
M<br>
M<br>
0001-1<br>
0002-1<br>
0003-1<br>
0<br>
0<br>
0<br>
0<br>
0<br>
0<br>
0<br>
0<br>
0<br>
0<br>
0<br>
0<br>
00<br>
00<br>
00<br>
00<br>
00<br>
00<br>
1000<br>
90<br>
80<br>
700<br>
600<br>
50<br>
400<br>
30<br>
200<br>
100<br>
-1<br>
-2<br>
120<br>
1<br>
100<br>
)<br>
+ ( h t<br>
or<br>
N<br>
/<br>
h(-)<br>
ut<br>
o<br>
S<br>
<hr>
<A name=28></a>South(-)/North(+) (2000 usft/in)<br>
0<br>
0<br>
0<br>
0<br>
300<br>
20<br>
100<br>
0<br>
lls<br>
r<br>
r<br>
e<br>
le<br>
0<br>
le<br>
rn<br>
ry<br>
ift<br>
h<br>
e<br>
e<br>
e<br>
lt<br>
lt<br>
e<br>
n<br>
n<br>
e<br>
le<br>
a<br>
a<br>
s<br>
on<br>
le<br>
5<br>
4<br>
3<br>
2<br>
1<br>
e<br>
le<br>
e<br>
w<br>
o<br>
e<br>
ion<br>
ills<br>
rre<br>
g<br>
0<br>
w<br>
iper<br>
is<br>
in<br>
as<br>
y<br>
m<br>
liffe<br>
a<br>
er<br>
er<br>
er<br>
er<br>
d<br>
er<br>
k<br>
lio<br>
rk<br>
-149-92<br>
n<br>
MD<br>
at<br>
ie<br>
a<br>
ho<br>
ow<br>
roup<br>
S<br>
rdon<br>
rf<br>
P<br>
roup<br>
T<br>
S<br>
c<br>
k<br>
pper<br>
id<br>
lH<br>
r.0<br>
o<br>
0<br>
H<br>
B<br>
a<br>
Bas<br>
0<br>
x<br>
P<br>
E<br>
P<br>
tS<br>
M<br>
ie<br>
B<br>
Li<br>
s<br>
s<br>
any<br>
epo<br>
rk<br>
rk<br>
rk<br>
rk<br>
rk<br>
a<br>
alc<br>
.0<br>
00<br>
U<br>
Shoal<br>
nn<br>
-4<br>
a<br>
1983<br>
1<br>
at<br>
Z<br>
o<br>
en<br>
G<br>
G<br>
ey<br>
a<br>
lt<br>
a<br>
a<br>
a<br>
a<br>
a<br>
n<br>
M<br>
M<br>
u<br>
1.<br>
a<br>
R<br>
pea<br>
a<br>
rle<br>
a<br>
dg<br>
B<br>
S<br>
01H<br>
in<br>
ve<br>
0<br>
orm<br>
F<br>
re<br>
R<br>
C<br>
n<br>
.0<br>
ild<br>
MD<br>
S<br>
ine<br>
a<br>
L<br>
M<br>
M<br>
M<br>
M<br>
e<br>
e<br>
R<br>
D<br>
ad<br>
n<br>
rn<br>
M<br>
e<br>
hoal<br>
e<br>
t9150<br>
8<br>
.00<br>
u<br>
F<br>
G<br>
ot<br>
P<br>
us<br>
bb<br>
h<br>
tS<br>
Lo<br>
e<br>
e<br>
e<br>
e<br>
e<br>
k<br>
k<br>
G<br>
tone<br>
P<br>
rig<br>
la<br>
um<br>
a<br>
-1<br>
0.00<br>
e<br>
d<br>
ild<br>
s<br>
ion<br>
ls<br>
k<br>
k<br>
s<br>
S<br>
t:<br>
O<br>
P<br>
at<br>
th<br>
rtB<br>
ak<br>
Ki<br>
C<br>
s<br>
ta<br>
10<br>
a<br>
s<br>
a<br>
a<br>
a<br>
le<br>
e<br>
c<br>
n<br>
D<br>
u<br>
a<br>
l<br>
rop<br>
D<br>
B<br>
a<br>
hol<br>
S<br>
1<br>
L<br>
is<br>
F<br>
B<br>
d<br>
e<br>
6-06-<br>
:<br>
n<br>
1983<br>
l<br>
r<br>
l<br>
0<br>
rtBu<br>
innel<br>
B<br>
m<br>
A<br>
e:<br>
n<br>
u<br>
So<br>
e<br>
e<br>
a<br>
ho<br>
a<br>
tD<br>
5/8"<br>
at<br>
k<br>
.0<br>
S<br>
9<br>
d<br>
r<br>
n<br>
2<br>
St<br>
tar<br>
M<br>
M<br>
id<br>
Li<br>
tone<br>
H<br>
g<br>
ho<br>
e<br>
9<br>
s<br>
D<br>
an<br>
S<br>
S<br>
S<br>
ne<br>
le<br>
p<br>
hol<br>
M<br>
Mar<br>
e<br>
Proj<br>
04-05E<br>
si<br>
lane<br>
c<br>
ta<br>
Lev<br>
p<br>
n<br>
kke<br>
t5<br>
0<br>
to<br>
R<br>
a<br>
ne<br>
idd<br>
0<br>
IL<br>
Lodgepol<br>
Lodgepol<br>
Lodgepol<br>
Lodgepol<br>
n<br>
le<br>
:<br>
M<br>
llbor<br>
e<br>
:<br>
o<br>
Lodgepol<br>
U<br>
tar<br>
.0<br>
to<br>
es<br>
llio<br>
e<br>
d<br>
G<br>
n<br>
B<br>
M<br>
a<br>
S<br>
0<br>
im<br>
D<br>
S<br>
P<br>
eri<br>
k<br>
A<br>
m<br>
le<br>
e<br>
0<br>
es<br>
n<br>
c<br>
MD<br>
k<br>
id<br>
ite<br>
ll:<br>
e<br>
a<br>
ea<br>
k<br>
T<br>
We<br>
IL<br>
lse<br>
e<br>
k<br>
S<br>
0<br>
k<br>
L<br>
S<br>
e<br>
m<br>
Li<br>
dd k<br>
a<br>
tat<br>
Am<br>
D<br>
S<br>
t64<br>
le<br>
k<br>
F<br>
.0<br>
a<br>
M<br>
le<br>
Li<br>
Mi<br>
Ba<br>
a<br>
0<br>
W<br>
TA<br>
tar<br>
DE<br>
S<br>
1980<br>
le<br>
dd<br>
B<br>
B<br>
n<br>
d<br>
E<br>
th<br>
S<br>
rth<br>
1<br>
S<br>
d<br>
en<br>
785<br>
e<br>
9<br>
d<br>
k<br>
Mi<br>
k<br>
t<br>
id<br>
S<br>
or<br>
R<br>
o<br>
ean<br>
-<br>
P<br>
k<br>
0<br>
Mi<br>
a<br>
a<br>
D<br>
U<br>
N<br>
G<br>
N<br>
M<br>
5<br>
en<br>
B<br>
k<br>
d<br>
O<br>
1 -<br>
ak<br>
M<br>
T<br>
en<br>
:<br>
:<br>
:<br>
H<br>
k<br>
ak<br>
0<br>
hol<br>
B<br>
0<br>
T<br>
B<br>
n<br>
C<br>
d:<br>
3<br>
ak<br>
0<br>
1<br>
- 1<br>
B<br>
.0<br>
0<br>
N<br>
ek<br>
E<br>
m<br>
9<br>
0<br>
-<br>
3<br>
05<br>
k<br>
J<br>
tem<br>
tu<br>
oi<br>
um<br>
s<br>
one:<br>
0<br>
- 3<br>
.0<br>
0<br>
IO<br>
5<br>
a<br>
O<br>
s<br>
1<br>
10<br>
1<br>
-<br>
t<br>
T<br>
y<br>
a<br>
Z<br>
at<br>
A<br>
B<br>
H<br>
H<br>
ild<br>
-10<br>
R<br>
A<br>
S<br>
D<br>
lip<br>
D<br>
0<br>
tar<br>
3<br>
M<br>
u<br>
P<br>
El<br>
-<br>
7"<br>
S<br>
1<br>
0.00<br>
3<br>
tB<br>
-<br>
-9<br>
2<br>
RM<br>
h<br>
ic<br>
1<br>
O<br>
tar<br>
rt<br>
6°<br>
ld<br>
nT<br>
5°<br>
13<br>
10<br>
tem<br>
9 -<br>
F<br>
S<br>
o<br>
.4<br>
ie<br>
s<br>
9<br>
0<br>
s<br>
0<br>
A<br>
5<br>
H<br>
T<br>
h<br>
4<br>
0<br>
9<br>
1<br>
0<br>
0<br>
2<br>
7<br>
9<br>
7<br>
7<br>
6<br>
2<br>
6<br>
3<br>
0<br>
3<br>
1<br>
9<br>
3<br>
9<br>
3<br>
8<br>
20<br>
1<br>
FO<br>
N<br>
7<br>
F<br>
.3<br>
2<br>
-<br>
M<br>
07<br>
20<br>
3<br>
03<br>
4<br>
3<br>
3<br>
9<br>
97<br>
37<br>
37<br>
37<br>
37<br>
45<br>
4<br>
72.<br>
F<br>
H<br>
at<br>
.5<br>
.9<br>
.58<br>
.9<br>
.9<br>
.3<br>
.3<br>
.3<br>
.9<br>
.8<br>
.4<br>
.3<br>
.6<br>
.8<br>
.1<br>
.3<br>
.4<br>
.9<br>
.9<br>
tic<br>
5<br>
:<br>
26/<br>
R<br>
Sy<br>
5 2 -<br>
0.02<br>
7.<br>
9<br>
7<br>
3.<br>
4.<br>
8.<br>
4.<br>
2.<br>
7<br>
7<br>
1<br>
9<br>
9<br>
rue<br>
rth:<br>
3<br>
4<br>
e<br>
eodet<br>
P<br>
T<br>
o<br>
6<br>
1/<br>
G<br>
G<br>
2<br>
1<br>
S<br>
9 -<br>
3 -<br>
L<br>
00<br>
D<br>
5<br>
0<br>
33.<br>
4<br>
4<br>
88.<br>
2<br>
1<br>
4<br>
7<br>
02.<br>
35.<br>
71.<br>
95.<br>
34.<br>
33.<br>
o<br>
gne<br>
ngl<br>
l:I<br>
0<br>
4<br>
5<br>
8<br>
2<br>
509<br>
2<br>
292<br>
4<br>
0<br>
3<br>
3<br>
4<br>
2<br>
19<br>
t<br>
N<br>
a<br>
5<br>
:1<br>
5<br>
tD<br>
ic<br>
1<br>
A<br>
M<br>
3<br>
41<br>
4<br>
49<br>
5<br>
60<br>
6<br>
65<br>
65<br>
68<br>
7<br>
782<br>
8<br>
8<br>
8<br>
8<br>
860<br>
9<br>
933<br>
948<br>
977<br>
M<br>
h:<br>
A<br>
te<br>
-<br>
1<br>
1<br>
5760<br>
0028<br>
0122<br>
0177<br>
0216<br>
0272<br>
0306<br>
0319<br>
0319<br>
a<br>
de<br>
H<br>
H<br>
tar<br>
1<br>
1<br>
1<br>
1<br>
1<br>
1<br>
1<br>
1<br>
ths<br>
et<br>
ip<br>
o<br>
5<br>
M<br>
S<br>
10<br>
2 -<br>
-20<br>
u<br>
n<br>
D<br>
D<br>
M<br>
g<br>
ngt<br>
1<br>
im<br>
a<br>
tre<br>
2<br>
3<br>
9<br>
-<br>
z<br>
M<br>
S<br>
-<br>
2<br>
0<br>
h<br>
0<br>
0<br>
0<br>
0<br>
0<br>
0<br>
0<br>
0<br>
0<br>
0<br>
0<br>
A<br>
5<br>
A<br>
1 -<br>
H<br>
H<br>
M<br>
at<br>
00<br>
00<br>
.00<br>
0<br>
.00<br>
0<br>
.00<br>
.00<br>
0<br>
.00<br>
0<br>
0<br>
0<br>
.00<br>
0<br>
.00<br>
.00<br>
.00<br>
.00<br>
0<br>
00<br>
.0<br>
.0<br>
.0<br>
.00<br>
.00<br>
00<br>
00<br>
00<br>
00<br>
00<br>
00<br>
.01<br>
5 2 -<br>
P<br>
3<br>
3<br>
5.<br>
5.<br>
1.<br>
3<br>
2<br>
4<br>
6.<br>
3.<br>
2.<br>
1.<br>
0.<br>
3.<br>
1 3 - 3<br>
D<br>
42.<br>
36.<br>
15.<br>
8<br>
08.<br>
34.<br>
62.<br>
1<br>
9<br>
0<br>
5<br>
2<br>
53<br>
A<br>
0<br>
V<br>
229<br>
50<br>
280<br>
752<br>
2<br>
391<br>
023<br>
359<br>
383<br>
422<br>
923<br>
979<br>
2<br>
H<br>
9 -<br>
M<br>
0<br>
0<br>
T<br>
1556.<br>
1808.<br>
3<br>
41<br>
4<br>
49<br>
5<br>
5<br>
60<br>
6<br>
65<br>
65<br>
68<br>
7<br>
78<br>
8<br>
8<br>
8<br>
8<br>
85<br>
921<br>
93<br>
94<br>
97<br>
9<br>
9<br>
1000<br>
1001<br>
1002<br>
1004<br>
1005<br>
1005<br>
001<br>
5 1 - H 5 2 - 1 3<br>
-30<br>
- 1 A H M<br>
2 9 - 0 5 1 - H 5 2 - 1 3 - 7<br>
n)<br>
A<br>
H<br>
00<br>
M<br>
M<br>
ft/i<br>
0<br>
T<br>
5<br>
-40<br>
7<br>
2<br>
9 - 0 5<br>
us<br>
1 - H<br>
13<br>
5<br>
2 - 1 3 - 5 A<br>
rth<br>
H<br>
M<br>
ct<br>
0<br>
0<br>
8<br>
8<br>
8<br>
7<br>
1<br>
2<br>
9<br>
o<br>
e<br>
.0<br>
.0<br>
6<br>
.8<br>
.8<br>
.0<br>
.5<br>
0<br>
.0<br>
00<br>
2000<br>
S<br>
0<br>
0<br>
1<br>
1<br>
7<br>
6.<br>
N<br>
0<br>
V<br>
10.<br>
01.20<br>
1<br>
1<br>
55<br>
(<br>
319)<br>
4<br>
4<br>
4<br>
4<br>
-5<br>
65<br>
19<br>
rue<br>
319)<br>
1<br>
1255<br>
T<br>
T<br>
1<br>
A<br>
2500<br>
TA<br>
1<br>
92,<br>
(P<br>
1.82<br>
ft<br>
0<br>
0<br>
0<br>
0<br>
2<br>
ft(P<br>
00E)<br>
ure<br>
ast(+)<br>
leg<br>
00<br>
00<br>
.0<br>
00<br>
.0<br>
.0<br>
.0<br>
00<br>
00<br>
0<br>
2050<br>
-149-<br>
,0.<br>
at<br>
00<br>
D<br>
0.<br>
0.<br>
1<br>
0.<br>
1<br>
0<br>
8<br>
0.<br>
0.<br>
0.<br>
atD<br>
70us<br>
v<br>
1<br>
T<br>
N<br>
70us<br>
e l o<br>
H<br>
l a<br>
n i g<br>
i r<br>
O<br>
IO<br>
00N<br>
ur<br>
2<br>
9 -<br>
50<br>
D)<br>
0<br>
5<br>
1 -<br>
-60<br>
T<br>
C<br>
H<br>
6<br>
A<br>
(0.<br>
3 - 1 3 - 3 A<br>
t(-)/E<br>
2032.<br>
H<br>
12<br>
M<br>
2032.<br>
-<br>
um<br>
M<br>
1<br>
R<br>
6-06-01HA @ ot @ im<br>
es<br>
W<br>
0<br>
0<br>
2<br>
4<br>
8<br>
0<br>
0<br>
5<br>
82<br>
82<br>
5<br>
O<br>
H<br>
Sl<br>
B<br>
/-<br>
.9<br>
62<br>
F<br>
in<br>
M<br>
K<br>
E<br>
0.<br>
0.<br>
5.30<br>
5.<br>
5.<br>
5.40<br>
N<br>
W<br>
l<br>
KB<br>
e:<br>
R<br>
M<br>
00<br>
+<br>
-10.<br>
0<br>
0<br>
47<br>
70.<br>
(N<br>
I<br>
R<br>
0<br>
-39<br>
-4<br>
-4<br>
-4<br>
-64<br>
1<br>
1017.<br>
e:<br>
Wel<br>
e:<br>
enc<br>
od:<br>
S<br>
-1<br>
-7<br>
-1<br>
h<br>
NCE<br>
er<br>
IL<br>
e:<br>
enc et<br>
0000<br>
ef<br>
A<br>
RE<br>
er M<br>
T<br>
6<br>
6<br>
2<br>
1<br>
erenc<br>
)R<br>
ef<br>
E<br>
/-S<br>
.00<br>
.00<br>
86<br>
.70<br>
.5<br>
.5<br>
.1<br>
.94<br>
FE<br>
renc<br>
ef<br>
S<br>
ion<br>
N<br>
0<br>
0<br>
1.<br>
1<br>
5.17<br>
0.00<br>
fe<br>
V<br>
Rh at<br>
0<br>
D<br>
+<br>
69<br>
71<br>
71<br>
8<br>
25<br>
RE<br>
e<br>
)R<br>
(<br>
ul<br>
0<br>
N<br>
1<br>
24<br>
30<br>
D<br>
2<br>
n<br>
)R<br>
V<br>
ept c<br>
O<br>
ERGY<br>
al<br>
/E<br>
T<br>
tio<br>
D<br>
-80<br>
TI<br>
C<br>
50<br>
(al Sec<br>
D<br>
0<br>
8<br>
5<br>
8<br>
(N<br>
00<br>
0<br>
8<br>
8<br>
00<br>
00<br>
87<br>
N<br>
e<br>
ic<br>
ured<br>
SEC<br>
V<br>
.63<br>
.63<br>
.58<br>
)<br>
T<br>
0.<br>
0.<br>
7.<br>
8.<br>
6.<br>
6.<br>
nat<br>
ert<br>
37<br>
87<br>
32<br>
6<br>
6<br>
eas<br>
n<br>
V<br>
75<br>
48<br>
68<br>
0<br>
0<br>
M<br>
1099.7<br>
7<br>
78<br>
88<br>
91<br>
9<br>
t/i<br>
E<br>
-ordi<br>
00<br>
10<br>
10<br>
o<br>
0<br>
C<br>
-90<br>
i<br>
0<br>
0<br>
9<br>
0<br>
z<br>
00<br>
00<br>
5<br>
usf<br>
A<br>
.0<br>
.0<br>
.7<br>
7<br>
0<br>
0<br>
0.<br>
0.<br>
2<br>
EP<br>
80.00<br>
80.00<br>
82.79<br>
82.79<br>
80.78<br>
2<br>
2<br>
28<br>
2<br>
2<br>
2<br>
Q<br>
0<br>
1.82<br>
(2500<br>
00<br>
t2050<br>
°<br>
a<br>
0<br>
0<br>
0<br>
DT<br>
-10<br>
00<br>
00<br>
50<br>
50<br>
00<br>
50<br>
:<br>
Inc<br>
.0<br>
.0<br>
.0<br>
2<br>
0.<br>
0.<br>
3.<br>
3.<br>
0<br>
0<br>
0.<br>
2<br>
6<br>
9 - 9<br>
4<br>
1 -<br>
H<br>
1<br>
0<br>
2<br>
20<br>
-<br>
90.00<br>
90.00<br>
e<br>
6<br>
0 - 4<br>
A<br>
H<br>
M<br>
m<br>
2<br>
9 - 9 4 1 - H 1 0 - 6 0 - 6 A MH<br>
2<br>
9 - 9<br>
4<br>
1 -<br>
H<br>
1<br>
0 - 6 0 - 3<br>
0<br>
A<br>
H<br>
M<br>
2<br>
9 - 0<br>
0<br>
5<br>
1 -<br>
H<br>
6<br>
3 - 1 3 - 1<br>
0<br>
281.79<br>
A<br>
H<br>
M<br>
1<br>
D<br>
0<br>
0<br>
0<br>
0<br>
3<br>
a<br>
0<br>
2<br>
0<br>
00<br>
lot<br>
M<br>
.0<br>
.0<br>
.0<br>
0<br>
-1<br>
0.<br>
0.00<br>
0.00<br>
2.00<br>
1.82<br>
at<br>
0.<br>
S<br>
0<br>
50<br>
00<br>
50<br>
N<br>
75<br>
50<br>
74<br>
5<br>
10<br>
442.<br>
1<br>
7<br>
78<br>
89<br>
91<br>
9<br>
050<br>
10<br>
2<br>
tionceS<br>
50<br>
al<br>
de<br>
1398<br>
37<br>
itu<br>
36<br>
rtice<br>
mpany<br>
ongL -102.<br>
e<br>
8<br>
V<br>
iz<br>
-5/<br>
0<br>
0<br>
S<br>
9<br>
7<br>
.0<br>
0<br>
0<br>
5<br>
-9<br>
e<br>
"<br>
O<br>
2<br>
Co<br>
7"<br>
F<br>
/8<br>
D<br>
D<br>
m<br>
T<br>
M<br>
2<br>
a<br>
5<br>
0<br>
M0<br>
.0<br>
9<br>
.0<br>
0<br>
N<br>
05<br>
SL<br>
0<br>
D<br>
-149-92<br>
8<br>
MD<br>
78<br>
9150.0<br>
.0<br>
rta<br>
.00<br>
at<br>
at<br>
10<br>
7"<br>
ld<br>
19<br>
ld<br>
d<br>
St<br>
o<br>
il<br>
0<br>
o<br>
100<br>
0<br>
01H<br>
h<br>
u<br>
1<br>
.0<br>
.00<br>
h0<br>
at<br>
-1<br>
.00<br>
8<br>
tB<br>
ittude<br>
p<br>
d<br>
.759<br>
ld<br>
il<br>
tar<br>
o<br>
ro<br>
u<br>
S<br>
125<br>
6-06-<br>
:<br>
at<br>
h<br>
t1050<br>
tB<br>
t592.0<br>
L<br>
47<br>
1.00<br>
rtD<br>
el<br>
S<br>
.00<br>
a<br>
tar<br>
tar<br>
tarS<br>
A<br>
ild<br>
St<br>
S<br>
S<br>
IL<br>
u<br>
H<br>
"<br>
70<br>
A<br>
t6400<br>
/8<br>
T<br>
rtB<br>
M<br>
5<br>
Lev<br>
2.<br>
6<br>
ta<br>
tar<br>
9<br>
S<br>
S<br>
DE<br>
ILS:<br>
200<br>
.41<br>
round<br>
0<br>
AT<br>
G<br>
636<br>
ING<br>
E<br>
ting<br>
3<br>
S<br>
D<br>
10<br>
8<br>
23<br>
M<br>
D<br>
as<br>
2.<br>
E<br>
15<br>
CA<br>
4<br>
e<br>
4<br>
s<br>
LL<br>
a<br>
E<br>
1961.<br>
la<br>
10<br>
lB<br>
o<br>
W<br>
h<br>
r<br>
hoa<br>
0<br>
e<br>
S<br>
438<br>
k<br>
e<br>
S<br>
5<br>
g<br>
6.<br>
ton<br>
n<br>
2<br>
Mar<br>
s<br>
tone<br>
R<br>
e<br>
s<br>
m<br>
e<br>
thi<br>
r<br>
G<br>
-1<br>
5<br>
4<br>
3<br>
2<br>
e<br>
le<br>
Li<br>
im<br>
859<br>
r<br>
r<br>
r<br>
r<br>
r1<br>
d<br>
le<br>
or<br>
e<br>
p<br>
d<br>
e<br>
L<br>
r<br>
up<br>
n<br>
e<br>
e<br>
e<br>
e<br>
p<br>
id<br>
e<br>
e<br>
rk<br>
rk<br>
id<br>
N<br>
76<br>
p<br>
ro<br>
e yo<br>
rk<br>
rk<br>
rk<br>
dl<br>
w<br>
a<br>
a<br>
a<br>
a<br>
a<br>
U<br>
en<br>
n<br>
M<br>
iddl<br>
o<br>
u<br>
M<br>
e<br>
lt<br>
s<br>
n<br>
n<br>
a n<br>
k<br>
e<br>
n<br>
id<br>
M<br>
L<br>
n<br>
G<br>
a<br>
M<br>
ro<br>
a<br>
e<br>
M<br>
M<br>
M<br>
M k<br>
llio<br>
k<br>
M<br>
0<br>
00<br>
h<br>
e<br>
a<br>
im<br>
B<br>
n<br>
n<br>
S<br>
e<br>
lt<br>
e<br>
e<br>
e<br>
e a<br>
a<br>
k<br>
e<br>
n<br>
e<br>
G<br>
s<br>
C<br>
L<br>
s<br>
a<br>
lt<br>
ol<br>
akke<br>
k<br>
e<br>
k<br>
0<br>
ills<br>
a<br>
lus<br>
a n<br>
p<br>
pol<br>
B<br>
Sc<br>
Ba<br>
akke<br>
k<br>
6.<br>
nhor<br>
pol<br>
pol<br>
pol<br>
pol<br>
B<br>
k<br>
k<br>
ry<br>
ta<br>
rfis<br>
ey<br>
liffe<br>
S<br>
io<br>
e<br>
e<br>
B<br>
k<br>
H<br>
r<br>
B<br>
rle<br>
a<br>
rre<br>
le<br>
e<br>
r<br>
6<br>
w<br>
o<br>
a<br>
tc<br>
g<br>
k<br>
ift<br>
rdon<br>
e<br>
e e<br>
b<br>
a<br>
tS s<br>
d<br>
ge<br>
ge<br>
ge<br>
ge<br>
ge ls<br>
B<br>
a<br>
Ba<br>
0<br>
x<br>
e<br>
g<br>
re<br>
e<br>
a<br>
a<br>
D<br>
ie<br>
p<br>
n n<br>
inne<br>
le<br>
ib<br>
h<br>
ast<br>
s s<br>
F<br>
B<br>
0<br>
Fo<br>
Pi<br>
Ea<br>
G<br>
Mo<br>
Da<br>
Sw<br>
R<br>
Pi<br>
Sp<br>
Pi Pi<br>
M<br>
Ty<br>
K<br>
C<br>
R<br>
L<br>
La Mi<br>
Lo<br>
Lod<br>
Lod<br>
Lod<br>
Lod<br>
Lod<br>
50<br>
/-W<br>
TV<br>
1960.<br>
10<br>
E<br>
00<br>
-2<br>
+<br>
0.<br>
0<br>
0<br>
0<br>
0<br>
0<br>
0<br>
0<br>
0<br>
0<br>
0<br>
00<br>
/-S<br>
0<br>
50<br>
25<br>
0<br>
250<br>
N<br>
.0<br>
+<br>
0<br>
-2<br>
-1<br>
125<br>
250<br>
375<br>
500<br>
625<br>
750<br>
875<br>
1<br>
10<br>
1<br>
usft/in)<br>
2500<br>
(<br>
Depth<br>
al<br>
rtic<br>
e<br>
V<br>
ue<br>
r T<br>
<hr>
<A name=29></a><hr>
<A name=30></a><hr>
<A name=31></a><hr>
<A name=32></a><hr>
<A name=33></a><hr>
<A name=34></a><hr>
<A name=35></a><hr>
<A name=36></a><hr>
<A name=37></a><hr>
<A name=38></a>Burns, David J.<br>
From:<br>
Heidi Kaczor <Heidi.Kaczor@qepres.com><br>
Sent:<br>
Wednesday, October 15, 2014 12:29 PM<br>
To:<br>
Burns, David J.<br>
Subject:<br>
FW: Cuttings disposal info<br>
Dave,<br>
As promised, please see below. It could be any of the following sites, based on capacity, travel conditions,<br>
etc.:<br>
Prairie Disposal Inc.<br>
102 C10 52nd St. NW<br>
Tioga, ND 58852<br>
Clean Energy Fluids Systems<br>
3139 Highway 23<br>
Keene, ND 58847<br>
Nuvera<br>
13195 26</span><span class="ft0">th </span><span class="ft4">St. NW<br>
Arnegard, ND 58835<br>
Let me know if you need anything else, and thank you for your patience!<br>
Heidi R. Kaczor<br>
Senior Permit Agent<br>
QEP Energy Company<br>
(303) 672 6993<br>
From:<br>
From: </span><span class="ft3">Heidi<br>
Heidi </span><span class="ft3">Kaczor<br>
Kaczor<br>
Sent:<br>
Sent: </span><span class="ft3">Tuesday,<br>
Tuesday, </span><span class="ft3">October 14<br>
1 </span><span class="ft3">, 2014 10:11<br>
10:1 </span><span class="ft3">AM<br>
To: 'Burns, Da<br>
D </span><span class="ft3">vid J.'<br>
Subject:<br>
Subject: </span><span class="ft3">Cuttings<br>
Cuttings </span><span class="ft3">disposal info<br>
Hi<br>
Hi </span><span class="ft4">Dave!<br>
Dave!<br>
I'm<br>
I'm </span><span class="ft4">working<br>
working </span><span class="ft4">on this<br>
this </span><span class="ft4">now...waiting<br>
now...waiting </span><span class="ft4">on a response<br>
response </span><span class="ft4">from<br>
from </span><span class="ft4">drilling<br>
drilling </span><span class="ft4">regarding<br>
regarding </span><span class="ft4">exactly<br>
exactly </span><span class="ft4">where<br>
where </span><span class="ft4">we'll<br>
we'll </span><span class="ft4">be taking<br>
taking </span><span class="ft4">the<br>
the<br>
cuttings<br>
cuttings </span><span class="ft4">from<br>
from </span><span class="ft4">the<br>
the </span><span class="ft4">4 5E<br>
5E </span><span class="ft4">pad<br>
pad </span><span class="ft4">wells.<br>
wells.<br>
Sorry<br>
Sorry </span><span class="ft4">for<br>
for </span><span class="ft4">the<br>
the </span><span class="ft4">delay!<br>
delay!<br>
Heidi<br>
Heidi </span><span class="ft4">R. Kaczor<br>
Kaczor<br>
Senior<br>
Senior </span><span class="ft4">Permit<br>
Permit </span><span class="ft4">Agent<br>
Agent<br>
QEP<br>
QEP </span><span class="ft4">Energ<br>
Ener </span><span class="ft4">y<br>
gy </span><span class="ft4">Company<br>
(303)<br>
(303) </span><span class="ft4">672<br>
672 </span><span class="ft4">6993<br>
1<br>
<hr>
<A name=39></a>PHYSICAL ADDRESS REQUEST FORM<br>
Please supply the following information for Dunn County to provide a physical address. This information will be used by Dunn<br>
County for the purposes of emergency management, E-911 services, planning and zoning, and subdivisions.<br>
**Please Print Legibly**<br>
Date of Application: ________<br>
7/21/14 </span><span class="ft2">_____________________<br>
Applicant Name: ______<br>
QEP<br>
______<br>
Energy </span><span class="ft2">________<br>
Company </span><span class="ft2">__<br>
- </span><span class="ft2">____<br>
Heidi </span><span class="ft2">________<br>
Kaczor, </span><span class="ft2">______<br>
Senior </span><span class="ft2">______<br>
Permit </span><span class="ft2">______<br>
Agent </span><span class="ft2">_______________________________________<br>
Mailing Address: ______<br>
1050 </span><span class="ft2">____<br>
17th </span><span class="ft2">______<br>
Street, </span><span class="ft2">____<br>
Suite </span><span class="ft2">____<br>
800 </span><span class="ft2">___________________________________________________________________<br>
________<br>
Denver, </span><span class="ft2">____<br>
CO<br>
____<br>
80265 </span><span class="ft2">___________________________________________________________________________<br>
Area Code & Telephone #:______<br>
(303) </span><span class="ft2">________<br>
672-6900 </span><span class="ft2">______________________________________________________________________<br>
Email Address: ________________________<br>
Heidi.Kaczor@qepres.com </span><span class="ft2">_____________________________________________________________________<br>
Name of property owner if different than applicant name:_______<br>
Three </span><span class="ft2">________<br>
Affiliated </span><span class="ft2">______<br>
Tribes </span><span class="ft2">____<br>
(Fort </span><span class="ft2">________<br>
Berthold </span><span class="ft2">______<br>
Indian </span><span class="ft2">____________<br>
Reservation)<br>
_______<br>
Township ______<br>
149N </span><span class="ft2">___<br>
Range_____<br>
91W </span><span class="ft2">____<br>
Section___<br>
5 </span><span class="ft2">_________<br>
LATITUDE:_________<br>
47.759198</span><span class="ft2">_______________<br>
LONGITUDE:___________<br>
102.361398 </span><span class="ft2">_____________________<br>
Lot #: __<br>
4 </span><span class="ft2">_____<br>
Block #: _______________________________<br>
Structure located off the Road:<br>
North Side:______<br>
South Side:_______ East Side:____<br>
</span><span class="ft2">___ West Side:_______<br>
Road Name providing property access: ____<br>
BIA </span><span class="ft2">____<br>
13<br>
_______________________ What is distance from the road?_________<br>
~1970<br>
____ feet<br>
SUB-DIVISION NAME IF APPLICABLE:________________________________________________________<br>
Single Family_____<br>
Business: ________<br>
Industrial: ________<br>
Energy Company: _____<br>
RV or Trailer: _______<br>
Construction Site: _____<br>
Oil Site: ____<br>
</span><span class="ft2">______<br>
Mobile Home: ______<br>
Other: ________<br>
What type of structure: ____________________________________________<br>
Each residential multiple family unit, commercial structure unit and separate building at the same physical address, must have a<br>
separate unit number (e.g. A, B, etc. Apartment XXX or Suite XXX). The 911 number must be clearly displayed and visible at the<br>
primary entrance to each unit and needs to be at least 6" in size.<br>
Return this form to: Kyle Grove<br>
701.573.9918<br>
kyle.grove@dunncountynd.org<br>
Please do not write below this line - **For Official Use Only**<br>
Dunn County Physical Address Request Form<br>
Date Received: ________________________<br>
County: Dunn<br>
City: __________________________________________________<br>
Assigned Address: _____________________________________________________________________________________________<br>
<hr>
<A name=40></a><hr>
<A name=41></a><hr>
<A name=42></a>Gas Capture Plan (</span><span class="ft1">Independence Pad 4-5E 4 wells</span><span class="ft0">)<br>
MHA 6-06-01H-149-92<br>
MHA 8-06-01H-149-92<br>
MHA 6-32-29H-150-91<br>
MHA 8-32-29H-150-91<br>
1. Affidavit: Attached as a part of this gas capture plan.<br>
2. Detailed gas gathering pipeline system location map<br>
Arrow Pipeline, LLC ("ARRW")<br>
Name and Location of gas processing plant: </span><span class="ft3">Oneok Garden Creek Plant, Section 35-T151N-R98W<br>
Name of gas gatherer and location of lines for each gas gatherer in the vicinity: </span><span class="ft3">ARRW 8" steel gathering<br>
line; no other viable gatherers in the vicinity<br>
Proposed Route and Tie-in point for well connection: </span><span class="ft3">See above gathering system map<br>
3. Detailed information for Arrow Compressor Station #6:<br>
Maximum current daily capacity: </span><span class="ft3">Station 6 is not operational yet<br>
Current throughput: </span><span class="ft3">Approximately 6 MMcfd on that line<br>
<hr>
<A name=43></a>Anticipated daily capacity at date of first gas sales: </span><span class="ft1">Approximately 12 MMcfd<br>
Anticipated throughput at date of first gas sales: </span><span class="ft1">Approximately 10 MMcfd based on QEP production<br>
assumptions as well as other gas in the area<br>
Gas gatherer issues or expansion plans for the area: </span><span class="ft1">ARRW has and is projected to have adequate<br>
pipeline and compression capacity for QEP's current and forecasted gas; however, ARRW's high pipeline<br>
pressures have been the main culprit causing QEP to flare gas in 2014, and these high line pressures<br>
have been caused by the lack of processing capacity by the downstream gas processer Oneok at their<br>
Garden Creek Plant. That plant is set to be expanded in August 2014 and should alleviate ARRW's high<br>
line pressure QEP has been experiencing in 2014.<br>
4. Detailed flowback strategy:<br>
Anticipated date of first production: </span><span class="ft1">2</span><span class="ft4">nd </span><span class="ft1">Quarter of 2015<br>
Anticipated oil and gas rates and duration (for all pad wells): </span><span class="ft1">See table below (assumes all pad first flows<br>
occur on the same day in reality, some staggering will occur but that detail is not known at this time) .<br>
Independence Pad 4-5E<br>
Compl. Date Q2 of 2015<br>
Avg. Mcfd (4 wells)<br>
IP (30):<br>
4,996<br>
Yr1:<br>
2,380<br>
Yr2:<br>
996<br>
Yr3:<br>
708<br>
Yr4:<br>
568<br>
Yr5:<br>
476<br>
Yr6:<br>
447<br>
Yr7:<br>
421<br>
Yr8:<br>
395<br>
Yr9:<br>
372<br>
5. QEP flaring amounts:<br>
Statewide percentage of gas flared for existing wells in the Bakken petroleum system: </span><span class="ft1">53% for the most<br>
recent month of July 2014 (28.0 MMcfd flared /52.5 MMcfd produced)<br>
Field wide percentage of gas flared for this well: </span><span class="ft1">14% in the Heart Butte field for the most recent month<br>
of July 2014 (1.1 MMcfd flared/7.8 MMcfd produced)<br>
6. QEP Alternatives to flaring:<br>
Specific alternative systems available for consideration: </span><span class="ft1">When ARRW is at capacity or not connected,<br>
QEP has considered and implemented JT conditioning skids for its flaring wells. QEP has done this on 2<br>
pads in Sections 33-35 of T149N-R95W (vendor Montana-Dakota) in the Williston basin. QEP also is<br>
<hr>
<A name=44></a>looking at site usage for a number of applications to include powering wellhead equipment, drilling rigs,<br>
gas lift, etc. Further, QEP is installing gas-powered generators on our pads in the Heart Butte field (FBIR)<br>
instead of using diesel fuel (second half of 2014).<br>
Details of flaring reductions if such alternative plans are implemented: </span><span class="ft0">The site usage for gas powered<br>
generators and other usage on our Heart Butte pads was 22% (1.7 MMcfd) in July 2014, and that is gas<br>
that otherwise would have flared.<br>
<hr>
<A name=45></a><hr>
<A name=46></a><hr>
<A name=47></a>PAD 4-5E<br>
<hr>
<A name=48></a><hr>
<A name=49></a><hr>
<A name=50></a><hr>
<A name=51></a><hr>
<A name=52></a><hr>
<A name=53></a><hr>
<A name=54></a><hr>
<A name=55></a><hr>
<A name=56></a><hr>
<A name=57></a><hr>
<A name=58></a><hr>
<A name=59></a><hr>
<A name=60></a><hr>
<A name=61></a><hr>
<A name=62></a><hr>
<A name=63></a><hr>
<A name=64></a><hr>
<A name=65></a><hr>
<A name=66></a><hr>
<A name=67></a><hr>
<A name=68></a>PAD 4-5E<br>
<hr>
<A name=69></a><hr>
<A name=70></a><hr>
<A name=71></a><hr>
<A name=72></a><hr>
<A name="outline"></a><h1>Document Outline</h1>
<ul><li>Form 6 - Bakken
<li>Form 4
<ul><li>4-rpt- spud
<li>4-intent-waiver request for OH Logs
</ul><li>Form 1
</ul><hr>
</BODY>
</HTML>
| datamade/elpc_bakken | html/pdf/W29715.pdfs.html | HTML | mit | 46,306 |
<!DOCTYPE html>
<html>
<head>
<title>SubGraph</title>
<meta charset="UTF-8">
<style>
html, body {
padding: 0px;
margin: 0px;
}
.main {
margin: 0px;
padding: 0px;
position: absolute;
top: 0px;
bottom: 0px;
left: 0px;
right: 0px;
}
</style>
<script src="../../../../lib/core/ht.js"></script>
<script>
function init(){
var dataModel = new ht.DataModel(),
graphView = new ht.graph.GraphView(dataModel),
view = graphView.getView();
view.className = 'main';
document.body.appendChild(view);
window.addEventListener('resize', function (e) {
graphView.invalidate();
}, false);
var subGraph1 = new ht.SubGraph();
subGraph1.setName('SubGraph1');
subGraph1.setPosition(80, 80);
subGraph1.setStyle('note', 'double click to drill down');
dataModel.add(subGraph1);
var node1 = new ht.Node();
node1.setName('Node1');
node1.setPosition(80, 80);
subGraph1.addChild(node1);
dataModel.add(node1);
var node2 = new ht.Node();
node2.setName('Node2');
node2.setPosition(180, 80);
subGraph1.addChild(node2);
dataModel.add(node2);
var subGraph2 = new ht.SubGraph();
subGraph2.setName('SubGraph1');
subGraph2.setPosition(280, 80);
subGraph2.setStyle('note', 'double click to drill down');
subGraph1.addChild(subGraph2);
dataModel.add(subGraph2);
var node3 = new ht.Node();
node3.setPosition(180, 80);
node3.setName('i am the last one, double click the background for up level');
subGraph2.addChild(node3);
dataModel.add(node3);
}
</script>
</head>
<body onload="init();">
</body>
</html>
| caochangxi/HMWKWebViewHandler | ht-for-web-6/guide/core/beginners/examples/example_subgraph.html | HTML | mit | 2,553 |
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name = "viewport" content = "user-scalable=no, width=device-width, initial-scale = 1.0">
<title>Big Block Framework - Demo</title>
<script src="../rel/bigblock-alpha-.6.5.min.js"></script>
<script type='text/javascript'>
BigBlock.CharPresets = BigBlock.CharPresets.install();
BigBlock.Word.create({
x: 8,
y: 64,
word: "touchstart - touch inside the viewport",
font: "bigblock_plain",
color: "grey"
});
BigBlock.ScreenEvent.screen_touchstart = function (evt_x, evt_y, event) {
alert("You touched me!");
};
</script>
</head>
<body onload="setTimeout('BigBlock.ready()', 0)">
</body>
</html> | foldi/Big-Block-Framework | demos/events_screen004.html | HTML | mit | 804 |
<!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_75) on Thu Feb 12 23:19:10 AEDT 2015 -->
<title>NearestNeighbourSearcher</title>
<meta name="date" content="2015-02-12">
<link rel="stylesheet" type="text/css" href="../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="NearestNeighbourSearcher";
}
//-->
</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="../../infodynamics/utils/MeasurementDistribution.html" title="class in infodynamics.utils"><span class="strong">Prev Class</span></a></li>
<li><a href="../../infodynamics/utils/NeighbourNodeData.html" title="class in infodynamics.utils"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../index.html?infodynamics/utils/NearestNeighbourSearcher.html" target="_top">Frames</a></li>
<li><a href="NearestNeighbourSearcher.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li><a href="#field_summary">Field</a> | </li>
<li><a href="#constructor_summary">Constr</a> | </li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li><a href="#field_detail">Field</a> | </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">infodynamics.utils</div>
<h2 title="Class NearestNeighbourSearcher" class="title">Class NearestNeighbourSearcher</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li>infodynamics.utils.NearestNeighbourSearcher</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>Direct Known Subclasses:</dt>
<dd><a href="../../infodynamics/utils/KdTree.html" title="class in infodynamics.utils">KdTree</a>, <a href="../../infodynamics/utils/UnivariateNearestNeighbourSearcher.html" title="class in infodynamics.utils">UnivariateNearestNeighbourSearcher</a></dd>
</dl>
<hr>
<br>
<pre>public abstract class <span class="strong">NearestNeighbourSearcher</span>
extends java.lang.Object</pre>
<div class="block">Generic class for fast neighbour searching
possibly across several (multi-dimensional) variables.
Instantiates either a sorted array for single dimension data,
or a k-d tree for multi-dimensional / multiple variables.
Norms for the nearest neighbour searches are the max norm between
the (multi-dimensional) variables, and either max norm or Euclidean
norm (squared) within each variable.</div>
<dl><dt><span class="strong">Author:</span></dt>
<dd>Joseph Lizier (<a href="joseph.lizier at gmail.com">email</a>,
<a href="http://lizier.me/joseph/">www</a>)</dd></dl>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- =========== FIELD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="field_summary">
<!-- -->
</a>
<h3>Field Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Field Summary table, listing fields, and an explanation">
<caption><span>Fields</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Field and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected int</code></td>
<td class="colLast"><code><strong><a href="../../infodynamics/utils/NearestNeighbourSearcher.html#normTypeToUse">normTypeToUse</a></strong></code>
<div class="block">The norm type to use between the univariates.</div>
</td>
</tr>
</table>
</li>
</ul>
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor_summary">
<!-- -->
</a>
<h3>Constructor Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
<caption><span>Constructors</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><strong><a href="../../infodynamics/utils/NearestNeighbourSearcher.html#NearestNeighbourSearcher()">NearestNeighbourSearcher</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>int</code></td>
<td class="colLast"><code><strong><a href="../../infodynamics/utils/NearestNeighbourSearcher.html#countPointsStrictlyWithinR(int,%20double)">countPointsStrictlyWithinR</a></strong>(int sampleIndex,
double r)</code>
<div class="block">As per <a href="../../infodynamics/utils/NearestNeighbourSearcher.html#countPointsWithinR(int,%20double,%20boolean)"><code>countPointsWithinR(int, double, boolean)</code></a>
with allowEqualToR == false</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>int</code></td>
<td class="colLast"><code><strong><a href="../../infodynamics/utils/NearestNeighbourSearcher.html#countPointsStrictlyWithinR(int,%20double,%20int)">countPointsStrictlyWithinR</a></strong>(int sampleIndex,
double r,
int dynCorrExclTime)</code>
<div class="block">As per <a href="../../infodynamics/utils/NearestNeighbourSearcher.html#countPointsWithinR(int,%20double,%20int,%20boolean)"><code>countPointsWithinR(int, double, int, boolean)</code></a>
with allowEqualToR == false</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>int</code></td>
<td class="colLast"><code><strong><a href="../../infodynamics/utils/NearestNeighbourSearcher.html#countPointsWithinOrOnR(int,%20double)">countPointsWithinOrOnR</a></strong>(int sampleIndex,
double r)</code>
<div class="block">As per <a href="../../infodynamics/utils/NearestNeighbourSearcher.html#countPointsWithinR(int,%20double,%20boolean)"><code>countPointsWithinR(int, double, boolean)</code></a>
with allowEqualToR == true</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>int</code></td>
<td class="colLast"><code><strong><a href="../../infodynamics/utils/NearestNeighbourSearcher.html#countPointsWithinOrOnR(int,%20double,%20int)">countPointsWithinOrOnR</a></strong>(int sampleIndex,
double r,
int dynCorrExclTime)</code>
<div class="block">As per <a href="../../infodynamics/utils/NearestNeighbourSearcher.html#countPointsWithinR(int,%20double,%20int,%20boolean)"><code>countPointsWithinR(int, double, int, boolean)</code></a>
with allowEqualToR == true</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>abstract int</code></td>
<td class="colLast"><code><strong><a href="../../infodynamics/utils/NearestNeighbourSearcher.html#countPointsWithinR(int,%20double,%20boolean)">countPointsWithinR</a></strong>(int sampleIndex,
double r,
boolean allowEqualToR)</code>
<div class="block">Count the number of points within norm r for a given
sample index in the data set.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>abstract int</code></td>
<td class="colLast"><code><strong><a href="../../infodynamics/utils/NearestNeighbourSearcher.html#countPointsWithinR(int,%20double,%20boolean,%20boolean[])">countPointsWithinR</a></strong>(int sampleIndex,
double r,
boolean allowEqualToR,
boolean[] additionalCriteria)</code>
<div class="block">As per <a href="../../infodynamics/utils/NearestNeighbourSearcher.html#countPointsWithinR(int,%20double,%20boolean)"><code>countPointsWithinR(int, double, boolean)</code></a>
however each point is subject to also meeting the additional
criteria of being true in additionalCriteria.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>abstract int</code></td>
<td class="colLast"><code><strong><a href="../../infodynamics/utils/NearestNeighbourSearcher.html#countPointsWithinR(int,%20double,%20int,%20boolean)">countPointsWithinR</a></strong>(int sampleIndex,
double r,
int dynCorrExclTime,
boolean allowEqualToR)</code>
<div class="block">As per <a href="../../infodynamics/utils/NearestNeighbourSearcher.html#countPointsWithinR(int,%20double,%20boolean)"><code>countPointsWithinR(int, double, boolean)</code></a>
however any nodes within dynCorrExclTime are excluded from
the search.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../infodynamics/utils/NearestNeighbourSearcher.html" title="class in infodynamics.utils">NearestNeighbourSearcher</a></code></td>
<td class="colLast"><code><strong><a href="../../infodynamics/utils/NearestNeighbourSearcher.html#create(double[][])">create</a></strong>(double[][] data)</code>
<div class="block">Factory method to construct the searcher from a set of double[][] data.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../infodynamics/utils/NearestNeighbourSearcher.html" title="class in infodynamics.utils">NearestNeighbourSearcher</a></code></td>
<td class="colLast"><code><strong><a href="../../infodynamics/utils/NearestNeighbourSearcher.html#create(int[],%20double[][][])">create</a></strong>(int[] dimensions,
double[][][] data)</code>
<div class="block">Factory method to construct the searcher from a set of double[][][] data.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>abstract java.util.PriorityQueue<<a href="../../infodynamics/utils/NeighbourNodeData.html" title="class in infodynamics.utils">NeighbourNodeData</a>></code></td>
<td class="colLast"><code><strong><a href="../../infodynamics/utils/NearestNeighbourSearcher.html#findKNearestNeighbours(int,%20int)">findKNearestNeighbours</a></strong>(int K,
int sampleIndex)</code>
<div class="block">Return the K nodes which are the K nearest neighbours for a given
sample index in the data set.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>abstract java.util.PriorityQueue<<a href="../../infodynamics/utils/NeighbourNodeData.html" title="class in infodynamics.utils">NeighbourNodeData</a>></code></td>
<td class="colLast"><code><strong><a href="../../infodynamics/utils/NearestNeighbourSearcher.html#findKNearestNeighbours(int,%20int,%20int)">findKNearestNeighbours</a></strong>(int K,
int sampleIndex,
int dynCorrExclTime)</code>
<div class="block">Return the K nodes which are the K nearest neighbours for a given
sample index in the data set.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>abstract <a href="../../infodynamics/utils/NeighbourNodeData.html" title="class in infodynamics.utils">NeighbourNodeData</a></code></td>
<td class="colLast"><code><strong><a href="../../infodynamics/utils/NearestNeighbourSearcher.html#findNearestNeighbour(int)">findNearestNeighbour</a></strong>(int sampleIndex)</code>
<div class="block">Return the node which is the nearest neighbour for a given
sample index in the data set.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>java.util.Collection<<a href="../../infodynamics/utils/NeighbourNodeData.html" title="class in infodynamics.utils">NeighbourNodeData</a>></code></td>
<td class="colLast"><code><strong><a href="../../infodynamics/utils/NearestNeighbourSearcher.html#findPointsStrictlyWithinR(int,%20double)">findPointsStrictlyWithinR</a></strong>(int sampleIndex,
double r)</code>
<div class="block">As per <a href="../../infodynamics/utils/NearestNeighbourSearcher.html#findPointsStrictlyWithinR(int,%20double)"><code>findPointsStrictlyWithinR(int, double)</code></a>
with allowEqualToR == false</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../infodynamics/utils/NearestNeighbourSearcher.html#findPointsStrictlyWithinR(int,%20double,%20boolean[],%20int[])">findPointsStrictlyWithinR</a></strong>(int sampleIndex,
double r,
boolean[] isWithinR,
int[] indicesWithinR)</code>
<div class="block">As per <a href="../../infodynamics/utils/NearestNeighbourSearcher.html#findPointsWithinR(int,%20double,%20boolean,%20boolean[],%20int[])"><code>findPointsWithinR(int, double, boolean, boolean[], int[])</code></a>
with allowEqualToR == false</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>java.util.Collection<<a href="../../infodynamics/utils/NeighbourNodeData.html" title="class in infodynamics.utils">NeighbourNodeData</a>></code></td>
<td class="colLast"><code><strong><a href="../../infodynamics/utils/NearestNeighbourSearcher.html#findPointsWithinOrOnR(int,%20double)">findPointsWithinOrOnR</a></strong>(int sampleIndex,
double r)</code>
<div class="block">As per <a href="../../infodynamics/utils/NearestNeighbourSearcher.html#findPointsStrictlyWithinR(int,%20double)"><code>findPointsStrictlyWithinR(int, double)</code></a>
with allowEqualToR == true</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../infodynamics/utils/NearestNeighbourSearcher.html#findPointsWithinOrOnR(int,%20double,%20boolean[],%20int[])">findPointsWithinOrOnR</a></strong>(int sampleIndex,
double r,
boolean[] isWithinR,
int[] indicesWithinR)</code>
<div class="block">As per <a href="../../infodynamics/utils/NearestNeighbourSearcher.html#findPointsWithinR(int,%20double,%20boolean,%20boolean[],%20int[])"><code>findPointsWithinR(int, double, boolean, boolean[], int[])</code></a>
with allowEqualToR == true</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>abstract java.util.Collection<<a href="../../infodynamics/utils/NeighbourNodeData.html" title="class in infodynamics.utils">NeighbourNodeData</a>></code></td>
<td class="colLast"><code><strong><a href="../../infodynamics/utils/NearestNeighbourSearcher.html#findPointsWithinR(int,%20double,%20boolean)">findPointsWithinR</a></strong>(int sampleIndex,
double r,
boolean allowEqualToR)</code>
<div class="block">As per <a href="../../infodynamics/utils/NearestNeighbourSearcher.html#countPointsWithinR(int,%20double,%20boolean)"><code>countPointsWithinR(int, double, boolean)</code></a>
however returns a collection rather than a count.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>abstract void</code></td>
<td class="colLast"><code><strong><a href="../../infodynamics/utils/NearestNeighbourSearcher.html#findPointsWithinR(int,%20double,%20boolean,%20boolean[],%20int[])">findPointsWithinR</a></strong>(int sampleIndex,
double r,
boolean allowEqualToR,
boolean[] isWithinR,
int[] indicesWithinR)</code>
<div class="block">As per <a href="../../infodynamics/utils/NearestNeighbourSearcher.html#countPointsWithinR(int,%20double,%20boolean)"><code>countPointsWithinR(int, double, boolean)</code></a>
however records the nearest neighbours made within the isWithinR
and indicesWithinR arrays, which must be constructed before
calling this method, with length at or exceeding the total
number of data points.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>abstract void</code></td>
<td class="colLast"><code><strong><a href="../../infodynamics/utils/NearestNeighbourSearcher.html#findPointsWithinR(int,%20double,%20int,%20boolean,%20boolean[],%20int[])">findPointsWithinR</a></strong>(int sampleIndex,
double r,
int dynCorrExclTime,
boolean allowEqualToR,
boolean[] isWithinR,
int[] indicesWithinR)</code>
<div class="block">As per <a href="../../infodynamics/utils/NearestNeighbourSearcher.html#findPointsWithinR(int,%20double,%20boolean,%20boolean[],%20int[])"><code>findPointsWithinR(int, double, boolean, boolean[], int[])</code></a>
however incorporates dynamic correlation exclusion.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../infodynamics/utils/NearestNeighbourSearcher.html#setNormType(int)">setNormType</a></strong>(int normType)</code>
<div class="block">Set the norm type to use in the nearest neighbour searches,
to normType.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../infodynamics/utils/NearestNeighbourSearcher.html#setNormType(java.lang.String)">setNormType</a></strong>(java.lang.String normType)</code>
<div class="block">Set the norm type to use to normType.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../infodynamics/utils/NearestNeighbourSearcher.html#validateNormType(java.lang.String)">validateNormType</a></strong>(java.lang.String normType)</code>
<div class="block">Validate whether a specified norm type is supported,
and return the int corresponding to that type,
otherwise through an exception.</div>
</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class java.lang.Object</h3>
<code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ============ FIELD DETAIL =========== -->
<ul class="blockList">
<li class="blockList"><a name="field_detail">
<!-- -->
</a>
<h3>Field Detail</h3>
<a name="normTypeToUse">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>normTypeToUse</h4>
<pre>protected int normTypeToUse</pre>
<div class="block">The norm type to use between the univariates.</div>
</li>
</ul>
</li>
</ul>
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor_detail">
<!-- -->
</a>
<h3>Constructor Detail</h3>
<a name="NearestNeighbourSearcher()">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>NearestNeighbourSearcher</h4>
<pre>public NearestNeighbourSearcher()</pre>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method_detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="create(double[][])">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>create</h4>
<pre>public static <a href="../../infodynamics/utils/NearestNeighbourSearcher.html" title="class in infodynamics.utils">NearestNeighbourSearcher</a> create(double[][] data)
throws java.lang.Exception</pre>
<div class="block">Factory method to construct the searcher from a set of double[][] data.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>data</code> - a double[][] 2D data set, first indexed
by time, second index by variable number.</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.lang.Exception</code></dd></dl>
</li>
</ul>
<a name="create(int[], double[][][])">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>create</h4>
<pre>public static <a href="../../infodynamics/utils/NearestNeighbourSearcher.html" title="class in infodynamics.utils">NearestNeighbourSearcher</a> create(int[] dimensions,
double[][][] data)
throws java.lang.Exception</pre>
<div class="block">Factory method to construct the searcher from a set of double[][][] data.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>data</code> - an array of double[][] 2D data sets, first indexed
by time, second index by variable number.</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.lang.Exception</code></dd></dl>
</li>
</ul>
<a name="setNormType(int)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setNormType</h4>
<pre>public void setNormType(int normType)</pre>
<div class="block">Set the norm type to use in the nearest neighbour searches,
to normType.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>normType</code> - norm type to use; must be either
<a href="../../infodynamics/utils/EuclideanUtils.html#NORM_EUCLIDEAN"><code>EuclideanUtils.NORM_EUCLIDEAN</code></a>,
<a href="../../infodynamics/utils/EuclideanUtils.html#NORM_EUCLIDEAN_SQUARED"><code>EuclideanUtils.NORM_EUCLIDEAN_SQUARED</code></a> or
<a href="../../infodynamics/utils/EuclideanUtils.html#NORM_MAX_NORM"><code>EuclideanUtils.NORM_MAX_NORM</code></a>, otherwise an
UnsupportedOperationException is thrown.
<a href="../../infodynamics/utils/EuclideanUtils.html#NORM_EUCLIDEAN"><code>EuclideanUtils.NORM_EUCLIDEAN</code></a> will be nominally supported
but switched to
<a href="../../infodynamics/utils/EuclideanUtils.html#NORM_EUCLIDEAN_SQUARED"><code>EuclideanUtils.NORM_EUCLIDEAN_SQUARED</code></a> internally for speed.</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.lang.UnsupportedOperationException</code> - if the norm type is not
one of the above supported options.</dd></dl>
</li>
</ul>
<a name="setNormType(java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setNormType</h4>
<pre>public void setNormType(java.lang.String normType)</pre>
<div class="block">Set the norm type to use to normType.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>normType</code> - norm type to use; must be either
<a href="../../infodynamics/utils/EuclideanUtils.html#NORM_EUCLIDEAN_STRING"><code>EuclideanUtils.NORM_EUCLIDEAN_STRING</code></a>,
<a href="../../infodynamics/utils/EuclideanUtils.html#NORM_EUCLIDEAN_SQUARED_STRING"><code>EuclideanUtils.NORM_EUCLIDEAN_SQUARED_STRING</code></a> or
<a href="../../infodynamics/utils/EuclideanUtils.html#NORM_MAX_NORM_STRING"><code>EuclideanUtils.NORM_MAX_NORM_STRING</code></a>, otherwise an
UnsupportedOperationException is thrown.
<a href="../../infodynamics/utils/EuclideanUtils.html#NORM_EUCLIDEAN"><code>EuclideanUtils.NORM_EUCLIDEAN</code></a> will be nominally supported
but switched to
<a href="../../infodynamics/utils/EuclideanUtils.html#NORM_EUCLIDEAN_SQUARED"><code>EuclideanUtils.NORM_EUCLIDEAN_SQUARED</code></a> internally for speed.</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.lang.UnsupportedOperationException</code> - if the norm type is not
one of the above supported options.</dd></dl>
</li>
</ul>
<a name="validateNormType(java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>validateNormType</h4>
<pre>public static int validateNormType(java.lang.String normType)</pre>
<div class="block">Validate whether a specified norm type is supported,
and return the int corresponding to that type,
otherwise through an exception.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>normType</code> - norm type to use; must be either
<a href="../../infodynamics/utils/EuclideanUtils.html#NORM_EUCLIDEAN_STRING"><code>EuclideanUtils.NORM_EUCLIDEAN_STRING</code></a>,
<a href="../../infodynamics/utils/EuclideanUtils.html#NORM_EUCLIDEAN_SQUARED_STRING"><code>EuclideanUtils.NORM_EUCLIDEAN_SQUARED_STRING</code></a> or
<a href="../../infodynamics/utils/EuclideanUtils.html#NORM_MAX_NORM_STRING"><code>EuclideanUtils.NORM_MAX_NORM_STRING</code></a>, otherwise an
UnsupportedOperationException is thrown.
<a href="../../infodynamics/utils/EuclideanUtils.html#NORM_EUCLIDEAN"><code>EuclideanUtils.NORM_EUCLIDEAN</code></a> will be nominally supported
but switched to
<a href="../../infodynamics/utils/EuclideanUtils.html#NORM_EUCLIDEAN_SQUARED"><code>EuclideanUtils.NORM_EUCLIDEAN_SQUARED</code></a> internally for speed.</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.lang.UnsupportedOperationException</code> - if the norm type is not
one of the above supported options.</dd></dl>
</li>
</ul>
<a name="findNearestNeighbour(int)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>findNearestNeighbour</h4>
<pre>public abstract <a href="../../infodynamics/utils/NeighbourNodeData.html" title="class in infodynamics.utils">NeighbourNodeData</a> findNearestNeighbour(int sampleIndex)</pre>
<div class="block">Return the node which is the nearest neighbour for a given
sample index in the data set. The node itself is
excluded from the search.
Nearest neighbour function to compare to r is a max norm between the
high-level variables, with norm for each variable being the specified norm.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>sampleIndex</code> - sample index in the data to find a nearest neighbour
for</dd>
<dt><span class="strong">Returns:</span></dt><dd>the node for the nearest neighbour.</dd></dl>
</li>
</ul>
<a name="findKNearestNeighbours(int, int)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>findKNearestNeighbours</h4>
<pre>public abstract java.util.PriorityQueue<<a href="../../infodynamics/utils/NeighbourNodeData.html" title="class in infodynamics.utils">NeighbourNodeData</a>> findKNearestNeighbours(int K,
int sampleIndex)
throws java.lang.Exception</pre>
<div class="block">Return the K nodes which are the K nearest neighbours for a given
sample index in the data set. The node itself is
excluded from the search.
Nearest neighbour function to compare to r is a max norm between the
high-level variables, with norm for each variable being the specified norm.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>K</code> - number of K nearest neighbours to return, sorted from
furthest away first to nearest last.</dd><dd><code>sampleIndex</code> - sample index in the data to find the K nearest neighbours
for</dd>
<dt><span class="strong">Returns:</span></dt><dd>a PriorityQueue of nodes for the K nearest neighbours,
sorted with furthest neighbour first in the PQ.</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.lang.Exception</code></dd></dl>
</li>
</ul>
<a name="findKNearestNeighbours(int, int, int)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>findKNearestNeighbours</h4>
<pre>public abstract java.util.PriorityQueue<<a href="../../infodynamics/utils/NeighbourNodeData.html" title="class in infodynamics.utils">NeighbourNodeData</a>> findKNearestNeighbours(int K,
int sampleIndex,
int dynCorrExclTime)
throws java.lang.Exception</pre>
<div class="block">Return the K nodes which are the K nearest neighbours for a given
sample index in the data set. Nodes within dynCorrExclTime time points
are excluded from the search.
Nearest neighbour function to compare to r is a max norm between the
high-level variables, with norm for each variable being the specified norm.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>K</code> - number of K nearest neighbours to return, sorted from
furthest away first to nearest last.</dd><dd><code>sampleIndex</code> - sample index in the data to find the K nearest neighbours
for</dd><dd><code>dynCorrExclTime</code> - Range around sampleIndex to exclude points from the count. Is >= 0.</dd>
<dt><span class="strong">Returns:</span></dt><dd>a PriorityQueue of nodes for the K nearest neighbours,
sorted with furthest neighbour first in the PQ.</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.lang.Exception</code></dd></dl>
</li>
</ul>
<a name="countPointsWithinR(int, double, boolean)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>countPointsWithinR</h4>
<pre>public abstract int countPointsWithinR(int sampleIndex,
double r,
boolean allowEqualToR)</pre>
<div class="block">Count the number of points within norm r for a given
sample index in the data set. The node itself is
excluded from the search.
Nearest neighbour function to compare to r is a max norm between the
high-level variables, with norm for each variable being the specified norm.
(If <a href="../../infodynamics/utils/EuclideanUtils.html#NORM_EUCLIDEAN"><code>EuclideanUtils.NORM_EUCLIDEAN</code></a> was selected, then the supplied
r should be the required Euclidean norm <b>squared</b>, since we switch it
to <a href="../../infodynamics/utils/EuclideanUtils.html#NORM_EUCLIDEAN_SQUARED"><code>EuclideanUtils.NORM_EUCLIDEAN_SQUARED</code></a> internally).</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>sampleIndex</code> - sample index in the data to find a nearest neighbour
for</dd><dd><code>r</code> - radius within which to count points</dd><dd><code>allowEqualToR</code> - if true, then count points at radius r also,
otherwise only those strictly within r</dd>
<dt><span class="strong">Returns:</span></dt><dd>the count of points within r.</dd></dl>
</li>
</ul>
<a name="countPointsWithinR(int, double, int, boolean)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>countPointsWithinR</h4>
<pre>public abstract int countPointsWithinR(int sampleIndex,
double r,
int dynCorrExclTime,
boolean allowEqualToR)</pre>
<div class="block">As per <a href="../../infodynamics/utils/NearestNeighbourSearcher.html#countPointsWithinR(int,%20double,%20boolean)"><code>countPointsWithinR(int, double, boolean)</code></a>
however any nodes within dynCorrExclTime are excluded from
the search.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>sampleIndex</code> - sample index in the data to find a nearest neighbour
for</dd><dd><code>r</code> - radius within which to count points</dd><dd><code>dynCorrExclTime</code> - time window within which to exclude
points to be counted. Is >= 0. 0 means only exclude sampleIndex.</dd><dd><code>allowEqualToR</code> - if true, then count points at radius r also,
otherwise only those strictly within r</dd>
<dt><span class="strong">Returns:</span></dt><dd>the count of points within r.</dd></dl>
</li>
</ul>
<a name="findPointsWithinR(int, double, boolean)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>findPointsWithinR</h4>
<pre>public abstract java.util.Collection<<a href="../../infodynamics/utils/NeighbourNodeData.html" title="class in infodynamics.utils">NeighbourNodeData</a>> findPointsWithinR(int sampleIndex,
double r,
boolean allowEqualToR)</pre>
<div class="block">As per <a href="../../infodynamics/utils/NearestNeighbourSearcher.html#countPointsWithinR(int,%20double,%20boolean)"><code>countPointsWithinR(int, double, boolean)</code></a>
however returns a collection rather than a count.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>sampleIndex</code> - sample index in the data to find a nearest neighbour
for</dd><dd><code>r</code> - radius within which to count points</dd><dd><code>allowEqualToR</code> - if true, then count points at radius r also,
otherwise only those strictly within r</dd>
<dt><span class="strong">Returns:</span></dt><dd>the collection of points within r.</dd></dl>
</li>
</ul>
<a name="findPointsWithinR(int, double, boolean, boolean[], int[])">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>findPointsWithinR</h4>
<pre>public abstract void findPointsWithinR(int sampleIndex,
double r,
boolean allowEqualToR,
boolean[] isWithinR,
int[] indicesWithinR)</pre>
<div class="block">As per <a href="../../infodynamics/utils/NearestNeighbourSearcher.html#countPointsWithinR(int,%20double,%20boolean)"><code>countPointsWithinR(int, double, boolean)</code></a>
however records the nearest neighbours made within the isWithinR
and indicesWithinR arrays, which must be constructed before
calling this method, with length at or exceeding the total
number of data points. indicesWithinR is
</p></div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>sampleIndex</code> - sample index in the data to find a nearest neighbour
for</dd><dd><code>r</code> - radius within which to count points</dd><dd><code>allowEqualToR</code> - if true, then count points at radius r also,
otherwise only those strictly within r</dd><dd><code>isWithinR</code> - the array MUST be passed in with all points set to
false initially, and is returned indicating whether each sample was
found to be within r of that at sampleIndex.</dd><dd><code>indicesWithinR</code> - a list of array indices
for points marked as true in isWithinR, terminated with a -1 value.</dd></dl>
</li>
</ul>
<a name="findPointsWithinR(int, double, int, boolean, boolean[], int[])">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>findPointsWithinR</h4>
<pre>public abstract void findPointsWithinR(int sampleIndex,
double r,
int dynCorrExclTime,
boolean allowEqualToR,
boolean[] isWithinR,
int[] indicesWithinR)</pre>
<div class="block">As per <a href="../../infodynamics/utils/NearestNeighbourSearcher.html#findPointsWithinR(int,%20double,%20boolean,%20boolean[],%20int[])"><code>findPointsWithinR(int, double, boolean, boolean[], int[])</code></a>
however incorporates dynamic correlation exclusion.
</p></div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>sampleIndex</code> - sample index in the data to find a nearest neighbour
for</dd><dd><code>r</code> - radius within which to count points</dd><dd><code>dynCorrExclTime</code> - time window within which to exclude
points to be counted. Is >= 0. 0 means only exclude sampleIndex.</dd><dd><code>allowEqualToR</code> - if true, then count points at radius r also,
otherwise only those strictly within r</dd><dd><code>isWithinR</code> - the array MUST be passed in with all points set to
false initially, and is returned indicating whether each sample was
found to be within r of that at sampleIndex.</dd><dd><code>indicesWithinR</code> - a list of array indices
for points marked as true in isWithinR, terminated with a -1 value.</dd></dl>
</li>
</ul>
<a name="countPointsStrictlyWithinR(int, double, int)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>countPointsStrictlyWithinR</h4>
<pre>public int countPointsStrictlyWithinR(int sampleIndex,
double r,
int dynCorrExclTime)</pre>
<div class="block">As per <a href="../../infodynamics/utils/NearestNeighbourSearcher.html#countPointsWithinR(int,%20double,%20int,%20boolean)"><code>countPointsWithinR(int, double, int, boolean)</code></a>
with allowEqualToR == false</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>sampleIndex</code> - sample index in the data to find a nearest neighbour
for</dd><dd><code>r</code> - radius within which to count points</dd><dd><code>dynCorrExclTime</code> - time window within which to exclude
points to be counted. Is >= 0. 0 means only exclude sampleIndex.</dd>
<dt><span class="strong">Returns:</span></dt><dd>the count of points within r.</dd></dl>
</li>
</ul>
<a name="countPointsStrictlyWithinR(int, double)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>countPointsStrictlyWithinR</h4>
<pre>public int countPointsStrictlyWithinR(int sampleIndex,
double r)</pre>
<div class="block">As per <a href="../../infodynamics/utils/NearestNeighbourSearcher.html#countPointsWithinR(int,%20double,%20boolean)"><code>countPointsWithinR(int, double, boolean)</code></a>
with allowEqualToR == false</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>sampleIndex</code> - sample index in the data to find a nearest neighbour
for</dd><dd><code>r</code> - radius within which to count points</dd>
<dt><span class="strong">Returns:</span></dt><dd>the count of points within r.</dd></dl>
</li>
</ul>
<a name="findPointsStrictlyWithinR(int, double)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>findPointsStrictlyWithinR</h4>
<pre>public java.util.Collection<<a href="../../infodynamics/utils/NeighbourNodeData.html" title="class in infodynamics.utils">NeighbourNodeData</a>> findPointsStrictlyWithinR(int sampleIndex,
double r)</pre>
<div class="block">As per <a href="../../infodynamics/utils/NearestNeighbourSearcher.html#findPointsStrictlyWithinR(int,%20double)"><code>findPointsStrictlyWithinR(int, double)</code></a>
with allowEqualToR == false</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>sampleIndex</code> - sample index in the data to find a nearest neighbour
for</dd><dd><code>r</code> - radius within which to count points</dd>
<dt><span class="strong">Returns:</span></dt><dd>the collection of points within r.</dd></dl>
</li>
</ul>
<a name="findPointsStrictlyWithinR(int, double, boolean[], int[])">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>findPointsStrictlyWithinR</h4>
<pre>public void findPointsStrictlyWithinR(int sampleIndex,
double r,
boolean[] isWithinR,
int[] indicesWithinR)</pre>
<div class="block">As per <a href="../../infodynamics/utils/NearestNeighbourSearcher.html#findPointsWithinR(int,%20double,%20boolean,%20boolean[],%20int[])"><code>findPointsWithinR(int, double, boolean, boolean[], int[])</code></a>
with allowEqualToR == false</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>sampleIndex</code> - sample index in the data to find a nearest neighbour
for</dd><dd><code>r</code> - radius within which to count points</dd><dd><code>isWithinR</code> - the array should be passed in with all points set to
false initially, and is return indicating whether each sample was
found to be within r of that at sampleIndex.</dd><dd><code>indicesWithinR</code> - a list of array indices
for points marked as true in isWithinR, terminated with a -1 value.</dd></dl>
</li>
</ul>
<a name="countPointsWithinOrOnR(int, double)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>countPointsWithinOrOnR</h4>
<pre>public int countPointsWithinOrOnR(int sampleIndex,
double r)</pre>
<div class="block">As per <a href="../../infodynamics/utils/NearestNeighbourSearcher.html#countPointsWithinR(int,%20double,%20boolean)"><code>countPointsWithinR(int, double, boolean)</code></a>
with allowEqualToR == true</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>sampleIndex</code> - sample index in the data to find a nearest neighbour
for</dd><dd><code>r</code> - radius within which to count points</dd>
<dt><span class="strong">Returns:</span></dt><dd>the count of points within or on r.</dd></dl>
</li>
</ul>
<a name="countPointsWithinOrOnR(int, double, int)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>countPointsWithinOrOnR</h4>
<pre>public int countPointsWithinOrOnR(int sampleIndex,
double r,
int dynCorrExclTime)</pre>
<div class="block">As per <a href="../../infodynamics/utils/NearestNeighbourSearcher.html#countPointsWithinR(int,%20double,%20int,%20boolean)"><code>countPointsWithinR(int, double, int, boolean)</code></a>
with allowEqualToR == true</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>sampleIndex</code> - sample index in the data to find a nearest neighbour
for</dd><dd><code>r</code> - radius within which to count points</dd><dd><code>dynCorrExclTime</code> - time window within which to exclude
points to be counted. Is >= 0. 0 means only exclude sampleIndex.</dd>
<dt><span class="strong">Returns:</span></dt><dd>the count of points within or on r.</dd></dl>
</li>
</ul>
<a name="findPointsWithinOrOnR(int, double)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>findPointsWithinOrOnR</h4>
<pre>public java.util.Collection<<a href="../../infodynamics/utils/NeighbourNodeData.html" title="class in infodynamics.utils">NeighbourNodeData</a>> findPointsWithinOrOnR(int sampleIndex,
double r)</pre>
<div class="block">As per <a href="../../infodynamics/utils/NearestNeighbourSearcher.html#findPointsStrictlyWithinR(int,%20double)"><code>findPointsStrictlyWithinR(int, double)</code></a>
with allowEqualToR == true</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>sampleIndex</code> - sample index in the data to find a nearest neighbour
for</dd><dd><code>r</code> - radius within which to count points</dd>
<dt><span class="strong">Returns:</span></dt><dd>the collection of points within or on r.</dd></dl>
</li>
</ul>
<a name="findPointsWithinOrOnR(int, double, boolean[], int[])">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>findPointsWithinOrOnR</h4>
<pre>public void findPointsWithinOrOnR(int sampleIndex,
double r,
boolean[] isWithinR,
int[] indicesWithinR)</pre>
<div class="block">As per <a href="../../infodynamics/utils/NearestNeighbourSearcher.html#findPointsWithinR(int,%20double,%20boolean,%20boolean[],%20int[])"><code>findPointsWithinR(int, double, boolean, boolean[], int[])</code></a>
with allowEqualToR == true</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>sampleIndex</code> - sample index in the data to find a nearest neighbour
for</dd><dd><code>r</code> - radius within which to count points</dd><dd><code>isWithinR</code> - the array should be passed in with all points set to
false initially, and is return indicating whether each sample was
found to be within r of that at sampleIndex.</dd><dd><code>indicesWithinR</code> - a list of array indices
for points marked as true in isWithinR, terminated with a -1 value.</dd></dl>
</li>
</ul>
<a name="countPointsWithinR(int, double, boolean, boolean[])">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>countPointsWithinR</h4>
<pre>public abstract int countPointsWithinR(int sampleIndex,
double r,
boolean allowEqualToR,
boolean[] additionalCriteria)</pre>
<div class="block">As per <a href="../../infodynamics/utils/NearestNeighbourSearcher.html#countPointsWithinR(int,%20double,%20boolean)"><code>countPointsWithinR(int, double, boolean)</code></a>
however each point is subject to also meeting the additional
criteria of being true in additionalCriteria.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>sampleIndex</code> - sample index in the data to find a nearest neighbour
for</dd><dd><code>r</code> - radius within which to count points</dd><dd><code>allowEqualToR</code> - if true, then count points at radius r also,
otherwise only those strictly within r</dd><dd><code>additionalCriteria</code> - array of booleans. Only count a point if it
is within r and is true in additionalCrtieria.</dd>
<dt><span class="strong">Returns:</span></dt><dd>the count of points within r.</dd></dl>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../index-all.html">Index</a></li>
<li><a href="../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../infodynamics/utils/MeasurementDistribution.html" title="class in infodynamics.utils"><span class="strong">Prev Class</span></a></li>
<li><a href="../../infodynamics/utils/NeighbourNodeData.html" title="class in infodynamics.utils"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../index.html?infodynamics/utils/NearestNeighbourSearcher.html" target="_top">Frames</a></li>
<li><a href="NearestNeighbourSearcher.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li><a href="#field_summary">Field</a> | </li>
<li><a href="#constructor_summary">Constr</a> | </li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li><a href="#field_detail">Field</a> | </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>
| jmmccracken/ECA | infodynamics-dist-1.2.1/javadocs/infodynamics/utils/NearestNeighbourSearcher.html | HTML | mit | 49,242 |
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>test-javascool</title>
<script>
window.stringsLanguage = 'fr';
</script>
<script class="remove" type="text/javascript" src="../../../_common/modules/pemFioi/importModules-1.1.js" id="import-modules"></script>
<script class="remove" type="text/javascript">
var modulesPath = '../../../_common/modules/';
importModules([
'jquery-1.7.1', 'JSON-js', 'raphael-2.2.1', 'beaver-task-2.0', 'jschannel',
'raphaelFactory-1.0', 'delayFactory-1.0', 'simulationFactory-1.0',
'platform-pr', 'buttonsAndMessages', 'beav-1.0', 'installationAPI.01', 'miniPlatform',
'taskStyles-0.1', 'conceptViewer-1.0', 'conceptViewer_css-1.0',
'simple_draw', 'blockly_simple_draw'
]);
importLanguageModules('blockly');
</script>
<script class="remove" type="text/javascript">
var json = {
"id": "test-javascool",
"language": "fr",
"version": "fr.01",
"authors": "",
"translators": [],
"license": "",
"taskPathPrefix": "",
"modulesPathPrefix": "",
"browserSupport": [],
"acceptedAnswers": [""],
"fullFeedback": true,
"minWidth": "auto"
}
var strings = {
complete: 'Complete'
}
</script>
<script type="text/javascript" src="task.js"></script>
</head>
<body onresize="task.displayedSubTask.updateScale()">
<div id="task">
<h1>test-javascool</h1>
<div id="tabsContainer"></div>
<div id="taskContent">
<div id="gridContainer"></div>
<div id="blocklyLibContent"></div>
</div>
</body>
</html>
| France-ioi/bebras-tasks | examples/module_testing/test-javascool/index.html | HTML | mit | 1,985 |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta content="C语言基础" name="description">
<meta name="keywords" content="C语言基础,C语言,kinglyjn">
<meta name="author" content="KinglyJn">
<title>
KinglyJn|C语言基础(八)- 进制转化、计算机补码、位运算符
</title>
<!-- favicon -->
<link rel="shortcut icon" href="static/img/favicon.ico">
<!-- Third-party CSS -->
<link href="/bower_components/normalize-css/normalize.min.css" rel="stylesheet">
<link href="/bower_components/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="/bower_components/animate.css/animate.min.css" rel="stylesheet">
<link href="/bower_components/components-font-awesome/css/font-awesome.min.css" rel="stylesheet">
<link href="/static/font-mfizz/font-mfizz.css" rel="stylesheet">
<!-- <link href="/bower_components/toastr/toastr.min.css" rel="stylesheet"> -->
<link href="/bower_components/jquery.gritter/css/jquery.gritter.css" rel="stylesheet">
<link rel="stylesheet" href="/search/css/cb-search.css">
<!-- Custom styles for this template -->
<link href="/static/css/style.min.css" rel="stylesheet">
<link href="/static/css/pygments.css" rel="stylesheet">
<!-- Scripts -->
<script src="/bower_components/jquery/dist/jquery.min.js"></script>
<script src="/search/js/bootstrap3-typeahead.min.js"></script>
<!-- cb-search -->
<script src="/search/js/cb-search.js"></script>
<script>
$(function(){
$("pre").css('display','block');
});
</script>
<!-- Mainly scripts -->
<script src="/bower_components/bootstrap/dist/js/bootstrap.min.js"></script>
<script src="/bower_components/metisMenu/dist/metisMenu.min.js"></script>
<script src="/bower_components/jquery-slimscroll/jquery.slimscroll.min.js"></script>
<!-- Peity -->
<script src="/bower_components/peity/jquery.peity.min.js"></script>
<script src="/bower_components/PACE/pace.min.js"></script>
<script src="/bower_components/wow/dist/wow.min.js"></script>
<!-- Custom and plugin javascript -->
<script src="/static/js/inspinia.js"></script>
<!-- Rickshaw -->
<script src="/bower_components/rickshaw/vendor/d3.v3.js"></script>
<script src="/bower_components/rickshaw/rickshaw.min.js"></script>
<!-- jPages -->
<script src="/static/js/jPages.js"></script>
<script src="/static/js/js.js"></script>
<script type="text/javascript">
$(function(){
/* initiate the plugin */
$("div.pag-holder").jPages({
containerID : "pag-itemContainer",
perPage : 10, /* num of items per page */
startPage : 1,
startRange : 1,
midRange : 3,
endRange : 1
});
$("div.pag-jump button").click(function(){
var page = parseInt($("div.pag-jump input").val());
$("div.pag-holder").jPages(page);
});
$("div.pag-jump input").on("keypress", function(){
var e=e||window.event;
if (e.keyCode == 13) {
var page = parseInt($("div.pag-jump input").val());
$("div.pag-holder").jPages(page);
}
});
});
</script>
<!-- GrowingIO -->
<script>
var _vds = _vds || [];
window._vds = _vds;
(function(){
_vds.push(['setAccountId', 'a49d4901c7853da9']);
(function() {
var vds = document.createElement('script');
vds.type='text/javascript';
vds.async = true;
vds.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'dn-growing.qbox.me/vds.js';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(vds, s);
})();
})();
</script>
</head>
<body id="page-top" class="landing-page">
<!--修复手机端横轴方向左右滑动BUG-->
<style type="text/css">
.landing-page .row {
margin-left: 0px;
margin-right: 0px;
}
</style>
<div class="search-tool"
style="position: fixed; top: 0px ; bottom: 0px; left: 0px; right: 0px; opacity: 0.95; background-color: #111111; z-index: 9999; display: none;">
<input type="text" class="form-control search-content" id="search-content" style="position: fixed; top: 60px" placeholder="Search Blog">
<div style="position: fixed; top: 16px; right: 16px; z-index: 9999;">
<img src="/search/img/cb-close.png" id="close-btn"/>
</div>
</div>
<div style="position: fixed; right: 16px; bottom: 20px; z-index: 9999;">
<img src="/search/img/cb-search.png" id="search-btn" title="Double click Ctrl"/>
</div>
<div class="navbar-wrapper">
<nav class="navbar navbar-default navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header page-scroll">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="/">KinglyJn</a>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav navbar-right">
<li><a class="page-scroll" href="/blog/"></a></li>
<li>
<a class="page-scroll" href="/blog/">Blog</a></li>
<li>
<a class="page-scroll" href="/linux/">Linux</a></li>
<li>
<a class="page-scroll" href="/cloud/">Cloud</a></li>
<li>
<a class="page-scroll" href="/java/">Java</a></li>
<li>
<a class="page-scroll" href="/c/">C</a></li>
<li>
<a class="page-scroll" href="/py/">Py</a></li>
<li>
<a class="page-scroll" href="/php/">PHP</a></li>
<li>
<a class="page-scroll" href="/db/">DB</a></li>
<li>
<a class="page-scroll" href="/htmlx/">HTMLX</a></li>
<li>
<a class="page-scroll" href="/life/">Life</a></li>
<li>
<a class="page-scroll" href="/art/">Art</a></li>
<li>
<a class="page-scroll" href="/other/">Other</a></li>
</ul>
</div>
</div>
</nav>
</div>
<div id="inSlider" class="carousel carousel-fade" data-ride="carousel">
<div style="position:absolute;float:left;left:25%;z-index:15;width:50%;margin-bottom:18%;bottom:0;text-align:center;list-style:none;">
<span style="color:white;font-size:24px;">以平实之心写作</span><br>
<span style="color:white;font-size:13px;">writing with simple heart ♬. </span>
</div>
<!--
<ol class="carousel-indicators">
<li data-target="#inSlider" data-slide-to="0" class="active"></li>
<li data-target="#inSlider" data-slide-to="1"></li>
</ol>
-->
<div class="carousel-inner" role="listbox">
<div class="item active">
<div class="container">
<div class="carousel-caption">
</div>
<div class="carousel-image wow zoomIn">
<!-- <img src="static/img/landing/laptop.png" alt="laptop"/> -->
</div>
</div>
<!-- Set background for slide in css -->
<div class="header-back blog-one"></div>
</div>
<!--
<div class="item">
<div class="container">
<div class="carousel-caption blank">
</div>
</div>
Set background for slide in css
<div class="header-back two"></div>
</div>
-->
</div>
<!--
<a class="left carousel-control" href="#inSlider" role="button" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#inSlider" role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
-->
</div>
<div class="wrapper wrapper-content animated fadeInRight article">
<div class="row">
<div class="col-lg-10 col-lg-offset-1">
<div class="ibox">
<div class="ibox-content">
<div class="pull-right">
<button class="btn btn-white btn-xs" type="button">C</button>
</div>
<div class="text-center article-title" style="margin-bottom:50px;">
<h1>
C语言基础(八)- 进制转化、计算机补码、位运算符
</h1>
<a href="http://www.keyllo.com/studio/">
<span class="text-muted"><i class="fa fa-user"></i> KinglyJn</span>
</a>
<span class="text-muted"><i class="fa fa-clock-o"></i> 2013-02-26</span>
</div>
<h3 id="进制转化">进制转化</h3>
<ul>
<li>一个数字的大小本质上都是表示状态数的多少</li>
<li>数字的表示可以用不同的进制</li>
<li>十进制转r进制:整数部分–除r取余,直至商0,余数倒置即可,小数部分–乘r取整,直至积为0,整数正序排列即可</li>
<li>二进制转10进制:8421码</li>
</ul>
<p><br /></p>
<h3 id="补码的相关知识">补码的相关知识</h3>
<p>在介绍补码之前先来认识其他的一些二进制码:<br />
1、原码:<br />
也叫符号—绝对值码,最高位0表示正、1表示负,其余二进制是该数字的绝对值的二进制位<br />
如-5的原码是10101, 原码简单易懂,但是它加减复杂,存在加减乘除四种运算,增加了CPU的复杂度<br />
还有就是源码制下0的表示不唯一,所以源码在计算机中从来不使用。<br /></p>
<p>2、反码:<br />
对原码每一位取反,在计算机中基本无使用<br /></p>
<p>3、移码:<br />
表示数值平移n位,(n称为移码量),移码主要用于浮点数阶码的存储<br />
<br /></p>
<p>以上为认识补码的相关背景知识。<br />
那么什么是补码呢?为什么要引入补码?<br /></p>
<p><i style="font-size:12px;">在计算机系统中,数值一律用补码来表示和存储。原因在于,使用补码,可以将符号位和数值域统一处理;同时,加法和减法也可以统一处理。此外,补码与原码相互转换,其运算过程是相同的,不需要额外的硬件电路。</i><br /></p>
<p>补码的特性:</p>
<ul>
<li>一个整数的原码与其补码相加,和为模</li>
<li>对一个整数的补码再求补码,等于该整数自身</li>
<li>补码的正零与负零表示方法相同</li>
</ul>
<p>通过源码求补码:<br /></p>
<div class="highlighter-rouge"><pre class="highlight"><code>[+73]补 = 01001001
[-73]补 = 100000000 - 01001001 = 10110111
[+1]补 = 00000001
[-1]补 = 100000000 - 00000001 = 11111111
[+127] = 01111111
[-127] = 100000000 - 01111111 = 10000001
综上:
1. 整数的补码与其原码相同
2. 0的补码仍然为0
3. 负数的补码可以通过其正数的原码“取反加一”,并且最高符号位也参与运算得到
扩展:
根据补码的定义,可以证明:
[X]补 + [Y]补 = [X+Y]补
[X]补 - [Y]补 = [X-Y]补
这表明,两个补码加减的结果也是补码,而且在运算时,符号位可同数值部分作为一个整体参加运算,如果符号位有进位则舍弃进位。
计算机中的加减运算:
如:4-6=?
0000 0100
+ 0000 0110-->1111 1001-->1111 1010
-----------------------------------
1111 1110 (所得结果为补码,符号位为负)-->0000 0001-->0000 0010
故最终结果为 -2
[注] 一个数的补码为(1111 1110),求其数值?
分析:最高位为1,则该数肯定为负数,并且我们知道“补码的补码就是其对应的非负数值”,求得0000 0010,
故这个数的数值为 -2。
</code></pre>
</div>
<p><br /></p>
<p>程序演示:</p>
<div class="language-cpp highlighter-rouge"><pre class="highlight"><code><span class="cm">/**
* 计算机二进制运算程序演示
*/</span>
<span class="cp"># include <stdio.h>
</span><span class="kt">int</span> <span class="nf">main</span><span class="p">()</span> <span class="p">{</span>
<span class="kt">int</span> <span class="n">a</span> <span class="o">=</span> <span class="mi">0</span><span class="p">;</span>
<span class="kt">short</span> <span class="kt">int</span> <span class="n">i</span> <span class="o">=</span> <span class="o">-</span><span class="mi">3</span><span class="p">;</span>
<span class="kt">int</span> <span class="n">j</span> <span class="o">=</span> <span class="o">-</span><span class="mi">3</span><span class="p">;</span>
<span class="kt">long</span> <span class="kt">int</span> <span class="n">k</span> <span class="o">=</span> <span class="o">-</span><span class="mi">3</span><span class="p">;</span>
<span class="kt">char</span> <span class="n">m</span> <span class="o">=</span> <span class="sc">'A'</span><span class="p">;</span>
<span class="kt">int</span> <span class="n">n</span> <span class="o">=</span> <span class="mh">0XFFFFFFE1</span><span class="p">;</span> <span class="c1">//11111111111111111111111111100001 //负数最高符号位均补1
</span>
<span class="n">printf</span><span class="p">(</span><span class="s">"%#X</span><span class="se">\n</span><span class="s">"</span><span class="p">,</span><span class="n">a</span><span class="p">);</span> <span class="c1">//0
</span> <span class="n">printf</span><span class="p">(</span><span class="s">"%#X</span><span class="se">\n</span><span class="s">"</span><span class="p">,</span><span class="n">i</span><span class="p">);</span> <span class="c1">//0XFFFFFFFD
</span> <span class="n">printf</span><span class="p">(</span><span class="s">"%#X</span><span class="se">\n</span><span class="s">"</span><span class="p">,</span><span class="n">j</span><span class="p">);</span> <span class="c1">//0XFFFFFFFD
</span> <span class="n">printf</span><span class="p">(</span><span class="s">"%#X</span><span class="se">\n</span><span class="s">"</span><span class="p">,</span><span class="n">k</span><span class="p">);</span> <span class="c1">//0XFFFFFFFD
</span> <span class="n">printf</span><span class="p">(</span><span class="s">"%#X</span><span class="se">\n</span><span class="s">"</span><span class="p">,</span><span class="n">m</span><span class="p">);</span> <span class="c1">//0X41
</span> <span class="n">printf</span><span class="p">(</span><span class="s">"%d</span><span class="se">\n</span><span class="s">"</span><span class="p">,</span><span class="n">n</span><span class="p">);</span> <span class="c1">//-31
</span> <span class="k">return</span> <span class="mi">0</span><span class="p">;</span>
<span class="p">}</span>
</code></pre>
</div>
<p><br /></p>
<h3 id="常见的位运算符">常见的位运算符</h3>
<ul>
<li>按位与&</li>
<li>按位或|</li>
<li>按位取反~</li>
<li>按位异或^</li>
<li>按位左移和按位右移 << >></li>
</ul>
<div class="language-cpp highlighter-rouge"><pre class="highlight"><code><span class="cm">/*
5&7=5
5&-7=1
5|7=7
5|-7=-3
~5=-6
~7=6
5^7=2
5^-7=-4
5<<1=10
-7<<1=-14
5>>1=2
-7>>1=-4
*/</span>
<span class="cp"># include <stdio.h>
</span>
<span class="kt">int</span> <span class="nf">main</span><span class="p">()</span> <span class="p">{</span>
<span class="n">printf</span><span class="p">(</span><span class="s">"5&7=%d</span><span class="se">\n</span><span class="s">"</span><span class="p">,</span> <span class="mi">5</span><span class="o">&</span><span class="mi">7</span><span class="p">);</span> <span class="c1">//5的二进制补码是...0101,7的二进制补码是...0111,两者相与后补码变为...0101,输出十进制结果为5
</span> <span class="n">printf</span><span class="p">(</span><span class="s">"5&-7=%d</span><span class="se">\n</span><span class="s">"</span><span class="p">,</span> <span class="mi">5</span><span class="o">&-</span><span class="mi">7</span><span class="p">);</span> <span class="c1">//5的二进制补码为00000101,-7的二进制补码为11111001,5&-7=00000001,即输出结果为1
</span>
<span class="n">printf</span><span class="p">(</span><span class="s">"5|7=%d</span><span class="se">\n</span><span class="s">"</span><span class="p">,</span> <span class="mi">5</span><span class="o">|</span><span class="mi">7</span><span class="p">);</span> <span class="c1">//5的二进制补码为00000101,7的二进制补码为00000111,5|7=00000111,即输出结果为7
</span> <span class="n">printf</span><span class="p">(</span><span class="s">"5|-7=%d</span><span class="se">\n</span><span class="s">"</span><span class="p">,</span> <span class="mi">5</span><span class="o">|-</span><span class="mi">7</span><span class="p">);</span> <span class="c1">//5的二进制补码为00000101,-7的二进制补码为11111001,5|-7=,结果的补码为11111101,是个负数,结果为-3
</span>
<span class="n">printf</span><span class="p">(</span><span class="s">"~5=%d</span><span class="se">\n</span><span class="s">"</span><span class="p">,</span> <span class="o">~</span><span class="mi">5</span><span class="p">);</span> <span class="c1">//5的二进制补码为00000101,则~5=11111010,是个负数,结果为-6
</span> <span class="n">printf</span><span class="p">(</span><span class="s">"~7=%d</span><span class="se">\n</span><span class="s">"</span><span class="p">,</span> <span class="o">~-</span><span class="mi">7</span><span class="p">);</span> <span class="c1">//-7的二进制补码为11111001,则~-7=00000110,结果为6
</span>
<span class="n">printf</span><span class="p">(</span><span class="s">"5^7=%d</span><span class="se">\n</span><span class="s">"</span><span class="p">,</span> <span class="mi">5</span><span class="o">^</span><span class="mi">7</span><span class="p">);</span> <span class="c1">//5的二进制补码为00000101,7的二进制补码为00000111,5^7=00000010,结果为2
</span> <span class="n">printf</span><span class="p">(</span><span class="s">"5^-7=%d</span><span class="se">\n</span><span class="s">"</span><span class="p">,</span> <span class="mi">5</span><span class="o">^-</span><span class="mi">7</span><span class="p">);</span> <span class="c1">//5的二进制补码为00000101,-7的二进制补码为11111001,5^-7=111111100,结果为-4
</span>
<span class="n">printf</span><span class="p">(</span><span class="s">"5<<1=%d</span><span class="se">\n</span><span class="s">"</span><span class="p">,</span> <span class="mi">5</span><span class="o"><<</span><span class="mi">1</span><span class="p">);</span> <span class="c1">//5的二进制补码为00000101,5<<1=00001010,结果为10
</span> <span class="n">printf</span><span class="p">(</span><span class="s">"-7<<1=%d</span><span class="se">\n</span><span class="s">"</span><span class="p">,</span> <span class="o">-</span><span class="mi">7</span><span class="o"><<</span><span class="mi">1</span><span class="p">);</span> <span class="c1">//-7的二进制补码为11111001,-7<<1=11110010,结果为-14
</span>
<span class="n">printf</span><span class="p">(</span><span class="s">"5>>1=%d</span><span class="se">\n</span><span class="s">"</span><span class="p">,</span> <span class="mi">5</span><span class="o">>></span><span class="mi">1</span><span class="p">);</span> <span class="c1">//5的二进制补码为00000101,5>>1=00000010,结果为2
</span> <span class="n">printf</span><span class="p">(</span><span class="s">"-7>>1=%d</span><span class="se">\n</span><span class="s">"</span><span class="p">,</span> <span class="o">-</span><span class="mi">7</span><span class="o">>></span><span class="mi">1</span><span class="p">);</span> <span class="c1">//-7的二进制补码为11111001,-7>>1=11111100,结果为-4
</span>
<span class="k">return</span> <span class="mi">0</span><span class="p">;</span>
<span class="p">}</span>
</code></pre>
</div>
<hr>
<div class="row">
<div class="col-md-6">
<h5 style="display: inline;">Tags:</h5>
<button class="btn btn-white btn-xs" type="button">c</button>
</div>
<!--
<div class="col-md-6">
<div class="small text-right">
<div>
<i class="fa fa-comments-o"> </i>
<span class="ds-comments">0</span>条评论
</div>
<div>
<i class="fa fa-share-alt"> </i>
<span class="ds-shares">0</span>条转发
</div>
</div>
</div>
-->
</div>
<br>
<div class="row">
<div class="col-lg-12">
<!-- donate -->
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#myModal2">
Donate
</button>
<div class="modal inmodal" id="myModal2" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content animated flipInY">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
<h4 class="modal-title">Donate Me</h4>
<small class="font-bold">Thanks for your support!</small>
</div>
<div class="modal-body">
<div class="tabbable" id="tabs-960227">
<ul class="nav nav-tabs">
<li class="active">
<a href="#panel-405278" data-toggle="tab">Alipay</a>
</li>
<li>
<a href="#panel-874705" data-toggle="tab">Wechat</a>
</li>
</ul>
<div class="tab-content">
<div class="tab-pane active" id="panel-405278">
<div class="text-center">
<img src="/static/img/pay/alipay.png"" height="250" width="250">
</div>
</div>
<div class="tab-pane" id="panel-874705">
<div class="text-center">
<img src="/static/img/pay/wechat.png"" height="250" width="250">
</div>
</div>
</div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-white" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<br>
<!-- share -->
<!--分享-->
<div class="row" style="margin-top:30px;">
<h2>Share:</h2>
<div class="social-share" style="margin-left:-5px;"data-sites="wechat,qq,qzone,weibo"></div>
</div>
<link rel="stylesheet" href="/static/css/share.min.css">
<script src="/static/js/jquery.share.min.js"></script>
<script src="/static/js/embed.js"></script>
<script>
var url = 'http://localhost:4000/c/2013/02/26/C-C-base-08.html';
var source = 'http://localhost:4000/c/2013/02/26/C-C-base-08.html';
var title = 'C语言基础(八)- 进制转化、计算机补码、位运算符';
var excerpt = $("p:eq(0)").text();
var imageUrl = 'http://localhost:4000/static/img/landing/header_one.jpg';
var imgEle = $(".content_img:eq(0)");
if (imgEle) {
imageUrl = imgEle.attr("src");
}
var $config = {
url: url, // 网址,默认使用 window.location.href
source: source, // 来源(QQ空间会用到), 默认读取head标签:<meta name="site" content="http://overtrue" />
title: title, // 标题,默认读取 document.title 或者 <meta name="title" content="share.js" />
description: excerpt, // 描述, 默认读取head标签:<meta name="description" content="PHP弱类型的实现原理分析" />
image: imageUrl, // 图片, 默认取网页中第一个img标签
sites: ['qzone', 'qq', 'weibo','wechat','douban'], // 启用的站点
//disabled: ['google', 'facebook', 'twitter'], // 禁用的站点
wechatQrcodeTitle: "微信扫一扫:分享", // 微信二维码提示文字
wechatQrcodeHelper: '<p style="font-size:10px;">微信里点“发现”,扫一下</p><p style="font-size:10px;">二维码便可将本文分享至朋友圈。</p>',
};
$('.social-share').share($config);
</script>
<br>
<!-- comment -->
<!--
-->
<!-- 多说评论框 start -->
<div class="row" style="margin-top:25px;"></div>
<div class="ds-thread" data-thread-key="/c/2013/02/26/C-C-base-08.html" data-title="C语言基础(八)- 进制转化、计算机补码、位运算符" data-url="http://localhost:4000/c/2013/02/26/C-C-base-08.html"></div>
<!-- 多说评论框 end -->
<!-- 多说公共JS代码 start (一个网页只需插入一次) -->
<script type="text/javascript">
var duoshuoQuery = {short_name:"kinglyjn"};
(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 -->
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="/static/js/scroll.js"></script>
<!-- Baidu analytics -->
<!-- Google analytics -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-73784599-1', 'auto');
ga('send', 'pageview');
</script>
<!--
-->
<!--
-->
<script async src="/static/js/count_page.js"></script>
</body>
</html> | kinglyjn/kinglyjn.github.io | _site/c/2013/02/26/C-C-base-08.html | HTML | mit | 29,626 |
<html>
<head>
<meta http-equiv="Page-Enter" content="revealTrans(Duration=4,Transition=12)">
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="language" content="en" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
<meta name="viewport" content="width=device-width"/>
<meta name="author" content="T">
<META NAME="robots" content="index">
<META NAME="robots" content="follow">
<meta name="description" content="Our mission is to help facilitate the newly independent East-Timor in accessing the voices and the key events in its past and fostering an understanding of its unique cultural heritage; to help unite and secure the identity of the country and its people; and to contribute to the forging of a new democratic nation. To ensure the survival of unique resources which contain and communicate the experience and the story of Timor-Leste and to place these at the service of peace and understanding, in Timor-Leste, Regionally and Internationally.">
<meta name="keywords" content="CAMSTL, East-Timor, Timor-Leste, Timor-Lorosae">
<title>Raster and Vector Attributes</title>
</head>
<body bgcolor="#FFFFFF">
<table width="90" border="0" cellspacing="2" cellpadding="2" align="Center">
<tr>
<td bgcolor="#CC3333">
<font face="Courier New, Courier, mono" size="-1">
Id
</font>
</td>
<td bgcolor="#CCCCCC">
<font face="Courier New, Courier, mono" size="-1">
294
</font>
</td>
</tr>
<tr>
<td bgcolor="#CC3333">
<font face="Courier New, Courier, mono" size="-1">
Facility
</font>
</td>
<td bgcolor="#CCCCCC">
<font face="Courier New, Courier, mono" size="-1">
Roti MC
</font>
</td>
</tr>
<tr>
<td bgcolor="#CC3333">
<font face="Courier New, Courier, mono" size="-1">
District
</font>
</td>
<td bgcolor="#CCCCCC">
<font face="Courier New, Courier, mono" size="-1">
Oecussi
</font>
</td>
</tr>
<tr>
<td bgcolor="#CC3333">
<font face="Courier New, Courier, mono" size="-1">
Code
</font>
</td>
<td bgcolor="#CCCCCC">
<font face="Courier New, Courier, mono" size="-1">
MO
</font>
</td>
</tr>
<tr>
<td bgcolor="#CC3333">
<font face="Courier New, Courier, mono" size="-1">
Owner_
</font>
</td>
<td bgcolor="#CCCCCC">
<font face="Courier New, Courier, mono" size="-1">
Government
</font>
</td>
</tr>
<tr>
<td bgcolor="#CC3333">
<font face="Courier New, Courier, mono" size="-1">
Management
</font>
</td>
<td bgcolor="#CCCCCC">
<font face="Courier New, Courier, mono" size="-1">
Baqui CHC
</font>
</td>
</tr>
<tr>
<td bgcolor="#CC3333">
<font face="Courier New, Courier, mono" size="-1">
Visitmnth
</font>
</td>
<td bgcolor="#CCCCCC">
<font face="Courier New, Courier, mono" size="-1">
0
</font>
</td>
</tr>
<tr>
<td bgcolor="#CC3333">
<font face="Courier New, Courier, mono" size="-1">
Physician
</font>
</td>
<td bgcolor="#CCCCCC">
<font face="Courier New, Courier, mono" size="-1">
0.00
</font>
</td>
</tr>
<tr>
<td bgcolor="#CC3333">
<font face="Courier New, Courier, mono" size="-1">
Nurse
</font>
</td>
<td bgcolor="#CCCCCC">
<font face="Courier New, Courier, mono" size="-1">
0.00
</font>
</td>
</tr>
<tr>
<td bgcolor="#CC3333">
<font face="Courier New, Courier, mono" size="-1">
Midwife
</font>
</td>
<td bgcolor="#CCCCCC">
<font face="Courier New, Courier, mono" size="-1">
0.00
</font>
</td>
</tr>
<tr>
<td bgcolor="#CC3333">
<font face="Courier New, Courier, mono" size="-1">
Dental
</font>
</td>
<td bgcolor="#CCCCCC">
<font face="Courier New, Courier, mono" size="-1">
0.00
</font>
</td>
</tr>
<tr>
<td bgcolor="#CC3333">
<font face="Courier New, Courier, mono" size="-1">
Lab
</font>
</td>
<td bgcolor="#CCCCCC">
<font face="Courier New, Courier, mono" size="-1">
0.00
</font>
</td>
</tr>
<tr>
<td bgcolor="#CC3333">
<font face="Courier New, Courier, mono" size="-1">
Ass_nurse
</font>
</td>
<td bgcolor="#CCCCCC">
<font face="Courier New, Courier, mono" size="-1">
0.00
</font>
</td>
</tr>
<tr>
<td bgcolor="#CC3333">
<font face="Courier New, Courier, mono" size="-1">
Other
</font>
</td>
<td bgcolor="#CCCCCC">
<font face="Courier New, Courier, mono" size="-1">
0.00
</font>
</td>
</tr>
<tr>
<td bgcolor="#CC3333">
<font face="Courier New, Courier, mono" size="-1">
Assumption
</font>
</td>
<td bgcolor="#CCCCCC">
<font face="Courier New, Courier, mono" size="-1">
</font>
</td>
</tr>
<tr>
<td bgcolor="#CC3333">
<font face="Courier New, Courier, mono" size="-1">
Check_date
</font>
</td>
<td bgcolor="#CCCCCC">
<font face="Courier New, Courier, mono" size="-1">
20030416
</font>
</td>
</tr>
<tr>
<td bgcolor="#CC3333">
<font face="Courier New, Courier, mono" size="-1">
Verified
</font>
</td>
<td bgcolor="#CCCCCC">
<font face="Courier New, Courier, mono" size="-1">
CHC verified
</font>
</td>
</tr>
</table>
</body>
</html>
| timorleste/health-facility | att/health_facilities_dbf174.html | HTML | mit | 5,880 |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>peruvian-dinner - incertae sedis</title>
<meta name="description" content="" />
<meta name="HandheldFriendly" content="True" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="https://evolgenomology.github.io/favicon.ico">
<script type="text/javascript" src="//evolgenomology.github.io/themes/ichi/assets/js/vendor/fastclick.js?v=1475050879904"></script>
<script type="text/javascript" src="//evolgenomology.github.io/themes/ichi/assets/js/vendor/modernizr.js?v=1475050879904"></script>
<link rel="stylesheet" type="text/css" href="//evolgenomology.github.io/themes/ichi/assets/css/normalize.css?v=1475050879904" />
<link rel="stylesheet" type="text/css" href="//evolgenomology.github.io/themes/ichi/assets/css/foundation.min.css?v=1475050879904" />
<!--[if lte IE 8]>
<link rel="stylesheet" type="text/css" href="//evolgenomology.github.io/themes/ichi/assets/css/outdatedBrowser.min.css?v=1475050879904">
<![endif]-->
<link rel="stylesheet" type="text/css" href="//evolgenomology.github.io/themes/ichi/assets/fonts/foundation-icons/foundation-icons.css?v=1475050879904" />
<link rel="stylesheet" type="text/css" href="//evolgenomology.github.io/themes/ichi/assets/css/styles.css?v=1475050879904" />
<link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Open+Sans:300,700,400|Source+Sans+Pro:300,400,600,700,900,300italic,400italic,600italic,700italic,900italic" />
<link rel="canonical" href="https://evolgenomology.github.io/https://evolgenomology.github.io/tag/peruvian-dinner/" />
<meta name="referrer" content="origin" />
<meta property="og:site_name" content="incertae sedis" />
<meta property="og:type" content="website" />
<meta property="og:title" content="peruvian-dinner - incertae sedis" />
<meta property="og:url" content="https://evolgenomology.github.io/https://evolgenomology.github.io/tag/peruvian-dinner/" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="peruvian-dinner - incertae sedis" />
<meta name="twitter:url" content="https://evolgenomology.github.io/https://evolgenomology.github.io/tag/peruvian-dinner/" />
<script type="application/ld+json">
null
</script>
<meta name="generator" content="HubPress" />
<link rel="alternate" type="application/rss+xml" title="incertae sedis" href="https://evolgenomology.github.io/rss/" />
</head>
<body class="tag-template tag-peruvian-dinner">
<div id="outdated">
<h6>Your browser is out-of-date!</h6>
<p>Update your browser to view this website correctly. <a id="btnUpdate" href="http://outdatedbrowser.com/">Update my browser now</a></p>
</div>
<nav class="top-bar hide-for-large-up" data-topbar style="background: none">
<ul class="title-area">
<li class="name">
</li>
<li class="home"><a class="fi-home" href="https://evolgenomology.github.io"></a></li>
<li class="toggle-topbar"><a href="#" id="trigger-overlay" class="fi-list"></a></li>
</ul>
<div class="overlay overlay-scale">
<button type="button" class="overlay-close">Close</button>
<nav>
<ul>
<li><a href="https://evolgenomology.github.io">Home</a></li>
</ul>
</nav>
</div>
</nav>
<div class="row">
<div class="small-16 medium-16 large-4 columns right head-area bgimage" style="background-image: url(image::DSC01761-crop.jpg[])">
<header class="site-head">
<div class="vertical">
<div class="site-head-content inner">
<ul class="side-nav blog-menu show-for-large-up">
<li><a class="fi-home" href="https://evolgenomology.github.io"></a></li>
<li><a class="fi-torso" href="https://evolgenomology.github.io/about"></a></li>
<li><a class="fi-mail" href="https://evolgenomology.github.io/contact"></a></li>
</ul>
<h1 class="blog-title">incertae sedis</h1>
<hr>
<p class="blog-description">musing on science and evolution ...
oh, and other important stuff, like Rugby for example.</p>
<div class="blog-network">
<!-- <a href="#" class="fi-social-pinterest"></a>
<a href="#" class="fi-social-linkedin"></a>
<a href="#" class="fi-social-behance"></a>
<a href="#" class="fi-social-deviant-art"></a>
<a href="#" class="fi-social-dribbble"></a>
<a href="#" class="fi-social-flickr"></a>
<a href="#" class="fi-social-github"></a>
<a href="#" class="fi-social-skype"></a>
<a href="#" class="fi-social-snapchat"></a>
<a href="#" class="fi-social-steam"></a>
<a href="#" class="fi-social-xbox"></a>
<a href="#" class="fi-social-reddit"></a> -->
<a href="https://plus.google.com/+PhilippSchiffer" class="fi-social-google-plus"></a>
<a href="https://twitter.com/evolgenomology" class="fi-social-twitter"></a>
<a href="https://joindiaspora.com/u/philschiffer" class="fi-social-facebook"></a>
</div>
</div>
</div>
</header>
</div>
<div class="small-16 medium-16 large-12 columns main-column left">
<main class="content" role="main">
<header class="tag-archive-header">
<h1>peruvian-dinner</h1>
</header>
<article class="post tag-Quadruplexes tag-genome-annotation tag-genome-structure tag-sun tag-peruvian-dinner">
<header class="post-header">
<span class="post-meta"><time datetime="2016-07-06">06 Jul 2016</time> </span>
<h2 class="post-title"><a href="https://evolgenomology.github.io/2016/07/06/Quadruplexes.html">Quadruplexes</a></h2>
</header>
<section class="post-excerpt">
<p>My boss recently pointed me to G-quadruplexes in genomic sequence. These strange four stranded structures appear to occur quite frequently in the human genome. Am now doing a bit of research on this. At the same time my Augustus genome annotation is still ongoing and I am waiting for some other error in the another program to be fixed before I can go on with a project in yeast. Meanwhile, London…</p>
</section>
<a class="button read-more right small" href="https://evolgenomology.github.io/2016/07/06/Quadruplexes.html">Read more</a>
<aside class="tags fi-pricetag-multiple">Posted on <a href="https://evolgenomology.github.io/tag/Quadruplexes/">Quadruplexes</a>, <a href="https://evolgenomology.github.io/tag/genome-annotation/"> genome annotation</a>, <a href="https://evolgenomology.github.io/tag/genome-structure/"> genome structure</a>, <a href="https://evolgenomology.github.io/tag/sun/"> sun</a>, <a href="https://evolgenomology.github.io/tag/peruvian-dinner/"> peruvian dinner</a></aside>
<div class="clearfix"></div>
</article>
<nav class="pagination" role="navigation">
<span class="page-number">Page 1 of 1</span>
</nav>
</main>
</div>
</div>
<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>
<!--[if lte IE 8]>
<script type="text/javascript" src="//evolgenomology.github.io/themes/ichi/assets/js/outdatedBrowser.min.js?v=1475050879904"></script>
<![endif]-->
<script type="text/javascript" src="//evolgenomology.github.io/themes/ichi/assets/js/min/built.js?v=1475050879904"></script>
<script>
$(document).foundation();
</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-80535950-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>
| evolgenomology/evolgenomology.github.io | tag/peruvian-dinner/index.html | HTML | mit | 8,750 |
<div class="col-md-8 container">
<br />
Aplikacja BoardGamesNook została utworzona na potrzeby konkursu <b>Daj Się Poznać 2017</b>.
<br />
Jest ona przeznaczona dla wielbicieli gier planszowych.
<br />
Użytkownicy mogą tworzyć swoje zbiory gier planszowych, zapisywać wyniki ostatnich gier oraz organizować rozgrywki z innymi użytkownikami.
<br />
Jeśli chcesz dołączyć się do tworzenia tej zacnej aplikacji lub zgłosić uwagi, skontaktuj się z autorką mailowo: <a href="mailto:programmergirlblog@gmail.com">programmergirlblog@gmail.com</a>.
</div> | WTobor/BoardGamesNook | BoardGamesNook/src/about/about.component.html | HTML | mit | 600 |
<main>
<div class="container">
<div class="row">
<div class="col-sm-12">
<h3>Bravo !</h3>
<p>Retrouvez toute vos reservations a venir sur votre profil</p>
</div>
</div>
</div>
</main>
| XavierGuichet/bemoove-front | src/app/order/checkout-process/5-success/success.component.html | HTML | mit | 224 |
---
layout: default
title: About Me
---
<div class="post">
<h1 class="page-title">About Me</h1>
<p><img src="/public/images/pic.jpg"></p>
<p>Hi there I'm Raviteja.K , A Web Developer.</p>
<p>I am currently working at <a href="http://www.srijancapital.com">Srijan Capital</a>,Bangalore(Srijan Capital is a Business incubator currently incubating <a href="http://www.couponrani.com">Couponrani</a>).</p>
<p>I completed my Bachelors Degree in Computer Science , and i ♥ to code. I am still at nascent stage of my life , learning about things in my path .</p>
<p>I can code in C , Java , PHP , HTML , CSS and JavaScript. and i am learning about Amazon Web Services and few other things related to Networks and programming.</p>
<p>The only quote that i believe in the most</p>
<blockquote><p>Action speaks more than words</p></blockquote>
<p style="float:right">Regards </p>
<p style="float:right;clear:right;"><img src="/public/images/sign.png"></p>
<hr>
<h3>My Web Profiles</h3>
<p><a href="https://plus.google.com/105889703265810354266">Google +</a> | <a href="https://twitter.com/itsmeravitejak" title="Twitter">Twitter</a> | <a href="https://github.com/itsmeravitejak" title="Github">Github</a> | <a href="http://www.linkedin.com/in/kraviteja" title="LinkedIn">LinkedIn</a> | <a href="http://about.me/ravitejak">About.me</a> | <a href="http://stackoverflow.com/users/731447/pieboy" title="StackOverFlow">StackOverFlow</a> | <a href="http://www.quora.com/Ravi-Teja-177">Quora</a> | <a href="http://www.codechef.com/users/pieboy007">CodeChef</a></p>
<p>For comments or questions,</p><p> feel free to <a href="http://twitter.com/itsmeravitejak">ask me on Twitter</a> or shoot me an email to the address : <code>ravitejak at live dot in</code></p>
</div>
| pieboy/pieboy.github.com | about.html | HTML | mit | 1,793 |
<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"> 此處所列為「<a href="/cgi-bin/cydic/gsweb.cgi?o=dcydic&schfmt=text&gourl=%3De0%26sec%3Dsec1%26op%3Dsid%3D%22CW0000000885%22.%26v%3D-1" class="clink" target=_blank>故態復萌</a>」之典源,提供參考。</font> 唐.劉禹錫〈砥石賦〉(據<font class="dianuan_mark">《劉禹錫集.卷一.賦》</font>引)<br><font size=4 color="#808080">有客自東,遺余越砥。圭形石質,蒼色膩理。剷其鱗皴,滑以滫瀡。如衣澣垢,如鼎出否。霧盡披天,苹開見水。拭寒焰以破眥,擊清音而振耳。</font>故態復還,寶心<font size=-2 color="#999900"><font class="dianyuanfont"><b><i>1></i></b></font></font>再起。既賦形<font size=-2 color="#999900"><font class="dianyuanfont"><b><i>2></i></b></font></font>而終用,一蒙垢焉何恥?<font size=4 color="#808080">感利鈍之有時兮,寄雄心於瞪視。</font></font> <br><font class="dianuan_mark2">〔注解〕</font><br></font>
<div class="Rulediv"><font class="english_word">(1)</font> 寶心:雄心。</font></div>
<div class="Rulediv"><font class="english_word">(2)</font> 賦形:天賦的形體。</font></div>
</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/3000-3999/3559-31.html | HTML | mit | 1,789 |
{% extends path+"/scenario_03i/_layout-case-simple_claimant-portal.html" %}
{% block citizen_detail %}
Mia Russell
{% endblock %}
{% block actioncolumn %}
<h2 class="main-status"><span>Current case status</span>Ready for review</h2>
{% endblock %}
{% block citizen_content %}
<div class="container">
<div class="grid-row">
<div class="column-full">
<p class="no-kdBar"><a href="javascript: history.go(-1)" class="link-back">Back</a></p>
<h1 class="heading-large">Do you have enough evidence to make a recommendation?</h1>
<div class="portal-display">
<div class="grid-row">
<div class="column-third">
<div class="portal-card">
<div class="portal-head">
<h3>No, request evidence</h3>
</div>
<div class="portal-inner">
<p>We need more medical evidence to support Mia's case</p>
<p class="view-all"><a href="#" class="secondary-invert">Request evidence</a></p>
</div>
</div>
<!-- / portal card -->
</div>
<div class="column-third">
<!---------------------------------- Card ---------------------------------->
<div class="portal-card">
<div class="portal-head">
<h3>No, call for an assessment</h3>
</div>
<!-- / title -->
<div class="portal-inner">
<p>Ask Mia to come in for a face-to-face assessment</p>
<p class="view-all"> <a href="#" class="secondary-invert">Call for assessment</a></p>
</div>
<!-- / inner card -->
<!-- / portal card -->
</div>
</div>
<div class="column-third">
<div class="portal-card">
<div class="portal-head">
<h3>Yes, make a recommendation</h3>
</div>
<!-- / title -->
<div class="portal-inner">
<p>There is enough evidence tomake a recommendation</p>
<p class="view-all"> <a href="descriptorSelection" class="secondary-invert">File report</a></p>
</div>
<!-- / inner card -->
<!-- / portal card -->
</div>
</div>
</div>
</div><!-- column -->
</div><!-- row -->
</div><!-- container -->
{% endblock %}
{# {% block page_script %}
<script type="text/javascript">
$(document).ready(function(){
$('#status_status').combobox();
$('#app_adviser').combobox();
$('#app_team').combobox();
});
</script>
{% endblock %} #}
| dwpdigitaltech/healthanddisability | app/views/fha/assessment-scenarios/scenario_03m/rec-portal.html | HTML | mit | 2,588 |
<!DOCTYPE html>
<html>
<head>
<meta charset='UTF-8'>
<title>CoffeeScript API Documentation</title>
<script src='../javascript/application.js'></script>
<script src='../javascript/search.js'></script>
<link rel='stylesheet' href='../stylesheets/application.css' type='text/css'>
</head>
<body>
<div id='base' data-path='../'></div>
<div id='header'>
<div id='menu'>
<a href='../alphabetical_index.html' title='Index'>
Index
</a>
»
<span class='title'>GridLayout</span>
</div>
</div>
<div id='content'>
<h1>
Class:
GridLayout
</h1>
<table class='box'>
<tr>
<td>Defined in:</td>
<td>src/layout.coffee</td>
</tr>
<tr>
<td>Inherits:</td>
<td>
exports.Layout
</td>
</tr>
</table>
<h2>Instance Method Summary</h2>
<ul class='summary'>
<li>
<span class='signature'>
<a href='#computeCells-dynamic'>
#
(void)
<b>computeCells</b><span>()</span>
</a>
</span>
<span class='desc'>
</span>
</li>
<li>
<span class='signature'>
<a href='#computePosition-dynamic'>
#
(void)
<b>computePosition</b><span>(dim, constraints)</span>
</a>
</span>
<span class='desc'>
</span>
</li>
</ul>
<h2>Constructor Details</h2>
<div class='methods'>
<div class='method_details'>
<p class='signature' id='constructor-dynamic'>
#
(void)
<b>constructor</b><span>(rows, cols, bounds)</span>
<br>
</p>
</div>
</div>
<h2>Instance Method Details</h2>
<div class='methods'>
<div class='method_details'>
<p class='signature' id='computeCells-dynamic'>
#
(void)
<b>computeCells</b><span>()</span>
<br>
</p>
</div>
<div class='method_details'>
<p class='signature' id='computePosition-dynamic'>
#
(void)
<b>computePosition</b><span>(dim, constraints)</span>
<br>
</p>
</div>
</div>
</div>
<div id='footer'>
March 08, 15 09:43:20 by
<a href='https://github.com/coffeedoc/codo' title='CoffeeScript API documentation generator'>
Codo
</a>
2.0.9
✲
Press H to see the keyboard shortcuts
✲
<a href='http://twitter.com/netzpirat' target='_parent'>@netzpirat</a>
✲
<a href='http://twitter.com/_inossidabile' target='_parent'>@_inossidabile</a>
</div>
<iframe id='search_frame'></iframe>
<div id='fuzzySearch'>
<input type='text'>
<ol></ol>
</div>
<div id='help'>
<p>
Quickly fuzzy find classes, mixins, methods, file:
</p>
<ul>
<li>
<span>T</span>
Open fuzzy finder dialog
</li>
</ul>
<p>
Control the navigation frame:
</p>
<ul>
<li>
<span>L</span>
Toggle list view
</li>
<li>
<span>C</span>
Show class list
</li>
<li>
<span>I</span>
Show mixin list
</li>
<li>
<span>F</span>
Show file list
</li>
<li>
<span>M</span>
Show method list
</li>
<li>
<span>E</span>
Show extras list
</li>
</ul>
<p>
You can focus and blur the search input:
</p>
<ul>
<li>
<span>S</span>
Focus search input
</li>
<li>
<span>Esc</span>
Blur search input
</li>
</ul>
</div>
</body>
</html> | bbuchsbaum/psycloud | doc/class/GridLayout.html | HTML | mit | 3,379 |
<!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 JMS\TranslationBundle\Tests\Translation\Loader\Symfony\PhpLoaderTest | 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><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><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 class="active"><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 class="active"><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 class="active"><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 class="active"><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 class="active"><a href="namespace-JMS.TranslationBundle.Tests.Translation.Loader.html">Loader<span></span></a>
<ul>
<li class="active"><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><a href="class-JMS.TranslationBundle.Tests.Translation.Loader.Symfony.BaseLoaderTest.html">BaseLoaderTest</a></li>
<li class="active"><a href="class-JMS.TranslationBundle.Tests.Translation.Loader.Symfony.PhpLoaderTest.html">PhpLoaderTest</a></li>
<li><a href="class-JMS.TranslationBundle.Tests.Translation.Loader.Symfony.XliffLoaderTest.html">XliffLoaderTest</a></li>
<li><a href="class-JMS.TranslationBundle.Tests.Translation.Loader.Symfony.YamlLoaderTest.html">YamlLoaderTest</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-JMS.TranslationBundle.Tests.Translation.Loader.Symfony.html" title="Summary of JMS\TranslationBundle\Tests\Translation\Loader\Symfony"><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 PhpLoaderTest</h1>
<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-JMS.TranslationBundle.Tests.Translation.Loader.Symfony.BaseLoaderTest.html"><span>JMS\TranslationBundle\Tests\Translation\Loader\Symfony\BaseLoaderTest</span></a>
</dd>
<dd style="padding-left:60px">
<img src="resources/inherit.png" alt="Extended by" />
<b><span>JMS\TranslationBundle\Tests\Translation\Loader\Symfony\PhpLoaderTest</span></b>
</dd>
</dl>
<div class="info">
<b>Namespace:</b> <a href="namespace-JMS.html">JMS</a>\<a href="namespace-JMS.TranslationBundle.html">TranslationBundle</a>\<a href="namespace-JMS.TranslationBundle.Tests.html">Tests</a>\<a href="namespace-JMS.TranslationBundle.Tests.Translation.html">Translation</a>\<a href="namespace-JMS.TranslationBundle.Tests.Translation.Loader.html">Loader</a>\<a href="namespace-JMS.TranslationBundle.Tests.Translation.Loader.Symfony.html">Symfony</a><br />
<b>Located at</b> <a href="source-class-JMS.TranslationBundle.Tests.Translation.Loader.Symfony.PhpLoaderTest.html#24-39" title="Go to source code">vendor/jms/translation-bundle/JMS/TranslationBundle/Tests/Translation/Loader/Symfony/PhpLoaderTest.php</a><br />
</div>
<table class="summary" id="methods">
<caption>Methods summary</caption>
<tr data-order="getLoader" id="_getLoader">
<td class="attributes"><code>
protected
</code>
</td>
<td class="name"><div>
<a class="anchor" href="#_getLoader">#</a>
<code><a href="source-class-JMS.TranslationBundle.Tests.Translation.Loader.Symfony.PhpLoaderTest.html#26-29" title="Go to source code">getLoader</a>( )</code>
<div class="description short">
</div>
<div class="description detailed hidden">
</div>
</div></td>
</tr>
<tr data-order="getInputFile" id="_getInputFile">
<td class="attributes"><code>
protected
</code>
</td>
<td class="name"><div>
<a class="anchor" href="#_getInputFile">#</a>
<code><a href="source-class-JMS.TranslationBundle.Tests.Translation.Loader.Symfony.PhpLoaderTest.html#31-38" title="Go to source code">getInputFile</a>( <span>mixed <var>$key</var></span> )</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-JMS.TranslationBundle.Tests.Translation.Loader.Symfony.BaseLoaderTest.html#methods">JMS\TranslationBundle\Tests\Translation\Loader\Symfony\BaseLoaderTest</a></caption>
<tr>
<td><code>
<a href="class-JMS.TranslationBundle.Tests.Translation.Loader.Symfony.BaseLoaderTest.html#_testLoadSimple">testLoadSimple()</a>,
<a href="class-JMS.TranslationBundle.Tests.Translation.Loader.Symfony.BaseLoaderTest.html#_testLoadStructure">testLoadStructure()</a>,
<a href="class-JMS.TranslationBundle.Tests.Translation.Loader.Symfony.BaseLoaderTest.html#_testLoadStructureWithMetadata">testLoadStructureWithMetadata()</a>,
<a href="class-JMS.TranslationBundle.Tests.Translation.Loader.Symfony.BaseLoaderTest.html#_testLoadWithMetadata">testLoadWithMetadata()</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-JMS.TranslationBundle.Tests.Translation.Loader.Symfony.PhpLoaderTest.html | HTML | mit | 157,394 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="de">
<head>
<title>Uses of Class org.eclipse.emf.cdo.transaction.CDOAutoAttacher (CDO Model Repository Documentation)</title>
<meta name="date" content="">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class org.eclipse.emf.cdo.transaction.CDOAutoAttacher (CDO Model Repository Documentation)";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../org/eclipse/emf/cdo/transaction/CDOAutoAttacher.html" title="class in org.eclipse.emf.cdo.transaction">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?org/eclipse/emf/cdo/transaction/class-use/CDOAutoAttacher.html" target="_top">Frames</a></li>
<li><a href="CDOAutoAttacher.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h2 title="Uses of Class org.eclipse.emf.cdo.transaction.CDOAutoAttacher" class="title">Uses of Class<br>org.eclipse.emf.cdo.transaction.CDOAutoAttacher</h2>
</div>
<div class="classUseContainer">No usage of org.eclipse.emf.cdo.transaction.CDOAutoAttacher</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../org/eclipse/emf/cdo/transaction/CDOAutoAttacher.html" title="class in org.eclipse.emf.cdo.transaction">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?org/eclipse/emf/cdo/transaction/class-use/CDOAutoAttacher.html" target="_top">Frames</a></li>
<li><a href="CDOAutoAttacher.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small><i>Copyright (c) 2011-2015 Eike Stepper (Berlin, Germany) and others.</i></small></p>
</body>
</html>
| kribe48/wasp-mbse | WASP-turtlebot-DSL/.metadata/.plugins/org.eclipse.pde.core/Eclipse Application/org.eclipse.osgi/142/0/.cp/javadoc/org/eclipse/emf/cdo/transaction/class-use/CDOAutoAttacher.html | HTML | mit | 4,533 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Login Page - Photon Admin Panel Theme</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0, minimum-scale=1.0, maximum-scale=1.0">
<link rel="shortcut icon" href="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/js/plugins/css/css_compiled/js/plugins/favicon.ico" />
<link rel="apple-touch-icon" href="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/js/plugins/css/css_compiled/js/plugins/iosicon.png" />
<!-- DEVELOPMENT LESS -->
<!-- <link rel="stylesheet/less" href="css/photon.less" media="all" />
<link rel="stylesheet/less" href="css/photon-responsive.less" media="all" />
--> <!-- PRODUCTION CSS -->
<link rel="stylesheet" href="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/js/plugins/css/css_compiled/js/plugins/css/css_compiled/photon-min.css?v1.1" media="all" />
<link rel="stylesheet" href="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/js/plugins/css/css_compiled/js/plugins/css/css_compiled/photon-min-part2.css?v1.1" media="all" />
<link rel="stylesheet" href="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/js/plugins/css/css_compiled/js/plugins/css/css_compiled/photon-responsive-min.css?v1.1" media="all" />
<!--[if IE]>
<link rel="stylesheet" type="text/css" href="css/css_compiled/ie-only-min.css?v1.1" />
<![endif]-->
<!--[if lt IE 9]>
<link rel="stylesheet" type="text/css" href="css/css_compiled/ie8-only-min.css?v1.1" />
<script type="text/javascript" src="js/plugins/excanvas.js"></script>
<script type="text/javascript" src="js/plugins/html5shiv.js"></script>
<script type="text/javascript" src="js/plugins/respond.min.js"></script>
<script type="text/javascript" src="js/plugins/fixFontIcons.js"></script>
<![endif]-->
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.0/jquery-ui.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/js/plugins/css/css_compiled/js/plugins/js/bootstrap/bootstrap.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/js/plugins/css/css_compiled/js/plugins/js/plugins/modernizr.custom.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/js/plugins/css/css_compiled/js/plugins/js/plugins/jquery.pnotify.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/js/plugins/css/css_compiled/js/plugins/js/plugins/less-1.3.1.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/js/plugins/css/css_compiled/js/plugins/js/plugins/xbreadcrumbs.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/js/plugins/css/css_compiled/js/plugins/js/plugins/jquery.maskedinput-1.3.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/js/plugins/css/css_compiled/js/plugins/js/plugins/jquery.autotab-1.1b.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/js/plugins/css/css_compiled/js/plugins/js/plugins/charCount.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/js/plugins/css/css_compiled/js/plugins/js/plugins/jquery.textareaCounter.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/js/plugins/css/css_compiled/js/plugins/js/plugins/elrte.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/js/plugins/css/css_compiled/js/plugins/js/plugins/elrte.en.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/js/plugins/css/css_compiled/js/plugins/js/plugins/select2.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/js/plugins/css/css_compiled/js/plugins/js/plugins/jquery-picklist.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/js/plugins/css/css_compiled/js/plugins/js/plugins/jquery.validate.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/js/plugins/css/css_compiled/js/plugins/js/plugins/additional-methods.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/js/plugins/css/css_compiled/js/plugins/js/plugins/jquery.form.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/js/plugins/css/css_compiled/js/plugins/js/plugins/jquery.metadata.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/js/plugins/css/css_compiled/js/plugins/js/plugins/jquery.mockjax.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/js/plugins/css/css_compiled/js/plugins/js/plugins/jquery.uniform.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/js/plugins/css/css_compiled/js/plugins/js/plugins/jquery.tagsinput.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/js/plugins/css/css_compiled/js/plugins/js/plugins/jquery.rating.pack.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/js/plugins/css/css_compiled/js/plugins/js/plugins/farbtastic.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/js/plugins/css/css_compiled/js/plugins/js/plugins/jquery.timeentry.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/js/plugins/css/css_compiled/js/plugins/js/plugins/jquery.dataTables.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/js/plugins/css/css_compiled/js/plugins/js/plugins/jquery.jstree.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/js/plugins/css/css_compiled/js/plugins/js/plugins/dataTables.bootstrap.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/js/plugins/css/css_compiled/js/plugins/js/plugins/jquery.mousewheel.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/js/plugins/css/css_compiled/js/plugins/js/plugins/jquery.mCustomScrollbar.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/js/plugins/css/css_compiled/js/plugins/js/plugins/jquery.flot.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/js/plugins/css/css_compiled/js/plugins/js/plugins/jquery.flot.stack.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/js/plugins/css/css_compiled/js/plugins/js/plugins/jquery.flot.pie.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/js/plugins/css/css_compiled/js/plugins/js/plugins/jquery.flot.resize.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/js/plugins/css/css_compiled/js/plugins/js/plugins/raphael.2.1.0.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/js/plugins/css/css_compiled/js/plugins/js/plugins/justgage.1.0.1.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/js/plugins/css/css_compiled/js/plugins/js/plugins/jquery.qrcode.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/js/plugins/css/css_compiled/js/plugins/js/plugins/jquery.clock.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/js/plugins/css/css_compiled/js/plugins/js/plugins/jquery.countdown.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/js/plugins/css/css_compiled/js/plugins/js/plugins/jquery.jqtweet.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/js/plugins/css/css_compiled/js/plugins/js/plugins/jquery.cookie.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/js/plugins/css/css_compiled/js/plugins/js/plugins/bootstrap-fileupload.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/js/plugins/css/css_compiled/js/plugins/js/plugins/prettify/prettify.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/js/plugins/css/css_compiled/js/plugins/js/plugins/bootstrapSwitch.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/js/plugins/css/css_compiled/js/plugins/js/plugins/mfupload.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/js/plugins/css/css_compiled/js/plugins/js/common.js"></script>
</head>
<body class="body-login">
<div class="nav-fixed-topright" style="visibility: hidden">
<ul class="nav nav-user-menu">
<li class="user-sub-menu-container">
<a href="javascript:;">
<i class="user-icon"></i><span class="nav-user-selection">Theme Options</span><i class="icon-menu-arrow"></i>
</a>
<ul class="nav user-sub-menu">
<li class="light">
<a href="javascript:;">
<i class='icon-photon stop'></i>Light Version
</a>
</li>
<li class="dark">
<a href="javascript:;">
<i class='icon-photon stop'></i>Dark Version
</a>
</li>
</ul>
</li>
<li>
<a href="javascript:;">
<i class="icon-photon mail"></i>
</a>
</li>
<li>
<a href="javascript:;">
<i class="icon-photon comment_alt2_stroke"></i>
<div class="notification-count">12</div>
</a>
</li>
</ul>
</div>
<script>
$(function(){
setTimeout(function(){
$('.nav-fixed-topright').removeAttr('style');
}, 300);
$(window).scroll(function(){
if($('.breadcrumb-container').length){
var scrollState = $(window).scrollTop();
if (scrollState > 0) $('.nav-fixed-topright').addClass('nav-released');
else $('.nav-fixed-topright').removeClass('nav-released')
}
});
$('.user-sub-menu-container').on('click', function(){
$(this).toggleClass('active-user-menu');
});
$('.user-sub-menu .light').on('click', function(){
if ($('body').is('.light-version')) return;
$('body').addClass('light-version');
setTimeout(function() {
$.cookie('themeColor', 'light', {
expires: 7,
path: '/'
});
}, 500);
});
$('.user-sub-menu .dark').on('click', function(){
if ($('body').is('.light-version')) {
$('body').removeClass('light-version');
$.cookie('themeColor', 'dark', {
expires: 7,
path: '/'
});
}
});
});
</script>
<div class="container-login">
<div class="form-centering-wrapper">
<div class="form-window-login">
<div class="form-window-login-logo">
<div class="login-logo">
<img src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/js/plugins/css/css_compiled/js/plugins/images/photon/login-logo@2x.png" alt="Photon UI"/>
</div>
<h2 class="login-title">Welcome to Photon UI!</h2>
<div class="login-member">Not a Member? <a href="jquery.tagsinput.min.js.html#">Sign Up »</a>
<a href="jquery.tagsinput.min.js.html#" class="btn btn-facebook"><i class="icon-fb"></i>Login with Facebook<i class="icon-fb-arrow"></i></a>
</div>
<div class="login-or">Or</div>
<div class="login-input-area">
<form method="POST" action="dashboard.php">
<span class="help-block">Login With Your Photon Account</span>
<input type="text" name="email" placeholder="Email">
<input type="password" name="password" placeholder="Password">
<button type="submit" class="btn btn-large btn-success btn-login">Login</button>
</form>
<a href="jquery.tagsinput.min.js.html#" class="forgot-pass">Forgot Your Password?</a>
</div>
</div>
</div>
</div>
</div>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-1936460-27']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</body>
</html>
| user-tony/photon-rails | lib/assets/css/css_compiled/@{photonImagePath}plugins/elrte/js/plugins/js/plugins/css/css_compiled/js/plugins/jquery.tagsinput.min.js.html | HTML | mit | 16,615 |
<head>
<link href="http://gmpg.org/xfn/11" rel="profile">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<!-- Enable responsiveness on mobile devices-->
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1">
<title>
{% if page.title == "Home" %}
{{ site.title }} · {{ site.tagline }}
{% else %}
{{ page.title }} · {{ site.title }}
{% endif %}
</title>
<!-- CSS -->
<link rel="stylesheet" href="{{ site.baseurl }}/public/css/poole.css">
<link rel="stylesheet" href="{{ site.baseurl }}/public/css/syntax.css">
<link rel="stylesheet" href="{{ site.baseurl }}/public/css/lanyon.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=PT+Serif:400,400italic,700%7CPT+Sans:400">
<!-- Icons -->
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="{{ site.baseurl }}/public/apple-touch-icon-precomposed.png">
<link rel="shortcut icon" href="{{ site.baseurl }}/public/favicon.ico">
<link href="https://opensource.keycdn.com/fontawesome/4.6.3/font-awesome.min.css" rel="stylesheet">
<!-- RSS -->
<link rel="alternate" type="application/rss+xml" title="RSS" href="/atom.xml">
</head>
| lamalta/lamalta.github.io | _includes/head.html | HTML | mit | 1,293 |
<!doctype html>
<html lang="en">
<head>
<title>Code coverage report for spec/parser.js</title>
<meta charset="utf-8">
<link rel="stylesheet" href="../prettify.css">
<style>
body, html {
margin:0; padding: 0;
}
body {
font-family: Helvetica Neue, Helvetica,Arial;
font-size: 10pt;
}
div.header, div.footer {
background: #eee;
padding: 1em;
}
div.header {
z-index: 100;
position: fixed;
top: 0;
border-bottom: 1px solid #666;
width: 100%;
}
div.footer {
border-top: 1px solid #666;
}
div.body {
margin-top: 10em;
}
div.meta {
font-size: 90%;
text-align: center;
}
h1, h2, h3 {
font-weight: normal;
}
h1 {
font-size: 12pt;
}
h2 {
font-size: 10pt;
}
pre {
font-family: Consolas, Menlo, Monaco, monospace;
margin: 0;
padding: 0;
line-height: 14px;
font-size: 14px;
-moz-tab-size: 2;
-o-tab-size: 2;
tab-size: 2;
}
div.path { font-size: 110%; }
div.path a:link, div.path a:visited { color: #000; }
table.coverage { border-collapse: collapse; margin:0; padding: 0 }
table.coverage td {
margin: 0;
padding: 0;
color: #111;
vertical-align: top;
}
table.coverage td.line-count {
width: 50px;
text-align: right;
padding-right: 5px;
}
table.coverage td.line-coverage {
color: #777 !important;
text-align: right;
border-left: 1px solid #666;
border-right: 1px solid #666;
}
table.coverage td.text {
}
table.coverage td span.cline-any {
display: inline-block;
padding: 0 5px;
width: 40px;
}
table.coverage td span.cline-neutral {
background: #eee;
}
table.coverage td span.cline-yes {
background: #b5d592;
color: #999;
}
table.coverage td span.cline-no {
background: #fc8c84;
}
.cstat-yes { color: #111; }
.cstat-no { background: #fc8c84; color: #111; }
.fstat-no { background: #ffc520; color: #111 !important; }
.cbranch-no { background: yellow !important; color: #111; }
.cstat-skip { background: #ddd; color: #111; }
.fstat-skip { background: #ddd; color: #111 !important; }
.cbranch-skip { background: #ddd !important; color: #111; }
.missing-if-branch {
display: inline-block;
margin-right: 10px;
position: relative;
padding: 0 4px;
background: black;
color: yellow;
}
.skip-if-branch {
display: none;
margin-right: 10px;
position: relative;
padding: 0 4px;
background: #ccc;
color: white;
}
.missing-if-branch .typ, .skip-if-branch .typ {
color: inherit !important;
}
.entity, .metric { font-weight: bold; }
.metric { display: inline-block; border: 1px solid #333; padding: 0.3em; background: white; }
.metric small { font-size: 80%; font-weight: normal; color: #666; }
div.coverage-summary table { border-collapse: collapse; margin: 3em; font-size: 110%; }
div.coverage-summary td, div.coverage-summary table th { margin: 0; padding: 0.25em 1em; border-top: 1px solid #666; border-bottom: 1px solid #666; }
div.coverage-summary th { text-align: left; border: 1px solid #666; background: #eee; font-weight: normal; }
div.coverage-summary th.file { border-right: none !important; }
div.coverage-summary th.pic { border-left: none !important; text-align: right; }
div.coverage-summary th.pct { border-right: none !important; }
div.coverage-summary th.abs { border-left: none !important; text-align: right; }
div.coverage-summary td.pct { text-align: right; border-left: 1px solid #666; }
div.coverage-summary td.abs { text-align: right; font-size: 90%; color: #444; border-right: 1px solid #666; }
div.coverage-summary td.file { text-align: right; border-left: 1px solid #666; white-space: nowrap; }
div.coverage-summary td.pic { min-width: 120px !important; }
div.coverage-summary a:link { text-decoration: none; color: #000; }
div.coverage-summary a:visited { text-decoration: none; color: #333; }
div.coverage-summary a:hover { text-decoration: underline; }
div.coverage-summary tfoot td { border-top: 1px solid #666; }
div.coverage-summary .yui3-datatable-sort-indicator, div.coverage-summary .dummy-sort-indicator {
height: 10px;
width: 7px;
display: inline-block;
margin-left: 0.5em;
}
div.coverage-summary .yui3-datatable-sort-indicator {
background: url("https://yui-s.yahooapis.com/3.6.0/build/datatable-sort/assets/skins/sam/sort-arrow-sprite.png") no-repeat scroll 0 0 transparent;
}
div.coverage-summary .yui3-datatable-sorted .yui3-datatable-sort-indicator {
background-position: 0 -20px;
}
div.coverage-summary .yui3-datatable-sorted-desc .yui3-datatable-sort-indicator {
background-position: 0 -10px;
}
.high { background: #b5d592 !important; }
.medium { background: #ffe87c !important; }
.low { background: #fc8c84 !important; }
span.cover-fill, span.cover-empty {
display:inline-block;
border:1px solid #444;
background: white;
height: 12px;
}
span.cover-fill {
background: #ccc;
border-right: 1px solid #444;
}
span.cover-empty {
background: white;
border-left: none;
}
span.cover-full {
border-right: none !important;
}
pre.prettyprint {
border: none !important;
padding: 0 !important;
margin: 0 !important;
}
.com { color: #999 !important; }
.ignore-none { color: #999; font-weight: normal; }
</style>
</head>
<body>
<div class="header low">
<h1>Code coverage report for <span class="entity">spec/parser.js</span></h1>
<h2>
Statements: <span class="metric">37.5% <small>(39 / 104)</small></span>
Branches: <span class="metric">100% <small>(2 / 2)</small></span>
Functions: <span class="metric">4.44% <small>(2 / 45)</small></span>
Lines: <span class="metric">37.5% <small>(39 / 104)</small></span>
Ignored: <span class="metric"><span class="ignore-none">none</span></span>
</h2>
<div class="path"><a href="../index.html">All files</a> » <a href="index.html">spec/</a> » parser.js</div>
</div>
<div class="body">
<pre><table class="coverage">
<tr><td class="line-count">1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191</td><td class="line-coverage"><span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">3</span>
<span class="cline-any cline-yes">3</span>
<span class="cline-any cline-yes">2</span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">1</span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">1</span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">1</span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">1</span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">1</span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">1</span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">1</span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">1</span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">1</span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">1</span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">1</span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">1</span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">1</span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">1</span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">1</span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">1</span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">1</span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">1</span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">1</span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">1</span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">1</span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">1</span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">1</span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">1</span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">1</span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">1</span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">1</span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">1</span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">1</span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">1</span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">1</span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">1</span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">1</span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">1</span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">1</span>
<span class="cline-any cline-yes">1</span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span></td><td class="text"><pre class="prettyprint lang-js">/*global Handlebars */
describe('parser', function() {
if (!Handlebars.print) {
return;
}
<span class="fstat-no" title="function not covered" > function ast_for(template) {</span>
<span class="cstat-no" title="statement not covered" > var ast = Handlebars.parse(template);</span>
<span class="cstat-no" title="statement not covered" > return Handlebars.print(ast);</span>
}
it('parses simple mustaches', <span class="fstat-no" title="function not covered" >function() {</span>
<span class="cstat-no" title="statement not covered" > equals(ast_for('{{foo}}'), "{{ ID:foo [] }}\n");</span>
<span class="cstat-no" title="statement not covered" > equals(ast_for('{{foo?}}'), "{{ ID:foo? [] }}\n");</span>
<span class="cstat-no" title="statement not covered" > equals(ast_for('{{foo_}}'), "{{ ID:foo_ [] }}\n");</span>
<span class="cstat-no" title="statement not covered" > equals(ast_for('{{foo-}}'), "{{ ID:foo- [] }}\n");</span>
<span class="cstat-no" title="statement not covered" > equals(ast_for('{{foo:}}'), "{{ ID:foo: [] }}\n");</span>
});
it('parses simple mustaches with data', <span class="fstat-no" title="function not covered" >function() {</span>
<span class="cstat-no" title="statement not covered" > equals(ast_for("{{@foo}}"), "{{ @ID:foo [] }}\n");</span>
});
it('parses simple mustaches with data paths', <span class="fstat-no" title="function not covered" >function() {</span>
<span class="cstat-no" title="statement not covered" > equals(ast_for("{{@../foo}}"), "{{ @ID:foo [] }}\n");</span>
});
it('parses mustaches with paths', <span class="fstat-no" title="function not covered" >function() {</span>
<span class="cstat-no" title="statement not covered" > equals(ast_for("{{foo/bar}}"), "{{ PATH:foo/bar [] }}\n");</span>
});
it('parses mustaches with this/foo', <span class="fstat-no" title="function not covered" >function() {</span>
<span class="cstat-no" title="statement not covered" > equals(ast_for("{{this/foo}}"), "{{ ID:foo [] }}\n");</span>
});
it('parses mustaches with - in a path', <span class="fstat-no" title="function not covered" >function() {</span>
<span class="cstat-no" title="statement not covered" > equals(ast_for("{{foo-bar}}"), "{{ ID:foo-bar [] }}\n");</span>
});
it('parses mustaches with parameters', <span class="fstat-no" title="function not covered" >function() {</span>
<span class="cstat-no" title="statement not covered" > equals(ast_for("{{foo bar}}"), "{{ ID:foo [ID:bar] }}\n");</span>
});
it('parses mustaches with string parameters', <span class="fstat-no" title="function not covered" >function() {</span>
<span class="cstat-no" title="statement not covered" > equals(ast_for("{{foo bar \"baz\" }}"), '{{ ID:foo [ID:bar, "baz"] }}\n');</span>
});
it('parses mustaches with NUMBER parameters', <span class="fstat-no" title="function not covered" >function() {</span>
<span class="cstat-no" title="statement not covered" > equals(ast_for("{{foo 1}}"), "{{ ID:foo [NUMBER{1}] }}\n");</span>
});
it('parses mustaches with BOOLEAN parameters', <span class="fstat-no" title="function not covered" >function() {</span>
<span class="cstat-no" title="statement not covered" > equals(ast_for("{{foo true}}"), "{{ ID:foo [BOOLEAN{true}] }}\n");</span>
<span class="cstat-no" title="statement not covered" > equals(ast_for("{{foo false}}"), "{{ ID:foo [BOOLEAN{false}] }}\n");</span>
});
it('parses mutaches with DATA parameters', <span class="fstat-no" title="function not covered" >function() {</span>
<span class="cstat-no" title="statement not covered" > equals(ast_for("{{foo @bar}}"), "{{ ID:foo [@ID:bar] }}\n");</span>
});
it('parses mustaches with hash arguments', <span class="fstat-no" title="function not covered" >function() {</span>
<span class="cstat-no" title="statement not covered" > equals(ast_for("{{foo bar=baz}}"), "{{ ID:foo [] HASH{bar=ID:baz} }}\n");</span>
<span class="cstat-no" title="statement not covered" > equals(ast_for("{{foo bar=1}}"), "{{ ID:foo [] HASH{bar=NUMBER{1}} }}\n");</span>
<span class="cstat-no" title="statement not covered" > equals(ast_for("{{foo bar=true}}"), "{{ ID:foo [] HASH{bar=BOOLEAN{true}} }}\n");</span>
<span class="cstat-no" title="statement not covered" > equals(ast_for("{{foo bar=false}}"), "{{ ID:foo [] HASH{bar=BOOLEAN{false}} }}\n");</span>
<span class="cstat-no" title="statement not covered" > equals(ast_for("{{foo bar=@baz}}"), "{{ ID:foo [] HASH{bar=@ID:baz} }}\n");</span>
<span class="cstat-no" title="statement not covered" > equals(ast_for("{{foo bar=baz bat=bam}}"), "{{ ID:foo [] HASH{bar=ID:baz, bat=ID:bam} }}\n");</span>
<span class="cstat-no" title="statement not covered" > equals(ast_for("{{foo bar=baz bat=\"bam\"}}"), '{{ ID:foo [] HASH{bar=ID:baz, bat="bam"} }}\n');</span>
<span class="cstat-no" title="statement not covered" > equals(ast_for("{{foo bat='bam'}}"), '{{ ID:foo [] HASH{bat="bam"} }}\n');</span>
<span class="cstat-no" title="statement not covered" > equals(ast_for("{{foo omg bar=baz bat=\"bam\"}}"), '{{ ID:foo [ID:omg] HASH{bar=ID:baz, bat="bam"} }}\n');</span>
<span class="cstat-no" title="statement not covered" > equals(ast_for("{{foo omg bar=baz bat=\"bam\" baz=1}}"), '{{ ID:foo [ID:omg] HASH{bar=ID:baz, bat="bam", baz=NUMBER{1}} }}\n');</span>
<span class="cstat-no" title="statement not covered" > equals(ast_for("{{foo omg bar=baz bat=\"bam\" baz=true}}"), '{{ ID:foo [ID:omg] HASH{bar=ID:baz, bat="bam", baz=BOOLEAN{true}} }}\n');</span>
<span class="cstat-no" title="statement not covered" > equals(ast_for("{{foo omg bar=baz bat=\"bam\" baz=false}}"), '{{ ID:foo [ID:omg] HASH{bar=ID:baz, bat="bam", baz=BOOLEAN{false}} }}\n');</span>
});
it('parses contents followed by a mustache', <span class="fstat-no" title="function not covered" >function() {</span>
<span class="cstat-no" title="statement not covered" > equals(ast_for("foo bar {{baz}}"), "CONTENT[ \'foo bar \' ]\n{{ ID:baz [] }}\n");</span>
});
it('parses a partial', <span class="fstat-no" title="function not covered" >function() {</span>
<span class="cstat-no" title="statement not covered" > equals(ast_for("{{> foo }}"), "{{> PARTIAL:foo }}\n");</span>
});
it('parses a partial with context', <span class="fstat-no" title="function not covered" >function() {</span>
<span class="cstat-no" title="statement not covered" > equals(ast_for("{{> foo bar}}"), "{{> PARTIAL:foo ID:bar }}\n");</span>
});
it('parses a partial with hash', <span class="fstat-no" title="function not covered" >function() {</span>
<span class="cstat-no" title="statement not covered" > equals(ast_for("{{> foo bar=bat}}"), "{{> PARTIAL:foo HASH{bar=ID:bat} }}\n");</span>
});
it('parses a partial with context and hash', <span class="fstat-no" title="function not covered" >function() {</span>
<span class="cstat-no" title="statement not covered" > equals(ast_for("{{> foo bar bat=baz}}"), "{{> PARTIAL:foo ID:bar HASH{bat=ID:baz} }}\n");</span>
});
it('parses a partial with a complex name', <span class="fstat-no" title="function not covered" >function() {</span>
<span class="cstat-no" title="statement not covered" > equals(ast_for("{{> shared/partial?.bar}}"), "{{> PARTIAL:shared/partial?.bar }}\n");</span>
});
it('parses a comment', <span class="fstat-no" title="function not covered" >function() {</span>
<span class="cstat-no" title="statement not covered" > equals(ast_for("{{! this is a comment }}"), "{{! ' this is a comment ' }}\n");</span>
});
it('parses a multi-line comment', <span class="fstat-no" title="function not covered" >function() {</span>
<span class="cstat-no" title="statement not covered" > equals(ast_for("{{!\nthis is a multi-line comment\n}}"), "{{! \'\nthis is a multi-line comment\n\' }}\n");</span>
});
it('parses an inverse section', <span class="fstat-no" title="function not covered" >function() {</span>
<span class="cstat-no" title="statement not covered" > equals(ast_for("{{#foo}} bar {{^}} baz {{/foo}}"), "BLOCK:\n {{ ID:foo [] }}\n PROGRAM:\n CONTENT[ ' bar ' ]\n {{^}}\n CONTENT[ ' baz ' ]\n");</span>
});
it('parses an inverse (else-style) section', <span class="fstat-no" title="function not covered" >function() {</span>
<span class="cstat-no" title="statement not covered" > equals(ast_for("{{#foo}} bar {{else}} baz {{/foo}}"), "BLOCK:\n {{ ID:foo [] }}\n PROGRAM:\n CONTENT[ ' bar ' ]\n {{^}}\n CONTENT[ ' baz ' ]\n");</span>
});
it('parses empty blocks', <span class="fstat-no" title="function not covered" >function() {</span>
<span class="cstat-no" title="statement not covered" > equals(ast_for("{{#foo}}{{/foo}}"), "BLOCK:\n {{ ID:foo [] }}\n PROGRAM:\n");</span>
});
it('parses empty blocks with empty inverse section', <span class="fstat-no" title="function not covered" >function() {</span>
<span class="cstat-no" title="statement not covered" > equals(ast_for("{{#foo}}{{^}}{{/foo}}"), "BLOCK:\n {{ ID:foo [] }}\n PROGRAM:\n");</span>
});
it('parses empty blocks with empty inverse (else-style) section', <span class="fstat-no" title="function not covered" >function() {</span>
<span class="cstat-no" title="statement not covered" > equals(ast_for("{{#foo}}{{else}}{{/foo}}"), "BLOCK:\n {{ ID:foo [] }}\n PROGRAM:\n");</span>
});
it('parses non-empty blocks with empty inverse section', <span class="fstat-no" title="function not covered" >function() {</span>
<span class="cstat-no" title="statement not covered" > equals(ast_for("{{#foo}} bar {{^}}{{/foo}}"), "BLOCK:\n {{ ID:foo [] }}\n PROGRAM:\n CONTENT[ ' bar ' ]\n {{^}}\n");</span>
});
it('parses non-empty blocks with empty inverse (else-style) section', <span class="fstat-no" title="function not covered" >function() {</span>
<span class="cstat-no" title="statement not covered" > equals(ast_for("{{#foo}} bar {{else}}{{/foo}}"), "BLOCK:\n {{ ID:foo [] }}\n PROGRAM:\n CONTENT[ ' bar ' ]\n {{^}}\n");</span>
});
it('parses empty blocks with non-empty inverse section', <span class="fstat-no" title="function not covered" >function() {</span>
<span class="cstat-no" title="statement not covered" > equals(ast_for("{{#foo}}{{^}} bar {{/foo}}"), "BLOCK:\n {{ ID:foo [] }}\n PROGRAM:\n {{^}}\n CONTENT[ ' bar ' ]\n");</span>
});
it('parses empty blocks with non-empty inverse (else-style) section', <span class="fstat-no" title="function not covered" >function() {</span>
<span class="cstat-no" title="statement not covered" > equals(ast_for("{{#foo}}{{else}} bar {{/foo}}"), "BLOCK:\n {{ ID:foo [] }}\n PROGRAM:\n {{^}}\n CONTENT[ ' bar ' ]\n");</span>
});
it('parses a standalone inverse section', <span class="fstat-no" title="function not covered" >function() {</span>
<span class="cstat-no" title="statement not covered" > equals(ast_for("{{^foo}}bar{{/foo}}"), "BLOCK:\n {{ ID:foo [] }}\n {{^}}\n CONTENT[ 'bar' ]\n");</span>
});
it("raises if there's a Parse error", <span class="fstat-no" title="function not covered" >function() {</span>
<span class="cstat-no" title="statement not covered" > shouldThrow(<span class="fstat-no" title="function not covered" >function() {</span></span>
<span class="cstat-no" title="statement not covered" > ast_for("foo{{^}}bar");</span>
}, Error, /Parse error on line 1/);
<span class="cstat-no" title="statement not covered" > shouldThrow(<span class="fstat-no" title="function not covered" >function() {</span></span>
<span class="cstat-no" title="statement not covered" > ast_for("{{foo}");</span>
}, Error, /Parse error on line 1/);
<span class="cstat-no" title="statement not covered" > shouldThrow(<span class="fstat-no" title="function not covered" >function() {</span></span>
<span class="cstat-no" title="statement not covered" > ast_for("{{foo &}}");</span>
}, Error, /Parse error on line 1/);
<span class="cstat-no" title="statement not covered" > shouldThrow(<span class="fstat-no" title="function not covered" >function() {</span></span>
<span class="cstat-no" title="statement not covered" > ast_for("{{#goodbyes}}{{/hellos}}");</span>
}, Error, /goodbyes doesn't match hellos/);
<span class="cstat-no" title="statement not covered" > shouldThrow(<span class="fstat-no" title="function not covered" >function() {</span></span>
<span class="cstat-no" title="statement not covered" > ast_for("{{{{goodbyes}}}} {{{{/hellos}}}}");</span>
}, Error, /goodbyes doesn't match hellos/);
});
it('knows how to report the correct line number in errors', <span class="fstat-no" title="function not covered" >function() {</span>
<span class="cstat-no" title="statement not covered" > shouldThrow(<span class="fstat-no" title="function not covered" >function() {</span></span>
<span class="cstat-no" title="statement not covered" > ast_for("hello\nmy\n{{foo}");</span>
}, Error, /Parse error on line 3/);
<span class="cstat-no" title="statement not covered" > shouldThrow(<span class="fstat-no" title="function not covered" >function() {</span></span>
<span class="cstat-no" title="statement not covered" > ast_for("hello\n\nmy\n\n{{foo}");</span>
}, Error, /Parse error on line 5/);
});
it('knows how to report the correct line number in errors when the first character is a newline', <span class="fstat-no" title="function not covered" >function() {</span>
<span class="cstat-no" title="statement not covered" > shouldThrow(<span class="fstat-no" title="function not covered" >function() {</span></span>
<span class="cstat-no" title="statement not covered" > ast_for("\n\nhello\n\nmy\n\n{{foo}");</span>
}, Error, /Parse error on line 7/);
});
describe('externally compiled AST', function() {
it('can pass through an already-compiled AST', <span class="fstat-no" title="function not covered" >function() {</span>
<span class="cstat-no" title="statement not covered" > equals(ast_for(new Handlebars.AST.ProgramNode(false, [ new Handlebars.AST.ContentNode("Hello")])), "CONTENT[ \'Hello\' ]\n");</span>
});
});
});
</pre></td></tr>
</table></pre>
</div>
<div class="footer">
<div class="meta">Generated by <a href="http://istanbul-js.org/" target="_blank">istanbul</a> at Wed Aug 13 2014 23:50:21 GMT-0500 (CDT)</div>
</div>
<script src="../prettify.js"></script>
<script src="https://yui-s.yahooapis.com/3.6.0/build/yui/yui-min.js"></script>
<script>
YUI().use('datatable', function (Y) {
var formatters = {
pct: function (o) {
o.className += o.record.get('classes')[o.column.key];
try {
return o.value.toFixed(2) + '%';
} catch (ex) { return o.value + '%'; }
},
html: function (o) {
o.className += o.record.get('classes')[o.column.key];
return o.record.get(o.column.key + '_html');
}
},
defaultFormatter = function (o) {
o.className += o.record.get('classes')[o.column.key];
return o.value;
};
function getColumns(theadNode) {
var colNodes = theadNode.all('tr th'),
cols = [],
col;
colNodes.each(function (colNode) {
col = {
key: colNode.getAttribute('data-col'),
label: colNode.get('innerHTML') || ' ',
sortable: !colNode.getAttribute('data-nosort'),
className: colNode.getAttribute('class'),
type: colNode.getAttribute('data-type'),
allowHTML: colNode.getAttribute('data-html') === 'true' || colNode.getAttribute('data-fmt') === 'html'
};
col.formatter = formatters[colNode.getAttribute('data-fmt')] || defaultFormatter;
cols.push(col);
});
return cols;
}
function getRowData(trNode, cols) {
var tdNodes = trNode.all('td'),
i,
row = { classes: {} },
node,
name;
for (i = 0; i < cols.length; i += 1) {
name = cols[i].key;
node = tdNodes.item(i);
row[name] = node.getAttribute('data-value') || node.get('innerHTML');
row[name + '_html'] = node.get('innerHTML');
row.classes[name] = node.getAttribute('class');
//Y.log('Name: ' + name + '; Value: ' + row[name]);
if (cols[i].type === 'number') { row[name] = row[name] * 1; }
}
//Y.log(row);
return row;
}
function getData(tbodyNode, cols) {
var data = [];
tbodyNode.all('tr').each(function (trNode) {
data.push(getRowData(trNode, cols));
});
return data;
}
function replaceTable(node) {
if (!node) { return; }
var cols = getColumns(node.one('thead')),
data = getData(node.one('tbody'), cols),
table,
parent = node.get('parentNode');
table = new Y.DataTable({
columns: cols,
data: data,
sortBy: 'file'
});
parent.set('innerHTML', '');
table.render(parent);
}
Y.on('domready', function () {
replaceTable(Y.one('div.coverage-summary table'));
if (typeof prettyPrint === 'function') {
prettyPrint();
}
});
});
</script>
</body>
</html>
| zorianak/Temerity | node_modules/handlebars/coverage/lcov-report/spec/parser.js.html | HTML | mit | 35,486 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>goedel: 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.6.1 / goedel - 8.8.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
goedel
<small>
8.8.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2021-10-24 00:12:32 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-10-24 00:12:32 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
camlp5 7.14 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-perl 1 Virtual package relying on perl
coq 8.6.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/goedel"
license: "Unknown"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/Goedel"]
depends: [
"ocaml"
"coq" {>= "8.8" & < "8.9~"}
"coq-pocklington" {>= "8.8" & < "8.9~"}
]
tags: [
"keyword:Goedel"
"keyword:Rosser"
"keyword:incompleteness"
"keyword:logic"
"keyword:Hilbert"
"category: Mathematics/Logic/Foundations"
"date: 2007-04-13"
]
authors: [ "Russell O'Connor <roconnor@alumni.uwaterloo.ca> [http://r6.ca]" ]
bug-reports: "https://github.com/coq-contribs/goedel/issues"
dev-repo: "git+https://github.com/coq-contribs/goedel.git"
synopsis: "The Gödel-Rosser 1st incompleteness theorem"
description: """
http://r6.ca/goedel1.html
A proof that any first order theory extending NN (which is PA
without induction) that is complete is inconsistent"""
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/goedel/archive/v8.8.0.tar.gz"
checksum: "md5=9f6c0b25c0f1023012e3cc963a9dc539"
}
</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-goedel.8.8.0 coq.8.6.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.6.1).
The following dependencies couldn't be met:
- coq-goedel -> coq >= 8.8
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-goedel.8.8.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.6.1/goedel/8.8.0.html | HTML | mit | 7,180 |
<!DOCTYPE html>
<!--
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
-->
<html>
<head>
<meta charset="utf-8">
<title>CKEditor Samples</title>
<link rel="stylesheet" href="sample.css">
</head>
<body>
<h1 class="samples">
CKEditor Samples
</h1>
<div class="warning deprecated">
These samples are not maintained anymore. Check out the <a href="http://sdk.ckeditor.com/">brand new samples in CKEditor SDK</a>.
</div>
<div class="twoColumns">
<div class="twoColumnsLeft">
<h2 class="samples">
Basic Samples
</h2>
<dl class="samples">
<dt><a class="samples" href="replacebyclass.html">Replace textarea elements by class name</a></dt>
<dd>Automatic replacement of all textarea elements of a given class with a CKEditor instance.</dd>
<dt><a class="samples" href="replacebycode.html">Replace textarea elements by code</a></dt>
<dd>Replacement of textarea elements with CKEditor instances by using a JavaScript call.</dd>
<dt><a class="samples" href="jquery.html">Create editors with jQuery</a></dt>
<dd>Creating standard and inline CKEditor instances with jQuery adapter.</dd>
</dl>
<h2 class="samples">
Basic Customization
</h2>
<dl class="samples">
<dt><a class="samples" href="uicolor.html">User Interface color</a></dt>
<dd>Changing CKEditor User Interface color and adding a toolbar button that lets the user set the UI color.</dd>
<dt><a class="samples" href="uilanguages.html">User Interface languages</a></dt>
<dd>Changing CKEditor User Interface language and adding a drop-down list that lets the user choose the UI language.</dd>
</dl>
<h2 class="samples">Plugins</h2>
<dl class="samples">
<dt><a class="samples" href="mathjax/mathjax.html">Mathematics plugin</a><span class="new">New!</span></dt>
<dd>Create mathematical equations in TeX and display them in visual form.</dd>
<dt><a class="samples" href="magicline/magicline.html">Magicline plugin</a></dt>
<dd>Using the Magicline plugin to access difficult focus spaces.</dd>
<dt><a class="samples" href="wysiwygarea/fullpage.html">Full page support</a></dt>
<dd>CKEditor inserted with a JavaScript call and used to edit the whole page from <html> to </html>.</dd>
</dl>
</div>
<div class="twoColumnsRight">
<h2 class="samples">
Inline Editing
</h2>
<dl class="samples">
<dt><a class="samples" href="inlineall.html">Massive inline editor creation</a></dt>
<dd>Turn all elements with <code>contentEditable = true</code> attribute into inline editors.</dd>
<dt><a class="samples" href="inlinebycode.html">Convert element into an inline editor by code</a></dt>
<dd>Conversion of DOM elements into inline CKEditor instances by using a JavaScript call.</dd>
<dt><a class="samples" href="inlinetextarea.html">Replace textarea with inline editor</a> <span class="new">New!</span></dt>
<dd>A form with a textarea that is replaced by an inline editor at runtime.</dd>
</dl>
<h2 class="samples">
Advanced Samples
</h2>
<dl class="samples">
<dt><a class="samples" href="datafiltering.html">Data filtering and features activation</a> <span class="new">New!</span></dt>
<dd>Data filtering and automatic features activation basing on configuration.</dd>
<dt><a class="samples" href="divreplace.html">Replace DIV elements on the fly</a></dt>
<dd>Transforming a <code>div</code> element into an instance of CKEditor with a mouse click.</dd>
<dt><a class="samples" href="appendto.html">Append editor instances</a></dt>
<dd>Appending editor instances to existing DOM elements.</dd>
<dt><a class="samples" href="ajax.html">Create and destroy editor instances for Ajax applications</a></dt>
<dd>Creating and destroying CKEditor instances on the fly and saving the contents entered into the editor window.</dd>
<dt><a class="samples" href="api.html">Basic usage of the API</a></dt>
<dd>Using the CKEditor JavaScript API to interact with the editor at runtime.</dd>
<dt><a class="samples" href="xhtmlstyle.html">XHTML-compliant style</a></dt>
<dd>Configuring CKEditor to produce XHTML 1.1 compliant attributes and styles.</dd>
<dt><a class="samples" href="readonly.html">Read-only mode</a></dt>
<dd>Using the readOnly API to block introducing changes to the editor contents.</dd>
<dt><a class="samples" href="tabindex.html">"Tab" key-based navigation</a></dt>
<dd>Navigating among editor instances with tab key.</dd>
<dt><a class="samples" href="dialog/dialog.html">Using the JavaScript API to customize dialog windows</a></dt>
<dd>Using the dialog windows API to customize dialog windows without changing the original editor code.</dd>
<dt><a class="samples" href="enterkey/enterkey.html">Using the "Enter" key in CKEditor</a></dt>
<dd>Configuring the behavior of <em>Enter</em> and <em>Shift+Enter</em> keys.</dd>
<dt><a class="samples" href="htmlwriter/outputforflash.html">Output for Flash</a></dt>
<dd>Configuring CKEditor to produce HTML code that can be used with Adobe Flash.</dd>
<dt><a class="samples" href="htmlwriter/outputhtml.html">Output HTML</a></dt>
<dd>Configuring CKEditor to produce legacy HTML 4 code.</dd>
<dt><a class="samples" href="toolbar/toolbar.html">Toolbar Configurations</a></dt>
<dd>Configuring CKEditor to display full or custom toolbar layout.</dd>
</dl>
</div>
</div>
<div id="footer">
<hr>
<p>
CKEditor - The text editor for the Internet - <a class="samples" href="http://ckeditor.com/">http://ckeditor.com</a>
</p>
<p id="copy">
Copyright © 2003-2017, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico Knabben. All rights reserved.
</p>
</div>
</body>
</html>
| gsag/mestrado-gc-2017 | src/main/resources/static/ckeditor/samples/old/index.html | HTML | mit | 5,946 |
<!DOCTYPE html>
<html>
<head>
<title>substation:Action#run(station documentation</title>
<link rel="stylesheet" type="text/css" href="../../../../../../../../index.css" />
<link rel="stylesheet" type="text/css" href="../../../../../../../../highlight.css" />
<script type="text/javascript" src="../../../../../../../../index.js"></script>
</head>
<body class="argument" id="component_1616">
<div id="outer">
<div id="header">
<a class="ctype" href="../../../../../../../../index.html">argument</a>
<span>
<a class="valtype" href="../../../../../../index.html">substation</a>
<span class="valsep">|</span>
</span>
<span class="breadcrumbs">
<span class="delimiter">:</span><a href="../../../../../../index.html" class="breadcrumb module">substation</a><span class="delimiter">:</span><a href="../../../../index.html" class="breadcrumb module">Action</a><span class="delimiter">#</span><a href="../../index.html" class="breadcrumb member">run</a><span class="delimiter">(</span><a href="index.html" class="breadcrumb argument">station</a>
</span>
</div>
<div id="TOC">
</div>
<div id="content">
<!-- basic document info -->
<div id="details">
<div class="markdown"><p>The <a href="../../../../../../index.html"><code>substation</code></a> instance managing this request.</p>
</div>
<div class="clear"></div>
</div>
<div class="children">
</div>
</div>
</div>
<div id="footer">
This document was generated with
<a href="https://github.com/shenanigans/node-doczar">doczar</a>
at <span class="time">3:55pm</span> on <span class="date">8/14/2015</span>
</div>
</body>
</html>
| shenanigans/node-sublayer | static/docs/generated/module/substation/module/action/member/run/argument/station/index.html | HTML | mit | 1,924 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>/home/lindsay/xeolabs/xeogl-next/xeogl/src/canvas/spinner.js</title>
<link rel="stylesheet" href="http://yui.yahooapis.com/3.9.1/build/cssgrids/cssgrids-min.css">
<link href='https://fonts.googleapis.com/css?family=Exo+2:400,800,900,700,600,500|Roboto:100,300,400,500,700,900' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="../assets/vendor/prettify/prettify-min.css">
<link rel="stylesheet" href="../assets/css/main.css" id="site_styles">
<link rel="icon" href="../assets/favicon.ico">
<script src="http://yui.yahooapis.com/combo?3.9.1/build/yui/yui-min.js"></script>
</head>
<body class="yui3-skin-sam">
<div id="doc">
<div id="hd" class="yui3-g header">
<div class="yui3-u-3-4">
<h1 class="projectTitle"><a href="../../">xeogl</a> / <a href="../../docs">API Docs</a></h1>
</div>
<div class="yui3-u-1-4 version">
<em>API Docs for: </em>
</div>
</div>
<div id="bd" class="yui3-g">
<div class="yui3-u-1-4">
<div id="docs-sidebar" class="sidebar apidocs">
<div id="api-list">
<div id="api-tabview" class="tabview">
<ul class="tabs">
<li><a href="#api-classes">Classes</a></li>
<li><a href="#api-modules">Modules</a></li>
</ul>
<div id="api-tabview-filter">
<input type="search" id="api-filter" placeholder="Type to filter APIs">
</div>
<div id="api-tabview-panel">
<ul id="api-classes" class="apis classes">
<li><a href="../classes/AABBGeometry.html">AABBGeometry</a></li>
<li><a href="../classes/AABBHelper.html">AABBHelper</a></li>
<li><a href="../classes/AmbientLight.html">AmbientLight</a></li>
<li><a href="../classes/Annotation.html">Annotation</a></li>
<li><a href="../classes/AnnotationStory.html">AnnotationStory</a></li>
<li><a href="../classes/AxisHelper.html">AxisHelper</a></li>
<li><a href="../classes/BIMServerModel.html">BIMServerModel</a></li>
<li><a href="../classes/BoxGeometry.html">BoxGeometry</a></li>
<li><a href="../classes/BuildableModel.html">BuildableModel</a></li>
<li><a href="../classes/Button.html">Button</a></li>
<li><a href="../classes/Camera.html">Camera</a></li>
<li><a href="../classes/CameraControl.html">CameraControl</a></li>
<li><a href="../classes/CameraFlightAnimation.html">CameraFlightAnimation</a></li>
<li><a href="../classes/CameraFollowAnimation.html">CameraFollowAnimation</a></li>
<li><a href="../classes/CameraPath.html">CameraPath</a></li>
<li><a href="../classes/CameraPathAnimation.html">CameraPathAnimation</a></li>
<li><a href="../classes/Canvas.html">Canvas</a></li>
<li><a href="../classes/Clip.html">Clip</a></li>
<li><a href="../classes/ClipControl.html">ClipControl</a></li>
<li><a href="../classes/ClipHelper.html">ClipHelper</a></li>
<li><a href="../classes/Component.html">Component</a></li>
<li><a href="../classes/CubeTexture.html">CubeTexture</a></li>
<li><a href="../classes/CubicBezierCurve.html">CubicBezierCurve</a></li>
<li><a href="../classes/Curve.html">Curve</a></li>
<li><a href="../classes/CustomProjection.html">CustomProjection</a></li>
<li><a href="../classes/CylinderGeometry.html">CylinderGeometry</a></li>
<li><a href="../classes/DirLight.html">DirLight</a></li>
<li><a href="../classes/EdgeMaterial.html">EdgeMaterial</a></li>
<li><a href="../classes/EmphasisMaterial.html">EmphasisMaterial</a></li>
<li><a href="../classes/Fresnel.html">Fresnel</a></li>
<li><a href="../classes/Frustum.html">Frustum</a></li>
<li><a href="../classes/Geometry.html">Geometry</a></li>
<li><a href="../classes/GeometryBuilder.html">GeometryBuilder</a></li>
<li><a href="../classes/GLTFModel.html">GLTFModel</a></li>
<li><a href="../classes/Group.html">Group</a></li>
<li><a href="../classes/Input.html">Input</a></li>
<li><a href="../classes/LambertMaterial.html">LambertMaterial</a></li>
<li><a href="../classes/LightMap.html">LightMap</a></li>
<li><a href="../classes/Material.html">Material</a></li>
<li><a href="../classes/Mesh.html">Mesh</a></li>
<li><a href="../classes/MetallicMaterial.html">MetallicMaterial</a></li>
<li><a href="../classes/Model.html">Model</a></li>
<li><a href="../classes/OBBGeometry.html">OBBGeometry</a></li>
<li><a href="../classes/Object.html">Object</a></li>
<li><a href="../classes/OBJModel.html">OBJModel</a></li>
<li><a href="../classes/Ortho.html">Ortho</a></li>
<li><a href="../classes/OutlineMaterial.html">OutlineMaterial</a></li>
<li><a href="../classes/Path.html">Path</a></li>
<li><a href="../classes/PathGeometry.html">PathGeometry</a></li>
<li><a href="../classes/Perspective.html">Perspective</a></li>
<li><a href="../classes/PhongMaterial.html">PhongMaterial</a></li>
<li><a href="../classes/Pin.html">Pin</a></li>
<li><a href="../classes/PlaneGeometry.html">PlaneGeometry</a></li>
<li><a href="../classes/PlaneHelper.html">PlaneHelper</a></li>
<li><a href="../classes/PointLight.html">PointLight</a></li>
<li><a href="../classes/QuadraticBezierCurve.html">QuadraticBezierCurve</a></li>
<li><a href="../classes/ReflectionMap.html">ReflectionMap</a></li>
<li><a href="../classes/Scene.html">Scene</a></li>
<li><a href="../classes/SceneJSModel.html">SceneJSModel</a></li>
<li><a href="../classes/Shadow.html">Shadow</a></li>
<li><a href="../classes/Skybox.html">Skybox</a></li>
<li><a href="../classes/SpecularMaterial.html">SpecularMaterial</a></li>
<li><a href="../classes/SphereGeometry.html">SphereGeometry</a></li>
<li><a href="../classes/Spinner.html">Spinner</a></li>
<li><a href="../classes/SplineCurve.html">SplineCurve</a></li>
<li><a href="../classes/SplineCurveHelper.html">SplineCurveHelper</a></li>
<li><a href="../classes/SpotLight.html">SpotLight</a></li>
<li><a href="../classes/StereoEffect.html">StereoEffect</a></li>
<li><a href="../classes/STLModel.html">STLModel</a></li>
<li><a href="../classes/Story.html">Story</a></li>
<li><a href="../classes/TeapotGeometry.html">TeapotGeometry</a></li>
<li><a href="../classes/TestModel.html">TestModel</a></li>
<li><a href="../classes/Texture.html">Texture</a></li>
<li><a href="../classes/TorusGeometry.html">TorusGeometry</a></li>
<li><a href="../classes/VectorTextGeometry.html">VectorTextGeometry</a></li>
<li><a href="../classes/Viewport.html">Viewport</a></li>
<li><a href="../classes/xeogl.xeogl.html">xeogl.xeogl</a></li>
</ul>
<ul id="api-modules" class="apis modules">
<li><a href="..//modules/animation.html">animation</a></li>
<li><a href="..//modules/annotations.html">annotations</a></li>
<li><a href="..//modules/camera.html">camera</a></li>
<li><a href="..//modules/canvas.html">canvas</a></li>
<li><a href="..//modules/clipping.html">clipping</a></li>
<li><a href="..//modules/controls.html">controls</a></li>
<li><a href="..//modules/curves.html">curves</a></li>
<li><a href="..//modules/effects.html">effects</a></li>
<li><a href="..//modules/generation.html">generation</a></li>
<li><a href="..//modules/geometry.html">geometry</a></li>
<li><a href="..//modules/helpers.html">helpers</a></li>
<li><a href="..//modules/input.html">input</a></li>
<li><a href="..//modules/lighting.html">lighting</a></li>
<li><a href="..//modules/materials.html">materials</a></li>
<li><a href="..//modules/math.html">math</a></li>
<li><a href="..//modules/meshes.html">meshes</a></li>
<li><a href="..//modules/models.html">models</a></li>
<li><a href="..//modules/objects.html">objects</a></li>
<li><a href="..//modules/rendering.html">rendering</a></li>
<li><a href="..//modules/scene.html">scene</a></li>
<li><a href="..//modules/skyboxes.html">skyboxes</a></li>
<li><a href="..//modules/stories.html">stories</a></li>
<li><a href="..//modules/xeogl.html">xeogl</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="yui3-u-3-4">
<!--<div id="api-options">-->
<!--Show:-->
<!--<label for="api-show-inherited">-->
<!--<input type="checkbox" id="api-show-inherited" checked>-->
<!--Inherited-->
<!--</label>-->
<!--<label for="api-show-protected">-->
<!--<input type="checkbox" id="api-show-protected">-->
<!--Protected-->
<!--</label>-->
<!--<label for="api-show-private">-->
<!--<input type="checkbox" id="api-show-private">-->
<!--Private-->
<!--</label>-->
<!--<label for="api-show-deprecated">-->
<!--<input type="checkbox" id="api-show-deprecated">-->
<!--Deprecated-->
<!--</label>-->
<!--</div>-->
<div class="apidocs">
<div id="docs-main">
<div class="content">
<h1 class="file-heading">File: /home/lindsay/xeolabs/xeogl-next/xeogl/src/canvas/spinner.js</h1>
<div class="file">
<pre class="code prettyprint linenums">
/**
A Progress displays a progress animation at the center of its {{#crossLink "Canvas"}}{{/crossLink}} while things are loading or otherwise busy.
## Overview
* Spinners are normally shown by {{#crossLink "Model"}}Models{{/crossLink}} while they are loading, however they may also
be shown by any application code that wants to indicate busyness.
* By default, they are also shown by components that load assets, such as {{#crossLink "Texture"}}{{/crossLink}}. You
can disable that by flipping the Spinner's {{#crossLink "Spinner/textures:property"}}{{/crossLink}} property.
* A Spinner component has a {{#crossLink "Spinner/processes:property"}}{{/crossLink}} count that indicates how many
active processes it currently represents. As a process starts, a process would increment {{#crossLink "Spinner/processes:property"}}{{/crossLink}}, then as it
completes (or fails), would decrement it again.
* A Spinner is only visible while {{#crossLink "Spinner/processes:property"}}{{/crossLink}} is greater than zero.
## Examples
* [Loading glTF model with spinner](../../examples/#importing_gltf_GearboxAssy)
## Usage
````javascript
var spinner = myScene.canvas.spinner;
// Increment count of busy processes represented by the spinner;
// assuming the count was zero, this now shows the spinner
spinner.processes++;
// Increment the count again, by some other process;
// spinner already visible, now requires two decrements
// before it becomes invisible again
spinner.processes++;
// Decrement the count; count still greater
// than zero, so spinner remains visible
spinner.process--;
// Decrement the count; count now zero,
// so spinner becomes invisible
spinner.process--;
````
By default, a Spinner shows while resources are loading for components like
{{#crossLink "Texture"}}{{/crossLink}}. We can disable that like this:
````javascript
// Don't show while resources are loading for Textures etc.
spinner.textures = false;
````
@class Spinner
@module xeogl
@submodule canvas
@extends Component
*/
import {Component} from '../component.js';
const type = "xeogl.Spinner";
let spinnerCSSInjected = false; // Ensures lazy-injected CSS only injected once
const spinnerCSS = ".sk-fading-circle {\
background: transparent;\
margin: 20px auto;\
width: 50px;\
height:50px;\
position: relative;\
}\
.sk-fading-circle .sk-circle {\
width: 120%;\
height: 120%;\
position: absolute;\
left: 0;\
top: 0;\
}\
.sk-fading-circle .sk-circle:before {\
content: '';\
display: block;\
margin: 0 auto;\
width: 15%;\
height: 15%;\
background-color: #ff8800;\
border-radius: 100%;\
-webkit-animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;\
animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;\
}\
.sk-fading-circle .sk-circle2 {\
-webkit-transform: rotate(30deg);\
-ms-transform: rotate(30deg);\
transform: rotate(30deg);\
}\
.sk-fading-circle .sk-circle3 {\
-webkit-transform: rotate(60deg);\
-ms-transform: rotate(60deg);\
transform: rotate(60deg);\
}\
.sk-fading-circle .sk-circle4 {\
-webkit-transform: rotate(90deg);\
-ms-transform: rotate(90deg);\
transform: rotate(90deg);\
}\
.sk-fading-circle .sk-circle5 {\
-webkit-transform: rotate(120deg);\
-ms-transform: rotate(120deg);\
transform: rotate(120deg);\
}\
.sk-fading-circle .sk-circle6 {\
-webkit-transform: rotate(150deg);\
-ms-transform: rotate(150deg);\
transform: rotate(150deg);\
}\
.sk-fading-circle .sk-circle7 {\
-webkit-transform: rotate(180deg);\
-ms-transform: rotate(180deg);\
transform: rotate(180deg);\
}\
.sk-fading-circle .sk-circle8 {\
-webkit-transform: rotate(210deg);\
-ms-transform: rotate(210deg);\
transform: rotate(210deg);\
}\
.sk-fading-circle .sk-circle9 {\
-webkit-transform: rotate(240deg);\
-ms-transform: rotate(240deg);\
transform: rotate(240deg);\
}\
.sk-fading-circle .sk-circle10 {\
-webkit-transform: rotate(270deg);\
-ms-transform: rotate(270deg);\
transform: rotate(270deg);\
}\
.sk-fading-circle .sk-circle11 {\
-webkit-transform: rotate(300deg);\
-ms-transform: rotate(300deg);\
transform: rotate(300deg);\
}\
.sk-fading-circle .sk-circle12 {\
-webkit-transform: rotate(330deg);\
-ms-transform: rotate(330deg);\
transform: rotate(330deg);\
}\
.sk-fading-circle .sk-circle2:before {\
-webkit-animation-delay: -1.1s;\
animation-delay: -1.1s;\
}\
.sk-fading-circle .sk-circle3:before {\
-webkit-animation-delay: -1s;\
animation-delay: -1s;\
}\
.sk-fading-circle .sk-circle4:before {\
-webkit-animation-delay: -0.9s;\
animation-delay: -0.9s;\
}\
.sk-fading-circle .sk-circle5:before {\
-webkit-animation-delay: -0.8s;\
animation-delay: -0.8s;\
}\
.sk-fading-circle .sk-circle6:before {\
-webkit-animation-delay: -0.7s;\
animation-delay: -0.7s;\
}\
.sk-fading-circle .sk-circle7:before {\
-webkit-animation-delay: -0.6s;\
animation-delay: -0.6s;\
}\
.sk-fading-circle .sk-circle8:before {\
-webkit-animation-delay: -0.5s;\
animation-delay: -0.5s;\
}\
.sk-fading-circle .sk-circle9:before {\
-webkit-animation-delay: -0.4s;\
animation-delay: -0.4s;\
}\
.sk-fading-circle .sk-circle10:before {\
-webkit-animation-delay: -0.3s;\
animation-delay: -0.3s;\
}\
.sk-fading-circle .sk-circle11:before {\
-webkit-animation-delay: -0.2s;\
animation-delay: -0.2s;\
}\
.sk-fading-circle .sk-circle12:before {\
-webkit-animation-delay: -0.1s;\
animation-delay: -0.1s;\
}\
@-webkit-keyframes sk-circleFadeDelay {\
0%, 39%, 100% { opacity: 0; }\
40% { opacity: 1; }\
}\
@keyframes sk-circleFadeDelay {\
0%, 39%, 100% { opacity: 0; }\
40% { opacity: 1; }\
}";
class Spinner extends Component {
/**
JavaScript class name for this Component.
For example: "xeogl.AmbientLight", "xeogl.MetallicMaterial" etc.
@property type
@type String
@final
*/
get type() {
return type;
}
init(cfg) {
super.init(cfg);
this._canvas = cfg.canvas;
this._injectSpinnerCSS();
const div = document.createElement('div');
const style = div.style;
style["z-index"] = "9000";
style.position = "absolute";
div.innerHTML = '<div class="sk-fading-circle">\
<div class="sk-circle1 sk-circle"></div>\
<div class="sk-circle2 sk-circle"></div>\
<div class="sk-circle3 sk-circle"></div>\
<div class="sk-circle4 sk-circle"></div>\
<div class="sk-circle5 sk-circle"></div>\
<div class="sk-circle6 sk-circle"></div>\
<div class="sk-circle7 sk-circle"></div>\
<div class="sk-circle8 sk-circle"></div>\
<div class="sk-circle9 sk-circle"></div>\
<div class="sk-circle10 sk-circle"></div>\
<div class="sk-circle11 sk-circle"></div>\
<div class="sk-circle12 sk-circle"></div>\
</div>';
this._canvas.parentElement.appendChild(div);
this._element = div;
this._adjustPosition();
this.processes = 0;
}
/**
The number of processes this Spinner represents.
The Spinner is visible while this property is greater than zero.
Increment this property whenever you commence some process during which you want
the Spinner to be visible, then decrement it again when the process is complete.
Clamps to zero if you attempt to set to to a negative value.
Fires a {{#crossLink "Spinner/processes:event"}}{{/crossLink}} event on change.
@property processes
@default 0
@type Number
*/
set processes(value) {
value = value || 0;
if (this._processes === value) {
return;
}
if (value < 0) {
return;
}
const prevValue = this._processes;
this._processes = value;
this._element.style["visibility"] = (this._processes > 0) ? "visible" : "hidden";
/**
Fired whenever this Spinner's {{#crossLink "Spinner/visible:property"}}{{/crossLink}} property changes.
@event processes
@param value The property's new value
*/
this.fire("processes", this._processes);
if (this._processes === 0 && this._processes !== prevValue) {
/**
Fired whenever this Spinner's {{#crossLink "Spinner/visible:property"}}{{/crossLink}} property becomes zero.
@event zeroProcesses
*/
this.fire("zeroProcesses", this._processes);
}
}
get processes() {
return this._processes;
}
_adjustPosition() { // (Re)positions spinner DIV over the center of the canvas
if (!this._canvas || !this._element) {
return;
}
const canvas = this._canvas;
const spinner = this._element;
const spinnerStyle = spinner.style;
spinnerStyle["left"] = (canvas.offsetLeft + (canvas.clientWidth * 0.5) - (spinner.clientWidth * 0.5)) + "px";
spinnerStyle["top"] = (canvas.offsetTop + (canvas.clientHeight * 0.5) - (spinner.clientHeight * 0.5)) + "px";
}
_injectSpinnerCSS() {
if (spinnerCSSInjected) {
return;
}
const node = document.createElement('style');
node.innerHTML = spinnerCSS;
document.body.appendChild(node);
spinnerCSSInjected = true;
}
}
export{Spinner};
</pre>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="../assets/vendor/prettify/prettify-min.js"></script>
<script>prettyPrint();</script>
<script src="../assets/js/yui-prettify.js"></script>
<script src="../assets/../api.js"></script>
<script src="../assets/js/api-filter.js"></script>
<script src="../assets/js/api-list.js"></script>
<script src="../assets/js/api-search.js"></script>
<script src="../assets/js/apidocs.js"></script>
</body>
</html>
| xeolabs/xeoengine | docs/files/_home_lindsay_xeolabs_xeogl-next_xeogl_src_canvas_spinner.js.html | HTML | mit | 23,293 |
{% extends "base.html" %}
{% block title %}Submit A Game!{% endblock %}
{% block extra_includes %}
{% load staticfiles %}
<script type="text/javascript" src="{% static 'MatchHistory/js/core.js' %}"></script>
{% endblock %}
<!-- Jumbotron -->
{% block jumbotron %}
<h1>Submit A Game!</h1>
<p class="lead">Select the game you wish to add to the ladder from the text box below.</p>
{% endblock %}
{% block feature %}
<div class="panel panel-default">
<div class="panel-heading"><span class="bold">Selected Games</span></div>
<div class="panel-body">
{% if not_valid %}
<div id='no_replay_warning' class="alert alert-warning" role="alert">
<strong>Warning!</strong> Please attach a valid SC2 Replay to submit.
</div>
<div id='bad_file_warning' class="alert alert-warning" role="alert" style='display:none;'>
<strong>Warning!</strong> Only .SC2Replays files will be accepted, please remove all other files.
</div>
{% else %}
<div id='no_replay_warning' class="alert alert-warning" role="alert" style='display:none;'>
<strong>Warning!</strong> Please attach a valid SC2 Replay to submit.
</div>
<div id='bad_file_warning' class="alert alert-warning" role="alert" style='display:none;'>
<strong>Warning!</strong> Only .SC2Replays files will be accepted, please remove all other files.
</div>
{% endif %}
<form name="ReplayForm" action="{% url 'MatchHistory:SubmitText' %}" method="POST" enctype="multipart/form-data">
{% csrf_token %}
<input id = 'file' class="file_btn" style="display:inline; width:600px;" type="file" name="file" multiple="" accept=".SC2Replay">
<input class="btn" value="Submit Replay(s)" onclick='SubmitFormReplay();'>
</form>
</div>
</div>
{% endblock %}
{% block content %}
{% endblock %}
| RyanNoelk/ClanLadder | MatchHistory/templates/MatchHistory/SubmitReplay.html | HTML | mit | 2,203 |
<HTML>
<Header>
<Title>ces_usuario_rol_id_Idx - Index</Title>
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
<Link href="../css/doc.css" rel="stylesheet" type="text/css">
</Header>
<Body>
<table class="logo">
<tr>
<td class="logo">control_entrada_salida</td>
</tr>
</table>
<table class="horzMenu">
<tr>
<td class="horzMenu"><a class="horzMenu" href="../index.html"> Home</a></td><td class="horzMenu">|</td><td class="horzMenu"><a class="horzMenu" href="../tables/index.html">Tables</a></td><td class="horzMenu">|</td><td class="horzMenu"><a class="horzMenu" href="../schemas/index.html">Schemas</a></td><td class="horzMenu">|</td><td class="horzMenu"><a class="horzMenu" href="../diagrams/index.html">Diagrams</a></td><td class="horzMenu">|</td><td class="horzMenu"><a class="horzMenu" href="../foreignKeys/index.html">Foreign Keys</a></td><td class="horzMenu">|</td><td class="horzMenu"><a class="horzMenu" href="../indexes/index.html">Indexes</a></td><td class="horzMenuFiller"></td>
</tr>
</table>
<hr>
<table class="flat">
<tr class="banner">
<td class="title_nm">ces_usuario_rol_id_Idx</td><td class="watermark_right">(Index)</td>
</tr>
<tr>
<td class="key">Name</td><td class="value">ces_usuario_rol_id_Idx</td>
</tr>
<tr>
<td class="key">Table</td><td class="value"><a href="../tables/public_ces_usuario.html">ces_usuario</a></td>
</tr>
<tr>
<td class="key">Columns</td><td class="value">rol_id</td>
</tr>
<tr>
<td class="key">Unique</td><td class="value"> </td>
</tr>
<tr>
<td class="key">Clustered</td><td class="value"> </td>
</tr>
</table>
</Body>
</HTML>
| AlejandroMorales92/Ingressum | documentación/01. Requerimientos/05.Diccionario_de_datos/indexes/public_ces_usuario_ces_usuario_rol_id_Idx.html | HTML | mit | 1,629 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>sudoku: 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.2 / sudoku - 8.10.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
sudoku
<small>
8.10.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2021-11-26 20:00:27 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-11-26 20:00:27 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
coq 8.11.2 Formal proof management system
num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.06.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.06.1 Official 4.06.1 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/ftp://ftp-sop.inria.fr/lemme/Laurent.Thery/Sudoku.zip"
license: "LGPL 2.1"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/Sudoku"]
depends: [
"ocaml"
"coq" {>= "8.10" & < "8.11~"}
]
tags: [
"keyword: sudoku"
"keyword: puzzles"
"keyword: Davis-Putnam"
"category: Miscellaneous/Logical Puzzles and Entertainment"
"date: 2006-02"
]
authors: [
"Laurent Théry <thery@sophia.inria.fr> [http://www-sop.inria.fr/lemme/personnel/Laurent.Thery/me.html]"
]
bug-reports: "https://github.com/coq-contribs/sudoku/issues"
dev-repo: "git+https://github.com/coq-contribs/sudoku.git"
synopsis: "A certified Sudoku solver"
description: """
A formalisation of Sudoku in Coq. It implements a naive
Davis-Putnam procedure to solve sudokus."""
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/sudoku/archive/v8.10.0.tar.gz"
checksum: "md5=2dd3436d8554551fc30c0b5607e02363"
}
</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-sudoku.8.10.0 coq.8.11.2</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.2).
The following dependencies couldn't be met:
- coq-sudoku -> coq < 8.11~ -> ocaml < 4.06.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-sudoku.8.10.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.06.1-2.0.5/released/8.11.2/sudoku/8.10.0.html | HTML | mit | 6,958 |
<form method="post">{% csrf_token %}
Are you sure?
<input type="submit">delete</a>
</form>
| tshm/django_meibo_experiment | meibos/templates/delete.html | HTML | mit | 95 |
<!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="./85e8e7c064f53c1bec14feb3c4f9b38a07594430e3bbd0823ce904650c2681b0.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/5cff88730487283032e7f02d86468e561d992c36e096a550c86bffffdd803d6a.html | HTML | mit | 550 |
<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"> 此處所列為「紙上談兵」之典故說明,提供參考。</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/2000-2999/2989-32.html | HTML | mit | 2,379 |
<!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_13) on Mon Dec 14 15:25:08 MSK 2009 -->
<TITLE>
Uses of Class org.apache.poi.util.DrawingDump (POI API Documentation)
</TITLE>
<META NAME="date" CONTENT="2009-12-14">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class org.apache.poi.util.DrawingDump (POI API Documentation)";
}
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<HR>
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../org/apache/poi/util/DrawingDump.html" title="class in org.apache.poi.util"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../index.html?org/apache/poi/util/\class-useDrawingDump.html" target="_top"><B>FRAMES</B></A>
<A HREF="DrawingDump.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<CENTER>
<H2>
<B>Uses of Class<br>org.apache.poi.util.DrawingDump</B></H2>
</CENTER>
No usage of org.apache.poi.util.DrawingDump
<P>
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../org/apache/poi/util/DrawingDump.html" title="class in org.apache.poi.util"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../index.html?org/apache/poi/util/\class-useDrawingDump.html" target="_top"><B>FRAMES</B></A>
<A HREF="DrawingDump.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
<i>Copyright 2009 The Apache Software Foundation or
its licensors, as applicable.</i>
</BODY>
</HTML>
| tobyclemson/msci-project | vendor/poi-3.6/doc/apidocs/org/apache/poi/util/class-use/DrawingDump.html | HTML | mit | 6,149 |
<!doctype html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="en"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]-->
<!--[if gt IE 8]><!-->
<!--<![endif]-->
<html class="no-js" lang="en"><!-- InstanceBegin template="/Templates/wfbext_template.dwt.cfm" codeOutsideHTMLIsLocked="false" -->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<!-- InstanceBeginEditable name="doctitle" -->
<title>The World Factbook</title>
<!-- InstanceEndEditable -->
<meta name="description" content="">
<meta name="viewport" content="width=device-width">
<link href="../css/fullscreen-external.css" rel="stylesheet" type="text/css">
<script src="../js/modernizr-latest.js"></script><!--developers version - switch to specific production http://modernizr.com/download/-->
<script type="text/javascript" src="../js/jquery-1.8.3.min.js"></script>
<script type="text/javascript" src="../js/jquery.main.js"></script>
<link rel="stylesheet" type="text/css" href="../styles/jquery.ui.core.css">
<link rel="stylesheet" type="text/css" href="../styles/jquery.qtip.css">
<link rel="stylesheet" type="text/css" href="../styles/listnav.css"/>
<link rel="stylesheet" type="text/css" href="../styles/navigation.css">
<link rel="stylesheet" type="text/css" href="../styles/wfb_styles.css">
<link rel="stylesheet" type="text/css" href="../scripts/galleria/themes/classic/galleria.classic.css">
<script type="text/javascript" src="../scripts/jquery.idTabs.min.js" charset="utf-8"></script>
<script type="text/javascript" src="../scripts/jquery.listmenu.js"></script>
<script type="text/javascript" src="../scripts/jquery.listnav.pack.2.1.js" charset="utf-8"></script>
<script src="../scripts/jquery-ui-1.9.2.custom.js" type="text/javascript"></script>
<script type="text/javascript" src="../scripts/jquery.qtip-2.0.js"></script>
<script type="text/javascript" src="../scripts/jquery.qtip.min.js"></script>
<script src="../scripts/imgscale.js"></script>
<script type="text/javascript" src="../scripts/wfb_scripts.js" charset="utf-8"></script>
<!--[if IE]><script type="text/javascript" src="../js/ie.js"></script><![endif]-->
<!-- InstanceBeginEditable name="head" -->
<!-- load Galleria -->
<link rel="stylesheet" type="text/css" href="../scripts/galleria/themes/classic/galleria.classic.css">
<script src="../scripts/galleria/galleria-1.2.9.min.js"></script>
<!-- InstanceEndEditable -->
</head>
<body>
<noscript>Javascript must be enabled for the correct page display</noscript>
<div id="wrapper">
<header id="header">
<div class="header-holder">
<a class="skip" accesskey="S" href="#main-content">skip to content</a>
<span class="bg-globe"></span>
<div class="header-panel">
<hgroup>
<h1 class="logo"><a href="/"><img src="../images/logo.png" alt="Central Intelligence Agency"><span>Central Intelligence Agency</span></a></h1>
<h2 class="work-text">The Work Of A Nation. The Center of Intelligence.</h2>
</hgroup>
<div class="search-form">
<div class="row">
<div class="add-nav">
<ul>
<li><a class="active" href="/contact-cia/report-threats.html">Report Threats</a></li>
<li><a href="/about-cia/iraqi-rewards-program.html">رعربيعربي</a></li>
<li><a href="/contact-cia/index.html" title="A single point of contact for all CIA inquiries.">Contact</a></li>
</ul>
</div>
</div>
<div class="row">
<form id="ciaSearchForm" method="get" action="/search">
<fieldset>
<legend class="visuallyhidden">Search CIA.gov</legend>
<label class="visuallyhidden" for="q">Search</label>
<input name="q" type="text" class="text" id="q" maxlength="2047" placeholder="Search CIA.gov..."/>
<input type="hidden" name="site" value="CIA" />
<input type="hidden" name="output" value="xml_no_dtd" />
<input type="hidden" name="client" value="CIA" />
<input type="hidden" name="myAction" value="/search" />
<input type="hidden" name="proxystylesheet" value="CIA" />
<input type="hidden" name="submitMethod" value="get" />
<input type="submit" value="Search" class="submit" />
</fieldset>
</form>
</div>
<div class="row">
<ul class="lang-list">
<li lang="ar" xml:lang="ar"><a href="/ar/index.html">عربي</a></li>
<li lang="zh-cn" xml:lang="zh-cn"><a href="/zh/index.html">中文</a></li>
<li lang="en" xml:lang="en"><a href="/index.html">English</a></li>
<li lang="fr" xml:lang="fr"><a href="/fr/index.html">Français</a></li>
<li lang="ru" xml:lang="ru"><a href="/ru/index.html">Русский</a></li>
<li lang="es" xml:lang="es"><a href="/es/index.html">Español</a></li>
<li lang="en" xml:lang="en"><a title="additional-info" class="more" href="/foreign-languages/index.html">More<span class="visuallyhidden"> Languages</span></a></li>
</ul>
</div>
</div>
</div>
<nav id="nav">
<h3 class="visuallyhidden">Navigation</h3>
<ul>
<li>
<a href="/">Home</a>
<span class="arrow"></span>
</li>
<li>
<a href="/about-cia/">About CIA</a>
<span class="arrow"></span>
<div class="drop">
<ul>
<li><a href="/about-cia/todays-cia/index.html">Today's CIA</a></li>
<li><a href="/about-cia/leadership/index.html">Leadership</a></li>
<li><a href="/about-cia/cia-vision-mission-values/index.html">CIA Vision, Mission & Values</a></li>
<li><a href="/about-cia/headquarters-tour/index.html">Tour Headquarters</a></li>
<li><a href="/about-cia/cia-museum/index.html">CIA Museum</a></li>
<li><a href="/about-cia/history-of-the-cia/index.html">History of the CIA</a></li>
<li><a href="/about-cia/faqs/index.html">FAQs</a></li>
<li><a href="/about-cia/no-fear-act/index.html">NoFEAR Act</a></li>
<li><a href="/about-cia/site-policies/index.html">Site Policies</a></li>
</ul>
<div class="info-box">
<img src="../images/navthumb-about.jpg" alt="About CIA" />
<h4>About CIA</h4>
<p>Discover the CIA <a href="/about-cia/">history, mission, vision and values</a>. </p>
</div>
</div>
</li>
<li>
<a href="/careers/">Careers & Internships</a>
<span class="arrow"></span>
<div class="drop">
<ul>
<li class="plain "> <a class="" href="/careers/opportunities" title="This is an overview of all career opportunities at the CIA. "> <span>Career Opportunities </span> </a> </li>
<li class="plain "> <a class="" href="/careers/student-opportunities" title="This is the student profile page for candidates looking for jobs/ job listings at the CIA. Student Opportunities - Student Profiles"> <span>Student Opportunities</span> </a> </li>
<li class="plain "> <a class="" href="/careers/application-process" title="How to apply to the CIA."> <span>Application Process</span> </a> </li>
<li class="plain "> <a class="" href="/careers/life-at-cia" title="This is the about CIA section of the Careers Site"> <span>Life at CIA</span> </a> </li>
<li class="plain "> <a class="" href="/careers/diversity" title="This is the diversity information for the Careers Site"> <span>Diversity</span> </a> </li>
<li class="plain "> <a class="" href="/careers/military-transition" title="Your prior military service could qualify you to continue to serve your nation at the Central Intelligence Agency. Opportunities for qualified applicants are available in the U.S. and abroad."> <span>Military Transition</span> </a> </li>
<li class="plain "> <a class="" href="/careers/games-information" title=""> <span>Diversions & Information</span> </a> </li>
<li class="plain "> <a class="" href="/careers/faq" title="Frequently Asked Questions/ FAQ for a Career at the CIA in the Careers Section"> <span>FAQs</span> </a> </li>
</ul>
<div class="info-box">
<img src="../images/navthumb-careers.jpg" alt="Careers & Internships" />
<h4>Careers & Internships</h4>
<p>Your talent. Your diverse skills. Our mission. Learn more about <a href="/careers/">Careers Opportunities at CIA</a>.</p>
</div>
</div>
</li>
<li>
<a href="/offices-of-cia/">Offices of CIA</a>
<span class="arrow"></span>
<div class="drop">
<ul>
<li class="plain "> <a class="" href="/offices-of-cia/intelligence-analysis" title=""> <span>Intelligence & Analysis</span> </a> </li>
<li class="plain "> <a class="" href="/offices-of-cia/clandestine-service" title=""> <span>Clandestine Service</span> </a> </li>
<li class="plain "> <a class="" href="/offices-of-cia/science-technology" title=""> <span>Science & Technology</span> </a> </li>
<li class="plain "> <a class="" href="/offices-of-cia/mission-support" title=""> <span>Support to Mission</span> </a> </li>
<li class="plain "> <a class="" href="/offices-of-cia/human-resources" title=""> <span>Human Resources</span> </a> </li>
<li class="plain "> <a class="" href="/offices-of-cia/public-affairs" title="Public Affairs"> <span>Public Affairs</span> </a> </li>
<li class="plain "> <a class="" href="/offices-of-cia/general-counsel" title=""> <span>General Counsel</span> </a> </li>
<li class="plain "> <a class="" href="/offices-of-cia/equal-employment-opportunity" title=""> <span>Equal Employment Opportunity</span> </a> </li>
<li class="plain "> <a class="" href="/offices-of-cia/congressional-affairs" title="Office of Congressional Affairs"> <span>Congressional Affairs</span> </a> </li>
<li class="plain "> <a class="" href="/offices-of-cia/inspector-general" title="Inspector General"> <span>Inspector General</span> </a> </li>
<li class="plain "> <a class="" href="/offices-of-cia/military-affairs" title="Military Affairs"> <span>Military Affairs</span> </a> </li>
</ul>
<div class="info-box">
<img src="../images/navthumb-offices.jpg" alt="Offices of CIA" />
<h4>Offices of CIA</h4>
<p><a href="/offices-of-cia/">Learn how the CIA is organized</a> into directorates and key offices, responsible for securing our nation.</p>
</div>
</div>
</li>
<li>
<a href="/news-information/">News & Information</a>
<span class="arrow"></span>
<div class="drop">
<ul>
<li class="plain "> <a class="" href="/news-information/press-releases-statements" title=""> <span>Press Releases & Statements</span> </a> </li>
<li class="plain "> <a class="" href="/news-information/speeches-testimony" title=""> <span>Speeches & Testimony</span> </a> </li>
<li class="plain "> <a class="" href="/news-information/cia-the-war-on-terrorism" title=""> <span>CIA & the War on Terrorism</span> </a> </li>
<li class="plain "> <a class="" href="/news-information/featured-story-archive" title="index for featured story"> <span>Featured Story Archive</span> </a> </li>
<li class="plain "> <a class="" href="/news-information/Whats-New-on-CIAgov" title=""> <span>What’s New Archive</span> </a> </li>
<li class="plain "> <a class="" href="/news-information/your-news" title=""> <span>Your News</span> </a> </li>
</ul>
<div class="info-box">
<img src="../images/navthumb-news.jpg" alt="News & Information" />
<h4>News & Information</h4>
<p>The most up-to-date CIA <a href="/news-information/">news, press releases, information and more</a>.</p>
</div>
</div>
</li>
<li class="active">
<a href="/library/">Library</a>
<span class="arrow"></span>
<div class="drop right">
<ul>
<li class="plain "> <a class="" href="/library/publications" title=""> <span>Publications</span> </a> </li>
<li class="plain "> <a class="" href="/library/center-for-the-study-of-intelligence" title="CSI section"> <span>Center for the Study of Intelligence</span> </a> </li>
<li class="plain "> <a class="" href="/library/foia" title=""> <span>Freedom of Information Act Electronic Reading Room</span> </a> </li>
<li class="plain "> <a class="" href="/library/kent-center-occasional-papers" title=""> <span>Kent Center Occasional Papers</span> </a> </li>
<li class="plain "> <a class="" href="/library/intelligence-literature" title=""> <span>Intelligence Literature</span> </a> </li>
<li class="plain "> <a class="" href="/library/reports" title="Reports"> <span>Reports</span> </a> </li>
<li class="plain "> <a class="" href="/library/related-links.html" title="Related Links"> <span>Related Links</span> </a> </li>
<li class="plain "> <a class="" href="/library/video-center" title="Repository of CIA videos"> <span>Video Center</span> </a> </li>
</ul>
<div class="info-box">
<img src="../images/navthumb-library.jpg" alt="Library" />
<h4>Library</h4>
<p>Our <a href="/library/">open-source library</a> houses the thousands of documents, periodicals, maps and reports released to the public.</p>
</div>
</div>
</li>
<li class="last">
<a href="/kids-page/">Kids' Zone</a>
<span class="arrow"></span>
<div class="drop right">
<ul>
<li class="plain "> <a class="" href="/kids-page/k-5th-grade" title="K-5th Grade"> <span>K-5th Grade</span> </a> </li>
<li class="plain "> <a class="" href="/kids-page/6-12th-grade" title=""> <span>6-12th Grade</span> </a> </li>
<li class="plain "> <a class="" href="/kids-page/parents-teachers" title=""> <span>Parents & Teachers</span> </a> </li>
<li class="plain "> <a class="" href="/kids-page/games" title=""> <span>Games</span> </a> </li>
<li class="plain "> <a class="" href="/kids-page/related-links" title=""> <span>Related Links</span> </a> </li>
<li class="plain "> <a class="" href="/kids-page/privacy-statement" title=""> <span>Privacy Statement</span> </a> </li>
</ul>
<div class="info-box">
<img src="../images/navthumb-kids.jpg" alt="Kids' Zone" />
<h4>Kids' Zone</h4>
<p><a href="/kids-page/">Learn more about the Agency</a> – and find some top secret things you won't see anywhere else.</p>
</div>
</div>
</li>
</ul>
</nav>
</div>
</header>
<div class="main-block">
<section id="main">
<div class="heading-panel">
<h1>Library</h1>
</div>
<div class="main-holder">
<div id="sidebar">
<nav class="sidebar-nav">
<h2 class="visuallyhidden">Secondary Navigation</h2>
<ul>
<li><a class="active" href="/library/">Library</a></li>
<li>
<a href="/library/publications/">Publications</a>
<ul>
<li class="mark"><a class="active" href="/library/publications/the-world-factbook/">The World Factbook</a></li>
<li><a href="/library/publications/world-leaders-1/">World Leaders</a></li>
<li><a href="/library/publications/cia-maps-publications/">CIA Maps</a></li>
<li><a href="/library/publications/historical-collection-publications/">Historical Collection Publications</a></li>
<li><a href="/library/publications/additional-publications/">Additional Publications</a></li>
</ul>
</li>
<li><a href="/library/center-for-the-study-of-intelligence/">Center for the Study of Intelligence</a></li>
<li><a href="http://www.foia.cia.gov/">Freedom of Information Act Electronic Reading Room</a></li>
<li><a href="/library/kent-center-occasional-papers/">Kent Center Occasional Papers</a></li>
<li><a href="/library/intelligence-literature/">Intelligence Literature: Suggested Reading List</a></li>
<li><a href="/library/reports/">Reports</a></li>
<li><a href="/library/video-center/">Video Center</a></li>
<li><a href="/library/related-links.html">Related Links</a></li>
</ul>
</nav>
</div>
<div id="content">
<ul class="breadcrumbs">
<li><a href="/">Home</a></li>
<li><a href="/library/">Library </a></li>
<li><a href="/library/publications/">Publications</a></li>
<li>The World Factbook</li>
</ul>
<article class="description-box">
<a id="main-content" tabindex="-1"> </a>
<div class="text-holder-full">
<a name="wfbtop"></a>
<div class="text-box" style="width: 770px; float: left;" id="wfb_data">
<table width="100%" border="0" cellpadding="0" cellspacing="0" >
<tr>
<td>
<table width="100%" border="0" cellspacing="0" cellpadding="0" style="padding-top: 10px;height: 50px;">
<tr>
<td valign="top"><img src="../graphics/banner_ext2.png" border="0" title="World Factbook Title" width="770" usemap="#Map" style="padding-bottom: 5px;"/></td>
</tr>
<tr style="height:2px;">
<td></td>
</tr>
</table>
<map name="Map" id="Map">
<area shape="poly" coords="478,17,624,17,615,0,490,0" href="https://www.cia.gov/library/publications/cia-maps-publications/index.html" target="_blank" />
</map>
</td>
</tr>
<tr>
<td align="right" style="padding-top: 5px; padding-bottom: 10px; background-image:url(../graphics/country_gradiant_back.jpg); background-position: top; background-repeat: repeat-x;">
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no">
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<script>
$(document).ready(function() {
// $(".selecter_links").selecter({
// defaultLabel: "Please Select a Country to View",
// links: true
// });
$( ".selecter_links" ).change(function(e) {
if (this.form.selecter_links.selectedIndex > 0) {
window.location = this.form.selecter_links.options[this.form.selecter_links.selectedIndex].value;
}
});
});
</script>
<div class="option_table_wrapper">
<form action="#" method="GET">
<select name="selecter_links" class="selecter_links">
<option value="">Please select a country to view</option>
<option value="../geos/xx.html"> World </option>
<option value="../geos/af.html"> Afghanistan </option>
<option value="../geos/ax.html"> Akrotiri </option>
<option value="../geos/al.html"> Albania </option>
<option value="../geos/ag.html"> Algeria </option>
<option value="../geos/aq.html"> American Samoa </option>
<option value="../geos/an.html"> Andorra </option>
<option value="../geos/ao.html"> Angola </option>
<option value="../geos/av.html"> Anguilla </option>
<option value="../geos/ay.html"> Antarctica </option>
<option value="../geos/ac.html"> Antigua and Barbuda </option>
<option value="../geos/xq.html"> Arctic Ocean </option>
<option value="../geos/ar.html"> Argentina </option>
<option value="../geos/am.html"> Armenia </option>
<option value="../geos/aa.html"> Aruba </option>
<option value="../geos/at.html"> Ashmore and Cartier Islands </option>
<option value="../geos/zh.html"> Atlantic Ocean </option>
<option value="../geos/as.html"> Australia </option>
<option value="../geos/au.html"> Austria </option>
<option value="../geos/aj.html"> Azerbaijan </option>
<option value="../geos/bf.html"> Bahamas, The </option>
<option value="../geos/ba.html"> Bahrain </option>
<option value="../geos/um.html"> Baker Island </option>
<option value="../geos/bg.html"> Bangladesh </option>
<option value="../geos/bb.html"> Barbados </option>
<option value="../geos/bo.html"> Belarus </option>
<option value="../geos/be.html"> Belgium </option>
<option value="../geos/bh.html"> Belize </option>
<option value="../geos/bn.html"> Benin </option>
<option value="../geos/bd.html"> Bermuda </option>
<option value="../geos/bt.html"> Bhutan </option>
<option value="../geos/bl.html"> Bolivia </option>
<option value="../geos/bk.html"> Bosnia and Herzegovina </option>
<option value="../geos/bc.html"> Botswana </option>
<option value="../geos/bv.html"> Bouvet Island </option>
<option value="../geos/br.html"> Brazil </option>
<option value="../geos/io.html"> British Indian Ocean Territory </option>
<option value="../geos/vi.html"> British Virgin Islands </option>
<option value="../geos/bx.html"> Brunei </option>
<option value="../geos/bu.html"> Bulgaria </option>
<option value="../geos/uv.html"> Burkina Faso </option>
<option value="../geos/bm.html"> Burma </option>
<option value="../geos/by.html"> Burundi </option>
<option value="../geos/cv.html"> Cabo Verde </option>
<option value="../geos/cb.html"> Cambodia </option>
<option value="../geos/cm.html"> Cameroon </option>
<option value="../geos/ca.html"> Canada </option>
<option value="../geos/cj.html"> Cayman Islands </option>
<option value="../geos/ct.html"> Central African Republic </option>
<option value="../geos/cd.html"> Chad </option>
<option value="../geos/ci.html"> Chile </option>
<option value="../geos/ch.html"> China </option>
<option value="../geos/kt.html"> Christmas Island </option>
<option value="../geos/ip.html"> Clipperton Island </option>
<option value="../geos/ck.html"> Cocos (Keeling) Islands </option>
<option value="../geos/co.html"> Colombia </option>
<option value="../geos/cn.html"> Comoros </option>
<option value="../geos/cg.html"> Congo, Democratic Republic of the </option>
<option value="../geos/cf.html"> Congo, Republic of the </option>
<option value="../geos/cw.html"> Cook Islands </option>
<option value="../geos/cr.html"> Coral Sea Islands </option>
<option value="../geos/cs.html"> Costa Rica </option>
<option value="../geos/iv.html"> Cote d'Ivoire </option>
<option value="../geos/hr.html"> Croatia </option>
<option value="../geos/cu.html"> Cuba </option>
<option value="../geos/cc.html"> Curacao </option>
<option value="../geos/cy.html"> Cyprus </option>
<option value="../geos/ez.html"> Czech Republic </option>
<option value="../geos/da.html"> Denmark </option>
<option value="../geos/dx.html"> Dhekelia </option>
<option value="../geos/dj.html"> Djibouti </option>
<option value="../geos/do.html"> Dominica </option>
<option value="../geos/dr.html"> Dominican Republic </option>
<option value="../geos/ec.html"> Ecuador </option>
<option value="../geos/eg.html"> Egypt </option>
<option value="../geos/es.html"> El Salvador </option>
<option value="../geos/ek.html"> Equatorial Guinea </option>
<option value="../geos/er.html"> Eritrea </option>
<option value="../geos/en.html"> Estonia </option>
<option value="../geos/et.html"> Ethiopia </option>
<option value="../geos/fk.html"> Falkland Islands (Islas Malvinas) </option>
<option value="../geos/fo.html"> Faroe Islands </option>
<option value="../geos/fj.html"> Fiji </option>
<option value="../geos/fi.html"> Finland </option>
<option value="../geos/fr.html"> France </option>
<option value="../geos/fp.html"> French Polynesia </option>
<option value="../geos/fs.html"> French Southern and Antarctic Lands </option>
<option value="../geos/gb.html"> Gabon </option>
<option value="../geos/ga.html"> Gambia, The </option>
<option value="../geos/gz.html"> Gaza Strip </option>
<option value="../geos/gg.html"> Georgia </option>
<option value="../geos/gm.html"> Germany </option>
<option value="../geos/gh.html"> Ghana </option>
<option value="../geos/gi.html"> Gibraltar </option>
<option value="../geos/gr.html"> Greece </option>
<option value="../geos/gl.html"> Greenland </option>
<option value="../geos/gj.html"> Grenada </option>
<option value="../geos/gq.html"> Guam </option>
<option value="../geos/gt.html"> Guatemala </option>
<option value="../geos/gk.html"> Guernsey </option>
<option value="../geos/gv.html"> Guinea </option>
<option value="../geos/pu.html"> Guinea-Bissau </option>
<option value="../geos/gy.html"> Guyana </option>
<option value="../geos/ha.html"> Haiti </option>
<option value="../geos/hm.html"> Heard Island and McDonald Islands </option>
<option value="../geos/vt.html"> Holy See (Vatican City) </option>
<option value="../geos/ho.html"> Honduras </option>
<option value="../geos/hk.html"> Hong Kong </option>
<option value="../geos/um.html"> Howland Island </option>
<option value="../geos/hu.html"> Hungary </option>
<option value="../geos/ic.html"> Iceland </option>
<option value="../geos/in.html"> India </option>
<option value="../geos/xo.html"> Indian Ocean </option>
<option value="../geos/id.html"> Indonesia </option>
<option value="../geos/ir.html"> Iran </option>
<option value="../geos/iz.html"> Iraq </option>
<option value="../geos/ei.html"> Ireland </option>
<option value="../geos/im.html"> Isle of Man </option>
<option value="../geos/is.html"> Israel </option>
<option value="../geos/it.html"> Italy </option>
<option value="../geos/jm.html"> Jamaica </option>
<option value="../geos/jn.html"> Jan Mayen </option>
<option value="../geos/ja.html"> Japan </option>
<option value="../geos/um.html"> Jarvis Island </option>
<option value="../geos/je.html"> Jersey </option>
<option value="../geos/um.html"> Johnston Atoll </option>
<option value="../geos/jo.html"> Jordan </option>
<option value="../geos/kz.html"> Kazakhstan </option>
<option value="../geos/ke.html"> Kenya </option>
<option value="../geos/um.html"> Kingman Reef </option>
<option value="../geos/kr.html"> Kiribati </option>
<option value="../geos/kn.html"> Korea, North </option>
<option value="../geos/ks.html"> Korea, South </option>
<option value="../geos/kv.html"> Kosovo </option>
<option value="../geos/ku.html"> Kuwait </option>
<option value="../geos/kg.html"> Kyrgyzstan </option>
<option value="../geos/la.html"> Laos </option>
<option value="../geos/lg.html"> Latvia </option>
<option value="../geos/le.html"> Lebanon </option>
<option value="../geos/lt.html"> Lesotho </option>
<option value="../geos/li.html"> Liberia </option>
<option value="../geos/ly.html"> Libya </option>
<option value="../geos/ls.html"> Liechtenstein </option>
<option value="../geos/lh.html"> Lithuania </option>
<option value="../geos/lu.html"> Luxembourg </option>
<option value="../geos/mc.html"> Macau </option>
<option value="../geos/mk.html"> Macedonia </option>
<option value="../geos/ma.html"> Madagascar </option>
<option value="../geos/mi.html"> Malawi </option>
<option value="../geos/my.html"> Malaysia </option>
<option value="../geos/mv.html"> Maldives </option>
<option value="../geos/ml.html"> Mali </option>
<option value="../geos/mt.html"> Malta </option>
<option value="../geos/rm.html"> Marshall Islands </option>
<option value="../geos/mr.html"> Mauritania </option>
<option value="../geos/mp.html"> Mauritius </option>
<option value="../geos/mx.html"> Mexico </option>
<option value="../geos/fm.html"> Micronesia, Federated States of </option>
<option value="../geos/um.html"> Midway Islands </option>
<option value="../geos/md.html"> Moldova </option>
<option value="../geos/mn.html"> Monaco </option>
<option value="../geos/mg.html"> Mongolia </option>
<option value="../geos/mj.html"> Montenegro </option>
<option value="../geos/mh.html"> Montserrat </option>
<option value="../geos/mo.html"> Morocco </option>
<option value="../geos/mz.html"> Mozambique </option>
<option value="../geos/wa.html"> Namibia </option>
<option value="../geos/nr.html"> Nauru </option>
<option value="../geos/bq.html"> Navassa Island </option>
<option value="../geos/np.html"> Nepal </option>
<option value="../geos/nl.html"> Netherlands </option>
<option value="../geos/nc.html"> New Caledonia </option>
<option value="../geos/nz.html"> New Zealand </option>
<option value="../geos/nu.html"> Nicaragua </option>
<option value="../geos/ng.html"> Niger </option>
<option value="../geos/ni.html"> Nigeria </option>
<option value="../geos/ne.html"> Niue </option>
<option value="../geos/nf.html"> Norfolk Island </option>
<option value="../geos/cq.html"> Northern Mariana Islands </option>
<option value="../geos/no.html"> Norway </option>
<option value="../geos/mu.html"> Oman </option>
<option value="../geos/zn.html"> Pacific Ocean </option>
<option value="../geos/pk.html"> Pakistan </option>
<option value="../geos/ps.html"> Palau </option>
<option value="../geos/um.html"> Palmyra Atoll </option>
<option value="../geos/pm.html"> Panama </option>
<option value="../geos/pp.html"> Papua New Guinea </option>
<option value="../geos/pf.html"> Paracel Islands </option>
<option value="../geos/pa.html"> Paraguay </option>
<option value="../geos/pe.html"> Peru </option>
<option value="../geos/rp.html"> Philippines </option>
<option value="../geos/pc.html"> Pitcairn Islands </option>
<option value="../geos/pl.html"> Poland </option>
<option value="../geos/po.html"> Portugal </option>
<option value="../geos/rq.html"> Puerto Rico </option>
<option value="../geos/qa.html"> Qatar </option>
<option value="../geos/ro.html"> Romania </option>
<option value="../geos/rs.html"> Russia </option>
<option value="../geos/rw.html"> Rwanda </option>
<option value="../geos/tb.html"> Saint Barthelemy </option>
<option value="../geos/sh.html"> Saint Helena, Ascension, and Tristan da Cunha </option>
<option value="../geos/sc.html"> Saint Kitts and Nevis </option>
<option value="../geos/st.html"> Saint Lucia </option>
<option value="../geos/rn.html"> Saint Martin </option>
<option value="../geos/sb.html"> Saint Pierre and Miquelon </option>
<option value="../geos/vc.html"> Saint Vincent and the Grenadines </option>
<option value="../geos/ws.html"> Samoa </option>
<option value="../geos/sm.html"> San Marino </option>
<option value="../geos/tp.html"> Sao Tome and Principe </option>
<option value="../geos/sa.html"> Saudi Arabia </option>
<option value="../geos/sg.html"> Senegal </option>
<option value="../geos/ri.html"> Serbia </option>
<option value="../geos/se.html"> Seychelles </option>
<option value="../geos/sl.html"> Sierra Leone </option>
<option value="../geos/sn.html"> Singapore </option>
<option value="../geos/sk.html"> Sint Maarten </option>
<option value="../geos/lo.html"> Slovakia </option>
<option value="../geos/si.html"> Slovenia </option>
<option value="../geos/bp.html"> Solomon Islands </option>
<option value="../geos/so.html"> Somalia </option>
<option value="../geos/sf.html"> South Africa </option>
<option value="../geos/oo.html"> Southern Ocean </option>
<option value="../geos/sx.html"> South Georgia and South Sandwich Islands </option>
<option value="../geos/od.html"> South Sudan </option>
<option value="../geos/sp.html"> Spain </option>
<option value="../geos/pg.html"> Spratly Islands </option>
<option value="../geos/ce.html"> Sri Lanka </option>
<option value="../geos/su.html"> Sudan </option>
<option value="../geos/ns.html"> Suriname </option>
<option value="../geos/sv.html"> Svalbard </option>
<option value="../geos/wz.html"> Swaziland </option>
<option value="../geos/sw.html"> Sweden </option>
<option value="../geos/sz.html"> Switzerland </option>
<option value="../geos/sy.html"> Syria </option>
<option value="../geos/tw.html"> Taiwan </option>
<option value="../geos/ti.html"> Tajikistan </option>
<option value="../geos/tz.html"> Tanzania </option>
<option value="../geos/th.html"> Thailand </option>
<option value="../geos/tt.html"> Timor-Leste </option>
<option value="../geos/to.html"> Togo </option>
<option value="../geos/tl.html"> Tokelau </option>
<option value="../geos/tn.html"> Tonga </option>
<option value="../geos/td.html"> Trinidad and Tobago </option>
<option value="../geos/ts.html"> Tunisia </option>
<option value="../geos/tu.html"> Turkey </option>
<option value="../geos/tx.html"> Turkmenistan </option>
<option value="../geos/tk.html"> Turks and Caicos Islands </option>
<option value="../geos/tv.html"> Tuvalu </option>
<option value="../geos/ug.html"> Uganda </option>
<option value="../geos/up.html"> Ukraine </option>
<option value="../geos/ae.html"> United Arab Emirates </option>
<option value="../geos/uk.html"> United Kingdom </option>
<option value="../geos/us.html"> United States </option>
<option value="../geos/um.html"> United States Pacific Island Wildlife Refuges </option>
<option value="../geos/uy.html"> Uruguay </option>
<option value="../geos/uz.html"> Uzbekistan </option>
<option value="../geos/nh.html"> Vanuatu </option>
<option value="../geos/ve.html"> Venezuela </option>
<option value="../geos/vm.html"> Vietnam </option>
<option value="../geos/vq.html"> Virgin Islands </option>
<option value="../geos/wq.html"> Wake Island </option>
<option value="../geos/wf.html"> Wallis and Futuna </option>
<option value="../geos/we.html"> West Bank </option>
<option value="../geos/wi.html"> Western Sahara </option>
<option value="../geos/ym.html"> Yemen </option>
<option value="../geos/za.html"> Zambia </option>
<option value="../geos/zi.html"> Zimbabwe </option>
<option value="../geos/ee.html"> European Union </option>
</select>
</form>
</div>
</td>
</tr>
<tr>
<td>
<style>
.description-box .text-holder-full .text-box { line-height: 12px; }
</style>
<link rel="stylesheet" type="text/css" href="../styles/navigation.css">
<script type="text/javascript">
var timeout = 500;
var closetimer = 0;
var ddmenuitem = 0;
function wfbNav_open()
{ wfbNav_canceltimer();
wfbNav_close();
ddmenuitem = $(this).find('ul').eq(0).css('visibility', 'visible');}
function wfbNav_close()
{ if(ddmenuitem) ddmenuitem.css('visibility', 'hidden');}
function wfbNav_timer()
{ closetimer = window.setTimeout(wfbNav_close, timeout);}
function wfbNav_canceltimer()
{ if(closetimer)
{ window.clearTimeout(closetimer);
closetimer = null;}}
$(document).ready(function()
{ $('#wfbNav > li').bind('mouseover', wfbNav_open);
$('#wfbNav > li').bind('mouseout', wfbNav_timer);});
document.onclick = wfbNav_close;
</script>
<div>
<ul id="wfbNav" style="z-index: 9999;">
<li style="border-bottom: 2px solid #CCCCCC; "><a href="../index.html" style="width:20px; height: 12px;" title="The World Factbook Home"><img src="../graphics/home_on.png" border="0"></a></li>
<li style="border-bottom: 2px solid #CCCCCC; "><a href="javascript:void(0);" style="width:65px;" title="About">ABOUT</a>
<ul class="sub_menu">
<li><a href="../docs/history.html"> History</a></li>
<li><a href="../docs/contributor_copyright.html"> Copyright and Contributors</a></li>
<li><a href="../docs/purchase_info.html"> Purchasing</a></li>
<li><a href="../docs/didyouknow.html"> Did You Know?</a></li>
</ul>
</li>
<li style="border-bottom: 2px solid #CCCCCC; "><a href="javascript:void(0);" style="width:95px;" title="References">REFERENCES</a>
<ul class="sub_menu">
<li><a href="../docs/refmaps.html"> Regional and World Maps</a></li>
<li><a href="../docs/flagsoftheworld.html"> Flags of the World</a></li>
<li><a href="../docs/gallery.html"> Gallery of Covers</a></li>
<li><a href="../docs/notesanddefs.html"> Definitions and Notes</a></li>
<li><a href="../docs/profileguide.html"> Guide to Country Profiles</a></li>
<li><a href="../rankorder/rankorderguide.html"> Guide to Country Comparisons</a></li>
<li><a href="../docs/guidetowfbook.html"> The World Factbook Users Guide</a></li>
</ul>
</li>
<li style="border-bottom: 2px solid #CCCCCC; "><a href="javascript:void(0);" title="Appendices">APPENDICES</a>
<ul class="sub_menu">
<li><a href="../appendix/appendix-a.html"> A: abbreviations</a></li>
<li><a href="../appendix/appendix-b.html"> B: international organizations and groups</a></li>
<li><a href="../appendix/appendix-c.html"> C: selected international environmental agreements</a></li>
<li><a href="../appendix/appendix-d.html"> D: cross-reference list of country data codes</a></li>
<li><a href="../appendix/appendix-e.html"> E: cross-reference list of hydrographic data codes</a></li>
<li><a href="../appendix/appendix-f.html"> F: cross-reference list of geographic names</a></li>
<li><a href="../appendix/appendix-g.html"> G: weights and measures</a></li>
</ul>
</li>
<li id="faqs" style="border-bottom: 2px solid #CCCCCC; "><a href="../docs/faqs.html" style="cursor:pointer;width:50px;">FAQ<span style="text-transform:lowercase;">s</span></a></li>
<li id="contact" style="border-bottom: 2px solid #CCCCCC; "> <a href="../docs/contact.html" title="Contact" style="cursor:pointer;width:73px;"> CONTACT </a> </li>
</ul>
</div>
<div class="smalltext_nav" align="right" valign="bottom" style="border-bottom: 2px solid #CCCCCC; height: 22px;">
<a href="../print/textversion.html"><img src="../graphics/bandwidth_btn_off.gif" alt="View Text Low Bandwidth Version" title="View Text Low Bandwidth Version" width="173" height="8" border="0" /></a><br>
<a href="https://www.cia.gov/library/publications/download/"><img src="../graphics/download_btn_off.gif" alt="Download Publication" title="Download Publication" border="0" id="Download Publication" /></a>
</div>
<div class="clear"> </div>
</div>
</td>
</tr>
<tr>
<td>
<!-- InstanceBeginEditable name="mainContent" -->
<script src="../scripts/imgscale.js"></script>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr class="aus_dark">
<td valign="middle">
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td height="30" valign="middle">
<div class="region1">
<a href=" ../wfbExt/region_aus.html" style="color: #FFFFFF;">Australia-Oceania</a> <strong>:: </strong><span class="region_name1">Wallis and Futuna</span>
</div>
<div class="affiliation"><em>(overseas collectivity of France)</em></div>
</td>
</tr>
</table>
</td>
<td width="20" align="right" valign="middle" class="aus_dark"><a href="print/country/countrypdf_wf.pdf"><img src="../graphics/print.gif" style="padding: 3px;"></a></td>
</tr>
</table>
<table width="100%" border="0" cellspacing="0" cellpadding="0" style="background-image:url(../graphics/aus_lgmap_bkgrnd.jpg); background-repeat: repeat-x; background-position: top ;">
<tr>
<td width="323" align="center" valign="top" style=" "><table width="100%" align="center" style="border: 1px solid #ccc; height: 195px;" >
<tr>
<td colspan="2" align="left" valign="middle" class="smalltext_nav" style="height: 12px;" >Page last updated on June 20, 2014 </td>
</tr>
<tr>
<td height="230" align="center" valign="middle" class="area" style="width: 50%; height: 120px;">
<a href="javascript:void(0);" title="Click flag for description"> <img src="../graphics/flags/large/wf-lgflag.gif"
border="0"
style="cursor:pointer; border: 1px solid #CCC; "
id="flagDialog2_wf"
name="wf"
regioncode="aus"
countrycode="wf"
countryname="Wallis and Futuna"
flagsubfield="note"
countryaffiliation="(overseas collectivity of France)"
flagdescription="unofficial, local flag has a red field with four white isosceles triangles in the middle, representing the three native kings of the islands and the French administrator; the apexes of the triangles are oriented inward and at right angles to each other; the flag of France, outlined in white on two sides, is in the upper hoist quadrant the design is derived from an original red banner with a white cross pattee that was introduced in the 19th century by French missionaries; the flag of France is used for official occasions"
flagdescriptionnote="the design is derived from an original red banner with a white cross pattee that was introduced in the 19th century by French missionaries; the flag of France is used for official occasions"
region="Australia-Oceania"
class="flagFit aus_lgflagborder"
typeimage = "flag"></a>
</td>
<td align="center" valign="middle" class="area" style="width: 50%; height: 120px;"><a href="javascript:void(0);" title="Click locator to enlarge"> <img src="../graphics/locator/aus/wf_large_locator.gif"
border="0"
style="cursor:pointer; border: 1px solid #CCC;"
id="locatorDialog2_wf"
name="wf"
regioncode="aus"
countrycode="wf"
countryname="Wallis and Futuna"
flagsubfield=""
countryaffiliation=""
flagdescription=""
flagdescriptionnote=""
region="Australia-Oceania"
class="locatorFit aus_lgflagborder"
typeimage = "locator"></a></td>
</tr>
</table></td>
<td width="1%" rowspan="2" align="center" valign="middle" bgcolor="#FFFFFF" style="border: 1px solid #fff;"> </td>
<td rowspan="2" align="center" valign="middle" style="border: 1px solid #E4D4D4;">
<div align="center" valign="middle" > <a href="javascript:void(0);" title="Click map to enlarge"> <img src="../graphics/maps/wf-map.gif"
border="0"
style="cursor:pointer; border: 1px solid #CCC; display: block; "
id="mapDialog2_wf"
name="wf"
regioncode="aus"
countrycode="wf"
countryname="Wallis and Futuna"
flagsubfield=""
countryaffiliation=""
flagdescription=""
flagdescriptionnote=""
region="Australia-Oceania"
class="mapFit aus_lgflagborder"
typeimage = "map"></a>
</div></td>
</tr>
<tr>
<td height="140" align="center" valign="top" class="photo_bkgrnd_static" bgcolor="#FFFFFF">
<table width="100%" border="0" align="left" cellpadding="0" cellspacing="0">
<tr>
<td height="10" colspan="3"></td>
</tr>
<tr>
<td width="100%" rowspan="3" align="center" valign="middle" class="smalltext_nav" >
<img src="../graphics/photo_off.jpg" alt="No Photos available for Wallis and Futuna" name="Photos" width="123" height="81" border="0" id="Photos3" title="No Photos Avaliable for Wallis and Futuna"/>
<div> <span class="photo_text1"> no photos available</span></div>
</td>
</tr>
<tr>
<td height="50%" align="center" valign="top" ></td>
</tr>
</table>
</td>
</tr>
</table>
<div id="countryInfo" style="display: none;">
<div class="wrapper">
<div style="float:right" class="expand_all">
<a href="javascript:void(0)" class="expand">EXPAND ALL</a><a href="javascript:void(0)" class="collapse" style="display: none;">COLLAPSE ALL</a>
</div>
</div>
<script src="jClocksGMT-master/js/jClocksGMT.js"></script>
<script src="jClocksGMT-master/js/jquery.rotate.js"></script>
<link rel="stylesheet" href="jClocksGMT-master/css/jClocksGMT.css">
<script>
$(document).ready(function() {
$('[id^="CollapsiblePanel1"] h2').css({'background-color':'#cce0eb',"border-bottom":"2px solid white","cursor":"pointer"}); // aus
});
</script>
<div id="CollapsiblePanel1_Intro" class="CollapsiblePanel" style="width:100%; ">
<div class="wrapper">
<h2 class="question question-back" ccode="wf" sectiontitle="Introduction"><a href="javascript:void();">Introduction</span> ::</span><span class="region">Wallis and Futuna</span></a></h2>
<div class="answer" align="left">
<div class="box" style="padding: 0px; margin: 0px;">
<ul style="text-align: left;padding: 0px;margin: 0px;width: 100%;">
<table border="0" cellspacing="0" cellpadding="0" style="width: 100%;">
<tr class="aus_light" >
<td width="450" height="20"><div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2028&alphaletter=B&term=Background" title="Notes and Definitions: Background"> Background</a>:
</div></td>
<td align="right">
<a href="../fields/2028.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"> <img src="../graphics/field_listing_on.gif" border="0" style="text-decoration:none;"> </a>
</tr>
<tr>
<td id="data" colspan="2" style="vertical-align:middle;">
<div class="category_data">The Futuna island group was discovered by the Dutch in 1616 and Wallis by the British in 1767, but it was the French who declared a protectorate over the islands in 1842, and took official control of them between 1886 and 1888. Notably, Wallis and Futuna was the only French colony to side with the Vichy regime during World War II, a phase that ended in May of 1942 with the arrival of 2,000 American troops. In 1959, the inhabitants of the islands voted to become a French overseas territory and officially assumed this status in July 1961.</div>
<tr>
<td class="category_data" style="padding-bottom: 5px;"></td>
</tr>
</table>
</ul>
</div>
</div>
<script src="jClocksGMT-master/js/jClocksGMT.js"></script>
<script src="jClocksGMT-master/js/jquery.rotate.js"></script>
<link rel="stylesheet" href="jClocksGMT-master/css/jClocksGMT.css">
<script>
$(document).ready(function() {
$('[id^="CollapsiblePanel1"] h2').css({'background-color':'#cce0eb',"border-bottom":"2px solid white","cursor":"pointer"}); // aus
});
</script>
<div id="CollapsiblePanel1_Geo" class="CollapsiblePanel" style="width:100%; ">
<div class="wrapper">
<h2 class="question question-back" ccode="wf" sectiontitle="Geography"><a href="javascript:void();">Geography</span> ::</span><span class="region">Wallis and Futuna</span></a></h2>
<div class="answer" align="left">
<div class="box" style="padding: 0px; margin: 0px;">
<ul style="text-align: left;padding: 0px;margin: 0px;width: 100%;">
<table border="0" cellspacing="0" cellpadding="0" style="width: 100%;">
<tr class="aus_light" >
<td width="450" height="20"><div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2144&alphaletter=L&term=Location" title="Notes and Definitions: Location"> Location</a>:
</div></td>
<td align="right">
<a href="../fields/2144.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"> <img src="../graphics/field_listing_on.gif" border="0" style="text-decoration:none;"> </a>
</tr>
<tr>
<td id="data" colspan="2" style="vertical-align:middle;">
<div class="category_data">Oceania, islands in the South Pacific Ocean, about two-thirds of the way from Hawaii to New Zealand</div>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2011&alphaletter=G&term=Geographic coordinates" title="Notes and Definitions: Geographic coordinates"> Geographic coordinates:</a>
</div></td>
<td align="right">
<a href="../fields/2011.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category_data">13 18 S, 176 12 W</div>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2145&alphaletter=M&term=Map references" title="Notes and Definitions: Map references"> Map references:</a>
</div></td>
<td align="right">
<a href="../fields/2145.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category_data">
<a href="../graphics/ref_maps/physical/pdf/oceania.pdf" target="_blank" class="category_data">Oceania</a>
</div>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2147&alphaletter=A&term=Area" title="Notes and Definitions: Area"> Area:</a>
</div></td>
<td align="right">
<a href="../fields/2147.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category" style="padding-top: 2px;">
total:
<span class="category_data" style="font-weight:normal; vertical-align:bottom;">142 sq km</span></div>
<span class="category" style="padding-left:7px;">country comparison to the world:</span> <span class="category_data"> <a href="../rankorder/2147rank.html?countryname=Wallis and Futuna&countrycode=wf®ionCode=aus&rank=221#wf" onMouseDown="" title="Country comparison to the world" alt="Country comparison to the world"> 221 </a> </span>
<div class="category" style="padding-top: 2px;">
land:
<span class="category_data" style="font-weight:normal; vertical-align:top;">142 sq km </span></div>
<div class="category" style="padding-top: 2px;">
water:
<span class="category_data" style="font-weight:normal; vertical-align:top;">0 sq km </span></div>
<div class="category" style="padding-top: 2px;">
<em>note:</em>
<span class="category_data" style="font-weight:normal; vertical-align:top;">includes Ile Uvea (Wallis Island), Ile Futuna (Futuna Island), Ile Alofi, and 20 islets </span></div>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2023&alphaletter=A&term=Area - comparative" title="Notes and Definitions: Area - comparative"> Area - comparative:</a>
</div></td>
<td align="right">
<a href="../fields/2023.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category_data">1.5 times the size of Washington, DC</div>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2096&alphaletter=L&term=Land boundaries" title="Notes and Definitions: Land boundaries"> Land boundaries:</a>
</div></td>
<td align="right">
<a href="../fields/2096.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category_data">0 km</div>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2060&alphaletter=C&term=Coastline" title="Notes and Definitions: Coastline"> Coastline:</a>
</div></td>
<td align="right">
<a href="../fields/2060.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category_data">129 km</div>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2106&alphaletter=M&term=Maritime claims" title="Notes and Definitions: Maritime claims"> Maritime claims:</a>
</div></td>
<td align="right">
<a href="../fields/2106.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category" style="padding-top: 2px;">
territorial sea:
<span class="category_data" style="font-weight:normal; vertical-align:bottom;">12 nm</span></div>
<div class="category" style="padding-top: 2px;">
exclusive economic zone:
<span class="category_data" style="font-weight:normal; vertical-align:top;">200 nm </span></div>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2059&alphaletter=C&term=Climate" title="Notes and Definitions: Climate"> Climate:</a>
</div></td>
<td align="right">
<a href="../fields/2059.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category_data">tropical; hot, rainy season (November to April); cool, dry season (May to October); rains 2,500-3,000 mm per year (80% humidity); average temperature 26.6 degrees C</div>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2125&alphaletter=T&term=Terrain" title="Notes and Definitions: Terrain"> Terrain:</a>
</div></td>
<td align="right">
<a href="../fields/2125.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category_data">volcanic origin; low hills</div>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2020&alphaletter=E&term=Elevation extremes" title="Notes and Definitions: Elevation extremes"> Elevation extremes:</a>
</div></td>
<td align="right">
<a href="../fields/2020.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category" style="padding-top: 2px;">
lowest point:
<span class="category_data" style="font-weight:normal; vertical-align:bottom;">Pacific Ocean 0 m</span></div>
<div class="category" style="padding-top: 2px;">
highest point:
<span class="category_data" style="font-weight:normal; vertical-align:top;">Mont Singavi (on Futuna) 765 m </span></div>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2111&alphaletter=N&term=Natural resources" title="Notes and Definitions: Natural resources"> Natural resources:</a>
</div></td>
<td align="right">
<a href="../fields/2111.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category_data">NEGL</div>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2097&alphaletter=L&term=Land use" title="Notes and Definitions: Land use"> Land use:</a>
</div></td>
<td align="right">
<a href="../fields/2097.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category" style="padding-top: 2px;">
arable land:
<span class="category_data" style="font-weight:normal; vertical-align:bottom;">7.14%</span></div>
<div class="category" style="padding-top: 2px;">
permanent crops:
<span class="category_data" style="font-weight:normal; vertical-align:top;">35.71% </span></div>
<div class="category" style="padding-top: 2px;">
other:
<span class="category_data" style="font-weight:normal; vertical-align:top;">57.15% (2011) </span></div>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2146&alphaletter=I&term=Irrigated land" title="Notes and Definitions: Irrigated land"> Irrigated land:</a>
</div></td>
<td align="right">
<a href="../fields/2146.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category_data">NA</div>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2021&alphaletter=N&term=Natural hazards" title="Notes and Definitions: Natural hazards"> Natural hazards:</a>
</div></td>
<td align="right">
<a href="../fields/2021.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category_data">NA</div>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2032&alphaletter=E&term=Environment - current issues" title="Notes and Definitions: Environment - current issues"> Environment - current issues:</a>
</div></td>
<td align="right">
<a href="../fields/2032.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category_data">deforestation (only small portions of the original forests remain) largely as a result of the continued use of wood as the main fuel source; as a consequence of cutting down the forests, the mountainous terrain of Futuna is particularly prone to erosion; there are no permanent settlements on Alofi because of the lack of natural freshwater resources</div>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2113&alphaletter=G&term=Geography - note" title="Notes and Definitions: Geography - note"> Geography - note:</a>
</div></td>
<td align="right">
<a href="../fields/2113.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category_data">both island groups have fringing reefs</div>
<tr>
<td class="category_data" style="padding-bottom: 5px;"></td>
</tr>
</table>
</ul>
</div>
</div>
<script src="jClocksGMT-master/js/jClocksGMT.js"></script>
<script src="jClocksGMT-master/js/jquery.rotate.js"></script>
<link rel="stylesheet" href="jClocksGMT-master/css/jClocksGMT.css">
<script>
$(document).ready(function() {
$('[id^="CollapsiblePanel1"] h2').css({'background-color':'#cce0eb',"border-bottom":"2px solid white","cursor":"pointer"}); // aus
});
</script>
<div id="CollapsiblePanel1_People" class="CollapsiblePanel" style="width:100%; ">
<div class="wrapper">
<h2 class="question question-back" ccode="wf" sectiontitle="People and Society"><a href="javascript:void();">People and Society</span> ::</span><span class="region">Wallis and Futuna</span></a></h2>
<div class="answer" align="left">
<div class="box" style="padding: 0px; margin: 0px;">
<ul style="text-align: left;padding: 0px;margin: 0px;width: 100%;">
<table border="0" cellspacing="0" cellpadding="0" style="width: 100%;">
<tr class="aus_light" >
<td width="450" height="20"><div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2110&alphaletter=N&term=Nationality" title="Notes and Definitions: Nationality"> Nationality</a>:
</div></td>
<td align="right">
<a href="../fields/2110.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"> <img src="../graphics/field_listing_on.gif" border="0" style="text-decoration:none;"> </a>
</tr>
<tr>
<td id="data" colspan="2" style="vertical-align:middle;">
<div class="category">noun: <span class="category_data" style="font-weight:normal;">Wallisian(s), Futunan(s), or Wallis and Futuna Islanders</span> </div>
<div class="category" style="padding-top: 2px;">
adjective:
<span class="category_data" style="font-weight:normal; vertical-align:top;">Wallisian, Futunan, or Wallis and Futuna Islander </span></div>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2075&alphaletter=E&term=Ethnic groups" title="Notes and Definitions: Ethnic groups"> Ethnic groups:</a>
</div></td>
<td align="right">
<a href="../fields/2075.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category_data">Polynesian</div>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2098&alphaletter=L&term=Languages" title="Notes and Definitions: Languages"> Languages:</a>
</div></td>
<td align="right">
<a href="../fields/2098.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category_data">Wallisian (indigenous Polynesian language) 58.9%, Futunian 30.1%, French (official) 10.8%, other 0.2% (2003 census)</div>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2122&alphaletter=R&term=Religions" title="Notes and Definitions: Religions"> Religions:</a>
</div></td>
<td align="right">
<a href="../fields/2122.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category_data">Roman Catholic 99%, other 1%</div>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2119&alphaletter=P&term=Population" title="Notes and Definitions: Population"> Population:</a>
</div></td>
<td align="right">
<a href="../fields/2119.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category_data">15,561 (July 2014 est.)</div>
<span class="category" style="padding-left:7px;">country comparison to the world:</span> <span class="category_data"> <a href="../rankorder/2119rank.html?countryname=Wallis and Futuna&countrycode=wf®ionCode=aus&rank=224#wf" onMouseDown="" title="Country comparison to the world" alt="Country comparison to the world"> 224 </a> </span>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2010&alphaletter=A&term=Age structure" title="Notes and Definitions: Age structure"> Age structure:</a>
</div></td>
<td align="right">
<a href="../fields/2010.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category" style="padding-top: 2px;">
0-14 years:
<span class="category_data" style="font-weight:normal; vertical-align:bottom;">23.4% (male 1,902/female 1,741)</span></div>
<div class="category" style="padding-top: 2px;">
15-24 years:
<span class="category_data" style="font-weight:normal; vertical-align:top;">17.8% (male 1,449/female 1,320) </span></div>
<div class="category" style="padding-top: 2px;">
25-54 years:
<span class="category_data" style="font-weight:normal; vertical-align:top;">40.7% (male 3,147/female 3,183) </span></div>
<div class="category" style="padding-top: 2px;">
55-64 years:
<span class="category_data" style="font-weight:normal; vertical-align:top;">9.2% (male 719/female 709) </span></div>
<div class="category" style="padding-top: 2px;">
65 years and over:
<span class="category_data" style="font-weight:normal; vertical-align:top;">8.6% (male 663/female 728) (2014 est.) </span></div>
<div class="category">
<span style="margin-bottom:0px; vertical-align:bottom;">population pyramid:</span> <a href="javascript:void();" title="<img src = '../graphics/populationpyramid_tooltip.gif'>"> <img src="../graphics/poppyramid_icon.jpg"
border="0"
style="cursor:pointer; border: 0px solid #CCC;"
id="flagDialog2_wf"
name="wf"
regioncode="aus"
countrycode="wf"
countryname="Wallis and Futuna"
flagsubfield="note"
countryaffiliation="(overseas collectivity of France)"
flagdescription="unofficial, local flag has a red field with four white isosceles triangles in the middle, representing the three native kings of the islands and the French administrator; the apexes of the triangles are oriented inward and at right angles to each other; the flag of France, outlined in white on two sides, is in the upper hoist quadrant"
flagdescriptionnote="the design is derived from an original red banner with a white cross pattee that was introduced in the 19th century by French missionaries; the flag of France is used for official occasions"
region="Australia-Oceania"
typeimage="population"
> </a>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2177&alphaletter=M&term=Median age" title="Notes and Definitions: Median age"> Median age:</a>
</div></td>
<td align="right">
<a href="../fields/2177.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category" style="padding-top: 2px;">
total:
<span class="category_data" style="font-weight:normal; vertical-align:bottom;">30.3 years</span></div>
<div class="category" style="padding-top: 2px;">
male:
<span class="category_data" style="font-weight:normal; vertical-align:top;">29.3 years </span></div>
<div class="category" style="padding-top: 2px;">
female:
<span class="category_data" style="font-weight:normal; vertical-align:top;">31.5 years (2014 est.) </span></div>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2002&alphaletter=P&term=Population growth rate" title="Notes and Definitions: Population growth rate"> Population growth rate:</a>
</div></td>
<td align="right">
<a href="../fields/2002.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category_data">0.33% (2014 est.)</div>
<span class="category" style="padding-left:7px;">country comparison to the world:</span> <span class="category_data"> <a href="../rankorder/2002rank.html?countryname=Wallis and Futuna&countrycode=wf®ionCode=aus&rank=168#wf" onMouseDown="" title="Country comparison to the world" alt="Country comparison to the world"> 168 </a> </span>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2054&alphaletter=B&term=Birth rate" title="Notes and Definitions: Birth rate"> Birth rate:</a>
</div></td>
<td align="right">
<a href="../fields/2054.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category_data">13.56 births/1,000 population (2014 est.)</div>
<span class="category" style="padding-left:7px;">country comparison to the world:</span> <span class="category_data"> <a href="../rankorder/2054rank.html?countryname=Wallis and Futuna&countrycode=wf®ionCode=aus&rank=148#wf" onMouseDown="" title="Country comparison to the world" alt="Country comparison to the world"> 148 </a> </span>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2066&alphaletter=D&term=Death rate" title="Notes and Definitions: Death rate"> Death rate:</a>
</div></td>
<td align="right">
<a href="../fields/2066.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category_data">4.95 deaths/1,000 population (2014 est.)</div>
<span class="category" style="padding-left:7px;">country comparison to the world:</span> <span class="category_data"> <a href="../rankorder/2066rank.html?countryname=Wallis and Futuna&countrycode=wf®ionCode=aus&rank=188#wf" onMouseDown="" title="Country comparison to the world" alt="Country comparison to the world"> 188 </a> </span>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2112&alphaletter=N&term=Net migration rate" title="Notes and Definitions: Net migration rate"> Net migration rate:</a>
</div></td>
<td align="right">
<a href="../fields/2112.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category_data">-5.27 migrant(s)/1,000 population</div>
<span class="category" style="padding-left:7px;">country comparison to the world:</span> <span class="category_data"> <a href="../rankorder/2112rank.html?countryname=Wallis and Futuna&countrycode=wf®ionCode=aus&rank=195#wf" onMouseDown="" title="Country comparison to the world" alt="Country comparison to the world"> 195 </a> </span>
<div class="category" style="padding-top: 2px;">
<em>note:</em>
<span class="category_data" style="font-weight:normal; vertical-align:top;">there has been steady emigration from Wallis and Futuna to New Caledonia (2014 est.) </span></div>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2219&alphaletter=M&term=Major urban areas - population" title="Notes and Definitions: Major urban areas - population"> Major urban areas - population:</a>
</div></td>
<td align="right">
<a href="../fields/2219.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category_data">MATA-UTU (capital) 1,000 (2011)</div>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2018&alphaletter=S&term=Sex ratio" title="Notes and Definitions: Sex ratio"> Sex ratio:</a>
</div></td>
<td align="right">
<a href="../fields/2018.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category" style="padding-top: 2px;">
at birth:
<span class="category_data" style="font-weight:normal; vertical-align:bottom;">1.05 male(s)/female</span></div>
<div class="category" style="padding-top: 2px;">
0-14 years:
<span class="category_data" style="font-weight:normal; vertical-align:top;">1.09 male(s)/female </span></div>
<div class="category" style="padding-top: 2px;">
15-24 years:
<span class="category_data" style="font-weight:normal; vertical-align:top;">1.1 male(s)/female </span></div>
<div class="category" style="padding-top: 2px;">
25-54 years:
<span class="category_data" style="font-weight:normal; vertical-align:top;">0.99 male(s)/female </span></div>
<div class="category" style="padding-top: 2px;">
55-64 years:
<span class="category_data" style="font-weight:normal; vertical-align:top;">1.03 male(s)/female </span></div>
<div class="category" style="padding-top: 2px;">
65 years and over:
<span class="category_data" style="font-weight:normal; vertical-align:top;">0.89 male(s)/female </span></div>
<div class="category" style="padding-top: 2px;">
total population:
<span class="category_data" style="font-weight:normal; vertical-align:top;">1.02 male(s)/female (2014 est.) </span></div>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2091&alphaletter=I&term=Infant mortality rate" title="Notes and Definitions: Infant mortality rate"> Infant mortality rate:</a>
</div></td>
<td align="right">
<a href="../fields/2091.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category" style="padding-top: 2px;">
total:
<span class="category_data" style="font-weight:normal; vertical-align:bottom;">4.49 deaths/1,000 live births</span></div>
<span class="category" style="padding-left:7px;">country comparison to the world:</span> <span class="category_data"> <a href="../rankorder/2091rank.html?countryname=Wallis and Futuna&countrycode=wf®ionCode=aus&rank=187#wf" onMouseDown="" title="Country comparison to the world" alt="Country comparison to the world"> 187 </a> </span>
<div class="category" style="padding-top: 2px;">
male:
<span class="category_data" style="font-weight:normal; vertical-align:top;">4.72 deaths/1,000 live births </span></div>
<div class="category" style="padding-top: 2px;">
female:
<span class="category_data" style="font-weight:normal; vertical-align:top;">4.24 deaths/1,000 live births (2014 est.) </span></div>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2102&alphaletter=L&term=Life expectancy at birth" title="Notes and Definitions: Life expectancy at birth"> Life expectancy at birth:</a>
</div></td>
<td align="right">
<a href="../fields/2102.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category" style="padding-top: 2px;">
total population:
<span class="category_data" style="font-weight:normal; vertical-align:bottom;">79.42 years</span></div>
<span class="category" style="padding-left:7px;">country comparison to the world:</span> <span class="category_data"> <a href="../rankorder/2102rank.html?countryname=Wallis and Futuna&countrycode=wf®ionCode=aus&rank=44#wf" onMouseDown="" title="Country comparison to the world" alt="Country comparison to the world"> 44 </a> </span>
<div class="category" style="padding-top: 2px;">
male:
<span class="category_data" style="font-weight:normal; vertical-align:top;">76.43 years </span></div>
<div class="category" style="padding-top: 2px;">
female:
<span class="category_data" style="font-weight:normal; vertical-align:top;">82.55 years (2014 est.) </span></div>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2127&alphaletter=T&term=Total fertility rate" title="Notes and Definitions: Total fertility rate"> Total fertility rate:</a>
</div></td>
<td align="right">
<a href="../fields/2127.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category_data">1.76 children born/woman (2014 est.)</div>
<span class="category" style="padding-left:7px;">country comparison to the world:</span> <span class="category_data"> <a href="../rankorder/2127rank.html?countryname=Wallis and Futuna&countrycode=wf®ionCode=aus&rank=163#wf" onMouseDown="" title="Country comparison to the world" alt="Country comparison to the world"> 163 </a> </span>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2217&alphaletter=S&term=Sanitation facility access" title="Notes and Definitions: Sanitation facility access"> Sanitation facility access:</a>
</div></td>
<td align="right">
<a href="../fields/2217.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category" style="padding-top: 2px;">
improved:
<span class="category_data" style="font-weight:normal; vertical-align:bottom;"></span></div>
<div class="category_data" style="padding-top: 3px;">rural: 96% of population </div>
<div class="category_data" style="padding-top: 3px;">total: 96% of population </div>
<div class="category" style="padding-top: 2px;">
unimproved:
<span class="category_data" style="font-weight:normal; vertical-align:top;"> </span></div>
<div class="category_data" style="padding-top: 3px;">rural: 4% of population </div>
<div class="category_data" style="padding-top: 3px;">total: 4% of population (2008 est.) </div>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2155&alphaletter=H&term=HIV/AIDS - adult prevalence rate" title="Notes and Definitions: HIV/AIDS - adult prevalence rate"> HIV/AIDS - adult prevalence rate:</a>
</div></td>
<td align="right">
<a href="../fields/2155.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category_data">NA</div>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2156&alphaletter=H&term=HIV/AIDS - people living with HIV/AIDS" title="Notes and Definitions: HIV/AIDS - people living with HIV/AIDS"> HIV/AIDS - people living with HIV/AIDS:</a>
</div></td>
<td align="right">
<a href="../fields/2156.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category_data">NA</div>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2157&alphaletter=H&term=HIV/AIDS - deaths" title="Notes and Definitions: HIV/AIDS - deaths"> HIV/AIDS - deaths:</a>
</div></td>
<td align="right">
<a href="../fields/2157.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category_data">NA</div>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2103&alphaletter=L&term=Literacy" title="Notes and Definitions: Literacy"> Literacy:</a>
</div></td>
<td align="right">
<a href="../fields/2103.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category" style="padding-top: 2px;">
definition:
<span class="category_data" style="font-weight:normal; vertical-align:bottom;">age 15 and over can read and write</span></div>
<div class="category" style="padding-top: 2px;">
total population:
<span class="category_data" style="font-weight:normal; vertical-align:top;">50% </span></div>
<div class="category" style="padding-top: 2px;">
male:
<span class="category_data" style="font-weight:normal; vertical-align:top;">50% </span></div>
<div class="category" style="padding-top: 2px;">
female:
<span class="category_data" style="font-weight:normal; vertical-align:top;">50% (1969 est.) </span></div>
<tr>
<td class="category_data" style="padding-bottom: 5px;"></td>
</tr>
</table>
</ul>
</div>
</div>
<script src="jClocksGMT-master/js/jClocksGMT.js"></script>
<script src="jClocksGMT-master/js/jquery.rotate.js"></script>
<link rel="stylesheet" href="jClocksGMT-master/css/jClocksGMT.css">
<script>
$(document).ready(function() {
$('[id^="CollapsiblePanel1"] h2').css({'background-color':'#cce0eb',"border-bottom":"2px solid white","cursor":"pointer"}); // aus
});
</script>
<div id="CollapsiblePanel1_Govt" class="CollapsiblePanel" style="width:100%; ">
<div class="wrapper">
<h2 class="question question-back" ccode="wf" sectiontitle="Government"><a href="javascript:void();">Government</span> ::</span><span class="region">Wallis and Futuna</span></a></h2>
<div class="answer" align="left">
<div class="box" style="padding: 0px; margin: 0px;">
<ul style="text-align: left;padding: 0px;margin: 0px;width: 100%;">
<table border="0" cellspacing="0" cellpadding="0" style="width: 100%;">
<tr class="aus_light" >
<td width="450" height="20"><div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2142&alphaletter=C&term=Country name" title="Notes and Definitions: Country name"> Country name</a>:
</div></td>
<td align="right">
<a href="../fields/2142.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"> <img src="../graphics/field_listing_on.gif" border="0" style="text-decoration:none;"> </a>
</tr>
<tr>
<td id="data" colspan="2" style="vertical-align:middle;">
<div class="category">conventional long form: <span class="category_data" style="font-weight:normal;">Territory of the Wallis and Futuna Islands</span> </div>
<div class="category" style="padding-top: 2px;">
conventional short form:
<span class="category_data" style="font-weight:normal; vertical-align:top;">Wallis and Futuna </span></div>
<div class="category" style="padding-top: 2px;">
local long form:
<span class="category_data" style="font-weight:normal; vertical-align:top;">Territoire des Iles Wallis et Futuna </span></div>
<div class="category" style="padding-top: 2px;">
local short form:
<span class="category_data" style="font-weight:normal; vertical-align:top;">Wallis et Futuna </span></div>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2006&alphaletter=D&term=Dependency status" title="Notes and Definitions: Dependency status"> Dependency status:</a>
</div></td>
<td align="right">
<a href="../fields/2006.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category_data">overseas territory of France</div>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2128&alphaletter=G&term=Government type" title="Notes and Definitions: Government type"> Government type:</a>
</div></td>
<td align="right">
<a href="../fields/2128.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category_data">parliamentary representive democratic French overseas collectivity</div>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2057&alphaletter=C&term=Capital" title="Notes and Definitions: Capital"> Capital:</a>
</div></td>
<td align="right">
<a href="../fields/2057.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category" style="padding-top: 2px;">
name:
<span class="category_data" style="font-weight:normal; vertical-align:bottom;">Mata-Utu (on Ile Uvea)</span></div>
<div class="category" style="padding-top: 2px;">
geographic coordinates:
<span class="category_data" style="font-weight:normal; vertical-align:top;">13 57 S, 171 56 W </span></div>
<div class="category" style="padding-top: 2px;">
time difference:
<span class="category_data" style="font-weight:normal; vertical-align:top;">UTC+12 (17 hours ahead of Washington, DC, during Standard Time) </span></div>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2051&alphaletter=A&term=Administrative divisions" title="Notes and Definitions: Administrative divisions"> Administrative divisions:</a>
</div></td>
<td align="right">
<a href="../fields/2051.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category_data">none (overseas territory of France); there are no first-order administrative divisions as defined by the US Government, but there are three kingdoms at the second order named Alo, Sigave, Wallis</div>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2088&alphaletter=I&term=Independence" title="Notes and Definitions: Independence"> Independence:</a>
</div></td>
<td align="right">
<a href="../fields/2088.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category_data">none (overseas territory of France)</div>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2109&alphaletter=N&term=National holiday" title="Notes and Definitions: National holiday"> National holiday:</a>
</div></td>
<td align="right">
<a href="../fields/2109.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category_data">Bastille Day, 14 July (1789)</div>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2063&alphaletter=C&term=Constitution" title="Notes and Definitions: Constitution"> Constitution:</a>
</div></td>
<td align="right">
<a href="../fields/2063.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category_data">4 October 1958 (French Constitution) (2013)</div>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2100&alphaletter=L&term=Legal system" title="Notes and Definitions: Legal system"> Legal system:</a>
</div></td>
<td align="right">
<a href="../fields/2100.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category_data">French civil law</div>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2123&alphaletter=S&term=Suffrage" title="Notes and Definitions: Suffrage"> Suffrage:</a>
</div></td>
<td align="right">
<a href="../fields/2123.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category_data">18 years of age; universal</div>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2077&alphaletter=E&term=Executive branch" title="Notes and Definitions: Executive branch"> Executive branch:</a>
</div></td>
<td align="right">
<a href="../fields/2077.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category" style="padding-top: 2px;">
chief of state:
<span class="category_data" style="font-weight:normal; vertical-align:bottom;">President Francois HOLLANDE (since 15 May 2012); represented by High Administrator Michel JEANJEAN (since 10 June 2010)</span></div>
<div class="category" style="padding-top: 2px;">
head of government:
<span class="category_data" style="font-weight:normal; vertical-align:top;">President of the Territorial Assembly Vetelino NAU (since 4 April 2012) </span></div>
<div class="category" style="padding-top: 2px;">
cabinet:
<span class="category_data" style="font-weight:normal; vertical-align:top;">Council of the Territory consists of 3 kings and 3 members appointed by the high administrator on the advice of the Territorial Assembly </span></div>
<span class="category" style="padding-left:7px;font-weight: normal;">(For more information visit the <a href="/library/publications/world-leaders-1/" target="_blank">World Leaders website</a> <img src="../graphics/aus_newwindow.gif" alt="Opens in New Window" title="Opens in New Window" border="0"/>)</span>
<div class="category" style="padding-top: 2px;">
<em>note:</em>
<span class="category_data" style="font-weight:normal; vertical-align:top;">there are 3 traditional kings with limited powers </span></div>
<div class="category" style="padding-top: 2px;">
elections:
<span class="category_data" style="font-weight:normal; vertical-align:top;">French president elected by popular vote for a five-year term; high administrator appointed by the French president on the advice of the French Ministry of the Interior; the presidents of the Territorial Government and the Territorial Assembly elected by the members of the assembly </span></div>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2101&alphaletter=L&term=Legislative branch" title="Notes and Definitions: Legislative branch"> Legislative branch:</a>
</div></td>
<td align="right">
<a href="../fields/2101.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category_data">unicameral Territorial Assembly or Assemblee Territoriale (20 seats; members elected by popular vote to serve five-year terms)</div>
<div class="category" style="padding-top: 2px;">
elections:
<span class="category_data" style="font-weight:normal; vertical-align:top;">last held on 22 March 2012 (next to be held in March 2017) </span></div>
<div class="category" style="padding-top: 2px;">
election results:
<span class="category_data" style="font-weight:normal; vertical-align:top;">percent of vote by party - NA; seats by party - PS 4, UMP 4, centrists, 3, other 9 </span></div>
<div class="category" style="padding-top: 2px;">
<em>note:</em>
<span class="category_data" style="font-weight:normal; vertical-align:top;">Wallis and Futuna elects one senator to the French Senate and one deputy to the French National Assembly; French Senate - elections last held on 21 September 2008 (next to be held by September 2014); results - percent of vote by party - NA; seats - UMP 1; French National Assembly - elections last held on 17 June 2012 (next to be held by 2017); results - percent of vote by party - NA; seats - UMP 1 </span></div>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2094&alphaletter=J&term=Judicial branch" title="Notes and Definitions: Judicial branch"> Judicial branch:</a>
</div></td>
<td align="right">
<a href="../fields/2094.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category" style="padding-top: 2px;">
highest court(s):
<span class="category_data" style="font-weight:normal; vertical-align:bottom;">Court of Appeal or Cour d'Appel, located in Noumea, New Caledonia</span></div>
<div class="category" style="padding-top: 2px;">
judge selection and term of office:
<span class="category_data" style="font-weight:normal; vertical-align:top;">NA </span></div>
<div class="category" style="padding-top: 2px;">
subordinate courts:
<span class="category_data" style="font-weight:normal; vertical-align:top;">note: justice generally administered under French law by the high administrator, but the three traditional kings administer customary law and there is a magistrate in Mata-Utu </span></div>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2118&alphaletter=P&term=Political parties and leaders" title="Notes and Definitions: Political parties and leaders"> Political parties and leaders:</a>
</div></td>
<td align="right">
<a href="../fields/2118.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category_data">Lua Kae Tahi (Giscardians)</div>
<div class="category_data" style="padding-top: 3px;">Mouvement des Radicaux de Gauche or MRG </div>
<div class="category_data" style="padding-top: 3px;">Rally for the Republic or RPR (UMP) </div>
<div class="category_data" style="padding-top: 3px;">Socialist Party or PS </div>
<div class="category_data" style="padding-top: 3px;">Taumu'a Lelei </div>
<div class="category_data" style="padding-top: 3px;">Union Populaire Locale or UPL </div>
<div class="category_data" style="padding-top: 3px;">Union Pour la Democratie Francaise or UDF </div>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2115&alphaletter=P&term=Political pressure groups and leaders" title="Notes and Definitions: Political pressure groups and leaders"> Political pressure groups and leaders:</a>
</div></td>
<td align="right">
<a href="../fields/2115.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category_data">NA</div>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2107&alphaletter=I&term=International organization participation" title="Notes and Definitions: International organization participation"> International organization participation:</a>
</div></td>
<td align="right">
<a href="../fields/2107.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category_data">PIF (observer), SPC, UPU</div>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2149&alphaletter=D&term=Diplomatic representation in the US" title="Notes and Definitions: Diplomatic representation in the US"> Diplomatic representation in the US:</a>
</div></td>
<td align="right">
<a href="../fields/2149.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category_data">none (overseas territory of France)</div>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2007&alphaletter=D&term=Diplomatic representation from the US" title="Notes and Definitions: Diplomatic representation from the US"> Diplomatic representation from the US:</a>
</div></td>
<td align="right">
<a href="../fields/2007.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category_data">none (overseas territory of France)</div>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2081&alphaletter=F&term=Flag description" title="Notes and Definitions: Flag description"> Flag description:</a>
</div></td>
<td align="right">
<a href="../fields/2081.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category_data">unofficial, local flag has a red field with four white isosceles triangles in the middle, representing the three native kings of the islands and the French administrator; the apexes of the triangles are oriented inward and at right angles to each other; the flag of France, outlined in white on two sides, is in the upper hoist quadrant</div>
<div class="category" style="padding-top: 2px;">
<em>note:</em>
<span class="category_data" style="font-weight:normal; vertical-align:top;">the design is derived from an original red banner with a white cross pattee that was introduced in the 19th century by French missionaries; the flag of France is used for official occasions </span></div>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2230&alphaletter=N&term=National symbol(s)" title="Notes and Definitions: National symbol(s)"> National symbol(s):</a>
</div></td>
<td align="right">
<a href="../fields/2230.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category_data">red saltire (Saint Andrew's Cross) on a white square on a red field</div>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2218&alphaletter=N&term=National anthem" title="Notes and Definitions: National anthem"> National anthem:</a>
</div></td>
<td align="right">
<a href="../fields/2218.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category" style="padding-top: 2px;">
<span style="font-size: 11px;"><em>note:</em></span>
<span class="category_data" style="font-weight:normal; vertical-align:bottom;">as a territory of France, "La Marseillaise" is official (see France)</span></div>
<link rel="stylesheet" type="text/css" href="../styles/jquery.ui.core.css"/>
<p><a href="../anthems/WF.mp3" class="playAnthem" name="Wallis and Futuna" target="_new"><img src="../graphics/play_anthem.png"></a></p>
<tr>
<td class="category_data" style="padding-bottom: 5px;"></td>
</tr>
</table>
</ul>
</div>
</div>
<script src="jClocksGMT-master/js/jClocksGMT.js"></script>
<script src="jClocksGMT-master/js/jquery.rotate.js"></script>
<link rel="stylesheet" href="jClocksGMT-master/css/jClocksGMT.css">
<script>
$(document).ready(function() {
$('[id^="CollapsiblePanel1"] h2').css({'background-color':'#cce0eb',"border-bottom":"2px solid white","cursor":"pointer"}); // aus
});
</script>
<div id="CollapsiblePanel1_Econ" class="CollapsiblePanel" style="width:100%; ">
<div class="wrapper">
<h2 class="question question-back" ccode="wf" sectiontitle="Economy"><a href="javascript:void();">Economy</span> ::</span><span class="region">Wallis and Futuna</span></a></h2>
<div class="answer" align="left">
<div class="box" style="padding: 0px; margin: 0px;">
<ul style="text-align: left;padding: 0px;margin: 0px;width: 100%;">
<table border="0" cellspacing="0" cellpadding="0" style="width: 100%;">
<tr class="aus_light" >
<td width="450" height="20"><div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2116&alphaletter=E&term=Economy - overview" title="Notes and Definitions: Economy - overview"> Economy - overview</a>:
</div></td>
<td align="right">
<a href="../fields/2116.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"> <img src="../graphics/field_listing_on.gif" border="0" style="text-decoration:none;"> </a>
</tr>
<tr>
<td id="data" colspan="2" style="vertical-align:middle;">
<div class="category_data">The economy is limited to traditional subsistence agriculture, with 80% of labor force earnings from agriculture (coconuts and vegetables), livestock (mostly pigs), and fishing. About 4% of the population is employed in government. Revenues come from French Government subsidies, licensing of fishing rights to Japan and South Korea, import taxes, and remittances from expatriate workers in New Caledonia.</div>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2001&alphaletter=G&term=GDP (purchasing power parity)" title="Notes and Definitions: GDP (purchasing power parity)"> GDP (purchasing power parity):</a>
</div></td>
<td align="right">
<a href="../fields/2001.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category_data">$60 million (2004 est.)</div>
<span class="category" style="padding-left:7px;">country comparison to the world:</span> <span class="category_data"> <a href="../rankorder/2001rank.html?countryname=Wallis and Futuna&countrycode=wf®ionCode=aus&rank=223#wf" onMouseDown="" title="Country comparison to the world" alt="Country comparison to the world"> 223 </a> </span>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2195&alphaletter=G&term=GDP (official exchange rate)" title="Notes and Definitions: GDP (official exchange rate)"> GDP (official exchange rate):</a>
</div></td>
<td align="right">
<a href="../fields/2195.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category_data">$NA</div>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2003&alphaletter=G&term=GDP - real growth rate" title="Notes and Definitions: GDP - real growth rate"> GDP - real growth rate:</a>
</div></td>
<td align="right">
<a href="../fields/2003.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category_data">NA%</div>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2004&alphaletter=G&term=GDP - per capita (PPP)" title="Notes and Definitions: GDP - per capita (PPP)"> GDP - per capita (PPP):</a>
</div></td>
<td align="right">
<a href="../fields/2004.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category_data">$3,800 (2004 est.)</div>
<span class="category" style="padding-left:7px;">country comparison to the world:</span> <span class="category_data"> <a href="../rankorder/2004rank.html?countryname=Wallis and Futuna&countrycode=wf®ionCode=aus&rank=170#wf" onMouseDown="" title="Country comparison to the world" alt="Country comparison to the world"> 170 </a> </span>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2012&alphaletter=G&term=GDP - composition, by sector of origin" title="Notes and Definitions: GDP - composition, by sector of origin"> GDP - composition, by sector of origin:</a>
</div></td>
<td align="right">
<a href="../fields/2012.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category" style="padding-top: 2px;">
agriculture:
<span class="category_data" style="font-weight:normal; vertical-align:bottom;">NA%</span></div>
<div class="category" style="padding-top: 2px;">
industry:
<span class="category_data" style="font-weight:normal; vertical-align:top;">NA% </span></div>
<div class="category" style="padding-top: 2px;">
services:
<span class="category_data" style="font-weight:normal; vertical-align:top;">NA% </span></div>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2052&alphaletter=A&term=Agriculture - products" title="Notes and Definitions: Agriculture - products"> Agriculture - products:</a>
</div></td>
<td align="right">
<a href="../fields/2052.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category_data">coconuts, breadfruit, yams, taro, bananas; pigs, goats; fish</div>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2090&alphaletter=I&term=Industries" title="Notes and Definitions: Industries"> Industries:</a>
</div></td>
<td align="right">
<a href="../fields/2090.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category_data">copra, handicrafts, fishing, lumber</div>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2089&alphaletter=I&term=Industrial production growth rate" title="Notes and Definitions: Industrial production growth rate"> Industrial production growth rate:</a>
</div></td>
<td align="right">
<a href="../fields/2089.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category_data">NA%</div>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2095&alphaletter=L&term=Labor force" title="Notes and Definitions: Labor force"> Labor force:</a>
</div></td>
<td align="right">
<a href="../fields/2095.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category_data">3,104 (2003)</div>
<span class="category" style="padding-left:7px;">country comparison to the world:</span> <span class="category_data"> <a href="../rankorder/2095rank.html?countryname=Wallis and Futuna&countrycode=wf®ionCode=aus&rank=226#wf" onMouseDown="" title="Country comparison to the world" alt="Country comparison to the world"> 226 </a> </span>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2048&alphaletter=L&term=Labor force - by occupation" title="Notes and Definitions: Labor force - by occupation"> Labor force - by occupation:</a>
</div></td>
<td align="right">
<a href="../fields/2048.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category" style="padding-top: 2px;">
agriculture:
<span class="category_data" style="font-weight:normal; vertical-align:bottom;">80%</span></div>
<div class="category" style="padding-top: 2px;">
industry:
<span class="category_data" style="font-weight:normal; vertical-align:top;">4% </span></div>
<div class="category" style="padding-top: 2px;">
services:
<span class="category_data" style="font-weight:normal; vertical-align:top;">16% (2001 est.) </span></div>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2129&alphaletter=U&term=Unemployment rate" title="Notes and Definitions: Unemployment rate"> Unemployment rate:</a>
</div></td>
<td align="right">
<a href="../fields/2129.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category_data">12.2% (2008)</div>
<span class="category" style="padding-left:7px;">country comparison to the world:</span> <span class="category_data"> <a href="../rankorder/2129rank.html?countryname=Wallis and Futuna&countrycode=wf®ionCode=aus&rank=124#wf" onMouseDown="" title="Country comparison to the world" alt="Country comparison to the world"> 124 </a> </span>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2046&alphaletter=P&term=Population below poverty line" title="Notes and Definitions: Population below poverty line"> Population below poverty line:</a>
</div></td>
<td align="right">
<a href="../fields/2046.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category_data">NA%</div>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2047&alphaletter=H&term=Household income or consumption by percentage share" title="Notes and Definitions: Household income or consumption by percentage share"> Household income or consumption by percentage share:</a>
</div></td>
<td align="right">
<a href="../fields/2047.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category" style="padding-top: 2px;">
lowest 10%:
<span class="category_data" style="font-weight:normal; vertical-align:bottom;">NA%</span></div>
<div class="category" style="padding-top: 2px;">
highest 10%:
<span class="category_data" style="font-weight:normal; vertical-align:top;">NA% </span></div>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2056&alphaletter=B&term=Budget" title="Notes and Definitions: Budget"> Budget:</a>
</div></td>
<td align="right">
<a href="../fields/2056.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category" style="padding-top: 2px;">
revenues:
<span class="category_data" style="font-weight:normal; vertical-align:bottom;">$29,730</span></div>
<div class="category" style="padding-top: 2px;">
expenditures:
<span class="category_data" style="font-weight:normal; vertical-align:top;">$31,330 (2004) </span></div>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2186&alphaletter=P&term=Public debt" title="Notes and Definitions: Public debt"> Public debt:</a>
</div></td>
<td align="right">
<a href="../fields/2186.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category_data">5.6% of GDP (2004 est.)</div>
<span class="category" style="padding-left:7px;">country comparison to the world:</span> <span class="category_data"> <a href="../rankorder/2186rank.html?countryname=Wallis and Futuna&countrycode=wf®ionCode=aus&rank=158#wf" onMouseDown="" title="Country comparison to the world" alt="Country comparison to the world"> 158 </a> </span>
<div class="category" style="padding-top: 2px;">
<em>note:</em>
<span class="category_data" style="font-weight:normal; vertical-align:top;">offical data; data cover general government debt, and includes debt instruments issued (or owned) by government entities other than the treasury; the data include treasury debt held by foreign entities; the data include debt issued by subnational entities, as well as intra-governmental debt; intra-governmental debt consists of treasury borrowings from surpluses in the social funds, such as for retirement, medical care, and unemployment; debt instruments for the social funds are not sold at public auctions </span></div>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2080&alphaletter=F&term=Fiscal year" title="Notes and Definitions: Fiscal year"> Fiscal year:</a>
</div></td>
<td align="right">
<a href="../fields/2080.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category_data">calendar year</div>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2092&alphaletter=I&term=Inflation rate (consumer prices)" title="Notes and Definitions: Inflation rate (consumer prices)"> Inflation rate (consumer prices):</a>
</div></td>
<td align="right">
<a href="../fields/2092.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category_data">2.8% (2005)</div>
<span class="category" style="padding-left:7px;">country comparison to the world:</span> <span class="category_data"> <a href="../rankorder/2092rank.html?countryname=Wallis and Futuna&countrycode=wf®ionCode=aus&rank=105#wf" onMouseDown="" title="Country comparison to the world" alt="Country comparison to the world"> 105 </a> </span>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2078&alphaletter=E&term=Exports" title="Notes and Definitions: Exports"> Exports:</a>
</div></td>
<td align="right">
<a href="../fields/2078.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category_data">$47,450 (2004)</div>
<span class="category" style="padding-left:7px;">country comparison to the world:</span> <span class="category_data"> <a href="../rankorder/2078rank.html?countryname=Wallis and Futuna&countrycode=wf®ionCode=aus&rank=222#wf" onMouseDown="" title="Country comparison to the world" alt="Country comparison to the world"> 222 </a> </span>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2049&alphaletter=E&term=Exports - commodities" title="Notes and Definitions: Exports - commodities"> Exports - commodities:</a>
</div></td>
<td align="right">
<a href="../fields/2049.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category_data">copra, chemicals, construction materials</div>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2087&alphaletter=I&term=Imports" title="Notes and Definitions: Imports"> Imports:</a>
</div></td>
<td align="right">
<a href="../fields/2087.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category_data">$61.17 million (2004)</div>
<span class="category" style="padding-left:7px;">country comparison to the world:</span> <span class="category_data"> <a href="../rankorder/2087rank.html?countryname=Wallis and Futuna&countrycode=wf®ionCode=aus&rank=217#wf" onMouseDown="" title="Country comparison to the world" alt="Country comparison to the world"> 217 </a> </span>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2058&alphaletter=I&term=Imports - commodities" title="Notes and Definitions: Imports - commodities"> Imports - commodities:</a>
</div></td>
<td align="right">
<a href="../fields/2058.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category_data">chemicals, machinery, consumer goods</div>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2079&alphaletter=D&term=Debt - external" title="Notes and Definitions: Debt - external"> Debt - external:</a>
</div></td>
<td align="right">
<a href="../fields/2079.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category_data">$3.67 million (2004)</div>
<span class="category" style="padding-left:7px;">country comparison to the world:</span> <span class="category_data"> <a href="../rankorder/2079rank.html?countryname=Wallis and Futuna&countrycode=wf®ionCode=aus&rank=199#wf" onMouseDown="" title="Country comparison to the world" alt="Country comparison to the world"> 199 </a> </span>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2076&alphaletter=E&term=Exchange rates" title="Notes and Definitions: Exchange rates"> Exchange rates:</a>
</div></td>
<td align="right">
<a href="../fields/2076.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category_data">Comptoirs Francais du Pacifique francs (XPF) per US dollar -</div>
<div class="category_data" style="padding-top: 3px;">90.01 (February 2012) </div>
<div class="category_data" style="padding-top: 3px;">87.59 (2007) </div>
<tr>
<td class="category_data" style="padding-bottom: 5px;"></td>
</tr>
</table>
</ul>
</div>
</div>
<script src="jClocksGMT-master/js/jClocksGMT.js"></script>
<script src="jClocksGMT-master/js/jquery.rotate.js"></script>
<link rel="stylesheet" href="jClocksGMT-master/css/jClocksGMT.css">
</div>
<script src="jClocksGMT-master/js/jClocksGMT.js"></script>
<script src="jClocksGMT-master/js/jquery.rotate.js"></script>
<link rel="stylesheet" href="jClocksGMT-master/css/jClocksGMT.css">
<script>
$(document).ready(function() {
$('[id^="CollapsiblePanel1"] h2').css({'background-color':'#cce0eb',"border-bottom":"2px solid white","cursor":"pointer"}); // aus
});
</script>
<div id="CollapsiblePanel1_Comm" class="CollapsiblePanel" style="width:100%; ">
<div class="wrapper">
<h2 class="question question-back" ccode="wf" sectiontitle="Communications"><a href="javascript:void();">Communications</span> ::</span><span class="region">Wallis and Futuna</span></a></h2>
<div class="answer" align="left">
<div class="box" style="padding: 0px; margin: 0px;">
<ul style="text-align: left;padding: 0px;margin: 0px;width: 100%;">
<table border="0" cellspacing="0" cellpadding="0" style="width: 100%;">
<tr class="aus_light" >
<td width="450" height="20"><div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2124&alphaletter=T&term=Telephone system" title="Notes and Definitions: Telephone system"> Telephone system</a>:
</div></td>
<td align="right">
<a href="../fields/2124.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"> <img src="../graphics/field_listing_on.gif" border="0" style="text-decoration:none;"> </a>
</tr>
<tr>
<td id="data" colspan="2" style="vertical-align:middle;">
<div class="category">international: <span class="category_data" style="font-weight:normal;">country code - 681</span> </div>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2213&alphaletter=B&term=Broadcast media" title="Notes and Definitions: Broadcast media"> Broadcast media:</a>
</div></td>
<td align="right">
<a href="../fields/2213.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category_data">the publicly owned French Overseas Network (RFO), which broadcasts to France's overseas departments and territories, is carried on the RFO Wallis and Fortuna TV and radio stations (2008)</div>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2154&alphaletter=I&term=Internet country code" title="Notes and Definitions: Internet country code"> Internet country code:</a>
</div></td>
<td align="right">
<a href="../fields/2154.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category_data">.wf</div>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2184&alphaletter=I&term=Internet hosts" title="Notes and Definitions: Internet hosts"> Internet hosts:</a>
</div></td>
<td align="right">
<a href="../fields/2184.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category_data">2,760 (2012)</div>
<span class="category" style="padding-left:7px;">country comparison to the world:</span> <span class="category_data"> <a href="../rankorder/2184rank.html?countryname=Wallis and Futuna&countrycode=wf®ionCode=aus&rank=157#wf" onMouseDown="" title="Country comparison to the world" alt="Country comparison to the world"> 157 </a> </span>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2153&alphaletter=I&term=Internet users" title="Notes and Definitions: Internet users"> Internet users:</a>
</div></td>
<td align="right">
<a href="../fields/2153.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category_data">1,300 (2009)</div>
<span class="category" style="padding-left:7px;">country comparison to the world:</span> <span class="category_data"> <a href="../rankorder/2153rank.html?countryname=Wallis and Futuna&countrycode=wf®ionCode=aus&rank=212#wf" onMouseDown="" title="Country comparison to the world" alt="Country comparison to the world"> 212 </a> </span>
<tr>
<td class="category_data" style="padding-bottom: 5px;"></td>
</tr>
</table>
</ul>
</div>
</div>
<script src="jClocksGMT-master/js/jClocksGMT.js"></script>
<script src="jClocksGMT-master/js/jquery.rotate.js"></script>
<link rel="stylesheet" href="jClocksGMT-master/css/jClocksGMT.css">
<script>
$(document).ready(function() {
$('[id^="CollapsiblePanel1"] h2').css({'background-color':'#cce0eb',"border-bottom":"2px solid white","cursor":"pointer"}); // aus
});
</script>
<div id="CollapsiblePanel1_Trans" class="CollapsiblePanel" style="width:100%; ">
<div class="wrapper">
<h2 class="question question-back" ccode="wf" sectiontitle="Transportation"><a href="javascript:void();">Transportation</span> ::</span><span class="region">Wallis and Futuna</span></a></h2>
<div class="answer" align="left">
<div class="box" style="padding: 0px; margin: 0px;">
<ul style="text-align: left;padding: 0px;margin: 0px;width: 100%;">
<table border="0" cellspacing="0" cellpadding="0" style="width: 100%;">
<tr class="aus_light" >
<td width="450" height="20"><div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2053&alphaletter=A&term=Airports" title="Notes and Definitions: Airports"> Airports</a>:
</div></td>
<td align="right">
<a href="../fields/2053.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"> <img src="../graphics/field_listing_on.gif" border="0" style="text-decoration:none;"> </a>
</tr>
<tr>
<td id="data" colspan="2" style="vertical-align:middle;">
<div class="category_data">2 (2013)</div>
<span class="category" style="padding-left:7px;">country comparison to the world:</span> <span class="category_data"> <a href="../rankorder/2053rank.html?countryname=Wallis and Futuna&countrycode=wf®ionCode=aus&rank=203#wf203" onMouseDown="" title="Country comparison to the world" alt="Country comparison to the world">203</a> </span>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2030&alphaletter=A&term=Airports - with paved runways" title="Notes and Definitions: Airports - with paved runways"> Airports - with paved runways:</a>
</div></td>
<td align="right">
<a href="../fields/2030.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category" style="padding-top: 2px;">
total:
<span class="category_data" style="font-weight:normal; vertical-align:bottom;">2</span></div>
<div class="category" style="padding-top: 2px;">
1,524 to 2,437 m:
<span class="category_data" style="font-weight:normal; vertical-align:top;">1 </span></div>
<div class="category" style="padding-top: 2px;">
914 to 1,523 m:
<span class="category_data" style="font-weight:normal; vertical-align:top;">1 (2013) </span></div>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2120&alphaletter=P&term=Ports and terminals" title="Notes and Definitions: Ports and terminals"> Ports and terminals:</a>
</div></td>
<td align="right">
<a href="../fields/2120.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category" style="padding-top: 2px;">
major seaport(s):
<span class="category_data" style="font-weight:normal; vertical-align:bottom;">Leava, Mata-Utu</span></div>
<tr>
<td class="category_data" style="padding-bottom: 5px;"></td>
</tr>
</table>
</ul>
</div>
</div>
<script src="jClocksGMT-master/js/jClocksGMT.js"></script>
<script src="jClocksGMT-master/js/jquery.rotate.js"></script>
<link rel="stylesheet" href="jClocksGMT-master/css/jClocksGMT.css">
<script>
$(document).ready(function() {
$('[id^="CollapsiblePanel1"] h2').css({'background-color':'#cce0eb',"border-bottom":"2px solid white","cursor":"pointer"}); // aus
});
</script>
<div id="CollapsiblePanel1_Military" class="CollapsiblePanel" style="width:100%; ">
<div class="wrapper">
<h2 class="question question-back" ccode="wf" sectiontitle="Military"><a href="javascript:void();">Military</span> ::</span><span class="region">Wallis and Futuna</span></a></h2>
<div class="answer" align="left">
<div class="box" style="padding: 0px; margin: 0px;">
<ul style="text-align: left;padding: 0px;margin: 0px;width: 100%;">
<table border="0" cellspacing="0" cellpadding="0" style="width: 100%;">
<tr class="aus_light" >
<td width="450" height="20"><div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2025&alphaletter=M&term=Manpower fit for military service" title="Notes and Definitions: Manpower fit for military service"> Manpower fit for military service</a>:
</div></td>
<td align="right">
<a href="../fields/2025.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"> <img src="../graphics/field_listing_on.gif" border="0" style="text-decoration:none;"> </a>
</tr>
<tr>
<td id="data" colspan="2" style="vertical-align:middle;">
<div class="category">males age 16-49: <span class="category_data" style="font-weight:normal;">3,376</span> </div>
<div class="category" style="padding-top: 2px;">
females age 16-49:
<span class="category_data" style="font-weight:normal; vertical-align:top;">3,314 (2010 est.) </span></div>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2026&alphaletter=M&term=Manpower reaching militarily significant age annually" title="Notes and Definitions: Manpower reaching militarily significant age annually"> Manpower reaching militarily significant age annually:</a>
</div></td>
<td align="right">
<a href="../fields/2026.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category" style="padding-top: 2px;">
male:
<span class="category_data" style="font-weight:normal; vertical-align:bottom;">168</span></div>
<div class="category" style="padding-top: 2px;">
female:
<span class="category_data" style="font-weight:normal; vertical-align:top;">139 (2010 est.) </span></div>
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr class="aus_light">
<td width="450" height="20">
<div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2137&alphaletter=M&term=Military - note" title="Notes and Definitions: Military - note"> Military - note:</a>
</div></td>
<td align="right">
<a href="../fields/2137.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"><img src="../graphics/field_listing_on.gif" border="0" ></a>
</td>
</tr>
<tr height="22">
<td colspan="2" id="data">
<div class="category_data">defense is the responsibility of France</div>
<tr>
<td class="category_data" style="padding-bottom: 5px;"></td>
</tr>
</table>
</ul>
</div>
</div>
<script src="jClocksGMT-master/js/jClocksGMT.js"></script>
<script src="jClocksGMT-master/js/jquery.rotate.js"></script>
<link rel="stylesheet" href="jClocksGMT-master/css/jClocksGMT.css">
<script>
$(document).ready(function() {
$('[id^="CollapsiblePanel1"] h2').css({'background-color':'#cce0eb',"border-bottom":"2px solid white","cursor":"pointer"}); // aus
});
</script>
<div id="CollapsiblePanel1_Issues" class="CollapsiblePanel" style="width:100%; ">
<div class="wrapper">
<h2 class="question question-back" ccode="wf" sectiontitle="Transnational Issues"><a href="javascript:void();">Transnational Issues</span> ::</span><span class="region">Wallis and Futuna</span></a></h2>
<div class="answer" align="left">
<div class="box" style="padding: 0px; margin: 0px;">
<ul style="text-align: left;padding: 0px;margin: 0px;width: 100%;">
<table border="0" cellspacing="0" cellpadding="0" style="width: 100%;">
<tr class="aus_light" >
<td width="450" height="20"><div class="category" style="padding-left:5px;" id="field">
<a href="../docs/notesanddefs.html?fieldkey=2070&alphaletter=D&term=Disputes - international" title="Notes and Definitions: Disputes - international"> Disputes - international</a>:
</div></td>
<td align="right">
<a href="../fields/2070.html#wf" title="<img src = '../graphics/field_listing_tooltip.gif'>"> <img src="../graphics/field_listing_on.gif" border="0" style="text-decoration:none;"> </a>
</tr>
<tr>
<td id="data" colspan="2" style="vertical-align:middle;">
<div class="category_data">none</div>
<tr>
<td class="category_data" style="padding-bottom: 5px;"></td>
</tr>
</table>
</ul>
</div>
</div>
<div class="wrapper">
<div style="float:right; margin-top: 0px;" class="expand_all">
<a href="javascript:void(0)" class="expand">EXPAND ALL</a><a href="javascript:void(0)" class="collapse" style="display: none;">COLLAPSE ALL</a>
</div>
</div>
<div id="flagDialog" style="display: none" title="The World Factbook"></div>
<div id="photoDialogWindow" style="display:none;" title="The World Factbook">
</div>
<!-- InstanceEndEditable -->
</td>
</tr>
<tr>
<td style="height:75px;"> </td>
</tr>
</table>
</div>
</div>
</article>
</div>
</div>
</section>
<footer id="footer"><span class="divider"></span>
<a href="#" class="logo-2"><img src="../images/logo-2.png" alt="Central Intelligence Agency"></a>
<div class="footer-holder">
<div class="footer-frame">
<nav class="footer-nav"><div class="info-block">
<h3><a href="/about-cia">About CIA</a></h3>
<ul><li>
<a href="/about-cia/todays-cia">Today's CIA</a>
</li>
<li>
<a href="/about-cia/leadership">Leadership</a>
</li>
<li>
<a href="/about-cia/cia-vision-mission-values">CIA Vision, Mission & Values</a>
</li>
<li>
<a href="/about-cia/headquarters-tour">Headquarters Tour</a>
</li>
<li>
<a href="/about-cia/cia-museum">CIA Museum</a>
</li>
<li>
<a href="/about-cia/history-of-the-cia">History of the CIA</a>
</li>
<li>
<a href="/about-cia/faqs">FAQs</a>
</li>
<li>
<a href="/about-cia/no-fear-act">NoFEAR Act</a>
</li>
<li>
<a href="/about-cia/site-policies">Site Policies</a>
</li>
</ul></div>
<div class="info-block">
<h3><a href="/careers">Careers & Internships</a></h3>
<ul><li>
<a href="/careers/opportunities">Career Opportunities </a>
</li>
<li>
<a href="/careers/student-opportunities">Student Opportunities</a>
</li>
<li>
<a href="/careers/application-process">Application Process</a>
</li>
<li>
<a href="/careers/life-at-cia">Life at CIA</a>
</li>
<li>
<a href="/careers/diversity">Diversity</a>
</li>
<li>
<a href="/careers/military-transition">Military Transition</a>
</li>
<li>
<a href="/careers/games-information">Diversions & Information</a>
</li>
<li>
<a href="/careers/faq">FAQs</a>
</li>
</ul><h3><a href="/offices-of-cia">Offices of CIA</a></h3>
<ul><li>
<a href="/offices-of-cia/intelligence-analysis">Intelligence & Analysis</a>
</li>
<li>
<a href="/offices-of-cia/clandestine-service">Clandestine Service</a>
</li>
<li>
<a href="/offices-of-cia/science-technology">Science & Technology</a>
</li>
<li>
<a href="/offices-of-cia/mission-support">Support to Mission</a>
</li>
<li>
<a href="/offices-of-cia/human-resources">Human Resources</a>
</li>
<li>
<a href="/offices-of-cia/public-affairs">Public Affairs</a>
</li>
<li>
<a href="/offices-of-cia/general-counsel">General Counsel</a>
</li>
<li>
<a href="/offices-of-cia/equal-employment-opportunity">Equal Employment Opportunity</a>
</li>
<li>
<a href="/offices-of-cia/congressional-affairs">Congressional Affairs</a>
</li>
<li>
<a href="/offices-of-cia/inspector-general">Inspector General</a>
</li>
<li>
<a href="/offices-of-cia/military-affairs">Military Affairs</a>
</li>
</ul></div>
<div class="info-block">
<h3><a href="/news-information">News & Information</a></h3>
<ul><li>
<a href="/news-information/press-releases-statements">Press Releases & Statements</a>
</li>
<li>
<a href="/news-information/speeches-testimony">Speeches & Testimony</a>
</li>
<li>
<a href="/news-information/cia-the-war-on-terrorism">CIA & the War on Terrorism</a>
</li>
<li>
<a href="/news-information/featured-story-archive">Featured Story Archive</a>
</li>
<li>
<a href="/news-information/Whats-New-on-CIAgov">What’s New Archive</a>
</li>
<li>
<a href="/news-information/your-news">Your News</a>
</li>
</ul><h3><a href="/library">Library</a></h3>
<ul><li>
<a href="/library/publications">Publications</a>
</li>
<li>
<a href="/library/center-for-the-study-of-intelligence">Center for the Study of Intelligence</a>
</li>
<li>
<a href="/library/foia">Freedom of Information Act Electronic Reading Room</a>
</li>
<li>
<a href="/library/kent-center-occasional-papers">Kent Center Occasional Papers</a>
</li>
<li>
<a href="/library/intelligence-literature">Intelligence Literature</a>
</li>
<li>
<a href="/library/reports">Reports</a>
</li>
<li>
<a href="/library/related-links.html">Related Links</a>
</li>
<li>
<a href="/library/video-center">Video Center</a>
</li>
</ul></div>
<div class="info-block add">
<h3><a href="/kids-page">Kids' Zone</a></h3>
<ul><li>
<a href="/kids-page/k-5th-grade">K-5th Grade</a>
</li>
<li>
<a href="/kids-page/6-12th-grade">6-12th Grade</a>
</li>
<li>
<a href="/kids-page/parents-teachers">Parents & Teachers</a>
</li>
<li>
<a href="/kids-page/games">Games</a>
</li>
<li>
<a href="/kids-page/related-links">Related Links</a>
</li>
<li>
<a href="/kids-page/privacy-statement">Privacy Statement</a>
</li>
</ul><h3><a href="/contact-cia">Connect with CIA</a></h3>
<ul class="socials-list"><li><a href="http://www.youtube.com/user/ciagov">CIA YouTube</a></li>
<li><a class="social-2" href="http://www.flickr.com/photos/ciagov">CIA Flickr PhotoStream</a></li>
<li><a class="social-3" href="/news-information/your-news">RSS</a></li>
<li><a class="social-4" href="/contact-cia">Contact Us</a></li>
</ul></div>
</nav><div id="plugins" class="info-panel">
<h4>* Required plugins</h4>
<ul><li data-plugin="swf"><a href="http://get.adobe.com/flashplayer/">Adobe® Flash Player</a></li>
<li data-plugin="pdf"><a href="http://get.adobe.com/reader/">Adobe® Reader®</a></li>
<li data-plugin="doc"><a href="http://www.microsoft.com/en-us/download/details.aspx?id=4">MS Word Viewer</a></li>
</ul></div>
</div>
</div>
</footer>
</div>
<div class="footer-panel" style="width: 990px;" align="center">
<nav class="sub-nav" style="width: 100%; text-align: center;" >
<h3 class="visuallyhidden">Footer Navigation</h3>
<ul>
<li><a href="/about-cia/site-policies/#privacy-notice" title="Site Policies">Privacy</a></li>
<li><a href="/about-cia/site-policies/#copy" title="Site Policies">Copyright</a></li>
<li><a href="/about-cia/site-policies/" title="Site Policies">Site Policies</a></li>
<li><a href="http://www.usa.gov/">USA.gov</a></li>
<li><a href="http://www.foia.cia.gov/">FOIA</a></li>
<li><a href="http://www.dni.gov/">DNI.gov</a></li>
<li><a href="/about-cia/no-fear-act/" title="No FEAR Act">NoFEAR Act</a></li>
<li><a href="/offices-of-cia/inspector-general/">Inspector General</a></li>
<li><a href="/mobile/">Mobile Site</a></li>
<li><a href="/contact-cia/">Contact CIA</a></li>
<li><a href="/sitemap.html">Site Map</a></li>
</ul>
<div style="width: 100%;" align="center"><a href="/open/" ><img src="../images/ico-06.png" width="101" height="24" alt="open gov"></a></div>
</nav>
</div>
<a href="#" class="go-top">GO TOP</a>
<script>
$(document).ready(function() {
// Show or hide the sticky footer button
$(window).scroll(function() {
if ($(this).scrollTop() > 350) {
$('.go-top').fadeIn(100);
} else {
$('.go-top').fadeOut(100);
}
});
// Animate the scroll to top
$('.go-top').click(function(event) {
event.preventDefault();
$('html, body').animate({scrollTop: 350}, 300);
})
});
</script>
</body>
<!-- InstanceEnd --></html>
| Focom/NLPWork1 | Part1/factbook/geos/wf.html | HTML | mit | 184,596 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="ko">
<head>
<!-- Generated by javadoc (version 1.7.0_67) on Sun Nov 16 03:30:38 KST 2014 -->
<title>ProgressOutputStream (Haru Android SDK)</title>
<meta name="date" content="2014-11-16">
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="ProgressOutputStream (Haru Android SDK)";
}
//-->
</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="MultipartEntity.html" title="class in com.haru.mime"><span class="strong">Prev Class</span></a></li>
<li><a href="ProgressOutputStream.ProgressListener.html" title="interface in com.haru.mime"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../index.html?com/haru/mime/ProgressOutputStream.html" target="_top">Frames</a></li>
<li><a href="ProgressOutputStream.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><a href="#nested_class_summary">Nested</a> | </li>
<li><a href="#fields_inherited_from_class_java.io.FilterOutputStream">Field</a> | </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.haru.mime</div>
<h2 title="Class ProgressOutputStream" class="title">Class ProgressOutputStream</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li>java.io.OutputStream</li>
<li>
<ul class="inheritance">
<li>java.io.FilterOutputStream</li>
<li>
<ul class="inheritance">
<li>com.haru.mime.ProgressOutputStream</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Implemented Interfaces:</dt>
<dd>java.io.Closeable, java.io.Flushable, java.lang.AutoCloseable</dd>
</dl>
<hr>
<br>
<pre>public class <span class="strong">ProgressOutputStream</span>
extends java.io.FilterOutputStream</pre>
<div class="block">파일 업로드 진행상황을 알 수 있는 OutputStream이다.</div>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ======== NESTED CLASS SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="nested_class_summary">
<!-- -->
</a>
<h3>Nested Class Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Nested Class Summary table, listing nested classes, and an explanation">
<caption><span>Nested Classes</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Class and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static interface </code></td>
<td class="colLast"><code><strong><a href="ProgressOutputStream.ProgressListener.html" title="interface in com.haru.mime">ProgressOutputStream.ProgressListener</a></strong></code> </td>
</tr>
</table>
</li>
</ul>
<!-- =========== FIELD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="field_summary">
<!-- -->
</a>
<h3>Field Summary</h3>
<ul class="blockList">
<li class="blockList"><a name="fields_inherited_from_class_java.io.FilterOutputStream">
<!-- -->
</a>
<h3>Fields inherited from class java.io.FilterOutputStream</h3>
<code>out</code></li>
</ul>
</li>
</ul>
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor_summary">
<!-- -->
</a>
<h3>Constructor Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
<caption><span>Constructors</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><strong><a href="../../../com/haru/mime/ProgressOutputStream.html#ProgressOutputStream(java.io.OutputStream,%20long,%20com.haru.mime.ProgressOutputStream.ProgressListener)">ProgressOutputStream</a></strong>(java.io.OutputStream outstream,
long totalSize,
<a href="ProgressOutputStream.ProgressListener.html" title="interface in com.haru.mime">ProgressOutputStream.ProgressListener</a> progressListener)</code> </td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method_summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span>Methods</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../com/haru/mime/ProgressOutputStream.html#write(byte[],%20int,%20int)">write</a></strong>(byte[] buffer,
int offset,
int length)</code> </td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_java.io.FilterOutputStream">
<!-- -->
</a>
<h3>Methods inherited from class java.io.FilterOutputStream</h3>
<code>close, flush, write, write</code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class java.lang.Object</h3>
<code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor_detail">
<!-- -->
</a>
<h3>Constructor Detail</h3>
<a name="ProgressOutputStream(java.io.OutputStream, long, com.haru.mime.ProgressOutputStream.ProgressListener)">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>ProgressOutputStream</h4>
<pre>public ProgressOutputStream(java.io.OutputStream outstream,
long totalSize,
<a href="ProgressOutputStream.ProgressListener.html" title="interface in com.haru.mime">ProgressOutputStream.ProgressListener</a> progressListener)</pre>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method_detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="write(byte[], int, int)">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>write</h4>
<pre>public void write(byte[] buffer,
int offset,
int length)
throws java.io.IOException</pre>
<dl>
<dt><strong>Overrides:</strong></dt>
<dd><code>write</code> in class <code>java.io.FilterOutputStream</code></dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.io.IOException</code></dd></dl>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><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="MultipartEntity.html" title="class in com.haru.mime"><span class="strong">Prev Class</span></a></li>
<li><a href="ProgressOutputStream.ProgressListener.html" title="interface in com.haru.mime"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../index.html?com/haru/mime/ProgressOutputStream.html" target="_top">Frames</a></li>
<li><a href="ProgressOutputStream.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><a href="#nested_class_summary">Nested</a> | </li>
<li><a href="#fields_inherited_from_class_java.io.FilterOutputStream">Field</a> | </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>
| haruio/haru-admin | public/libraries/javadoc/com/haru/mime/ProgressOutputStream.html | HTML | mit | 11,158 |
<nav class="navbar navbar-default" *ngIf="!auth.authenticated()">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false"
aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">User Profile</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li class="active"><a routerLink="/">Home</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li class="active"><a href="#" (click)="auth.login()" *ngIf="!auth.authenticated()">Login</a></li>
<li class="active"><a routerLink="/profile" *ngIf="auth.authenticated()">Profile</a></li>
<li class="active"><a href="#" (click)="auth.logout()" *ngIf="auth.authenticated()">Logout</a></li>
</ul>
</div>
<!--/.nav-collapse -->
</div>
</nav>
<div class="container" *ngIf="auth.authenticated()">
<div class="wrapper">
<!-- top navbar-->
<header class="topnavbar-wrapper">
<!-- START Top Navbar-->
<nav role="navigation" class="navbar topnavbar">
<!-- START navbar header-->
<div class="navbar-header">
<a href="#/" class="navbar-brand">
<div class="brand-logo">
<img src="img/logo.png" alt="App Logo" class="img-responsive">
</div>
<div class="brand-logo-collapsed">
<img src="img/logo-single.png" alt="App Logo" class="img-responsive">
</div>
</a>
</div>
<!-- END navbar header-->
<!-- START Nav wrapper-->
<div class="nav-wrapper">
<!-- START Left navbar-->
<ul class="nav navbar-nav">
<li>
<!-- Button used to collapse the left sidebar. Only visible on tablet and desktops-->
<a href="#" data-trigger-resize="" data-toggle-state="aside-collapsed" class="hidden-xs">
<em class="fa fa-navicon"></em>
</a>
<!-- Button to show/hide the sidebar on mobile. Visible on mobile only.-->
<a href="#" data-toggle-state="aside-toggled" data-no-persist="true" class="visible-xs sidebar-toggle">
<em class="fa fa-navicon"></em>
</a>
</li>
<!-- START User avatar toggle-->
<li>
<!-- Button used to collapse the left sidebar. Only visible on tablet and desktops-->
<a id="user-block-toggle" href="#user-block" data-toggle="collapse">
<em class="icon-user"></em>
</a>
</li>
<!-- END User avatar toggle-->
<!-- START lock screen-->
<li>
<a href="#" (click)="auth.logout()">
<em class="icon-lock"></em>
</a>
</li>
<!-- END lock screen-->
</ul>
<!-- END Left navbar-->
<!-- START Right Navbar-->
<ul class="nav navbar-nav navbar-right">
<!-- Search icon-->
<li>
<a href="#" data-search-open="">
<em class="icon-magnifier"></em>
</a>
</li>
<!-- Fullscreen (only desktops)-->
<li class="visible-lg">
<a href="#" data-toggle-fullscreen="">
<em class="fa fa-expand"></em>
</a>
</li>
<!-- START Alert menu-->
<li class="dropdown dropdown-list">
<a href="#" data-toggle="dropdown">
<em class="icon-bell"></em>
<div class="label label-danger">11</div>
</a>
<!-- START Dropdown menu-->
<ul class="dropdown-menu animated flipInX">
<li>
<!-- START list group-->
<div class="list-group">
<!-- list item-->
<a href="#" class="list-group-item">
<div class="media-box">
<div class="pull-left">
<em class="fa fa-twitter fa-2x text-info"></em>
</div>
<div class="media-box-body clearfix">
<p class="m0">New followers</p>
<p class="m0 text-muted">
<small>1 new follower</small>
</p>
</div>
</div>
</a>
<!-- list item-->
<a href="#" class="list-group-item">
<div class="media-box">
<div class="pull-left">
<em class="fa fa-envelope fa-2x text-warning"></em>
</div>
<div class="media-box-body clearfix">
<p class="m0">New e-mails</p>
<p class="m0 text-muted">
<small>You have 10 new emails</small>
</p>
</div>
</div>
</a>
<!-- list item-->
<a href="#" class="list-group-item">
<div class="media-box">
<div class="pull-left">
<em class="fa fa-tasks fa-2x text-success"></em>
</div>
<div class="media-box-body clearfix">
<p class="m0">Pending Tasks</p>
<p class="m0 text-muted">
<small>11 pending task</small>
</p>
</div>
</div>
</a>
<!-- last list item-->
<a href="#" class="list-group-item">
<small>More notifications</small>
<span class="label label-danger pull-right">14</span>
</a>
</div>
<!-- END list group-->
</li>
</ul>
<!-- END Dropdown menu-->
</li>
<!-- END Alert menu-->
<!-- START Offsidebar button-->
<li>
<a href="#" data-toggle-state="offsidebar-open" data-no-persist="true">
<em class="icon-notebook"></em>
</a>
</li>
<!-- END Offsidebar menu-->
</ul>
<!-- END Right Navbar-->
</div>
<!-- END Nav wrapper-->
<!-- START Search form-->
<form role="search" action="search.html" class="navbar-form">
<div class="form-group has-feedback">
<input type="text" placeholder="Type and hit enter ..." class="form-control">
<div data-search-dismiss="" class="fa fa-times form-control-feedback"></div>
</div>
<button type="submit" class="hidden btn btn-default">Submit</button>
</form>
<!-- END Search form-->
</nav>
<!-- END Top Navbar-->
</header>
<!-- sidebar-->
<aside class="aside">
<!-- START Sidebar (left)-->
<div class="aside-inner" style="overflow-y: scroll;position: fixed">
<nav data-sidebar-anyclick-close="" class="sidebar">
<!-- START sidebar nav-->
<ul class="nav">
<!-- START user info-->
<li class="has-user-block">
<div id="user-block" class="collapse">
<div class="item user-block">
<!-- User picture-->
<div class="user-block-picture">
<div class="user-block-status">
<img src="img/user/02.jpg" alt="Avatar" width="60" height="60" class="img-thumbnail img-circle">
<div class="circle circle-success circle-lg"></div>
</div>
</div>
<!-- Name and Job-->
<div class="user-block-info">
<span class="user-block-name">Hello, Mike</span>
<span class="user-block-role">Designer</span>
</div>
</div>
</div>
</li>
<!-- END user info-->
<!-- Iterates over all sidebar items-->
<li class="nav-heading ">
<span data-localize="sidebar.heading.HEADER">Main Navigation</span>
</li>
<li class=" ">
<a href="#dashboard" title="Dashboard" data-toggle="collapse">
<div class="pull-right label label-info">3</div>
<em class="icon-speedometer"></em>
<span data-localize="sidebar.nav.DASHBOARD">Dashboard</span>
</a>
<ul id="dashboard" class="nav sidebar-subnav collapse">
<li class="sidebar-subnav-header">Dashboard</li>
<li class=" ">
<a href="dashboard.html" title="Dashboard v1">
<span>Dashboard v1</span>
</a>
</li>
<li class=" ">
<a href="dashboard_v2.html" title="Dashboard v2">
<span>Dashboard v2</span>
</a>
</li>
<li class=" ">
<a href="dashboard_v3.html" title="Dashboard v3">
<span>Dashboard v3</span>
</a>
</li>
</ul>
</li>
<li class="nav-heading ">
<span data-localize="sidebar.heading.COMPONENTS">Components</span>
</li>
<li>
<a routerLink="/profile">
<em class="icon-chemistry"></em>
<span data-localize="sidebar.nav.element.ELEMENTS">
Profile
</span>
</a>
</li>
<li>
<a routerLink="/settings">
<em class="icon-grid"></em>
<span data-localize="sidebar.nav.element.ELEMENTS">
Settings
</span>
</a>
</li>
<!-- <li class=" ">
<a href="#elements" title="Elements" data-toggle="collapse">
<em class="icon-chemistry"></em>
<span data-localize="sidebar.nav.element.ELEMENTS">Elements</span>
</a>
<ul id="elements" class="nav sidebar-subnav collapse">
<li class="sidebar-subnav-header">Elements</li>
<li class=" ">
<a href="buttons.html" title="Buttons">
<span data-localize="sidebar.nav.element.BUTTON">Buttons</span>
</a>
</li>
<li class=" ">
<a href="notifications.html" title="Notifications">
<span data-localize="sidebar.nav.element.NOTIFICATION">Notifications</span>
</a>
</li>
<li class=" ">
<a href="sweetalert.html" title="Sweet Alert">
<span>Sweet Alert</span>
</a>
</li>
<li class=" ">
<a href="tour.html" title="Tour">
<span>Tour</span>
</a>
</li>
<li class=" ">
<a href="carousel.html" title="Carousel">
<span data-localize="sidebar.nav.element.INTERACTION">Carousel</span>
</a>
</li>
<li class=" ">
<a href="spinners.html" title="Spinners">
<span data-localize="sidebar.nav.element.SPINNER">Spinners</span>
</a>
</li>
<li class=" ">
<a href="animations.html" title="Animations">
<span data-localize="sidebar.nav.element.ANIMATION">Animations</span>
</a>
</li>
<li class=" ">
<a href="dropdown-animations.html" title="Dropdown">
<span data-localize="sidebar.nav.element.DROPDOWN">Dropdown</span>
</a>
</li>
<li class=" ">
<a href="nestable.html" title="Nestable">
<span>Nestable</span>
</a>
</li>
<li class=" ">
<a href="sortable.html" title="Sortable">
<span>Sortable</span>
</a>
</li>
<li class=" ">
<a href="panels.html" title="Panels">
<span data-localize="sidebar.nav.element.PANEL">Panels</span>
</a>
</li>
<li class=" ">
<a href="portlets.html" title="Portlets">
<span data-localize="sidebar.nav.element.PORTLET">Portlets</span>
</a>
</li>
<li class=" ">
<a href="grid.html" title="Grid">
<span data-localize="sidebar.nav.element.GRID">Grid</span>
</a>
</li>
<li class=" ">
<a href="grid-masonry.html" title="Grid Masonry">
<span data-localize="sidebar.nav.element.GRID_MASONRY">Grid Masonry</span>
</a>
</li>
<li class=" ">
<a href="typo.html" title="Typography">
<span data-localize="sidebar.nav.element.TYPO">Typography</span>
</a>
</li>
<li class=" ">
<a href="icons-font.html" title="Font Icons">
<div class="pull-right label label-success">+400</div>
<span data-localize="sidebar.nav.element.FONT_ICON">Font Icons</span>
</a>
</li>
<li class=" ">
<a href="icons-weather.html" title="Weather Icons">
<div class="pull-right label label-success">+100</div>
<span data-localize="sidebar.nav.element.WEATHER_ICON">Weather Icons</span>
</a>
</li>
<li class=" ">
<a href="colors.html" title="Colors">
<span data-localize="sidebar.nav.element.COLOR">Colors</span>
</a>
</li>
</ul>
</li>-->
<li class=" ">
<a href="#forms" title="Forms" data-toggle="collapse">
<em class="icon-note"></em>
<span data-localize="sidebar.nav.form.FORM">Forms</span>
</a>
<ul id="forms" class="nav sidebar-subnav collapse">
<li class="sidebar-subnav-header">Forms</li>
<li class=" ">
<a href="form-standard.html" title="Standard">
<span data-localize="sidebar.nav.form.STANDARD">Standard</span>
</a>
</li>
<li class=" ">
<a href="form-extended.html" title="Extended">
<span data-localize="sidebar.nav.form.EXTENDED">Extended</span>
</a>
</li>
<li class=" ">
<a href="form-validation.html" title="Validation">
<span data-localize="sidebar.nav.form.VALIDATION">Validation</span>
</a>
</li>
<li class=" ">
<a href="form-wizard.html" title="Wizard">
<span>Wizard</span>
</a>
</li>
<li class=" ">
<a href="form-upload.html" title="Upload">
<span>Upload</span>
</a>
</li>
<li class=" ">
<a href="form-xeditable.html" title="xEditable">
<span>xEditable</span>
</a>
</li>
<li class=" ">
<a href="form-imagecrop.html" title="Cropper">
<span>Cropper</span>
</a>
</li>
</ul>
</li>
<li class=" ">
<a href="#charts" title="Charts" data-toggle="collapse">
<em class="icon-graph"></em>
<span data-localize="sidebar.nav.chart.CHART">Charts</span>
</a>
<ul id="charts" class="nav sidebar-subnav collapse">
<li class="sidebar-subnav-header">Charts</li>
<li class=" ">
<a href="chart-flot.html" title="Flot">
<span data-localize="sidebar.nav.chart.FLOT">Flot</span>
</a>
</li>
<li class=" ">
<a href="chart-radial.html" title="Radial">
<span data-localize="sidebar.nav.chart.RADIAL">Radial</span>
</a>
</li>
<li class=" ">
<a href="chart-js.html" title="Chart JS">
<span>Chart JS</span>
</a>
</li>
<li class=" ">
<a href="chart-rickshaw.html" title="Rickshaw">
<span>Rickshaw</span>
</a>
</li>
<li class=" ">
<a href="chart-morris.html" title="MorrisJS">
<span>MorrisJS</span>
</a>
</li>
<li class=" ">
<a href="chart-chartist.html" title="Chartist">
<span>Chartist</span>
</a>
</li>
</ul>
</li>
<li class=" ">
<a href="#tables" title="Tables" data-toggle="collapse">
<em class="icon-grid"></em>
<span data-localize="sidebar.nav.table.TABLE">Tables</span>
</a>
<ul id="tables" class="nav sidebar-subnav collapse">
<li class="sidebar-subnav-header">Tables</li>
<li class=" ">
<a href="table-standard.html" title="Standard">
<span data-localize="sidebar.nav.table.STANDARD">Standard</span>
</a>
</li>
<li class=" ">
<a href="table-extended.html" title="Extended">
<span data-localize="sidebar.nav.table.EXTENDED">Extended</span>
</a>
</li>
<li class=" ">
<a href="table-datatable.html" title="DataTables">
<span data-localize="sidebar.nav.table.DATATABLE">DataTables</span>
</a>
</li>
<li class=" ">
<a href="table-jqgrid.html" title="jqGrid">
<span>jqGrid</span>
</a>
</li>
</ul>
</li>
<li class=" ">
<a href="#maps" title="Maps" data-toggle="collapse">
<em class="icon-map"></em>
<span data-localize="sidebar.nav.map.MAP">Maps</span>
</a>
<ul id="maps" class="nav sidebar-subnav collapse">
<li class="sidebar-subnav-header">Maps</li>
<li class=" ">
<a href="maps-google.html" title="Google Maps">
<span data-localize="sidebar.nav.map.GOOGLE">Google Maps</span>
</a>
</li>
<li class=" ">
<a href="maps-vector.html" title="Vector Maps">
<span data-localize="sidebar.nav.map.VECTOR">Vector Maps</span>
</a>
</li>
</ul>
</li>
<li class="nav-heading ">
<span data-localize="sidebar.heading.MORE">More</span>
</li>
<li class=" ">
<a href="#pages" title="Pages" data-toggle="collapse">
<em class="icon-doc"></em>
<span data-localize="sidebar.nav.pages.PAGES">Pages</span>
</a>
<ul id="pages" class="nav sidebar-subnav collapse">
<li class="sidebar-subnav-header">Pages</li>
<li class=" ">
<a href="login.html" title="Login">
<span data-localize="sidebar.nav.pages.LOGIN">Login</span>
</a>
</li>
<li class=" ">
<a href="register.html" title="Sign up">
<span data-localize="sidebar.nav.pages.REGISTER">Sign up</span>
</a>
</li>
<li class=" ">
<a href="recover.html" title="Recover Password">
<span data-localize="sidebar.nav.pages.RECOVER">Recover Password</span>
</a>
</li>
<li class=" ">
<a href="lock.html" title="Lock">
<span data-localize="sidebar.nav.pages.LOCK">Lock</span>
</a>
</li>
<li class=" active">
<a href="template.html" title="Starter Template">
<span data-localize="sidebar.nav.pages.STARTER">Starter Template</span>
</a>
</li>
<li class=" ">
<a href="404.html" title="404">
<span>404</span>
</a>
</li>
<li class=" ">
<a href="500.html" title="500">
<span>500</span>
</a>
</li>
<li class=" ">
<a href="maintenance.html" title="Maintenance">
<span>Maintenance</span>
</a>
</li>
</ul>
</li>
<li class=" ">
<a href="#extras" title="Extras" data-toggle="collapse">
<em class="icon-cup"></em>
<span data-localize="sidebar.nav.extra.EXTRA">Extras</span>
</a>
<ul id="extras" class="nav sidebar-subnav collapse">
<li class="sidebar-subnav-header">Extras</li>
<li class=" ">
<a href="#blog" title="Blog" data-toggle="collapse">
<em class="fa fa-angle-right"></em>
<span>Blog</span>
</a>
<ul id="blog" class="nav sidebar-subnav collapse">
<li class="sidebar-subnav-header">Blog</li>
<li class=" ">
<a href="blog.html" title="List">
<span>List</span>
</a>
</li>
<li class=" ">
<a href="blog-post.html" title="Post">
<span>Post</span>
</a>
</li>
<li class=" ">
<a href="blog-articles.html" title="Articles">
<span>Articles</span>
</a>
</li>
<li class=" ">
<a href="blog-article-view.html" title="Article View">
<span>Article View</span>
</a>
</li>
</ul>
</li>
<li class=" ">
<a href="#ecommerce" title="eCommerce" data-toggle="collapse">
<em class="fa fa-angle-right"></em>
<span>eCommerce</span>
</a>
<ul id="ecommerce" class="nav sidebar-subnav collapse">
<li class="sidebar-subnav-header">eCommerce</li>
<li class=" ">
<a href="ecommerce-orders.html" title="Orders">
<div class="pull-right label label-info">10</div>
<span>Orders</span>
</a>
</li>
<li class=" ">
<a href="ecommerce-order-view.html" title="Order View">
<span>Order View</span>
</a>
</li>
<li class=" ">
<a href="ecommerce-products.html" title="Products">
<span>Products</span>
</a>
</li>
<li class=" ">
<a href="ecommerce-product-view.html" title="Product View">
<span>Product View</span>
</a>
</li>
<li class=" ">
<a href="ecommerce-checkout.html" title="Checkout">
<span>Checkout</span>
</a>
</li>
</ul>
</li>
<li class=" ">
<a href="#forum" title="Forum" data-toggle="collapse">
<em class="fa fa-angle-right"></em>
<span>Forum</span>
</a>
<ul id="forum" class="nav sidebar-subnav collapse">
<li class="sidebar-subnav-header">Forum</li>
<li class=" ">
<a href="forum-categories.html" title="Categories">
<span>Categories</span>
</a>
</li>
<li class=" ">
<a href="forum-topics.html" title="Topics">
<span>Topics</span>
</a>
</li>
<li class=" ">
<a href="forum-discussion.html" title="Discussion">
<span>Discussion</span>
</a>
</li>
</ul>
</li>
<li class=" ">
<a href="contacts.html" title="Contacts">
<span>Contacts</span>
</a>
</li>
<li class=" ">
<a href="contact-details.html" title="Contact details">
<span>Contact details</span>
</a>
</li>
<li class=" ">
<a href="projects.html" title="Projects">
<span>Projects</span>
</a>
</li>
<li class=" ">
<a href="project-details.html" title="Projects details">
<span>Projects details</span>
</a>
</li>
<li class=" ">
<a href="team-viewer.html" title="Team viewer">
<span>Team viewer</span>
</a>
</li>
<li class=" ">
<a href="social-board.html" title="Social board">
<span>Social board</span>
</a>
</li>
<li class=" ">
<a href="vote-links.html" title="Vote links">
<span>Vote links</span>
</a>
</li>
<li class=" ">
<a href="bug-tracker.html" title="Bug tracker">
<span>Bug tracker</span>
</a>
</li>
<li class=" ">
<a href="faq.html" title="FAQ">
<span>FAQ</span>
</a>
</li>
<li class=" ">
<a href="help-center.html" title="Help Center">
<span>Help Center</span>
</a>
</li>
<li class=" ">
<a href="followers.html" title="Followers">
<span>Followers</span>
</a>
</li>
<li class=" ">
<a href="settings.html" title="Settings">
<span>Settings</span>
</a>
</li>
<li class=" ">
<a href="plans.html" title="Plans">
<span>Plans</span>
</a>
</li>
<li class=" ">
<a href="file-manager.html" title="File manager">
<span>File manager</span>
</a>
</li>
<li class=" ">
<a href="mailbox.html" title="Mailbox">
<span data-localize="sidebar.nav.extra.MAILBOX">Mailbox</span>
</a>
</li>
<li class=" ">
<a href="timeline.html" title="Timeline">
<span data-localize="sidebar.nav.extra.TIMELINE">Timeline</span>
</a>
</li>
<li class=" ">
<a href="calendar.html" title="Calendar">
<span data-localize="sidebar.nav.extra.CALENDAR">Calendar</span>
</a>
</li>
<li class=" ">
<a href="invoice.html" title="Invoice">
<span data-localize="sidebar.nav.extra.INVOICE">Invoice</span>
</a>
</li>
<li class=" ">
<a href="search.html" title="Search">
<span data-localize="sidebar.nav.extra.SEARCH">Search</span>
</a>
</li>
<li class=" ">
<a href="todo.html" title="Todo List">
<span data-localize="sidebar.nav.extra.TODO">Todo List</span>
</a>
</li>
<li class=" ">
<a href="profile.html" title="Profile">
<span data-localize="sidebar.nav.extra.PROFILE">Profile</span>
</a>
</li>
</ul>
</li>
<li class=" ">
<a href="#multilevel" title="Multilevel" data-toggle="collapse">
<em class="fa fa-folder-open-o"></em>
<span>Multilevel</span>
</a>
<ul id="multilevel" class="nav sidebar-subnav collapse">
<li class="sidebar-subnav-header">Multilevel</li>
<li class=" ">
<a href="#level1" title="Level 1" data-toggle="collapse">
<span>Level 1</span>
</a>
<ul id="level1" class="nav sidebar-subnav collapse">
<li class="sidebar-subnav-header">Level 1</li>
<li class=" ">
<a href="multilevel-1.html" title="Level1 Item">
<span>Level1 Item</span>
</a>
</li>
<li class=" ">
<a href="#level2" title="Level 2" data-toggle="collapse">
<span>Level 2</span>
</a>
<ul id="level2" class="nav sidebar-subnav collapse">
<li class="sidebar-subnav-header">Level 2</li>
<li class=" ">
<a href="#level3" title="Level 3" data-toggle="collapse">
<span>Level 3</span>
</a>
<ul id="level3" class="nav sidebar-subnav collapse">
<li class="sidebar-subnav-header">Level 3</li>
<li class=" ">
<a href="multilevel-3.html" title="Level3 Item">
<span>Level3 Item</span>
</a>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
<li class=" ">
<a href="documentation.html" title="Documentation">
<em class="icon-graduation"></em>
<span data-localize="sidebar.nav.DOCUMENTATION">Documentation</span>
</a>
</li>
</ul>
<!-- END sidebar nav-->
</nav>
</div>
<!-- END Sidebar (left)-->
</aside>
<!-- offsidebar-->
<aside class="offsidebar hide">
<!-- START Off Sidebar (right)-->
<nav>
<div role="tabpanel">
<!-- Nav tabs-->
<ul role="tablist" class="nav nav-tabs nav-justified">
<li role="presentation" class="active">
<a href="#app-settings" aria-controls="app-settings" role="tab" data-toggle="tab">
<em class="icon-equalizer fa-lg"></em>
</a>
</li>
<li role="presentation">
<a href="#app-chat" aria-controls="app-chat" role="tab" data-toggle="tab">
<em class="icon-user fa-lg"></em>
</a>
</li>
</ul>
<!-- Tab panes-->
<div class="tab-content">
<div id="app-settings" role="tabpanel" class="tab-pane fade in active">
<h3 class="text-center text-thin">Settings</h3>
<div class="p">
<h4 class="text-muted text-thin">Themes</h4>
<div class="table-grid mb">
<div class="col mb">
<div class="setting-color">
<label data-load-css="css/theme-a.css">
<input type="radio" name="setting-theme" checked="checked">
<span class="icon-check"></span>
<span class="split">
<span class="color bg-info"></span>
<span class="color bg-info-light"></span>
</span>
<span class="color bg-white"></span>
</label>
</div>
</div>
<div class="col mb">
<div class="setting-color">
<label data-load-css="css/theme-b.css">
<input type="radio" name="setting-theme">
<span class="icon-check"></span>
<span class="split">
<span class="color bg-green"></span>
<span class="color bg-green-light"></span>
</span>
<span class="color bg-white"></span>
</label>
</div>
</div>
<div class="col mb">
<div class="setting-color">
<label data-load-css="css/theme-c.css">
<input type="radio" name="setting-theme">
<span class="icon-check"></span>
<span class="split">
<span class="color bg-purple"></span>
<span class="color bg-purple-light"></span>
</span>
<span class="color bg-white"></span>
</label>
</div>
</div>
<div class="col mb">
<div class="setting-color">
<label data-load-css="css/theme-d.css">
<input type="radio" name="setting-theme">
<span class="icon-check"></span>
<span class="split">
<span class="color bg-danger"></span>
<span class="color bg-danger-light"></span>
</span>
<span class="color bg-white"></span>
</label>
</div>
</div>
</div>
<div class="table-grid mb">
<div class="col mb">
<div class="setting-color">
<label data-load-css="css/theme-e.css">
<input type="radio" name="setting-theme">
<span class="icon-check"></span>
<span class="split">
<span class="color bg-info-dark"></span>
<span class="color bg-info"></span>
</span>
<span class="color bg-gray-dark"></span>
</label>
</div>
</div>
<div class="col mb">
<div class="setting-color">
<label data-load-css="css/theme-f.css">
<input type="radio" name="setting-theme">
<span class="icon-check"></span>
<span class="split">
<span class="color bg-green-dark"></span>
<span class="color bg-green"></span>
</span>
<span class="color bg-gray-dark"></span>
</label>
</div>
</div>
<div class="col mb">
<div class="setting-color">
<label data-load-css="css/theme-g.css">
<input type="radio" name="setting-theme">
<span class="icon-check"></span>
<span class="split">
<span class="color bg-purple-dark"></span>
<span class="color bg-purple"></span>
</span>
<span class="color bg-gray-dark"></span>
</label>
</div>
</div>
<div class="col mb">
<div class="setting-color">
<label data-load-css="css/theme-h.css">
<input type="radio" name="setting-theme">
<span class="icon-check"></span>
<span class="split">
<span class="color bg-danger-dark"></span>
<span class="color bg-danger"></span>
</span>
<span class="color bg-gray-dark"></span>
</label>
</div>
</div>
</div>
</div>
<div class="p">
<h4 class="text-muted text-thin">Layout</h4>
<div class="clearfix">
<p class="pull-left">Fixed</p>
<div class="pull-right">
<label class="switch">
<input id="chk-fixed" type="checkbox" data-toggle-state="layout-fixed">
<span></span>
</label>
</div>
</div>
<div class="clearfix">
<p class="pull-left">Boxed</p>
<div class="pull-right">
<label class="switch">
<input id="chk-boxed" type="checkbox" data-toggle-state="layout-boxed">
<span></span>
</label>
</div>
</div>
<div class="clearfix">
<p class="pull-left">RTL</p>
<div class="pull-right">
<label class="switch">
<input id="chk-rtl" type="checkbox">
<span></span>
</label>
</div>
</div>
</div>
<div class="p">
<h4 class="text-muted text-thin">Aside</h4>
<div class="clearfix">
<p class="pull-left">Collapsed</p>
<div class="pull-right">
<label class="switch">
<input id="chk-collapsed" type="checkbox" data-toggle-state="aside-collapsed">
<span></span>
</label>
</div>
</div>
<div class="clearfix">
<p class="pull-left">Collapsed Text</p>
<div class="pull-right">
<label class="switch">
<input id="chk-collapsed-text" type="checkbox" data-toggle-state="aside-collapsed-text">
<span></span>
</label>
</div>
</div>
<div class="clearfix">
<p class="pull-left">Float</p>
<div class="pull-right">
<label class="switch">
<input id="chk-float" type="checkbox" data-toggle-state="aside-float">
<span></span>
</label>
</div>
</div>
<div class="clearfix">
<p class="pull-left">Hover</p>
<div class="pull-right">
<label class="switch">
<input id="chk-hover" type="checkbox" data-toggle-state="aside-hover">
<span></span>
</label>
</div>
</div>
<div class="clearfix">
<p class="pull-left">Show Scrollbar</p>
<div class="pull-right">
<label class="switch">
<input id="chk-hover" type="checkbox" data-toggle-state="show-scrollbar" data-target=".sidebar">
<span></span>
</label>
</div>
</div>
</div>
</div>
<div id="app-chat" role="tabpanel" class="tab-pane fade">
<h3 class="text-center text-thin">Connections</h3>
<ul class="nav">
<!-- START list title-->
<li class="p">
<small class="text-muted">ONLINE</small>
</li>
<!-- END list title-->
<li>
<!-- START User status-->
<a href="#" class="media-box p mt0">
<span class="pull-right">
<span class="circle circle-success circle-lg"></span>
</span>
<span class="pull-left">
<!-- Contact avatar-->
<img src="img/user/05.jpg" alt="Image" class="media-box-object img-circle thumb48">
</span>
<!-- Contact info-->
<span class="media-box-body">
<span class="media-box-heading">
<strong>Juan Sims</strong>
<br>
<small class="text-muted">Designeer</small>
</span>
</span>
</a>
<!-- END User status-->
<!-- START User status-->
<a href="#" class="media-box p mt0">
<span class="pull-right">
<span class="circle circle-success circle-lg"></span>
</span>
<span class="pull-left">
<!-- Contact avatar-->
<img src="img/user/06.jpg" alt="Image" class="media-box-object img-circle thumb48">
</span>
<!-- Contact info-->
<span class="media-box-body">
<span class="media-box-heading">
<strong>Maureen Jenkins</strong>
<br>
<small class="text-muted">Designeer</small>
</span>
</span>
</a>
<!-- END User status-->
<!-- START User status-->
<a href="#" class="media-box p mt0">
<span class="pull-right">
<span class="circle circle-danger circle-lg"></span>
</span>
<span class="pull-left">
<!-- Contact avatar-->
<img src="img/user/07.jpg" alt="Image" class="media-box-object img-circle thumb48">
</span>
<!-- Contact info-->
<span class="media-box-body">
<span class="media-box-heading">
<strong>Billie Dunn</strong>
<br>
<small class="text-muted">Designeer</small>
</span>
</span>
</a>
<!-- END User status-->
<!-- START User status-->
<a href="#" class="media-box p mt0">
<span class="pull-right">
<span class="circle circle-warning circle-lg"></span>
</span>
<span class="pull-left">
<!-- Contact avatar-->
<img src="img/user/08.jpg" alt="Image" class="media-box-object img-circle thumb48">
</span>
<!-- Contact info-->
<span class="media-box-body">
<span class="media-box-heading">
<strong>Tomothy Roberts</strong>
<br>
<small class="text-muted">Designer</small>
</span>
</span>
</a>
<!-- END User status-->
</li>
<!-- START list title-->
<li class="p">
<small class="text-muted">OFFLINE</small>
</li>
<!-- END list title-->
<li>
<!-- START User status-->
<a href="#" class="media-box p mt0">
<span class="pull-right">
<span class="circle circle-lg"></span>
</span>
<span class="pull-left">
<!-- Contact avatar-->
<img src="img/user/09.jpg" alt="Image" class="media-box-object img-circle thumb48">
</span>
<!-- Contact info-->
<span class="media-box-body">
<span class="media-box-heading">
<strong>Lawrence Robinson</strong>
<br>
<small class="text-muted">Developer</small>
</span>
</span>
</a>
<!-- END User status-->
<!-- START User status-->
<a href="#" class="media-box p mt0">
<span class="pull-right">
<span class="circle circle-lg"></span>
</span>
<span class="pull-left">
<!-- Contact avatar-->
<img src="img/user/10.jpg" alt="Image" class="media-box-object img-circle thumb48">
</span>
<!-- Contact info-->
<span class="media-box-body">
<span class="media-box-heading">
<strong>Tyrone Owens</strong>
<br>
<small class="text-muted">Designer</small>
</span>
</span>
</a>
<!-- END User status-->
</li>
<li>
<div class="p-lg text-center">
<!-- Optional link to list more users-->
<a href="#" title="See more contacts" class="btn btn-purple btn-sm">
<strong>Load more..</strong>
</a>
</div>
</li>
</ul>
<!-- Extra items-->
<div class="p">
<p>
<small class="text-muted">Tasks completion</small>
</p>
<div class="progress progress-xs m0">
<div role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="100" class="progress-bar progress-bar-success progress-80">
<span class="sr-only">80% Complete</span>
</div>
</div>
</div>
<div class="p">
<p>
<small class="text-muted">Upload quota</small>
</p>
<div class="progress progress-xs m0">
<div role="progressbar" aria-valuenow="40" aria-valuemin="0" aria-valuemax="100" class="progress-bar progress-bar-warning progress-40">
<span class="sr-only">40% Complete</span>
</div>
</div>
</div>
</div>
</div>
</div>
</nav>
<!-- END Off Sidebar (right)-->
</aside>
<!-- Main section-->
<section>
<!-- Page content-->
<div class="content-wrapper">
<!-- <profile></profile>-->
<router-outlet></router-outlet>
</div>
</section>
<!-- Page footer-->
<footer>
<span>© 2016 - Angle</span>
</footer>
</div>
</div>
<div class="container">
<router-outlet></router-outlet>
</div>
<!-- /.container --> | nherzalla/ProfileX-1 | src/app/app.component.html | HTML | mit | 52,235 |
<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="flayoutclass"><div class="flayoutclass_first"><table class="tableoutfmt2"><tr><th class="std1"><b>條目 </b></th><td class="std2">洛陽才子</td></tr>
<tr><th class="std1"><b>注音 </b></th><td class="std2">ㄌㄨㄛ<sup class="subfont">ˋ</sup> |ㄤ<sup class="subfont">ˊ</sup> ㄘㄞ<sup class="subfont">ˊ</sup> ㄗ<sup class="subfont">ˇ</sup></td></tr>
<tr><th class="std1"><b>漢語拼音 </b></th><td class="std2"><font class="english_word">luò yáng cái zǐ</font></td></tr>
<tr><th class="std1"><b>釋義 </b></th><td class="std2">漢代賈誼文采出眾,號稱為<img src=/cydic/dicword/fa40.gif border=0 alt=* class=fontimg valign=center>洛陽才子<img src=/cydic/dicword/fa41.gif border=0 alt=* class=fontimg valign=center>。語本文選˙潘岳˙西征賦:<img src=/cydic/dicword/fa40.gif border=0 alt=* class=fontimg valign=center>終童山東之英妙,賈生洛陽之才子。<img src=/cydic/dicword/fa41.gif border=0 alt=* class=fontimg valign=center>後泛稱才華出色的文士。明˙無名氏˙金雀記˙第六齣:<img src=/cydic/dicword/fa40.gif border=0 alt=* class=fontimg valign=center>洛陽才子豈無人,不須徒嘆花如錦。<img src=/cydic/dicword/fa41.gif border=0 alt=* class=fontimg valign=center></td></tr>
<tr><th class="std1"><b><font class="fltypefont">附錄</font> </b></th><td class="std2">修訂本參考資料</td></tr>
</td></tr></table></div> <!-- flayoutclass_first --><div class="flayoutclass_second"></div> <!-- flayoutclass_second --></div> <!-- flayoutclass --></td></tr></table>
| BuzzAcademy/idioms-moe-unformatted-data | all-data/23000-23999/23726-22.html | HTML | mit | 1,810 |
<HTML><HEAD>
<TITLE>Review for Boiler Room (2000)</TITLE>
<LINK REL="STYLESHEET" TYPE="text/css" HREF="/ramr.css">
</HEAD>
<BODY BGCOLOR="#FFFFFF" TEXT="#000000">
<H1 ALIGN="CENTER" CLASS="title"><A HREF="/Title?0181984">Boiler Room (2000)</A></H1><H3 ALIGN=CENTER>reviewed by<BR><A HREF="/ReviewsBy?Berge+Garabedian">Berge Garabedian</A></H3><HR WIDTH="40%" SIZE="4">
<PRE>BOILER ROOM
RATING: 7.5 /10 --> Very good movie</PRE>
<P>For more reviews and movie trailers, visit <A HREF="http://www.joblo.com/">http://www.joblo.com/</A></P>
<P>In 1987, Charlie Sheen's character in WALL STREET asked his mentor Gordon
Gekko "how much was enough?". Gekko responded: "It's not a question of
enough, pal. It's a zero sum game, somebody wins, somebody loses. Money
itself isn't lost or made, it's simply transferred from one perception to
another." A great film for the 80s, but with day-trading, dot-com mania and
a bullish market running rampant today, the question that now plagues the
gang in this similarly themed flick is "how far would you go?". And what I
want to know is...does greed still work?</P>
<P>PLOT:
A young man caught between an overbearing father and his lust for the big
money, gets a plush gig at an off-Wall Street brokerage house, and quickly
becomes one of their top men on the phones. Unfortunately for the young lad,
he soon discovers that the firm itself isn't as kosher as he was originally
told.</P>
<P>CRITIQUE:
Just call it GLENGARRY GLENROSS JR. or the SON OF WALL STREET since this
film is nothing more than a modern-day remake of these two great films with
some hipper-than-thou dialogue tossed around for kicks, an over-the-top rap
soundtrack and several strong performances from its young cast of male
hotshots. Giovanni Ribisi is one who has also been known as a solid actor in
my neck of the woods, but hopefully this starring gig will get him the
widespread recognition that he deserves. Ben Affleck pulls an "Alec Baldwin
in Glengarry" cameo as the tough-as-nails supervisor who comes in every now
and again and busts everybody's balls with a solid delivery and fun style.
It's pretty obvious from his demeanor that he just loved playing this role!
And boy, did he have some doozy lines to deliver. Vin Diesel is another
standout as the man on the inside who kind of takes Ribis under his wing
when he first joins the mini-Billionaire Boys Club. In fact, I would say
that it was probably the combination of the great cast, tasty dialogue and
interesting professional milieu that made this film so much more
entertaining for me. Mind you, I have a background and degree in business,
so there may be some bias on my part here : )</P>
<P>Now if you're looking for an original story, well this film just ain't for
you. This tale follows the standard premise of any film which has the
sympathetic innocent character from the outside being pulled into a (what
seems like) once in a lifetime opportunity, only to find out that it's
actually not as great an opportunity as once led to believe. This film tries
to add some feelers with a back-story about Ribisi's cold hearted dad
affecting his behavior, which only slightly worked for me, and the fruition
of a romance between Ribi and a secretary, which should just have been left
on the cutting room floor, but all in all, I was entertained throughout this
film and thoroughly enjoyed the open references to the former films
mentioned above. One thing I still don't understand is how studios keep
trying to satisfy the most common denominator in films like this by adding a
token romance for the obvious female target crowd, when in reality all that
they are doing is taking the focus away from an interesting story set inside
a highly toxic male testosterone environment. Stick to the story at hand
folks, and they will come! Anyway, I still don't think that this film will
particularly appeal to the female demographic since the focus of the film is
basically on a bunch of spoiled, loud, brash, erect male penises out to make
a million, but then again, does that really sound inviting to anyone? Well,
I certainly enjoyed it plenty and it sure does give you a little more
insight into the mighty worlds of cold-callers and stock dealers. So if you
like all that sales lingo, don't mind the basic storyline, love the actors
and enjoy well-written dialogue, then by all means, put this film on your
list of to do's over the next weekend or so.</P>
<P>Little Known Facts about this film and its stars:
Actors Vin Diesel and Giovanni Ribisi co-starred alongside one another in
Spielberg's 1998 war drama SAVING PRIVATE RYAN (8/10). Diesel was also the
voice of the "iron giant" in 1999's THE IRON GIANT (5/10), and has written
and directed two films of his own, MULTI-FACIAL and STRAYS, which were
screened at the 1995 Cannes Film Festival and 1997 Sundance Film Festival
respectively.
Giovanni Ribisi's birth name is Antonio Giovanni Ribisi. He is a member of
the Church of Scientology.
Ben Affleck's middle name is Geza. He reportedly received only $7,000 to
star in Kevin Smith's CHASING AMY, but went on to pocket $600,000 for his
role in ARMAGEDDON (8/10).
Scott Caan is the son of actor James Caan. He is also a screenwriter in his
own right, having recently sold the rights to his script CHASING THE PARTY:
HOW HUGH HEFNER SAVED MY LIFE to mega-producer Jerry Bruckheimer. The film
is apparently slated for production in early 2000, with Caan attached to
star.
Despite DAZED AND CONFUSED being Nicky Katt's breakthrough role, it is to be
noted that he also played a schoolchild in 1984's GREMLINS.
Writer/director Ben Younger makes his feature film directorial debut with
this film. He is a 27-year old Brooklynite who attended the City University
of New York studying in political science, and put himself through school by
working as a stand-up comic. After becoming the youngest campaign manager in
NY City, he switched from politics to filmmaking, and came up with the idea
for this script when he was recruited as a boiler room trainee himself.
What is a "boiler room"? It's a brokerage firm that houses a bunch of
hard-working, smart-mouthed kids off the streets who pressure their
cold-call customers any which way they can into buying stock in unknown or
bogus companies for huge commissions. Once the price of the stock is driven
high enough, insiders sell, making fortunes for themselves and often wiping
out the savings of innocent investors. They are seductive, secretive firms
where only those trained and recruited to be loyal are allowed inside.
Recently, the North American Securities Administrators Association made
prosecuting boiler rooms a top priority.</P>
<PRE>Review Date: February 10, 2000
Director: Ben Younger
Writer: Ben Younger
Producer: Jennifer Todd and Suzanne Todd
Actors: Giovanni Ribisi as Seth Davis
Vin Diesel as Chris Varick
Ben Affleck as Jim
Nicky Katt as Gregg
Genre: Drama
Year of Release: 2000
-------------------------------------
JoBlo's Movie Emporium
<A HREF="http://www.joblo.com/">http://www.joblo.com/</A>
-------------------------------------
(c) 2000 Berge Garabedian</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/23089.html | HTML | mit | 8,025 |
<ul class="timeline">
<!-- Item 1 -->
<li>
<div class="direction-r">
<div class="flag-wrapper">
<span class="flag">성탄축하예배</span>
<span class="time-wrapper"><span class="time">2012. 12. 25</span></span>
</div>
<div class="desc">오전 10시 2층 예배실</div>
</div>
</li>
<!-- Item 2 -->
<li>
<div class="direction-l">
<div class="flag-wrapper">
<span class="flag">한빛공동체 성탄축하음악회</span>
<span class="time-wrapper"><span class="time">2012. 12. 23</span></span>
</div>
<!-- <div class="desc">My first employer. All the stuff I've learned and projects I've been working on.</div> -->
</div>
</li>
<!-- Item 3 -->
<li>
<div class="direction-r">
<div class="flag-wrapper">
<span class="flag">첫 예배</span>
<span class="time-wrapper"><span class="time">2015. 12. 2</span></span>
</div>
<div class="desc">
<ul>
<li>성산한빛교회에서 첫 번째 예배 시작 (2층 예배실)</li>
<li>부서별 모임 시작 (청년부대학부-식당, 중고등부 2층 예배실, 유초등부 1층 예배실)</li>
<li>QT 생명의 삶 시작 (중고등부-날마다주님과함께, 유초등부-예수님이 좋아요)</li>
<li>스타렉스 11승 구입</li>
</ul>
</div>
</div>
</li>
<!-- Item 4 -->
<li>
<div class="direction-l">
<div class="flag-wrapper">
<span class="flag">시작</span>
<span class="time-wrapper"><span class="time">2012. 11. 25</span></span>
</div>
<div class="desc">창원한빛교회가 재생산하여 예배당 건축 및 파송하여 첫 번째 노상규 목사와 김창기 목사 외
교인들이 성산구 성주동 160번지 성산한빛교회에서 시작함 </div>
</div>
</li>
</ul>
| sshanbit/xe_aaron_sub_layout | timeline-2012.html | HTML | mit | 1,805 |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<title>What Color Is It?</title>
<meta name="description" content="What Color Is It? See the current time as a color described by a hex triplet!"/>
<meta name="mobile-web-app-capable" content="yes">
<link rel="stylesheet" type="text/css" href="assets/style.css"/>
<link rel="icon" sizes="128x128" href="assets/favicon.png">
<script src="assets/script.js" defer></script>
</head>
<body>
<h1 class="centered" id="time">...</h1>
<h2 class="centered" id="hex">...</h2>
<iframe src="https://ghbtns.com/github-btn.html?user=MarvinMenzerath&repo=WhatColorIsIt&type=star&size=large&count=true" frameborder="0" scrolling="0" id="github-badge"></iframe>
<noscript><p><img src="//piwik.menzerath.eu/piwik.php?idsite=9" style="border:0;" alt="" /></p></noscript>
</body>
</html> | skmezanul/WhatColorIsIt | index.html | HTML | mit | 941 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>ext-lib: 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.13.1 / ext-lib - 0.9.5</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
ext-lib
<small>
0.9.5
<span class="label label-info">Not compatible</span>
</small>
</h1>
<p><em><script>document.write(moment("2021-10-22 16:55:43 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-10-22 16:55:43 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
conf-gmp 3 Virtual package relying on a GMP lib system installation
coq 8.13.1 Formal proof management system
num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.12.0 The OCaml compiler (virtual package)
ocaml-base-compiler 4.12.0 Official release 4.12.0
ocaml-config 2 OCaml Switch Configuration
ocaml-options-vanilla 1 Ensure that OCaml is compiled with no special options enabled
ocamlfind 1.9.1 A library manager for OCaml
zarith 1.12 Implements arithmetic and logical operations over arbitrary-precision integers
# opam file:
opam-version: "2.0"
maintainer: "gmalecha@gmail.com"
homepage: "https://github.com/coq-community/coq-ext-lib"
dev-repo: "git+https://github.com/coq-community/coq-ext-lib.git#8.5"
bug-reports: "https://github.com/coq-community/coq-ext-lib/issues"
authors: ["Gregory Malecha"]
license: "BSD-2-Clause-FreeBSD"
build: [
[make "-j%{jobs}%"]
]
install: [
[make "install"]
]
depends: [
"ocaml"
"coq" {>= "8.6~" & < "8.7~"}
]
synopsis: "A library of Coq definitions, theorems, and tactics"
url {
src: "https://github.com/coq-community/coq-ext-lib/archive/v0.9.5.tar.gz"
checksum: "md5=8d5e31146a3714c03cade01597a134c3"
}
</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-ext-lib.0.9.5 coq.8.13.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.13.1).
The following dependencies couldn't be met:
- coq-ext-lib -> coq < 8.7~ -> ocaml < 4.06.0
base of this switch (use `--unlock-base' to force)
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-ext-lib.0.9.5</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">
<small>Sources are on <a href="https://github.com/coq-bench">GitHub</a>. © Guillaume Claret.</small>
</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.12.0-2.0.8/released/8.13.1/ext-lib/0.9.5.html | HTML | mit | 6,645 |
<!DOCTYPE html>
<!--[if IE 8]><html class="no-js lt-ie9" lang="en" > <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en" > <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dynamic Routing — Patrick's Docuhub a documentation</title>
<script type="text/javascript" src="../../../_static/js/modernizr.min.js"></script>
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'../../../',
VERSION:'a',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
HAS_SOURCE: true,
SOURCELINK_SUFFIX: '.txt'
};
</script>
<script type="text/javascript" src="../../../_static/jquery.js"></script>
<script type="text/javascript" src="../../../_static/underscore.js"></script>
<script type="text/javascript" src="../../../_static/doctools.js"></script>
<script type="text/javascript" src="../../../_static/js/custom.js"></script>
<script type="text/javascript" src="../../../_static/js/theme.js"></script>
<link rel="stylesheet" href="../../../_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="../../../_static/pygments.css" type="text/css" />
<link rel="index" title="Index" href="../../../genindex.html" />
<link rel="search" title="Search" href="../../../search.html" />
<link rel="next" title="switched networks" href="switchedNetworks.html" />
<link rel="prev" title="Static Routes" href="staticRouting.html" />
<link href="../../../_static/mylayout.css" rel="stylesheet" type="text/css">
</head>
<body class="wy-body-for-nav">
<div class="wy-grid-for-nav">
<nav data-toggle="wy-nav-shift" class="wy-nav-side">
<div class="wy-side-scroll">
<div class="wy-side-nav-search" >
<a href="../../../index.html" class="icon icon-home"> Patrick's Docuhub
</a>
<div class="version">
2019-07-14
</div>
<div role="search">
<form id="rtd-search-form" class="wy-form" action="../../../search.html" method="get">
<input type="text" name="q" placeholder="Search docs" />
<input type="hidden" name="check_keywords" value="yes" />
<input type="hidden" name="area" value="default" />
</form>
</div>
</div>
<div class="wy-menu wy-menu-vertical" data-spy="affix" role="navigation" aria-label="main navigation">
<p class="caption"><span class="caption-text">Contents:</span></p>
<ul class="current">
<li class="toctree-l1"><a class="reference internal" href="../../../cheatsheets.html">cheatsheets</a></li>
<li class="toctree-l1"><a class="reference internal" href="../../../commands.html">commands</a></li>
<li class="toctree-l1"><a class="reference internal" href="../../../scripting.html">Scripting</a></li>
<li class="toctree-l1"><a class="reference internal" href="../../../diagrams.html">Diagrams in Sphinx</a></li>
<li class="toctree-l1"><a class="reference internal" href="../../../python.html">python</a></li>
<li class="toctree-l1"><a class="reference internal" href="../../../cumulocity.html">cumulocity</a></li>
<li class="toctree-l1"><a class="reference internal" href="../../../server.html">debian server</a></li>
<li class="toctree-l1"><a class="reference internal" href="../../../workstation.html">workstation</a></li>
<li class="toctree-l1"><a class="reference internal" href="../../../vim.html">VIM</a></li>
<li class="toctree-l1"><a class="reference internal" href="../../../git.html">GIT</a></li>
<li class="toctree-l1 current"><a class="reference internal" href="../inhoud.html">Routing/Switching</a><ul class="current">
<li class="toctree-l2 current"><a class="reference internal" href="inhoud.html">basics</a><ul class="current">
<li class="toctree-l3"><a class="reference internal" href="connect2console.html">Connect to console</a></li>
<li class="toctree-l3"><a class="reference internal" href="routingConcepts.html">Routing Concepts</a></li>
<li class="toctree-l3"><a class="reference internal" href="staticRouting.html">Static Routes</a></li>
<li class="toctree-l3 current"><a class="current reference internal" href="#">Dynamic Routing</a><ul>
<li class="toctree-l4"><a class="reference internal" href="#dynamic-routing-protocols-components">Dynamic Routing Protocols Components</a></li>
<li class="toctree-l4"><a class="reference internal" href="#static-routing-uses">Static Routing Uses</a></li>
<li class="toctree-l4"><a class="reference internal" href="#dynamic-routing-uses">Dynamic Routing Uses</a></li>
<li class="toctree-l4"><a class="reference internal" href="#ripv2">RIPv2</a></li>
<li class="toctree-l4"><a class="reference internal" href="#enable-disable">enable/disable</a></li>
<li class="toctree-l4"><a class="reference internal" href="#disable-auto-summarization">disable auto summarization</a></li>
<li class="toctree-l4"><a class="reference internal" href="#configure-passive-interfaces">configure passive interfaces</a></li>
<li class="toctree-l4"><a class="reference internal" href="#propagate-a-default-route">propagate a default route</a></li>
<li class="toctree-l4"><a class="reference internal" href="#exercise-example">exercise example</a></li>
<li class="toctree-l4"><a class="reference internal" href="#remote-networks-in-routing-table">Remote Networks in Routing table</a></li>
<li class="toctree-l4"><a class="reference internal" href="#routing-table-terms">Routing table terms</a></li>
<li class="toctree-l4"><a class="reference internal" href="#route-lookup-process">Route lookup process</a></li>
<li class="toctree-l4"><a class="reference internal" href="#ipv6-routing-table-entries">IPv6 Routing Table Entries</a></li>
<li class="toctree-l4"><a class="reference internal" href="#qna-chapter-3">QnA Chapter 3</a></li>
</ul>
</li>
<li class="toctree-l3"><a class="reference internal" href="switchedNetworks.html">switched networks</a></li>
<li class="toctree-l3"><a class="reference internal" href="switchConfiguration.html">Switch Configuration</a></li>
<li class="toctree-l3"><a class="reference internal" href="vlans.html">VLANS</a></li>
<li class="toctree-l3"><a class="reference internal" href="acl.html">ACLs</a></li>
<li class="toctree-l3"><a class="reference internal" href="dhcp.html">DHCP</a></li>
<li class="toctree-l3"><a class="reference internal" href="nat.html">NAT</a></li>
<li class="toctree-l3"><a class="reference internal" href="lldpAndLicensing.html">Device Discovery Management & Maintenance</a></li>
<li class="toctree-l3"><a class="reference internal" href="finals.html">routing n switching basics finals</a></li>
</ul>
</li>
<li class="toctree-l2"><a class="reference internal" href="../sn/inhoud.html">scaling networks</a></li>
<li class="toctree-l2"><a class="reference internal" href="../sdn/inhoud.html">Open Daylight</a></li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="../sdn/gns3server.html">Setting up a GNS3 server</a></li>
<li class="toctree-l1"><a class="reference internal" href="../../../storage/storage.html">Storage</a></li>
</ul>
</div>
</div>
</nav>
<section data-toggle="wy-nav-shift" class="wy-nav-content-wrap">
<nav class="wy-nav-top" aria-label="top navigation">
<i data-toggle="wy-nav-top" class="fa fa-bars"></i>
<a href="../../../index.html">Patrick's Docuhub</a>
</nav>
<div class="wy-nav-content">
<div class="rst-content">
<div role="navigation" aria-label="breadcrumbs navigation">
<ul class="wy-breadcrumbs">
<li><a href="../../../index.html">Docs</a> »</li>
<li><a href="../inhoud.html">Routing/Switching</a> »</li>
<li><a href="inhoud.html">basics</a> »</li>
<li>Dynamic Routing</li>
<li class="wy-breadcrumbs-aside">
<a href="../../../_sources/nw/rns/basics/dynamicRouting.rst.txt" rel="nofollow"> View page source</a>
</li>
</ul>
<hr/>
</div>
<div role="main" class="document" itemscope="itemscope" itemtype="http://schema.org/Article">
<div itemprop="articleBody">
<div class="section" id="dynamic-routing">
<h1>Dynamic Routing<a class="headerlink" href="#dynamic-routing" title="Permalink to this headline">¶</a></h1>
<p>Router metrics are metrics used by a router to make routing decisions. A metric is typically one of many fields in a routing table.</p>
<p>Metrics are used to determine whether one route should be chosen over another. The routing table stores possible routes, while link-state or topological databases may store all other information as well. For example, Routing Information Protocol uses hopcount (number of hops) to determine the best possible route. The route will go in the direction of the gateway with the lowest metric. The direction with the lowest metric can be a default gateway.</p>
<p>Router metrics can contain any number of values that help the router determine the best route among multiple routes to a destination. A router metric typically based on information like <strong>path length, bandwidth, load, hop count, path cost, delay, maximum transmission unit (MTU), reliability and communications cost</strong>.</p>
<div class="section" id="dynamic-routing-protocols-components">
<h2>Dynamic Routing Protocols Components<a class="headerlink" href="#dynamic-routing-protocols-components" title="Permalink to this headline">¶</a></h2>
<p>Routing protocols are used to facilitate the exchange of routing information between routers. A routing protocol is a set of processes, algorithms, and messages that are used to exchange routing information and populate the routing table with the routing protocol’s choice of best paths. The purpose of dynamic routing protocols includes:</p>
<blockquote>
<div><ul class="simple">
<li>Discovery of remote networks</li>
<li>Maintaining up-to-date routing information</li>
<li>Choosing the best path to destination networks</li>
<li>Ability to find a new best path if the current path is no longer available</li>
</ul>
</div></blockquote>
<p>The main components of dynamic routing protocols include:</p>
<blockquote>
<div><ul class="simple">
<li>Data structures - Routing protocols typically use tables or databases for its operations. This information is kept in RAM.</li>
<li>Routing protocol messages - Routing protocols use various types of messages to discover neighboring routers, exchange routing information, and other tasks to learn and maintain accurate information about the network.</li>
<li>Algorithm - An algorithm is a finite list of steps used to accomplish a task. Routing protocols use algorithms for facilitating routing information and for best path determination.</li>
</ul>
</div></blockquote>
<p>Routing protocols allow routers to dynamically share information about remote networks and automatically offer this information to their own routing tables.</p>
<p>Routing protocols determine the best path, or route, to each network. That route is then offered to the routing table. The route will be installed in the routing table is there is not another routing source with a lower administrative distance. For example, a static route with an administrative distance of 1 will have precedence over the same network learned by a dynamic routing protocol. A primary benefit of dynamic routing protocols is that routers exchange routing information when there is a topology change. This exchange allows routers to automatically learn about new networks and also to find alternate paths when there is a link failure to a current network.</p>
</div>
<div class="section" id="static-routing-uses">
<h2>Static Routing Uses<a class="headerlink" href="#static-routing-uses" title="Permalink to this headline">¶</a></h2>
<p>Static routing has several primary uses, including:</p>
<blockquote>
<div><ul class="simple">
<li>Providing ease of routing table maintenance in smaller networks that are not expected to grow significantly.</li>
<li>Routing to and from a stub network, which is a network with only one default route out and no knowledge of any remote networks.</li>
<li>Accessing a single default route (which is used to represent a path to any network that does not have a more specific match with another route in the routing table).</li>
</ul>
</div></blockquote>
<div class="section" id="pros-static">
<h3>Pros static<a class="headerlink" href="#pros-static" title="Permalink to this headline">¶</a></h3>
<blockquote>
<div><ul class="simple">
<li>Predictability: route to destination is always the same.</li>
<li>Network bandwidth overhead / no extra cpu,ram resources needed: Static routing has zero overhead, whereas all dynamic routing protocols have some degree of overhead. For example, on a network with 200 segments, the router will send updates from each interface every 30 seconds, and those updates are about 3KB of data. Over the course of a day, this traffic adds up.</li>
<li>Easy to configure: This issue is relative, depending on the size of your network. Although small networks are easy to configure, as a network grows, applying changes to all the routers can become a big task.</li>
<li>Very secure, No advertisements are sent.</li>
</ul>
</div></blockquote>
</div>
<div class="section" id="cons-static">
<h3>Cons static<a class="headerlink" href="#cons-static" title="Permalink to this headline">¶</a></h3>
<blockquote>
<div><ul class="simple">
<li>Lack of scalability: For the 200 segment network mentioned previously, which possibly contains 200 routers, you could be dealing with thousands of routing table entries. Manually calculating all those routes and keeping them up-to-date would be a Herculean task and very prone to error. Even if you implement a good network-addressing design that allows for route summarization, you are still left with an overwhelming number of routes to manage.</li>
<li>Large network implementation: When working with a network of 200 routers, the task of updating one route can become a complex task, especially if you update the routes in the wrong order. In that case, you could lose access to a large section of the network until someone visits that router with a rollover cable or connects from another area of the network.</li>
<li>No redundancy: Dynamic routing protocols can update routing tables in the event of device or interface failure, so if there are multiple possible paths, these protocols will continue to allow data flow. Static routes do not allow for this automatic failover or redundant paths, so if you have a failure, you must manually adjust routes to move data through an alternative path.</li>
</ul>
</div></blockquote>
<p>Dynamic routing is the best choice for large networks like the one shown.</p>
</div>
</div>
<div class="section" id="dynamic-routing-uses">
<h2>Dynamic Routing Uses<a class="headerlink" href="#dynamic-routing-uses" title="Permalink to this headline">¶</a></h2>
<div class="section" id="pros-dynamic">
<h3>Pros Dynamic<a class="headerlink" href="#pros-dynamic" title="Permalink to this headline">¶</a></h3>
<blockquote>
<div><ul class="simple">
<li>Suitable in all topologies where multiple routers are required</li>
<li>Generally independent of the network size</li>
<li>Automatically addapts topology to reroute traffic if possible</li>
</ul>
</div></blockquote>
</div>
<div class="section" id="cons-dynamic">
<h3>Cons Dynamic<a class="headerlink" href="#cons-dynamic" title="Permalink to this headline">¶</a></h3>
<blockquote>
<div><ul class="simple">
<li>Can be more complex to implement</li>
<li>Less secure. Additional config settings are required to secure.</li>
<li>Route depends on the current topology.</li>
<li>Requires additional CPU, RAM, and link bandwidth.</li>
</ul>
</div></blockquote>
</div>
</div>
<div class="section" id="ripv2">
<h2>RIPv2<a class="headerlink" href="#ripv2" title="Permalink to this headline">¶</a></h2>
</div>
<div class="section" id="enable-disable">
<h2>enable/disable<a class="headerlink" href="#enable-disable" title="Permalink to this headline">¶</a></h2>
<div class="code highlight-default"><div class="highlight"><pre><span></span> <span class="n">R1</span><span class="c1"># conf t</span>
<span class="n">R1</span><span class="p">(</span><span class="n">config</span><span class="p">)</span><span class="c1"># router rip</span>
<span class="n">R1</span><span class="p">(</span><span class="n">config</span><span class="o">-</span><span class="n">router</span><span class="p">)</span><span class="c1"># version 2</span>
</pre></div>
</div>
<div class="section" id="verify-rip-routing">
<h3>verify rip routing<a class="headerlink" href="#verify-rip-routing" title="Permalink to this headline">¶</a></h3>
<div class="code highlight-default"><div class="highlight"><pre><span></span><span class="n">R1</span><span class="c1"># show ip protocols</span>
<span class="n">R1</span><span class="c1"># show ip protocols | section Default</span>
<span class="n">R1</span><span class="c1"># show ip route | begin Gateway</span>
</pre></div>
</div>
</div>
</div>
<div class="section" id="disable-auto-summarization">
<h2>disable auto summarization<a class="headerlink" href="#disable-auto-summarization" title="Permalink to this headline">¶</a></h2>
<div class="code highlight-default"><div class="highlight"><pre><span></span> <span class="n">R1</span><span class="p">(</span><span class="n">config</span><span class="p">)</span><span class="c1"># router rip</span>
<span class="n">R1</span><span class="p">(</span><span class="n">config</span><span class="o">-</span><span class="n">router</span><span class="p">)</span><span class="c1"># no auto-summary</span>
<span class="n">R1</span><span class="p">(</span><span class="n">config</span><span class="o">-</span><span class="n">router</span><span class="p">)</span><span class="c1"># end</span>
<span class="n">R1</span><span class="c1"># show ip protocols | section Automatic</span>
</pre></div>
</div>
<div class="admonition warning">
<p class="first admonition-title">Warning</p>
<p>auto-summary = classful, no auto-summary = you can see /25 routes = classless, don’t confuse with summarization. If you want a summary address you can apply the following on the <strong>outgoing interface you want de summary address advertised</strong></p>
<div class="code last highlight-default"><div class="highlight"><pre><span></span><span class="n">ip</span> <span class="n">summary</span><span class="o">-</span><span class="n">address</span> <span class="n">rip</span> <span class="mf">192.168</span><span class="o">.</span><span class="mf">0.0</span> <span class="mf">255.255</span><span class="o">.</span><span class="mf">252.0</span>
</pre></div>
</div>
</div>
</div>
<div class="section" id="configure-passive-interfaces">
<h2>configure passive interfaces<a class="headerlink" href="#configure-passive-interfaces" title="Permalink to this headline">¶</a></h2>
<p>By default, RIP updates are forwarded out all RIP-enabled interfaces. However, RIP updates really only need to be sent out interfaces that are connected to other RIPenabled routers.</p>
<img alt="../../../_images/configure_passive_ifs_on_R1.png" src="../../../_images/configure_passive_ifs_on_R1.png" />
<p>For instance, refer to the topology above. RIP sends updates out of its G0/0 interface even though no RIP device exists on that LAN. R1 has no way of knowing this and, as a result, sends an update every 30 seconds. Sending out unneeded updates on a LAN impacts the network in three ways:</p>
<blockquote>
<div><ul class="simple">
<li>Wasted Bandwidth - Bandwidth is used to transport unnecessary updates. Because RIP updates are either broadcasted or multicasted, switches also forward the updates out all ports.</li>
<li>Wasted Resources - All devices on the LAN must process the update up to the transport layers, at which point the devices will discard the update.</li>
<li>Security Risk - Advertising updates on a broadcast network is a security risk. RIP updates can be intercepted with packet sniffing software. Routing updates can be modified and sent back to the router, corrupting the routing table with false metrics that misdirect traffic.</li>
</ul>
</div></blockquote>
<p>Use the <strong>passive-interface</strong> router configuration command to prevent the transmission of routing updates through a router interface, <em>but still allow that network to be advertised to other routers</em>. The command stops routing updates out the specified interface. However, the network that the specified interface belongs to is still advertised in routing updates that are sent out other interfaces.</p>
<div class="code highlight-default"><div class="highlight"><pre><span></span><span class="n">Configure</span> <span class="n">passive</span> <span class="n">interface</span> <span class="n">on</span> <span class="n">G0</span><span class="o">/</span><span class="mi">0</span> <span class="ow">and</span> <span class="k">return</span> <span class="n">to</span> <span class="n">privileged</span> <span class="n">EXEC</span> <span class="n">mode</span><span class="o">.</span>
<span class="n">R2</span><span class="p">(</span><span class="n">config</span><span class="p">)</span><span class="c1"># router rip</span>
<span class="n">R2</span><span class="p">(</span><span class="n">config</span><span class="o">-</span><span class="n">router</span><span class="p">)</span><span class="c1"># passive-interface g0/0</span>
<span class="n">R2</span><span class="p">(</span><span class="n">config</span><span class="o">-</span><span class="n">router</span><span class="p">)</span><span class="c1"># end</span>
<span class="n">R2</span><span class="c1">#</span>
<span class="o">*</span><span class="n">Mar</span> <span class="mi">10</span> <span class="mi">16</span><span class="p">:</span><span class="mi">33</span><span class="p">:</span><span class="mf">32.391</span><span class="p">:</span> <span class="o">%</span><span class="n">SYS</span><span class="o">-</span><span class="mi">5</span><span class="o">-</span><span class="n">CONFIG_I</span><span class="p">:</span> <span class="n">Configured</span> <span class="kn">from</span> <span class="nn">console</span> <span class="n">by</span> <span class="n">console</span>
<span class="n">Verify</span> <span class="n">the</span> <span class="n">RIP</span> <span class="n">protocol</span> <span class="n">settings</span> <span class="n">on</span> <span class="n">R2</span><span class="o">.</span>
<span class="n">R2</span><span class="c1"># show ip protocols</span>
<span class="o">***</span> <span class="n">IP</span> <span class="n">Routing</span> <span class="ow">is</span> <span class="n">NSF</span> <span class="n">aware</span> <span class="o">***</span>
<span class="n">Routing</span> <span class="n">Protocol</span> <span class="ow">is</span> <span class="s2">"rip"</span>
<span class="n">Outgoing</span> <span class="n">update</span> <span class="nb">filter</span> <span class="nb">list</span> <span class="k">for</span> <span class="nb">all</span> <span class="n">interfaces</span> <span class="ow">is</span> <span class="ow">not</span> <span class="nb">set</span>
<span class="n">Incoming</span> <span class="n">update</span> <span class="nb">filter</span> <span class="nb">list</span> <span class="k">for</span> <span class="nb">all</span> <span class="n">interfaces</span> <span class="ow">is</span> <span class="ow">not</span> <span class="nb">set</span>
<span class="n">Sending</span> <span class="n">updates</span> <span class="n">every</span> <span class="mi">30</span> <span class="n">seconds</span><span class="p">,</span> <span class="nb">next</span> <span class="n">due</span> <span class="ow">in</span> <span class="mi">17</span> <span class="n">seconds</span>
<span class="n">Invalid</span> <span class="n">after</span> <span class="mi">180</span> <span class="n">seconds</span><span class="p">,</span> <span class="n">hold</span> <span class="n">down</span> <span class="mi">180</span><span class="p">,</span> <span class="n">flushed</span> <span class="n">after</span> <span class="mi">240</span>
<span class="n">Redistributing</span><span class="p">:</span> <span class="n">rip</span>
<span class="n">Default</span> <span class="n">version</span> <span class="n">control</span><span class="p">:</span> <span class="n">send</span> <span class="n">version</span> <span class="mi">2</span><span class="p">,</span> <span class="n">receive</span> <span class="n">version</span> <span class="mi">2</span>
<span class="n">Interface</span> <span class="n">Send</span> <span class="n">Recv</span> <span class="n">Triggered</span> <span class="n">RIP</span> <span class="n">Key</span><span class="o">-</span><span class="n">chain</span>
<span class="n">Serial0</span><span class="o">/</span><span class="mi">0</span><span class="o">/</span><span class="mi">0</span> <span class="mi">2</span> <span class="mi">2</span>
<span class="n">Serial0</span><span class="o">/</span><span class="mi">0</span><span class="o">/</span><span class="mi">1</span> <span class="mi">2</span> <span class="mi">2</span>
<span class="n">Automatic</span> <span class="n">network</span> <span class="n">summarization</span> <span class="ow">is</span> <span class="ow">not</span> <span class="ow">in</span> <span class="n">effect</span>
<span class="n">Maximum</span> <span class="n">path</span><span class="p">:</span> <span class="mi">4</span>
<span class="n">Routing</span> <span class="k">for</span> <span class="n">Networks</span><span class="p">:</span>
<span class="mf">192.168</span><span class="o">.</span><span class="mf">2.0</span>
<span class="mf">192.168</span><span class="o">.</span><span class="mf">3.0</span>
<span class="mf">192.168</span><span class="o">.</span><span class="mf">4.0</span>
<span class="n">Passive</span> <span class="n">Interface</span><span class="p">(</span><span class="n">s</span><span class="p">):</span>
<span class="n">GigabitEthernet0</span><span class="o">/</span><span class="mi">0</span>
<span class="n">Routing</span> <span class="n">Information</span> <span class="n">Sources</span><span class="p">:</span>
<span class="n">Gateway</span> <span class="n">Distance</span> <span class="n">Last</span> <span class="n">Update</span>
<span class="mf">192.168</span><span class="o">.</span><span class="mf">2.1</span> <span class="mi">120</span> <span class="mi">00</span><span class="p">:</span><span class="mi">00</span><span class="p">:</span><span class="mi">24</span>
<span class="n">Gateway</span> <span class="n">Distance</span> <span class="n">Last</span> <span class="n">Update</span>
<span class="mf">192.168</span><span class="o">.</span><span class="mf">4.1</span> <span class="mi">120</span> <span class="mi">00</span><span class="p">:</span><span class="mi">00</span><span class="p">:</span><span class="mi">23</span>
<span class="n">Distance</span><span class="p">:</span> <span class="p">(</span><span class="n">default</span> <span class="ow">is</span> <span class="mi">120</span><span class="p">)</span>
<span class="n">R2</span><span class="c1">#</span>
<span class="n">You</span> <span class="n">are</span> <span class="n">now</span> <span class="n">logged</span> <span class="n">into</span> <span class="n">R3</span><span class="o">.</span> <span class="n">Configure</span> <span class="n">passive</span> <span class="n">interface</span> <span class="n">to</span> <span class="n">be</span> <span class="n">the</span> <span class="n">default</span> <span class="n">setting</span><span class="o">.</span> <span class="n">Remove</span> <span class="n">the</span> <span class="n">passive</span> <span class="n">interface</span> <span class="n">setting</span> <span class="kn">from</span> <span class="nn">S0</span><span class="o">/</span><span class="mi">0</span><span class="o">/</span><span class="mi">1</span> <span class="ow">and</span> <span class="k">return</span> <span class="n">to</span> <span class="n">privileged</span> <span class="n">EXEC</span> <span class="n">mode</span><span class="o">.</span>
<span class="n">R3</span><span class="p">(</span><span class="n">config</span><span class="p">)</span><span class="c1"># router rip</span>
<span class="n">R3</span><span class="p">(</span><span class="n">config</span><span class="o">-</span><span class="n">router</span><span class="p">)</span><span class="c1"># passive-interface default</span>
<span class="n">R3</span><span class="p">(</span><span class="n">config</span><span class="o">-</span><span class="n">router</span><span class="p">)</span><span class="c1"># no passive-interface s0/0/1</span>
<span class="n">R3</span><span class="p">(</span><span class="n">config</span><span class="o">-</span><span class="n">router</span><span class="p">)</span><span class="c1"># end</span>
<span class="n">R3</span><span class="c1">#</span>
<span class="o">*</span><span class="n">Mar</span> <span class="mi">10</span> <span class="mi">16</span><span class="p">:</span><span class="mi">34</span><span class="p">:</span><span class="mf">28.899</span><span class="p">:</span> <span class="o">%</span><span class="n">SYS</span><span class="o">-</span><span class="mi">5</span><span class="o">-</span><span class="n">CONFIG_I</span><span class="p">:</span> <span class="n">Configured</span> <span class="kn">from</span> <span class="nn">console</span> <span class="n">by</span> <span class="n">console</span>
<span class="n">Verify</span> <span class="n">the</span> <span class="n">RIP</span> <span class="n">protocol</span> <span class="n">settings</span> <span class="n">on</span> <span class="n">R3</span><span class="o">.</span>
<span class="n">R3</span><span class="c1"># show ip protocols</span>
<span class="o">***</span> <span class="n">IP</span> <span class="n">Routing</span> <span class="ow">is</span> <span class="n">NSF</span> <span class="n">aware</span> <span class="o">***</span>
<span class="n">Routing</span> <span class="n">Protocol</span> <span class="ow">is</span> <span class="s2">"rip"</span>
<span class="n">Outgoing</span> <span class="n">update</span> <span class="nb">filter</span> <span class="nb">list</span> <span class="k">for</span> <span class="nb">all</span> <span class="n">interfaces</span> <span class="ow">is</span> <span class="ow">not</span> <span class="nb">set</span>
<span class="n">Incoming</span> <span class="n">update</span> <span class="nb">filter</span> <span class="nb">list</span> <span class="k">for</span> <span class="nb">all</span> <span class="n">interfaces</span> <span class="ow">is</span> <span class="ow">not</span> <span class="nb">set</span>
<span class="n">Sending</span> <span class="n">updates</span> <span class="n">every</span> <span class="mi">30</span> <span class="n">seconds</span><span class="p">,</span> <span class="nb">next</span> <span class="n">due</span> <span class="ow">in</span> <span class="mi">15</span> <span class="n">seconds</span>
<span class="n">Invalid</span> <span class="n">after</span> <span class="mi">180</span> <span class="n">seconds</span><span class="p">,</span> <span class="n">hold</span> <span class="n">down</span> <span class="mi">180</span><span class="p">,</span> <span class="n">flushed</span> <span class="n">after</span> <span class="mi">240</span>
<span class="n">Redistributing</span><span class="p">:</span> <span class="n">rip</span>
<span class="n">Default</span> <span class="n">version</span> <span class="n">control</span><span class="p">:</span> <span class="n">send</span> <span class="n">version</span> <span class="mi">2</span><span class="p">,</span> <span class="n">receive</span> <span class="n">version</span> <span class="mi">2</span>
<span class="n">Interface</span> <span class="n">Send</span> <span class="n">Recv</span> <span class="n">Triggered</span> <span class="n">RIP</span> <span class="n">Key</span><span class="o">-</span><span class="n">chain</span>
<span class="n">Serial0</span><span class="o">/</span><span class="mi">0</span><span class="o">/</span><span class="mi">1</span> <span class="mi">2</span> <span class="mi">2</span>
<span class="n">Automatic</span> <span class="n">network</span> <span class="n">summarization</span> <span class="ow">is</span> <span class="ow">not</span> <span class="ow">in</span> <span class="n">effect</span>
<span class="n">Maximum</span> <span class="n">path</span><span class="p">:</span> <span class="mi">4</span>
<span class="n">Routing</span> <span class="k">for</span> <span class="n">Networks</span><span class="p">:</span>
<span class="mf">192.168</span><span class="o">.</span><span class="mf">4.0</span>
<span class="mf">192.168</span><span class="o">.</span><span class="mf">5.0</span>
<span class="n">Passive</span> <span class="n">Interface</span><span class="p">(</span><span class="n">s</span><span class="p">):</span>
<span class="n">Embedded</span><span class="o">-</span><span class="n">Service</span><span class="o">-</span><span class="n">Engine0</span><span class="o">/</span><span class="mi">0</span>
<span class="n">GigabitEthernet0</span><span class="o">/</span><span class="mi">0</span>
<span class="n">GigabitEthernet0</span><span class="o">/</span><span class="mi">1</span>
<span class="n">GigabitEthernet0</span><span class="o">/</span><span class="mi">3</span>
<span class="n">Serial0</span><span class="o">/</span><span class="mi">0</span><span class="o">/</span><span class="mi">0</span>
<span class="n">RG</span><span class="o">-</span><span class="n">AR</span><span class="o">-</span><span class="n">IF</span><span class="o">-</span><span class="n">INPUT1</span>
<span class="n">Routing</span> <span class="n">Information</span> <span class="n">Sources</span><span class="p">:</span>
<span class="n">Gateway</span> <span class="n">Distance</span> <span class="n">Last</span> <span class="n">Update</span>
<span class="mf">192.168</span><span class="o">.</span><span class="mf">4.2</span> <span class="mi">120</span> <span class="mi">00</span><span class="p">:</span><span class="mi">00</span><span class="p">:</span><span class="mi">23</span>
<span class="n">Distance</span><span class="p">:</span> <span class="p">(</span><span class="n">default</span> <span class="ow">is</span> <span class="mi">120</span><span class="p">)</span>
<span class="n">R3</span><span class="c1">#</span>
</pre></div>
</div>
<p>There is no need for R1, R2, and R3 to forward RIP updates out of their LAN interfaces. The configuration in Figure 2 identifies the R1 G0/0 interface as passive. <em>The show ip protocols command is then used to verify that the Gigabit Ethernet interface was passive.</em>
.. note:: Notice that the G0/0 interface is no longer listed as sending or receiving version 2 updates, but instead is now listed under the Passive Interface(s) section. Also notice that the network 192.168.1.0 is still listed under Routing for Networks, which means that this network is still included as a route entry in RIP updates that are sent to R2.</p>
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p class="last">All routing protocols support the passive-interface command.</p>
</div>
<p>configure the LAN interface as a passive interface on R2 and R3.</p>
<div class="code highlight-default"><div class="highlight"><pre><span></span><span class="n">R2</span><span class="p">(</span><span class="n">config</span><span class="p">)</span><span class="c1"># router rip</span>
<span class="n">R2</span><span class="p">(</span><span class="n">config</span><span class="o">-</span><span class="n">router</span><span class="p">)</span><span class="c1"># passive-interface g0/0</span>
<span class="n">R2</span><span class="p">(</span><span class="n">config</span><span class="o">-</span><span class="n">router</span><span class="p">)</span><span class="c1"># end</span>
<span class="n">Verify</span> <span class="n">the</span> <span class="n">RIP</span> <span class="n">protocol</span> <span class="n">settings</span> <span class="n">on</span> <span class="n">R2</span>
<span class="n">R2</span><span class="c1"># show ip protocols</span>
<span class="n">R3</span><span class="p">(</span><span class="n">config</span><span class="p">)</span><span class="c1"># router rip</span>
<span class="n">R3</span><span class="p">(</span><span class="n">config</span><span class="o">-</span><span class="n">router</span><span class="p">)</span><span class="c1"># passive-interface default</span>
<span class="n">R3</span><span class="p">(</span><span class="n">config</span><span class="o">-</span><span class="n">router</span><span class="p">)</span><span class="c1"># no passive-interface s0/0/1</span>
<span class="n">R3</span><span class="p">(</span><span class="n">config</span><span class="o">-</span><span class="n">router</span><span class="p">)</span><span class="c1"># end</span>
<span class="n">Verify</span> <span class="n">the</span> <span class="n">RIP</span> <span class="n">protocol</span> <span class="n">settings</span> <span class="n">on</span> <span class="n">R3</span>
<span class="n">R3</span><span class="c1"># show ip protocols</span>
</pre></div>
</div>
<p>As an alternative, all interfaces can be made passive using the passive-interface default command. Interfaces that should not be passive can be re-enabled using the no passive-interface command.</p>
</div>
<div class="section" id="propagate-a-default-route">
<h2>propagate a default route<a class="headerlink" href="#propagate-a-default-route" title="Permalink to this headline">¶</a></h2>
<img alt="../../../_images/propagate_default_route.png" src="../../../_images/propagate_default_route.png" />
<p>To propagate a default route in RIP, the edge router must be configured with:</p>
<blockquote>
<div><ul class="simple">
<li>A default static route using the ip route 0.0.0.0 0.0.0.0 command.</li>
</ul>
<blockquote>
<div><ul class="simple">
<li>The <strong>default-information originate</strong> router configuration command. This instructs R1 to originate default information, by propagating the static default route in RIP updates.</li>
</ul>
</div></blockquote>
</div></blockquote>
<div class="code highlight-default"><div class="highlight"><pre><span></span><span class="n">R1</span><span class="p">(</span><span class="n">config</span><span class="p">)</span><span class="c1"># ip route 0.0.0.0 0.0.0.0 s0/0/1 209.165.200.226</span>
<span class="n">R1</span><span class="p">(</span><span class="n">config</span><span class="p">)</span><span class="c1"># router rip</span>
<span class="n">R1</span><span class="p">(</span><span class="n">config</span><span class="o">-</span><span class="n">router</span><span class="p">)</span><span class="c1"># default-information originate</span>
<span class="n">R1</span><span class="p">(</span><span class="n">config</span><span class="o">-</span><span class="n">router</span><span class="p">)</span><span class="c1"># end</span>
</pre></div>
</div>
<p>Example above configures a fully-specified default static route to the service provider and then the route is propagated by RIP. Notice that R1 now has a Gateway of Last Resort and default route installed in its routing table.</p>
</div>
<div class="section" id="exercise-example">
<h2>exercise example<a class="headerlink" href="#exercise-example" title="Permalink to this headline">¶</a></h2>
<blockquote>
<div><div class="code highlight-default"><div class="highlight"><pre><span></span>a router that is connected to an isp
------------------------------------
hostname R1
!
ip cef
no ipv6 cef
!
interface GigabitEthernet0/0
ip address 192.168.1.1 255.255.255.0
duplex auto
speed auto
!
interface GigabitEthernet0/1
no ip address
duplex auto
speed auto
shutdown
!
interface GigabitEthernet0/2
no ip address
duplex auto
speed auto
shutdown
!
interface Serial0/0/0
ip address 192.168.2.1 255.255.255.0
clock rate 2000000
!
interface Serial0/0/0
ip address 192.168.2.1 255.255.255.0
clock rate 2000000
!
interface Serial0/0/1
ip address 209.165.200.225 255.255.255.252
!
interface Vlan1
no ip address
shutdown
!
router rip
version 2
passive-interface GigabitEthernet0/0
network 192.168.1.0
network 192.168.2.0
default-information originate
!
ip classless
ip route 0.0.0.0 0.0.0.0 Serial0/0/1
</pre></div>
</div>
</div></blockquote>
</div>
<div class="section" id="remote-networks-in-routing-table">
<h2>Remote Networks in Routing table<a class="headerlink" href="#remote-networks-in-routing-table" title="Permalink to this headline">¶</a></h2>
<img alt="../../../_images/RemoteNetworkEntries.png" src="../../../_images/RemoteNetworkEntries.png" />
<ul class="simple">
<li>Route Source: ids how route was learned</li>
<li>Dest Network: ids address of the remote network</li>
<li>Administrative Distance: ids <em>trustworthiness</em> of route source</li>
<li>Metric: ids value assigned to reach remote NW. Lower is better</li>
<li>Next hop: ids ipv4 address of next router to forward packet to</li>
<li>route timestamp: ids from when the route was last heard</li>
<li>Outgoing interface: ids exit interface to use to forward packet to final destination</li>
</ul>
<img alt="../../../_images/RemoteNetworkEntriesExercise.png" src="../../../_images/RemoteNetworkEntriesExercise.png" />
</div>
<div class="section" id="routing-table-terms">
<h2>Routing table terms<a class="headerlink" href="#routing-table-terms" title="Permalink to this headline">¶</a></h2>
<ul>
<li><dl class="first docutils">
<dt>Ultimate route:</dt>
<dd><p class="first last">has next-hop ip and/or exit interface</p>
</dd>
</dl>
</li>
<li><dl class="first docutils">
<dt>Level 1 route:</dt>
<dd><dl class="first last docutils">
<dt>a route with a subnet mask <em>equal or less than classful mask</em> of the network address</dt>
<dd><ul class="first last">
<li><p class="first">Network route - <em>equal</em> to that of classful mask</p>
</li>
<li><p class="first">Supernet route - <em>less</em> than classful mask, eg summary address</p>
</li>
<li><p class="first">Default route - static route with the address 0.0.0.0/0</p>
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p class="last">source of Level 1 route = D.C. network, static, or dynamic routing protocol</p>
</div>
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p class="last">level 1 route are also ultimate routes</p>
</div>
</li>
</ul>
</dd>
</dl>
</dd>
</dl>
</li>
<li><p class="first">Level 1 parent route: Level 1 network route (=mask) that is subnetted:</p>
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p class="last">L1 parent route = never an ultimate route e.g. 172.16.0.0/16 #of subnets, #different masks</p>
</div>
</li>
<li><p class="first">Level 2 child routes aka <strong>subnet</strong> route: subnet of a <em>classful network address</em>:</p>
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p class="last">L1 parent route contains L2 child routes</p>
</div>
<div class="admonition warning">
<p class="first admonition-title">Warning</p>
<p class="last">no L1 parent = it ain’t no L2 child</p>
</div>
<table border="1" class="docutils">
<colgroup>
<col width="42%" />
<col width="58%" />
</colgroup>
<tbody valign="top">
<tr class="row-odd"><td rowspan="4">172.16.0.0</td>
<td>172.16.1.0/24</td>
</tr>
<tr class="row-even"><td>172.16.2.0/24</td>
</tr>
<tr class="row-odd"><td>172.16.3.0/24</td>
</tr>
<tr class="row-even"><td>172.16.4.0/28</td>
</tr>
<tr class="row-odd"><td rowspan="3">209.165.200.0</td>
<td>209.165.200.224/30</td>
</tr>
<tr class="row-even"><td>209.165.200.228/30</td>
</tr>
<tr class="row-odd"><td>209.165.200.232/30</td>
</tr>
</tbody>
</table>
</li>
</ul>
</div>
<div class="section" id="route-lookup-process">
<h2>Route lookup process<a class="headerlink" href="#route-lookup-process" title="Permalink to this headline">¶</a></h2>
<ol class="arabic simple">
<li>if a level 1 ultimate route (exit|nhop) = forward</li>
<li>if lvl 1 parent route (equal to snmask & never and no exit|nhop) then<ul>
<li>check if match with level 2 child (subnet) route (=bigger than nwmask)</li>
</ul>
</li>
<li>continue searching lvl 1 supernet routes (=less than nwmask) for match including default route if there is one</li>
<li>sorry no match, drop it like it’s hot</li>
</ol>
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p class="last">A route referencing only a next-hop IP address and not an exit interface, must be resolved to a route with an exit interface, if Cisco Express Forwarding (CEF) is not being used. Without CEF, a recursive lookup is performed on the next-hop IP address until the route is resolved to an exit interface. CEF is enabled by default.</p>
</div>
</div>
<div class="section" id="ipv6-routing-table-entries">
<h2>IPv6 Routing Table Entries<a class="headerlink" href="#ipv6-routing-table-entries" title="Permalink to this headline">¶</a></h2>
<p>reference topology</p>
<img alt="../../../_images/ipv6_routingtable_entries.png" src="../../../_images/ipv6_routingtable_entries.png" />
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p class="last">Because IPv6 is classless by design, all routes are effectively <strong>L1 ultimate routes</strong>. There is no L1 parent or L2 child routes</p>
</div>
<p>R1,2,3 in full mesh topology. All routers have redundant paths to various networks.
R2 is the edge router to the ISP, however a default static route is not being advertised
EIGRP is cfgd on all of them</p>
<p>Directly connected routes on R1 = show ipv6 route –> C and L</p>
<img alt="../../../_images/routingtable_ipv6.png" src="../../../_images/routingtable_ipv6.png" />
<div class="admonition warning">
<p class="first admonition-title">Warning</p>
<p class="last">RIP configuration on a router should contain network statements for connected networks only. Remote networks are learned from routing updates from other routers.</p>
</div>
</div>
<div class="section" id="qna-chapter-3">
<h2>QnA Chapter 3<a class="headerlink" href="#qna-chapter-3" title="Permalink to this headline">¶</a></h2>
<p>What is a purpose of the network command when configuring RIPv2 as the routing protocol?</p>
<p>V It identifies the interfaces that belong to a specified network.</p>
<p>X It specifies the remote network that can now be reached.</p>
<blockquote>
<div><p>It immediately advertises the specified network to neighbor routers with a classful mask.</p>
<p>It populates the routing table with the network entry.</p>
</div></blockquote>
<p>The network command is used to advertise the directly connected networks of a router. It enables RIP on the interfaces that belong to the specified network.</p>
<p>The command being entered by the engineer will cause RIPv2 to activate on the interface for the 192.168.10.0 network. <strong>If RIPv1 is configured, the router will send only version 1 updates, but will listen for both version 1 and version 2 updates. If RIPv2 is configured, the router will send and listen to only version 2 updates.</strong></p>
</div>
</div>
</div>
</div>
<footer>
<div class="rst-footer-buttons" role="navigation" aria-label="footer navigation">
<a href="switchedNetworks.html" class="btn btn-neutral float-right" title="switched networks" accesskey="n" rel="next">Next <span class="fa fa-arrow-circle-right"></span></a>
<a href="staticRouting.html" class="btn btn-neutral float-left" title="Static Routes" accesskey="p" rel="prev"><span class="fa fa-arrow-circle-left"></span> Previous</a>
</div>
<hr/>
<div role="contentinfo">
<p>
© Copyright 2019, Patrick Brunswyck
</p>
</div>
Built with <a href="http://sphinx-doc.org/">Sphinx</a> using a <a href="https://github.com/rtfd/sphinx_rtd_theme">theme</a> provided by <a href="https://readthedocs.org">Read the Docs</a>.
</footer>
</div>
</div>
</section>
</div>
<script type="text/javascript">
jQuery(function () {
SphinxRtdTheme.Navigation.enable(true);
});
</script>
</body>
</html> | brunswyck/docu | html/nw/rns/basics/dynamicRouting.html | HTML | mit | 49,042 |
<h1 class="page-title">Dashboard <small><small>The Lucky One</small></small></h1>
<div class="clearfix mb-lg">
<img class="pull-left mr-sm mt-n-xs" src="assets/img/a2.png" alt="Angular 4.0" width="100">
<p class="lead">You are looking at a completely new version of Sing App built
with brand new <strong>Angular 4.0</strong> Final Release!</p>
<p class="fs-mini">Made by <a href="http://flatlogic.com" target="_blank">Flatlogic</a>.</p>
</div>
<div class="row">
<div class="col-lg-8 col-12">
<!-- minimal widget consist of .widget class. note bg-transparent - it can be any background like bg-gray,
bg-primary, bg-white -->
<section class="widget bg-transparent">
<!-- .widget-body is a mostly semantic class. may be a sibling to .widget>header or .widget>footer -->
<div class="widget-body">
<!-- for this particular example we also need to preload us map, as this is mapael's extension -->
<div class="mapael" geo-locations-widget>
<div class="stats">
<h6 class="text-white m-t-1">GEO-LOCATIONS</h6>
<p class="h3 text-warning no-margin">
<strong number-animate>1 656 843</strong>
<i class="fa fa-map-marker"></i>
</p>
</div>
<div class="map">
<span>Alternative content for the map</span>
</div>
</div>
</div>
</section>
</div>
<div class="col-lg-4 col-12">
<section widget class="widget bg-transparent">
<header>
<h5>
Map
<span class="fw-semi-bold">Statistics</span>
</h5>
<div class="widget-controls widget-controls-hover">
<a href="#"><i class="glyphicon glyphicon-cog"></i></a>
<a href="#"><i class="fa fa-refresh"></i></a>
<a href="#" data-widgster="close"><i class="glyphicon glyphicon-remove"></i></a>
</div>
</header>
<div class="widget-body">
<p>Status: <strong>Live</strong></p>
<p>
<span class="circle bg-warning"><i class="fa fa-map-marker"></i></span>
146 Countries, 2759 Cities
</p>
<div class="row progress-stats">
<div class="col-md-9 col-12">
<h6 class="name m-t-1">Foreign Visits</h6>
<p class="description deemphasize">Some Cool Text</p>
<div class="bg-white progress progress-sm">
<div progress-animate class="progress-bar bg-primary progress-sm" style="width: 60%;" data-width="60%"></div>
</div>
</div>
<div class="col-md-3 col-12 text-center">
<span class="status rounded rounded-lg bg-body-light">
<small><span number-animate>75</span>%</small>
</span>
</div>
</div>
<div class="row progress-stats">
<div class="col-md-9 col-12">
<h6 class="name m-t-1">Local Visits</h6>
<p class="description deemphasize">P. to C. Conversion</p>
<div class="bg-white progress progress-sm">
<div progress-animate class="progress-bar bg-danger progress-sm" style="width: 39%;" data-width="39%"></div>
</div>
</div>
<div class="col-md-3 col-12 text-center">
<span class="status rounded rounded-lg bg-body-light">
<small><span number-animate>84</span>%</small>
</span>
</div>
</div>
<div class="row progress-stats">
<div class="col-md-9 col-12">
<h6 class="name m-t-1">Sound Frequencies</h6>
<p class="description deemphasize">Average Bitrate</p>
<div class="bg-white progress progress-sm">
<div progress-animate class="progress-bar bg-success progress-sm" style="width: 80%;" data-width="80%"></div>
</div>
</div>
<div class="col-md-3 col-12 text-center">
<span class="status rounded rounded-lg bg-body-light">
<small><span number-animate>92</span>%</small>
</span>
</div>
</div>
<h6 class="fw-semi-bold mt">Map Distributions</h6>
<p>Tracking: <strong>Active</strong></p>
<p>
<span class="circle bg-warning"><i class="fa fa-cog"></i></span>
391 elements installed, 84 sets
</p>
<div class="input-group mt">
<input type="text" class="form-control" placeholder="Search Map">
<span class="input-group-btn">
<button type="submit" class="btn btn-default">
<i class="fa fa-search text-gray"></i>
</button>
</span>
</div>
</div>
</section>
</div>
</div>
<div class="row">
<div class="col-lg-4 col-12">
<section widget class="widget">
<!-- .widget>header is generally a place for widget title and widget controls. see .widget in _base.scss -->
<header>
<h6>
USERBASE GROWTH
</h6>
<div class="widget-controls">
<a href="#"><i class="glyphicon glyphicon-cog"></i></a>
<a href="#" data-widgster="close"><i class="glyphicon glyphicon-remove"></i></a>
</div>
</header>
<div class="widget-body">
<div class="stats-row">
<div class="stat-item">
<h6 class="name fs-sm">Overall Growth</h6>
<p class="value">76.38%</p>
</div>
<div class="stat-item">
<h6 class="name fs-sm">Montly</h6>
<p class="value">10.38%</p>
</div>
<div class="stat-item">
<h6 class="name fs-sm">24h</h6>
<p class="value">3.38%</p>
</div>
</div>
<div class="bg-gray-lighter progress progress-xs">
<div class="progress-bar progress-xs bg-success" style="width: 60%"></div>
</div>
<p>
<small><span class="circle bg-warning"><i class="glyphicon glyphicon-chevron-up"></i></span></small>
<span class="fw-semi-bold">17% higher</span>
than last month</p>
</div>
</section>
</div>
<div class="col-lg-4 col-12">
<section widget class="widget">
<header>
<h6>
TRAFFIC VALUES
</h6>
<div class="widget-controls">
<a href="#"><i class="glyphicon glyphicon-cog"></i></a>
<a href="#" data-widgster="close"><i class="glyphicon glyphicon-remove"></i></a>
</div>
</header>
<div class="widget-body">
<div class="stats-row">
<div class="stat-item">
<h6 class="name fs-sm">Overall Values</h6>
<p class="value">17 567 318</p>
</div>
<div class="stat-item">
<h6 class="name fs-sm">Montly</h6>
<p class="value">55 120</p>
</div>
<div class="stat-item">
<h6 class="name fs-sm">24h</h6>
<p class="value">9 695</p>
</div>
</div>
<div class="bg-gray-lighter progress progress-xs">
<div class="progress-bar progress-xs bg-danger" value="100" max="100" style="width: 60%"></div>
</div>
<p>
<small><span class="circle bg-warning"><i class="fa fa-chevron-down"></i></span></small>
<span class="fw-semi-bold">8% lower</span>
than last month
</p>
</div>
</section>
</div>
<div class="col-lg-4 col-12">
<section widget class="widget">
<header>
<h6>
RANDOM VALUES
</h6>
<div class="widget-controls">
<a href="#"><i class="glyphicon glyphicon-cog"></i></a>
<a href="#" data-widgster="close"><i class="glyphicon glyphicon-remove"></i></a>
</div>
</header>
<div class="widget-body">
<div class="stats-row">
<div class="stat-item">
<h6 class="name fs-sm">Overcome T.</h6>
<p class="value">104.85%</p>
</div>
<div class="stat-item">
<h6 class="name fs-sm">Takeoff Angle</h6>
<p class="value">14.29°</p>
</div>
<div class="stat-item">
<h6 class="name fs-sm">World Pop.</h6>
<p class="value">7,211M</p>
</div>
</div>
<div class="bg-gray-lighter progress progress-xs">
<div class="progress-bar progress-xs bg-primary" value="100" max="100" style="width: 60%"></div>
</div>
<p>
<small><span class="circle bg-warning"><i class="fa fa-plus"></i></span></small>
<span class="fw-semi-bold">8 734 higher</span>
than last month
</p>
</div>
</section>
</div>
</div>
<div class="row">
<div class="col-lg-4 col-12">
<section widget class="widget">
<header>
<h6><span class="badge badge-danger">New</span> Messages</h6>
<div class="widget-controls">
<a href="#"><i class="fa fa-refresh"></i></a>
<a href="#" data-widgster="close"><i class="glyphicon glyphicon-remove"></i></a>
</div>
</header>
<div class="widget-body no-padding">
<div class="list-group list-group-lg">
<a class="list-group-item" href="#">
<span class="thumb-sm float-xs-left mr">
<img class="rounded-circle" src="assets/img/people/a2.jpg" alt="...">
<i class="status status-bottom bg-success"></i>
</span>
<div>
<h6 class="no-margin">Chris Gray</h6>
<p class="help-block text-ellipsis no-margin">Hey! What's up? So many times since we</p>
</div>
</a>
<a class="list-group-item" href="#">
<span class="thumb-sm float-xs-left mr">
<img class="rounded-circle" src="assets/img/people/a4.jpg" alt="...">
<i class="status status-bottom bg-success"></i>
</span>
<div>
<h6 class="no-margin">Jamey Brownlow</h6>
<p class="help-block text-ellipsis no-margin">Good news coming tonight. Seems they agreed to proceed</p>
</div>
</a>
<a class="list-group-item" href="#">
<span class="thumb-sm float-xs-left mr">
<img class="rounded-circle" src="assets/img/people/a1.jpg" alt="...">
<i class="status status-bottom bg-warning"></i>
</span>
<div>
<h6 class="no-margin">Livia Walsh</h6>
<p class="help-block text-ellipsis no-margin">Check my latest email plz!</p>
</div>
</a>
<a class="list-group-item" href="#">
<span class="thumb-sm float-xs-left mr">
<img class="rounded-circle" src="assets/img/people/a5.jpg" alt="...">
<i class="status status-bottom bg-danger"></i>
</span>
<div>
<h6 class="no-margin">Jaron Fitzroy</h6>
<p class="help-block text-ellipsis no-margin">What about summer break?</p>
</div>
</a>
</div>
</div>
<footer class="bg-body-light mt">
<input type="search" class="form-control form-control-sm" placeholder="Search">
</footer>
</section>
</div>
<div class="col-lg-4 col-12">
<section widget class="widget">
<header>
<h6>
Market <span class="fw-semi-bold">Stats</span>
</h6>
<div class="widget-controls">
<a href="#" data-widgster="close"><i class="glyphicon glyphicon-remove"></i></a>
</div>
</header>
<div class="widget-body">
<h3>$720 Earned</h3>
<p class="fs-mini text-muted mb mt-sm">
Target <span class="fw-semi-bold">$820</span> day earnings
is <span class="fw-semi-bold">96%</span> reached.
</p>
</div>
<div class="widget-table-overflow">
<table class="table table-striped table-sm">
<thead class="no-bd">
<tr>
<th>
<div class="checkbox abc-checkbox">
<input id="checkbox210" type="checkbox" check-all>
<label for="checkbox210"></label>
</div>
</th>
<th></th>
<th></th>
</tr>
</thead>
<tbody>
<tr>
<td>
<div class="checkbox abc-checkbox">
<input id="checkbox212" type="checkbox">
<label for="checkbox212"></label>
</div>
</td>
<td>HP Core i7</td>
<td class="text-align-right fw-semi-bold">$346.1</td>
</tr>
<tr>
<td>
<div class="checkbox abc-checkbox">
<input id="checkbox214" type="checkbox">
<label for="checkbox214"></label>
</div>
</td>
<td>Air Pro</td>
<td class="text-align-right fw-semi-bold">$533.1</td>
</tr>
</tbody>
</table>
</div>
<div class="widget-body mt-xlg" market-stats-widget>
</div>
</section>
</div>
<div class="col-lg-4 col-12">
<section widget class="widget">
<header>
<h6>Calendar</h6>
<div class="widget-controls">
<a href="#"><i class="glyphicon glyphicon-cog"></i></a>
<a href="#" data-widgster="close"><i class="glyphicon glyphicon-remove"></i></a>
</div>
</header>
<div class="widget-body no-padding">
<div class="bg-primary-light" bootstrap-calendar [events]="[
[
'2/'+month+'/'+year,
'The flower bed',
'#',
config.settings.colors['brand-primary'],
'Contents here'
],
[
'5/'+month+'/'+year,
'Stop world water pollution',
'#',
config.settings.colors['brand-warning'],
'Have a kick off meeting with .inc company'
],
[
'18/'+month+'/'+year,
'Light Blue 2.2 release',
'#',
config.settings.colors['brand-success'],
'Some contents here'
],
[
'29/'+month+'/'+year,
'A link',
'http://www.flatlogic.com',
config.settings.colors['brand-danger']
]
]"></div>
<div class="list-group fs-mini">
<a href="#" class="list-group-item text-ellipsis">
<span class="badge badge-pill badge-warning float-right">6:45</span>
Weed out the flower bed
</a>
<a href="#" class="list-group-item text-ellipsis">
<span class="badge badge-pill badge-success float-right">9:41</span>
Stop world water pollution
</a>
</div>
</div>
</section>
</div>
</div>
| whileLooper/DashboardShowcase | src/app/dashboard/dashboard.template.html | HTML | mit | 16,092 |
<div class="commune_descr limited">
<p>
Colombotte est
un village
géographiquement positionné dans le département de Haute-Saône en Franche-Comté. Elle comptait 52 habitants en 2008.</p>
<p>À coté de Colombotte sont positionnées géographiquement les communes de
<a href="{{VLROOT}}/immobilier/montcey_70358/">Montcey</a> localisée à 3 km, 213 habitants,
<a href="{{VLROOT}}/immobilier/calmoutier_70111/">Calmoutier</a> située à 2 km, 229 habitants,
<a href="{{VLROOT}}/immobilier/chatenois_70141/">Châtenois</a> à 3 km, 130 habitants,
<a href="{{VLROOT}}/immobilier/villeneuve-bellenoye-et-la-maize_70558/">La Villeneuve-Bellenoye-et-la-Maize</a> située à 5 km, 130 habitants,
<a href="{{VLROOT}}/immobilier/pomoy_70416/">Pomoy</a> localisée à 5 km, 167 habitants,
<a href="{{VLROOT}}/immobilier/dampvalley-les-colombe_70199/">Dampvalley-lès-Colombe</a> à 4 km, 113 habitants,
entre autres. De plus, Colombotte est située à seulement dix km de <a href="{{VLROOT}}/immobilier/vesoul_70550/">Vesoul</a>.</p>
<p>Si vous envisagez de emmenager à Colombotte, vous pourrez aisément trouver une maison à vendre. </p>
<p>Le nombre de logements, à Colombotte, se décomposait en 2011 en cinq appartements et 22 maisons soit
un marché plutôt équilibré.</p>
</div>
| donaldinou/frontend | src/Viteloge/CoreBundle/Resources/descriptions/70164.html | HTML | mit | 1,343 |
---
title: "parallelisation computing"
date: 2017-05-10 00:00:00
layout:
tags: parallelisation foreach R
---
<p>
I already show you how to do <code>for</code> loop and nested <code>for</code> loop. When you
want to do parallelisation computing, you simply replace the <code>for</code>
command by the <code>foreach</code> command and <code>%dopart%</code>.
</p>
<p>
Depending if you are on Windows, MacOS or Linux, you will need to
do the parallelisation differently. I personally do it on Windows
and Linux.
</p>
<p>
Within a <code>foreach</code> loop, you will need to declare the loop variable
as you usually do in the <code>for</code> command, but also to declare the
package that you are going to use within the foreach loop using the
command <code>.packages</code>. You also need to set the <code>.multicombine</code> to TRUE
is you want combine all the parallelism computing within a single
output and finally you can use the <code>.final</code> argument to customise the
output (list of list, etc.).
</p>
<p>
Keep in mind that the parallelisation will be processing using the
number of core that you declare in the <code>foreach</code> session and those
results will be sort in the same
First we create 100 random point patterns with 2
different marks "A" and "B" :
</p>
{% highlight R %}
#creating random spatial data with 2 marks
library(spatstat)
plot_NA_list <- NULL
for (i in 1:100) {
# some arbitrary coordinates in [0,1]
x <- runif(70)
y <- runif(70)
# marks
m <- as.factor(sample(c("A","B"), 70, replace=TRUE))
#creat ppp with marks
X <- ppp(x, y, c(0,1), c(0,1), marks=m)
X <- list(X)
names(X) <- i #set the names for each ppp
plot_NA_list <- append(plot_NA_list,X)#add the ppp to the list
}
plot_NA_list[1:2]
{% endhighlight %}
<pre class="example">
$`1`
Marked planar point pattern: 70 points
Multitype, with levels = A, B
window: rectangle = [0, 1] x [0, 1] units
$`2`
Marked planar point pattern: 70 points
Multitype, with levels = A, B
window: rectangle = [0, 1] x [0, 1] units
</pre>
<p>
Before going more further, you will need to install the following
package in R:
doMC (or doSNOW if you use Windows), spptest and marksummary package
which are 2 greats packages when you do spatial point pattern (you can
found them at <a href="https://github.com/myllym/GET"><a href="https://github.com/myllym/GET">https://github.com/myllym/GET</a></a> for the spptest package
and at <a href="https://github.com/myllym/marksummary"><a href="https://github.com/myllym/marksummary">https://github.com/myllym/marksummary</a></a> for the mark summary
package).
</p>
<p>
The following code will compute the "Lest" function overall 30
spatial pattern simulation (usually this is 2499 simulation) from the random data set. The "Lest" function will
basically see if the mark "A" from the spatial pattern is randomly
distributed regarding the mark "B" across the spatial pattern (this is
define in the <code>simulate</code> argument in the <code>envelope</code> function. Then, we
compute a rank envelope test (<a href="https://arxiv.org/abs/1307.0239v4">see here for more details</a>). Thus, if the
result from the rank envelope test is significant and when we plot it
the observed data are above the envelope, then "A" and "B" have a
positive correlation relationship (i.e. there are attracted one to another), if this is below the envelope threshold,
then "A" and "B" have a negative correlation relationship (i.e. there
are segregate one to another).
</p>
<p>
Finally, we put the result of the rank envelope test into a list with
also the random labelling residual data.
</p>
{% highlight R %}
library(doMC) #only for Linux,used library(doSNOW) for Windows and uncomment the above lines
# clusterN <- detectCores()-1 ### choose number of nodes to add to cluster in doSNOW ; Compute the number of core available from the computer less 1
# cl = makeCluster(clusterN, rscript="Rscript.exe", type='SOCK') ###Cluster for doSNOW
core <- detectCores()-1#Compute the number of core available from the computer less 1
registerDoMC(core)#registerDoSNOW(cl) ###for Windows
master_list <- NULL
z <- NULL
NA_list_result <- foreach(z = names(plot_NA_list),.packages = c("spatstat","spptest","marksummary"),.multicombine = TRUE, .final = function(z) setNames(z, names(plot_NA_list))) %dopar% {
plot_NA_list <- plot_NA_list[[z]]
ppp_envelope_NA <- envelope(plot_NA_list, fun = "Lest",nsim = 30,correction="translate",savefuns = TRUE,simulate = expression(runifpoint( plot_NA_list$n, win= plot_NA_list$window))) #need to change the simulation to 2499 and to add at the end 'simulate=expression(runifpoint(plot_one_specie$n, win=plot_one_specie$window))'
ppp_curve_set_NA <- envelope_to_curve_set(ppp_envelope_NA) #change the envelope class in a curve_set class. Need to add the use_theo argument
ppp_curve_set_NA$theo <- ppp_curve_set_NA$r
res_NA <- residual(ppp_curve_set_NA,use_theo = TRUE)
rank_NA <- rank_envelope(res_NA,lexo = FALSE,savedevs = TRUE) #use to plot and to have result
master_list <- list(rank_env_NA = rank_NA,random_labelling = res_NA) #,residual_NA=res_NA
return(master_list)
} #stopCluster(cl)
###End of parallelisation for Windows and Linux
{% endhighlight %}
<p>
It will took some time to compute every 100 spatial patterns.
</p>
<p>
Then you should have this list of result:
</p>
{% highlight R %}
NA_list_result[1:2]
{% endhighlight %}
<pre class="example">
$`1`
$`1`$rank_env_NA
Rank envelope test
p-value of the test: 0.3225806 (ties method: midrank)
p-interval : (0.03225806, 0.6129032)
$`1`$random_labelling
curve_set object containing :
List of 4
$ r : num [1:513] 0 0.000488 0.000977 0.001465 0.001953 ...
$ obs : num [1:513] 0 -0.000488 -0.000977 -0.001465 -0.001953 ...
$ sim_m : num [1:513, 1:30] 0 -0.000488 -0.000977 -0.001465 -0.001953 ...
..- attr(*, "dimnames")=List of 2
.. ..$ : chr [1:513] "1" "2" "3" "4" ...
.. ..$ : chr [1:30] "sim1" "sim2" "sim3" "sim4" ...
$ is_residual: logi TRUE
- attr(*, "class")= chr "curve_set"
$`2`
$`2`$rank_env_NA
Rank envelope test
p-value of the test: 0.8709677 (ties method: midrank)
p-interval : (0.8064516, 0.9354839)
$`2`$random_labelling
curve_set object containing :
List of 4
$ r : num [1:513] 0 0.000488 0.000977 0.001465 0.001953 ...
$ obs : num [1:513] 0 -0.000488 -0.000977 -0.001465 -0.001953 ...
$ sim_m : num [1:513, 1:30] 0 -0.000488 -0.000977 -0.001465 -0.001953 ...
..- attr(*, "dimnames")=List of 2
.. ..$ : chr [1:513] "1" "2" "3" "4" ...
.. ..$ : chr [1:30] "sim1" "sim2" "sim3" "sim4" ...
$ is_residual: logi TRUE
- attr(*, "class")= chr "curve_set"
</pre>
<p>
You can now plot the results from the rank envelope test:
</p>
{% highlight R %}
library(ggplot2)
jpeg("rank_envelope.jpg",width = 1200, height = 1200, units = "px",quality = 100)
plot(NA_list_result$"1"$rank_env_NA,use_ggplot2=TRUE)
dev.off()
{% endhighlight %}
<div class="figure">
<p><a href="/assets/data/rank_envelope.jpg" width="800"><img src="/assets/data/rank_envelope.jpg" alt="rank_envelope.jpg" width="800" /></a>
</p>
</div>
| despresT/SampleStat | _posts/2017-05-10-parallelisation-computing.html | HTML | mit | 7,197 |
<div class="container">
<div class="c-page-header">Solutions & Offerings</div>
<div class="c-page">
<h3>Solutions & Offerings</h3>
<p>digiProp is a comprehensive technology, which main quality is the simplicity or use. It is built with the user experience in mind. digiProp is your friend when you need assistance to make a complex decision in your life or understand what choice other people have made in similar situations and why. digiProp is a solution with multiple industry implementations. If you do not find your industry or problem statement below, please, contact us and we will be happy to consider and possibly implement your request.</p>
<h3>Products</h3>
<p>The digiProp products are built based on predefined data sets and are easy to use on a “as – is” base. If these data sets are sufficient for your business, you can use them at a great price as a simple way to support the optimal decision support and innovative understanding of people’s choices.
At this moment, the digiProp product family includes digiProp-RE (a digiProp solution for the real estate market), digiProp-Automotive (what is your best choice when buying moor vehicle), and digiProp – Electronics (featuring selected high priced electronic sample products).</p>
<h3>Solutions</h3>
<p>Using the standard “out of the box” configuration of digiProp will give you some great insights, but it is limited to certain predefined data sets. Although some of them might be sufficient for the public, taking the time to do a little customization can unlock more data, better understanding, and more ideas for optimization. When implementing a digiProp solution for you, we will utilize the exact data set you would like to use and provide analytics based on a special set of domain bound criteria.
Currently available is the digiPropAssist-RE solution, which provides advanced decision making support when buying real estate properties in the USA.</p>
<h3>Offerings</h3>
<p>Once you start using digiProp, you will get accustomed to it very fast and most likely you will start using it daily. In such cases, you might want to have the digiProp products or solution integrated within your usual applications. In such cases, we have a talented team who can do this for you and work with the rest of your vendors on advanced integration in your environment.</p>
<h3>Pricing</h3>
<p>We try to keep our pricing simple and fair.
All digiProp products are priced as Software as a Service (SaaS) unlimited usage on “per user” monthly fee. Each of the digiProp products has a different price point due to the data sets utilized.
The digiProp solutions are also priced as Software as a Service (SaaS) and on “per user” monthly or yearly fee. The cost is calculated based on the data sets requested for each implementation.
The pricing of the digiProp offerings is calculated in a custom contract, which outlines the specific requirements of the implementation. Such request can be submitted on demand here (this link should point to Contact us with message box).
Optimization and enhancement requests can also be submitted in a similar way.</p>
</div>
</div> | sasdemo/demo | app/partials/products.html | HTML | mit | 3,279 |
<!DOCTYPE html>
<!-- paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/ -->
<!--[if lt IE 7 ]> <html class="ie6" lang="en"> <![endif]-->
<!--[if IE 7 ]> <html class="ie7" lang="en"> <![endif]-->
<!--[if IE 8 ]> <html class="lt-ie9" lang="en"> <![endif]-->
<!--[if IE 9 ]> <html class="lt-ie10" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!--> <html lang="en"> <!--<![endif]-->
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>twentytwenty</title>
<link href="css/foundation.css" rel="stylesheet" type="text/css" />
<link href="css/twentytwenty.css" rel="stylesheet" type="text/css" />
<style>
/* See https://github.com/nprapps/pym.js/issues/83 */
p:first-child { margin-top: 0; }
</style>
</head>
<body>
<div class="row" style="margin-top: 2em;">
<div class="large-4 columns">
<h3>Dinywood Glacier Then and Now</h3>
<p>Slide back and forth to see a comparison of what the glacier looked like in 1964 and in 2009.</p>
</div>
<div class="large-8 columns">
<div class="twentytwenty-container">
<img src="img/WPR-dinywood-1b.jpg" />
<img src="img/WPR-dinywood-1a.jpg" />
</div>
</div>
</div>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
<script src="js/jquery.event.move.js"></script>
<script src="js/jquery.twentytwenty.js"></script>
<script>
$(window).load(function(){
$(".twentytwenty-container[data-orientation!='vertical']").twentytwenty({default_offset_pct: 0.7});
$(".twentytwenty-container[data-orientation='vertical']").twentytwenty({default_offset_pct: 0.3, orientation: 'vertical'});
});
</script>
<script src="https://pym.nprapps.org/pym.v1.js" type="text/javascript"></script>
<script>var pymChild = new pym.Child();</script>
</body>
</html>
| jwirfs-brock/jwirfs-brock.github.io | twentytwenty-master/index.html | HTML | mit | 1,975 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>Unapproved</title>
<!-- Bootstrap -->
<link href="../vendor/bootstrap-3.3.6-dist/css/bootstrap.min.css" rel="stylesheet">
<link href="../vendor/font-awesome-4.6.3/css/font-awesome.min.css" rel="stylesheet">
<link rel="icon" type="image/png" href="../favicon.ico">
<link rel="stylesheet" type="text/css" href="../css/admin.css">
<link rel="stylesheet" type="text/css" href="../css/comments.css">
<!-- HTML5 shim and Respond.js for 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-fluid display-table">
<div class="row display-table-row">
<!-- side menu -->
<div class="col-md-2 col-sm-1 hidden-xs display-table-cell valign-top" id="side-menu">
<h1 class="hidden-sm hidden-xs">Navigation</h1>
<ul>
<li class="link">
<a href="index.html">
<span class="glyphicon glyphicon-th" aria-hidden=true></span>
<span class="hidden-sm hidden-xs">Dashboard</span>
</a>
</li>
<li class="link">
<a href="#collapse-post" data-toggle="collapse" aria-controls="collapse-post">
<span class="glyphicon glyphicon-list-alt" aria-hidden=true></span>
<span class="hidden-sm hidden-xs">Arcticle</span>
<span class="label label-success pull-right hidden-sm hidden-xs">20</span>
<ul class="collapse collapseable" id="collapse-post">
<li><a href="new-article.html">Create New</a></li>
<li><a href="articles.html">View Arcticle</a></li>
</ul>
</a>
</li>
<li class="link active">
<a href="#collapse-comments" data-toggle="collapse" aria-controls="collapse-comments">
<span class="glyphicon glyphicon-pencil" aria-hidden=true></span>
<span class="hidden-sm hidden-xs">Comments</span>
<ul class="collapse collapseable" id="collapse-comments">
<li>
<a href="approved.html">Approved
<span class="label label-success pull-right hidden-sm hidden-xs">10</span>
</a>
</li>
<li>
<a href="#">Unapproved
<span class="label label-warning pull-right hidden-sm hidden-xs">10</span>
</a>
</li>
</ul>
</a>
</li>
<li class="link">
<a href="commenters.html">
<span class="glyphicon glyphicon-user" aria-hidden=true></span>
<span class="hidden-sm hidden-xs">Commenters</span>
</a>
</li>
<li class="link">
<a href="tags.html">
<span class="glyphicon glyphicon-tags" aria-hidden=true></span>
<span class="hidden-sm hidden-xs">Tags</span>
</a>
</li>
<li class="link settings-btn">
<a href="settings.html">
<span class="glyphicon glyphicon-cog" aria-hidden=true></span>
<span class="hidden-sm hidden-xs">Settings</span>
</a>
</li>
</ul>
</div>
<!-- main content area -->
<div class="col-md-10 col-sm-11 display-table-cell valign-top box">
<div class="row">
<header id="nav-header" class="clearfix">
<div class="col-md-5">
<div class="navbar-default pull-left">
<button type="button" class="navbar-toggle collapsed" data-toggle="offcanvas" data-target="#side-menu" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<input type="text" class="hidden-sm hidden-xs" id="hader-search-field" placeholder="Search for something...">
</div>
<div class="col-md-7">
<ul class="pull-right">
<li id="welcome" class="hidden-xs">Welcome to your administration area</li>
<li class="fixed-width">
<a href="#">
<span class="glyphicon glyphicon-bell" aria-hidden="true"></span>
<span class="label label-warning">3</span>
</a>
</li>
<li class="fixed-width">
<a href="#">
<span class="glyphicon glyphicon-envelope" aria-hidden="true"></span>
<span class="label label-message">3</span>
</a>
</li>
<li>
<a href="#" class="logout">
<span class="glyphicon glyphicon-log-out" aria-hidden="true"></span>
</a>
</li>
</ul>
</div>
</header>
</div>
<div id="content">
<header class="clearfix">
<h2 class="page_title pull-left">All approved</h2>
<button type="button" class="btn btn-xs btn-primary pull-right">Create new article</button>
</header>
<div class="content-inner">
<!-- Search -->
<div class="row search-row">
<div class="col-md-12">
<div class="input-group">
<input type="text" class="form-control search-field" id="search" placeholder="Search">
<span class="input-group-btn">
<button type="button" class="btn btn-primary go">Go</button>
</span>
</div>
</div>
</div>
<div class="row comments-row">
<div class="col-sm-2 col-md-1">
<img class="img-circle hidden-xs" src="https://api.fnkr.net/testimg/70x70/00CED1/?text=70x70">
</div>
<div class="col-sm-10 col-md-11">
<div class="row">
<div class="col-xs-9 col-sm-10 col-md-9">
<b>Patricio Galarza</b> posted message on <b>How things are made...</b><br>
<small>Today 17:12 - 09/07/2016</small>
</div>
<div class="col-xs-3 col-sm-2 col-md-3">
<div class="clearfix">
<div class="pull-right comments-age">2 days ago</div>
</div>
</div>
</div>
<div class="well well-sm comments-well">
Lorem ipsum dolor sit amet, consectetur adipisicing 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.
</div>
<div class="clearfix">
<div class="pull-right">
<a href="#" class="btn btn-xs btn-default" role="button">
<span class="glyphicon glyphicon-thumbs-up" aria-hidden="true"></span>
Approve
</a>
<a href="#" class="btn btn-xs btn-default" role="button">
<span class="glyphicon glyphicon-remove" aria-hidden="true"></span>
Delete
</a>
</div>
</div>
</div>
</div>
<div class="row comments-row">
<div class="col-sm-2 col-md-1">
<img class="img-circle hidden-xs" src="https://api.fnkr.net/testimg/70x70/00CED1/?text=70x70">
</div>
<div class="col-sm-10 col-md-11">
<div class="row">
<div class="col-xs-9 col-sm-10 col-md-9">
<b>Patricio Galarza</b> posted message on <b>How things are made...</b><br>
<small>Today 17:12 - 09/07/2016</small>
</div>
<div class="col-xs-3 col-sm-2 col-md-3">
<div class="clearfix">
<div class="pull-right comments-age">2 days ago</div>
</div>
</div>
</div>
<div class="well well-sm comments-well">
Lorem ipsum dolor sit amet, consectetur adipisicing 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.
</div>
<div class="clearfix">
<div class="pull-right">
<a href="#" class="btn btn-xs btn-default" role="button">
<span class="glyphicon glyphicon-thumbs-up" aria-hidden="true"></span>
Approve
</a>
<a href="#" class="btn btn-xs btn-default" role="button">
<span class="glyphicon glyphicon-remove" aria-hidden="true"></span>
Delete
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<footer id="admin-footer" class="clearfix">
<div class="pull-left"><b>Copyright </b>© 2016</div>
<div class="pull-right">Admin</div>
</footer>
</div>
</div>
</div>
</div>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="../vendor/bootstrap-3.3.6-dist/js/bootstrap.min.js"></script>
<script type="text/javascript" src="../js/admin.js"></script>
</body>
</html> | patogalarzar/studioweb | admin/unapproved.html | HTML | mit | 11,057 |
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>stream_parser::stream_parser (1 of 8 overloads)</title>
<link rel="stylesheet" href="../../../../../../../../doc/src/boostbook.css" type="text/css">
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
<link rel="home" href="../../../../index.html" title="Chapter 1. Boost.JSON">
<link rel="up" href="../stream_parser.html" title="stream_parser::stream_parser">
<link rel="prev" href="../stream_parser.html" title="stream_parser::stream_parser">
<link rel="next" href="overload2.html" title="stream_parser::stream_parser (2 of 8 overloads)">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
<table cellpadding="2" width="100%"><tr>
<td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../../../../boost.png"></td>
<td align="center"><a href="../../../../../../../../index.html">Home</a></td>
<td align="center"><a href="../../../../../../../../libs/libraries.htm">Libraries</a></td>
<td align="center"><a href="http://www.boost.org/users/people.html">People</a></td>
<td align="center"><a href="http://www.boost.org/users/faq.html">FAQ</a></td>
<td align="center"><a href="../../../../../../../../more/index.htm">More</a></td>
</tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="../stream_parser.html"><img src="../../../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../stream_parser.html"><img src="../../../../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../../index.html"><img src="../../../../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="overload2.html"><img src="../../../../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
<div class="section">
<div class="titlepage"><div><div><h6 class="title">
<a name="json.ref.boost__json__stream_parser.stream_parser.overload1"></a><a class="link" href="overload1.html" title="stream_parser::stream_parser (1 of 8 overloads)">stream_parser::stream_parser
(1 of 8 overloads)</a>
</h6></div></div></div>
<p>
Copy constructor (deleted)
</p>
<h7><a name="json.ref.boost__json__stream_parser.stream_parser.overload1.h0"></a>
<span class="phrase"><a name="json.ref.boost__json__stream_parser.stream_parser.overload1.synopsis"></a></span><a class="link" href="overload1.html#json.ref.boost__json__stream_parser.stream_parser.overload1.synopsis">Synopsis</a>
</h7><pre class="programlisting"><span class="identifier">stream_parser</span><span class="special">(</span>
<span class="identifier">stream_parser</span> <span class="keyword">const</span><span class="special">&);</span>
</pre>
<h7><a name="json.ref.boost__json__stream_parser.stream_parser.overload1.h1"></a>
<span class="phrase"><a name="json.ref.boost__json__stream_parser.stream_parser.overload1.description"></a></span><a class="link" href="overload1.html#json.ref.boost__json__stream_parser.stream_parser.overload1.description">Description</a>
</h7>
</div>
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
<td align="left"></td>
<td align="right"><div class="copyright-footer">Copyright © 2019, 2020 Vinnie Falco<br>Copyright © 2020 Krystian Stasiowski<p>
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)
</p>
</div></td>
</tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="../stream_parser.html"><img src="../../../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../stream_parser.html"><img src="../../../../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../../index.html"><img src="../../../../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="overload2.html"><img src="../../../../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
</body>
</html>
| davehorton/drachtio-server | deps/boost_1_77_0/libs/json/doc/html/json/ref/boost__json__stream_parser/stream_parser/overload1.html | HTML | mit | 4,179 |
---
layout: default
---
{% if page.header.overlay_color or page.header.overlay_image or page.header.image %}
{% include page__hero.html %}
{% elsif page.header.video.id and page.header.video.provider %}
{% include page__hero_video.html %}
{% endif %}
{% if page.url != "/" and site.breadcrumbs %}
{% unless paginator %}
{% include breadcrumbs.html %}
{% endunless %}
{% endif %}
<div id="main" role="main">
{% include sidebar.html %}
<article class="page" itemscope itemtype="https://schema.org/CreativeWork">
{% if page.title %}<meta itemprop="headline" content="{{ page.title | markdownify | strip_html | strip_newlines | escape_once }}">{% endif %}
{% if page.excerpt %}<meta itemprop="description" content="{{ page.excerpt | markdownify | strip_html | strip_newlines | escape_once }}">{% endif %}
{% if page.date %}<meta itemprop="datePublished" content="{{ page.date | date_to_xmlschema }}">{% endif %}
{% if page.last_modified_at %}<meta itemprop="dateModified" content="{{ page.last_modified_at | date_to_xmlschema }}">{% endif %}
<div class="page__inner-wrap">
{% unless page.header.overlay_color or page.header.overlay_image %}
<header>
{% if page.title %}<h1 id="page-title" class="page__title" itemprop="headline">{{ page.title | markdownify | remove: "<p>" | remove: "</p>" }}</h1>{% endif %}
{% include page__meta.html %}
</header>
{% endunless %}
<section class="page__content" itemprop="text">
{% if page.toc %}
<aside class="sidebar__right {% if page.toc_sticky %}sticky{% endif %}">
<nav class="toc">
<header><h4 class="nav__title"><i class="fas fa-{{ page.toc_icon | default: 'file-alt' }}"></i> {{ page.toc_label | default: site.data.ui-text[site.locale].toc_label | default: "On this page" }}</h4></header>
{% include toc.html sanitize=true html=content h_min=1 h_max=6 class="toc__menu" skip_no_ids=true %}
</nav>
</aside>
{% endif %}
{{ content }}
{% if page.link %}<div><a href="{{ page.link }}" class="btn btn--primary">{{ site.data.ui-text[site.locale].ext_link_label | default: "Direct Link" }}</a></div>{% endif %}
</section>
<footer class="page__meta">
{% if site.data.ui-text[site.locale].meta_label %}
<h4 class="page__meta-title">{{ site.data.ui-text[site.locale].meta_label }}</h4>
{% endif %}
{% include page__taxonomy.html %}
<!-- MODIFICACION: Eliminacion del apartado de fecha de ultima modificacion en include page__date.html -->
</footer>
{% if page.share %}{% include social-share.html %}{% endif %}
{% include post_pagination.html %}
</div>
{% if jekyll.environment == 'production' and site.comments.provider and page.comments %}
{% include comments.html %}
{% endif %}
</article>
{% comment %}<!-- only show related on a post page when `related: true` -->{% endcomment %}
{% if page.id and page.related and site.related_posts.size > 0 %}
<div class="page__related">
<h4 class="page__related-title">{{ site.data.ui-text[site.locale].related_label | default: "You May Also Enjoy" }}</h4>
<div class="grid__wrapper">
{% for post in site.related_posts limit:4 %}
{% include archive-single.html type="grid" %}
{% endfor %}
</div>
</div>
{% comment %}<!-- otherwise show recent posts if no related when `related: true` -->{% endcomment %}
{% elsif page.id and page.related %}
<div class="page__related">
<h4 class="page__related-title">{{ site.data.ui-text[site.locale].related_label | default: "You May Also Enjoy" }}</h4>
<div class="grid__wrapper">
{% for post in site.posts limit:4 %}
{% if post.id == page.id %}
{% continue %}
{% endif %}
{% include archive-single.html type="grid" %}
{% endfor %}
</div>
</div>
{% endif %}
</div>
| romhackhispano/tiovictor.romhackhispano.org | _layouts/single.html | HTML | mit | 4,014 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta name="Description" content="Information architecture, Web Design, Web Standards." />
<meta name="Keywords" content="your, keywords" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="Distribution" content="Global" />
<meta name="Author" content="Erwin Aligam - ealigam@gmail.com" />
<meta name="Robots" content="index,follow" />
<link rel="stylesheet" href="images/Envision.css" type="text/css" />
<link rel="stylesheet" href="mirage.css" type="text/css" />
<link href="jquery/jquery.fancybox.css" rel="stylesheet" type="text/css" media="screen" />
<script type="text/javascript" src="jquery/jquery.js"></script>
<script type="text/javascript" src="jquery/jquery.fancybox.js"></script>
<script type="text/javascript" src="mirage.fancybox.js"></script>
<title>Mirage</title>
</head>
<body>
<!-- wrap starts here -->
<div id="wrap">
<!--header -->
<div id="header">
<h1 id="logo-text"><a href="index.html">Mirage</a></h1>
<p id="slogan" style="margin-top:8px;">エフェクト作成ツール</p>
<div id="header-links">
<p>
<a href="index.html">Home</a> |
<a href="index.html">Contact</a> |
<a href="index.html">Site Map</a>
</p>
</div>
</div>
<!-- menu -->
<div id="menu">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="manual.html">Manual</a></li>
<li><a href="mirage_samples.html">Samples</a></li>
<li class="last"><a href="index.html">About</a></li>
</ul>
</div>
<!-- content-wrap starts here -->
<div id="content-wrap">
<div id="main">
<a href="index.html">Home</a> > <a href="manual.html">マニュアル</a> > ノードのアトリビュートパネル<br />
<ul>
<li><a href="#node">Node</a></li>
<li><a href="#basic">Basic</a></li>
<li><a href="#translation">Translation</a></li>
<li><a href="#rotation">Rotation</a></li>
<li><a href="#scale">Scale</a></li>
<li><a href="#size">Size, Size2</a></li>
<li><a href="#color">Color, Color2</a></li>
<li><a href="#blend">Blend</a></li>
<li><a href="#renderstate">RenderState</a></li>
<li><a href="#generate">Generate</a></li>
<li><a href="#texture">Texture</a></li>
<li><a href="#particle">Particle</a></li>
<li><a href="#vcolors">Vertex Colors</a></li>
<li><a href="#gravity">Gravity</a></li>
<li><a href="#wind">Wind</a></li>
<li><a href="#radial">Radial</a></li>
</ul>
<h2><a name="node">Node</a></h2>
<p>
ノードに関係するパラメータ。<br />
<br />
<img src="./images/screen_panel_node.png" alt="node_panel" /><br />
</p>
<table class="mirage_table" border="0" cellspacing="0" cellpadding="0">
<tr class="row-a"><th class="first right_align w100">名前</th><td>ノードの名前</td><td></td></tr>
<tr class="row-b"><th class="first right_align w100">色</th><td>ノードの色。左は前景色、右は背景色</td><td></td></tr>
</table>
<h2><a name="basic">Basic</a></h2>
<p>
ノードの基本情報。全てのノード共通。<br />
<br />
<img src="./images/screen_panel_basic.png" alt="basic_panel" /><br />
</p>
<table class="mirage_table" border="0" cellspacing="0" cellpadding="0">
<tr class="row-a"><th class="first right_align w100">優先度</th><td>ノードの優先順位。優先度が高いほど先に実行される。</td><td>負数も設定できる</td></tr>
<tr class="row-b"><th class="first right_align w100">活動開始</th><td>活動を開始するフレーム数</td><td>0 ~</td></tr>
<tr class="row-a"><th class="first right_align w100">寿命</th><td>寿命。フレーム数。0 は寿命がないということ。</td><td>0 ~</td></tr>
<tr class="row-b"><th class="first right_align w100">消滅時間</th><td>消滅時間。寿命後、消滅時間でフェードアウトする。設定する場合は寿命を1以上にすること。</td><td>0 ~</td></tr>
<tr class="row-a"><th class="first right_align w100">消滅モード</th><td>消滅に関係する振る舞い。<br /><span class="option">すべて消滅</span>: 消滅するときに全ての子を消滅させる。<br /><span class="option">子の終了を待つ</span>:全ての子が消滅した後、このノードを消滅させる。</td><td></td></tr>
<tr class="row-b"><th class="first right_align w100">親からの影響</th><td>親からの影響。<br/><span class="option">Translation</span>:位置<br /><span class="option">Rotation</span>:回転<br /><span class="option">Scale</span>:スケール<br /><span class="option">Color</span>:カラー<br /><span class="option">Field</span>:フィールド</td><td></td></tr>
<tr class="row-a"><th class="first right_align w100">表示</th><td>シーンに表示するかどうか</td><td></td></tr>
<tr class="row-b"><th class="first right_align w100">有効</th><td>ノードを有効にするかどうか</td><td></td></tr>
<tr class="row-a"><th class="first right_align w100">デバッグ</th><td>デバッグ用</td><td></td></tr>
</table>
<h2><a name="translation">Translation</a></h2>
<p>
位置。
<br />
<br />
<img src="./images/screen_panel_translation.png" alt="translation_panel" /><br />
</p>
<table class="mirage_table" border="0" cellspacing="0" cellpadding="0">
<tr class="row-a"><th class="first right_align w100">位置</th><td>位置</td><td></td></tr>
<tr class="row-b"><th class="first right_align w100">速度</th><td>速度(秒速)</td><td></td></tr>
<tr class="row-a"><th class="first right_align w100">加速度</th><td>加速度(秒速)</td><td></td></tr>
</table>
<h2><a name="rotation">Rotation</a></h2>
<p>
回転。
<br />
<br />
<img src="./images/screen_panel_rotation.png" alt="rotation_panel" /><br />
</p>
<table class="mirage_table" border="0" cellspacing="0" cellpadding="0">
<tr class="row-a"><th class="first right_align w100">回転</th><td>角度</td><td>-360 ~ 360</td></tr>
<tr class="row-b"><th class="first right_align w100">角速度</th><td>角速度(秒速)</td><td></td></tr>
<tr class="row-a"><th class="first right_align w100">角加速度</th><td>角加速度(秒速)</td><td></td></tr>
</table>
<h2><a name="scale"></a>Scale</h2>
<p>
スケール。
<br />
<br />
<img src="./images/screen_panel_scale.png" alt="scale_panel" /><br />
</p>
<table class="mirage_table" border="0" cellspacing="0" cellpadding="0">
<tr class="row-a"><th class="first right_align w100">サイズ</th><td>スケール</td><td></td></tr>
<tr class="row-b"><th class="first right_align w100">速度</th><td>速度(秒速)</td><td></td></tr>
<tr class="row-a"><th class="first right_align w100">加速度</th><td>加速度(秒速)</td><td></td></tr>
</table>
<h2><a name="size">Size, Size2</a></h2>
<p>
サイズ。
<br />
<br />
<img src="./images/screen_panel_size.png" alt="size_panel" /><br />
</p>
<table class="mirage_table" border="0" cellspacing="0" cellpadding="0">
<tr class="row-a"><th class="first right_align w100">サイズ</th><td>サイズ</td><td></td></tr>
<tr class="row-b"><th class="first right_align w100">速度</th><td>速度(秒速)</td><td></td></tr>
<tr class="row-a"><th class="first right_align w100">加速度</th><td>加速度(秒速)</td><td></td></tr>
</table>
<h2><a name="color">Color, Color2</a></h2>
<p>
カラー。
<br />
<br />
<img src="./images/screen_panel_color.png" alt="color_panel" /><br />
</p>
<table class="mirage_table" border="0" cellspacing="0" cellpadding="0">
<tr class="row-a"><th class="first right_align w100">R</th><td>赤成分</td><td>0.0 ~ 1.0</td></tr>
<tr class="row-b"><th class="first right_align w100">G</th><td>緑成分</td><td>0.0 ~ 1.0</td></tr>
<tr class="row-a"><th class="first right_align w100">B</th><td>青成分</td><td>0.0 ~ 1.0</td></tr>
<tr class="row-b"><th class="first right_align w100">A</th><td>α成分</td><td>0.0 ~ 1.0</td></tr>
</table>
<h2><a name="blend">Blend</a></h2>
<p>
アルファブレンド設定。
<br />
<br />
<img src="./images/screen_panel_blend.png" alt="blend_panel" /><br />
</p>
<table class="mirage_table" border="0" cellspacing="0" cellpadding="0">
<tr class="row-a"><th class="first right_align w100">有効</th><td>有効にするかどうか</td><td></td></tr>
<tr class="row-b"><th class="first right_align w100">モード</th><td><span class="option">Add</span>:加算<br /><span class="option">Subtract</span>:減算<br /><span class="option">Modulate</span>:乗算<br /><span class="option">Transparent</span>:透明<br /></td><td></td></tr>
</table>
<h2><a name="renderstate">RenderState</a></h2>
<p>
レンダーステート設定。
<br />
<br />
<img src="./images/screen_panel_renderstate.png" alt="render_state_panel" /><br />
</p>
<table class="mirage_table" border="0" cellspacing="0" cellpadding="0">
<tr class="row-a"><th class="first right_align w100">カリング</th><td>カリングするかどうか。Billboard ならする、BillboardY, Polygon ならしないが基本。</td><td></td></tr>
<tr class="row-b"><th class="first right_align w100">深度テスト</th><td>深度テスト</td><td></td></tr>
<tr class="row-a"><th class="first right_align w100">深度書き込み</th><td>深度書き込み</td><td></td></tr>
<tr class="row-b"><th class="first right_align w100">ライティング</th><td>ライティング</td><td></td></tr>
</table>
<h2><a name="generate">Generate</a></h2>
<p>
生成に関する設定。
<br />
<br />
<img src="./images/screen_panel_generate.png" alt="genetate_panel" /><br />
</p>
<table class="mirage_table" border="0" cellspacing="0" cellpadding="0">
<tr class="row-a"><th class="first right_align w100">生成数</th><td>生成する数</td><td>0 ~</td></tr>
<tr class="row-b"><th class="first right_align w100">フレーム</th><td>フレーム</td><td>0 ~</td></tr>
<tr class="row-a"><th class="first right_align w100">生成間隔</th>
<td><span class="option">Per Second</span>:<span class="param">生成数</span>は1秒間に生成する数。<span class="param">フレーム</span>は使用しない。<br />
<span class="option">Total</span>:<span class="param">生成数</span>は一度に生成する数。<span class="param">フレーム</span>は使用しない。<br />
<span class="option">Per Frame</span>:<span class="param">フレーム</span>時間で<span class="param">生成数</span>分、作成する。<br />
<span class="option">Per Frame Interval</span>:毎<span class="param">フレーム</span>おきに、<span class="param">生成数</span>分、作成する。<br /></td>
<td></td></tr>
<tr class="row-b"><th class="first right_align w100">生成時間</th><td>生成する時間。フレーム単位。</td><td></td></tr>
<tr class="row-a"><th class="first right_align w100">乱数種</th><td>乱数の種</td><td>0 ~</td></tr>
<tr class="row-b"><th class="first right_align w100">生成形状</th>
<td><span class="option">Point</span>:位置<br />
<span class="option">Box</span>:箱<br />
<span class="option">Sphere</span>:球<br />
<span class="option">Plane</span>:平面(機能しない)<br /></td>
<td></td></tr>
<tr class="row-a"><th class="first right_align w100">範囲</th>
<td><span class="option">Point</span>:オフセット<br />
<span class="option">Box</span>:辺の長さ<br />
<span class="option">Sphere</span>:球の半径<br />
<span class="option">Plane</span>:<br /></td>
<td></td></tr>
</table>
<h2><a name="texture">Texture</a></h2>
<p>
テクスチャに関する設定。
<br />
<br />
<img src="./images/screen_panel_texture.png" alt="texture_panel" /><br />
</p>
<table class="mirage_table" border="0" cellspacing="0" cellpadding="0">
<tr class="row-a"><th class="first right_align w100">ファイル名</th><td>テクスチャファイル名</td><td></td></tr>
<tr class="row-b"><th class="first right_align w100">アドレスモード</th>
<td><span class="option">Wrap</span>:ラップモード<br />
<span class="option">Clamp</span>:クランプモード<br />
<span class="option">Mirror</span>:ミラーモード<br /></td>
<td></td></tr>
<tr class="row-a"><th class="first right_align w100">フィルタ</th>
<td><span class="option">None</span>:フィルタなし<br />
<span class="option">Point</span>:ポイントフィルタ<br />
<span class="option">Linear</span>:バイリニアフィルタ<br />
<span class="option">Anisotropic</span>:異方性フィルタ<br /></td>
<td></td></tr>
<tr class="row-b"><th class="first right_align w100">UV</th><td>UV(左上が 0,0 、右下が 1,1)</td><td></td></tr>
<tr class="row-a"><th class="first right_align w100">パターン</th><td>テクスチャパターン</td><td></td></tr>
</table>
<br />
<h3 class="mirage">テクスチャファイルの設定</h3>
<p>
テクスチャライブラリやエクスプローラなどの外部アプリケーションからドラッグ&ドロップすることができます。
ドロップできる場所は下図のようになっています。<br />
<br />
<img src="./images/screen_panel_texture_filename.png" alt="texture_filename" />
<img src="./images/screen_panel_texture_preview.png" alt="texture_preview" />
</p>
<br />
<h3 class="mirage">テクスチャのプレビュー</h3>
<p>
下図の場所にテクスチャのプレビューが表示されます。<br />
<br />
<img src="./images/screen_panel_texture_preview.png" alt="texture_preview" />
</p>
<h2><a name="particle">Particle</a></h2>
<p>
パーティクルに関する設定。
<br />
<br />
<img src="./images/screen_panel_particle.png" alt="particle_panel" /><br />
</p>
<table class="mirage_table" border="0" cellspacing="0" cellpadding="0">
<tr class="row-a"><th class="first right_align w100">タイプ</th>
<td>プリミティブタイプ。<br />
<span class="option">Billboard</span>:ビルボード。常にカメラを向いている。Z軸回転だけ有効。<br />
<span class="option">BillboardY</span>:ビルボード。Y軸固定。Y軸、Z軸回転が有効。<br />
<span class="option">Polygon</span>:ポリゴン。XYZ軸回転できる。<br /></td>
<td></td></tr>
<tr class="row-b"><th class="first right_align w100">ピボット</th><td>スケール、回転のピボット点の位置。</td><td></td></tr>
<tr class="row-a"><th class="first right_align w100">ピボット位置</th><td>左上からのピボット位置。<span class="param">ピボット</span>が指定のときだけ有効。</td><td></td></tr>
</table>
<h2><a name="vcolors">Vertex Colors</a></h2>
<p>
頂点カラーに関する設定。
<br />
<br />
<img src="./images/screen_panel_vcolors.png" alt="vcolors_panel" /><br />
</p>
<h2><a name="gravity">Gravity</a></h2>
<p>
重力に関する設定。
<br />
<br />
<img src="./images/screen_panel_gravity.png" alt="gravity_panel" /><br />
</p>
<table class="mirage_table" border="0" cellspacing="0" cellpadding="0">
<tr class="row-a"><th class="first right_align w100">重力</th><td>重力加速度</td><td></td></tr>
</table>
<h2><a name="wind">Wind</a></h2>
<p>
風力に関する設定。
<br />
<br />
<img src="./images/screen_panel_wind.png" alt="wind_panel" /><br />
</p>
<table class="mirage_table" border="0" cellspacing="0" cellpadding="0">
<tr class="row-a"><th class="first right_align w100">強さ</th><td>風の強さ</td><td></td></tr>
<tr class="row-b"><th class="first right_align w100">向き</th><td>風の向き</td><td></td></tr>
<tr class="row-a"><th class="first right_align w100">ノイズ</th><td>風の向きに影響するノイズ</td><td></td></tr>
</table>
<h2><a name="radial">Radial</a></h2>
<p>
放射状の力に関する設定。
<br />
<br />
<img src="./images/screen_panel_radial.png" alt="radial_panel" /><br />
</p>
<table class="mirage_table" border="0" cellspacing="0" cellpadding="0">
<tr class="row-a"><th class="first right_align w100">強さ</th><td>力の強さ。値が正なら中心から放射状に力を作用する。値が負なら中心に向かって引き寄せる。</td><td></td></tr>
<tr class="row-b"><th class="first right_align w100">減衰</th><td>力の減衰。作用する力 = <span class="param">強さ</span> × 1.0f / (<span class="param">減衰</span>×中心からの距離)</td><td></td></tr>
<tr class="row-a"><th class="first right_align w100">範囲</th><td>力が影響する範囲。<br />
<span class="option">Infinite</span>:すべてのパーティクルが影響する。<br />
<span class="option">Range</span>:<span class="param">長さ</span>に設定した範囲内にだけ影響する<br />
</td><td></td></tr>
<tr class="row-b"><th class="first right_align w100">長さ</th><td>力が影響する球の半径</td><td></td></tr>
<tr class="row-a"><th class="first right_align w100">位置</th><td>力の中心点</td><td></td></tr>
</table>
</div>
<!-- content-wrap ends here -->
</div>
<!--footer starts here-->
<div id="footer">
<p>
© 2010 <strong>mebiusbox software</strong> |
Design by: <a href="http://www.styleshout.com/">styleshout</a> |
Valid <a href="http://validator.w3.org/check?uri=referer">XHTML</a> |
<a href="http://jigsaw.w3.org/css-validator/check/referer">CSS</a>
<a href="index.html">Home</a> |
<a href="index.html">Sitemap</a> |
<a href="index.html">RSS Feed</a>
</p>
</div>
<!-- wrap ends here -->
</div>
</body>
</html>
| mebiusbox/mebiusbox.github.com | contents/mirage/manual_node_params.html | HTML | mit | 18,572 |
<!DOCTYPE html>
<html>
<head>
<base href="/" />
<title>Bitcoin Merchant POS</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- bootstrap css -->
<link href="//netdna.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet" />
</head>
<body>
<app>Loading...</app>
</body>
</html>
| atlanticstarr1/bitcoin-pos | src/index.html | HTML | mit | 354 |
<div id="wrapper" class="col-lg-12">
<form role="form" id="sign-up_area" method="post" id="postStatus" action="postStatus/">
{% csrf_token %}
<br/>
<!-- Textarea -->
<textarea class="form-control" name="status" id="status" placeholder="Do you want to add a message?"></textarea>
<br/>
<div class="form-group">
<label for="facebook" class="checkbox-inline">
<input type="checkbox" name="facebook" class="input_checkboxitem"> Facebook </label>
<label for="twitter" class="checkbox-inline">
<input type="checkbox" name="twitter" class="input_checkboxitem"> Twitter </label>
<label for="Google+" class="checkbox-inline">
<input type="checkbox" name="Google+" class="input_checkboxitem"> Google+ </label>
<span class="pull-right"><input class="btn btn-primary btn-outline" type="submit" role="button" value="Post Status To Selected Service(es)"></span>
<br/><br/><br/><br/>
</div>
</form>
</div> | hitenpratap/HMator | mainApp/templates/mainApp/statusForm.html | HTML | mit | 1,210 |
<!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=06&cityCode=008&areaCode=02&deptCode=010&liCode=0201#"><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=2 align=center>嘉義縣第02選區大林鎮西結里第0260投開票所</td>
<td nowrap align="center">陳明文</td>
<td nowrap align="center">1</td>
<td nowrap align="right">365</td>
<td nowrap align="right"> 74.33%</td>
</tr>
<!-- 投開票所內容 -->
<tr class="data">
<td nowrap align="center">陳以真</td>
<td nowrap align="center">2</td>
<td nowrap align="right">126</td>
<td nowrap align="right"> 25.66%</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_008-areaCode_02-deptCode_010/voteCode_20120101T1A2-qryType_ctks-prvCode_06-cityCode_008-areaCode_02-deptCode_010-liCode_0201.html | HTML | mit | 5,549 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>qarith-stern-brocot: 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.13.1 / qarith-stern-brocot - 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>
qarith-stern-brocot
<small>
8.7.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-02-18 03:17:35 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-02-18 03:17:35 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
conf-gmp 4 Virtual package relying on a GMP lib system installation
coq 8.13.1 Formal proof management system
num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.12.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.12.1 Official release 4.12.1
ocaml-config 2 OCaml Switch Configuration
ocaml-options-vanilla 1 Ensure that OCaml is compiled with no special options enabled
ocamlfind 1.9.3 A library manager for OCaml
zarith 1.12 Implements arithmetic and logical operations over arbitrary-precision integers
# opam file:
opam-version: "2.0"
maintainer: "Hugo.Herbelin@inria.fr"
homepage: "https://github.com/coq-community/qarith-stern-brocot"
license: "LGPL 2.1"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/QArithSternBrocot"]
depends: [
"ocaml"
"coq" {>= "8.7" & < "8.8~"}
]
tags: [ "keyword: rational numbers" "keyword: arithmetic" "keyword: field tactic" "keyword: binary lists" "keyword: Stern-Brocot" "category: Mathematics/Arithmetic and Number Theory/Rational numbers" "category: Miscellaneous/Extracted Programs/Arithmetic" "date: 2003" ]
authors: [ "Milad Niqui" "Yves Bertot" ]
bug-reports: "https://github.com/coq-community/qarith-stern-brocot/issues"
dev-repo: "git+https://github.com/coq-community/qarith-stern-brocot.git"
synopsis: "Binary Rational Numbers"
description:
"Developement of rational numbers as finite binary lists and defining field operations on them in two different ways: strict and lazy."
flags: light-uninstall
url {
src:
"https://github.com/coq-community/qarith-stern-brocot/archive/v8.7.0.tar.gz"
checksum: "md5=3f1f522f7448f17b160e9cbbaa56132d"
}
</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-qarith-stern-brocot.8.7.0 coq.8.13.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.13.1).
The following dependencies couldn't be met:
- coq-qarith-stern-brocot -> coq < 8.8~ -> ocaml < 4.10
base of this switch (use `--unlock-base' to force)
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-qarith-stern-brocot.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.12.1-2.0.8/released/8.13.1/qarith-stern-brocot/8.7.0.html | HTML | mit | 7,371 |
<!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>LIGRA | Legislation</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/main.css">
<link rel="stylesheet" type="text/css" href="css/font-awesome.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]-->
<header>
<img src="img/logo.png" alt="LIGRA Logo">
<h1>Long Island Gasoline Retailers Association</h1>
</header>
<div class="navContainer">
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="press.html">Press</a></li>
<li><a href="legislation.html">Legislation</a></li>
<li><a href="legal.html">Legal Plan</a></li>
<li><a href="staff.html">Staff</a></li>
<li><a href="events.html">Events</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
</nav>
</div>
<div class='mainContent'>
<section>
<h1>Legislation</h1>
<img src="img/legis2.png">
<p>
LIGRA’s Executive Director and Board Members monitor events occurring in the Local, State and Federal Governments. LIGRA retains lobbyists to handle both Albany and local legislation. Additionally, through LIGRA’s affiliation with NCPR (National Coalition of Petroleum Retailers), LIGRA members have full time representation in Washington, D.C.
<br>
<br>
HERE IS A PARTIAL LISTING OF LIGRA’S LEGISLATIVE ACHIEVEMENTS:
</p>
<ul class="fa-ul">
<li>LIGRA was instrumental in getting the Petroleum Marketing Practices Act passed. This Act protects retailers from unfair termination and non-renewals, unless an Oil Company can show just cause. LIGRA has now worked with our national association to successfully amend this act to give the state’s flexibility with their own laws.</li>
<li>LIGRA was instrumental in getting the "Right of Survivorship" Law passed which allows a service station dealer to bequeath the business to their spouse or adults child. Under this law, a bequeathment form must be filed with the oil company before a dealer can exercise this right of survivorship.</li>
<li>LIGRA was instrumental in getting a law passed permitting a dealer to sell his/her franchise. This allows a dealer to sell, transfer, or assign the franchise to another person, except under certain specified circumstances. Thus, a petroleum company cannot prohibit or prevent a dealer from selling, transferring, or assigning a franchise unless they have good cause and unless the sale, transfer or assignment is prohibited because of specified reasons, such as fraud.</li>
<li>LIGRA has successfully repealed the nozzle fee in both Nassau & Suffolk County. We have been successful in working with the NYC Consumer Affairs Bureau in easing the burden of the regulatory process for our City members. LIGRA has been successful in minimizing the impact of the Cigarette Ban in both Nassau and Suffolk County. We have been successful in keeping our members out of the loop of the Suffolk County Crackhouse Law, which would have classified the sale of cigarettes and beer to a minor as the same offense as selling crack or cocaine. LIGRA has been successful in easing the burden of waste oil regulations by making consumers more responsible for the action.</li>
<li>LIGRA held back the proposed Centralized Auto Emissions Testing program (when other associations stated, "it was a done deal") by bringing the ills of this program to the public’s attention. Today many of our auto repair shops are enjoying the benefits of the inspection program, without the expense of new equipment.</li>
<li>These are just some of our Legislative achievements. There have been many more on all levels of government. LIGRA continues to strive to keep the voice of our membership in the forefront of all levels of government.</li>
</ul>
</section>
</div>
<footer>
<p>
Long Island Gasoline Retailers Association <br>
631-755-5550 <br>
270 Spagnoli Rd. <br>
Melville, NY 11747
</p>
</footer>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="js/vendor/jquery-1.11.0.min.js"><\/script>')</script>
<script src="js/plugins.js"></script>
<script src="js/main.js"></script>
<!-- Google Analytics: change UA-XXXXX-X to be your site's ID. -->
<script>
(function(b,o,i,l,e,r){b.GoogleAnalyticsObject=l;b[l]||(b[l]=
function(){(b[l].q=b[l].q||[]).push(arguments)});b[l].l=+new Date;
e=o.createElement(i);r=o.getElementsByTagName(i)[0];
e.src='//www.google-analytics.com/analytics.js';
r.parentNode.insertBefore(e,r)}(window,document,'script','ga'));
ga('create','UA-XXXXX-X');ga('send','pageview');
</script>
</body>
</html>
| BeaverGladiator/Updated-Portfolio | project/portfolio/LIGRA/legislation.html | HTML | mit | 6,255 |
{% extends 'index.html' %}
{% block title.content %}Insumos - {{ block.super }}{% endblock title.content %}
{% block header.content %}Insumos - {{ block.super }}{% endblock header.content %}
{% block content %}
{% include 'insumo/menu.html' %}
{% endblock %}
| anselmobd/fo2 | src/template/insumo/index.html | HTML | mit | 262 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.9.1"/>
<title>V8 API Reference Guide for node.js v0.1.32: Examples</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="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<script type="text/javascript">
$(document).ready(function() { init_search(); });
</script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td style="padding-left: 0.5em;">
<div id="projectname">V8 API Reference Guide for node.js v0.1.32
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.9.1 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "search",false,'Search');
</script>
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li><a href="annotated.html"><span>Classes</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
<li class="current"><a href="examples.html"><span>Examples</span></a></li>
<li>
<div id="MSearchBox" class="MSearchBoxInactive">
<span class="left">
<img id="MSearchSelect" src="search/mag_sel.png"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
<input type="text" id="MSearchField" value="Search" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
</span><span class="right">
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
</span>
</div>
</li>
</ul>
</div>
</div><!-- top -->
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div class="header">
<div class="headertitle">
<div class="title">Examples</div> </div>
</div><!--header-->
<div class="contents">
<div class="textblock">Here is a list of all examples:</div><ul>
<li><a class="el" href="process_8cc-example.html">process.cc</a></li>
<li><a class="el" href="shell_8cc-example.html">shell.cc</a></li>
</ul>
</div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Tue Aug 11 2015 23:44:33 for V8 API Reference Guide for node.js v0.1.32 by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.9.1
</small></address>
</body>
</html>
| v8-dox/v8-dox.github.io | 70b2a44/html/examples.html | HTML | mit | 3,862 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- - DO NOT EDIT THIS FILE! The Contents is created from source file(s). -->
<!-- Start HTML-Above-1st.html -->
<HTML>
<HEAD>
<!-- Stop HTML-Above-1st.html -->
<!-- Start HTML-Above-2nd.html -->
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=utf-8">
<LINK REL="icon" HREF="/favicon/bat.ico" TYPE="image/x-icon">
<LINK REL="shortcut icon" HREF="/favicon/bat.ico" TYPE="image/x-icon">
<!-- Stop HTML-Above-2nd.html -->
<!-- Start Digit-Mersenne-Title.html -->
<TITLE>2^4253-1 is prime</TITLE>
<META name="description" content="2^4253-1 is prime">
<META name="keywords" content="English name of a number, name of a number, prime, prime number, large prime number, Mersenne, Mersenne prime, m4253, M(4253)">
<!-- Stop Digit-Mersenne-Title.html -->
<!-- Start Head-CSS.html -->
<style type="text/css">
@import url(http://www.google.com/cse/api/branding.css);
</style>
<!-- Stop Head-CSS.html -->
<!-- Start Head-2-Body.html -->
</HEAD>
<BODY BGCOLOR="#98B8D8">
<!-- Stop Head-2-Body.html -->
<!-- Start Digit-Mersenne-Content-Above.html -->
<!-- Start web content -->
<CENTER><H2>2<SUP>4253</SUP>-1 is prime</H2>
<H3>English name American style</H3>
(<A HREF="http://www.isthe.com/chongo/index.html">chongo's home page</A>)
(<A HREF="http://www.isthe.com/chongo/tech/math/prime/mersenne.html#M4253">return - more primes</A>)
(<A HREF="#useful">useful links below</A>)
<P>
The decimal value of this prime was computed with
<A HREF="http://www.isthe.com/chongo/tech/comp/calc/index.html">calc</A>
and the English name was computed with
<A HREF="http://www.isthe.com/chongo/tech/math/number/number.html">number</A>.
</CENTER>
<!-- Stop Digit-Mersenne-Content-Above.html -->
<HR><BLOCKQUOTE><PRE>
<!-- prime.html content starts on the next line below -->
one hundred ninety quadringenquinvigintillion,
seven hundred ninety seven quadringenquattuorvigintillion,
seven quadringentrevigintillion,
five hundred twenty four quadringendovigintillion,
four hundred thirty nine quadringenunvigintillion,
seventy three quadringenvigintillion,
eight hundred seven quadringennovemdecillion,
four hundred sixty eight quadringenoctodecillion,
forty two quadringenseptendecillion,
nine hundred sixty nine quadringensexdecillion,
five hundred twenty nine quadringenquindecillion,
one hundred seventy three quadringenquattuordecillion,
six hundred sixty nine quadringentredecillion,
three hundred fifty six quadringendodecillion,
nine hundred ninety four quadringenundecillion,
seven hundred forty nine quadringendecillion,
nine hundred forty quadringennovemtillion,
one hundred seventy seven quadringenoctotillion,
three hundred ninety four quadringenseptentillion,
seven hundred forty one quadringensextillion,
eight hundred eighty two quadringenquintillion,
six hundred seventy three quadringenquattuortillion,
five hundred twenty eight quadringentretillion,
nine hundred seventy nine quadringendotillion,
seven hundred eighty seven quadringenuntillion,
five quadringentillion,
fifty three trecennovemnonagintillion,
seven hundred six trecenoctononagintillion,
three hundred sixty eight trecenseptennonagintillion,
forty nine trecensexnonagintillion,
eight hundred thirty five trecenquinnonagintillion,
five hundred fourteen trecenquattuornonagintillion,
nine hundred trecentrenonagintillion,
two hundred forty four trecendononagintillion,
three hundred three trecenunnonagintillion,
four hundred ninety five trecennonagintillion,
nine hundred fifty four trecennovemoctogintillion,
nine hundred fifty trecenoctooctogintillion,
seven hundred nine trecenseptenoctogintillion,
seven hundred twenty five trecensexoctogintillion,
seven hundred sixty two trecenquinoctogintillion,
one hundred eighty six trecenquattuoroctogintillion,
three hundred eleven trecentreoctogintillion,
two hundred twenty four trecendooctogintillion,
one hundred forty eight trecenunoctogintillion,
eight hundred twenty eight trecenoctogintillion,
eight hundred eleven trecennovemseptuagintillion,
nine hundred twenty trecenoctoseptuagintillion,
two hundred sixteen trecenseptenseptuagintillion,
nine hundred four trecensexseptuagintillion,
five hundred forty two trecenquinseptuagintillion,
two hundred six trecenquattuorseptuagintillion,
nine hundred sixty trecentreseptuagintillion,
seven hundred forty four trecendoseptuagintillion,
six hundred sixty six trecenunseptuagintillion,
one hundred sixty nine trecenseptuagintillion,
three hundred sixty four trecennovemsexagintillion,
two hundred twenty one trecenoctosexagintillion,
one hundred ninety five trecenseptensexagintillion,
two hundred eighty nine trecensexsexagintillion,
five hundred thirty eight trecenquinsexagintillion,
four hundred thirty six trecenquattuorsexagintillion,
eight hundred forty five trecentresexagintillion,
three hundred ninety trecendosexagintillion,
two hundred fifty trecenunsexagintillion,
one hundred sixty eight trecensexagintillion,
six hundred sixty three trecennovemquinquagintillion,
nine hundred thirty two trecenoctoquinquagintillion,
eight hundred thirty eight trecenseptenquinquagintillion,
eight hundred five trecensexquinquagintillion,
one hundred ninety two trecenquinquinquagintillion,
fifty five trecenquattuorquinquagintillion,
one hundred thirty seven trecentrequinquagintillion,
one hundred fifty four trecendoquinquagintillion,
three hundred ninety trecenunquinquagintillion,
nine hundred twelve trecenquinquagintillion,
six hundred sixty six trecennovemquadragintillion,
five hundred twenty seven trecenoctoquadragintillion,
five hundred thirty three trecenseptenquadragintillion,
seven trecensexquadragintillion,
three hundred nine trecenquinquadragintillion,
two hundred ninety two trecenquattuorquadragintillion,
six hundred eighty seven trecentrequadragintillion,
five hundred thirty nine trecendoquadragintillion,
ninety two trecenunquadragintillion,
two hundred fifty seven trecenquadragintillion,
forty three trecennovemtrigintillion,
three hundred sixty two trecenoctotrigintillion,
five hundred seventeen trecenseptentrigintillion,
eight hundred fifty seven trecensextrigintillion,
three hundred sixty six trecenquintrigintillion,
six hundred twenty four trecenquattuortrigintillion,
six hundred ninety nine trecentretrigintillion,
nine hundred seventy five trecendotrigintillion,
four hundred two trecenuntrigintillion,
three hundred seventy five trecentrigintillion,
four hundred sixty two trecennovemvigintillion,
nine hundred fifty four trecenoctovigintillion,
four hundred ninety trecenseptenvigintillion,
two hundred ninety three trecensexvigintillion,
two hundred fifty nine trecenquinvigintillion,
two hundred thirty three trecenquattuorvigintillion,
three hundred three trecentrevigintillion,
one hundred thirty seven trecendovigintillion,
three hundred thirty trecenunvigintillion,
six hundred forty three trecenvigintillion,
five hundred thirty one trecennovemdecillion,
five hundred fifty six trecenoctodecillion,
five hundred thirty nine trecenseptendecillion,
seven hundred thirty nine trecensexdecillion,
nine hundred twenty one trecenquindecillion,
nine hundred twenty six trecenquattuordecillion,
two hundred one trecentredecillion,
four hundred thirty eight trecendodecillion,
six hundred six trecenundecillion,
four hundred thirty nine trecendecillion,
twenty trecennovemtillion,
seventy five trecenoctotillion,
one hundred seventy four trecenseptentillion,
seven hundred twenty three trecensextillion,
twenty nine trecenquintillion,
fifty six trecenquattuortillion,
eight hundred thirty eight trecentretillion,
two hundred seventy two trecendotillion,
five hundred five trecenuntillion,
fifty one trecentillion,
five hundred seventy one ducennovemnonagintillion,
nine hundred sixty seven ducenoctononagintillion,
five hundred ninety four ducenseptennonagintillion,
six hundred eight ducensexnonagintillion,
three hundred fifty ducenquinnonagintillion,
sixty three ducenquattuornonagintillion,
four hundred four ducentrenonagintillion,
four hundred ninety five ducendononagintillion,
nine hundred seventy seven ducenunnonagintillion,
six hundred sixty ducennonagintillion,
six hundred fifty six ducennovemoctogintillion,
two hundred sixty nine ducenoctooctogintillion,
twenty ducenseptenoctogintillion,
eight hundred twenty three ducensexoctogintillion,
nine hundred sixty ducenquinoctogintillion,
eight hundred twenty five ducenquattuoroctogintillion,
five hundred sixty seven ducentreoctogintillion,
twelve ducendooctogintillion,
three hundred forty four ducenunoctogintillion,
one hundred eighty nine ducenoctogintillion,
nine hundred eight ducennovemseptuagintillion,
nine hundred twenty seven ducenoctoseptuagintillion,
nine hundred fifty six ducenseptenseptuagintillion,
six hundred forty six ducensexseptuagintillion,
eleven ducenquinseptuagintillion,
nine hundred ninety eight ducenquattuorseptuagintillion,
fifty seven ducentreseptuagintillion,
nine hundred eighty eight ducendoseptuagintillion,
five hundred forty eight ducenunseptuagintillion,
six hundred thirty ducenseptuagintillion,
one hundred seven ducennovemsexagintillion,
six hundred thirty seven ducenoctosexagintillion,
three hundred eighty ducenseptensexagintillion,
nine hundred ninety three ducensexsexagintillion,
five hundred nineteen ducenquinsexagintillion,
eight hundred twenty six ducenquattuorsexagintillion,
five hundred eighty two ducentresexagintillion,
three hundred eighty nine ducendosexagintillion,
seven hundred eighty one ducenunsexagintillion,
eight hundred eighty eight ducensexagintillion,
one hundred thirty five ducennovemquinquagintillion,
seven hundred five ducenoctoquinquagintillion,
four hundred eight ducenseptenquinquagintillion,
six hundred fifty three ducensexquinquagintillion,
forty five ducenquinquinquagintillion,
two hundred nineteen ducenquattuorquinquagintillion,
six hundred fifty five ducentrequinquagintillion,
eight hundred one ducendoquinquagintillion,
seven hundred fifty eight ducenunquinquagintillion,
eighty one ducenquinquagintillion,
two hundred fifty one ducennovemquadragintillion,
one hundred sixty four ducenoctoquadragintillion,
eighty ducenseptenquadragintillion,
five hundred fifty four ducensexquadragintillion,
six hundred nine ducenquinquadragintillion,
fifty seven ducenquattuorquadragintillion,
four hundred sixty eight ducentrequadragintillion,
twenty eight ducendoquadragintillion,
two hundred three ducenunquadragintillion,
three hundred eight ducenquadragintillion,
seven hundred eighteen ducennovemtrigintillion,
seven hundred twenty four ducenoctotrigintillion,
six hundred fifty four ducenseptentrigintillion,
eighty one ducensextrigintillion,
fifty five ducenquintrigintillion,
three hundred twenty three ducenquattuortrigintillion,
two hundred fifteen ducentretrigintillion,
eight hundred sixty ducendotrigintillion,
one hundred eighty nine ducenuntrigintillion,
six hundred eleven ducentrigintillion,
three hundred ninety one ducennovemvigintillion,
two hundred ninety six ducenoctovigintillion,
thirty ducenseptenvigintillion,
four hundred seventy one ducensexvigintillion,
one hundred eight ducenquinvigintillion,
four hundred forty three ducenquattuorvigintillion,
one hundred forty six ducentrevigintillion,
seven hundred forty five ducendovigintillion,
six hundred seventy one ducenunvigintillion,
nine hundred sixty seven ducenvigintillion,
seven hundred sixty six ducennovemdecillion,
three hundred eight ducenoctodecillion,
nine hundred twenty five ducenseptendecillion,
eight hundred fifty eight ducensexdecillion,
five hundred forty seven ducenquindecillion,
two hundred seventy one ducenquattuordecillion,
five hundred seven ducentredecillion,
three hundred eleven ducendodecillion,
five hundred sixty three ducenundecillion,
seven hundred sixty five ducendecillion,
one hundred seventy one ducennovemtillion,
eight ducenoctotillion,
three hundred eighteen ducenseptentillion,
two hundred forty eight ducensextillion,
six hundred forty seven ducenquintillion,
one hundred ten ducenquattuortillion,
ninety seven ducentretillion,
six hundred fourteen ducendotillion,
eight hundred ninety ducenuntillion,
three hundred thirteen ducentillion,
five hundred sixty two cennovemnonagintillion,
eight hundred fifty six cenoctononagintillion,
five hundred forty one censeptennonagintillion,
seven hundred eighty four censexnonagintillion,
one hundred fifty four cenquinnonagintillion,
eight hundred eighty one cenquattuornonagintillion,
seven hundred forty three centrenonagintillion,
one hundred forty six cendononagintillion,
thirty three cenunnonagintillion,
nine hundred nine cennonagintillion,
six hundred two cennovemoctogintillion,
seven hundred thirty seven cenoctooctogintillion,
nine hundred forty seven censeptenoctogintillion,
three hundred eighty five censexoctogintillion,
fifty five cenquinoctogintillion,
three hundred fifty five cenquattuoroctogintillion,
nine hundred sixty centreoctogintillion,
three hundred thirty one cendooctogintillion,
eight hundred fifty five cenunoctogintillion,
six hundred fourteen cenoctogintillion,
five hundred forty cennovemseptuagintillion,
nine hundred cenoctoseptuagintillion,
eighty one censeptenseptuagintillion,
four hundred fifty six censexseptuagintillion,
three hundred seventy eight cenquinseptuagintillion,
six hundred fifty nine cenquattuorseptuagintillion,
sixty eight centreseptuagintillion,
three hundred seventy cendoseptuagintillion,
three hundred seventeen cenunseptuagintillion,
two hundred sixty seven censeptuagintillion,
six hundred ninety six cennovemsexagintillion,
nine hundred eighty cenoctosexagintillion,
one censeptensexagintillion,
one hundred eighty seven censexsexagintillion,
seven hundred fifty cenquinsexagintillion,
nine hundred ninety five cenquattuorsexagintillion,
four hundred ninety one centresexagintillion,
ninety cendosexagintillion,
three hundred fifty cenunsexagintillion,
one hundred eight censexagintillion,
four hundred seventeen cennovemquinquagintillion,
fifty cenoctoquinquagintillion,
nine hundred seventeen censeptenquinquagintillion,
nine hundred ninety one censexquinquagintillion,
five hundred sixty two cenquinquinquagintillion,
one hundred sixty seven cenquattuorquinquagintillion,
nine hundred seventy two centrequinquagintillion,
two hundred eighty one cendoquinquagintillion,
seventy cenunquinquagintillion,
one hundred sixty one cenquinquagintillion,
three hundred five cennovemquadragintillion,
nine hundred seventy two cenoctoquadragintillion,
five hundred eighteen censeptenquadragintillion,
forty four censexquadragintillion,
eight hundred seventy two cenquinquadragintillion,
forty eight cenquattuorquadragintillion,
three hundred thirty one centrequadragintillion,
three hundred six cendoquadragintillion,
three hundred eighty three cenunquadragintillion,
seven hundred fifteen cenquadragintillion,
ninety four cennovemtrigintillion,
eight hundred fifty four cenoctotrigintillion,
nine hundred thirty eight censeptentrigintillion,
four hundred fifteen censextrigintillion,
seven hundred thirty eight cenquintrigintillion,
five hundred forty nine cenquattuortrigintillion,
eight hundred ninety four centretrigintillion,
six hundred six cendotrigintillion,
seventy cenuntrigintillion,
seven hundred twenty two centrigintillion,
five hundred eighty four cennovemvigintillion,
seven hundred thirty seven cenoctovigintillion,
nine hundred seventy eight censeptenvigintillion,
one hundred seventy six censexvigintillion,
six hundred eighty six cenquinvigintillion,
four hundred twenty two cenquattuorvigintillion,
one hundred thirty four centrevigintillion,
three hundred fifty four cendovigintillion,
five hundred twenty six cenunvigintillion,
nine hundred eighty nine cenvigintillion,
four hundred forty three cennovemdecillion,
twenty eight cenoctodecillion,
three hundred fifty three censeptendecillion,
six hundred forty four censexdecillion,
thirty seven cenquindecillion,
one hundred eighty seven cenquattuordecillion,
three hundred seventy five centredecillion,
three hundred eighty five cendodecillion,
three hundred ninety seven cenundecillion,
eight hundred thirty eight cendecillion,
two hundred fifty nine cennovemtillion,
five hundred eleven cenoctotillion,
eight hundred thirty three censeptentillion,
one hundred sixty six censextillion,
four hundred sixteen cenquintillion,
one hundred thirty four cenquattuortillion,
three hundred twenty three centretillion,
six hundred ninety five cendotillion,
six hundred sixty cenuntillion,
three hundred sixty seven centillion,
six hundred seventy six novemnonagintillion,
eight hundred ninety seven octononagintillion,
seven hundred twenty two septennonagintillion,
two hundred eighty seven sexnonagintillion,
nine hundred eighteen quinnonagintillion,
seven hundred seventy three quattuornonagintillion,
four hundred twenty trenonagintillion,
nine hundred sixty eight dononagintillion,
nine hundred eighty two unnonagintillion,
three hundred twenty six nonagintillion,
eighty nine novemoctogintillion,
twenty six octooctogintillion,
one hundred fifty septenoctogintillion,
thirty one sexoctogintillion,
five hundred fifteen quinoctogintillion,
four hundred twenty four quattuoroctogintillion,
one hundred sixty five treoctogintillion,
four hundred sixty two dooctogintillion,
one hundred eleven unoctogintillion,
three hundred thirty seven octogintillion,
five hundred twenty seven novemseptuagintillion,
four hundred thirty one octoseptuagintillion,
one hundred fifty four septenseptuagintillion,
eight hundred ninety sexseptuagintillion,
six hundred sixty six quinseptuagintillion,
three hundred twenty seven quattuorseptuagintillion,
three hundred seventy four treseptuagintillion,
nine hundred twenty one doseptuagintillion,
four hundred forty six unseptuagintillion,
two hundred seventy six septuagintillion,
eight hundred thirty three novemsexagintillion,
five hundred sixty four octosexagintillion,
five hundred nineteen septensexagintillion,
seven hundred seventy six sexsexagintillion,
seven hundred ninety seven quinsexagintillion,
six hundred thirty three quattuorsexagintillion,
eight hundred seventy five tresexagintillion,
five hundred three dosexagintillion,
five hundred forty eight unsexagintillion,
six hundred sixty five sexagintillion,
ninety three novemquinquagintillion,
nine hundred fourteen octoquinquagintillion,
five hundred fifty six septenquinquagintillion,
four hundred eighty two sexquinquagintillion,
thirty one quinquinquagintillion,
four hundred eighty two quattuorquinquagintillion,
two hundred forty eight trequinquagintillion,
eight hundred eighty three doquinquagintillion,
one hundred twenty seven unquinquagintillion,
twenty three quinquagintillion,
seven hundred seventy seven novemquadragintillion,
thirty nine octoquadragintillion,
six hundred sixty seven septenquadragintillion,
seven hundred seven sexquadragintillion,
nine hundred seventy six quinquadragintillion,
five hundred fifty nine quattuorquadragintillion,
eight hundred fifty seven trequadragintillion,
three hundred thirty three doquadragintillion,
three hundred fifty seven unquadragintillion,
thirteen quadragintillion,
seven hundred twenty seven novemtrigintillion,
three hundred forty two octotrigintillion,
seventy nine septentrigintillion,
ninety nine sextrigintillion,
sixty four quintrigintillion,
four hundred quattuortrigintillion,
four hundred fifty five tretrigintillion,
seven hundred forty one dotrigintillion,
eight hundred thirty untrigintillion,
six hundred fifty four trigintillion,
three hundred twenty novemvigintillion,
three hundred seventy nine octovigintillion,
three hundred fifty septenvigintillion,
eight hundred thirty three sexvigintillion,
two hundred thirty six quinvigintillion,
two hundred forty five quattuorvigintillion,
eight hundred nineteen trevigintillion,
three hundred forty eight dovigintillion,
eight hundred twenty four unvigintillion,
sixty four vigintillion,
seven hundred eighty three novemdecillion,
five hundred eighty five octodecillion,
six hundred ninety two septendecillion,
nine hundred twenty four sexdecillion,
eight hundred eighty one quindecillion,
twenty one quattuordecillion,
nine hundred seventy eight tredecillion,
three hundred thirty two dodecillion,
nine hundred seventy four undecillion,
nine hundred forty nine decillion,
nine hundred six nonillion,
one hundred twenty two octillion,
six hundred sixty four septillion,
four hundred twenty one sextillion,
three hundred seventy six quintillion,
thirty four quadrillion,
six hundred eighty seven trillion,
eight hundred fifteen billion,
three hundred fifty million,
four hundred eighty four thousand,
nine hundred ninety one
<!-- prime.html content stops on the previous line above -->
</PRE></BLOCKQUOTE>
<HR>
<!-- Start Digit-Mersenne-Content-Below.html -->
<H3><A NAME="useful">Some useful links</A></H3>
<H4>Large prime numbers</H4>
<UL>
<LI> The
<A HREF="http://www.isthe.com/chongo/tech/math/prime/mersenne.html#largest">Largest
known prime</A>
<LI>
Known Mersenne Prime
<A HREF="http://www.isthe.com/chongo/tech/math/prime/mersenne.html">Digits and their English names</A>
<LI>
Lists of
<A HREF="http://primes.utm.edu/largest.html">large
prime numbers</A>
</UL>
<P>
<H4>Definitions and theory</H4>
<UL>
<LI>
General
<A HREF="http://primes.utm.edu/mersenne/">Mersenne prime</A>
information
<LI> Definition of a
<A HREF="http://primes.utm.edu/glossary/page.php?sort=Prime">Prime</A>
<LI> Definition of a
<A HREF="http://primes.utm.edu/glossary/page.php?sort=MersenneNumber">Mersenne
number</A>
<LI> Definition of a
<A HREF="http://primes.utm.edu/glossary/page.php?sort=Mersennes">Mersenne
prime</A>
<LI>
<A HREF="http://primes.utm.edu/glossary/page.php?sort=MersennesConjecture">Mersenne's
conjecture</A>
<LI>
Methods to
<A HREF="http://primes.utm.edu/prove/">find primes or to
prove a large numbers primality</A>
<BR><BR>
<LI> <A HREF="http://www.isthe.com/chongo/tech/math/prime/prime-tutorial/index.html">How
to find a new largest known prime</A> - A
<A HREF="http://www.eurobsdcon.org">EuroBSDcon</A> 2013 tutorial
</UL>
<H4>Searching for Mersenne primes</H4>
<UL>
<LI> Mersenne prime
<A HREF="http://primes.utm.edu/mersenne/index.html#known">discovery history</A>
<LI>
<A HREF="http://www.mersenne.org/">Great Internet Mersenne Prime Search</A>
<LI>
GIMPS
<A HREF="http://www.mersenne.org/status.htm">search status</A>
</UL>
<P>
<H4>EFF Cooperative Computing Awards</H4>
<UL>
<LI> <A HREF="https://www.eff.org/awards/coop">Cooperative Computing Awards</A> home page
<LI> <A HREF="https://www.eff.org/awards/coop/rules">Rules</A> of the Cooperative Computing Awards
<LI> <A HREF="https://www.eff.org/awards/coop/rules#4F">Rule 4F</A>, a very <B>importart part</B> of the rules
<LI> <A HREF="https://www.eff.org/awards/coop/news">Recent News</A> from the Cooperative Computing Awards
<LI> <A HREF="https://www.eff.org/awards/coop/faq">Frequently Asked Questions</A> (FAQ) of the Cooperative Computing Awards
</UL>
<P>
<H4>Source code</H4>
<UL>
<LI>
<A HREF="http://www.isthe.com/chongo/tech/comp/calc/index.html">Calc</A>:
Computed the decimal value of this prime
<LI>
<A HREF="http://www.isthe.com/chongo/tech/math/number/number.html">Number</A>:
Computed the English name of this prime
<LI>
<A HREF="http://www.mersenne.org/freesoft.htm">GIMPS code</A>:
May be used to prove that this number was prime
</UL>
<P>
<H4>Other prime links</H4>
<UL>
<LI>
Dr. Caldwell's
<A HREF="http://primes.utm.edu/index.html">The Prime Pages</A>
<LI>
<A
HREF="http://primes.utm.edu/notes/13466917/index.html">Caldwell's
article on the discovery of</A> 2<SUP>13466917</SUP>-1
<LI>
Landon Curt
<A HREF="http://www.isthe.com/chongo/tech/math/prime/index.html">Noll's prime number</A> work
<LI>
The <A HREF="http://www.isthe.com/chongo/tech/math/prime/amdahl6.html">Amdahl 6</A> group
<LI>
<A HREF="http://primes.utm.edu/curios/home.php">Prime Curios!</A> (a fun site!)
<LI>
Landon Curt Noll's table of
<A HREF="http://www.isthe.com/chongo/tech/math/prime/curios.html">curious numbers related to primes</A>
<LI> English names of large numbers -
<A HREF="http://www.isthe.com/chongo/tech/math/number/howhigh.html">How high
can you count?</A>
</UL>
<!-- Stop Digit-Mersenne-Content-Below.html -->
<!-- Stop web content -->
<!-- Start MainTable-Bottom.html -->
<BR>
<!-- Stop MainTable-Bottom.html -->
<HR>
<!-- Start google/728x15Link-Digit.html -->
<script type="text/javascript"><!--
google_ad_client = "ca-pub-4724738361590294";
/* 728x15Link Digit v1 */
google_ad_slot = "4493870966";
google_ad_width = 728;
google_ad_height = 15;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
<!-- Stop google/728x15Link-Digit.html -->
<!-- Start AdTrailer-Above.html -->
<BR>
<TABLE BORDER="1">
<TR>
<!-- Stop AdTrailer-Above.html -->
<!-- Start Ad-BL-Above.html -->
<TD>
<!-- Stop Ad-BL-Above.html -->
<!-- Start google/336x280-Digit.html -->
<script type="text/javascript"><!--
google_ad_client = "ca-pub-4724738361590294";
/* 336x280 Digit v1 */
google_ad_slot = "7409239049";
google_ad_width = 336;
google_ad_height = 280;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
<!-- Stop google/336x280-Digit.html -->
<!-- Start Ad-BL-Below.html -->
</TD>
<!-- Stop Ad-BL-Below.html -->
<!-- Start Ad-BC-Above.html -->
<TD>
<!-- Stop Ad-BC-Above.html -->
<!-- Start google/336x280-Digit.html -->
<script type="text/javascript"><!--
google_ad_client = "ca-pub-4724738361590294";
/* 336x280 Digit v1 */
google_ad_slot = "7409239049";
google_ad_width = 336;
google_ad_height = 280;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
<!-- Stop google/336x280-Digit.html -->
<!-- Start Ad-BC-Below.html -->
</TD>
<!-- Stop Ad-BC-Below.html -->
<!-- Start AdTrailer-Below.html -->
</TR>
</TABLE>
<!-- Stop AdTrailer-Below.html -->
<!-- Start Footer-Above.html -->
<TABLE CELLPADDING="5">
<TR>
<!-- Stop Footer-Above.html -->
<!-- Start Digit-WWW-validator.html -->
<TD>
<!-- Start Digit-HTML-4.01-Transitional.html -->
<p>
<a href="http://validator.w3.org/check/referer"><img border="0"
src="/png/valid-html401.png"
alt="Valid HTML 4.01!" height="31" width="88"></a>
</p>
<!-- Stop Digit-HTML-4.01-Transitional.html -->
</TD>
<!-- Stop Digit-WWW-validator.html -->
<!-- Start Digit-Footer-Author-Above.html -->
<TD>
<A HREF="http://www.isthe.com/copyright.html">© 1994-2013</A>
<I>Landon Curt Noll</I><BR>
<A HREF="http://www.isthe.com/chongo/index.html">chongo</A> (was here)
<A HREF="http://www.isthe.com/chongo/odd/bat.html"><B>/\oo/\</B></A><BR>
<!-- Stop Digit-Footer-Author-Above.html -->
<!-- Start Footer-Author-Below.html -->
</TD>
<!-- Stop Footer-Author-Below.html -->
<!-- Start Footer-Below.html -->
</TR>
</TABLE>
<!-- Stop Footer-Below.html -->
<!-- Start HTML-Below.html -->
</BODY>
</HTML>
<!-- Stop HTML-Below.html -->
| lcn2/mersenne-english-name | m4253/prime.html | HTML | mit | 27,030 |
<script>window.pathPrefix="../../";</script><script>window.pathPrefix="../../";</script><script>window.pathPrefix="../../";</script><script>window.pathPrefix="../../";</script><script>window.pathPrefix="../../";</script><script>window.pathPrefix="../../";</script><!DOCTYPE html>
<html lang="en"></html>
<head><meta name="generator" content="Hexo 3.9.0">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<link href="../../images/favicon.png" rel="shortcut icon" type="image/png">
<title>DJI Mobile SDK Documentation
</title><link rel="stylesheet" href="../../stylesheets/doc-vendor.css"><link rel="stylesheet" href="../../stylesheets/doc-app.css">
</head>
<body>
<nav id="site-header" class="site-header navbar">
<div class="container">
<div class="navbar-header"><a href="/" class="logo"><img src="../../images/dji-logo@2x.png">Developer</a></div>
<div id="header-navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="/mobile-sdk">Mobile SDK</a></li>
<li><a href="/ux-sdk">UX SDK</a></li>
<li><a href="/onboard-sdk">Onboard SDK</a></li>
<li><a href="/payload-sdk">Payload SDK</a></li>
<li><a href="/windows-sdk">Windows SDK</a></li>
</ul>
<ul v-cloak v-show="!loggedIn" class="nav navbar-nav navbar-right nav-user">
<li><a href="/login">Login</a></li>
<li><a href="/register" class="head-cta">Register</a></li>
</ul>
<ul v-cloak v-show="loggedIn" class="nav navbar-nav navbar-right nav-user">
<li class="hovedown"><a href="javascript:void(0);" class="hovedown-toggle"><i class="fa fa-user"></i></a>
<ul class="hovedown-menu hovedown-menu-right">
<li><a href="/user">User Center</a></li>
<li><a href="javascript:void(0);" v-on="click: logout">Logout</a></li>
</ul>
</li>
</ul>
</div>
</div>
</nav>
<div data-offset-top="60" data-spy="affix" class="sub-nav">
<div class="container">
<h1 class="logo">Mobile SDK</h1>
<nav><a href="/mobile-sdk">Overview</a><a href="/mobile-sdk/documentation">Documentation</a><span class="active hovedown menu-item">API Reference<span class="caret"></span>
<ul class="hovedown-menu">
<li><a href="/api-reference/ios-api/index.html">IOS SDK</a></li>
<li><a href="/api-reference/android-api/index.html">Android SDK</a></li>
<li><a href="/api-reference/ios-uilib-api/index.html">IOS UX SDK</a></li>
<li><a href="/api-reference/android-uilib-api/index.html">Android UX SDK</a></li>
</ul></span><a href="/mobile-sdk/downloads">Downloads</a><a href="/mobile-sdk/support">Support</a>
</nav>
</div>
</div>
<div id="documentation-page" class="documentation-page">
<div class="container">
<div class="site-sidebar">
<div class="searcher">
<div id="panel" class="panel panel_tree">
<div class="header">
<div class="search-con">
<label id="search-label" for="search">
</label>
<input id="search" type="text" placeholder="Search" autosave="searchdoc" results="10" autocomplete="off">
<div class="search-icon"></div><a class="clean-search glyphicon glyphicon-remove-circle"></a>
</div>
</div>
<div class="tree">
<ul></ul>
</div>
<div class="result">
<ul></ul>
</div>
</div>
</div>
<div class="nav scrollable js-tree-menu">
<dl>
<dt>Manager Classes
</dt>
<dd><a data-href="../SDKManager/DJISDKManager.html" class="sub-toggle">DJISDKManager<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../SDKManager/DJISDKManager_DJISDKManagerCallbackInterface.html">SDKManagerCallback</a>
</dd>
<dd><a data-href="../SDKManager/DJIBluetoothProductConnector.html" class="sub-toggle">BluetoothProductConnector<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../SDKManager/DJIBluetoothProductConnector_BluetoothProductConnectorListenerInterface.html">BluetoothDevicesListCallback</a>
</dd>
<dd><a href="../SDKManager/DJIBluetoothProductConnector_DJIBluetoothDevice.html">BluetoothDevice</a>
</dd>
</ul>
</dd>
<dd><a href="../SDKManager/DJISDKManager_DJISDKInitEvent.html">DJISDKInitEvent</a>
</dd>
</ul>
</dd>
<dd><a data-href="../KeyManager/DJIKeyManager.html" class="sub-toggle">KeyManager<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a data-href="../KeyManager/DJIKey.html" class="sub-toggle">DJIKey<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../KeyManager/DJIBatteryKey.html">BatteryKey</a>
</dd>
<dd><a href="../KeyManager/DJICameraKey.html">CameraKey</a>
</dd>
<dd><a href="../KeyManager/DJIFlightControllerKey.html">FlightControllerKey</a>
</dd>
<dd><a href="../KeyManager/DJIRadarKey.html">RadarKey</a>
</dd>
<dd><a href="../KeyManager/DJIPayloadKey.html">PayloadKey</a>
</dd>
<dd><a href="../KeyManager/DJIGimbalKey.html">GimbalKey</a>
</dd>
<dd><a href="../KeyManager/DJIProductKey.html">ProductKey</a>
</dd>
<dd><a href="../KeyManager/DJIRemoteControllerKey.html">RemoteControllerKey</a>
</dd>
<dd><a href="../KeyManager/DJIHandheldControllerKey.html">HandheldControllerKey</a>
</dd>
<dd><a href="../KeyManager/DJIAirLinkKey.html">AirLinkKey</a>
</dd>
<dd><a href="../KeyManager/DJIAccessoryKey.html">AccessoryAggregationKey</a>
</dd>
<dd><a href="../KeyManager/DJILidarKey.html">LidarKey</a>
</dd>
<dd><a href="../KeyManager/DJIRTKBaseStationKey.html">BaseStationKey</a>
</dd>
<dd><a href="../KeyManager/DJIDiagnosticsKey.html">DiagnosticsKey</a>
</dd>
</ul>
</dd>
<dd><a href="../KeyManager/DJIKeyManager_GetCallback_Interface.html">GetCallback</a>
</dd>
<dd><a href="../KeyManager/DJIKeyManager_SetCallback_Interface.html">SetCallback</a>
</dd>
<dd><a href="../KeyManager/DJIKeyManager_ActionCallback_Interface.html">ActionCallback</a>
</dd>
<dd><a href="../KeyManager/DJIKeyManager_DJIKeyedListenerUpdateBlock.html">KeyListener</a>
</dd>
</ul>
</dd>
<dd><a data-href="../FlyZoneManager/DJIFlyZoneManager.html" class="sub-toggle">FlyZoneManager<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../FlyZoneManager/DJIFlyZoneManager_DJIUnlockedZoneGroup.html">UnlockedZoneGroup</a>
</dd>
<dd><a data-href="../FlyZoneManager/DJIFlyZoneManager_DJIFlyZoneInformation.html" class="sub-toggle">FlyZoneInformation<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../FlyZoneManager/DJIFlyZoneManager_DJISubFlyZoneInformation.html">SubFlyZoneInformation</a>
</dd>
</ul>
</dd>
<dd><a href="../FlyZoneManager/DJIFlyZoneManager_flyForbidStatusUpdatedCallbackInterface.html">Callback</a>
</dd>
<dd><a href="../FlyZoneManager/DJIFlyZoneManager_basicDatabaseUpgradeProgressUpdatedCallbackInterface.html">BasicDatabaseUpgradeProgressUpdatedCallback</a>
</dd>
<dd><a href="../FlyZoneManager/DJIFlyZoneManager_DJIIndividualUnlockZone.html">CustomUnlockZone</a>
</dd>
<dd><a href="../FlyZoneManager/DJIFlyZoneManager_DJIFlyingSafetyWarningInformation.html">FlySafeWarningInformation</a>
</dd>
<dd><a href="../FlyZoneManager/DJIFlyZoneManager_DJIFlyingSafetySeriousWarningInformation.html">FlySafeSeriousWarningInformation</a>
</dd>
<dd><a href="../FlyZoneManager/DJIFlyZoneManager_DJIFlyingSafetyTip.html">FlySafeTipInformation</a>
</dd>
<dd><a href="../FlyZoneManager/DJIFlyZoneManager_DJIFlySafeReturnToHomeInformation.html">FlySafeReturnToHomeInformation</a>
</dd>
<dd><a data-href="../FlyZoneManager/DJIFlyZoneManager_DJIFlySafeNotification.html" class="sub-toggle">FlySafeNotification<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../FlyZoneManager/DJIFlyZoneManager_DJIFlySafeNotificationCallbackInterface.html">Callback</a>
</dd>
</ul>
</dd>
</ul>
</dd>
<dd><a data-href="../AppActivationManager/DJIAppActivationManager.html" class="sub-toggle">AppActivationManager<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../AppActivationManager/DJIAppActivationManager_AircraftBindingStateListenerInterface.html">AircraftBindingStateListener</a>
</dd>
<dd><a href="../AppActivationManager/DJIAppActivationManager_AppActivationStateListenerInterface.html">AppActivationStateListener</a>
</dd>
</ul>
</dd>
<dd><a data-href="../UserAccountManager/DJIUserAccountManager.html" class="sub-toggle">UserAccountManager<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../UserAccountManager/DJIUserAccountManager_UserAccountStateChangeListenerInterface.html">UserAccountStateChangeListener</a>
</dd>
<dd><a href="../UserAccountManager/DJIUserAccountManager_UserAccountInformation.html">UserAccountInformation</a>
</dd>
</ul>
</dd>
<dd><a href="../DataProtectionManager/DJIDataProtectionManager.html">DataProtectionManager</a>
</dd>
<dd><a data-href="../LDMManager/DJILDMManager.html" class="sub-toggle">LDMManager<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a data-href="../LDMManager/DJILDMManager_LDMModule.html" class="sub-toggle">LDMModule<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../LDMManager/DJILDMManager_LDMModule_Builder.html">Builder</a>
</dd>
</ul>
</dd>
<dd><a href="../LDMManager/DJILDMManager_LDMCallbackInterface.html">LDMCallback</a>
</dd>
</ul>
</dd>
<dd><a data-href="../UTMISSManager/DJIUTMISSManager.html" class="sub-toggle">UTMISSManager<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../UTMISSManager/DJIUTMISSManager_UTMISSFlightDataUpdatedUploadStatusCallbackInterface.html">Callback</a>
</dd>
<dd><a href="../UTMISSManager/DJIUTMISSManager_DJIUTMISSParam.html">UTMISSParam</a>
</dd>
</ul>
</dd>
<dd><a data-href="../FlightHubManager/DJIFlightHubManager.html" class="sub-toggle">FlightHubManager<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../FlightHubManager/DJIFlightHubManager_DJIFlightHubOnlineDevice.html">OnlineDevice</a>
</dd>
<dd><a href="../FlightHubManager/DJIFlightHubManager_DJIFlightHubBoundDevice.html">BoundDevice</a>
</dd>
<dd><a href="../FlightHubManager/DJIFlightHubManager_DJIFlightHubUser.html">User</a>
</dd>
<dd><a href="../FlightHubManager/DJIFlightHubManager_DJIFlightHubTeam.html">Team</a>
</dd>
<dd><a href="../FlightHubManager/DJIFlightHubManager_DJIFlightHubUpStream.html">UpStream</a>
</dd>
<dd><a href="../FlightHubManager/DJIFlightHubManager_DJIFlightHubLiveStream.html">LiveStream</a>
</dd>
<dd><a href="../FlightHubManager/DJIFlightHubManager_DJIFlightHubFlightPathNode.html">FlightPathNode</a>
</dd>
<dd><a href="../FlightHubManager/DJIFlightHubManager_DJIFlightHubFlightHistoricalDetail.html">FlightHistoricalDetail</a>
</dd>
<dd><a href="../FlightHubManager/DJIFlightHubManager_DJIFlightHubStatistics.html">Statistics</a>
</dd>
<dd><a href="../FlightHubManager/DJIFlightHubManager_DJIFlightHubHistoricalFlight.html">HistoricalFlight</a>
</dd>
<dd><a href="../FlightHubManager/DJIFlightHubManager_DJIFlightHubRealTimeFlightData.html">RealTimeFlightData</a>
</dd>
<dd><a href="../FlightHubManager/DJIFlightHubManager_UpdatedUploadStateCallbackInterface.html">UpdatedUploadStateCallback</a>
</dd>
<dd><a href="../FlightHubManager/DJIFlightController_DJIGravityCenterStateInterfaceCallback.html">Callback</a>
</dd>
</ul>
</dd>
<dd><a data-href="../LiveStreamManager/DJILiveStreamManager.html" class="sub-toggle">LiveStreamManager<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../LiveStreamManager/DJILiveStreamManager_OnLiveErrorStatusListener.html">OnLiveErrorStatusListener</a>
</dd>
<dd><a href="../LiveStreamManager/DJILiveStreamManager_LiveVideoResolution.html">LiveVideoResolution</a>
</dd>
</ul>
</dd>
<dd><a data-href="../Upgrade/DJIUpgradeManager.html" class="sub-toggle">UpgradeManager<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a data-href="../Upgrade/DJIUpgradeManager_DJIUpgradeComponent.html" class="sub-toggle">UpgradeComponent<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../Upgrade/DJIUpgradeManager_DJIUpgradeComponent_UpgradeFirmwareListenerInterface.html">UpgradeFirmwareListener</a>
</dd>
<dd><a href="../Upgrade/DJIUpgradeManager_DJIUpgradeComponent_DJIFirmwareUpgradeProgress.html">FirmwareUpgradeProgress</a>
</dd>
<dd><a href="../Upgrade/DJIUpgradeManager_DJIUpgradeComponent_DJIFirmwareInformation.html">FirmwareInformation</a>
</dd>
</ul>
</dd>
<dd><a href="../Upgrade/DJIUpgradeManager_UpgradeComponentChangeListener.html">UpgradeComponentChangeListener</a>
</dd>
</ul>
</dd>
</dl>
<dl>
<dt>Base Classes
</dt>
<dd><a data-href="../../BaseClasses/DJIBaseProduct.html" class="sub-toggle">BaseProduct<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a data-href="../../BaseClasses/DJIVideoFeeder.html" class="sub-toggle">VideoFeeder<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../../BaseClasses/DJIVideoFeeder_VideoDataListenerInterface.html">VideoDataListener</a>
</dd>
<dd><a href="../../BaseClasses/DJIVideoFeeder_VideoActiveStatusListenerInterface.html">VideoActiveStatusListener</a>
</dd>
<dd><a data-href="../../BaseClasses/DJIVideoFeeder_DJIVideoFeed.html" class="sub-toggle">VideoFeed<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../../BaseClasses/DJIVideoFeeder_DJIVideoFeed_DJIVideoFeedPhysicalSourceCallbackInterface.html">Callback</a>
</dd>
</ul>
</dd>
<dd><a href="../../BaseClasses/DJIVideoFeeder_PhysicalSourceListener.html">PhysicalSourceListener</a>
</dd>
</ul>
</dd>
</ul>
</dd>
<dd><a data-href="../BaseComponent/DJIBaseComponent.html" class="sub-toggle">BaseComponent<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../BaseComponent/DJIBaseComponent_DJIComponentListenerInterface.html">ComponentListener</a>
</dd>
</ul>
</dd>
</dl>
<dl>
<dt>Product Classes
</dt>
<dd><a href="../../Products/Aircraft/DJIAircraft.html">Aircraft</a>
</dd>
<dd><a href="../../Products/Handheld/DJIHandheld.html">HandHeld</a>
</dd>
</dl>
<dl>
<dt>Component Classes
</dt>
<dd><a data-href="../FlightController/DJIFlightController.html" class="sub-toggle">FlightController<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../FlightController/DJIFlightController_ReceivedDataFromExternalDeviceCallbackInterface.html">OnboardSDKDeviceDataCallback</a>
</dd>
<dd><a data-href="../FlightController/DJIFlightController_DJIFlightControllerCurrentState.html" class="sub-toggle">FlightControllerState<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../FlightController/DJIFlightController_UpdateSystemStateCallbackInterface.html">Callback</a>
</dd>
<dd><a href="../FlightController/DJIFlightController_DJIAttitude.html">Attitude</a>
</dd>
<dd><a href="../FlightController/DJIFlightController_DJILocationCoordinate3D.html">LocationCoordinate3D</a>
</dd>
<dd><a href="../FlightController/DJIFlightController_DJIFlightControllerCurrentState_DJIFlightControllerSmartGoHomeStatus.html">GoHomeAssessment</a>
</dd>
</ul>
</dd>
<dd><a href="../FlightController/DJIFlightController_DJIGravityCenterState.html">GravityCenterState</a>
</dd>
<dd><a href="../Compass/DJICompass.html">Compass</a>
</dd>
<dd><a data-href="../RTK/DJIRTK.html" class="sub-toggle">RTK<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../RTK/DJIRTK_DJIRTKBaseStationInformation.html">RTKBaseStationInformation</a>
</dd>
<dd><a href="../RTK/DJIRTK_RTKBaseStationListCallbackInterface.html">RTKBaseStationListCallback</a>
</dd>
<dd><a href="../RTK/DJIRTK_RTKConnectionStateWithBaseStationReferenceSourceCallbackInterface.html">RTKConnectionStateWithBaseStationReferenceSourceCallback</a>
</dd>
<dd><a data-href="../RTK/DJIRTK_DJIRTKState.html" class="sub-toggle">RTKState<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../RTK/DJIRTK_updateRtkStateCallbackInterface.html">Callback</a>
</dd>
</ul>
</dd>
<dd><a data-href="../RTK/DJIRTKNetworkServiceProvider.html" class="sub-toggle">RTKNetworkServiceProvider<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a data-href="../RTK/DJIRTKNetworkServiceProvider_DJIRTKNetworkServiceState.html" class="sub-toggle">NetworkServiceState<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../RTK/DJIRTKNetworkServiceProvider_DJIRTKNetworkServiceState_callback.html">Callback</a>
</dd>
</ul>
</dd>
<dd><a href="../RTK/DJIRTKNetworkServiceProvider_DJIRTKNetworkServicePlan.html">NetworkServicePlan</a>
</dd>
<dd><a data-href="../RTK/DJIRTKNetworkServiceProvider_DJIRTKNetworkServicePlansState.html" class="sub-toggle">NetworkServicePlansState<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../RTK/DJIRTKNetworkServiceProvider_DJIRTKNetworkServicePlansState_Builder.html">Builder</a>
</dd>
</ul>
</dd>
<dd><a data-href="../RTK/DJIRTKNetworkServiceProvider_DJIRTKNetworkServiceSettings.html" class="sub-toggle">NetworkServiceSettings<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../RTK/DJIRTKNetworkServiceProvider_DJIRTKNetworkServiceSettings_Builder.html">Builder</a>
</dd>
</ul>
</dd>
</ul>
</dd>
<dd><a href="../RTK/DJIRTK_DJIRTKReceiverInfo.html">ReceiverInfo</a>
</dd>
<dd><a href="../RTK/DJIRTK_DJILocationStandardDeviation.html">LocationStandardDeviation</a>
</dd>
</ul>
</dd>
<dd><a href="../LandingGear/DJILandingGear.html">LandingGear</a>
</dd>
<dd><a data-href="../IntelligentFlightAssistant/DJIIntelligentFlightAssistant.html" class="sub-toggle">FlightAssistant<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../IntelligentFlightAssistant/DJIIntelligentFlightAssistant_updateVisionFaceAwareStateCallbackInterface.html">Callback</a>
</dd>
<dd><a href="../IntelligentFlightAssistant/DJIIntelligentFlightAssistant_updateVisionPalmControlStateCallbackInterface.html">Callback</a>
</dd>
<dd><a href="../IntelligentFlightAssistant/DJIIntelligentFlightAssistant_updateVisionSmartCaptureStateCallbackInterface.html">Callback</a>
</dd>
<dd><a data-href="../VisionDetectionState/DJIVisionDetectionState.html" class="sub-toggle">VisionDetectionState<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../VisionDetectionState/DJIIntelligentFlightAssistant_visionDetectionStateUpdatedCallbackInterface.html">Callback</a>
</dd>
<dd><a href="../VisionDetectionState/DJIVisionDetectionState_DJIVisionDetectionSector.html">ObstacleDetectionSector</a>
</dd>
</ul>
</dd>
<dd><a data-href="../IntelligentFlightAssistant/DJIVisionDetectionState_DJIVisionControlState.html" class="sub-toggle">VisionControlState<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../IntelligentFlightAssistant/DJIIntelligentFlightAssistant_UpdateVisionControlStateCallbackInterface.html">Callback</a>
</dd>
</ul>
</dd>
<dd><a href="../IntelligentFlightAssistant/DJISmartCaptureState.html">SmartCaptureState</a>
</dd>
<dd><a href="../IntelligentFlightAssistant/DJIFlightAssistantPerceptionState.html">PerceptionInformation</a>
</dd>
<dd><a href="../IntelligentFlightAssistant/DJIFlightAssistant_ObstacleAvoidanceSensorState.html">ObstacleAvoidanceSensorState</a>
</dd>
</ul>
</dd>
<dd><a data-href="../Simulator/DJIAccessLocker.html" class="sub-toggle">AccessLocker<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a data-href="../Simulator/DJIAccessLocker_DJIAccessLockerFormattingState.html" class="sub-toggle">FormattingState<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../Simulator/DJIAccessLocker_DJIAccessLockerFormattingState_callbackInterface.html">Callback</a>
</dd>
</ul>
</dd>
<dd><a href="../Simulator/DJIAccessLocker_DJIAccessLockerUserAccountInfo.html">UserAccountInfo</a>
</dd>
</ul>
</dd>
<dd><a href="../Radar/DJIRadar.html">Radar</a>
</dd>
<dd><a data-href="../Simulator/DJISimulator.html" class="sub-toggle">Simulator<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../Simulator/DJISimulator_DJISimulatorInitializationData.html">InitializationData</a>
</dd>
<dd><a data-href="../Simulator/DJISimulator_DJISimulatorState.html" class="sub-toggle">SimulatorState<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../Simulator/DJISimulator_UpdatedSimulatorStateDataCallbackInterface.html">Callback</a>
</dd>
</ul>
</dd>
</ul>
</dd>
<dd><a data-href="../IMUState/DJIIMUState.html" class="sub-toggle">IMUState<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../IMUState/DJIFlightController_IMUStateChangedCallbackInterface.html">Callback</a>
</dd>
<dd><a href="../IMUState/DJIIMUState_DJIIMUMultiOrientationCalibrationHint.html">MultipleOrientationCalibrationHint</a>
</dd>
</ul>
</dd>
<dd><a href="../FlightController/DJIFlightController_DJIVirtualStickFlightControlData.html">FlightControlData</a>
</dd>
<dd><a href="../FlightController/DJIFlightController_DJILocationCoordinate2D.html">LocationCoordinate2D</a>
</dd>
<dd><a data-href="../FlightController/DJIAirSenseSystemInformation.html" class="sub-toggle">AirSenseSystemInformation<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../FlightController/DJIAirSenseSystemInformation_callbackInterface.html">Callback</a>
</dd>
<dd><a data-href="../FlightController/DJIAirSenseAirplaneState.html" class="sub-toggle">AirSenseAirplaneState<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../FlightController/DJIAirSenseAirplaneState_callbackInterface.html">Callback</a>
</dd>
</ul>
</dd>
</ul>
</dd>
<dd><a data-href="../FlightController/DJIFlightController_DJIFlightControllerLEDsSettings.html" class="sub-toggle">LEDsSettings<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../FlightController/DJIFlightController_DJIFlightControllerLEDsSettings_Builder.html">Builder</a>
</dd>
</ul>
</dd>
<dd><a href="../FlightController/DJIFlightController_Limits.html">Limits</a>
</dd>
</ul>
</dd>
<dd><a data-href="../Battery/DJIBattery.html" class="sub-toggle">Battery<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a data-href="../Battery/DJIBattery_AggregationState.html" class="sub-toggle">AggregationState<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../Battery/DJIBattery_Aggregation_StateUpdateCallbackInterface.html">Callback</a>
</dd>
<dd><a href="../Battery/DJIBattery_BatteryOverview.html">BatteryOverview</a>
</dd>
</ul>
</dd>
<dd><a data-href="../Battery/DJIBattery_BatteryState.html" class="sub-toggle">BatteryState<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../Battery/DJIBattery_StateUpdateCallbackInterface.html">Callback</a>
</dd>
</ul>
</dd>
<dd><a href="../Battery/DJIBattery_WarningRecord.html">WarningRecord</a>
</dd>
</ul>
</dd>
<dd><a data-href="../Camera/DJICamera.html" class="sub-toggle">Camera<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a data-href="../Camera/DJICamera_SuperResolutionInfo.html" class="sub-toggle">SuperResolutionInfo<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../Camera/DJICamera_SuperResolutionInfo_Callback.html">Callback</a>
</dd>
</ul>
</dd>
<dd><a href="../Camera/DJICamera_PinPoint.html">PinPoint</a>
</dd>
<dd><a href="../Camera/DJICamera_PinPointInfo.html">PinPointInfo</a>
</dd>
<dd><a href="../Camera/DJICamera_CalibrationCallback.html">CalibrationCallback</a>
</dd>
<dd><a href="../Camera/DJICamera_CameraGeneratedTimeLapsePreviewCallbackInterface.html">TimeLapsePreviewCallback</a>
</dd>
<dd><a href="../Camera/DJICamera_histogramUpdateCallbackInterface.html">HistogramCallback</a>
</dd>
<dd><a href="../Camera/DJICamera_TapZoomStateCallbackInterface.html">TapZoomStateCallback</a>
</dd>
<dd><a href="../Camera/DJICamera_TemperatureDataCallbackInterface.html">TemperatureDataCallback</a>
</dd>
<dd><a data-href="../Camera/DJICamera_DJICameraSystemState.html" class="sub-toggle">SystemState<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../Camera/DJICamera_CameraUpdatedSystemStateCallbackInterface.html">Callback</a>
</dd>
</ul>
</dd>
<dd><a data-href="../Camera/DJICamera_DJICameraLensState.html" class="sub-toggle">FocusState<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../Camera/DJICamera_CameraUpdatedLensStateCallbackInterface.html">Callback</a>
</dd>
</ul>
</dd>
<dd><a data-href="../Camera/DJICamera_DJICameraSDCardState.html" class="sub-toggle">StorageState<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../Camera/DJICamera_CameraUpdatedStorageStateCallbackInterface.html">Callback</a>
</dd>
</ul>
</dd>
<dd><a data-href="../Camera/DJICamera_DJICameraSSDState.html" class="sub-toggle">SSDState<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../Camera/DJICamera_CameraUpdatedSSDStateCallbackInterface.html">Callback</a>
</dd>
</ul>
</dd>
<dd><a data-href="../Camera/DJIMediaManager.html" class="sub-toggle">MediaManager<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../Camera/DJIMediaManager_updateVideoPlaybackStateCallbackInterface.html">VideoPlaybackStateListener</a>
</dd>
<dd><a href="../Camera/DJIMediaManager_CameraDownloadListenerInterface.html">DownloadListener<E></a>
</dd>
<dd><a href="../Camera/DJIMediaManager_FileListStateListener.html">FileListStateListener</a>
</dd>
<dd><a data-href="../Camera/DJIMediaManager_DJIMedia.html" class="sub-toggle">MediaFile<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../Camera/DJICamera_CameraGeneratedNewMediaFileCallbackInterface.html">Callback</a>
</dd>
<dd><a href="../Camera/DJIMediaManager_DJIMedia_DJIMediaFile.html">AudioMediaFile</a>
</dd>
</ul>
</dd>
<dd><a data-href="../Camera/DJIMediaManager_DJIMediaInfo.html" class="sub-toggle">MediaFileInfo<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../Camera/DJICamera_CamerNewGeneratedMediaFileInfoCallbackInterface.html">NewFileInfoCallback</a>
</dd>
</ul>
</dd>
<dd><a href="../Camera/DJIMediaManager_VideoPlayback_DJIMediaVideoPlaybackState.html">VideoPlaybackState</a>
</dd>
<dd><a data-href="../Camera/DJIMediaManager_FetchMediaTaskScheduler.html" class="sub-toggle">FetchMediaTaskScheduler<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a data-href="../Camera/DJIMediaManager_DJIFetchMediaTask.html" class="sub-toggle">FetchMediaTask<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../Camera/DJIMediaManager_DJIFetchMediaTask_CallbackInterface.html">Callback</a>
</dd>
</ul>
</dd>
</ul>
</dd>
</ul>
</dd>
<dd><a data-href="../Camera/DJIPlaybackManager.html" class="sub-toggle">PlaybackManager<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../Camera/DJIPlaybackManager_CameraFileDownloadCallbackInterface.html">FileDownloadCallback</a>
</dd>
<dd><a data-href="../Camera/DJIPlaybackManager_DJICameraPlaybackState.html" class="sub-toggle">PlaybackState<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../Camera/DJIPlaybackManager_DJICameraPlayBackStateCallBackInterface.html">CallBack</a>
</dd>
</ul>
</dd>
</ul>
</dd>
<dd><a data-href="../Camera/DJICamera_DJICameraParameters.html" class="sub-toggle">Capabilities<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../Camera/DJICamera_DJICameraParameters_ListenerInterface.html">DJICameraParametersListener</a>
</dd>
<dd><a href="../Camera/DJICamera_DJICameraParameters_MultispectralShutterSpeedRangeCallbackInterface.html">MultispectralShutterSpeedRangeCallback</a>
</dd>
<dd><a href="../Camera/DJICamera_DJICameraParameters_MultispectralExposureCompensationRangeCallbackInterface.html">MultispectralExposureCompensationRangeCallback</a>
</dd>
</ul>
</dd>
<dd><a data-href="../Camera/DJICamera_DJICameraSettingsDef.html" class="sub-toggle">SettingsDefinitions<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a data-href="../Camera/DJICamera_DJICameraExposureParameters.html" class="sub-toggle">ExposureSettings<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../Camera/DJICamera_CameraUpdatedCurrentExposureValuesCallbackInterface.html">Callback</a>
</dd>
</ul>
</dd>
<dd><a href="../Camera/DJICamera_DJICameraOpticalZoomSpec.html">OpticalZoomSpec</a>
</dd>
<dd><a href="../Camera/DJICamera_DJICameraHybridZoomSpec.html">HybridZoomSpec</a>
</dd>
<dd><a href="../Camera/DJICamera_DJICameraPhotoIntervalParam.html">PhotoTimeIntervalSettings</a>
</dd>
<dd><a href="../Camera/DJICamera_DJICameraPictureStylePreset.html">PictureStylePreset</a>
</dd>
<dd><a href="../Camera/DJICamera_DJICameraThermalProfile.html">ThermalProfile</a>
</dd>
<dd><a data-href="../Camera/DJICamera_DJICameraThermalAreaTemperatureAggregations.html" class="sub-toggle">ThermalAreaTemperatureAggregations<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../Camera/DJICamera_ThermalCameraAreaTemperatureAggregationsUpdatedCallbackInterface.html">Callback</a>
</dd>
</ul>
</dd>
<dd><a data-href="../Camera/DJICamera_DJICameraThermalExternalSceneSettings.html" class="sub-toggle">ThermalExternalSceneSettings<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../Camera/DJICamera_ThermalCameraExternalSceneSettingsUpdatedCallbackInterface.html">Callback</a>
</dd>
</ul>
</dd>
</ul>
</dd>
<dd><a href="../Camera/DJICamera_DJICameraWhiteBalanceInterface.html">WhiteBalance</a>
</dd>
<dd><a href="../Camera/DJICamera_DJICameraSSDClipFileNameInterface.html">SSDClipFileName</a>
</dd>
<dd><a href="../Camera/DJICamera_DJICameraOriginalPhotoSettings.html">OriginalPhotoSettings</a>
</dd>
<dd><a data-href="../Camera/DJICamera_DJICameraMultispectralStorageSettings.html" class="sub-toggle">MultispectralStoragePhotoSettings<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../Camera/DJICamera_DJICameraMultispectralStorageSettings_StoragePhotoCamerasParamBuilder.html">StoragePhotoCamerasParamBuilder</a>
</dd>
</ul>
</dd>
<dd><a data-href="../Camera/DJICamera_DJICameraMultispectralExposureState.html" class="sub-toggle">MultispectralExposureState<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../Camera/DJICamera_DJICameraMultispectralExposureStateCallbackInterface.html">Callback</a>
</dd>
</ul>
</dd>
<dd><a href="../Camera/DJICamera_DJICameraWatermarkSettings.html">WatermarkSettings</a>
</dd>
<dd><a data-href="../Camera/DJICamera_DJICameraLaserMeasureInformation.html" class="sub-toggle">LaserMeasureInformation<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../Camera/DJICamera_DJICameraLaserMeasureInformation_CallbackInterface.html">Callback</a>
</dd>
</ul>
</dd>
<dd><a href="../Camera/DJICamera_DJICameraFocusAssistantSettings.html">FocusAssistantSettings</a>
</dd>
<dd><a href="../Camera/DJICamera_DJICameraPhotoTimeLapseSettings.html">PhotoTimeLapseSettings</a>
</dd>
<dd><a href="../Camera/DJICamera_DJICameraVideoResolutionAndFrameRate.html">ResolutionAndFrameRate</a>
</dd>
<dd><a href="../Camera/DJICamera_DJICameraStreamSettings.html">CameraStreamSettings</a>
</dd>
<dd><a href="../Camera/DJICamera_ColorWaveformSettings.html">ColorWaveformSettings</a>
</dd>
<dd><a href="../Camera/DJICamera_StabilizationState.html">StabilizationState</a>
</dd>
<dd><a href="../Camera/DJICamera_CameraPeakThreshold.html">CameraPeakThreshold</a>
</dd>
<dd><a data-href="../Camera/DJICamera_DJILens.html" class="sub-toggle">Lens<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../Camera/DJICamera_DJILens_TapZoomStateCallbackInterface.html">TapZoomStateCallback</a>
</dd>
<dd><a href="../Camera/DJICamera_DJILens_TemperatureDataCallbackInterface.html">TemperatureDataCallback</a>
</dd>
<dd><a href="../Camera/DJICamera_DJILens_ThermalGlobalTemperatureCallback.html">ThermalGlobalTemperatureCallback</a>
</dd>
<dd><a data-href="../Camera/DJICamera_DJILens_LensCapabilities.html" class="sub-toggle">LensCapabilities<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../Camera/DJILens_DJILensParameters_ListenerInterface.html">DJILensParametersListener</a>
</dd>
<dd><a href="../Camera/DJICamera_DJILens_ThermalGainModeTemperatureRangeCallback.html">ThermalGainModeTemperatureRangeCallback</a>
</dd>
</ul>
</dd>
</ul>
</dd>
</ul>
</dd>
<dd><a data-href="../Gimbal/DJIGimbal.html" class="sub-toggle">Gimbal<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../Gimbal/DJIGimbal_GimbalState.html">GimbalState</a>
</dd>
<dd><a href="../Gimbal/DJIGimbal_movementSettingsState.html">MovementSettings</a>
</dd>
<dd><a href="../Gimbal/DJIGimbal_attitude.html">Attitude</a>
</dd>
<dd><a href="../Gimbal/DJIGimbal_stateUpdateCallbackInterface.html">Callback</a>
</dd>
<dd><a href="../Gimbal/DJIGimbal_movementSettingsStateUpdateCallbackInterface.html">Callback</a>
</dd>
<dd><a href="../Gimbal/DJIGimbal_batteryRemainingEnergyUpdateCallbackInterface.html">BatteryChargeRemainingCallback</a>
</dd>
<dd><a data-href="../Gimbal/DJIGimbal_DJIGimbalRotation.html" class="sub-toggle">Rotation<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../Gimbal/DJIGimbal_DJIGimbalRotation_Constructor.html">Builder</a>
</dd>
</ul>
</dd>
<dd><a href="../Gimbal/DJIGimbal_DJIMultiGimbalConnectionWorkingStatus.html">MultiGimbalConnectionWorkingStatus</a>
</dd>
<dd><a data-href="../Gimbal/DJIGimbal_DJIGimbalBalanceDetectionState.html" class="sub-toggle">GimbalBalanceDetectionState<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../Gimbal/DJIGimbal_DJIGimbalBalanceDetectionState_callbackInterface.html">Callback</a>
</dd>
<dd><a href="../Gimbal/DJIGimbal_DJIGimbalDirectionState.html">DirectionState</a>
</dd>
</ul>
</dd>
<dd><a data-href="../Gimbal/DJIGimbal_DJIGimbalControlParametersAutoTuningState.html" class="sub-toggle">GimbalControlParametersAutoTuningState<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../Gimbal/DJIGimbal_DJIGimbalControlParametersAutoTuningState_CallbackInterface.html">Callback</a>
</dd>
</ul>
</dd>
<dd><a data-href="../Gimbal/DJIGimbal_DJIGimbalCoaxialityDetectionState.html" class="sub-toggle">GimbalCoaxialityDetectionState<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../Gimbal/DJIGimbal_DJIGimbalCoaxialityDetectionState_CallbackInterface.html">Callback</a>
</dd>
</ul>
</dd>
</ul>
</dd>
<dd><a data-href="../AirLink/DJIAirLink.html" class="sub-toggle">AirLink<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../AirLink/DJIAirlink_SignalQualityCallbackInterface.html">SignalQualityCallback</a>
</dd>
<dd><a href="../AirLink/DJIAirLink_CountryCodeCallbackInterface.html">CountryCodeCallback</a>
</dd>
<dd><a href="../AirLink/DJIAirLink_BaseStationSignalQualityUpdatedCallbackInterface.html">BaseStationSignalQualityUpdatedCallback</a>
</dd>
<dd><a data-href="../LBAirLink/DJILBAirLink.html" class="sub-toggle">LightbridgeLink<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../LBAirLink/DJILBAirLink_DJILBAirLinkChannelInterference.html">ChannelInterference</a>
</dd>
<dd><a href="../LBAirLink/DJILBAirLink_DJILightbridgeAntennaRSSI.html">LightbridgeAntennaRSSI</a>
</dd>
<dd><a href="../LBAirLink/DJILBAirLink_AntennaRSSICallbackInterface.html">AntennaRSSICallback</a>
</dd>
<dd><a href="../LBAirLink/DJILBAirLink_UpdateAllChannelInterferenceCallbackInterface.html">ChannelInterferenceCallback</a>
</dd>
</ul>
</dd>
<dd><a data-href="../OcuSyncLink/DJIOcuSyncLink.html" class="sub-toggle">OcuSyncLink<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../OcuSyncLink/DJIOcuSyncLink_VideoDataRateUpdatedCallbackInterface.html">VideoDataRateCallback</a>
</dd>
<dd><a href="../OcuSyncLink/DJIOcuSyncLink_ReceivedWarningMessageCallbackInterface.html">WarningMessagesCallback</a>
</dd>
<dd><a href="../OcuSyncLink/DJIOcuSyncLink_FrequencyInterferenceUpdatedCallbackInterface.html">ChannelInterferenceCallback</a>
</dd>
<dd><a href="../OcuSyncLink/DJIOcuSyncLink_DJIOcuSyncFrequencyInterference.html">FrequencyInterference</a>
</dd>
</ul>
</dd>
<dd><a data-href="../WiFiLink/DJIWiFiLink.html" class="sub-toggle">WiFiLink<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../WiFiLink/DJIWiFiLink_DJIWiFiSignalQualityChangedCallbackInterface.html">MagneticInterferenceCallback</a>
</dd>
<dd><a href="../WiFiLink/DJIWiFiLink_RSSICallbackInterface.html">ChannelInterferenceCallback</a>
</dd>
<dd><a href="../WiFiLink/DJIWiFiLink_DJIWiFiChannelInterference.html">WifiChannelInterference</a>
</dd>
</ul>
</dd>
</ul>
</dd>
<dd><a data-href="../RemoteController/DJIRemoteController.html" class="sub-toggle">RemoteController<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../RemoteController/DJIRemoteController_DJIRCGimbalMapping.html">GimbalMapping</a>
</dd>
<dd><a href="../RemoteController/DJIRemoteController_DJIRCGimbalStickMapping.html">GimbalStickMapping</a>
</dd>
<dd><a href="../RemoteController/DJIRemoteController_updateGpsDataCallbackInterface.html">Callback</a>
</dd>
<dd><a href="../RemoteController/DJIRemoteController_MasterSearchingCallbackInterface.html">MasterSearchingCallback</a>
</dd>
<dd><a href="../RemoteController/DJIRemoteController_RTKChannelEnabledUpdatedCallbackInterface.html">RTKChannelEnabledUpdatedCallback</a>
</dd>
<dd><a data-href="../RemoteController/DJIRemoteController_DJIRCHardwareState.html" class="sub-toggle">HardwareState<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../RemoteController/DJIRemoteController_RCHardwareStateUpdateCallbackInterface.html">HardwareStateCallback</a>
</dd>
<dd><a href="../RemoteController/DJIRemoteController_DJIRCHardwareRightWheel.html">RightDial</a>
</dd>
<dd><a href="../RemoteController/DJIRemoteController_DJIRCHardwareTransformationSwitch.html">TransformationSwitch</a>
</dd>
<dd><a href="../RemoteController/DJIRemoteController_DJIRCHardwareState_Button.html">Button</a>
</dd>
<dd><a href="../RemoteController/DJIRemoteController_DJIRCFiveDButton.html">FiveDButton</a>
</dd>
</ul>
</dd>
<dd><a data-href="../RemoteController/DJIRemoteController_DJIRCGPSData.html" class="sub-toggle">GPSData<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../RemoteController/DJIRemoteController_DJIRCGpsTime.html">Time</a>
</dd>
<dd><a href="../RemoteController/DJIRemoteController_GPSLocation.html">GPSLocation</a>
</dd>
</ul>
</dd>
<dd><a data-href="../RemoteController/DJIRemoteController_DJIRCBatteryInfo.html" class="sub-toggle">BatteryState<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../RemoteController/DJIRemoteController_RCBatteryStateUpdateCallbackInterface.html">Callback</a>
</dd>
</ul>
</dd>
<dd><a data-href="../RemoteController/DJIRemoteController_DJIRCRemoteFocusState.html" class="sub-toggle">FocusControllerState<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../RemoteController/DJIRemoteController_RCRemoteFocusStateUpdateCallbackInterface.html">FocusControllerStateCallback</a>
</dd>
</ul>
</dd>
<dd><a data-href="../RemoteController/DJIRemoteController_DJIRCAircraftMapping.html" class="sub-toggle">AircraftMapping<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../RemoteController/DJIRemoteController_DJIRCAircraftStickMapping.html">AircraftStickMapping</a>
</dd>
</ul>
</dd>
<dd><a data-href="../RemoteController/DJIRemoteController_RCCustomButtonTagParam.html" class="sub-toggle">CustomButtonTags<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../RemoteController/DJIRemoteController_RCCustomButtonTagParam_Constructor.html">Builder</a>
</dd>
</ul>
</dd>
<dd><a data-href="../RemoteController/DJIRemoteController_DJIRCInfo.html" class="sub-toggle">Information<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../RemoteController/DJIRemoteController_RCReceiveGimbalControlRequestFromSlaveCallbackInterface.html">ControlRequestCallback</a>
</dd>
</ul>
</dd>
<dd><a data-href="../RemoteController/DJIRemoteController_DJIRCMasterSlaveState.html" class="sub-toggle">MasterSlaveState<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../RemoteController/DJIRemoteController_didUpdateMasterSlaveStateCallbackInterface.html">Callback</a>
</dd>
</ul>
</dd>
<dd><a href="../RemoteController/DJIRemoteController_DJIRCGimbalControlSpeed.html">GimbalControlSpeedCoefficient</a>
</dd>
<dd><a href="../RemoteController/DJIRemoteController_ResponseForGimbalControl.html">ResponseForGimbalControl</a>
</dd>
<dd><a href="../RemoteController/DJIRemoteController_JoinMasterAuthorizationInfo.html">AuthorizationInfo</a>
</dd>
<dd><a href="../RemoteController/DJIRemoteController_JoinedMasterNameAndPasswordResult.html">Credentials</a>
</dd>
<dd><a data-href="../RemoteController/DJIRemoteController_ProfessionalRC.html" class="sub-toggle">ProfessionalRC<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../RemoteController/DJIRemoteController_ProfessionalRC_Event.html">Event</a>
</dd>
<dd><a href="../RemoteController/DJIRemoteController_ProfessionalRC_ButtonConfiguration.html">ButtonConfiguration</a>
</dd>
<dd><a href="../RemoteController/DJIRemoteController_ProfessionalRC_ButtonConfiguration_Builder.html">ButtonConfigurationBuilder</a>
</dd>
<dd><a href="../RemoteController/DJIRemoteController_ProfessionalRC_CallbackInterface.html">Callback</a>
</dd>
</ul>
</dd>
<dd><a data-href="../RemoteController/DJIRemoteController_DJIRCMultiDeviceAggregationState.html" class="sub-toggle">MultiDeviceAggregationState<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../RemoteController/DJIRemoteController_DJIRCMultiDeviceAggregationState_callbackInterface.html">Callback</a>
</dd>
</ul>
</dd>
</ul>
</dd>
<dd><a data-href="../HandheldController/DJIHandheldController.html" class="sub-toggle">HandheldController<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a data-href="../HandheldController/DJIHandheldController_DJIHandheldControllerHardwareState.html" class="sub-toggle">HardwareState<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../HandheldController/DJIHandheldController_DJIUpdateHardwareStateCallbackInterface.html">Callback</a>
</dd>
</ul>
</dd>
<dd><a data-href="../HandheldController/DJIHandheldController_DJIHandheldControllerLEDCommand.html" class="sub-toggle">LEDCommand<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../HandheldController/DJIHandheldController_DJIHandheldControllerLEDCommand_DJIHandheldControllerLEDColorPattern.html">LEDColorPattern</a>
</dd>
</ul>
</dd>
</ul>
</dd>
<dd><a href="../MobileRemoteController/DJIMobileRemoteController.html">MobileRemoteController</a>
</dd>
<dd><a data-href="../Payload/DJIPayload.html" class="sub-toggle">Payload<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a data-href="../Payload/DJIPayload_PayloadWidget.html" class="sub-toggle">PayloadWidget<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../Payload/DJIPayload_PayloadWidgetListener.html">PayloadWidgetListener</a>
</dd>
<dd><a href="../Payload/DJIPayload_PayloadWidgetDownloadListener.html">PayloadWidgetDownloadListener</a>
</dd>
</ul>
</dd>
<dd><a href="../Payload/DJIPayload_HintMessageCallbackInterface.html">HintMessageCallback</a>
</dd>
<dd><a href="../Payload/DJIPayload_CommandDataCallbackInterface.html">CommandDataCallback</a>
</dd>
<dd><a href="../Payload/DJIPayload_VideoDataReceivedCallbackInterface.html">VideoDataReceivedCallback</a>
</dd>
<dd><a href="../Payload/DJIPayload_StreamDataCallbackInterface.html">StreamDataCallback</a>
</dd>
<dd><a href="../Payload/DJIPayload_WidgetValueChangedCallbackInterface.html">WidgetValueChangedCallback</a>
</dd>
<dd><a href="../Payload/DJIPayload_ActivateInfo.html">ActivateInfo</a>
</dd>
</ul>
</dd>
<dd><a data-href="../Pipeline/DJIPipeline.html" class="sub-toggle">Pipeline<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../Pipeline/DJIPipelines.html">Pipelines</a>
</dd>
</ul>
</dd>
<dd><a data-href="../AccessoryAggregation/DJIAccessoryAggregation.html" class="sub-toggle">AccessoryAggregation<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a data-href="../AccessoryAggregation/DJIAccessoryAggregation_DJISpotlight.html" class="sub-toggle">Spotlight<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a data-href="../AccessoryAggregation/DJIAccessoryAggregation_DJISpotlight_DJISpotlightState.html" class="sub-toggle">SpotlightState<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../AccessoryAggregation/DJIAccessoryAggregation_DJISpotlight_DJISpotlightState_CallbackInterface.html">Callback</a>
</dd>
</ul>
</dd>
</ul>
</dd>
<dd><a href="../AccessoryAggregation/DJIAccessoryAggregation_DJIBeacon.html">Beacon</a>
</dd>
<dd><a data-href="../AccessoryAggregation/DJIAccessoryAggregation_DJISpeaker.html" class="sub-toggle">Speaker<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a data-href="../AccessoryAggregation/DJIAccessoryAggregation_DJISpeaker_DJISpeakerState.html" class="sub-toggle">SpeakerState<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../AccessoryAggregation/DJIAccessoryAggregation_DJISpeaker_DJISpeakerState_CallbackInterface.html">Callback</a>
</dd>
</ul>
</dd>
<dd><a href="../AccessoryAggregation/DJIAccessoryAggregation_DJISpeaker_DJIAudioFileInfo.html">AudioFileInfo</a>
</dd>
<dd><a href="../AccessoryAggregation/DJIAccessoryAggregation_DJISpeaker_TransmissionListenerInterface.html">TransmissionListener</a>
</dd>
</ul>
</dd>
<dd><a href="../AccessoryAggregation/DJIAccessoryAggregation_AggregationState.html">AccessoryAggregationState</a>
</dd>
<dd><a href="../AccessoryAggregation/DJIAccessoryAggregation_AggregationState_callbackInterface.html">Callback</a>
</dd>
</ul>
</dd>
<dd><a data-href="../RTKBaseStation/DJIRTKBaseStation.html" class="sub-toggle">BaseStation<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a data-href="../RTKBaseStation/DJIRTKBaseStation_DJIRTKBaseStationBatteryState.html" class="sub-toggle">BaseStationBatteryState<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../RTKBaseStation/DJIRTKBaseStation_DJIRTKBaseStationBatteryStateCallbackInterface.html">Callback</a>
</dd>
</ul>
</dd>
<dd><a data-href="../RTKBaseStation/DJIRTKBaseStation_DJIRTKBaseStationState.html" class="sub-toggle">BaseStationState<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../RTKBaseStation/DJIRTKBaseStation_DJIRTKBaseStationStateCallbackInterface.html">Callback</a>
</dd>
</ul>
</dd>
</ul>
</dd>
<dd><a data-href="../Lidar/DJILidar.html" class="sub-toggle">Lidar<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../Lidar/DJILidar_PointCloud_RecordStatus_ListenerInterface.html">DJIPointCloudStatusListener</a>
</dd>
<dd><a href="../Lidar/DJILidar_DJIPointCloudLiveDataListener.html">DJIPointCloudLiveDataListener</a>
</dd>
<dd><a href="../Lidar/DJILidarLiveViewDataProcessor.html">IDJILidarLiveViewDataProcessor</a>
</dd>
<dd><a data-href="../Lidar/DJILidar_DJILidarCapabilities.html" class="sub-toggle">Capabilities<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../Lidar/DJILidar_DJILidarParametersListener_Interface.html">DJILidarParametersListener</a>
</dd>
</ul>
</dd>
<dd><a href="../Lidar/DJILidar_pointCloudLiveViewData.html">PointCloudLiveViewData</a>
</dd>
<dd><a href="../Lidar/DJILidarPointCloudView.html">PointCloudView</a>
</dd>
</ul>
</dd>
</dl>
<dl>
<dt>Mission Classes
</dt>
<dd><a data-href="DJIMissionControl.html" class="sub-toggle">MissionControl<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="DJITriggerable.html">Triggerable</a>
</dd>
<dd><a href="DJIMissionControlTimelineElement.html">TimelineElement</a>
</dd>
<dd><a href="DJIMissionControl_DJIMissionControlTimelineEventBlockInterface.html">Listener</a>
</dd>
<dd><a href="DJIMissionControlTimelineElementFeedback.html">TimelineElementFeedback</a>
</dd>
<dd><a href="DJIMissionControlError.html">MissionControlError</a>
</dd>
</ul>
</dd>
<dd><a data-href="DJIMissionAction.html" class="sub-toggle">MissionAction<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="DJITakeOffAction.html">TakeOffAction</a>
</dd>
<dd><a data-href="DJIAircraftYawAction.html" class="sub-toggle">AircraftYawAction<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="DJIAircraftYawAction_DJIAircraftYawActionError.html">AircraftYawActionError</a>
</dd>
</ul>
</dd>
<dd><a data-href="DJIGoToAction.html" class="sub-toggle">GoToAction<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="DJIGoToAction_DJIGoToActionError.html">GoToActionError</a>
</dd>
</ul>
</dd>
<dd><a href="DJIGoHomeAction.html">GoHomeAction</a>
</dd>
<dd><a href="DJIHotpointAction.html">HotpointAction</a>
</dd>
<dd><a data-href="DJIGimbalAttitudeAction.html" class="sub-toggle">GimbalAttitudeAction<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="DJIGimbalAttitudeAction_DJIGimbalAttitudeActionError.html">GimbalAttitudeActionError</a>
</dd>
</ul>
</dd>
<dd><a data-href="DJIRecordVideoAction.html" class="sub-toggle">RecordVideoAction<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="DJIRecordVideoAction_DJIRecordVideoActionError.html">RecordVideoActionError</a>
</dd>
</ul>
</dd>
<dd><a data-href="DJIShootPhotoAction.html" class="sub-toggle">ShootPhotoAction<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="DJIShootPhotoAction_DJIShootPhotoActionError.html">ShootPhotoActionError</a>
</dd>
</ul>
</dd>
<dd><a href="DJILandAction.html">LandAction</a>
</dd>
</ul>
</dd>
<dd><a href="TimelineMission.html">TimelineMission</a>
</dd>
<dd><a data-href="DJIMissionTrigger.html" class="sub-toggle">Trigger<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="DJIMissionTrigger_DJIMissionTriggerActionInterface.html">Action</a>
</dd>
<dd><a href="DJIMissionTrigger_listenerInterface.html">Listener</a>
</dd>
<dd><a href="DJIMissionTrigger_DJIBatteryLevelMissionTrigger.html">BatteryPowerLevelTrigger</a>
</dd>
<dd><a href="DJIMissionTrigger_DJIWaypointReachedMissionTrigger.html">WaypointReachedTrigger</a>
</dd>
<dd><a href="DJIMissionTrigger_DJIAircraftLandedMissionTrigger.html">AircraftLandedTrigger</a>
</dd>
</ul>
</dd>
<dd><a data-href="DJIWaypointMissionOperator.html" class="sub-toggle">WaypointMissionOperator<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a data-href="DJIWaypointMission.html" class="sub-toggle">WaypointMission<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="DJIWaypointMission_Builder.html">Builder</a>
</dd>
<dd><a data-href="DJIWaypoint.html" class="sub-toggle">Waypoint<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="DJIWaypoint_DJIWaypointAction.html">WaypointAction</a>
</dd>
</ul>
</dd>
<dd><a href="DJIWaypointMission_DJIWaypointMissionInterruption.html">WaypointMissionInterruption</a>
</dd>
</ul>
</dd>
<dd><a href="DJIWaypointMissionEvent.html">WaypointMissionEvent</a>
</dd>
<dd><a data-href="DJIWaypointMissionUploadEvent.html" class="sub-toggle">WaypointMissionUploadEvent<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="DJIWaypointMission_DJIWaypointUploadProgress.html">WaypointUploadProgress</a>
</dd>
</ul>
</dd>
<dd><a data-href="DJIWaypointMissionDownloadEvent.html" class="sub-toggle">WaypointMissionDownloadEvent<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="DJIWaypointMission_DJIWaypointDownloadProgress.html">WaypointDownloadProgress</a>
</dd>
</ul>
</dd>
<dd><a data-href="DJIWaypointMissionExecutionEvent.html" class="sub-toggle">WaypointMissionExecutionEvent<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="DJIWaypointMission_DJIWaypointExecutionProgress.html">WaypointExecutionProgress</a>
</dd>
</ul>
</dd>
<dd><a href="DJIWaypointMissionState.html">WaypointMissionState</a>
</dd>
<dd><a href="DJIWaypointMissionOperator_Listener.html">WaypointMissionOperatorListener</a>
</dd>
</ul>
</dd>
<dd><a data-href="DJIWaypointV2MissionOperator.html" class="sub-toggle">WaypointV2MissionOperator<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a data-href="DJIWaypointV2Mission.html" class="sub-toggle">WaypointV2Mission<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a data-href="DJIWaypointV2.html" class="sub-toggle">WaypointV2<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="DJIWaypointV2_Builder.html">Builder</a>
</dd>
</ul>
</dd>
<dd><a href="DJIWaypointV2Mission_Builder.html">Builder</a>
</dd>
</ul>
</dd>
<dd><a href="WaypointV2MissionOperatorListenerInterface.html">WaypointV2MissionOperatorListener</a>
</dd>
<dd><a href="WaypointV2ActionListenerInterface.html">WaypointV2ActionListener</a>
</dd>
<dd><a href="DJIWaypointV2ActionDownloadEventInterface.html">ActionDownloadEvent</a>
</dd>
<dd><a href="DJIWaypointV2ActionUploadEventInterface.html">ActionUploadEvent</a>
</dd>
<dd><a href="DJIWaypointV2ActionExecutionEvent.html">ActionExecutionEvent</a>
</dd>
<dd><a href="DJIWaypointV2ActionUploadProgressInterface.html">ActionUploadProgress</a>
</dd>
<dd><a href="DJIWaypointV2MissionExecutionEvent.html">WaypointV2MissionExecutionEvent</a>
</dd>
<dd><a href="DJIWaypointV2MissionDownloadEvent.html">WaypointV2MissionDownloadEvent</a>
</dd>
<dd><a href="DJIWaypointV2MissionUploadEvent.html">WaypointV2MissionUploadEvent</a>
</dd>
<dd><a data-href="DJIWaypointV2Action.html" class="sub-toggle">WaypointV2Action<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="DJIWaypointV2Action_Builder.html">Builder</a>
</dd>
<dd><a data-href="DJIWaypointV2Action_DJIWaypointV2Actuator.html" class="sub-toggle">WaypointActuator<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a data-href="DJIWaypointV2Actuator_DJIWaypointV2GimbalActuatorParam.html" class="sub-toggle">WaypointGimbalActuatorParam<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a data-href="DJIWaypointV2GimbalActuatorParam_DJIWaypointV2GimbalPathShootingParam.html" class="sub-toggle">WaypointGimbalPathShooting<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a data-href="DJIWaypointV2GimbalActuatorParam_DJIWaypointV2GimbalPathPointInfo.html" class="sub-toggle">WaypointGimbalPathPointInfo<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="DJIWaypointV2GimbalActuatorParam_DJIWaypointV2GimbalPathPointInfo_Builder.html">Builder</a>
</dd>
</ul>
</dd>
<dd><a data-href="DJIWaypointV2GimbalActuatorParam_DJIWaypointV2GimbalStartPathShootingParam.html" class="sub-toggle">WaypointGimbalStartPathShootingParam<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="DJIWaypointV2GimbalActuatorParam_DJIWaypointV2GimbalStartPathShootingParam_Builder.html">Builder</a>
</dd>
</ul>
</dd>
<dd><a data-href="DJIWaypointV2GimbalActuatorParam_DJIWaypointV2GimbalStopPathShootingParam.html" class="sub-toggle">WaypointGimbalStopPathShootingParam<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="DJIWaypointV2GimbalActuatorParam_DJIWaypointV2GimbalStopPathShootingParam_Builder.html">Builder</a>
</dd>
</ul>
</dd>
<dd><a href="DJIWaypointV2GimbalActuatorParam_DJIWaypointV2GimbalPathShootingParam_Builder.html">Builder</a>
</dd>
</ul>
</dd>
<dd><a href="DJIWaypointV2Actuator_DJIWaypointV2GimbalActuatorParam_Builder.html">Builder</a>
</dd>
</ul>
</dd>
<dd><a data-href="DJIWaypointV2Actuator_DJIWaypointV2AircraftControlParam.html" class="sub-toggle">WaypointAircraftControlParam<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="DJIWaypointV2Actuator_DJIWaypointV2AircraftControlParam_Builder.html">Builder</a>
</dd>
<dd><a data-href="DJIWaypointV2AircraftControlParam_DJIWaypointV2AircraftControlFlyingParam.html" class="sub-toggle">WaypointAircraftControlStartStopFlyParam<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="DJIWaypointV2AircraftControlParam_DJIWaypointV2AircraftControlFlyingParam_Builder.html">Builder</a>
</dd>
</ul>
</dd>
<dd><a data-href="DJIWaypointV2AircraftControlParam_DJIWaypointV2AircraftControlRotateHeadingParam.html" class="sub-toggle">WaypointAircraftControlRotateYawParam<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="DJIWaypointV2AircraftControlParam_DJIWaypointV2AircraftControlRotateHeadingParam_Builder.html">Builder</a>
</dd>
</ul>
</dd>
</ul>
</dd>
<dd><a href="DJIWaypointV2Actuator_PointCloudRecordActuatorParam.html">WaypointPointCloudRecordActuatorParam</a>
</dd>
<dd><a data-href="DJIWaypointV2Actuator_DJIWaypointV2LidarActuatorParam.html" class="sub-toggle">WaypointLidarActuatorParam<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a data-href="DJIWaypointV2Actuator_DJIWaypointV2LidarActuatorParam_Builder.html" class="sub-toggle">Builder<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="DJIWaypointV2Actuator_PointCloudRecordActuatorParam_Builder.html">Builder</a>
</dd>
</ul>
</dd>
</ul>
</dd>
<dd><a data-href="DJIWaypointV2Actuator_DJIWaypointV2CameraActuatorParam.html" class="sub-toggle">WaypointCameraActuatorParam<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="DJIWaypointV2Actuator_DJIWaypointV2CameraActuatorParam_Builder.html">Builder</a>
</dd>
<dd><a data-href="DJIWaypointV2CameraActuatorParam_DJIWaypointV2CameraFocalLengthParam.html" class="sub-toggle">WaypointCameraZoomParam<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="DJIWaypointV2CameraActuatorParam_DJIWaypointV2CameraFocalLengthParam_Builder.html">Builder</a>
</dd>
</ul>
</dd>
<dd><a data-href="DJIWaypointV2Actuator_DJIWaypointCameraFocusModeParam.html" class="sub-toggle">WaypointCameraFocusModeParam<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="DJIWaypointV2Actuator_DJIWaypointV2CameraFocusModeParam_Builder.html">Builder</a>
</dd>
</ul>
</dd>
<dd><a data-href="DJIWaypointV2CameraActuatorParam_DJIWaypointV2CameraFocusParam.html" class="sub-toggle">WaypointCameraFocusParam<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a data-href="DJIWaypointV2ActionActuatorParam_DJIWaypointV2CameraFocus_RectangleTargetParam.html" class="sub-toggle">WaypointCameraFocusRectangleTargetParam<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="DJIWaypointV2ActionActuatorParam_DJIWaypointV2CameraFocus_RectangleTargetParam_Builder.html">Builder</a>
</dd>
</ul>
</dd>
<dd><a data-href="DJIWaypointV2ActionActuatorParam_DJIWaypointV2CameraFocus_PointTargetParam.html" class="sub-toggle">WaypointCameraFocusPointTargetParam<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="DJIWaypointV2ActionActuatorParam_DJIWaypointV2CameraFocus_PointTargetParam_Builder.html">Builder</a>
</dd>
</ul>
</dd>
<dd><a href="DJIWaypointV2CameraActuatorParam_DJIWaypointV2CameraFocusParam_Builder.html">Builder</a>
</dd>
</ul>
</dd>
<dd><a data-href="DJIWaypointV2Actuator_DJIWaypointCameraCustomNameParam.html" class="sub-toggle">WaypointCameraCustomNameParam<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="DJIWaypointV2Actuator_DJIWaypointCameraCustomNameParam_Builder.html">Builder</a>
</dd>
</ul>
</dd>
</ul>
</dd>
<dd><a href="DJIWaypointV2Action_DJIWaypointV2Actuator_Builder.html">Builder</a>
</dd>
</ul>
</dd>
<dd><a data-href="DJIWaypointV2Action_DJIWaypointV2Trigger.html" class="sub-toggle">WaypointTrigger<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="DJIWaypointV2Action_DJIWaypointV2Trigger_Builder.html">Builder</a>
</dd>
<dd><a data-href="DJIWaypointV2Trigger_DJIWaypointV2IntervalTriggerParam.html" class="sub-toggle">WaypointIntervalTriggerParam<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="DJIWaypointV2Trigger_DJIWaypointV2IntervalTriggerParam_Builder.html">Builder</a>
</dd>
</ul>
</dd>
<dd><a data-href="DJIWaypointV2Trigger_DJIWaypointV2TrajectoryTriggerParam.html" class="sub-toggle">WaypointTrajectoryTriggerParam<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="DJIWaypointV2Trigger_DJIWaypointV2TrajectoryTriggerParam_Builder.html">Builder</a>
</dd>
</ul>
</dd>
<dd><a data-href="DJIWaypointV2Trigger_DJIWaypointV2AssociateTriggerParam.html" class="sub-toggle">WaypointV2AssociateTriggerParam<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="DJIWaypointV2Trigger_DJIWaypointV2AssociateTriggerParam_Builder.html">Builder</a>
</dd>
</ul>
</dd>
<dd><a data-href="DJIWaypointV2Trigger_DJIWaypointV2ReachPointTriggerParam.html" class="sub-toggle">WaypointReachPointTriggerParam<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="DJIWaypointV2Trigger_DJIWaypointV2ReachPointTriggerParam_Builder.html">Builder</a>
</dd>
</ul>
</dd>
</ul>
</dd>
<dd><a href="DJIWaypointV2ActionDownloadProgressInterface.html">ActionDownloadProgress</a>
</dd>
<dd><a href="DJIWaypointV2ActionExecutionProgressInterface.html">ActionExecutionProgress</a>
</dd>
<dd><a href="DJIWaypointV2Action_ActionTypes.html">ActionTypes</a>
</dd>
</ul>
</dd>
<dd><a href="DJIWaypointV2MissionOperator_DJIWaypointV2UploadProgress.html">WaypointV2UploadProgress</a>
</dd>
<dd><a href="DJIWaypointV2MissionOperator_DJIWaypointV2DownloadProgress.html">WaypointV2DownloadProgress</a>
</dd>
<dd><a href="DJIWaypointV2MissionOperator_DJIWaypointV2ExecutionProgress.html">WaypointV2ExecutionProgress</a>
</dd>
</ul>
</dd>
<dd><a data-href="DJIFollowMeMissionOperator.html" class="sub-toggle">FollowMeMissionOperator<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="DJIFollowMeMissionOperatorListener.html">FollowMeMissionOperatorListener</a>
</dd>
<dd><a href="DJIFollowMeMission.html">FollowMeMission</a>
</dd>
<dd><a data-href="DJIFollowMeMissionEvent.html" class="sub-toggle">FollowMeMissionEvent<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="DJIFollowMeMissionState.html">FollowMeMissionState</a>
</dd>
</ul>
</dd>
</ul>
</dd>
<dd><a data-href="DJIPanoramaMissionOperator.html" class="sub-toggle">PanoramaMissionOperator<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="PanoramaMissionOperatorListener.html">PanoramaMissionOperatorListener</a>
</dd>
<dd><a href="DJIPanoramaMissionEvent.html">PanoramaMissionEvent</a>
</dd>
<dd><a href="DJIPanoramaMissionState.html">PanoramaMissionState</a>
</dd>
<dd><a href="DJIPanoramaMission_DJIPanoramaMissionStatus.html">PanoramaMissionExecutionState</a>
</dd>
</ul>
</dd>
<dd><a data-href="DJIHotpointMissionOperator.html" class="sub-toggle">HotpointMissionOperator<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="DJIHotPointMission.html">HotpointMission</a>
</dd>
<dd><a href="DJIHotpointMissionOperatorListener.html">HotpointMissionOperatorListener</a>
</dd>
<dd><a data-href="DJIHotpointMissionEvent.html" class="sub-toggle">HotpointMissionEvent<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="DJIHotpointMissionState.html">HotpointMissionState</a>
</dd>
</ul>
</dd>
</ul>
</dd>
<dd><a data-href="DJIIntelligentHotpointMissionOperator.html" class="sub-toggle">IntelligentHotpointMissionOperator<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="DJIIntelligentHotpointMission.html">IntelligentHotpointMission</a>
</dd>
<dd><a href="DJIIntelligentHotpointMissionOperatorListenerInterface.html">IntelligentHotpointMissionOperatorListener</a>
</dd>
<dd><a href="DJIIntelligentHotpointMissionOperator_DJIIntelligentHotpointMissionState.html">IntelligentHotpointMissionState</a>
</dd>
<dd><a href="DJIIntelligentHotpointMissionOperator_DJIIntelligentHotpointMissionEvent.html">IntelligentHotpointMissionEvent</a>
</dd>
</ul>
</dd>
<dd><a data-href="DJITapFlyMissionOperator.html" class="sub-toggle">TapFlyMissionOperator<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="TapFlyMissionOperatorListener.html">TapFlyMissionOperatorListener</a>
</dd>
<dd><a data-href="DJITapFlyMission.html" class="sub-toggle">TapFlyMission<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="DJITapFlyMission_DJITapFlyExecutionState.html">TapFlyExecutionState</a>
</dd>
<dd><a href="DJITapFlyMission_DJIVector.html">Vector</a>
</dd>
</ul>
</dd>
<dd><a data-href="DJITapFlyMissionEvent.html" class="sub-toggle">TapFlyMissionEvent<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="DJITapFlyMissionState.html">TapFlyMissionState</a>
</dd>
</ul>
</dd>
</ul>
</dd>
<dd><a data-href="DJIActiveTrackMissionOperator.html" class="sub-toggle">ActiveTrackOperator<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a data-href="DJIActiveTrackMission.html" class="sub-toggle">ActiveTrackMission<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="DJIActiveTrackTrackingState.html">ActiveTrackTrackingState</a>
</dd>
<dd><a href="DJIActiveTrackMission_DJISubjectSensingState.html">SubjectSensingState</a>
</dd>
</ul>
</dd>
<dd><a data-href="DJIActiveTrackMissionEvent.html" class="sub-toggle">ActiveTrackMissionEvent<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="DJIActiveTrackMissionState.html">ActiveTrackState</a>
</dd>
</ul>
</dd>
<dd><a href="ActiveTrackMissionOperatorListener.html">ActiveTrackMissionOperatorListener</a>
</dd>
</ul>
</dd>
</dl>
<dl>
<dt>Misc Classes
</dt>
<dd><a data-href="../../Utils/DJICommonCallbacks.html" class="sub-toggle">CommonCallbacks<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../../Utils/DJICommonCallbacks_CompletionCallback_Interface.html">CompletionCallback<T</a>
</dd>
<dd><a href="../../Utils/DJICommonCallbacks_CompletionCallbackWith_Interface.html">CompletionCallbackWith<T></a>
</dd>
<dd><a href="../../Utils/DJICommonCallbacks_CompletionCallbackWithTwoParam_Interface.html">Y></a>
</dd>
</ul>
</dd>
<dd><a href="../../Utils/DJIWarningStatusItem.html">WarningStatusItem</a>
</dd>
<dd><a data-href="../../Utils/DJIVideoSizeCalculatorUtil.html" class="sub-toggle">VideoSizeCalculatorUtil<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../../Utils/DJIVideoSizeCalculatorUtil_Interface.html">VideoSizeListener</a>
</dd>
</ul>
</dd>
<dd><a href="../../Utils/DJILocationUtil.html">LocationUtil</a>
</dd>
<dd><a data-href="../ParamCapability/DJIParamCapability.html" class="sub-toggle">DJIParamCapability<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../ParamCapability/DJIParamCapability_DJIParamCapabilityMinMax.html">DJIParamMinMaxCapability</a>
</dd>
</ul>
</dd>
<dd><a data-href="../SDKError/DJIError.html" class="sub-toggle">DJIError<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../SDKError/DJIError_DJIGimbalError.html">DJIGimbalError</a>
</dd>
<dd><a href="../SDKError/DJIError_DataProtectionError.html">DataProtectionError</a>
</dd>
<dd><a href="../SDKError/DJIError_DJISDKFlightHubError.html">DJIFlightHubError</a>
</dd>
<dd><a href="../SDKError/DJIError_DJIRTKNetworkServiceError.html">DJIRTKNetworkServiceError</a>
</dd>
<dd><a href="../SDKError/DJIError_DJIAccessoryAggregationError.html">DJIAccessoryAggregationError</a>
</dd>
<dd><a href="../SDKError/DJIError_DJIAccessLockerError.html">DJIAccessLockerError</a>
</dd>
<dd><a href="../SDKError/DJIError_DJIPayloadError.html">DJIPayloadError</a>
</dd>
<dd><a href="../SDKError/DJIError_DJIUTMISSError.html">DJIUTMISSError</a>
</dd>
<dd><a href="../SDKError/DJIError_DJILDMError.html">DJILDMError</a>
</dd>
<dd><a href="../SDKError/DJIError_DJIUpgradeError.html">DJIUpgradeError</a>
</dd>
<dd><a href="../SDKError/DJIError_DJIWaypointV2Error.html">DJIWaypointV2Error</a>
</dd>
<dd><a href="../SDKError/DJIError_DJIPipelineError.html">PipelineError</a>
</dd>
<dd><a href="../SDKError/DJIError_DJISDKError.html">DJISDKError</a>
</dd>
<dd><a href="../SDKError/DJIError_DJISDKCacheError.html">DJISDKCacheError</a>
</dd>
<dd><a href="../SDKError/DJIError_DJICameraError.html">DJICameraError</a>
</dd>
<dd><a href="../SDKError/DJIError_DJIFlightControllerError.html">DJIFlightControllerError</a>
</dd>
<dd><a href="../SDKError/DJIError_DJIMissionManagerError.html">DJIMissionError</a>
</dd>
<dd><a href="../SDKError/DJIError_DJIAirLinkError.html">DJIAirLinkError</a>
</dd>
<dd><a href="../SDKError/DJIError_DJIBatteryError.html">DJIBatteryError</a>
</dd>
<dd><a href="../SDKError/DJIError_DJIGeoError.html">DJIFlySafeError</a>
</dd>
<dd><a href="../SDKError/DJIError_DJIRemoteControllerError.html">DJIRemoteControllerError</a>
</dd>
</ul>
</dd>
<dd><a data-href="../Diagnostics/DJIDiagnostics.html" class="sub-toggle">DJIDiagnostics<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../Diagnostics/DJIDiagnostics_DiagnosticsInformationCallbackInterface.html">DiagnosticsInformationCallback</a>
</dd>
<dd><a href="../Diagnostics/DJIDiagnostics_DJIDiagnosticsDeviceHealthInformation.html">DeviceHealthInformation</a>
</dd>
</ul>
</dd>
<dd><a data-href="../CodecManager/DJICodecManager.html" class="sub-toggle">DJICodecManager<i class="fa fa-angle-down"></i><i class="fa fa-angle-up"></i></a>
<ul class="sub-menu">
<dd><a href="../CodecManager/DJICodecManager_YuvDataCallbackInterface.html">YuvDataCallback</a>
</dd>
</ul>
</dd>
<dd><a href="../Stick/DJIStick.html">Stick</a>
</dd>
</dl>
</div>
</div>
<div class="site-main">
<div class="article"><div class="article"><h1><font color="#AAA">class </font>Builder</h1></div>
<figure class="highlight java"><table><tr><td class="code"><pre><span class="line"><span class="keyword">static</span> <span class="keyword">final</span> <span class="class"><span class="keyword">class</span> <span class="title">Builder</span></span></span><br></pre></td></tr></table></figure>
<html><table class="table-supportedby"><tr valign="top"><td width="15%"><font color="#999"><i>Package:</i></font></td><td width="85%"><font color="#999">dji.common.mission.waypointv2.Action</font></td></tr></table></html>
<h5 id="description">Description:</h5>
<p><font color="#666">This class is used to create the instance of <code><a href="../../Components/Missions/DJIWaypointV2CameraActuatorParam_DJIWaypointV2CameraStartIntervalShootParam.html#djiwaypointv2cameraactuatorparam_djiwaypointv2camerastartintervalshootparam">WaypointCameraStartIntervalShootParam</a></code>.</font></p>
<h5 id="class-members">Class Members:</h5>
<div class="api-row" id="djiwaypointv2cameraactuatorparam_djiwaypointv2camerastartintervalshootparam_builder_shootcount"><div class="api-col left">Interval Shoot Count</div><div class="api-col middle" style="color:#AAA">method</div><div class="api-col right"><a class="trigger" href="#djiwaypointv2cameraactuatorparam_djiwaypointv2camerastartintervalshootparam_builder_shootcount_inline">shootCount</a></div></div><div class="inline-doc" id="djiwaypointv2cameraactuatorparam_djiwaypointv2camerastartintervalshootparam_builder_shootcount_inline" <blockquote>
<div class="article"><h6><font color="#AAA">method </font>shootCount</h6></div>
<figure class="highlight java"><table><tr><td class="code"><pre><span class="line"><span class="function">Builder <span class="title">shootCount</span><span class="params">(@IntRange(from = <span class="number">1</span>, to = <span class="number">255</span>)</span> <span class="keyword">int</span> shootCount)</span></span><br></pre></td></tr></table></figure>
<html><table class="table-supportedby"><tr valign="top"><td width="15%"><font color="#999"><i>Package:</i></font></td><td width="85%"><font color="#999">dji.common.mission.waypointv2.Action</font></td></tr></table></html>
<h5 id="description-v2">Description:</h5>
<p><font color="#666">Sets the number of photos you want to take. Valid range is [1-255]. If you set the number of photos is [1-254], the camera will automatically stop interval shooting after the number of photos is taken.<br> If you set number of photos is 255, the camera will keep taking photos until you call <code><a href="../../Components/Missions/DJIWaypointV2CameraActuatorParam_DJIWaypointV2CameraStopIntervalShootParam.html#djiwaypointv2cameraactuatorparam_djiwaypointv2camerastopintervalshootparam">WaypointCameraStopIntervalShootParam</a></code> to stop taking interval photos.</font></p>
<h5 id="input-parameters">Input Parameters:</h5>
<html><table class="table-inline-parameters"><tr valign="top"><td><font color="#70BF41">@IntRange(from = 1, to = 255) int <font color="#000">shootCount</font></font></td><td><font color="#666"><i>An int value of interval shoot count.</i></font></td></tr></table></html>
<h5 id="return">Return:</h5>
<html><table class="table-inline-parameters"><tr valign="top"><td><font color="#70BF41">Builder</font></td><td><font color="#666"><i>The build of <code><a href="../../Components/Missions/DJIWaypointV2CameraActuatorParam_DJIWaypointV2CameraStartIntervalShootParam_Builder.html#djiwaypointv2cameraactuatorparam_djiwaypointv2camerastartintervalshootparam_builder">Builder</a></code>.</i></font></td></tr></table></html></div>
<div class="api-row" id="djiwaypointv2cameraactuatorparam_djiwaypointv2camerastartintervalshootparam_builder_shootintervaltime"><div class="api-col left">Interval Shoot Time</div><div class="api-col middle" style="color:#AAA">method</div><div class="api-col right"><a class="trigger" href="#djiwaypointv2cameraactuatorparam_djiwaypointv2camerastartintervalshootparam_builder_shootintervaltime_inline">shootIntervalTime</a></div></div><div class="inline-doc" id="djiwaypointv2cameraactuatorparam_djiwaypointv2camerastartintervalshootparam_builder_shootintervaltime_inline" <blockquote>
<div class="article"><h6><font color="#AAA">method </font>shootIntervalTime</h6></div>
<figure class="highlight java"><table><tr><td class="code"><pre><span class="line"><span class="function">Builder <span class="title">shootIntervalTime</span><span class="params">(<span class="keyword">double</span> shootInterval)</span></span></span><br></pre></td></tr></table></figure>
<html><table class="table-supportedby"><tr valign="top"><td width="15%"><font color="#999"><i>Package:</i></font></td><td width="85%"><font color="#999">dji.common.mission.waypointv2.Action</font></td></tr></table></html>
<h5 id="description-v3">Description:</h5>
<p><font color="#666">Sets the time interval between two photos(unit: second). Valid range is [1-65535].</font></p>
<h5 id="input-parameters-v2">Input Parameters:</h5>
<html><table class="table-inline-parameters"><tr valign="top"><td><font color="#70BF41">double <font color="#000">shootInterval</font></font></td><td><font color="#666"><i>A double value of interval shoot time.</i></font></td></tr></table></html>
<h5 id="return-v2">Return:</h5>
<html><table class="table-inline-parameters"><tr valign="top"><td><font color="#70BF41">Builder</font></td><td><font color="#666"><i>The build of <code><a href="../../Components/Missions/DJIWaypointV2CameraActuatorParam_DJIWaypointV2CameraStartIntervalShootParam_Builder.html#djiwaypointv2cameraactuatorparam_djiwaypointv2camerastartintervalshootparam_builder">Builder</a></code>.</i></font></td></tr></table></html></div>
<div class="api-row" id="djiwaypointv2cameraactuatorparam_djiwaypointv2camerastartintervalshootparam_builder_build"><div class="api-col left">Build</div><div class="api-col middle" style="color:#AAA">method</div><div class="api-col right"><a class="trigger" href="#djiwaypointv2cameraactuatorparam_djiwaypointv2camerastartintervalshootparam_builder_build_inline">build</a></div></div><div class="inline-doc" id="djiwaypointv2cameraactuatorparam_djiwaypointv2camerastartintervalshootparam_builder_build_inline" <blockquote>
<div class="article"><h6><font color="#AAA">method </font>build</h6></div>
<figure class="highlight java"><table><tr><td class="code"><pre><span class="line"><span class="function">WaypointCameraStartIntervalShootParam <span class="title">build</span><span class="params">()</span></span></span><br></pre></td></tr></table></figure>
<html><table class="table-supportedby"><tr valign="top"><td width="15%"><font color="#999"><i>Package:</i></font></td><td width="85%"><font color="#999">dji.common.mission.waypointv2.Action</font></td></tr></table></html>
<h5 id="description-v4">Description:</h5>
<p><font color="#666">Generates the immutable object.</font></p>
<h5 id="return-v3">Return:</h5>
<html><table class="table-inline-parameters"><tr valign="top"><td><font color="#70BF41"><a href="../../Components/Missions/DJIWaypointV2CameraActuatorParam_DJIWaypointV2CameraStartIntervalShootParam.html#djiwaypointv2cameraactuatorparam_djiwaypointv2camerastartintervalshootparam">WaypointCameraStartIntervalShootParam</a></font></td><td><font color="#666"><i>The build of <code><a href="../../Components/Missions/DJIWaypointV2CameraActuatorParam_DJIWaypointV2CameraStartIntervalShootParam.html#djiwaypointv2cameraactuatorparam_djiwaypointv2camerastartintervalshootparam">WaypointCameraStartIntervalShootParam</a></code>.</i></font></td></tr></table></html></div>
</div>
</div>
</div>
<div id="search-modal" class="search-modal modal fade">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header"><a href="javascript:;" @click="closeSearch" class="btn-close">×</a>
<h2 class="title">Search Mobile SDK Document
</h2>
<input type="text" v-model="searchInput" @keydown.enter="search">
</div>
<div class="modal-body">
<p v-show="!!searchCount" class="search-count"><span v-cloak>{{searchCount}}</span> Results
</p>
<ul v-show="!!searchCount" class="search-result">
<li v-for="item in searchResult"><a v-bind:href="item.url | docUrl">
<h3 class="title">{{{(item.highlights && item.highlights.title) || item.title}}}</h3>
<p class="content">{{{(item.highlights && item.highlights.content[0]) || item.title}}}</p></a></li>
</ul>
<div v-show="showLoadMore" class="text-center"><a href="javascript:;" @click="loadMoreSearch" class="btn-learn-more">Load More</a></div>
<div v-show="searchLoading" class="text-center">Loading...
</div>
<div v-show="!searchCount && !searchLoading" class="text-center">Not Found
</div>
</div>
</div>
</div>
</div>
</div>
<footer id="site-footer" class="site-footer">
<div class="container">
<div class="foot-nav row">
<nav class="link-list col-xs-2"><span class="title">SDK</span><a href="/mobile-sdk">Mobile SDK</a><a href="/ux-sdk">UX SDK</a><a href="/onboard-sdk">Onboard SDK</a><a href="/payload-sdk">Payload SDK</a><a href="/windows-sdk">Windows SDK</a></nav>
<nav class="link-list col-xs-2"><span class="title">Info</span><a href="/products">Products</a></nav>
<nav class="link-list col-xs-2"><span class="title">Community</span><a href="http://stackoverflow.com/questions/tagged/dji-sdk" target="_blank">Stack Overflow</a><a href="https://www.youtube.com/channel/UCPQwN5xsob8zZGIcDhkYqUA" target="_blank">YouTube</a><a href="https://twitter.com/djidevelopers" target="_blank">Twitter</a></nav>
<nav class="link-list col-xs-2"><span class="title">Contact Us</span><a href="mailto:dev@dji.com"> dev@dji.com</a></nav>
<nav class="link-list col-xs-2"><span class="title">Business Cooperation</span><a href="mailto:dev@dji.com"> dev@dji.com</a></nav>
<nav class="link-list col-xs-2"><span class="title">BILLING</span><a href="mailto:billing-dev@dji.com"> billing-dev@dji.com</a></nav>
</div>
<div class="foot-copyright row">
<div class="col-xs-3 foot-logo"><img src="../../images/dji-logo-foot.png"></div>
<div class="copyright col-xs-7"><span>Copyright © 2019 DJI All Rights Reserved</span><a href="/policies/privacy">Privacy Policy</a><a href="/policies/terms">Terms of Use</a></div>
</div>
</div>
</footer>
<script type="text/javascript">
window.Config = window.config = {
sdk: "mobile-sdk",
locale: "en",
environment: "development",
api_host: ""
};
</script>
<!-- build:js /javascripts/doc-vendor.js-->
<script src="../../javascripts/lib/jquery-2.1.4.min.js" type="text/javascript"></script>
<script src="../../javascripts/lib/bootstrap.js" type="text/javascript"></script>
<script src="../../javascripts/lib/vue.min.js" type="text/javascript"></script>
<!-- endbuild-->
<!-- build:js /javascripts/doc-app.js-->
<script src="../../javascripts/util/cookie.js" type="text/javascript"></script>
<script src="../../javascripts/util/url-manager.js" type="text/javascript"></script>
<script src="../../javascripts/util/ajax-manager.js" type="text/javascript"></script>
<script src="../../javascripts/base/footer.js" type="text/javascript"></script>
<script src="../../javascripts/base/header.js" type="text/javascript"></script>
<script src="../../javascripts/util/searcher.js" type="text/javascript"></script>
<script src="../../javascripts/search_index.js" type="text/javascript"></script>
<script src="../../javascripts/searchdoc.js" type="text/javascript"></script>
<script src="../../javascripts/api.js" type="text/javascript"></script>
<!-- endbuild-->
<script type="text/javascript">
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','http://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-43055594-1', 'auto');
ga('send', 'pageview');
</script>
</body> | dji-sdk/Mobile-SDK-Doc | api-reference/android-api/Components/Missions/DJIWaypointV2CameraActuatorParam_DJIWaypointV2CameraStartIntervalShootParam_Builder.html | HTML | mit | 133,495 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Coq bench</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.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">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="../../../../.."><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="../../..">Unstable</a></li>
<li class="active"><a href="">8.4.5 / contrib:ruler-compass-geometry 8.4.dev</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="../../../../../about.html">About</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../../..">« Up</a>
<h1>contrib:ruler-compass-geometry <small>8.4.dev</small></h1>
<table class="table table-striped text-center">
<thead>
<tr>
<td>Date</td>
<td>Time</td>
<td>Relative</td>
<td>Status</td>
</tr>
</thead>
<tbody>
<tr>
<td>2015-02-04</td>
<td>13:50:20</td>
<td><script>document.write(moment("2015-02-04 13:50:20 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script></td>
<td class="success"><a href="2015-02-04_13-50-20.html">45 s</a></td>
</tr>
<tr>
<td>2015-02-04</td>
<td>00:55:54</td>
<td><script>document.write(moment("2015-02-04 00:55:54 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script></td>
<td class="success"><a href="2015-02-04_00-55-54.html">39 s</a></td>
</tr>
<tr>
<td>2015-02-03</td>
<td>17:41:16</td>
<td><script>document.write(moment("2015-02-03 17:41:16 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script></td>
<td class="success"><a href="2015-02-03_17-41-16.html">43 s</a></td>
</tr>
<tr>
<td>2015-02-02</td>
<td>21:24:19</td>
<td><script>document.write(moment("2015-02-02 21:24:19 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script></td>
<td class="success"><a href="2015-02-02_21-24-19.html">41 s</a></td>
</tr>
<tr>
<td>2015-01-30</td>
<td>17:53:28</td>
<td><script>document.write(moment("2015-01-30 17:53:28 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script></td>
<td class="success"><a href="2015-01-30_17-53-28.html">42 s</a></td>
</tr>
<tr>
<td>2015-01-29</td>
<td>16:27:40</td>
<td><script>document.write(moment("2015-01-29 16:27:40 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script></td>
<td class="success"><a href="2015-01-29_16-27-40.html">43 s</a></td>
</tr>
<tr>
<td>2015-01-07</td>
<td>21:12:13</td>
<td><script>document.write(moment("2015-01-07 21:12:13 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script></td>
<td class="danger"><a href="2015-01-07_21-12-13.html">Error</a></td>
</tr>
<tr>
<td>2014-12-13</td>
<td>14:28:53</td>
<td><script>document.write(moment("2014-12-13 14:28:53 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script></td>
<td class="success"><a href="2014-12-13_14-28-53.html">40 s</a></td>
</tr>
<tr>
<td>2014-12-04</td>
<td>04:05:19</td>
<td><script>document.write(moment("2014-12-04 04:05:19 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script></td>
<td class="success"><a href="2014-12-04_04-05-19.html">39 s</a></td>
</tr>
<tr>
<td>2014-11-29</td>
<td>23:17:27</td>
<td><script>document.write(moment("2014-11-29 23:17:27 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script></td>
<td class="success"><a href="2014-11-29_23-17-27.html">39 s</a></td>
</tr>
<tr>
<td>2014-11-21</td>
<td>02:59:52</td>
<td><script>document.write(moment("2014-11-21 02:59:52 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script></td>
<td class="success"><a href="2014-11-21_02-59-52.html">39 s</a></td>
</tr>
<tr>
<td>2014-11-20</td>
<td>05:37:33</td>
<td><script>document.write(moment("2014-11-20 05:37:33 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script></td>
<td class="success"><a href="2014-11-20_05-37-33.html">39 s</a></td>
</tr>
<tr>
<td>2014-11-19</td>
<td>16:22:58</td>
<td><script>document.write(moment("2014-11-19 16:22:58 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script></td>
<td class="success"><a href="2014-11-19_16-22-58.html">40 s</a></td>
</tr>
<tr>
<td>2014-11-17</td>
<td>16:11:16</td>
<td><script>document.write(moment("2014-11-17 16:11:16 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script></td>
<td class="danger"><a href="2014-11-17_16-11-16.html">Uninstallation error</a></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
<small>Sources are on <a href="https://github.com/coq-bench">GitHub</a>. © Guillaume Claret.</small>
</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-old | clean/Linux-x86_64-4.02.1-1.2.0/unstable/8.4.5/contrib:ruler-compass-geometry/8.4.dev/index.html | HTML | mit | 7,714 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="Refresh" content="0;url=../../../a/b/d/Abdiqasim_Salad_Hassan_1006.html" />
</head>
<body>
<p>Redirecting to <a href="../../../a/b/d/Abdiqasim_Salad_Hassan_1006.html">Abdiqasim Salad Hassan</a></p>
</body>
</html> | Mitali-Sodhi/CodeLingo | Dataset/html/Abdulkassim_Salat_Hassan_4a51.html | HTML | mit | 480 |
<!DOCTYPE html>
<html lang=sl>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Ni menija omrežja v menijski vrstici.</title>
<script type="text/javascript" src="jquery.js"></script><script type="text/javascript" src="jquery.syntax.js"></script><script type="text/javascript" src="yelp.js"></script><link rel="shortcut icon" href="https://www.ubuntu.si/favicon.ico">
<link rel="stylesheet" type="text/css" href="../vodnik_1404.css">
</head>
<body id="home"><div id="wrapper" class="hfeed">
<div id="header">
<div id="branding">
<div id="blog-title"><span><a rel="home" title="Ubuntu Slovenija | Uradna spletna stran slovenske skupnosti Linux distribucije Ubuntu" href="//www.ubuntu.si">Ubuntu Slovenija | Uradna spletna stran slovenske skupnosti Linux distribucije Ubuntu</a></span></div>
<h1 id="blog-description"></h1>
</div>
<div id="access"><div id="loco-header-menu"><ul id="primary-header-menu"><li class="widget-container widget_nav_menu" id="nav_menu-3"><div class="menu-glavni-meni-container"><ul class="menu" id="menu-glavni-meni">
<li id="menu-item-15" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-15"><a href="//www.ubuntu.si">Domov</a></li>
<li id="menu-item-2776" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-2776"><a href="//www.ubuntu.si/category/novice/">Novice</a></li>
<li id="menu-item-16" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-16"><a href="//www.ubuntu.si/forum/">Forum</a></li>
<li id="menu-item-19" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-19"><a href="//www.ubuntu.si/kaj-je-ubuntu/">Kaj je Ubuntu?</a></li>
<li id="menu-item-20" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-20"><a href="//www.ubuntu.si/pogosta_vprasanja/">Pogosta vprašanja</a></li>
<li id="menu-item-17" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-17"><a href="//www.ubuntu.si/skupnost/">Skupnost</a></li>
<li id="menu-item-18" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-18"><a href="//www.ubuntu.si/povezave/">Povezave</a></li>
</ul></div></li></ul></div></div>
</div>
<div id="main"><div id="cwt-content" class="clearfix content-area"><div id="page">
<div class="trails" role="navigation"><div class="trail"> » <a class="trail" href="index.html" title="Namizni vodnik Ubuntu"><span class="media"><span class="media media-image"><img src="figures/ubuntu-logo.png" height="16" width="16" class="media media-inline" alt="Pomoč"></span></span> Namizni vodnik Ubuntu</a> » <a class="trail" href="net.html" title="Omreženje, splet, pošta in klepet">Omreženje, splet, pošta in klepet</a> » <a class="trail" href="net-problem.html" title="Težave z omrežjem">Težave z omrežjem</a> » </div></div>
<div id="content">
<div class="hgroup"><h1 class="title"><span class="title">Ni menija omrežja v menijski vrstici.</span></h1></div>
<div class="region">
<div class="contents">
<p class="p">Če je meni omrežja izginil iz menijske vrstice morda se ne izvaja vaš <span class="app">Upravljalnik omrežja</span>. Za ponovni zagon:</p>
<div class="steps"><div class="inner"><div class="region"><ol class="steps">
<li class="steps"><p class="p">Pritisnite <span class="keyseq"><span class="key"><kbd>Alt</kbd></span>+<span class="key"><kbd>F2</kbd></span></span></p></li>
<li class="steps"><p class="p">Vtipkajte <span class="cmd">nm-applet</span> in pritisnite <span class="key"><kbd>Enter</kbd></span>.</p></li>
<li class="steps"><p class="p">Morda se bo pojavilo polje <span class="gui">Overitev brezžičnega omrežja</span>. Vnesite svoje geslo v ustrezno polje in kliknite <span class="gui">Poveži</span>.</p></li>
</ol></div></div></div>
<p class="p">Če to ne deluje, morda težavo povzroča Upravljalnik Omrežja. Da bi videli, če je to res, pojdite v <span class="link"><a href="unity-dash-intro.html" title="Najdite programe, datoteke, glasbo in več s Pregledno ploščo">Pregledno ploščo</a></span> in odprite Terminal. Vnesite <span class="cmd">nm-applet</span>, pritisnite <span class="key"><kbd>Enter</kbd></span> in preverite, če se pojavi omrežni meni. Če se ne pojavi, bi se morala v Terminalu pojaviti sporočila o napakah. Ta bi vam morala povedati kaj je šlo narobe, vendar bodo morda precej tehnična. Če se to zgodi, vprašajte za pomoč na podpornem forumu in vključite ta sporočila o napakah.</p>
</div>
<div class="sect sect-links" role="navigation">
<div class="hgroup"></div>
<div class="contents"><div class="links guidelinks"><div class="inner">
<div class="title"><h2><span class="title">Več podrobnosti</span></h2></div>
<div class="region"><ul><li class="links ">
<a href="net-problem.html" title="Težave z omrežjem">Težave z omrežjem</a><span class="desc"> — <span class="link"><a href="net-wireless-troubleshooting.html" title="Odpravljanje težav z brezžičnimi omrežji">Odpravljanje težav z brezžičnimi povezavami</a></span>, <span class="link"><a href="net-wireless-find.html" title="Svojega brezžičnega omrežja ne morem videti na seznamu">iskanje brezžične povezave</a></span> …</span>
</li></ul></div>
</div></div></div>
</div>
</div>
<div class="clear"></div>
</div>
</div></div></div>
<div id="footer">
<img src="https://piwik-ubuntusi.rhcloud.com/piwik.php?idsite=1&rec=1" style="border:0" alt=""><div id="siteinfo"><p>Material v tem dokumentu je na voljo pod prosto licenco. To je prevod dokumentacije Ubuntu, ki jo je sestavila <a href="https://wiki.ubuntu.com/DocumentationTeam">Ubuntu dokumentacijska ekpa za Ubuntu</a>. V slovenščino jo je prevedla skupina <a href="https://wiki.lugos.si/slovenjenje:ubuntu">Ubuntu prevajalcev</a>. Za poročanje napak v prevodih v tej dokumentaciji ali Ubuntuju pošljite sporočilo na <a href="mailto:ubuntu-l10n-slv@lists.ubuntu.com?subject=Prijava%20napak%20v%20prevodih">dopisni seznam</a>.</p></div>
</div>
</div></body>
</html>
| ubuntu-si/ubuntu.si | vodnik/15.04/net-nonm.html | HTML | mit | 5,998 |
<div class="commune_descr limited">
<p>
Montgaudry est
un village
localisé dans le département de l'Orne en Basse-Normandie. Elle comptait 116 habitants en 2008.</p>
<p>La commune compte quelques équipements sportifs, elle propose entre autres un centre d'équitation.</p>
<p>Si vous envisagez de emmenager à Montgaudry, vous pourrez aisément trouver une maison à acheter. </p>
<p>Le nombre de logements, à Montgaudry, était réparti en 2011 en zero appartements et 66 maisons soit
un marché plutôt équilibré.</p>
<p>À coté de Montgaudry sont positionnées géographiquement les communes de
<a href="{{VLROOT}}/immobilier/marollette_72188/">Marollette</a> située à 5 km, 114 habitants,
<a href="{{VLROOT}}/immobilier/chemilli_61105/">Chemilli</a> localisée à 5 km, 240 habitants,
<a href="{{VLROOT}}/immobilier/pervencheres_61327/">Pervenchères</a> à 3 km, 391 habitants,
<a href="{{VLROOT}}/immobilier/saint-quentin-de-blavou_61450/">Saint-Quentin-de-Blavou</a> localisée à 6 km, 72 habitants,
<a href="{{VLROOT}}/immobilier/sure_61476/">Suré</a> située à 4 km, 289 habitants,
<a href="{{VLROOT}}/immobilier/vidai_61502/">Vidai</a> localisée à 5 km, 72 habitants,
entre autres. De plus, Montgaudry est située à seulement 23 km de <a href="{{VLROOT}}/immobilier/alençon_61001/">Alençon</a>.</p>
</div>
| donaldinou/frontend | src/Viteloge/CoreBundle/Resources/descriptions/61286.html | HTML | mit | 1,387 |
<template name="notFound">
<div class="notFound-content">
<img src="/online/images/icon-notfound.svg" width="120" />
<strong>Oops!</strong>
<p>Ocorreu um problema, tente reabrir o aplicativo.</p>
</div>
</template> | ExperimentsMeioNorte/sismnc-app-v2 | client/notFound.html | HTML | mit | 230 |
<!doctype html>
<html class="theme-next pisces use-motion" lang="zh-Hans">
<head>
<meta charset="UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"/>
<meta http-equiv="Cache-Control" content="no-transform" />
<meta http-equiv="Cache-Control" content="no-siteapp" />
<link href="/lib/fancybox/source/jquery.fancybox.css?v=2.1.5" rel="stylesheet" type="text/css" />
<link href="//fonts.googleapis.com/css?family=Lato:300,300italic,400,400italic,700,700italic&subset=latin,latin-ext" rel="stylesheet" type="text/css">
<link href="/lib/font-awesome/css/font-awesome.min.css?v=4.6.2" rel="stylesheet" type="text/css" />
<link href="/css/main.css?v=5.1.0" rel="stylesheet" type="text/css" />
<meta name="keywords" content="Hexo, NexT" />
<link rel="alternate" href="/atom.xml" title="longgb246的博客" type="application/atom+xml" />
<link rel="shortcut icon" type="image/x-icon" href="/images/favicon.ico?v=5.1.0" />
<meta name="description" content="这个人太懒了,什么都没有留下...">
<meta property="og:type" content="website">
<meta property="og:title" content="longgb246的博客">
<meta property="og:url" content="http://yoursite.com/archives/2017/page/4/index.html">
<meta property="og:site_name" content="longgb246的博客">
<meta property="og:description" content="这个人太懒了,什么都没有留下...">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="longgb246的博客">
<meta name="twitter:description" content="这个人太懒了,什么都没有留下...">
<script type="text/javascript" id="hexo.configurations">
var NexT = window.NexT || {};
var CONFIG = {
root: '/',
scheme: 'Pisces',
sidebar: {"position":"left","display":"post"},
fancybox: true,
motion: true,
duoshuo: {
userId: '6379167083128686000',
author: 'longgb246'
},
algolia: {
applicationID: '',
apiKey: '',
indexName: '',
hits: {"per_page":10},
labels: {"input_placeholder":"Search for Posts","hits_empty":"We didn't find any results for the search: ${query}","hits_stats":"${hits} results found in ${time} ms"}
}
};
</script>
<link rel="canonical" href="http://yoursite.com/archives/2017/page/4/"/>
<title> 归档 | longgb246的博客 </title>
</head>
<body itemscope itemtype="http://schema.org/WebPage" lang="zh-Hans">
<div class="container one-collumn sidebar-position-left page-archive ">
<div class="headband"></div>
<header id="header" class="header" itemscope itemtype="http://schema.org/WPHeader">
<div class="header-inner"><div class="site-meta ">
<div class="custom-logo-site-title">
<a href="/" class="brand" rel="start">
<span class="logo-line-before"><i></i></span>
<span class="site-title">longgb246的博客</span>
<span class="logo-line-after"><i></i></span>
</a>
</div>
<p class="site-subtitle"></p>
</div>
<div class="site-nav-toggle">
<button>
<span class="btn-bar"></span>
<span class="btn-bar"></span>
<span class="btn-bar"></span>
</button>
</div>
<nav class="site-nav">
<ul id="menu" class="menu">
<li class="menu-item menu-item-home">
<a href="/" rel="section">
<i class="menu-item-icon fa fa-fw fa-home"></i> <br />
首页
</a>
</li>
<li class="menu-item menu-item-categories">
<a href="/categories" rel="section">
<i class="menu-item-icon fa fa-fw fa-th"></i> <br />
分类
</a>
</li>
<li class="menu-item menu-item-about">
<a href="/about" rel="section">
<i class="menu-item-icon fa fa-fw fa-user"></i> <br />
关于
</a>
</li>
<li class="menu-item menu-item-archives">
<a href="/archives" rel="section">
<i class="menu-item-icon fa fa-fw fa-archive"></i> <br />
归档
</a>
</li>
<li class="menu-item menu-item-tags">
<a href="/tags" rel="section">
<i class="menu-item-icon fa fa-fw fa-tags"></i> <br />
标签
</a>
</li>
<li class="menu-item menu-item-commonweal">
<a href="/404.html" rel="section">
<i class="menu-item-icon fa fa-fw fa-heartbeat"></i> <br />
公益404
</a>
</li>
<li class="menu-item menu-item-search">
<a href="javascript:;" class="popup-trigger">
<i class="menu-item-icon fa fa-search fa-fw"></i> <br />
搜索
</a>
</li>
</ul>
<div class="site-search">
<div class="popup">
<span class="search-icon fa fa-search"></span>
<input type="text" id="local-search-input">
<div id="local-search-result"></div>
<span class="popup-btn-close">close</span>
</div>
</div>
</nav>
</div>
</header>
<main id="main" class="main">
<div class="main-inner">
<div class="content-wrap">
<div id="content" class="content">
<section id="posts" class="posts-collapse">
<span class="archive-move-on"></span>
<span class="archive-page-counter">
好! 目前共计 52 篇日志。 继续努力。
</span>
<div class="collection-title">
<h2 class="archive-year motion-element" id="archive-year-2017">2017</h2>
</div>
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<header class="post-header">
<h1 class="post-title">
<a class="post-title-link" href="/2017/02/24/python_time/" itemprop="url">
<span itemprop="name">time 模块 时间格式</span>
</a>
</h1>
<div class="post-meta">
<time class="post-time" itemprop="dateCreated"
datetime="2017-02-24T12:48:11+08:00"
content="2017-02-24" >
02-24
</time>
</div>
</header>
</article>
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<header class="post-header">
<h1 class="post-title">
<a class="post-title-link" href="/2017/02/16/git_pycharm/" itemprop="url">
<span itemprop="name">pycharm的git上传</span>
</a>
</h1>
<div class="post-meta">
<time class="post-time" itemprop="dateCreated"
datetime="2017-02-16T23:47:00+08:00"
content="2017-02-16" >
02-16
</time>
</div>
</header>
</article>
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<header class="post-header">
<h1 class="post-title">
<a class="post-title-link" href="/2017/02/16/git_config/" itemprop="url">
<span itemprop="name">git配置</span>
</a>
</h1>
<div class="post-meta">
<time class="post-time" itemprop="dateCreated"
datetime="2017-02-16T23:45:40+08:00"
content="2017-02-16" >
02-16
</time>
</div>
</header>
</article>
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<header class="post-header">
<h1 class="post-title">
<a class="post-title-link" href="/2017/02/15/python_seaborn_05/" itemprop="url">
<span itemprop="name">Seaborn-05-Pairplot多变量图</span>
</a>
</h1>
<div class="post-meta">
<time class="post-time" itemprop="dateCreated"
datetime="2017-02-15T22:15:55+08:00"
content="2017-02-15" >
02-15
</time>
</div>
</header>
</article>
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<header class="post-header">
<h1 class="post-title">
<a class="post-title-link" href="/2017/02/15/python_seaborn_04/" itemprop="url">
<span itemprop="name">Seaborn-04-Jointplot两变量图</span>
</a>
</h1>
<div class="post-meta">
<time class="post-time" itemprop="dateCreated"
datetime="2017-02-15T22:15:11+08:00"
content="2017-02-15" >
02-15
</time>
</div>
</header>
</article>
</section>
<nav class="pagination">
<a class="extend prev" rel="prev" href="/archives/2017/page/3/"><i class="fa fa-angle-left"></i></a><a class="page-number" href="/archives/2017/">1</a><span class="space">…</span><a class="page-number" href="/archives/2017/page/3/">3</a><span class="page-number current">4</span><a class="page-number" href="/archives/2017/page/5/">5</a><span class="space">…</span><a class="page-number" href="/archives/2017/page/10/">10</a><a class="extend next" rel="next" href="/archives/2017/page/5/"><i class="fa fa-angle-right"></i></a>
</nav>
</div>
</div>
<div class="sidebar-toggle">
<div class="sidebar-toggle-line-wrap">
<span class="sidebar-toggle-line sidebar-toggle-line-first"></span>
<span class="sidebar-toggle-line sidebar-toggle-line-middle"></span>
<span class="sidebar-toggle-line sidebar-toggle-line-last"></span>
</div>
</div>
<aside id="sidebar" class="sidebar">
<div class="sidebar-inner">
<section class="site-overview sidebar-panel sidebar-panel-active">
<div class="site-author motion-element" itemprop="author" itemscope itemtype="http://schema.org/Person">
<img class="site-author-image" itemprop="image"
src="/images/avatar.png"
alt="longgb246" />
<p class="site-author-name" itemprop="name">longgb246</p>
<p class="site-description motion-element" itemprop="description">这个人太懒了,什么都没有留下...</p>
</div>
<nav class="site-state motion-element">
<div class="site-state-item site-state-posts">
<a href="/archives">
<span class="site-state-item-count">52</span>
<span class="site-state-item-name">日志</span>
</a>
</div>
<div class="site-state-item site-state-categories">
<a href="/categories">
<span class="site-state-item-count">9</span>
<span class="site-state-item-name">分类</span>
</a>
</div>
<div class="site-state-item site-state-tags">
<a href="/tags">
<span class="site-state-item-count">24</span>
<span class="site-state-item-name">标签</span>
</a>
</div>
</nav>
<div class="feed-link motion-element">
<a href="/atom.xml" rel="alternate">
<i class="fa fa-rss"></i>
RSS
</a>
</div>
<div class="links-of-author motion-element">
<span class="links-of-author-item">
<a href="https://github.com/longgb246" target="_blank" title="GitHub">
<i class="fa fa-fw fa-github"></i>
GitHub
</a>
</span>
<span class="links-of-author-item">
<a href="http://weibo.com/2567912207" target="_blank" title="微博">
<i class="fa fa-fw fa-weibo"></i>
微博
</a>
</span>
<span class="links-of-author-item">
<a href="http://www.jianshu.com/u/c30b3a73f940" target="_blank" title="简书">
<i class="fa fa-fw fa-pencil-square-o"></i>
简书
</a>
</span>
<span class="links-of-author-item">
<a href="http://blog.csdn.net/longgb123/article/list/1" target="_blank" title="CSDN">
<i class="fa fa-fw fa-bank"></i>
CSDN
</a>
</span>
<span class="links-of-author-item">
<a href="http://bbs.pinggu.org/home.php?mod=space&username=longgb246" target="_blank" title="经管之家">
<i class="fa fa-fw fa-bar-chart-o"></i>
经管之家
</a>
</span>
</div>
<div class="links-of-blogroll motion-element links-of-blogroll-inline">
<div class="links-of-blogroll-title">
<i class="fa fa-fw fa-globe"></i>
我的好友
</div>
<ul class="links-of-blogroll-list">
<li class="links-of-blogroll-item">
<a href="https://hyhang.github.io/" title="大抹茶君" target="_blank">大抹茶君</a>
</li>
</ul>
</div>
</section>
</div>
</aside>
</div>
</main>
<footer id="footer" class="footer">
<div class="footer-inner">
<div class="copyright" >
©
<span itemprop="copyrightYear">2017</span>
<span class="with-love">
<i class="fa fa-heart"></i>
</span>
<span class="author" itemprop="copyrightHolder">longgb246</span>
</div>
<div class="powered-by">
由 <a class="theme-link" href="https://hexo.io">Hexo</a> 强力驱动
</div>
<div class="theme-info">
主题 -
<a class="theme-link" href="https://github.com/iissnan/hexo-theme-next">
NexT.Pisces
</a>
</div>
<div class="busuanzi-count">
<script async src="https://dn-lbstatics.qbox.me/busuanzi/2.3/busuanzi.pure.mini.js"></script>
<span class="site-uv"><i class="fa fa-user"></i><span class="busuanzi-value" id="busuanzi_value_site_uv"></span></span>
<span class="site-pv"><i class="fa fa-eye"></i><span class="busuanzi-value" id="busuanzi_value_site_pv"></span></span>
</div>
</div>
</footer>
<div class="back-to-top">
<i class="fa fa-arrow-up"></i>
</div>
</div>
<script type="text/javascript">
if (Object.prototype.toString.call(window.Promise) !== '[object Function]') {
window.Promise = null;
}
</script>
<script type="text/javascript" src="/lib/jquery/index.js?v=2.1.3"></script>
<script type="text/javascript" src="/lib/fastclick/lib/fastclick.min.js?v=1.0.6"></script>
<script type="text/javascript" src="/lib/jquery_lazyload/jquery.lazyload.js?v=1.9.7"></script>
<script type="text/javascript" src="/lib/velocity/velocity.min.js?v=1.2.1"></script>
<script type="text/javascript" src="/lib/velocity/velocity.ui.min.js?v=1.2.1"></script>
<script type="text/javascript" src="/lib/fancybox/source/jquery.fancybox.pack.js?v=2.1.5"></script>
<script type="text/javascript" src="/js/src/utils.js?v=5.1.0"></script>
<script type="text/javascript" src="/js/src/motion.js?v=5.1.0"></script>
<script type="text/javascript" src="/js/src/affix.js?v=5.1.0"></script>
<script type="text/javascript" src="/js/src/schemes/pisces.js?v=5.1.0"></script>
<script type="text/javascript" id="motion.page.archive">
$('.archive-year').velocity('transition.slideLeftIn');
</script>
<script type="text/javascript" src="/js/src/bootstrap.js?v=5.1.0"></script>
<script type="text/javascript">
var duoshuoQuery = {short_name:"longgb246"};
(function() {
var ds = document.createElement('script');
ds.type = 'text/javascript';ds.async = true;
ds.id = 'duoshuo-script';
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>
<script src="/lib/ua-parser-js/dist/ua-parser.min.js?v=0.7.9"></script>
<script src="/js/src/hook-duoshuo.js?v=5.1.0"></script>
<script src="/lib/ua-parser-js/dist/ua-parser.min.js?v=0.7.9"></script>
<script src="/js/src/hook-duoshuo.js"></script>
<script type="text/javascript">
// Popup Window;
var isfetched = false;
// Search DB path;
var search_path = "search.xml";
if (search_path.length == 0) {
search_path = "search.xml";
}
var path = "/" + search_path;
// monitor main search box;
function proceedsearch() {
$("body").append('<div class="popoverlay">').css('overflow', 'hidden');
$('.popup').toggle();
}
// search function;
var searchFunc = function(path, search_id, content_id) {
'use strict';
$.ajax({
url: path,
dataType: "xml",
async: true,
success: function( xmlResponse ) {
// get the contents from search data
isfetched = true;
$('.popup').detach().appendTo('.header-inner');
var datas = $( "entry", xmlResponse ).map(function() {
return {
title: $( "title", this ).text(),
content: $("content",this).text(),
url: $( "url" , this).text()
};
}).get();
var $input = document.getElementById(search_id);
var $resultContent = document.getElementById(content_id);
$input.addEventListener('input', function(){
var matchcounts = 0;
var str='<ul class=\"search-result-list\">';
var keywords = this.value.trim().toLowerCase().split(/[\s\-]+/);
$resultContent.innerHTML = "";
if (this.value.trim().length > 1) {
// perform local searching
datas.forEach(function(data) {
var isMatch = false;
var content_index = [];
var data_title = data.title.trim().toLowerCase();
var data_content = data.content.trim().replace(/<[^>]+>/g,"").toLowerCase();
var data_url = decodeURIComponent(data.url);
var index_title = -1;
var index_content = -1;
var first_occur = -1;
// only match artiles with not empty titles and contents
if(data_title != '') {
keywords.forEach(function(keyword, i) {
index_title = data_title.indexOf(keyword);
index_content = data_content.indexOf(keyword);
if( index_title >= 0 || index_content >= 0 ){
isMatch = true;
if (i == 0) {
first_occur = index_content;
}
}
});
}
// show search results
if (isMatch) {
matchcounts += 1;
str += "<li><a href='"+ data_url +"' class='search-result-title'>"+ data_title +"</a>";
var content = data.content.trim().replace(/<[^>]+>/g,"");
if (first_occur >= 0) {
// cut out 100 characters
var start = first_occur - 20;
var end = first_occur + 80;
if(start < 0){
start = 0;
}
if(start == 0){
end = 50;
}
if(end > content.length){
end = content.length;
}
var match_content = content.substring(start, end);
// highlight all keywords
keywords.forEach(function(keyword){
var regS = new RegExp(keyword, "gi");
match_content = match_content.replace(regS, "<b class=\"search-keyword\">"+keyword+"</b>");
});
str += "<p class=\"search-result\">" + match_content +"...</p>"
}
str += "</li>";
}
})};
str += "</ul>";
if (matchcounts == 0) { str = '<div id="no-result"><i class="fa fa-frown-o fa-5x" /></div>' }
if (keywords == "") { str = '<div id="no-result"><i class="fa fa-search fa-5x" /></div>' }
$resultContent.innerHTML = str;
});
proceedsearch();
}
});}
// handle and trigger popup window;
$('.popup-trigger').click(function(e) {
e.stopPropagation();
if (isfetched == false) {
searchFunc(path, 'local-search-input', 'local-search-result');
} else {
proceedsearch();
};
});
$('.popup-btn-close').click(function(e){
$('.popup').hide();
$(".popoverlay").remove();
$('body').css('overflow', '');
});
$('.popup').click(function(e){
e.stopPropagation();
});
</script>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
tex2jax: {
inlineMath: [ ['$','$'], ["\\(","\\)"] ],
processEscapes: true,
skipTags: ['script', 'noscript', 'style', 'textarea', 'pre', 'code']
}
});
</script>
<script type="text/x-mathjax-config">
MathJax.Hub.Queue(function() {
var all = MathJax.Hub.getAllJax(), i;
for (i=0; i < all.length; i += 1) {
all[i].SourceElement().parentNode.className += ' has-jax';
}
});
</script>
<script type="text/javascript" src="//cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
<!-- 背景动画 -->
<script type="text/javascript" src="/js/src/particle.js"></script>
</body>
</html>
| longgb246/longgb246.github.io | archives/2017/page/4/index.html | HTML | mit | 23,453 |
<div class="toc">
{% for chapter in site.data.developmentChapters %}
<div class="toc-header"><i class="fa fa-{{ chapter.faIcon }}"></i> {{ chapter.label }}</div>
<{{ chapter.listType }} class="toc-body">
{% for topic in chapter.topics %}
<li class="toc-item">
{% if chapter.label != page.chapter or topic.label != page.topic %}
<a href="{{site.baseurl}}/{{page.section | slugify}}/{{page.subsection | slugify}}/{{chapter.path}}/{% if topic.path != null %}{{topic.path}}/{% endif %}">{{topic.label}}</a>
{% else %}
{{topic.label}}
<ul class="toc-body">
{% for bookmark in topic.bookmarks %}
<li class="toc-item"><a href="{{site.baseurl}}/{{page.section | slugify}}/{{page.subsection | slugify}}/{{chapter.path}}/{{topic.path}}/#{{bookmark.anchor}}">{{bookmark.label}}</a></li>
{% endfor %}
</ul>
{% endif %}
</li>
{% endfor %}
</{{ chapter.listType }}>
{% if forloop.last == false %}
<hr>
{% endif %}
{% endfor %}
</div> | unchartedsoftware/aperture-tiles | docs/src/_includes/tocs/docs-development.html | HTML | mit | 1,286 |
<html><body>
<h4>Windows 10 x64 (18363.900)</h4><br>
<h2>_ALTERNATIVE_ARCHITECTURE_TYPE</h2>
<font face="arial"> StandardDesign = 0n0<br>
NEC98x86 = 0n1<br>
EndAlternatives = 0n2<br>
</font></body></html> | epikcraw/ggool | public/Windows 10 x64 (18363.900)/_ALTERNATIVE_ARCHITECTURE_TYPE.html | HTML | mit | 218 |
<html><body>
<h4>Windows 10 x64 (18362.388)</h4><br>
<h2>_HEAP_PAGE_RANGE_DESCRIPTOR</h2>
<font face="arial"> +0x000 TreeNode : <a href="./_RTL_BALANCED_NODE.html">_RTL_BALANCED_NODE</a><br>
+0x000 TreeSignature : Uint4B<br>
+0x004 UnusedBytes : Uint4B<br>
+0x008 ExtraPresent : Pos 0, 1 Bit<br>
+0x008 Spare0 : Pos 1, 15 Bits<br>
+0x018 RangeFlags : UChar<br>
+0x019 CommittedPageCount : UChar<br>
+0x01a Spare : Uint2B<br>
+0x01c Key : <a href="./_HEAP_DESCRIPTOR_KEY.html">_HEAP_DESCRIPTOR_KEY</a><br>
+0x01c Align : [3] UChar<br>
+0x01f UnitOffset : UChar<br>
+0x01f UnitSize : UChar<br>
</font></body></html> | epikcraw/ggool | public/Windows 10 x64 (18362.388)/_HEAP_PAGE_RANGE_DESCRIPTOR.html | HTML | mit | 748 |
<!DOCTYPE html>
<html>
<head>
<title>EvilByDesign</title>
</head>
<body>
<div id="dialog" title="ENHORABUENA">
<p><font face="helvetica">ERES EL VISITANTE 999,999.
ACABAS DE GANAR UN IPHONE 6S+.
<img src="http://cdn2.gsmarena.com/vv/bigpic/apple-iphone-6-4.jpg" >
</font>
</p>
</div>
<p align="right">
<button onclick="myFunction()">Gana $ trabajando desde casa!</button>
<p>
<img src="http://proyectosdesdecasa.com/wp-content/uploads/2013/03/Trabajo-en-casa1.jpg" align="right">
<h2>CLICK EN LA IMAGEN PARA HACERTE MILLONARIO<h2>
<h4><img src= "http://23.253.163.107/wp-content/uploads/2015/05/dinero-no-da-la-felicidad.jpg" width="400" height="210"> </h4>
<script src="jquery-2.2.0.min.js">
</script>
<script src="jquery-ui.js"> </script>
<script src= "EvilByDesignjq.js">
</script>
</body>
</html> | hyuntae/webpage | JQUERY/EvilByDesign.html | HTML | mit | 879 |
<!DOCTYPE html>
<!--[if lt IE 9]><html class="no-js lt-ie9" lang="en" dir="ltr"><![endif]-->
<!--[if gt IE 8]><!-->
<html class="no-js" lang="en" dir="ltr">
<!--<![endif]-->
<!-- Usage: /eic/site/ccc-rec.nsf/tpl-eng/template-1col.html?Open&id=3 (optional: ?Open&page=filename.html&id=x) -->
<!-- Created: ; Product Code: 536; Server: stratnotes2.ic.gc.ca -->
<head>
<!-- Title begins / Début du titre -->
<title>
MEDZONE -
Complete profile - Canadian Company Capabilities - Industries and Business - Industry Canada
</title>
<!-- Title ends / Fin du titre -->
<!-- Meta-data begins / Début des métadonnées -->
<meta charset="utf-8" />
<meta name="dcterms.language" title="ISO639-2" content="eng" />
<meta name="dcterms.title" content="" />
<meta name="description" content="" />
<meta name="dcterms.description" content="" />
<meta name="dcterms.type" content="report, data set" />
<meta name="dcterms.subject" content="businesses, industry" />
<meta name="dcterms.subject" content="businesses, industry" />
<meta name="dcterms.issued" title="W3CDTF" content="" />
<meta name="dcterms.modified" title="W3CDTF" content="" />
<meta name="keywords" content="" />
<meta name="dcterms.creator" content="" />
<meta name="author" content="" />
<meta name="dcterms.created" title="W3CDTF" content="" />
<meta name="dcterms.publisher" content="" />
<meta name="dcterms.audience" title="icaudience" content="" />
<meta name="dcterms.spatial" title="ISO3166-1" content="" />
<meta name="dcterms.spatial" title="gcgeonames" content="" />
<meta name="dcterms.format" content="HTML" />
<meta name="dcterms.identifier" title="ICsiteProduct" content="536" />
<!-- EPI-11240 -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- MCG-202 -->
<meta content="width=device-width,initial-scale=1" name="viewport">
<!-- EPI-11567 -->
<meta name = "format-detection" content = "telephone=no">
<!-- EPI-12603 -->
<meta name="robots" content="noarchive">
<!-- EPI-11190 - Webtrends -->
<script>
var startTime = new Date();
startTime = startTime.getTime();
</script>
<!--[if gte IE 9 | !IE ]><!-->
<link href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/favicon.ico" rel="icon" type="image/x-icon">
<link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/wet-boew.min.css">
<!--<![endif]-->
<link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/theme.min.css">
<!--[if lt IE 9]>
<link href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/favicon.ico" rel="shortcut icon" />
<link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/ie8-wet-boew.min.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/ie8-wet-boew.min.js"></script>
<![endif]-->
<!--[if lte IE 9]>
<![endif]-->
<noscript><link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/noscript.min.css" /></noscript>
<!-- Google Tag Manager DO NOT REMOVE OR MODIFY - NE PAS SUPPRIMER OU MODIFIER -->
<script>dataLayer1 = [];</script>
<!-- End Google Tag Manager -->
<!-- EPI-11235 -->
<link rel="stylesheet" href="/eic/home.nsf/css/add_WET_4-0_Canada_Apps.css">
<link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet">
<link href="/app/ccc/srch/css/print.css" media="print" rel="stylesheet" type="text/css" />
</head>
<body class="home" vocab="http://schema.org/" typeof="WebPage">
<!-- EPIC HEADER BEGIN -->
<!-- Google Tag Manager DO NOT REMOVE OR MODIFY - NE PAS SUPPRIMER OU MODIFIER -->
<noscript><iframe title="Google Tag Manager" src="//www.googletagmanager.com/ns.html?id=GTM-TLGQ9K" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer1'?'&l='+l:'';j.async=true;j.src='//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);})(window,document,'script','dataLayer1','GTM-TLGQ9K');</script>
<!-- End Google Tag Manager -->
<!-- EPI-12801 -->
<span typeof="Organization"><meta property="legalName" content="Department_of_Industry"></span>
<ul id="wb-tphp">
<li class="wb-slc">
<a class="wb-sl" href="#wb-cont">Skip to main content</a>
</li>
<li class="wb-slc visible-sm visible-md visible-lg">
<a class="wb-sl" href="#wb-info">Skip to "About this site"</a>
</li>
</ul>
<header role="banner">
<div id="wb-bnr" class="container">
<section id="wb-lng" class="visible-md visible-lg text-right">
<h2 class="wb-inv">Language selection</h2>
<div class="row">
<div class="col-md-12">
<ul class="list-inline mrgn-bttm-0">
<li><a href="nvgt.do?V_TOKEN=1492302845901&V_SEARCH.docsCount=3&V_DOCUMENT.docRank=29922&V_SEARCH.docsStart=29921&V_SEARCH.command=navigate&V_SEARCH.resultsJSP=/prfl.do&lang=fra&redirectUrl=/app/scr/imbs/ccc/rgstrtn/rgstr.sec?_flId?_flxKy=e1s1&estblmntNo=234567041301&profileId=61&_evId=bck&lang=eng&V_SEARCH.showStricts=false&prtl=1&_flId?_flId?_flxKy=e1s1" title="Français" lang="fr">Français</a></li>
</ul>
</div>
</div>
</section>
<div class="row">
<div class="brand col-xs-8 col-sm-9 col-md-6">
<a href="http://www.canada.ca/en/index.html"><object type="image/svg+xml" tabindex="-1" data="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/sig-blk-en.svg"></object><span class="wb-inv"> Government of Canada</span></a>
</div>
<section class="wb-mb-links col-xs-4 col-sm-3 visible-sm visible-xs" id="wb-glb-mn">
<h2>Search and menus</h2>
<ul class="list-inline text-right chvrn">
<li><a href="#mb-pnl" title="Search and menus" aria-controls="mb-pnl" class="overlay-lnk" role="button"><span class="glyphicon glyphicon-search"><span class="glyphicon glyphicon-th-list"><span class="wb-inv">Search and menus</span></span></span></a></li>
</ul>
<div id="mb-pnl"></div>
</section>
<!-- Site Search Removed -->
</div>
</div>
<nav role="navigation" id="wb-sm" class="wb-menu visible-md visible-lg" data-trgt="mb-pnl" data-ajax-fetch="//cdn.canada.ca/gcweb-cdn-dev/sitemenu/sitemenu-en.html" typeof="SiteNavigationElement">
<h2 class="wb-inv">Topics menu</h2>
<div class="container nvbar">
<div class="row">
<ul class="list-inline menu">
<li><a href="https://www.canada.ca/en/services/jobs.html">Jobs</a></li>
<li><a href="http://www.cic.gc.ca/english/index.asp">Immigration</a></li>
<li><a href="https://travel.gc.ca/">Travel</a></li>
<li><a href="https://www.canada.ca/en/services/business.html">Business</a></li>
<li><a href="https://www.canada.ca/en/services/benefits.html">Benefits</a></li>
<li><a href="http://healthycanadians.gc.ca/index-eng.php">Health</a></li>
<li><a href="https://www.canada.ca/en/services/taxes.html">Taxes</a></li>
<li><a href="https://www.canada.ca/en/services.html">More services</a></li>
</ul>
</div>
</div>
</nav>
<!-- EPIC BODY BEGIN -->
<nav role="navigation" id="wb-bc" class="" property="breadcrumb">
<h2 class="wb-inv">You are here:</h2>
<div class="container">
<div class="row">
<ol class="breadcrumb">
<li><a href="/eic/site/icgc.nsf/eng/home" title="Home">Home</a></li>
<li><a href="/eic/site/icgc.nsf/eng/h_07063.html" title="Industries and Business">Industries and Business</a></li>
<li><a href="/eic/site/ccc-rec.nsf/tpl-eng/../eng/home" >Canadian Company Capabilities</a></li>
</ol>
</div>
</div>
</nav>
</header>
<main id="wb-cont" role="main" property="mainContentOfPage" class="container">
<!-- End Header -->
<!-- Begin Body -->
<!-- Begin Body Title -->
<!-- End Body Title -->
<!-- Begin Body Head -->
<!-- End Body Head -->
<!-- Begin Body Content -->
<br>
<!-- Complete Profile -->
<!-- Company Information above tabbed area-->
<input id="showMore" type="hidden" value='more'/>
<input id="showLess" type="hidden" value='less'/>
<h1 id="wb-cont">
Company profile - Canadian Company Capabilities
</h1>
<div class="profileInfo hidden-print">
<ul class="list-inline">
<li><a href="cccSrch.do?lang=eng&profileId=&prtl=1&key.hitsPerPage=25&searchPage=%252Fapp%252Fccc%252Fsrch%252FcccBscSrch.do%253Flang%253Deng%2526amp%253Bprtl%253D1%2526amp%253Btagid%253D&V_SEARCH.scopeCategory=CCC.Root&V_SEARCH.depth=1&V_SEARCH.showStricts=false&V_SEARCH.sortSpec=title+asc&rstBtn.x=" class="btn btn-link">New Search</a> |</li>
<li><form name="searchForm" method="post" action="/app/ccc/srch/bscSrch.do">
<input type="hidden" name="lang" value="eng" />
<input type="hidden" name="profileId" value="" />
<input type="hidden" name="prtl" value="1" />
<input type="hidden" name="searchPage" value="%2Fapp%2Fccc%2Fsrch%2FcccBscSrch.do%3Flang%3Deng%26amp%3Bprtl%3D1%26amp%3Btagid%3D" />
<input type="hidden" name="V_SEARCH.scopeCategory" value="CCC.Root" />
<input type="hidden" name="V_SEARCH.depth" value="1" />
<input type="hidden" name="V_SEARCH.showStricts" value="false" />
<input id="repeatSearchBtn" class="btn btn-link" type="submit" value="Return to search results" />
</form></li>
<li>| <a href="nvgt.do?V_SEARCH.docsStart=29920&V_DOCUMENT.docRank=29921&V_SEARCH.docsCount=3&lang=eng&prtl=1&sbPrtl=&profile=cmpltPrfl&V_TOKEN=1492302876200&V_SEARCH.command=navigate&V_SEARCH.resultsJSP=%2fprfl.do&estblmntNo=234567064610&profileId=&key.newSearchLabel=">Previous Company</a></li>
<li>| <a href="nvgt.do?V_SEARCH.docsStart=29922&V_DOCUMENT.docRank=29923&V_SEARCH.docsCount=3&lang=eng&prtl=1&sbPrtl=&profile=cmpltPrfl&V_TOKEN=1492302876200&V_SEARCH.command=navigate&V_SEARCH.resultsJSP=%2fprfl.do&estblmntNo=123456102326&profileId=&key.newSearchLabel=">Next Company</a></li>
</ul>
</div>
<details>
<summary>Third-Party Information Liability Disclaimer</summary>
<p>Some of the information on this Web page has been provided by external sources. The Government of Canada is not responsible for the accuracy, reliability or currency of the information supplied by external sources. Users wishing to rely upon this information should consult directly with the source of the information. Content provided by external sources is not subject to official languages, privacy and accessibility requirements.</p>
</details>
<h2>
MEDZONE
</h2>
<div class="row">
<div class="col-md-5">
<h2 class="h5 mrgn-bttm-0">Legal/Operating Name:</h2>
<p>MEDZONE</p>
<div class="mrgn-tp-md"></div>
<p class="mrgn-bttm-0" ><a href="http://www.medzone.ca"
target="_blank" title="Website URL">http://www.medzone.ca</a></p>
<p><a href="mailto:medzone@medzone.ca" title="medzone@medzone.ca">medzone@medzone.ca</a></p>
</div>
<div class="col-md-4 mrgn-sm-sm">
<h2 class="h5 mrgn-bttm-0">Mailing Address:</h2>
<address class="mrgn-bttm-md">
162 Andover Rd<br/>
BEACONSFIELD,
Quebec<br/>
H9W 2Z7
<br/>
</address>
<h2 class="h5 mrgn-bttm-0">Location Address:</h2>
<address class="mrgn-bttm-md">
162 Andover Rd<br/>
BEACONSFIELD,
Quebec<br/>
H9W 2Z7
<br/>
</address>
<p class="mrgn-bttm-0"><abbr title="Telephone">Tel.</abbr>:
(514) 426-9948
</p>
<p class="mrgn-bttm-lg"><abbr title="Facsimile">Fax</abbr>:
</p>
</div>
<div class="col-md-3 mrgn-tp-md">
</div>
</div>
<div class="row mrgn-tp-md mrgn-bttm-md">
<div class="col-md-12">
<h2 class="wb-inv">Company Profile</h2>
<br> We are a Montreal-based, bilingual firm offering support services in medical marketing to Canadian pharmaceutical companies and medical organizations. Our core expertise is strategic and creative leadership for training and educaitonal programming. We also organize and animate International and local advisory boards, investigator meetings, workshops, annual congresses, educational materials, etc. In response to client requests, MEDZONE's main services have evolved to include general marketing support for small to large healthcare organizations that depend on outsourcers to:
<br>Manage complex projects, overcome shortages in personnel and workload surges, optimize in-house expertise. We are dedicated to helping its healthcare clients create innovative business development projects that foster lasting relationships with the medical community, stimulate scientific discussions and lead to new opportunities for sales.<br>
</div>
</div>
<!-- <div class="wb-tabs ignore-session update-hash wb-eqht-off print-active"> -->
<div class="wb-tabs ignore-session">
<div class="tabpanels">
<details id="details-panel1">
<summary>
Full profile
</summary>
<!-- Tab 1 -->
<h2 class="wb-invisible">
Full profile
</h2>
<!-- Contact Information -->
<h3 class="page-header">
Contact information
</h3>
<section class="container-fluid">
<div class="row mrgn-tp-lg">
<div class="col-md-3">
<strong>
Erin
Stashin
</strong></div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Title:
</strong>
</div>
<div class="col-md-7">
<!--if client gender is not null or empty we use gender based job title-->
President
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Area of Responsibility:
</strong>
</div>
<div class="col-md-7">
Management Executive.
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Telephone:
</strong>
</div>
<div class="col-md-7">
(514) 426-9948
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
medzone@medzone.ca
</div>
</div>
</section>
<p class="mrgn-tp-lg text-right small hidden-print">
<a href="#wb-cont">top of page</a>
</p>
<!-- Company Description -->
<h3 class="page-header">
Company description
</h3>
<section class="container-fluid">
<div class="row">
<div class="col-md-5">
<strong>
Country of Ownership:
</strong>
</div>
<div class="col-md-7">
Canada
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Exporting:
</strong>
</div>
<div class="col-md-7">
No
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Primary Industry (NAICS):
</strong>
</div>
<div class="col-md-7">
541690 - Other Scientific and Technical Consulting Services
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Alternate Industries (NAICS):
</strong>
</div>
<div class="col-md-7">
541611 - Administrative Management and General Management Consulting Services<br>
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Primary Business Activity:
</strong>
</div>
<div class="col-md-7">
Services
</div>
</div>
</section>
<!-- Products / Services / Licensing -->
<h3 class="page-header">
Product / Service / Licensing
</h3>
<section class="container-fluid">
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Service Name:
</strong>
</div>
<div class="col-md-9">
CME and marketing Support<br>
</div>
</div>
</section>
<p class="mrgn-tp-lg text-right small hidden-print">
<a href="#wb-cont">top of page</a>
</p>
<!-- Technology Profile -->
<!-- Market Profile -->
<!-- Sector Information -->
<details class="mrgn-tp-md mrgn-bttm-md">
<summary>
Third-Party Information Liability Disclaimer
</summary>
<p>
Some of the information on this Web page has been provided by external sources. The Government of Canada is not responsible for the accuracy, reliability or currency of the information supplied by external sources. Users wishing to rely upon this information should consult directly with the source of the information. Content provided by external sources is not subject to official languages, privacy and accessibility requirements.
</p>
</details>
</details>
<details id="details-panel2">
<summary>
Contacts
</summary>
<h2 class="wb-invisible">
Contact information
</h2>
<!-- Contact Information -->
<section class="container-fluid">
<div class="row mrgn-tp-lg">
<div class="col-md-3">
<strong>
Erin
Stashin
</strong></div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Title:
</strong>
</div>
<div class="col-md-7">
<!--if client gender is not null or empty we use gender based job title-->
President
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Area of Responsibility:
</strong>
</div>
<div class="col-md-7">
Management Executive.
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Telephone:
</strong>
</div>
<div class="col-md-7">
(514) 426-9948
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
medzone@medzone.ca
</div>
</div>
</section>
</details>
<details id="details-panel3">
<summary>
Description
</summary>
<h2 class="wb-invisible">
Company description
</h2>
<section class="container-fluid">
<div class="row">
<div class="col-md-5">
<strong>
Country of Ownership:
</strong>
</div>
<div class="col-md-7">
Canada
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Exporting:
</strong>
</div>
<div class="col-md-7">
No
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Primary Industry (NAICS):
</strong>
</div>
<div class="col-md-7">
541690 - Other Scientific and Technical Consulting Services
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Alternate Industries (NAICS):
</strong>
</div>
<div class="col-md-7">
541611 - Administrative Management and General Management Consulting Services<br>
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Primary Business Activity:
</strong>
</div>
<div class="col-md-7">
Services
</div>
</div>
</section>
</details>
<details id="details-panel4">
<summary>
Products, services and licensing
</summary>
<h2 class="wb-invisible">
Product / Service / Licensing
</h2>
<section class="container-fluid">
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Service Name:
</strong>
</div>
<div class="col-md-9">
CME and marketing Support<br>
</div>
</div>
</section>
</details>
</div>
</div>
<div class="row">
<div class="col-md-12 text-right">
Last Update Date 2016-03-10
</div>
</div>
<!--
- Artifact ID: CBW - IMBS - CCC Search WAR
- Group ID: ca.gc.ic.strategis.imbs.ccc.search
- Version: 3.26
- Built-By: bamboo
- Build Timestamp: 2017-03-02T21:29:28Z
-->
<!-- End Body Content -->
<!-- Begin Body Foot -->
<!-- End Body Foot -->
<!-- END MAIN TABLE -->
<!-- End body -->
<!-- Begin footer -->
<div class="row pagedetails">
<div class="col-sm-5 col-xs-12 datemod">
<dl id="wb-dtmd">
<dt class=" hidden-print">Date Modified:</dt>
<dd class=" hidden-print">
<span><time>2017-03-02</time></span>
</dd>
</dl>
</div>
<div class="clear visible-xs"></div>
<div class="col-sm-4 col-xs-6">
</div>
<div class="col-sm-3 col-xs-6 text-right">
</div>
<div class="clear visible-xs"></div>
</div>
</main>
<footer role="contentinfo" id="wb-info">
<nav role="navigation" class="container wb-navcurr">
<h2 class="wb-inv">About government</h2>
<!-- EPIC FOOTER BEGIN -->
<!-- EPI-11638 Contact us -->
<ul class="list-unstyled colcount-sm-2 colcount-md-3">
<li><a href="http://www.ic.gc.ca/eic/site/icgc.nsf/eng/h_07026.html#pageid=E048-H00000&from=Industries">Contact us</a></li>
<li><a href="https://www.canada.ca/en/government/dept.html">Departments and agencies</a></li>
<li><a href="https://www.canada.ca/en/government/publicservice.html">Public service and military</a></li>
<li><a href="https://www.canada.ca/en/news.html">News</a></li>
<li><a href="https://www.canada.ca/en/government/system/laws.html">Treaties, laws and regulations</a></li>
<li><a href="https://www.canada.ca/en/transparency/reporting.html">Government-wide reporting</a></li>
<li><a href="http://pm.gc.ca/eng">Prime Minister</a></li>
<li><a href="https://www.canada.ca/en/government/system.html">How government works</a></li>
<li><a href="http://open.canada.ca/en/">Open government</a></li>
</ul>
</nav>
<div class="brand">
<div class="container">
<div class="row">
<nav class="col-md-10 ftr-urlt-lnk">
<h2 class="wb-inv">About this site</h2>
<ul>
<li><a href="https://www.canada.ca/en/social.html">Social media</a></li>
<li><a href="https://www.canada.ca/en/mobile.html">Mobile applications</a></li>
<li><a href="http://www1.canada.ca/en/newsite.html">About Canada.ca</a></li>
<li><a href="http://www.ic.gc.ca/eic/site/icgc.nsf/eng/h_07033.html">Terms and conditions</a></li>
<li><a href="http://www.ic.gc.ca/eic/site/icgc.nsf/eng/h_07033.html#p1">Privacy</a></li>
</ul>
</nav>
<div class="col-xs-6 visible-sm visible-xs tofpg">
<a href="#wb-cont">Top of Page <span class="glyphicon glyphicon-chevron-up"></span></a>
</div>
<div class="col-xs-6 col-md-2 text-right">
<object type="image/svg+xml" tabindex="-1" role="img" data="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/wmms-blk.svg" aria-label="Symbol of the Government of Canada"></object>
</div>
</div>
</div>
</div>
</footer>
<!--[if gte IE 9 | !IE ]><!-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/wet-boew.min.js"></script>
<!--<![endif]-->
<!--[if lt IE 9]>
<script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/ie8-wet-boew2.min.js"></script>
<![endif]-->
<script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/theme.min.js"></script>
<!-- EPI-10519 -->
<span class="wb-sessto"
data-wb-sessto='{"inactivity": 1800000, "reactionTime": 180000, "sessionalive": 1800000, "logouturl": "/app/ccc/srch/cccSrch.do?lang=eng&prtl=1"}'></span>
<script src="/eic/home.nsf/js/jQuery.externalOpensInNewWindow.js"></script>
<!-- EPI-11190 - Webtrends -->
<script src="/eic/home.nsf/js/webtrends.js"></script>
<script>var endTime = new Date();</script>
<noscript>
<div><img alt="" id="DCSIMG" width="1" height="1" src="//wt-sdc.ic.gc.ca/dcs6v67hwe0ei7wsv8g9fv50d_3k6i/njs.gif?dcsuri=/nojavascript&WT.js=No&WT.tv=9.4.0&dcssip=www.ic.gc.ca"/></div>
</noscript>
<!-- /Webtrends -->
<!-- JS deps -->
<script src="/eic/home.nsf/js/jquery.imagesloaded.js"></script>
<!-- EPI-11262 - Util JS -->
<script src="/eic/home.nsf/js/_WET_4-0_utils_canada.min.js"></script>
<!-- EPI-11383 -->
<script src="/eic/home.nsf/js/jQuery.icValidationErrors.js"></script>
<span style="display:none;" id='app-info' data-project-groupid='' data-project-artifactid='' data-project-version='' data-project-build-timestamp='' data-issue-tracking='' data-scm-sha1='' data-scm-sha1-abbrev='' data-scm-branch='' data-scm-commit-date=''></span>
</body></html>
<!-- End Footer -->
<!--
- Artifact ID: CBW - IMBS - CCC Search WAR
- Group ID: ca.gc.ic.strategis.imbs.ccc.search
- Version: 3.26
- Built-By: bamboo
- Build Timestamp: 2017-03-02T21:29:28Z
-->
| GoC-Spending/data-corporations | html/234567087774.html | HTML | mit | 34,636 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="robots" content="index, follow, all" />
<title>HealthCareAbroad\LogBundle\Exception | HealthCareAbroad API</title>
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
</head>
</html>
| richtermarkbaay/MEDTrip | doc/HealthCareAbroad/LogBundle/Exception/namespace-frame.html | HTML | mit | 363 |
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>Coverr | Suriyaa Kudo</title>
<!--<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css"/>-->
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700,800' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="http://www.coverr.co/css/bootstrap.min.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<link rel="stylesheet" href="style.css"/>
</head>
<body>
<div class="homepage-hero-module">
<div class="video-container">
<div class="filter"></div>
<video autoplay loop class="fillWidth">
<source src="https://s3-us-west-2.amazonaws.com/coverr/mp4/Hello-World.mp4" type="video/mp4" />Your browser does not support the video tag. I suggest you upgrade your browser.
<source src="https://s3-us-west-2.amazonaws.com/coverr/webm/Hello-World.webm" type="video/webm" />Your browser does not support the video tag. I suggest you upgrade your browser.
</video>
<div class="poster hidden">
<img src="https://s3-us-west-2.amazonaws.com/coverr/poster/Hello-World.jpg" alt="">
</div>
</div>
</div>
<script src="javascript.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.isotope/2.2.0/isotope.pkgd.min.js"></script>
</body>
</html>
| iSC-Host/suriyaa.me | tests/coverr/index.html | HTML | mit | 1,649 |
<!DOCTYPE html>
<html>
<head>
<title>MS GPD Hackday</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<style>
body {
font-family: 'Segoe UI',Verdana, Arial;
}
.button {
border: none 1px #cccccc;
width: 100px;
text-align: center;
padding: 2px 5px 6px 5px;
margin:1px;
display: inline-block;
color: #cccccc;
}
.button:active {
background-color: #cccccc;
color: #ffffff;
}
.button:hover {
margin: 0px;
border: solid 1px #cccccc;
}
#countdown {
text-align: center;
font-size: 400px;
line-height:350px;
}
#content {
margin-top: 50px;
text-align: center;
}
</style>
</head>
<body>
<div id="content">
<div id="doDemo" class="button">Presentation</div>
<div id="pause" class="button">Pause</div>
<div id="resume" class="button">Resume</div>
<div id="doQnA" class="button">Q & A</div>
</div>
<div id="content">
<img src="HackdayLogoBig.png" width="500" />
</div>
<div id="countdown">0:00</div>
<script>
var Timer = (function ($) {
var interval = 1000;
var warnBuffer = 5000; //60000 = 1 min
var timer = null;
var currentTime = null;
var endTime = null;
// gui bindings
var guiBody = $('body');
var guiTimer = $('#countdown');
var guiPause = $('#pause').hide();
var guiResume = $('#resume').hide();
// gui methods
var SetReadyDisplay = function () {
guiResume.hide();
guiPause.show();
guiBody.css('background-color', 'white');
guiTimer.css('color', '#000000');
}
var setWarnDisplay = function () {
guiBody.css('background-color', 'red');
guiTimer.css('color', '#ffffff');
}
var setDisplay = function (minutes, seconds) {
guiTimer.html(
//(minutes < 10 ? '0' : '') +
minutes + ':'
+ (seconds < 10 ? '0' : '') + seconds);
}
var pause = function () {
clearInterval(timer);
guiPause.hide();
guiResume.show();
};
var resume = function () {
setInterval(function () { doTimerUpdate() }, interval);
guiPause.show();
guiResume.hide();
};
// Timer methods
var doTimerUpdate = function () {
// Run till endTime
if (currentTime + interval >= endTime)
{
setDisplay(0, 0);
clearInterval(timer);
}
currentTime += interval;
if (currentTime >= (endTime - warnBuffer))
{
setWarnDisplay();
}
// Update gui
var time = new Date();
time.setTime(endTime - currentTime);
setDisplay(time.getMinutes(), time.getSeconds());
};
var start = function (event)
{
if (timer != null) { clearInterval(timer);}
SetReadyDisplay();
currentTime = (new Date()).getTime();
endTime = (new Date()).getTime() + event.data.timeOut;
timer = setInterval(function () { doTimerUpdate() }, interval);
};
return {
pause: pause,
resume: resume,
start: start
};
})(jQuery);
jQuery('#pause').on('click', Timer.pause);
jQuery('#resume').on('click', Timer.resume);
jQuery('#doDemo').on('click', { timeOut: 10000 }, Timer.start);
jQuery('#doQnA').on('click', { timeOut: 180000 }, Timer.start);
</script>
</body>
</html>
| Lexcess/Scratch | countdown.html | HTML | mit | 4,304 |
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" type="image/png" href="assets/img/favicon.ico">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title>Dashboard - {{regno}}</title>
<meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0' name='viewport' />
<meta name="viewport" content="width=device-width" />
<!-- Bootstrap core CSS -->
<!-- <link href="assets/css/bootstrap.min.css" rel="stylesheet" /> -->
<link href= "{{ url_for('static',filename='css/bootstrap.min.css') }}" rel="stylesheet">
<!-- Animation library for notifications -->
<!-- <link href="assets/css/animate.min.css" rel="stylesheet" /> -->
<link href= "{{ url_for('static',filename='assets/css/animate.min.css') }}" rel="stylesheet">
<!-- Light Bootstrap Table core CSS -->
<!-- <link href="assets/css/light-bootstrap-dashboard.css" rel="stylesheet" /> -->
<link href= "{{ url_for('static',filename='assets/css/light-bootstrap-dashboard.css') }}" rel="stylesheet">
<!-- CSS for Demo Purpose, don't include it in your project -->
<!-- <link href="assets/css/demo.css" rel="stylesheet" /> -->
<link href= "{{ url_for('static',filename='assets/css/demo.css') }}" rel="stylesheet">
<!-- Fonts and icons -->
<link href="http://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<link href='http://fonts.googleapis.com/css?family=Roboto:400,700,300' rel='stylesheet' type='text/css'>
<link href="{{ url_for('static',filename='assets/css/pe-icon-7-stroke.css') }}" rel="stylesheet" />
<script src='https://cdnjs.cloudflare.com/ajax/libs/Chart.js/1.0.2/Chart.min.js'></script>
</head>
<body>
<div class="wrapper">
<div class="sidebar" data-color="purple" data-image="{{ url_for('static',filename='assets/img/sidebar-5.jpg') }}">
<!--
Tip 1: you can change the color of the sidebar using: data-color="blue | azure | green | orange | red | purple"
Tip 2: you can also add an image using data-image tag
-->
<div class="sidebar-wrapper">
<div class="logo">
<a href="#" class="simple-text">
{{regno}}
</a>
</div>
<ul class="nav">
<li>
<a href="dashboard">
<i class="pe-7s-graph"></i>
<p>Attendance</p>
</a>
</li>
<li>
<a href="timetable">
<i class="pe-7s-user"></i>
<p>Time Table</p>
</a>
</li>
<li class="active">
<a href="marks">
<i class="pe-7s-user"></i>
<p>Marks</p>
</a>
</li>
<li>
<a href="history">
<i class="pe-7s-user"></i>
<p>Academic History</p>
</a>
</li>
<li>
<a href="plan">
<i class="pe-7s-user"></i>
<p>Plan Timetable</p>
</a>
</li>
</ul>
</div>
</div>
<div class="main-panel">
<nav class="navbar navbar-default navbar-fixed">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navigation-example-2">
<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="#">Attendance Menu</a>
</div>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav navbar-right">
<li>
<a href="/">
<p>Log out</p>
</a>
</li>
<li class="separator hidden-lg hidden-md"></li>
</ul>
</div>
</div>
</nav>
<div class="content">
<div class="container-fluid">
<div class="row">
<div class="col-md-4">
<div class="card">
<div class="header">
<h4 class="title">Attendance Statistics</h4>
<p class="category">Current Performance</p>
</div>
<div class="content">
<div id="chartPreferences" class="ct-chart ct-perfect-fourth"></div>
<div class="footer">
<div class="legend">
<i class="fa fa-circle text-info"></i> Barred Subjects
<i class="fa fa-circle text-warning"></i> Debarred Subjects
</div>
<hr>
<div class="stats">
<i class="fa fa-clock-o"></i> Campaign sent today
</div>
</div>
</div>
</div>
</div>
<div class="col-md-8">
<div class="card ">
<div class="header">
<h4 class="title">Subject Wise Attendance</h4>
<p class="category">Current Status</p>
</div>
<div class="content">
<div id="chartActivity" class="ct-chart"></div>
<div class="footer">
<div class="legend">
<i class="fa fa-circle text-info"></i> Current Attendance
<i class="fa fa-circle text-danger"></i> Missed Class Projection
</div>
<hr>
<div class="stats">
<i class="fa fa-check"></i> Data information verified
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="card">
<div class="header">
<h4 class="title">Subject Wise Attendance</h4>
<p class="category">Classes you can miss/ need to go</p>
</div>
<div class="content table-responsive table-full-width">
<table class="table table-hover table-striped">
<thead>
<th>Course Code</th>
<th>Course Name</th>
<th>Course Type</th>
<th>Current(%)</th>
<th>Attend(%)</th>
<th>Miss(%)</th>
<th>Can Miss</th>
<th>Need to Attend</th>
</thead>
<tbody>
{% for j in resultsT %}
<tr>
{% for i in j %}
<td>{{i}}</td>
{% endfor %}
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
<footer class="footer">
<div class="container-fluid">
<nav class="pull-left">
<ul>
<li>
<a href="#">
Home
</a>
</li>
<li>
<a href="#">
Github
</a>
</li>
</ul>
</nav>
<p class="copyright pull-right">
©
<script>
document.write(new Date().getFullYear())
</script> <a href="http://www.github.com/inderpartap">FFCS Scheduler</a>, made with love by Inderpartap Cheema, Raghav Kakkar, Sudhanva Devanathan
</p>
</div>
</footer>
</div>
</div>
</body>
<!-- Core JS Files -->
<!-- <script src="assets/js/jquery-1.10.2.js" type="text/javascript"></script> -->
<script src="{{ url_for('static',filename='assets/js/jquery-1.10.2.js') }}"></script>
<!-- <script src="assets/js/bootstrap.min.js" type="text/javascript"></script> -->
<script src="{{ url_for('static',filename='assets/js/bootstrap.min.js') }}"></script>
<!-- Checkbox, Radio & Switch Plugins -->
<!-- <script src="assets/js/bootstrap-checkbox-radio-switch.js"></script> -->
<script src="{{ url_for('static',filename='assets/js/bootstrap-checkbox-radio-switch.js') }}"></script>
<!-- Charts Plugin -->
<!-- <script src="assets/js/chartist.min.js"></script> -->
<script src="{{ url_for('static',filename='assets/js/chartist.min.js') }}"></script>
<!-- Notifications Plugin -->
<!-- <script src="assets/js/bootstrap-notify.js"></script> -->
<script src="{{ url_for('static',filename='assets/js/bootstrap-notify.js') }}"></script>
<!-- Light Bootstrap Table Core javascript and methods for Demo purpose -->
<!-- <script src="assets/js/light-bootstrap-dashboard.js"></script> -->
<script src="{{ url_for('static',filename='assets/js/light-bootstrap-dashboard.js') }}"></script>
<!-- Light Bootstrap Table DEMO methods, don't include it in your project! -->
<!-- <script src="assets/js/demo.js"></script> -->
<!-- <script src="{{ url_for('static',filename='assets/js/demo.js') }}"></script> -->
<script type="text/javascript">
$(document).ready(function() {
demo.initChartist();
$.notify({
icon: 'pe-7s-gift',
message: "Welcome to <b>FFCS Scheduler</b> - a beautiful app to help you organise your day."
}, {
type: 'info',
timer: 5000
});
});
</script>
<script type="text/javascript">
type = ['','info','success','warning','danger'];
demo = {
initPickColor: function(){
$('.pick-class-label').click(function(){
var new_class = $(this).attr('new-class');
var old_class = $('#display-buttons').attr('data-class');
var display_div = $('#display-buttons');
if(display_div.length) {
var display_buttons = display_div.find('.btn');
display_buttons.removeClass(old_class);
display_buttons.addClass(new_class);
display_div.attr('data-class', new_class);
}
});
},
initChartist: function(){
var data = {
labels: [{% for i in range(length-1) %}'{{results[0][i]}}',{% endfor %}'{{results[0][length-1]}}'],
series: [
[{% for i in range(length-1) %}{{results[3][i]}},{% endfor %}{{results[3][length-1]}}],
[{% for i in range(length-1) %}{{results[5][i]}},{% endfor %}{{results[5][length-1]}}]
]
};
var options = {
seriesBarDistance: 10,
axisX: {
showGrid: false
},
height: "245px"
};
var responsiveOptions = [
['screen and (max-width: 640px)', {
seriesBarDistance: 5,
axisX: {
labelInterpolationFnc: function (value) {
return value[0];
}
}
}]
];
Chartist.Bar('#chartActivity', data, options, responsiveOptions);
},
showNotification: function(from, align){
color = Math.floor((Math.random() * 4) + 1);
$.notify({
icon: "pe-7s-gift",
message: "WWelcome to <b>FFCS Scheduler</b> - a beautiful app to help you organise your day."
},{
type: type[color],
timer: 4000,
placement: {
from: from,
align: align
}
});
}
}
</script>
</html> | inderpartap/Bunk-O-Meter | templates/marks.html | HTML | mit | 14,071 |
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Playground Demo</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
</head>
<body>
<!--[if lt IE 8]>
<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 id="content">
<h1>If you can see this, something is broken (or JS is not enabled)!!.</h1>
</div>
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/codemirror/5.0.0/codemirror.min.js"></script>
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/codemirror/5.0.0/mode/javascript/javascript.min.js"></script>
<script type="text/javascript" src="assets/main.js"></script>
<!--[if lt IE 9]>
<script src="//cdnjs.cloudflare.com/ajax/libs/es5-shim/4.1.7/es5-shim.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/es5-shim/4.1.7/es5-sham.min.js"></script>
<![endif]-->
</body>
</html>
| subschema/component-playground | demo/index.html | HTML | mit | 1,188 |
<div class="row">
<nav class="navbar navbar-default">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" routerLink="/">MEAN Auth App</a>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav navbar-right">
<li *ngIf="authService.isLoggedIn()" routerLinkActive="active">
<a routerLink="/dashboard">Dashboard</a>
</li>
<li *ngIf="authService.isLoggedIn()" routerLinkActive="active">
<a routerLink="/profile">Profile</a>
</li>
<li *ngIf="!authService.isLoggedIn()" routerLinkActive="active">
<a routerLink="/login">Login</a>
</li>
<li *ngIf="!authService.isLoggedIn()" routerLinkActive="active">
<a routerLink="/register">Register</a>
</li>
<li *ngIf="authService.isLoggedIn()" routerLinkActive="active">
<a href="#" (click)="onLogoutClick()">Logout</a>
</li>
</ul>
</div>
<!--/.nav-collapse -->
</div>
<!--/.container-fluid -->
</nav>
</div> | roeibh/meanauthapp | angular-src/src/app/components/navbar/navbar.component.html | HTML | mit | 1,133 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>paco: 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.5.2 / paco - 2.1.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
paco
<small>
2.1.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-01-04 10:12:16 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-01-04 10:12:16 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-ocamlbuild base OCamlbuild binary and libraries distributed with the OCaml compiler
base-threads base
base-unix base
camlp5 7.14 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-perl 1 Virtual package relying on perl
coq 8.5.2 Formal proof management system
num 0 The Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.02.3 The OCaml compiler (virtual package)
ocaml-base-compiler 4.02.3 Official 4.02.3 release
ocaml-config 1 OCaml Switch Configuration
# opam file:
opam-version: "2.0"
maintainer: "paco@sf.snu.ac.kr"
version: "2.1.0"
homepage: "https://github.com/snu-sf/paco/"
dev-repo: "git+https://github.com/snu-sf/paco.git"
bug-reports: "https://github.com/snu-sf/paco/issues/"
authors: [
"Chung-Kil Hur <gil.hur@sf.snu.ac.kr>"
"Georg Neis <neis@mpi-sws.org>"
"Derek Dreyer <dreyer@mpi-sws.org>"
"Viktor Vafeiadis <viktor@mpi-sws.org>"
]
license: "BSD-3"
build: [
[make "-C" "src" "all" "-j%{jobs}%"]
]
install: [
[make "-C" "src" "-f" "Makefile.coq" "install"]
]
remove: ["rm" "-r" "-f" "%{lib}%/coq/user-contrib/Paco"]
depends: [
"ocaml"
"coq" {>= "8.6" & < "8.10"}
]
synopsis: "Coq library implementing parameterized coinduction"
tags: [
"date:2018-02-11"
"category:Computer Science/Programming Languages/Formal Definitions and Theory"
"category:Mathematics/Logic"
"keyword:co-induction"
"keyword:simulation"
"keyword:parameterized greatest fixed point"
]
flags: light-uninstall
url {
src: "https://github.com/snu-sf/paco/archive/v2.1.0.tar.gz"
checksum: "md5=c5afc7e9885446b7b0399e0c59e8a520"
}
</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-paco.2.1.0 coq.8.5.2</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.5.2).
The following dependencies couldn't be met:
- coq-paco -> coq >= 8.6 -> ocaml >= 4.05.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-paco.2.1.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.02.3-2.0.6/released/8.5.2/paco/2.1.0.html | HTML | mit | 7,345 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_65) on Sat Jun 11 13:21:06 CEST 2016 -->
<title>Individual</title>
<meta name="date" content="2016-06-11">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
<script type="text/javascript" src="script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Individual";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/Individual.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="deprecated-list.html">Deprecated</a></li>
<li><a href="index-files/index-1.html">Index</a></li>
<li><a href="help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="EvoTSP.html" title="class in <Unnamed>"><span class="typeNameLink">Prev Class</span></a></li>
<li><a href="Population.html" title="class in <Unnamed>"><span class="typeNameLink">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="index.html?Individual.html" target="_top">Frames</a></li>
<li><a href="Individual.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="#methods.inherited.from.class.java.lang.Object">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li><a href="#constructor.detail">Constr</a> | </li>
<li>Method</li>
</ul>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<h2 title="Class Individual" class="title">Class Individual</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li>Individual</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<hr>
<br>
<pre>public class <span class="typeNameLabel">Individual</span>
extends java.lang.Object</pre>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor.summary">
<!-- -->
</a>
<h3>Constructor Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
<caption><span>Constructors</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="Individual.html#Individual--">Individual</a></span>()</code> </td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method.summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class java.lang.Object</h3>
<code>equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor.detail">
<!-- -->
</a>
<h3>Constructor Detail</h3>
<a name="Individual--">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>Individual</h4>
<pre>public Individual()</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>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/Individual.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="deprecated-list.html">Deprecated</a></li>
<li><a href="index-files/index-1.html">Index</a></li>
<li><a href="help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="EvoTSP.html" title="class in <Unnamed>"><span class="typeNameLink">Prev Class</span></a></li>
<li><a href="Population.html" title="class in <Unnamed>"><span class="typeNameLink">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="index.html?Individual.html" target="_top">Frames</a></li>
<li><a href="Individual.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="#methods.inherited.from.class.java.lang.Object">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li><a href="#constructor.detail">Constr</a> | </li>
<li>Method</li>
</ul>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>
| pfeifenheini/javaProjects | ALife-EvoTSP/doc/Individual.html | HTML | mit | 7,158 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<link rel="shortcut icon" href="favicon.ico">
<title>Henry Heath</title>
<!-- Bootstrap core CSS -->
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="custom.css" rel="stylesheet">
</head>
<body>
<div class="container">
<!-- Static navbar -->
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="./index.html">Henry Heath</a>
</div>
<div class="navbar-collapse collapse content">
<ul class="nav navbar-nav">
<li><a href="#work">Work</a></li>
<li><a href="#interests">Interests</a></li>
<li><a href="#education">Education</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="HenryHeathCV.pdf">CV</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div><!--/.nav-collapse -->
</div><!--/.container-fluid -->
</div>
<div class="row section">
<div class="col-md-4 content">
<img src="./images/me.jpg" class="img-circle"/>
</div>
<div class="col-md-1 content">
</div>
<div class="col-md-7 content">
<h2>Henry Heath</h2>
<p>I am a software engineer at <a href="https://onfido.com/" target="_blank">Onfido</a>, a tech startup that uses machine learning to perform remote identity verification. I work on our software development kits and web API. Our Web SDK is open source on <a href="https://github.com/onfido/onfido-sdk-ui" target="_blank">GitHub</a>.</p>
<p>Outside of work I enjoy working on my own projects which include building websites and using computers to do anything from solving maths problems to locating second hand cars. I also referee rugby matches most weekends.</p>
</div>
</div>
<h1 id="work">Work</h1>
<div class="row">
<div class="col-md-7 content">
<h3><a href="http://www.metaswitch.com/" target="_blank">Metaswitch Networks</a></h3>
<p>I developed tools to test high performance telecoms software. I enjoyed testing the natural disaster scenarios where a damaged network had to cope with millions of calls an hour and prioritise emergency calls.</p>
<p>My team won the company Hackathon for a hack that applied machine learning algorithms to our internal bug tracking and customer issue database. We successfully predicted the cause new issues to help find quick resolutions.</p>
</div>
<div class="col-md-1 content">
</div>
<div class="col-md-4 content">
<img src="./images/metaswitch.jpg" class="img-rounded"/>
</div>
</div>
<div class="row">
<div class="col-md-4 content">
<img src="./images/henry.jpg" class="img-rounded"/>
</div>
<div class="col-md-1 content">
</div>
<div class="col-md-7 content">
<h3>Community</h3>
<p>I am an active member of the software community. I attend meet ups such as <a href="http://www.manytomany.co.uk/" target="_blank">Many to Many</a>, I help maintain a handful of open source projects, and I get to write open source software as part of my job, which is great.</p>
<p>At work I run a group evangelising the use of Python best practices and I lead a class teaching Ruby to non-technical colleagues.</p>
</div>
</div>
<div class="row">
<div class="col-md-7 content">
<h3>The Student White Tie Company</h3>
<p>Whilst at University I co-founded a <a href="http://www.thewhitetiecompany.com/" target="_blank">business</a> hiring out White Tie to students for summer balls. The company's first website was my first attempt at web development, using only the <a href="http://www.codecademy.com/" target="_blank">Codecademy</a> courses on HTML and CSS. Luckily it has a new website now.</p>
<p>The business is successful, making a profit of over £2000 a year and is still being run by students at Oxford.</p>
</div>
<div class="col-md-1 content">
</div>
<div class="col-md-4 content">
<img src="./images/swt.jpg" class="img-rounded"/>
</div>
</div>
<div class="row section">
<div class="col-md-4 content">
<img src="./images/web.jpg" class="img-rounded"/>
</div>
<div class="col-md-1 content">
</div>
<div class="col-md-7 content">
<h3>Web Design</h3>
<p>I design and build websites in my spare time. Since the Student White Tie website I have created a website for a practising <a href="http://alisonleepsychotherapy.co.uk" target="_blank">psychotherapist</a>, the Harvard <a href="https://lgbtqconf-production.herokuapp.com/" target="_blank">LGBTQ conference</a>, and a proof of concept for a funerals <a href="http://funeraldirectorquotes.com/" target="_blank">start up</a>.</p>
<p> I have worked with frameworks in Python, Ruby, and Javascript.
</div>
</div>
<h1 id="interests">Interests</h1>
<div class="row">
<div class="col-md-7 content">
<h3>Projects</h3>
<p>I enjoy the <a href="https://projecteuler.net/" target="_blank">Project Euler</a> programming problems and I am working on a Python package that solves them.</p>
<p>I am also working on a web app that locates second hand cars listed on <a href="http://www.autotrader.co.uk/" target="_blank">AutoTrader</a> using trilateration.</p>
<p>These projects and others can be seen on <a href="https://github.com/hjheath" target="_blank">GitHub</a>.</p>
</div>
<div class="col-md-1 content">
</div>
<div class="col-md-4 content">
<img src="./images/euler.jpg" class="img-rounded"/>
</div>
</div>
<div class="row section">
<div class="col-md-4 content">
<img src="./images/rugby.jpg" class="img-rounded"/>
</div>
<div class="col-md-1 content">
</div>
<div class="col-md-7 content">
<h3>Sport</h3>
<p>I played rugby for New College Oxford, Teddington RFC and Hampstead RFC. I have also represented Oxfordshire at U20 and Oxford University at U21 level.</p>
<p>After a bad knee injury I stopped playing, but I now enjoy refereeing for the London Referee Society.</p>
<p>My next favourite sport is cycling - I have climbed <a href="http://en.wikipedia.org/wiki/Mont_Ventoux" target="_blank">Mont Ventoux</a> and hope to take on Alpe d'Huez soon. However at present I make do with laps of Regent’s Park.</p>
</div>
</div>
<h1 id="education">Education</h1>
<div class="row">
<div class="col-md-7 content">
<h3>Weather and Climate Models</h3>
<p>I studied Physics at New College for four years. I particularly enjoyed writing code to model dynamic systems such as the double pendulum. As a result I chose to do my master’s project modelling climate and weather systems.</p>
<p>Together with my supervisor Peter Duben, I worked on improving the efficiency of weather and climate models. We reduced the number of bits used to represent floating point numbers and measured the precision and accuracy of the resulting forecasts. My results indicated that more than halving the number of bits in the mantissa has little effect on the reliability of forecasts and therefore there is huge potential to lower the computational cost of forecasts.</p>
</div>
<div class="col-md-1 content">
</div>
<div class="col-md-4 content">
<img src="./images/pend.jpg" class="img-rounded"/>
</div>
</div>
<div class="row">
<div class="col-md-4 content">
<img src="./images/bike.jpg" class="img-rounded"/>
</div>
<div class="col-md-1 content">
</div>
<div class="col-md-7 content">
<h3>Gibbs Prize for Public Speaking</h3>
<p>I won an Oxford speaking competition for a talk I gave on "The Physics of Bicycles". I tried to answer two questions: why bicycles stay up when you cycle with no hands, and why cyclists in the Tour de France do not pedal when descending.</p>
<p>The answer to the first question is complicated, seemingly obvious answers such as gyroscopic effects have been discredited. Indeed <a href="http://socrates.berkeley.edu/~fajans/Teaching/MoreBikeFiles/JonesBikeBW.pdf" target="_blank">David E. H. Jones</a> constructed and rode with no hands a bicycle with counter spinning wheels to cancel out any gyroscopic effects.</p>
<p>Top cyclists achieve such high speeds when descending that it is more efficient to tuck their body and legs in to reduce drag than it is to pedal as can be seen <a href="https://www.youtube.com/watch?v=zR3QoZWMkok" target="_blank">here</a>.</p>
</div>
</div>
<h1 id="contact">Contact</h1>
<div class="row section">
<div class="col-md-7 content">
<address>
<a href="mailto:henryjheath@gmail.com">henryjheath@gmail.com</a><br>
<a href="https://uk.linkedin.com/in/henryheath" target="_blank">LinkedIn</a><br>
<a href="https://github.com/hjheath" target="_blank">GitHub</a>
</address>
</div>
</div>
<div class="footer">
<div class="col-md-12 content">
<p class="bottom"><a href="#top">Back to top</a></p>
</div>
</div>
</div>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="https://code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="./bootstrap/js/bootstrap.min.js"></script>
</body>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-45795577-2', 'henryjheath.co.uk');
ga('send', 'pageview');
</script>
</html>
| hjheath/hjheath.github.io | index.html | HTML | mit | 10,874 |
<!DOCTYPE html>
<!--[if lt IE 9]><html class="no-js lt-ie9" lang="en" dir="ltr"><![endif]-->
<!--[if gt IE 8]><!-->
<html class="no-js" lang="en" dir="ltr">
<!--<![endif]-->
<!-- Usage: /eic/site/ccc-rec.nsf/tpl-eng/template-1col.html?Open&id=3 (optional: ?Open&page=filename.html&id=x) -->
<!-- Created: ; Product Code: 536; Server: stratnotes2.ic.gc.ca -->
<head>
<!-- Title begins / Début du titre -->
<title>
Zedi Inc. -
Complete profile - Canadian Company Capabilities - Industries and Business - Industry Canada
</title>
<!-- Title ends / Fin du titre -->
<!-- Meta-data begins / Début des métadonnées -->
<meta charset="utf-8" />
<meta name="dcterms.language" title="ISO639-2" content="eng" />
<meta name="dcterms.title" content="" />
<meta name="description" content="" />
<meta name="dcterms.description" content="" />
<meta name="dcterms.type" content="report, data set" />
<meta name="dcterms.subject" content="businesses, industry" />
<meta name="dcterms.subject" content="businesses, industry" />
<meta name="dcterms.issued" title="W3CDTF" content="" />
<meta name="dcterms.modified" title="W3CDTF" content="" />
<meta name="keywords" content="" />
<meta name="dcterms.creator" content="" />
<meta name="author" content="" />
<meta name="dcterms.created" title="W3CDTF" content="" />
<meta name="dcterms.publisher" content="" />
<meta name="dcterms.audience" title="icaudience" content="" />
<meta name="dcterms.spatial" title="ISO3166-1" content="" />
<meta name="dcterms.spatial" title="gcgeonames" content="" />
<meta name="dcterms.format" content="HTML" />
<meta name="dcterms.identifier" title="ICsiteProduct" content="536" />
<!-- EPI-11240 -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- MCG-202 -->
<meta content="width=device-width,initial-scale=1" name="viewport">
<!-- EPI-11567 -->
<meta name = "format-detection" content = "telephone=no">
<!-- EPI-12603 -->
<meta name="robots" content="noarchive">
<!-- EPI-11190 - Webtrends -->
<script>
var startTime = new Date();
startTime = startTime.getTime();
</script>
<!--[if gte IE 9 | !IE ]><!-->
<link href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/favicon.ico" rel="icon" type="image/x-icon">
<link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/wet-boew.min.css">
<!--<![endif]-->
<link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/theme.min.css">
<!--[if lt IE 9]>
<link href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/favicon.ico" rel="shortcut icon" />
<link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/ie8-wet-boew.min.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/ie8-wet-boew.min.js"></script>
<![endif]-->
<!--[if lte IE 9]>
<![endif]-->
<noscript><link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/noscript.min.css" /></noscript>
<!-- Google Tag Manager DO NOT REMOVE OR MODIFY - NE PAS SUPPRIMER OU MODIFIER -->
<script>dataLayer1 = [];</script>
<!-- End Google Tag Manager -->
<!-- EPI-11235 -->
<link rel="stylesheet" href="/eic/home.nsf/css/add_WET_4-0_Canada_Apps.css">
<link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet">
<link href="/app/ccc/srch/css/print.css" media="print" rel="stylesheet" type="text/css" />
</head>
<body class="home" vocab="http://schema.org/" typeof="WebPage">
<!-- EPIC HEADER BEGIN -->
<!-- Google Tag Manager DO NOT REMOVE OR MODIFY - NE PAS SUPPRIMER OU MODIFIER -->
<noscript><iframe title="Google Tag Manager" src="//www.googletagmanager.com/ns.html?id=GTM-TLGQ9K" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer1'?'&l='+l:'';j.async=true;j.src='//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);})(window,document,'script','dataLayer1','GTM-TLGQ9K');</script>
<!-- End Google Tag Manager -->
<!-- EPI-12801 -->
<span typeof="Organization"><meta property="legalName" content="Department_of_Industry"></span>
<ul id="wb-tphp">
<li class="wb-slc">
<a class="wb-sl" href="#wb-cont">Skip to main content</a>
</li>
<li class="wb-slc visible-sm visible-md visible-lg">
<a class="wb-sl" href="#wb-info">Skip to "About this site"</a>
</li>
</ul>
<header role="banner">
<div id="wb-bnr" class="container">
<section id="wb-lng" class="visible-md visible-lg text-right">
<h2 class="wb-inv">Language selection</h2>
<div class="row">
<div class="col-md-12">
<ul class="list-inline mrgn-bttm-0">
<li><a href="nvgt.do?V_TOKEN=1492331909722&V_SEARCH.docsCount=3&V_DOCUMENT.docRank=51598&V_SEARCH.docsStart=51597&V_SEARCH.command=navigate&V_SEARCH.resultsJSP=/prfl.do&lang=fra&redirectUrl=/app/scr/imbs/ccc/rgstrtn/rgstr.sec?_flId?_flxKy=e1s1&estblmntNo=234567041301&profileId=61&_evId=bck'A=0&lang=eng&V_SEARCH.showStricts=false&prtl=1&_flId?_flId?_flxKy=e1s1" title="Français" lang="fr">Français</a></li>
</ul>
</div>
</div>
</section>
<div class="row">
<div class="brand col-xs-8 col-sm-9 col-md-6">
<a href="http://www.canada.ca/en/index.html"><object type="image/svg+xml" tabindex="-1" data="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/sig-blk-en.svg"></object><span class="wb-inv"> Government of Canada</span></a>
</div>
<section class="wb-mb-links col-xs-4 col-sm-3 visible-sm visible-xs" id="wb-glb-mn">
<h2>Search and menus</h2>
<ul class="list-inline text-right chvrn">
<li><a href="#mb-pnl" title="Search and menus" aria-controls="mb-pnl" class="overlay-lnk" role="button"><span class="glyphicon glyphicon-search"><span class="glyphicon glyphicon-th-list"><span class="wb-inv">Search and menus</span></span></span></a></li>
</ul>
<div id="mb-pnl"></div>
</section>
<!-- Site Search Removed -->
</div>
</div>
<nav role="navigation" id="wb-sm" class="wb-menu visible-md visible-lg" data-trgt="mb-pnl" data-ajax-fetch="//cdn.canada.ca/gcweb-cdn-dev/sitemenu/sitemenu-en.html" typeof="SiteNavigationElement">
<h2 class="wb-inv">Topics menu</h2>
<div class="container nvbar">
<div class="row">
<ul class="list-inline menu">
<li><a href="https://www.canada.ca/en/services/jobs.html">Jobs</a></li>
<li><a href="http://www.cic.gc.ca/english/index.asp">Immigration</a></li>
<li><a href="https://travel.gc.ca/">Travel</a></li>
<li><a href="https://www.canada.ca/en/services/business.html">Business</a></li>
<li><a href="https://www.canada.ca/en/services/benefits.html">Benefits</a></li>
<li><a href="http://healthycanadians.gc.ca/index-eng.php">Health</a></li>
<li><a href="https://www.canada.ca/en/services/taxes.html">Taxes</a></li>
<li><a href="https://www.canada.ca/en/services.html">More services</a></li>
</ul>
</div>
</div>
</nav>
<!-- EPIC BODY BEGIN -->
<nav role="navigation" id="wb-bc" class="" property="breadcrumb">
<h2 class="wb-inv">You are here:</h2>
<div class="container">
<div class="row">
<ol class="breadcrumb">
<li><a href="/eic/site/icgc.nsf/eng/home" title="Home">Home</a></li>
<li><a href="/eic/site/icgc.nsf/eng/h_07063.html" title="Industries and Business">Industries and Business</a></li>
<li><a href="/eic/site/ccc-rec.nsf/tpl-eng/../eng/home" >Canadian Company Capabilities</a></li>
</ol>
</div>
</div>
</nav>
</header>
<main id="wb-cont" role="main" property="mainContentOfPage" class="container">
<!-- End Header -->
<!-- Begin Body -->
<!-- Begin Body Title -->
<!-- End Body Title -->
<!-- Begin Body Head -->
<!-- End Body Head -->
<!-- Begin Body Content -->
<br>
<!-- Complete Profile -->
<!-- Company Information above tabbed area-->
<input id="showMore" type="hidden" value='more'/>
<input id="showLess" type="hidden" value='less'/>
<h1 id="wb-cont">
Company profile - Canadian Company Capabilities
</h1>
<div class="profileInfo hidden-print">
<ul class="list-inline">
<li><a href="cccSrch.do?lang=eng&profileId=&prtl=1&key.hitsPerPage=25&searchPage=%252Fapp%252Fccc%252Fsrch%252FcccBscSrch.do%253Flang%253Deng%2526amp%253Bprtl%253D1%2526amp%253Btagid%253D&V_SEARCH.scopeCategory=CCC.Root&V_SEARCH.depth=1&V_SEARCH.showStricts=false&V_SEARCH.sortSpec=title+asc&rstBtn.x=" class="btn btn-link">New Search</a> |</li>
<li><form name="searchForm" method="post" action="/app/ccc/srch/bscSrch.do">
<input type="hidden" name="lang" value="eng" />
<input type="hidden" name="profileId" value="" />
<input type="hidden" name="prtl" value="1" />
<input type="hidden" name="searchPage" value="%2Fapp%2Fccc%2Fsrch%2FcccBscSrch.do%3Flang%3Deng%26amp%3Bprtl%3D1%26amp%3Btagid%3D" />
<input type="hidden" name="V_SEARCH.scopeCategory" value="CCC.Root" />
<input type="hidden" name="V_SEARCH.depth" value="1" />
<input type="hidden" name="V_SEARCH.showStricts" value="false" />
<input id="repeatSearchBtn" class="btn btn-link" type="submit" value="Return to search results" />
</form></li>
<li>| <a href="nvgt.do?V_SEARCH.docsStart=51596&V_DOCUMENT.docRank=51597&V_SEARCH.docsCount=3&lang=eng&prtl=1&sbPrtl=&profile=cmpltPrfl&V_TOKEN=1492331941317&V_SEARCH.command=navigate&V_SEARCH.resultsJSP=%2fprfl.do&estblmntNo=234567165805&profileId=&key.newSearchLabel=">Previous Company</a></li>
<li>| <a href="nvgt.do?V_SEARCH.docsStart=51598&V_DOCUMENT.docRank=51599&V_SEARCH.docsCount=3&lang=eng&prtl=1&sbPrtl=&profile=cmpltPrfl&V_TOKEN=1492331941317&V_SEARCH.command=navigate&V_SEARCH.resultsJSP=%2fprfl.do&estblmntNo=234567134506&profileId=&key.newSearchLabel=">Next Company</a></li>
</ul>
</div>
<details>
<summary>Third-Party Information Liability Disclaimer</summary>
<p>Some of the information on this Web page has been provided by external sources. The Government of Canada is not responsible for the accuracy, reliability or currency of the information supplied by external sources. Users wishing to rely upon this information should consult directly with the source of the information. Content provided by external sources is not subject to official languages, privacy and accessibility requirements.</p>
</details>
<h2>
Zedi Inc.
</h2>
<div class="row">
<div class="col-md-5">
<h2 class="h5 mrgn-bttm-0">Legal/Operating Name:</h2>
<p>Zedi Inc.</p>
<div class="mrgn-tp-md"></div>
<p class="mrgn-bttm-0" ><a href="http://www.zedi.ca"
target="_blank" title="Website URL">http://www.zedi.ca</a></p>
<p><a href="mailto:contactsales@zedi.ca" title="contactsales@zedi.ca">contactsales@zedi.ca</a></p>
</div>
<div class="col-md-4 mrgn-sm-sm">
<h2 class="h5 mrgn-bttm-0">Mailing Address:</h2>
<address class="mrgn-bttm-md">
902 11 Ave SW<br/>
CALGARY,
Alberta<br/>
T2R 0E7
<br/>
</address>
<h2 class="h5 mrgn-bttm-0">Location Address:</h2>
<address class="mrgn-bttm-md">
902 11 Ave SW<br/>
CALGARY,
Alberta<br/>
T2R 0E7
<br/>
</address>
<p class="mrgn-bttm-0"><abbr title="Telephone">Tel.</abbr>:
(403) 444-1100
</p>
<p class="mrgn-bttm-0"><abbr title="Telephone">Tel.</abbr>:
(866) 732-6967</p>
<p class="mrgn-bttm-lg"><abbr title="Facsimile">Fax</abbr>:
(403) 444-1101</p>
</div>
<div class="col-md-3 mrgn-tp-md">
<h2 class="wb-inv">Logo</h2>
<img class="img-responsive text-left" src="https://www.ic.gc.ca/app/ccc/srch/media?estblmntNo=123456085932&graphFileName=Brand-8+Logo+-+GIF.g&applicationCode=AP&lang=eng" alt="Logo" />
</div>
</div>
<div class="row mrgn-tp-md mrgn-bttm-md">
<div class="col-md-12">
<h2 class="wb-inv">Company Profile</h2>
<br> Zedi Inc. provides integrated services, applications, and technology to oil and gas producers to help efficiently manage their production operations. Having established a leadership position in our base market, we continue to grow globally by operating in 25 countries around the world. Our expertise helps producers increase revenue while reducing operating costs and ensuring regulatory compliance.<br>
</div>
</div>
<!-- <div class="wb-tabs ignore-session update-hash wb-eqht-off print-active"> -->
<div class="wb-tabs ignore-session">
<div class="tabpanels">
<details id="details-panel1">
<summary>
Full profile
</summary>
<!-- Tab 1 -->
<h2 class="wb-invisible">
Full profile
</h2>
<!-- Contact Information -->
<h3 class="page-header">
Contact information
</h3>
<section class="container-fluid">
<div class="row mrgn-tp-lg">
<div class="col-md-3">
<strong>
Matthew
Heffernan
</strong></div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Title:
</strong>
</div>
<div class="col-md-7">
<!--if client gender is not null or empty we use gender based job title-->
Chief Executive Officer
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Area of Responsibility:
</strong>
</div>
<div class="col-md-7">
Management Executive.
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Telephone:
</strong>
</div>
<div class="col-md-7">
(403) 444-1033
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Facsimile:
</strong>
</div>
<div class="col-md-7">
(403) 444-1101
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
matthew.heffernan@zedi.ca
</div>
</div>
<div class="row mrgn-tp-lg">
<div class="col-md-3">
<strong>
Clement
Gaudet
</strong></div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Title:
</strong>
</div>
<div class="col-md-7">
<!--if client gender is not null or empty we use gender based job title-->
Chief Operating Officer
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Area of Responsibility:
</strong>
</div>
<div class="col-md-7">
Management Executive,
Manufacturing/Production/Operations.
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Telephone:
</strong>
</div>
<div class="col-md-7">
(403) 444-1044
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Facsimile:
</strong>
</div>
<div class="col-md-7">
(403) 444-1101
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
clem.gaudet@zedi.ca
</div>
</div>
<div class="row mrgn-tp-lg">
<div class="col-md-3">
<strong>
Tokunosuke
Ito
</strong></div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Title:
</strong>
</div>
<div class="col-md-7">
Chief Technology Officer<br>
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Area of Responsibility:
</strong>
</div>
<div class="col-md-7">
Management Executive,
Research/Development/Engineering.
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Telephone:
</strong>
</div>
<div class="col-md-7">
(403) 444-1040
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Facsimile:
</strong>
</div>
<div class="col-md-7">
(403) 444-1101
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
toku.ito@zedi.ca
</div>
</div>
<div class="row mrgn-tp-lg">
<div class="col-md-3">
<strong>
James
Freeman
</strong></div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Title:
</strong>
</div>
<div class="col-md-7">
Chief Marketing Officer<br>
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Area of Responsibility:
</strong>
</div>
<div class="col-md-7">
Management Executive,
Research/Development/Engineering.
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Telephone:
</strong>
</div>
<div class="col-md-7">
(780) 701-3007
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Facsimile:
</strong>
</div>
<div class="col-md-7">
(780) 701-3001
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
james.freeman@zedi.ca
</div>
</div>
<div class="row mrgn-tp-lg">
<div class="col-md-3">
<strong>
Larry
Spagnolo
</strong></div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Title:
</strong>
</div>
<div class="col-md-7">
<!--if client gender is not null or empty we use gender based job title-->
Vice President
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Area of Responsibility:
</strong>
</div>
<div class="col-md-7">
Customer Service,
Domestic Sales & Marketing,
Management Executive.
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Telephone:
</strong>
</div>
<div class="col-md-7">
(403) 802-7058
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Facsimile:
</strong>
</div>
<div class="col-md-7">
(403) 444-1100
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
larry.spagnolo@zedi.ca
</div>
</div>
<div class="row mrgn-tp-lg">
<div class="col-md-3">
<strong>
Grant
Exner
</strong></div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Title:
</strong>
</div>
<div class="col-md-7">
<!--if client gender is not null or empty we use gender based job title-->
Chief Financial Officer
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Area of Responsibility:
</strong>
</div>
<div class="col-md-7">
Finance/Accounting,
Management Executive.
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Telephone:
</strong>
</div>
<div class="col-md-7">
(403) 444-1019
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Facsimile:
</strong>
</div>
<div class="col-md-7">
(403) 444-1101
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
grant.exner@zedi.ca
</div>
</div>
<div class="row mrgn-tp-lg">
<div class="col-md-3">
<strong>
Debra
Deane
</strong></div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Title:
</strong>
</div>
<div class="col-md-7">
<!--if client gender is not null or empty we use gender based job title-->
Vice President
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Area of Responsibility:
</strong>
</div>
<div class="col-md-7">
Administrative Services,
Management Executive.
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Telephone:
</strong>
</div>
<div class="col-md-7">
(403) 802-7092
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Facsimile:
</strong>
</div>
<div class="col-md-7">
(403) 802-7092
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
debra.deane@zedi.ca
</div>
</div>
</section>
<p class="mrgn-tp-lg text-right small hidden-print">
<a href="#wb-cont">top of page</a>
</p>
<!-- Company Description -->
<h3 class="page-header">
Company description
</h3>
<section class="container-fluid">
<div class="row">
<div class="col-md-5">
<strong>
Country of Ownership:
</strong>
</div>
<div class="col-md-7">
Canada
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Year Established:
</strong>
</div>
<div class="col-md-7">
1987
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Exporting:
</strong>
</div>
<div class="col-md-7">
Yes
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Quality Certification:
</strong>
</div>
<div class="col-md-7">
ISO 9001.
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Primary Industry (NAICS):
</strong>
</div>
<div class="col-md-7">
334512 - Measuring, Medical and Controlling Devices Manufacturing
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Alternate Industries (NAICS):
</strong>
</div>
<div class="col-md-7">
213118 - Services to Oil and Gas Extraction<br>
541510 - Computer Systems Design and Related Services<br>
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Primary Business Activity:
</strong>
</div>
<div class="col-md-7">
Services
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Total Sales ($CDN):
</strong>
</div>
<div class="col-md-7">
$50,000,000 +
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Number of Employees:
</strong>
</div>
<div class="col-md-7">
525
</div>
</div>
</section>
<!-- Products / Services / Licensing -->
<h3 class="page-header">
Product / Service / Licensing
</h3>
<section class="container-fluid">
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
Smart-Alek®<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-12">
With Smart-Alek, natural gas producers can access and use their production data in real-time through our web-based interface. Value is created through applications and tools on zediaccess.com that increase well visibility and assist producers in optimizing production and increasing business efficiencies.<br>
<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
Zedi SCADA<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
Smart-Skid<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
Roughneck<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
Zedi Vital<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
PetroNet<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
Zedi Access<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
MTRAC®<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
eTube<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
Zedi EFM Walk-up<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
Zedi Connect<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
SilverJack<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Service Name:
</strong>
</div>
<div class="col-md-9">
Zedi Field Services<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Service Name:
</strong>
</div>
<div class="col-md-9">
Zedi Data Exchange<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Service Name:
</strong>
</div>
<div class="col-md-9">
Zedi Consulting Services<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Service Name:
</strong>
</div>
<div class="col-md-9">
Zedi Measurement Assurance Program<br>
</div>
</div>
</section>
<p class="mrgn-tp-lg text-right small hidden-print">
<a href="#wb-cont">top of page</a>
</p>
<!-- Technology Profile -->
<!-- Market Profile -->
<h3 class="page-header">
Market profile
</h3>
<section class="container-fluid">
<h4>
Alliances:
</h4>
<ul>
<li>Sales/Marketing</li>
</ul>
<h4>
Industry sector market interests:
</h4>
<ul>
<li>Mining/Petroleum/Gas</li>
</ul>
<h4>
Geographic markets:
</h4>
<h5>
Export experience:
</h5>
<ul>
<li>Algeria</li>
<li>Angola</li>
<li>Australia</li>
<li>Brazil</li>
<li>Chile</li>
<li>Colombia</li>
<li>Ecuador</li>
<li>Egypt</li>
<li>Gabon</li>
<li>Indonesia</li>
<li>Iraq</li>
<li>Kuwait</li>
<li>Malaysia</li>
<li>Mexico</li>
<li>New Zealand</li>
<li>Nigeria</li>
<li>Oman</li>
<li>Peru</li>
<li>Romania</li>
<li>Russian Federation</li>
<li>Thailand</li>
<li>United Arab Emirates</li>
<li>United States</li>
</ul>
</section>
<p class="mrgn-tp-lg text-right small hidden-print">
<a href="#wb-cont">top of page</a>
</p>
<!-- Sector Information -->
<details class="mrgn-tp-md mrgn-bttm-md">
<summary>
Third-Party Information Liability Disclaimer
</summary>
<p>
Some of the information on this Web page has been provided by external sources. The Government of Canada is not responsible for the accuracy, reliability or currency of the information supplied by external sources. Users wishing to rely upon this information should consult directly with the source of the information. Content provided by external sources is not subject to official languages, privacy and accessibility requirements.
</p>
</details>
</details>
<details id="details-panel2">
<summary>
Contacts
</summary>
<h2 class="wb-invisible">
Contact information
</h2>
<!-- Contact Information -->
<section class="container-fluid">
<div class="row mrgn-tp-lg">
<div class="col-md-3">
<strong>
Matthew
Heffernan
</strong></div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Title:
</strong>
</div>
<div class="col-md-7">
<!--if client gender is not null or empty we use gender based job title-->
Chief Executive Officer
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Area of Responsibility:
</strong>
</div>
<div class="col-md-7">
Management Executive.
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Telephone:
</strong>
</div>
<div class="col-md-7">
(403) 444-1033
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Facsimile:
</strong>
</div>
<div class="col-md-7">
(403) 444-1101
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
matthew.heffernan@zedi.ca
</div>
</div>
<div class="row mrgn-tp-lg">
<div class="col-md-3">
<strong>
Clement
Gaudet
</strong></div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Title:
</strong>
</div>
<div class="col-md-7">
<!--if client gender is not null or empty we use gender based job title-->
Chief Operating Officer
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Area of Responsibility:
</strong>
</div>
<div class="col-md-7">
Management Executive,
Manufacturing/Production/Operations.
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Telephone:
</strong>
</div>
<div class="col-md-7">
(403) 444-1044
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Facsimile:
</strong>
</div>
<div class="col-md-7">
(403) 444-1101
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
clem.gaudet@zedi.ca
</div>
</div>
<div class="row mrgn-tp-lg">
<div class="col-md-3">
<strong>
Tokunosuke
Ito
</strong></div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Title:
</strong>
</div>
<div class="col-md-7">
Chief Technology Officer<br>
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Area of Responsibility:
</strong>
</div>
<div class="col-md-7">
Management Executive,
Research/Development/Engineering.
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Telephone:
</strong>
</div>
<div class="col-md-7">
(403) 444-1040
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Facsimile:
</strong>
</div>
<div class="col-md-7">
(403) 444-1101
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
toku.ito@zedi.ca
</div>
</div>
<div class="row mrgn-tp-lg">
<div class="col-md-3">
<strong>
James
Freeman
</strong></div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Title:
</strong>
</div>
<div class="col-md-7">
Chief Marketing Officer<br>
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Area of Responsibility:
</strong>
</div>
<div class="col-md-7">
Management Executive,
Research/Development/Engineering.
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Telephone:
</strong>
</div>
<div class="col-md-7">
(780) 701-3007
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Facsimile:
</strong>
</div>
<div class="col-md-7">
(780) 701-3001
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
james.freeman@zedi.ca
</div>
</div>
<div class="row mrgn-tp-lg">
<div class="col-md-3">
<strong>
Larry
Spagnolo
</strong></div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Title:
</strong>
</div>
<div class="col-md-7">
<!--if client gender is not null or empty we use gender based job title-->
Vice President
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Area of Responsibility:
</strong>
</div>
<div class="col-md-7">
Customer Service,
Domestic Sales & Marketing,
Management Executive.
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Telephone:
</strong>
</div>
<div class="col-md-7">
(403) 802-7058
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Facsimile:
</strong>
</div>
<div class="col-md-7">
(403) 444-1100
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
larry.spagnolo@zedi.ca
</div>
</div>
<div class="row mrgn-tp-lg">
<div class="col-md-3">
<strong>
Grant
Exner
</strong></div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Title:
</strong>
</div>
<div class="col-md-7">
<!--if client gender is not null or empty we use gender based job title-->
Chief Financial Officer
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Area of Responsibility:
</strong>
</div>
<div class="col-md-7">
Finance/Accounting,
Management Executive.
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Telephone:
</strong>
</div>
<div class="col-md-7">
(403) 444-1019
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Facsimile:
</strong>
</div>
<div class="col-md-7">
(403) 444-1101
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
grant.exner@zedi.ca
</div>
</div>
<div class="row mrgn-tp-lg">
<div class="col-md-3">
<strong>
Debra
Deane
</strong></div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Title:
</strong>
</div>
<div class="col-md-7">
<!--if client gender is not null or empty we use gender based job title-->
Vice President
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Area of Responsibility:
</strong>
</div>
<div class="col-md-7">
Administrative Services,
Management Executive.
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Telephone:
</strong>
</div>
<div class="col-md-7">
(403) 802-7092
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Facsimile:
</strong>
</div>
<div class="col-md-7">
(403) 802-7092
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
debra.deane@zedi.ca
</div>
</div>
</section>
</details>
<details id="details-panel3">
<summary>
Description
</summary>
<h2 class="wb-invisible">
Company description
</h2>
<section class="container-fluid">
<div class="row">
<div class="col-md-5">
<strong>
Country of Ownership:
</strong>
</div>
<div class="col-md-7">
Canada
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Year Established:
</strong>
</div>
<div class="col-md-7">
1987
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Exporting:
</strong>
</div>
<div class="col-md-7">
Yes
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Quality Certification:
</strong>
</div>
<div class="col-md-7">
ISO 9001.
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Primary Industry (NAICS):
</strong>
</div>
<div class="col-md-7">
334512 - Measuring, Medical and Controlling Devices Manufacturing
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Alternate Industries (NAICS):
</strong>
</div>
<div class="col-md-7">
213118 - Services to Oil and Gas Extraction<br>
541510 - Computer Systems Design and Related Services<br>
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Primary Business Activity:
</strong>
</div>
<div class="col-md-7">
Services
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Total Sales ($CDN):
</strong>
</div>
<div class="col-md-7">
$50,000,000 +
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Number of Employees:
</strong>
</div>
<div class="col-md-7">
525
</div>
</div>
</section>
</details>
<details id="details-panel4">
<summary>
Products, services and licensing
</summary>
<h2 class="wb-invisible">
Product / Service / Licensing
</h2>
<section class="container-fluid">
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
Smart-Alek®<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-12">
With Smart-Alek, natural gas producers can access and use their production data in real-time through our web-based interface. Value is created through applications and tools on zediaccess.com that increase well visibility and assist producers in optimizing production and increasing business efficiencies.<br>
<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
Zedi SCADA<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
Smart-Skid<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
Roughneck<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
Zedi Vital<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
PetroNet<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
Zedi Access<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
MTRAC®<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
eTube<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
Zedi EFM Walk-up<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
Zedi Connect<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
SilverJack<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Service Name:
</strong>
</div>
<div class="col-md-9">
Zedi Field Services<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Service Name:
</strong>
</div>
<div class="col-md-9">
Zedi Data Exchange<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Service Name:
</strong>
</div>
<div class="col-md-9">
Zedi Consulting Services<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Service Name:
</strong>
</div>
<div class="col-md-9">
Zedi Measurement Assurance Program<br>
</div>
</div>
</section>
</details>
<details id="details-panel6">
<summary>
Market
</summary>
<h2 class="wb-invisible">
Market profile
</h2>
<section class="container-fluid">
<h4>
Alliances:
</h4>
<ul>
<li>Sales/Marketing</li>
</ul>
<h4>
Industry sector market interests:
</h4>
<ul>
<li>Mining/Petroleum/Gas</li>
</ul>
<h4>
Geographic markets:
</h4>
<h5>
Export experience:
</h5>
<ul>
<li>Algeria</li>
<li>Angola</li>
<li>Australia</li>
<li>Brazil</li>
<li>Chile</li>
<li>Colombia</li>
<li>Ecuador</li>
<li>Egypt</li>
<li>Gabon</li>
<li>Indonesia</li>
<li>Iraq</li>
<li>Kuwait</li>
<li>Malaysia</li>
<li>Mexico</li>
<li>New Zealand</li>
<li>Nigeria</li>
<li>Oman</li>
<li>Peru</li>
<li>Romania</li>
<li>Russian Federation</li>
<li>Thailand</li>
<li>United Arab Emirates</li>
<li>United States</li>
</ul>
</section>
</details>
</div>
</div>
<div class="row">
<div class="col-md-12 text-right">
Last Update Date 2016-06-02
</div>
</div>
<!--
- Artifact ID: CBW - IMBS - CCC Search WAR
- Group ID: ca.gc.ic.strategis.imbs.ccc.search
- Version: 3.26
- Built-By: bamboo
- Build Timestamp: 2017-03-02T21:29:28Z
-->
<!-- End Body Content -->
<!-- Begin Body Foot -->
<!-- End Body Foot -->
<!-- END MAIN TABLE -->
<!-- End body -->
<!-- Begin footer -->
<div class="row pagedetails">
<div class="col-sm-5 col-xs-12 datemod">
<dl id="wb-dtmd">
<dt class=" hidden-print">Date Modified:</dt>
<dd class=" hidden-print">
<span><time>2017-03-02</time></span>
</dd>
</dl>
</div>
<div class="clear visible-xs"></div>
<div class="col-sm-4 col-xs-6">
</div>
<div class="col-sm-3 col-xs-6 text-right">
</div>
<div class="clear visible-xs"></div>
</div>
</main>
<footer role="contentinfo" id="wb-info">
<nav role="navigation" class="container wb-navcurr">
<h2 class="wb-inv">About government</h2>
<!-- EPIC FOOTER BEGIN -->
<!-- EPI-11638 Contact us -->
<ul class="list-unstyled colcount-sm-2 colcount-md-3">
<li><a href="http://www.ic.gc.ca/eic/site/icgc.nsf/eng/h_07026.html#pageid=E048-H00000&from=Industries">Contact us</a></li>
<li><a href="https://www.canada.ca/en/government/dept.html">Departments and agencies</a></li>
<li><a href="https://www.canada.ca/en/government/publicservice.html">Public service and military</a></li>
<li><a href="https://www.canada.ca/en/news.html">News</a></li>
<li><a href="https://www.canada.ca/en/government/system/laws.html">Treaties, laws and regulations</a></li>
<li><a href="https://www.canada.ca/en/transparency/reporting.html">Government-wide reporting</a></li>
<li><a href="http://pm.gc.ca/eng">Prime Minister</a></li>
<li><a href="https://www.canada.ca/en/government/system.html">How government works</a></li>
<li><a href="http://open.canada.ca/en/">Open government</a></li>
</ul>
</nav>
<div class="brand">
<div class="container">
<div class="row">
<nav class="col-md-10 ftr-urlt-lnk">
<h2 class="wb-inv">About this site</h2>
<ul>
<li><a href="https://www.canada.ca/en/social.html">Social media</a></li>
<li><a href="https://www.canada.ca/en/mobile.html">Mobile applications</a></li>
<li><a href="http://www1.canada.ca/en/newsite.html">About Canada.ca</a></li>
<li><a href="http://www.ic.gc.ca/eic/site/icgc.nsf/eng/h_07033.html">Terms and conditions</a></li>
<li><a href="http://www.ic.gc.ca/eic/site/icgc.nsf/eng/h_07033.html#p1">Privacy</a></li>
</ul>
</nav>
<div class="col-xs-6 visible-sm visible-xs tofpg">
<a href="#wb-cont">Top of Page <span class="glyphicon glyphicon-chevron-up"></span></a>
</div>
<div class="col-xs-6 col-md-2 text-right">
<object type="image/svg+xml" tabindex="-1" role="img" data="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/wmms-blk.svg" aria-label="Symbol of the Government of Canada"></object>
</div>
</div>
</div>
</div>
</footer>
<!--[if gte IE 9 | !IE ]><!-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/wet-boew.min.js"></script>
<!--<![endif]-->
<!--[if lt IE 9]>
<script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/ie8-wet-boew2.min.js"></script>
<![endif]-->
<script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/theme.min.js"></script>
<!-- EPI-10519 -->
<span class="wb-sessto"
data-wb-sessto='{"inactivity": 1800000, "reactionTime": 180000, "sessionalive": 1800000, "logouturl": "/app/ccc/srch/cccSrch.do?lang=eng&prtl=1"}'></span>
<script src="/eic/home.nsf/js/jQuery.externalOpensInNewWindow.js"></script>
<!-- EPI-11190 - Webtrends -->
<script src="/eic/home.nsf/js/webtrends.js"></script>
<script>var endTime = new Date();</script>
<noscript>
<div><img alt="" id="DCSIMG" width="1" height="1" src="//wt-sdc.ic.gc.ca/dcs6v67hwe0ei7wsv8g9fv50d_3k6i/njs.gif?dcsuri=/nojavascript&WT.js=No&WT.tv=9.4.0&dcssip=www.ic.gc.ca"/></div>
</noscript>
<!-- /Webtrends -->
<!-- JS deps -->
<script src="/eic/home.nsf/js/jquery.imagesloaded.js"></script>
<!-- EPI-11262 - Util JS -->
<script src="/eic/home.nsf/js/_WET_4-0_utils_canada.min.js"></script>
<!-- EPI-11383 -->
<script src="/eic/home.nsf/js/jQuery.icValidationErrors.js"></script>
<span style="display:none;" id='app-info' data-project-groupid='' data-project-artifactid='' data-project-version='' data-project-build-timestamp='' data-issue-tracking='' data-scm-sha1='' data-scm-sha1-abbrev='' data-scm-branch='' data-scm-commit-date=''></span>
</body></html>
<!-- End Footer -->
<!--
- Artifact ID: CBW - IMBS - CCC Search WAR
- Group ID: ca.gc.ic.strategis.imbs.ccc.search
- Version: 3.26
- Built-By: bamboo
- Build Timestamp: 2017-03-02T21:29:28Z
-->
| GoC-Spending/data-corporations | html/123456085932.html | HTML | mit | 115,417 |
---
archive: day
day: '9'
layout: archive
month: '4'
permalink: 2018/04/09/
title: Archive for April 09, 2018
year: '2018'
year-month-day: '2018-04-09'
---
| goodevilgenius/pile | archives/date-2018-04-09.html | HTML | mit | 157 |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<base data-ice="baseUrl">
<title data-ice="title">Index | Cofferdam DocumentDB Client API Document</title>
<link type="text/css" rel="stylesheet" href="css/style.css">
<link type="text/css" rel="stylesheet" href="css/prettify-tomorrow.css">
<script src="script/prettify/prettify.js"></script>
<script src="script/manual.js"></script>
</head>
<body class="layout-container" data-ice="rootContainer">
<header>
<a href="./">Home</a>
<a href="identifiers.html">Reference</a>
<a href="source.html">Source</a>
<a href="test.html" data-ice="testLink">Test</a>
<a data-ice="repoURL" href="git+https://TylerGarlick@github.com/TylerGarlick/cofferdam.git">Repository</a>
<div class="search-box">
<span>
<img src="./image/search.png">
<span class="search-input-edge"></span><input class="search-input"><span class="search-input-edge"></span>
</span>
<ul class="search-result"></ul>
</div>
</header>
<nav class="navigation" data-ice="nav"><div>
<ul>
<li data-ice="doc"><span data-ice="kind" class="kind-class">C</span><span data-ice="name"><span><a href="class/src/collection.js~Collection.html">Collection</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-class">C</span><span data-ice="name"><span><a href="class/src/collection.js~CollectionNotFound.html">CollectionNotFound</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-class">C</span><span data-ice="name"><span><a href="class/src/database.js~Database.html">Database</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-class">C</span><span data-ice="name"><span><a href="class/src/database.js~DatabaseNotFound.html">DatabaseNotFound</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-class">C</span><span data-ice="name"><span><a href="class/src/document.js~Document.html">Document</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-class">C</span><span data-ice="name"><span><a href="class/src/document.js~DocumentNotFound.html">DocumentNotFound</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-class">C</span><span data-ice="name"><span><a href="class/src/document.js~MultipleDocumentsError.html">MultipleDocumentsError</a></span></span></li>
</ul>
</div>
</nav>
<div class="content" data-ice="content"><h1>References</h1>
<div data-ice="classSummary"><h2 id="class">Class Summary</h2><table class="summary" data-ice="summary">
<thead><tr><td data-ice="title" colspan="3">Static Public Class Summary</td></tr></thead>
<tbody>
<tr data-ice="target">
<td>
<span class="access" data-ice="access">public</span>
<span class="override" data-ice="override"></span>
</td>
<td>
<div>
<p>
<span data-ice="name"><span><a href="class/src/collection.js~Collection.html">Collection</a></span></span>
</p>
</div>
<div>
</div>
</td>
<td>
</td>
</tr>
<tr data-ice="target">
<td>
<span class="access" data-ice="access">public</span>
<span class="override" data-ice="override"></span>
</td>
<td>
<div>
<p>
<span data-ice="name"><span><a href="class/src/collection.js~CollectionNotFound.html">CollectionNotFound</a></span></span>
</p>
</div>
<div>
</div>
</td>
<td>
</td>
</tr>
<tr data-ice="target">
<td>
<span class="access" data-ice="access">public</span>
<span class="override" data-ice="override"></span>
</td>
<td>
<div>
<p>
<span data-ice="name"><span><a href="class/src/database.js~Database.html">Database</a></span></span>
</p>
</div>
<div>
</div>
</td>
<td>
</td>
</tr>
<tr data-ice="target">
<td>
<span class="access" data-ice="access">public</span>
<span class="override" data-ice="override"></span>
</td>
<td>
<div>
<p>
<span data-ice="name"><span><a href="class/src/database.js~DatabaseNotFound.html">DatabaseNotFound</a></span></span>
</p>
</div>
<div>
</div>
</td>
<td>
</td>
</tr>
<tr data-ice="target">
<td>
<span class="access" data-ice="access">public</span>
<span class="override" data-ice="override"></span>
</td>
<td>
<div>
<p>
<span data-ice="name"><span><a href="class/src/document.js~Document.html">Document</a></span></span>
</p>
</div>
<div>
</div>
</td>
<td>
</td>
</tr>
<tr data-ice="target">
<td>
<span class="access" data-ice="access">public</span>
<span class="override" data-ice="override"></span>
</td>
<td>
<div>
<p>
<span data-ice="name"><span><a href="class/src/document.js~DocumentNotFound.html">DocumentNotFound</a></span></span>
</p>
</div>
<div>
</div>
</td>
<td>
</td>
</tr>
<tr data-ice="target">
<td>
<span class="access" data-ice="access">public</span>
<span class="override" data-ice="override"></span>
</td>
<td>
<div>
<p>
<span data-ice="name"><span><a href="class/src/document.js~MultipleDocumentsError.html">MultipleDocumentsError</a></span></span>
</p>
</div>
<div>
</div>
</td>
<td>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<footer class="footer">
Generated by <a href="https://esdoc.org">ESDoc<span data-ice="esdocVersion">(0.4.3)</span></a>
</footer>
<script src="script/search_index.js"></script>
<script src="script/search.js"></script>
<script src="script/pretty-print.js"></script>
<script src="script/inherited-summary.js"></script>
<script src="script/test-summary.js"></script>
<script src="script/inner-link.js"></script>
<script src="script/patch-for-local.js"></script>
</body>
</html>
| TylerGarlick/cofferdam | docs/esdoc/identifiers.html | HTML | mit | 6,427 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>math-classes: 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.10.1 / math-classes - 1.0.6</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
math-classes
<small>
1.0.6
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2021-10-28 03:36:04 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-10-28 03:36:04 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
coq 8.10.1 Formal proof management system
num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.06.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.06.1 Official 4.06.1 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "b.a.w.spitters@gmail.com"
homepage: "https://github.com/math-classes/"
doc: "https://github.com/math-classes/"
authors: [
"Eelis van der Weegen"
"Bas Spitters"
"Robbert Krebbers"
]
license: "Public Domain"
build: [
[ "./configure.sh" ]
[ make "-j%{jobs}%" ]
]
install: [ make "install" ]
depends: [
"ocaml"
"coq" {>= "8.6" & < "8.7"}
]
tags: [
"logpath:MathClasses"
]
synopsis: "A library of abstract interfaces for mathematical structures in Coq"
url {
src: "https://github.com/math-classes/math-classes/archive/1.0.6.tar.gz"
checksum: "md5=20d85db5271da7f39d0a2005d766f1a9"
}
</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-math-classes.1.0.6 coq.8.10.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.10.1).
The following dependencies couldn't be met:
- coq-math-classes -> coq < 8.7 -> ocaml < 4.06.0
base of this switch (use `--unlock-base' to force)
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-math-classes.1.0.6</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.06.1-2.0.5/released/8.10.1/math-classes/1.0.6.html | HTML | mit | 6,409 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.