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 |
|---|---|---|---|---|---|
{% extends "compression.html" %}
{% block pagetitle %}Brian R. Bondy - Huffman{% endblock %}
{% block title %} Compression - Huffman {% endblock %}
{% block subtitle %}Huffman trees{% endblock %}
{% block main_content %}
<h2>Huffman coding</h2>
<div class='bold-divider'></div>
<p>
Huffman coding is a mapping of a set of 'symbols' to a set of 'series of bits'. Each symbol corresponds to a variable length series of bits.
</p>
<p>
The more common symbols are represented with less bits, and the least common symbols are represented with more bits.
</p>
<p>
There is no algorithm which produces better results than Huffman coding, where each symbol has a binary representation. That is it is, it will always lead to optimal compression.
</p>
<p>
However, Huffman coding is not the best compression method since it does not take advantage of the relation between symbols.
</p>
<p>
Example: An 'h' follows a 'T' very often in the english language, and Huffman coding will not take that into consideration.
</p>
<h2>Huffman codes</h2>
<div class='bold-divider'></div>
<p>
Each Huffman code is prefix free. Meaning no binary code is a prefix of any other binary code. If it was you wouldn't know on the decoding phase which symbol to pick, the prefix of one code which itself a symbol or to keep reading to get another symbol.
</p>
<h2>Huffman trees</h2>
<div class='bold-divider'></div>
<p>
The binary representations for each symbol is made by using a binary tree. Each symbol is first stored as its own distinct leaf node. Each of these nodes also stores the frequency of the symbol. Since even a single node is considered a tree, each of these nodes are considered their own tree.
</p>
<p>
From here you simply continuously pick the 2 trees with smallest frequency and combine them into a new tree with a new parent node. The new parent node gets the frequency of both of its children added. This sequence is continued until you have no more trees to merge. The frequency of a tree is defined to be the frequency of its root node.
</p>
<p>
You now have a single tree with each leaf node being an original symbol. This tree is called a Huffman tree. Creating this tree can be done in O(nlogn) by using a priority queue.
</p>
<h2>Getting the code from a Huffman tree</h2>
<div class='bold-divider'></div>
<p>
To obtain a code for any symbol you simply start at the root node and follow down the path to the leaf node. For each left arc you follow you add a 0 to the end of your code, for each right arc that you follow you add a 1 to the end of your code.
</p>
<p>
Since each symbol is a leaf node you are guaranteed that no symbol will be a prefix of any other symbol.
</p>
<h2>Combining compression methods</h2>
<div class='bold-divider'></div>
<p>
Since Huffman encoding keeps the ordering for symbols to series of bits, other kinds of compression can usually be applied after Huffman coding. For example a compression algorithm that takes into consideration cross boundary symbols will still be useful.
</p>
<h2>Adaptive Huffman compression</h2>
<div class='bold-divider'></div>
<p>
Adaptive Huffman coding discovers the frequency of symbols as it processes the algorithm.
</p>
{% endblock %}
| bbondy/brianbondy.gae | templates/huffman.html | HTML | mit | 3,312 |
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width">
<meta charset="UTF-8">
<title>タスク管理デモ</title>
<link rel="stylesheet" href="css/jquery.mobile-1.4.5.min.css" />
</head>
<body>
<div data-role="page" id="testpage">
<div data-role="header">
<h1>タスク管理デモ</h1>
</div><!-- /header -->
<div class="ui-content" role="main">
<form class="form-task">
<div class="ui-field-contain">
<input type="text" name="task" id="task" value="" data-clear-btn="true" placeholder="タスク">
<input type="submit" id="submit-1" value="Send">
</div>
</form>
<div class="ui-field-contain tasks">
<fieldset data-role="controlgroup">
</fieldset>
</div>
</div><!-- /content -->
</div><!-- /page -->
<script src="js/jquery-2.1.3.min.js"></script>
<script src="js/jquery.mobile-1.4.5.min.js"></script>
<script src="js/applican.js"></script>
<script src="js/app.js"></script>
</body>
</html>
| moongift/Applican-jQuery-Mobile-Demo | index.html | HTML | mit | 1,024 |
@import play.i18n.Messages
@import helper._
<!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">
<title>@Messages.get("demander")</title>
<link href="@routes.Assets.at("stylesheets/fileinput.min.css")" rel="stylesheet">
<link href="@routes.Assets.at("stylesheets/uploadFile.css")" rel="stylesheet">
</head>
<body>
<div ng-app="navigationBar">
<!-- Import the navigation bar template -->
@navBar.apply()
</div>
<div class="marginalized">
<form action="/upload" method="POST" enctype="multipart/form-data">
<input id="input-1a" type="file" class="file" name="input_xls_file"
data-show-preview="false" data-show-upload="false" required>
<input class="btn btn-primary submit-button" type="submit"
value="@Messages.get("to_import")">
</form>
</div>
<script src="@routes.Assets.at("javascripts/fileinput.min.js")"></script>
<script>
$('#input-1a').fileinput({
browseLabel: "Selecionar...",
removeLabel: "Remover"
})
</script>
</body>
</html>
| arn3tt/demander | app/views/uploadXlsFile.scala.html | HTML | mit | 1,124 |
<html>
<body>
<h1>
Test page
</h1>
<hr />
<table>
<tr>
<td>
gulp test
</td>
</tr>
</table>
</body>
</html>
| Yeop-Study/TIL | javascript/gulp/index.html | HTML | mit | 151 |
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=yes">
<script src="../../../webcomponentsjs/webcomponents-lite.js"></script>
<script src="../../../web-component-tester/browser.js"></script>
<script src="../helpers/chainable-methods-for-partial.js"></script>
<!-- Step 1: import the element to test -->
<link rel="import" href="../../starcounter-include.html">
</head>
<body>
<test-fixture id="starcounter-include">
<template><starcounter-include></starcounter-include></template>
</test-fixture>
<script>
var scInclude;
describe('when created programatically with no view-model value', function () {
beforeEach(function () {
scInclude = document.createElement("starcounter-include");
});
it('should not have any children (CEv1 limitation)', function () {
expect(scInclude.children).to.be.empty;
});
it('once stamped imperatively by `.stampImportedTemplate()`, should have clear `imported-template`', function () {
scInclude.stampImportedTemplate();
expect(scInclude).to.have.descendant('imported-template').that.is.a.clearImportedTemplate;
});
describe('once connected to the DOM', function(){
beforeEach(function(done){
document.body.appendChild(scInclude);
// wait for connectedCallback polyfill
setTimeout(done);
});
afterEach(function(){
scInclude.parentNode.removeChild(scInclude);
});
it('once connected to DOM, should have clear `imported-template`', function () {
expect(scInclude).to.have.descendant('imported-template').that.is.a.clearImportedTemplate;
});
});
});
describe('when created in HTML with no view-model value', function () {
beforeEach(function () {
scInclude = fixture("starcounter-include");
});
it('should have clear `imported-template`', function () {
expect(scInclude).to.have.descendant('imported-template').that.is.a.clearImportedTemplate;
});
});
</script>
</body>
</html>
| Starcounter/starcounter-include | test/view-model-attribute/not_provided.html | HTML | mit | 2,450 |
<div class="row">
<div class="column">
<div class="panel">
<div class="row">
<div class="small-12 large-6 columns">
<h2>{{ class.name }}</h2>
<h4 class="subheader">{{ [class.startsOn, class.endsOn] | timeInterval }}</h4>
<p>{{ class.description }}</p>
</div>
<div class="small-12 large-6 columns">
<h4>Content</h4>
<div ng-repeat="link in class.links" class="class-info__link">
<i class="fa fa-external-link" aria-hidden="true"></i>
<a href="{{ link.url }}" target="_blank">{{ link.name }}</a>
<p>{{ link.comment }}</p>
</div>
</div>
<div ng-cloak ng-show="isInstructor">
<hr />
<div class="small-12 large-6 columns">
<accordion class="class-info__absent-list">
<accordion-group is-open="absentIsOpen">
<accordion-heading>
Absent listeners ({{ class.absentListeners.length }}):
<i ng-class="{'fa-angle-down': !absentIsOpen, 'fa-angle-up': absentIsOpen}"
class="fa right" aria-hidden="true"></i>
</accordion-heading>
<table>
<tbody>
<tr ng-repeat="absent in class.absentListeners">
<td>{{ absent | userFullName }}</td>
</tr>
</tbody>
</table>
</accordion-group>
</accordion>
</div>
<div class="small-12 large-6 columns">
<accordion class="class-info__grades-list">
<accordion-group is-open="gradesIsOpen">
<accordion-heading>
Grades ({{ class.grades.length }}):
<i ng-class="{'fa-angle-down': !gradesIsOpen, 'fa-angle-up': gradesIsOpen}"
class="fa right" aria-hidden="true"></i>
</accordion-heading>
<table>
<tbody>
<tr ng-repeat="grade in class.grades">
<td>{{ grade.listener | userFullName }}</td>
<td>{{ grade.grade }}</td>
</tr>
</tbody>
</table>
</accordion-group>
</accordion>
</div>
</div>
</div>
</div>
</div>
</div> | psenchanka/comant | comant-client/src/blocks/class-info/class-info.html | HTML | mit | 3,159 |
<h1><code ng:non-bindable="">AboutCtrl</code>
<div><span class="hint">function in module <code ng:non-bindable="">poneyracerApp</code>
</span>
</div>
</h1>
<div><h2 id="description">Description</h2>
<div class="description"><div class="poneyracerapp-controller-page poneyracerapp-controller-aboutctrl-page"><h3 id="description_aboutctrl">AboutCtrl</h3>
<p>Controller of the poneyracerApp</p>
</div></div>
<h2 id="usage">Usage</h2>
<div class="usage"><pre class="prettyprint linenums">AboutCtrl();</pre>
</div>
</div>
| redboul/formationAngular | poneyracer/poneyracer/app/docs/partials/api/poneyracerApp.controller.AboutCtrl.html | HTML | mit | 517 |
<!DOCTYPE html>
<html lang="it">
<head>
<title>Microsoft · lou1306</title>
<meta charset="utf-8">
<link href="https://micro.blog/lou1306" rel="me" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Luca Di Stefano">
<meta name="description" content="Appunti di informatica e altro">
<meta name="generator" content="Hugo 0.64.1" />
<!-- CSS -->
<link rel="stylesheet" href="http://lou1306.github.io/css/main.css">
<link rel="stylesheet" href="http://lou1306.github.io/css/style.css">
<!--Favicon-->
<link rel="shortcut icon" href="http://lou1306.github.io/favicon.ico" type="image/x-icon">
<link rel="canonical" href="http://lou1306.github.io/tags/microsoft/">
<!-- RSS -->
<link href="/tags/microsoft/index.xml" rel="alternate" type="application/rss+xml" title="lou1306" />
<link href="/tags/microsoft/index.xml" rel="feed" type="application/rss+xml" title="lou1306" />
<!-- Font Awesome -->
<link href="//use.fontawesome.com/releases/v5.7.2/css/all.css" rel="stylesheet">
<!-- Google Fonts -->
<link href="//fonts.googleapis.com/css?family=Source+Sans+Pro:400,700,700italic,400italic" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.6.0/styles/default.min.css">
<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.6.0/highlight.min.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
</head>
<body>
<header class="site-header">
<div class="branding">
<a href="http://lou1306.github.io/">
<img class="avatar" src="https://www.gravatar.com/avatar/b1549ac9d27e6458d79ec9d340887b0b?s=100&d=identicon" alt=""/>
</a>
<h1 class="site-title">
<a href='http://lou1306.github.io/'>lou1306</a>
<small>
<a href="/en"> (en)</a>
</small>
</h1>
</div>
<nav class="site-nav">
<ul>
<li><a href="/about/"> About </a>•</li><li><a href="/cv/"> CV </a>•</li><li><a href="/schools/"> Schools </a>•</li>
<li class="icon">
<a href="/index.xml" title="Seguimi">
<i class="fas fa-rss"></i>
</a>
</li>
<li class="icon">
<a href="https://keybase.io/lou1306" title="Keybase">
<i class="fab fa-keybase"></i>
</a>
</li>
<li class="icon">
<a href="https://github.com/lou1306" title="Github">
<i class="fab fa-github"></i>
</a>
</li>
<li class="icon">
<a href="https://www.linkedin.com/in/lou1306" title="Linkedin">
<i class="fab fa-linkedin"></i>
</a>
</li>
<li class="icon">
<a href="https://twitter.com/1306lou" title="Twitter">
<i class="fab fa-twitter"></i>
</a>
</li>
</ul>
</nav>
</header>
<div class="content">
<div class="posts">
<div class="post-teaser">
<header>
<h1>
<a class="post-link" href="http://lou1306.github.io/post/2016-03-04-real_programmer/">
La storia di Mel, un Vero Programmatore
</a>
</h1>
<p class="meta">
March 4, 2016 · 7 minuti
· Tags:
<a href="http://lou1306.github.io/tags/hacker">Hacker</a>, <a href="http://lou1306.github.io/tags/jargon-file">Jargon File</a>, <a href="http://lou1306.github.io/tags/mel">Mel</a>
</p>
</header>
<div class="excerpt">
<p><em>Questo gioiellino della cultura hacker circola in rete dal 1982.
L’ho tradotta tempo fa, basandomi sull’edizione contenuta nel
<a href="http://www.catb.org/jargon/html/story-of-mel.html">Jargon File</a> e cencando
di mantenerne la forma “poetica” e le particolarità nella punteggiatura.
Per informazioni più approfondite rimando a
<a href="https://en.wikipedia.org/wiki/The_Story_of_Mel">Wikipedia</a></em>.</p>
<br>
<a class="button" href="http://lou1306.github.io/post/2016-03-04-real_programmer/">
Continua »
</a>
</div>
</div><div class="post-teaser">
<header>
<h1>
<a class="post-link" href="http://lou1306.github.io/post/2016-03-01-chocolatey/">
Chocolatey: software management per Windows
</a>
</h1>
<p class="meta">
March 1, 2016 · 4 minuti
· Tags:
<a href="http://lou1306.github.io/tags/chocolatey">Chocolatey</a>, <a href="http://lou1306.github.io/tags/microsoft">Microsoft</a>, <a href="http://lou1306.github.io/tags/nuget">NuGet</a>, <a href="http://lou1306.github.io/tags/windows">Windows</a>
</p>
</header>
<div class="excerpt">
<p>Dai package managers Linux agli Store dei sistemi mobile, quella dei <em>software
repositories</em> è una storia di successo che però fatica a prendere piede su
Windows.
Ma qualcosa sta cambiando.</p>
<br>
<a class="button" href="http://lou1306.github.io/post/2016-03-01-chocolatey/">
Continua »
</a>
</div>
</div>
</div>
<div class="pagination">
<a href="/tags/microsoft/" class="button" >
<i class="fa fa-chevron-left"></i>
Indietro
</a>
</div>
</div>
<footer class="site-footer">
<p class="text">© 2020 - Luca Di Stefano <br/> <a href="http://creativecommons.org/licenses/by-nc/4.0/"><img src="https://img.shields.io/badge/License-CC%20BY--NC%204.0-lightgrey.svg" alt="License: CC BY-NC 4.0"></a>
<!-- raw HTML omitted --><a href="//gohugo.io/">Hugo</a> • <a href="//github.com/digitalcraftsman/hugo-type-theme">Type Theme</a> • <a href="//getskeleton.com/">Skeleton</a></p>
</footer>
<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-23262839-3', 'auto');
ga('set', 'anonymizeIp', true);
ga('send', 'pageview');
</script>
</body>
</html>
| lou1306/lou1306.github.io | tags/microsoft/page/2/index.html | HTML | mit | 5,801 |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Vantiq Class Reference</title>
<link rel="stylesheet" href="../css/style.css">
<meta name="viewport" content="initial-scale=1, maximum-scale=1.4">
<meta name="generator" content="appledoc 2.2.1 (build 1334)">
</head>
<body class="appledoc">
<header>
<div class="container" class="hide-in-xcode">
<h1 id="library-title">
<a href="../index.html">VIQ </a>
</h1>
<p id="developer-home">
<a href="../index.html">VANTIQ, Inc.</a>
</p>
</div>
</header>
<aside>
<div class="container">
<nav>
<ul id="header-buttons" role="toolbar">
<li><a href="../index.html">Index</a></li>
<li><a href="../hierarchy.html">Hierarchy</a></li>
<li id="on-this-page" role="navigation">
<label>
On This Page
<div class="chevron">
<div class="chevy chevron-left"></div>
<div class="chevy chevron-right"></div>
</div>
<select id="jump-to">
<option value="top">Jump To…</option>
<option value="overview">Overview</option>
<option value="tasks">Tasks</option>
<optgroup label="Properties">
<option value="//api/name/accessToken">accessToken</option>
<option value="//api/name/appUUID">appUUID</option>
<option value="//api/name/namespace">namespace</option>
<option value="//api/name/serverId">serverId</option>
<option value="//api/name/username">username</option>
</optgroup>
<optgroup label="Instance Methods">
<option value="//api/name/authenticate:password:completionHandler:">- authenticate:password:completionHandler:</option>
<option value="//api/name/count:completionHandler:">- count:completionHandler:</option>
<option value="//api/name/count:where:completionHandler:">- count:where:completionHandler:</option>
<option value="//api/name/delete:resourceId:completionHandler:">- delete:resourceId:completionHandler:</option>
<option value="//api/name/delete:where:completionHandler:">- delete:where:completionHandler:</option>
<option value="//api/name/deleteOne:id:completionHandler:">- deleteOne:id:completionHandler:</option>
<option value="//api/name/execute:completionHandler:">- execute:completionHandler:</option>
<option value="//api/name/execute:params:completionHandler:">- execute:params:completionHandler:</option>
<option value="//api/name/initWithServer:">- initWithServer:</option>
<option value="//api/name/initWithServer:apiVersion:">- initWithServer:apiVersion:</option>
<option value="//api/name/insert:object:completionHandler:">- insert:object:completionHandler:</option>
<option value="//api/name/publish:message:completionHandler:">- publish:message:completionHandler:</option>
<option value="//api/name/registerForPushNotifications:completionHandler:">- registerForPushNotifications:completionHandler:</option>
<option value="//api/name/retrieveServerId:">- retrieveServerId:</option>
<option value="//api/name/select:completionHandler:">- select:completionHandler:</option>
<option value="//api/name/select:props:completionHandler:">- select:props:completionHandler:</option>
<option value="//api/name/select:props:where:completionHandler:">- select:props:where:completionHandler:</option>
<option value="//api/name/select:props:where:sort:completionHandler:">- select:props:where:sort:completionHandler:</option>
<option value="//api/name/select:props:where:sort:limit:completionHandler:">- select:props:where:sort:limit:completionHandler:</option>
<option value="//api/name/selectOne:id:completionHandler:">- selectOne:id:completionHandler:</option>
<option value="//api/name/update:id:object:completionHandler:">- update:id:object:completionHandler:</option>
<option value="//api/name/uploadDocument:fileName:filePrefix:contentType:completionHandler:">- uploadDocument:fileName:filePrefix:contentType:completionHandler:</option>
<option value="//api/name/upsert:object:completionHandler:">- upsert:object:completionHandler:</option>
<option value="//api/name/verify:username:completionHandler:">- verify:username:completionHandler:</option>
</optgroup>
</select>
</label>
</li>
</ul>
</nav>
</div>
</aside>
<article>
<div id="overview_contents" class="container">
<div id="content">
<main role="main">
<h1 class="title">Vantiq Class Reference</h1>
<div class="section section-specification"><table cellspacing="0"><tbody>
<tr>
<th>Inherits from</th>
<td>NSObject</td>
</tr><tr>
<th>Declared in</th>
<td>Vantiq.h<br />Vantiq.m</td>
</tr>
</tbody></table></div>
<div class="section section-overview">
<a title="Overview" name="overview"></a>
<h2 class="subtitle subtitle-overview">Overview</h2>
<p>The Vantiq class declares the interface for authentication and subsequent interaction with a Vantiq server.</p>
</div>
<div class="section section-tasks">
<a title="Tasks" name="tasks"></a>
<div class="task-list">
<div class="section-method">
<a name="//api/name/accessToken" title="accessToken"></a>
<h3 class="method-title"><code><a href="#//api/name/accessToken"> accessToken</a></code>
</h3>
<div class="method-info">
<div class="pointy-thing"></div>
<div class="method-info-container">
<div class="method-subsection brief-description">
<p>Access token to be used for direct Vantiq server operations.</p>
</div>
<div class="method-subsection method-declaration"><code>@property (readwrite, nonatomic) NSString *accessToken</code></div>
<div class="method-subsection discussion-section">
<h4 class="method-subtitle">Discussion</h4>
<p>Access token to be used for direct Vantiq server operations.</p>
</div>
<div class="method-subsection declared-in-section">
<h4 class="method-subtitle">Declared In</h4>
<p><code class="declared-in-ref">Vantiq.h</code></p>
</div>
</div>
</div>
</div><div class="section-method">
<a name="//api/name/username" title="username"></a>
<h3 class="method-title"><code><a href="#//api/name/username"> username</a></code>
</h3>
<div class="method-info">
<div class="pointy-thing"></div>
<div class="method-info-container">
<div class="method-subsection brief-description">
<p>User name of the last authenticated user</p>
</div>
<div class="method-subsection method-declaration"><code>@property (readwrite, nonatomic) NSString *username</code></div>
<div class="method-subsection discussion-section">
<h4 class="method-subtitle">Discussion</h4>
<p>User name of the last authenticated user</p>
</div>
<div class="method-subsection declared-in-section">
<h4 class="method-subtitle">Declared In</h4>
<p><code class="declared-in-ref">Vantiq.h</code></p>
</div>
</div>
</div>
</div><div class="section-method">
<a name="//api/name/namespace" title="namespace"></a>
<h3 class="method-title"><code><a href="#//api/name/namespace"> namespace</a></code>
</h3>
<div class="method-info">
<div class="pointy-thing"></div>
<div class="method-info-container">
<div class="method-subsection brief-description">
<p>Namespace of the last authenticated user</p>
</div>
<div class="method-subsection method-declaration"><code>@property (readonly, nonatomic) NSString *namespace</code></div>
<div class="method-subsection discussion-section">
<h4 class="method-subtitle">Discussion</h4>
<p>Namespace of the last authenticated user</p>
</div>
<div class="method-subsection declared-in-section">
<h4 class="method-subtitle">Declared In</h4>
<p><code class="declared-in-ref">Vantiq.h</code></p>
</div>
</div>
</div>
</div><div class="section-method">
<a name="//api/name/serverId" title="serverId"></a>
<h3 class="method-title"><code><a href="#//api/name/serverId"> serverId</a></code>
</h3>
<div class="method-info">
<div class="pointy-thing"></div>
<div class="method-info-container">
<div class="method-subsection brief-description">
<p>Server ID of the last authenticated user</p>
</div>
<div class="method-subsection method-declaration"><code>@property (readonly, nonatomic) NSString *serverId</code></div>
<div class="method-subsection discussion-section">
<h4 class="method-subtitle">Discussion</h4>
<p>Server ID of the last authenticated user</p>
</div>
<div class="method-subsection declared-in-section">
<h4 class="method-subtitle">Declared In</h4>
<p><code class="declared-in-ref">Vantiq.h</code></p>
</div>
</div>
</div>
</div><div class="section-method">
<a name="//api/name/appUUID" title="appUUID"></a>
<h3 class="method-title"><code><a href="#//api/name/appUUID"> appUUID</a></code>
</h3>
<div class="method-info">
<div class="pointy-thing"></div>
<div class="method-info-container">
<div class="method-subsection brief-description">
<p>Unique ID for this installation of the device running the Vantiq SDK</p>
</div>
<div class="method-subsection method-declaration"><code>@property (readonly, nonatomic) NSString *appUUID</code></div>
<div class="method-subsection discussion-section">
<h4 class="method-subtitle">Discussion</h4>
<p>Unique ID for this installation of the device running the Vantiq SDK</p>
</div>
<div class="method-subsection declared-in-section">
<h4 class="method-subtitle">Declared In</h4>
<p><code class="declared-in-ref">Vantiq.h</code></p>
</div>
</div>
</div>
</div><div class="section-method">
<a name="//api/name/initWithServer:apiVersion:" title="initWithServer:apiVersion:"></a>
<h3 class="method-title"><code><a href="#//api/name/initWithServer:apiVersion:">– initWithServer:apiVersion:</a></code>
</h3>
<div class="method-info">
<div class="pointy-thing"></div>
<div class="method-info-container">
<div class="method-subsection brief-description">
<p>Constructor for use with all other Vantiq server operations.</p>
</div>
<div class="method-subsection method-declaration"><code>- (id)initWithServer:(NSString *)<em>server</em> apiVersion:(unsigned long)<em>version</em></code></div>
<div class="method-subsection arguments-section parameters">
<h4 class="method-subtitle parameter-title">Parameters</h4>
<table class="argument-def parameter-def">
<tr>
<th scope="row" class="argument-name"><code>server</code></th>
<td><p>Server URL, e.g. <a href="https://dev.vantiq.com">https://dev.vantiq.com</a></p></td>
</tr>
<tr>
<th scope="row" class="argument-name"><code>version</code></th>
<td><p>Version of the Vantiq API to use</p></td>
</tr>
</table>
</div>
<div class="method-subsection discussion-section">
<h4 class="method-subtitle">Discussion</h4>
<p>Constructor for use with all other Vantiq server operations.</p>
</div>
<div class="method-subsection declared-in-section">
<h4 class="method-subtitle">Declared In</h4>
<p><code class="declared-in-ref">Vantiq.h</code></p>
</div>
</div>
</div>
</div><div class="section-method">
<a name="//api/name/initWithServer:" title="initWithServer:"></a>
<h3 class="method-title"><code><a href="#//api/name/initWithServer:">– initWithServer:</a></code>
</h3>
<div class="method-info">
<div class="pointy-thing"></div>
<div class="method-info-container">
<div class="method-subsection brief-description">
<p>Constructor for use with all other Vantiq server operations. This constructor
will use the most recent version of the Vantiq API. If an earlier version of the
API is required, use the initWithServer:server apiVersion:version contructor.</p>
</div>
<div class="method-subsection method-declaration"><code>- (id)initWithServer:(NSString *)<em>server</em></code></div>
<div class="method-subsection arguments-section parameters">
<h4 class="method-subtitle parameter-title">Parameters</h4>
<table class="argument-def parameter-def">
<tr>
<th scope="row" class="argument-name"><code>server</code></th>
<td><p>Server URL, e.g. <a href="https://dev.vantiq.com">https://dev.vantiq.com</a></p></td>
</tr>
</table>
</div>
<div class="method-subsection discussion-section">
<h4 class="method-subtitle">Discussion</h4>
<p>Constructor for use with all other Vantiq server operations. This constructor
will use the most recent version of the Vantiq API. If an earlier version of the
API is required, use the initWithServer:server apiVersion:version contructor.</p>
</div>
<div class="method-subsection see-also-section">
<h4 class="method-subtitle">See Also</h4>
<ul>
<li><code><p><a href="#//api/name/initWithServer:apiVersion:">- initWithServer:apiVersion:</a></p></code></li>
</ul>
</div>
<div class="method-subsection declared-in-section">
<h4 class="method-subtitle">Declared In</h4>
<p><code class="declared-in-ref">Vantiq.h</code></p>
</div>
</div>
</div>
</div><div class="section-method">
<a name="//api/name/verify:username:completionHandler:" title="verify:username:completionHandler:"></a>
<h3 class="method-title"><code><a href="#//api/name/verify:username:completionHandler:">– verify:username:completionHandler:</a></code>
</h3>
<div class="method-info">
<div class="pointy-thing"></div>
<div class="method-info-container">
<div class="method-subsection brief-description">
<p>The verify method attempts to validate the given Vantiq server token. If the token has expired
or a token has never been issued, the error parameter in the callback will be non-null and the
app should then call authenticate (see below) in order to reauthenticate the user. The data
parameter returned in the completionHandler is an array of user records for the <a href="#//api/name/namespace">namespace</a>
associated with the access token.</p>
</div>
<div class="method-subsection method-declaration"><code>- (void)verify:(NSString *)<em>accessToken</em> username:(NSString *)<em>username</em> completionHandler:(void ( ^ ) ( NSArray *data , NSHTTPURLResponse *response , NSError *error ))<em>handler</em></code></div>
<div class="method-subsection arguments-section parameters">
<h4 class="method-subtitle parameter-title">Parameters</h4>
<table class="argument-def parameter-def">
<tr>
<th scope="row" class="argument-name"><code>accessToken</code></th>
<td><p>The access token to verify</p></td>
</tr>
<tr>
<th scope="row" class="argument-name"><code>username</code></th>
<td><p>The <a href="#//api/name/username">username</a> associated with the token</p></td>
</tr>
<tr>
<th scope="row" class="argument-name"><code>handler</code></th>
<td><p>The handler block to execute.</p></td>
</tr>
</table>
</div>
<div class="method-subsection return">
<h4 class="method-subtitle parameter-title">Return Value</h4>
<p>response: <a href="https://developer.apple.com/library/mac/documentation/Cocoa/Reference/Foundation/Classes/NSHTTPURLResponse_Class/">iOS HTTP operation response</a></p><p>error: <a href="https://developer.apple.com/library/mac/documentation/Cocoa/Reference/Foundation/Classes/NSError_Class/">iOS error condition response</a></p>
</div>
<div class="method-subsection discussion-section">
<h4 class="method-subtitle">Discussion</h4>
<p>The verify method attempts to validate the given Vantiq server token. If the token has expired
or a token has never been issued, the error parameter in the callback will be non-null and the
app should then call authenticate (see below) in order to reauthenticate the user. The data
parameter returned in the completionHandler is an array of user records for the <a href="#//api/name/namespace">namespace</a>
associated with the access token.</p><div class="warning"><p><strong>Warning:</strong> Please also note this method invokes a callback block associated with a network-
related block. Because this block is called from asynchronous network operations,
its code must be wrapped by a call to <em>dispatch_async(dispatch_get_main_queue(), ^ {…});</em>
to ensure UI operations are completed on the main thread.</p></div>
</div>
<div class="method-subsection see-also-section">
<h4 class="method-subtitle">See Also</h4>
<ul>
<li><code><p><a href="#//api/name/authenticate:password:completionHandler:">- authenticate:password:completionHandler:</a></p></code></li>
</ul>
</div>
<div class="method-subsection declared-in-section">
<h4 class="method-subtitle">Declared In</h4>
<p><code class="declared-in-ref">Vantiq.h</code></p>
</div>
</div>
</div>
</div><div class="section-method">
<a name="//api/name/authenticate:password:completionHandler:" title="authenticate:password:completionHandler:"></a>
<h3 class="method-title"><code><a href="#//api/name/authenticate:password:completionHandler:">– authenticate:password:completionHandler:</a></code>
</h3>
<div class="method-info">
<div class="pointy-thing"></div>
<div class="method-info-container">
<div class="method-subsection brief-description">
<p>The authenticate method connects to the Vantiq server with the given authentication
credentials used to authorize the user. The <a href="#//api/name/username">username</a> and password credentials are not stored.</p>
</div>
<div class="method-subsection method-declaration"><code>- (void)authenticate:(NSString *)<em>username</em> password:(NSString *)<em>password</em> completionHandler:(void ( ^ ) ( NSHTTPURLResponse *response , NSError *error ))<em>handler</em></code></div>
<div class="method-subsection arguments-section parameters">
<h4 class="method-subtitle parameter-title">Parameters</h4>
<table class="argument-def parameter-def">
<tr>
<th scope="row" class="argument-name"><code>username</code></th>
<td><p>The <a href="#//api/name/username">username</a> to provide access to the Vantiq server</p></td>
</tr>
<tr>
<th scope="row" class="argument-name"><code>password</code></th>
<td><p>The password associated with the <a href="#//api/name/username">username</a></p></td>
</tr>
<tr>
<th scope="row" class="argument-name"><code>handler</code></th>
<td><p>The handler block to execute.</p></td>
</tr>
</table>
</div>
<div class="method-subsection return">
<h4 class="method-subtitle parameter-title">Return Value</h4>
<p>response: <a href="https://developer.apple.com/library/mac/documentation/Cocoa/Reference/Foundation/Classes/NSHTTPURLResponse_Class/">iOS HTTP operation response</a></p><p>error: <a href="https://developer.apple.com/library/mac/documentation/Cocoa/Reference/Foundation/Classes/NSError_Class/">iOS error condition response</a></p>
</div>
<div class="method-subsection discussion-section">
<h4 class="method-subtitle">Discussion</h4>
<p>The authenticate method connects to the Vantiq server with the given authentication
credentials used to authorize the user. The <a href="#//api/name/username">username</a> and password credentials are not stored.</p><div class="warning"><p><strong>Warning:</strong> Please also note this method invokes a callback block associated with a network-
related block. Because this block is called from asynchronous network operations,
its code must be wrapped by a call to <em>dispatch_async(dispatch_get_main_queue(), ^ {…});</em>
to ensure UI operations are completed on the main thread.</p></div>
</div>
<div class="method-subsection declared-in-section">
<h4 class="method-subtitle">Declared In</h4>
<p><code class="declared-in-ref">Vantiq.h</code></p>
</div>
</div>
</div>
</div><div class="section-method">
<a name="//api/name/retrieveServerId:" title="retrieveServerId:"></a>
<h3 class="method-title"><code><a href="#//api/name/retrieveServerId:">– retrieveServerId:</a></code>
</h3>
<div class="method-info">
<div class="pointy-thing"></div>
<div class="method-info-container">
<div class="method-subsection brief-description">
<p>The retrieveServerId method retrieves a unique VANTIQ server ID once the user has been
authenticated, setting the <a href="#//api/name/serverId">serverId</a> property in the process. This ID can be used to determine
the uniqueness of a server if one server has multiple IP addresses/URL endpoints</p>
</div>
<div class="method-subsection method-declaration"><code>- (void)retrieveServerId:(void ( ^ ) ( NSHTTPURLResponse *response , NSError *error ))<em>handler</em></code></div>
<div class="method-subsection arguments-section parameters">
<h4 class="method-subtitle parameter-title">Parameters</h4>
<table class="argument-def parameter-def">
<tr>
<th scope="row" class="argument-name"><code>handler</code></th>
<td><p>The handler block to execute.</p></td>
</tr>
</table>
</div>
<div class="method-subsection return">
<h4 class="method-subtitle parameter-title">Return Value</h4>
<p>response: <a href="https://developer.apple.com/library/mac/documentation/Cocoa/Reference/Foundation/Classes/NSHTTPURLResponse_Class/">iOS HTTP operation response</a></p><p>error: <a href="https://developer.apple.com/library/mac/documentation/Cocoa/Reference/Foundation/Classes/NSError_Class/">iOS error condition response</a></p>
</div>
<div class="method-subsection discussion-section">
<h4 class="method-subtitle">Discussion</h4>
<p>The retrieveServerId method retrieves a unique VANTIQ server ID once the user has been
authenticated, setting the <a href="#//api/name/serverId">serverId</a> property in the process. This ID can be used to determine
the uniqueness of a server if one server has multiple IP addresses/URL endpoints</p><div class="warning"><p><strong>Warning:</strong> Please also note this method invokes a callback block associated with a network-
related block. Because this block is called from asynchronous network operations,
its code must be wrapped by a call to <em>dispatch_async(dispatch_get_main_queue(), ^ {…});</em>
to ensure UI operations are completed on the main thread.</p></div>
</div>
<div class="method-subsection declared-in-section">
<h4 class="method-subtitle">Declared In</h4>
<p><code class="declared-in-ref">Vantiq.h</code></p>
</div>
</div>
</div>
</div><div class="section-method">
<a name="//api/name/select:props:where:sort:limit:completionHandler:" title="select:props:where:sort:limit:completionHandler:"></a>
<h3 class="method-title"><code><a href="#//api/name/select:props:where:sort:limit:completionHandler:">– select:props:where:sort:limit:completionHandler:</a></code>
</h3>
<div class="method-info">
<div class="pointy-thing"></div>
<div class="method-info-container">
<div class="method-subsection brief-description">
<p>The select method issues a query to select all matching records for a given type.
The select may query both user-defined types as well as system types, such as procedures and types.</p>
</div>
<div class="method-subsection method-declaration"><code>- (void)select:(NSString *)<em>type</em> props:(NSArray *)<em>props</em> where:(NSString *)<em>where</em> sort:(NSString *)<em>sort</em> limit:(int)<em>limit</em> completionHandler:(void ( ^ ) ( NSArray *data , NSHTTPURLResponse *response , NSError *error ))<em>handler</em></code></div>
<div class="method-subsection arguments-section parameters">
<h4 class="method-subtitle parameter-title">Parameters</h4>
<table class="argument-def parameter-def">
<tr>
<th scope="row" class="argument-name"><code>type</code></th>
<td><p>The data type to query. If querying for a Vantiq system type (e.g. types, sources), add a ‘system.’ prefix to the type (e.g. system.types, system.sources).</p></td>
</tr>
<tr>
<th scope="row" class="argument-name"><code>props</code></th>
<td><p>Specifies the desired properties to be returned in each record. An empty array or null value means all properties will be returned. The array contains NSStrings.</p></td>
</tr>
<tr>
<th scope="row" class="argument-name"><code>where</code></th>
<td><p>Specifies constraints to filter the data. Null means all records will be returned.</p></td>
</tr>
<tr>
<th scope="row" class="argument-name"><code>sort</code></th>
<td><p>Specifies the desired sort for the result set. This is a JSON-formatted string.</p></td>
</tr>
<tr>
<th scope="row" class="argument-name"><code>limit</code></th>
<td><p>Specifies a limit on the number of records returned. -1 means no limits. If zero or greater, the actual number of records present is returned in the ‘X-Total-Count’ HTTP header.</p></td>
</tr>
<tr>
<th scope="row" class="argument-name"><code>handler</code></th>
<td><p>The handler block to execute.</p></td>
</tr>
</table>
</div>
<div class="method-subsection return">
<h4 class="method-subtitle parameter-title">Return Value</h4>
<p>data: array of NSDictionary objects of matching records</p><p>response: <a href="https://developer.apple.com/library/mac/documentation/Cocoa/Reference/Foundation/Classes/NSHTTPURLResponse_Class/">iOS HTTP operation response</a></p><p>error: <a href="https://developer.apple.com/library/mac/documentation/Cocoa/Reference/Foundation/Classes/NSError_Class/">iOS error condition response</a></p>
</div>
<div class="method-subsection discussion-section">
<h4 class="method-subtitle">Discussion</h4>
<p>The select method issues a query to select all matching records for a given type.
The select may query both user-defined types as well as system types, such as procedures and types.</p><div class="warning"><p><strong>Warning:</strong> Please also note this method invokes a callback block associated with a network-
related block. Because this block is called from asynchronous network operations,
its code must be wrapped by a call to <em>dispatch_async(dispatch_get_main_queue(), ^ {…});</em>
to ensure UI operations are completed on the main thread.</p></div>
</div>
<div class="method-subsection declared-in-section">
<h4 class="method-subtitle">Declared In</h4>
<p><code class="declared-in-ref">Vantiq.h</code></p>
</div>
</div>
</div>
</div><div class="section-method">
<a name="//api/name/select:props:where:sort:completionHandler:" title="select:props:where:sort:completionHandler:"></a>
<h3 class="method-title"><code><a href="#//api/name/select:props:where:sort:completionHandler:">– select:props:where:sort:completionHandler:</a></code>
</h3>
<div class="method-info">
<div class="pointy-thing"></div>
<div class="method-info-container">
<div class="method-subsection brief-description">
<p>The select method issues a query to select all matching records for a given type.
The select may query both user-defined types as well as system types, such as procedures and types.</p>
</div>
<div class="method-subsection method-declaration"><code>- (void)select:(NSString *)<em>type</em> props:(NSArray *)<em>props</em> where:(NSString *)<em>where</em> sort:(NSString *)<em>sort</em> completionHandler:(void ( ^ ) ( NSArray *data , NSHTTPURLResponse *response , NSError *error ))<em>handler</em></code></div>
<div class="method-subsection arguments-section parameters">
<h4 class="method-subtitle parameter-title">Parameters</h4>
<table class="argument-def parameter-def">
<tr>
<th scope="row" class="argument-name"><code>type</code></th>
<td><p>The data type to query. If querying for a Vantiq system type (e.g. types, sources), add a ‘system.’ prefix to the type (e.g. system.types, system.sources).</p></td>
</tr>
<tr>
<th scope="row" class="argument-name"><code>props</code></th>
<td><p>Specifies the desired properties to be returned in each record. An empty array or null value means all properties will be returned. The array contains NSStrings.</p></td>
</tr>
<tr>
<th scope="row" class="argument-name"><code>where</code></th>
<td><p>Specifies constraints to filter the data. Null means all records will be returned.</p></td>
</tr>
<tr>
<th scope="row" class="argument-name"><code>sort</code></th>
<td><p>Specifies the desired sort for the result set. This is a JSON-formatted string.</p></td>
</tr>
<tr>
<th scope="row" class="argument-name"><code>handler</code></th>
<td><p>The handler block to execute.</p></td>
</tr>
</table>
</div>
<div class="method-subsection return">
<h4 class="method-subtitle parameter-title">Return Value</h4>
<p>data: array of NSDictionary objects of matching records</p><p>response: <a href="https://developer.apple.com/library/mac/documentation/Cocoa/Reference/Foundation/Classes/NSHTTPURLResponse_Class/">iOS HTTP operation response</a></p><p>error: <a href="https://developer.apple.com/library/mac/documentation/Cocoa/Reference/Foundation/Classes/NSError_Class/">iOS error condition response</a></p>
</div>
<div class="method-subsection discussion-section">
<h4 class="method-subtitle">Discussion</h4>
<p>The select method issues a query to select all matching records for a given type.
The select may query both user-defined types as well as system types, such as procedures and types.</p><div class="warning"><p><strong>Warning:</strong> Please also note this method invokes a callback block associated with a network-
related block. Because this block is called from asynchronous network operations,
its code must be wrapped by a call to <em>dispatch_async(dispatch_get_main_queue(), ^ {…});</em>
to ensure UI operations are completed on the main thread.</p></div>
</div>
<div class="method-subsection declared-in-section">
<h4 class="method-subtitle">Declared In</h4>
<p><code class="declared-in-ref">Vantiq.h</code></p>
</div>
</div>
</div>
</div><div class="section-method">
<a name="//api/name/select:props:where:completionHandler:" title="select:props:where:completionHandler:"></a>
<h3 class="method-title"><code><a href="#//api/name/select:props:where:completionHandler:">– select:props:where:completionHandler:</a></code>
</h3>
<div class="method-info">
<div class="pointy-thing"></div>
<div class="method-info-container">
<div class="method-subsection brief-description">
<p>The select method issues a query to select all matching records for a given type.
The select may query both user-defined types as well as system types, such as procedures and types.</p>
</div>
<div class="method-subsection method-declaration"><code>- (void)select:(NSString *)<em>type</em> props:(NSArray *)<em>props</em> where:(NSString *)<em>where</em> completionHandler:(void ( ^ ) ( NSArray *data , NSHTTPURLResponse *response , NSError *error ))<em>handler</em></code></div>
<div class="method-subsection arguments-section parameters">
<h4 class="method-subtitle parameter-title">Parameters</h4>
<table class="argument-def parameter-def">
<tr>
<th scope="row" class="argument-name"><code>type</code></th>
<td><p>The data type to query. If querying for a Vantiq system type (e.g. types, sources), add a ‘system.’ prefix to the type (e.g. system.types, system.sources).</p></td>
</tr>
<tr>
<th scope="row" class="argument-name"><code>props</code></th>
<td><p>Specifies the desired properties to be returned in each record. An empty array or null value means all properties will be returned. The array contains NSStrings.</p></td>
</tr>
<tr>
<th scope="row" class="argument-name"><code>where</code></th>
<td><p>Specifies constraints to filter the data. Null means all records will be returned. This is a JSON-formatted string.</p></td>
</tr>
<tr>
<th scope="row" class="argument-name"><code>handler</code></th>
<td><p>The handler block to execute.</p></td>
</tr>
</table>
</div>
<div class="method-subsection return">
<h4 class="method-subtitle parameter-title">Return Value</h4>
<p>data: array of NSDictionary objects of matching records</p><p>response: <a href="https://developer.apple.com/library/mac/documentation/Cocoa/Reference/Foundation/Classes/NSHTTPURLResponse_Class/">iOS HTTP operation response</a></p><p>error: <a href="https://developer.apple.com/library/mac/documentation/Cocoa/Reference/Foundation/Classes/NSError_Class/">iOS error condition response</a></p>
</div>
<div class="method-subsection discussion-section">
<h4 class="method-subtitle">Discussion</h4>
<p>The select method issues a query to select all matching records for a given type.
The select may query both user-defined types as well as system types, such as procedures and types.</p><div class="warning"><p><strong>Warning:</strong> Please also note this method invokes a callback block associated with a network-
related block. Because this block is called from asynchronous network operations,
its code must be wrapped by a call to <em>dispatch_async(dispatch_get_main_queue(), ^ {…});</em>
to ensure UI operations are completed on the main thread.</p>
<p>It is important to check the response and error callback return values to verify there were no
errors returned by the select operation. The callback data returned is an array of NSDictionary objects.</p></div>
</div>
<div class="method-subsection see-also-section">
<h4 class="method-subtitle">See Also</h4>
<ul>
<li><code><p><a href="#//api/name/select:props:where:sort:completionHandler:">- select:props:where:sort:completionHandler:</a></p></code></li>
</ul>
</div>
<div class="method-subsection declared-in-section">
<h4 class="method-subtitle">Declared In</h4>
<p><code class="declared-in-ref">Vantiq.h</code></p>
</div>
</div>
</div>
</div><div class="section-method">
<a name="//api/name/select:props:completionHandler:" title="select:props:completionHandler:"></a>
<h3 class="method-title"><code><a href="#//api/name/select:props:completionHandler:">– select:props:completionHandler:</a></code>
</h3>
<div class="method-info">
<div class="pointy-thing"></div>
<div class="method-info-container">
<div class="method-subsection brief-description">
<p>The select method issues a query to select all matching records for a given type.
The select may query both user-defined types as well as system types, such as procedures and types.</p>
</div>
<div class="method-subsection method-declaration"><code>- (void)select:(NSString *)<em>type</em> props:(NSArray *)<em>props</em> completionHandler:(void ( ^ ) ( NSArray *data , NSHTTPURLResponse *response , NSError *error ))<em>handler</em></code></div>
<div class="method-subsection arguments-section parameters">
<h4 class="method-subtitle parameter-title">Parameters</h4>
<table class="argument-def parameter-def">
<tr>
<th scope="row" class="argument-name"><code>type</code></th>
<td><p>The data type to query. If querying for a Vantiq system type (e.g. types, sources), add a ‘system.’ prefix to the type (e.g. system.types, system.sources).</p></td>
</tr>
<tr>
<th scope="row" class="argument-name"><code>props</code></th>
<td><p>Specifies the desired properties to be returned in each record. An empty array or null value means all properties will be returned. The array contains NSStrings.</p></td>
</tr>
<tr>
<th scope="row" class="argument-name"><code>handler</code></th>
<td><p>The handler block to execute.</p></td>
</tr>
</table>
</div>
<div class="method-subsection return">
<h4 class="method-subtitle parameter-title">Return Value</h4>
<p>data: array of NSDictionary objects of matching records</p><p>response: <a href="https://developer.apple.com/library/mac/documentation/Cocoa/Reference/Foundation/Classes/NSHTTPURLResponse_Class/">iOS HTTP operation response</a></p><p>error: <a href="https://developer.apple.com/library/mac/documentation/Cocoa/Reference/Foundation/Classes/NSError_Class/">iOS error condition response</a></p>
</div>
<div class="method-subsection discussion-section">
<h4 class="method-subtitle">Discussion</h4>
<p>The select method issues a query to select all matching records for a given type.
The select may query both user-defined types as well as system types, such as procedures and types.</p><div class="warning"><p><strong>Warning:</strong> Please also note this method invokes a callback block associated with a network-
related block. Because this block is called from asynchronous network operations,
its code must be wrapped by a call to <em>dispatch_async(dispatch_get_main_queue(), ^ {…});</em>
to ensure UI operations are completed on the main thread.</p>
<p>It is important to check the response and error callback return values to verify there were no
errors returned by the select operation. The callback data returned is an array of NSDictionary objects.</p></div>
</div>
<div class="method-subsection see-also-section">
<h4 class="method-subtitle">See Also</h4>
<ul>
<li><code><p><a href="#//api/name/select:props:where:sort:completionHandler:">- select:props:where:sort:completionHandler:</a></p></code></li>
</ul>
</div>
<div class="method-subsection declared-in-section">
<h4 class="method-subtitle">Declared In</h4>
<p><code class="declared-in-ref">Vantiq.h</code></p>
</div>
</div>
</div>
</div><div class="section-method">
<a name="//api/name/select:completionHandler:" title="select:completionHandler:"></a>
<h3 class="method-title"><code><a href="#//api/name/select:completionHandler:">– select:completionHandler:</a></code>
</h3>
<div class="method-info">
<div class="pointy-thing"></div>
<div class="method-info-container">
<div class="method-subsection brief-description">
<p>The select method issues a query to select all matching records for a given type.
The select may query both user-defined types as well as system types, such as procedures and types.</p>
</div>
<div class="method-subsection method-declaration"><code>- (void)select:(NSString *)<em>type</em> completionHandler:(void ( ^ ) ( NSArray *data , NSHTTPURLResponse *response , NSError *error ))<em>handler</em></code></div>
<div class="method-subsection arguments-section parameters">
<h4 class="method-subtitle parameter-title">Parameters</h4>
<table class="argument-def parameter-def">
<tr>
<th scope="row" class="argument-name"><code>type</code></th>
<td><p>The data type to query. If querying for a Vantiq system type (e.g. types, sources), add a ‘system.’ prefix to the type (e.g. system.types, system.sources).</p></td>
</tr>
<tr>
<th scope="row" class="argument-name"><code>handler</code></th>
<td><p>The handler block to execute.</p></td>
</tr>
</table>
</div>
<div class="method-subsection return">
<h4 class="method-subtitle parameter-title">Return Value</h4>
<p>data: array of NSDictionary objects of matching records</p><p>response: <a href="https://developer.apple.com/library/mac/documentation/Cocoa/Reference/Foundation/Classes/NSHTTPURLResponse_Class/">iOS HTTP operation response</a></p><p>error: <a href="https://developer.apple.com/library/mac/documentation/Cocoa/Reference/Foundation/Classes/NSError_Class/">iOS error condition response</a></p>
</div>
<div class="method-subsection discussion-section">
<h4 class="method-subtitle">Discussion</h4>
<p>The select method issues a query to select all matching records for a given type.
The select may query both user-defined types as well as system types, such as procedures and types.</p><div class="warning"><p><strong>Warning:</strong> Please also note this method invokes a callback block associated with a network-
related block. Because this block is called from asynchronous network operations,
its code must be wrapped by a call to <em>dispatch_async(dispatch_get_main_queue(), ^ {…});</em>
to ensure UI operations are completed on the main thread.</p>
<p>It is important to check the response and error callback return values to verify there were no
errors returned by the select operation. The callback data returned is an array of NSDictionary objects.</p></div>
</div>
<div class="method-subsection see-also-section">
<h4 class="method-subtitle">See Also</h4>
<ul>
<li><code><p><a href="#//api/name/select:props:where:sort:completionHandler:">- select:props:where:sort:completionHandler:</a></p></code></li>
</ul>
</div>
<div class="method-subsection declared-in-section">
<h4 class="method-subtitle">Declared In</h4>
<p><code class="declared-in-ref">Vantiq.h</code></p>
</div>
</div>
</div>
</div><div class="section-method">
<a name="//api/name/selectOne:id:completionHandler:" title="selectOne:id:completionHandler:"></a>
<h3 class="method-title"><code><a href="#//api/name/selectOne:id:completionHandler:">– selectOne:id:completionHandler:</a></code>
</h3>
<div class="method-info">
<div class="pointy-thing"></div>
<div class="method-info-container">
<div class="method-subsection brief-description">
<p>The selectOne method issues a query to select a single record for a given type and unique identifier.</p>
</div>
<div class="method-subsection method-declaration"><code>- (void)selectOne:(NSString *)<em>type</em> id:(NSString *)<em>ID</em> completionHandler:(void ( ^ ) ( NSArray *data , NSHTTPURLResponse *response , NSError *error ))<em>handler</em></code></div>
<div class="method-subsection arguments-section parameters">
<h4 class="method-subtitle parameter-title">Parameters</h4>
<table class="argument-def parameter-def">
<tr>
<th scope="row" class="argument-name"><code>type</code></th>
<td><p>The data type to query. If querying for a Vantiq system type (e.g. types, sources), add a ‘system.’ prefix to the type (e.g. system.types, system.sources).</p></td>
</tr>
<tr>
<th scope="row" class="argument-name"><code>ID</code></th>
<td><p>The unique identifier that matches the type’s ‘_id’ property.</p></td>
</tr>
<tr>
<th scope="row" class="argument-name"><code>handler</code></th>
<td><p>The handler block to execute.</p></td>
</tr>
</table>
</div>
<div class="method-subsection return">
<h4 class="method-subtitle parameter-title">Return Value</h4>
<p>data: array of NSDictionary objects of matching records</p><p>response: <a href="https://developer.apple.com/library/mac/documentation/Cocoa/Reference/Foundation/Classes/NSHTTPURLResponse_Class/">iOS HTTP operation response</a></p><p>error: <a href="https://developer.apple.com/library/mac/documentation/Cocoa/Reference/Foundation/Classes/NSError_Class/">iOS error condition response</a></p>
</div>
<div class="method-subsection discussion-section">
<h4 class="method-subtitle">Discussion</h4>
<p>The selectOne method issues a query to select a single record for a given type and unique identifier.</p><div class="warning"><p><strong>Warning:</strong> Please also note this method invokes a callback block associated with a network-
related block. Because this block is called from asynchronous network operations,
its code must be wrapped by a call to <em>dispatch_async(dispatch_get_main_queue(), ^ {…});</em>
to ensure UI operations are completed on the main thread.</p>
<p>It is important to check the response and error callback return values to verify there were no
errors returned by the selectOne operation. The callback data returned is an array of NSDictionary objects.</p></div>
</div>
<div class="method-subsection see-also-section">
<h4 class="method-subtitle">See Also</h4>
<ul>
<li><code><p><a href="#//api/name/select:props:where:sort:completionHandler:">- select:props:where:sort:completionHandler:</a></p></code></li>
</ul>
</div>
<div class="method-subsection declared-in-section">
<h4 class="method-subtitle">Declared In</h4>
<p><code class="declared-in-ref">Vantiq.h</code></p>
</div>
</div>
</div>
</div><div class="section-method">
<a name="//api/name/count:where:completionHandler:" title="count:where:completionHandler:"></a>
<h3 class="method-title"><code><a href="#//api/name/count:where:completionHandler:">– count:where:completionHandler:</a></code>
</h3>
<div class="method-info">
<div class="pointy-thing"></div>
<div class="method-info-container">
<div class="method-subsection brief-description">
<p>The count method is similar to the select method except it returns only the number of records rather than returning the records themselves.</p>
</div>
<div class="method-subsection method-declaration"><code>- (void)count:(NSString *)<em>type</em> where:(NSString *)<em>where</em> completionHandler:(void ( ^ ) ( int count , NSHTTPURLResponse *response , NSError *error ))<em>handler</em></code></div>
<div class="method-subsection arguments-section parameters">
<h4 class="method-subtitle parameter-title">Parameters</h4>
<table class="argument-def parameter-def">
<tr>
<th scope="row" class="argument-name"><code>type</code></th>
<td><p>The data type to query. If querying for a Vantiq system type (e.g. types, sources), add a ‘system.’ prefix to the type (e.g. system.types, system.sources).</p></td>
</tr>
<tr>
<th scope="row" class="argument-name"><code>where</code></th>
<td><p>Specifies constraints to filter the data. Null means all records will be returned. This is a JSON-formatted string.</p></td>
</tr>
<tr>
<th scope="row" class="argument-name"><code>handler</code></th>
<td><p>The handler block to execute.</p></td>
</tr>
</table>
</div>
<div class="method-subsection return">
<h4 class="method-subtitle parameter-title">Return Value</h4>
<p>count: number of matching records</p><p>response: <a href="https://developer.apple.com/library/mac/documentation/Cocoa/Reference/Foundation/Classes/NSHTTPURLResponse_Class/">iOS HTTP operation response</a></p><p>error: <a href="https://developer.apple.com/library/mac/documentation/Cocoa/Reference/Foundation/Classes/NSError_Class/">iOS error condition response</a></p>
</div>
<div class="method-subsection discussion-section">
<h4 class="method-subtitle">Discussion</h4>
<p>The count method is similar to the select method except it returns only the number of records rather than returning the records themselves.</p><div class="warning"><p><strong>Warning:</strong> Please also note this method invokes a callback block associated with a network-
related block. Because this block is called from asynchronous network operations,
its code must be wrapped by a call to <em>dispatch_async(dispatch_get_main_queue(), ^ {…});</em>
to ensure UI operations are completed on the main thread.</p>
<p>It is important to check the response and error callback return values to verify there were no
errors returned by the count operation. The callback count returned is a count of the items requested.</p></div>
</div>
<div class="method-subsection declared-in-section">
<h4 class="method-subtitle">Declared In</h4>
<p><code class="declared-in-ref">Vantiq.h</code></p>
</div>
</div>
</div>
</div><div class="section-method">
<a name="//api/name/count:completionHandler:" title="count:completionHandler:"></a>
<h3 class="method-title"><code><a href="#//api/name/count:completionHandler:">– count:completionHandler:</a></code>
</h3>
<div class="method-info">
<div class="pointy-thing"></div>
<div class="method-info-container">
<div class="method-subsection brief-description">
<p>The count method is similar to the select method except it returns only the number of records rather than returning the records themselves.</p>
</div>
<div class="method-subsection method-declaration"><code>- (void)count:(NSString *)<em>type</em> completionHandler:(void ( ^ ) ( int count , NSHTTPURLResponse *response , NSError *error ))<em>handler</em></code></div>
<div class="method-subsection arguments-section parameters">
<h4 class="method-subtitle parameter-title">Parameters</h4>
<table class="argument-def parameter-def">
<tr>
<th scope="row" class="argument-name"><code>type</code></th>
<td><p>The data type to query. If querying for a Vantiq system type (e.g. types, sources), add a ‘system.’ prefix to the type (e.g. system.types, system.sources).</p></td>
</tr>
<tr>
<th scope="row" class="argument-name"><code>handler</code></th>
<td><p>The handler block to execute.</p></td>
</tr>
</table>
</div>
<div class="method-subsection return">
<h4 class="method-subtitle parameter-title">Return Value</h4>
<p>count: number of matching records</p><p>response: <a href="https://developer.apple.com/library/mac/documentation/Cocoa/Reference/Foundation/Classes/NSHTTPURLResponse_Class/">iOS HTTP operation response</a></p><p>error: <a href="https://developer.apple.com/library/mac/documentation/Cocoa/Reference/Foundation/Classes/NSError_Class/">iOS error condition response</a></p>
</div>
<div class="method-subsection discussion-section">
<h4 class="method-subtitle">Discussion</h4>
<p>The count method is similar to the select method except it returns only the number of records rather than returning the records themselves.</p><div class="warning"><p><strong>Warning:</strong> Please also note this method invokes a callback block associated with a network-
related block. Because this block is called from asynchronous network operations,
its code must be wrapped by a call to <em>dispatch_async(dispatch_get_main_queue(), ^ {…});</em>
to ensure UI operations are completed on the main thread.</p>
<p>It is important to check the response and error callback return values to verify there were no
errors returned by the count operation. The callback count returned is a count of the items requested.</p></div>
</div>
<div class="method-subsection see-also-section">
<h4 class="method-subtitle">See Also</h4>
<ul>
<li><code><p><a href="#//api/name/count:where:completionHandler:">- count:where:completionHandler:</a></p></code></li>
</ul>
</div>
<div class="method-subsection declared-in-section">
<h4 class="method-subtitle">Declared In</h4>
<p><code class="declared-in-ref">Vantiq.h</code></p>
</div>
</div>
</div>
</div><div class="section-method">
<a name="//api/name/insert:object:completionHandler:" title="insert:object:completionHandler:"></a>
<h3 class="method-title"><code><a href="#//api/name/insert:object:completionHandler:">– insert:object:completionHandler:</a></code>
</h3>
<div class="method-info">
<div class="pointy-thing"></div>
<div class="method-info-container">
<div class="method-subsection brief-description">
<p>The insert method creates a new record of a given type.</p>
</div>
<div class="method-subsection method-declaration"><code>- (void)insert:(NSString *)<em>type</em> object:(NSString *)<em>object</em> completionHandler:(void ( ^ ) ( NSDictionary *data , NSHTTPURLResponse *response , NSError *error ))<em>handler</em></code></div>
<div class="method-subsection arguments-section parameters">
<h4 class="method-subtitle parameter-title">Parameters</h4>
<table class="argument-def parameter-def">
<tr>
<th scope="row" class="argument-name"><code>type</code></th>
<td><p>The data type to query. If querying for a Vantiq system type (e.g. types, sources), add a ‘system.’ prefix to the type (e.g. system.types, system.sources).</p></td>
</tr>
<tr>
<th scope="row" class="argument-name"><code>object</code></th>
<td><p>The JSON-formated string data to insert.</p></td>
</tr>
<tr>
<th scope="row" class="argument-name"><code>handler</code></th>
<td><p>The handler block to execute.</p></td>
</tr>
</table>
</div>
<div class="method-subsection return">
<h4 class="method-subtitle parameter-title">Return Value</h4>
<p>data: copy of the inserted data</p><p>response: <a href="https://developer.apple.com/library/mac/documentation/Cocoa/Reference/Foundation/Classes/NSHTTPURLResponse_Class/">iOS HTTP operation response</a></p><p>error: <a href="https://developer.apple.com/library/mac/documentation/Cocoa/Reference/Foundation/Classes/NSError_Class/">iOS error condition response</a></p>
</div>
<div class="method-subsection discussion-section">
<h4 class="method-subtitle">Discussion</h4>
<p>The insert method creates a new record of a given type.</p><div class="warning"><p><strong>Warning:</strong> Please also note this method invokes a callback block associated with a network-
related block. Because this block is called from asynchronous network operations,
its code must be wrapped by a call to <em>dispatch_async(dispatch_get_main_queue(), ^ {…});</em>
to ensure UI operations are completed on the main thread.</p>
<p>It is important to check the response and error callback return values to verify there were no
errors returned by the insert operation. The callback data returned is a copy of the inserted data.</p></div>
</div>
<div class="method-subsection declared-in-section">
<h4 class="method-subtitle">Declared In</h4>
<p><code class="declared-in-ref">Vantiq.h</code></p>
</div>
</div>
</div>
</div><div class="section-method">
<a name="//api/name/update:id:object:completionHandler:" title="update:id:object:completionHandler:"></a>
<h3 class="method-title"><code><a href="#//api/name/update:id:object:completionHandler:">– update:id:object:completionHandler:</a></code>
</h3>
<div class="method-info">
<div class="pointy-thing"></div>
<div class="method-info-container">
<div class="method-subsection brief-description">
<p>The update method updates an existing record of a given type. This method supports partial updates meaning that only the properties provided are updated. Any properties not specified are not changed in the underlying record.</p>
</div>
<div class="method-subsection method-declaration"><code>- (void)update:(NSString *)<em>type</em> id:(NSString *)<em>ID</em> object:(NSString *)<em>object</em> completionHandler:(void ( ^ ) ( NSDictionary *data , NSHTTPURLResponse *response , NSError *error ))<em>handler</em></code></div>
<div class="method-subsection arguments-section parameters">
<h4 class="method-subtitle parameter-title">Parameters</h4>
<table class="argument-def parameter-def">
<tr>
<th scope="row" class="argument-name"><code>type</code></th>
<td><p>The data type to query. If querying for a Vantiq system type (e.g. types, sources), add a ‘system.’ prefix to the type (e.g. system.types, system.sources).</p></td>
</tr>
<tr>
<th scope="row" class="argument-name"><code>ID</code></th>
<td><p>The “_id” internal identifier for the record.</p></td>
</tr>
<tr>
<th scope="row" class="argument-name"><code>object</code></th>
<td><p>The JSON-formated string data to update.</p></td>
</tr>
<tr>
<th scope="row" class="argument-name"><code>handler</code></th>
<td><p>The handler block to execute.</p></td>
</tr>
</table>
</div>
<div class="method-subsection return">
<h4 class="method-subtitle parameter-title">Return Value</h4>
<p>data: copy of the updated data</p><p>response: <a href="https://developer.apple.com/library/mac/documentation/Cocoa/Reference/Foundation/Classes/NSHTTPURLResponse_Class/">iOS HTTP operation response</a></p><p>error: <a href="https://developer.apple.com/library/mac/documentation/Cocoa/Reference/Foundation/Classes/NSError_Class/">iOS error condition response</a></p>
</div>
<div class="method-subsection discussion-section">
<h4 class="method-subtitle">Discussion</h4>
<p>The update method updates an existing record of a given type. This method supports partial updates meaning that only the properties provided are updated. Any properties not specified are not changed in the underlying record.</p><div class="warning"><p><strong>Warning:</strong> Please also note this method invokes a callback block associated with a network-
related block. Because this block is called from asynchronous network operations,
its code must be wrapped by a call to <em>dispatch_async(dispatch_get_main_queue(), ^ {…});</em>
to ensure UI operations are completed on the main thread.</p>
<p>It is important to check the response and error callback return values to verify there were no
errors returned by the insert operation. The callback data returned is a copy of the updated data.</p></div>
</div>
<div class="method-subsection declared-in-section">
<h4 class="method-subtitle">Declared In</h4>
<p><code class="declared-in-ref">Vantiq.h</code></p>
</div>
</div>
</div>
</div><div class="section-method">
<a name="//api/name/upsert:object:completionHandler:" title="upsert:object:completionHandler:"></a>
<h3 class="method-title"><code><a href="#//api/name/upsert:object:completionHandler:">– upsert:object:completionHandler:</a></code>
</h3>
<div class="method-info">
<div class="pointy-thing"></div>
<div class="method-info-container">
<div class="method-subsection brief-description">
<p>The upsert method either creates or updates a record in the database depending if the record already exists. The method tests for existence by looking at the natural keys defined on the type.</p>
</div>
<div class="method-subsection method-declaration"><code>- (void)upsert:(NSString *)<em>type</em> object:(NSString *)<em>object</em> completionHandler:(void ( ^ ) ( NSDictionary *data , NSHTTPURLResponse *response , NSError *error ))<em>handler</em></code></div>
<div class="method-subsection arguments-section parameters">
<h4 class="method-subtitle parameter-title">Parameters</h4>
<table class="argument-def parameter-def">
<tr>
<th scope="row" class="argument-name"><code>type</code></th>
<td><p>The data type to query. If querying for a Vantiq system type (e.g. types, sources), add a ‘system.’ prefix to the type (e.g. system.types, system.sources)</p></td>
</tr>
<tr>
<th scope="row" class="argument-name"><code>object</code></th>
<td><p>The JSON-formated string data to upsert.</p></td>
</tr>
<tr>
<th scope="row" class="argument-name"><code>handler</code></th>
<td><p>The handler block to execute.</p></td>
</tr>
</table>
</div>
<div class="method-subsection return">
<h4 class="method-subtitle parameter-title">Return Value</h4>
<p>data: copy of the upserted data</p><p>response: <a href="https://developer.apple.com/library/mac/documentation/Cocoa/Reference/Foundation/Classes/NSHTTPURLResponse_Class/">iOS HTTP operation response</a></p><p>error: <a href="https://developer.apple.com/library/mac/documentation/Cocoa/Reference/Foundation/Classes/NSError_Class/">iOS error condition response</a></p>
</div>
<div class="method-subsection discussion-section">
<h4 class="method-subtitle">Discussion</h4>
<p>The upsert method either creates or updates a record in the database depending if the record already exists. The method tests for existence by looking at the natural keys defined on the type.</p><div class="warning"><p><strong>Warning:</strong> Please also note this method invokes a callback block associated with a network-
related block. Because this block is called from asynchronous network operations,
its code must be wrapped by a call to <em>dispatch_async(dispatch_get_main_queue(), ^ {…});</em>
to ensure UI operations are completed on the main thread.</p>
<p>It is important to check the response and error callback return values to verify there were no
errors returned by the insert operation. The callback data returned is a copy of the upserted data.</p></div>
</div>
<div class="method-subsection declared-in-section">
<h4 class="method-subtitle">Declared In</h4>
<p><code class="declared-in-ref">Vantiq.h</code></p>
</div>
</div>
</div>
</div><div class="section-method">
<a name="//api/name/delete:resourceId:completionHandler:" title="delete:resourceId:completionHandler:"></a>
<h3 class="method-title"><code><a href="#//api/name/delete:resourceId:completionHandler:">– delete:resourceId:completionHandler:</a></code>
</h3>
<div class="method-info">
<div class="pointy-thing"></div>
<div class="method-info-container">
<div class="method-subsection brief-description">
<p>This delete method removes records from the system for a given type. Use this form of delete
for system types which require the name of the type in order to perform the delete.</p>
</div>
<div class="method-subsection method-declaration"><code>- (void)delete:(NSString *)<em>type</em> resourceId:(NSString *)<em>resourceId</em> completionHandler:(void ( ^ ) ( NSHTTPURLResponse *response , NSError *error ))<em>handler</em></code></div>
<div class="method-subsection arguments-section parameters">
<h4 class="method-subtitle parameter-title">Parameters</h4>
<table class="argument-def parameter-def">
<tr>
<th scope="row" class="argument-name"><code>type</code></th>
<td><p>The data type to query. If querying for a Vantiq system type (e.g. types, sources), add a ‘system.’ prefix to the type (e.g. system.types, system.sources).</p></td>
</tr>
<tr>
<th scope="row" class="argument-name"><code>resourceId</code></th>
<td><p>The resource identifier. This is a string and is mostly but not always associated with the type’s ‘name’ property.</p></td>
</tr>
<tr>
<th scope="row" class="argument-name"><code>handler</code></th>
<td><p>The handler block to execute.</p></td>
</tr>
</table>
</div>
<div class="method-subsection return">
<h4 class="method-subtitle parameter-title">Return Value</h4>
<p>response: <a href="https://developer.apple.com/library/mac/documentation/Cocoa/Reference/Foundation/Classes/NSHTTPURLResponse_Class/">iOS HTTP operation response</a></p><p>error: <a href="https://developer.apple.com/library/mac/documentation/Cocoa/Reference/Foundation/Classes/NSError_Class/">iOS error condition response</a></p>
</div>
<div class="method-subsection discussion-section">
<h4 class="method-subtitle">Discussion</h4>
<p>This delete method removes records from the system for a given type. Use this form of delete
for system types which require the name of the type in order to perform the delete.</p><div class="warning"><p><strong>Warning:</strong> Please also note this method invokes a callback block associated with a network-
related block. Because this block is called from asynchronous network operations,
its code must be wrapped by a call to <em>dispatch_async(dispatch_get_main_queue(), ^ {…});</em>
to ensure UI operations are completed on the main thread.</p>
<p>It is important to check the response and error callback return values to verify there were no
errors returned by the deleteOne operation.</p></div>
</div>
<div class="method-subsection declared-in-section">
<h4 class="method-subtitle">Declared In</h4>
<p><code class="declared-in-ref">Vantiq.h</code></p>
</div>
</div>
</div>
</div><div class="section-method">
<a name="//api/name/delete:where:completionHandler:" title="delete:where:completionHandler:"></a>
<h3 class="method-title"><code><a href="#//api/name/delete:where:completionHandler:">– delete:where:completionHandler:</a></code>
</h3>
<div class="method-info">
<div class="pointy-thing"></div>
<div class="method-info-container">
<div class="method-subsection brief-description">
<p>This delete method removes records from the system for a given type. Deletes always require a constraint indicating which records to remove.</p>
</div>
<div class="method-subsection method-declaration"><code>- (void)delete:(NSString *)<em>type</em> where:(NSString *)<em>where</em> completionHandler:(void ( ^ ) ( NSHTTPURLResponse *response , NSError *error ))<em>handler</em></code></div>
<div class="method-subsection arguments-section parameters">
<h4 class="method-subtitle parameter-title">Parameters</h4>
<table class="argument-def parameter-def">
<tr>
<th scope="row" class="argument-name"><code>type</code></th>
<td><p>The data type to query. If querying for a Vantiq system type (e.g. types, sources), add a ‘system.’ prefix to the type (e.g. system.types, system.sources).</p></td>
</tr>
<tr>
<th scope="row" class="argument-name"><code>where</code></th>
<td><p>Specifies constraints to filter the data. This is a JSON-formatted string.</p></td>
</tr>
<tr>
<th scope="row" class="argument-name"><code>handler</code></th>
<td><p>The handler block to execute.</p></td>
</tr>
</table>
</div>
<div class="method-subsection return">
<h4 class="method-subtitle parameter-title">Return Value</h4>
<p>response: <a href="https://developer.apple.com/library/mac/documentation/Cocoa/Reference/Foundation/Classes/NSHTTPURLResponse_Class/">iOS HTTP operation response</a></p><p>error: <a href="https://developer.apple.com/library/mac/documentation/Cocoa/Reference/Foundation/Classes/NSError_Class/">iOS error condition response</a></p>
</div>
<div class="method-subsection discussion-section">
<h4 class="method-subtitle">Discussion</h4>
<p>This delete method removes records from the system for a given type. Deletes always require a constraint indicating which records to remove.</p><div class="warning"><p><strong>Warning:</strong> Please also note this method invokes a callback block associated with a network-
related block. Because this block is called from asynchronous network operations,
its code must be wrapped by a call to <em>dispatch_async(dispatch_get_main_queue(), ^ {…});</em>
to ensure UI operations are completed on the main thread.</p>
<p>It is important to check the response and error callback return values to verify there were no
errors returned by the deleteOne operation.</p></div>
</div>
<div class="method-subsection declared-in-section">
<h4 class="method-subtitle">Declared In</h4>
<p><code class="declared-in-ref">Vantiq.h</code></p>
</div>
</div>
</div>
</div><div class="section-method">
<a name="//api/name/deleteOne:id:completionHandler:" title="deleteOne:id:completionHandler:"></a>
<h3 class="method-title"><code><a href="#//api/name/deleteOne:id:completionHandler:">– deleteOne:id:completionHandler:</a></code>
</h3>
<div class="method-info">
<div class="pointy-thing"></div>
<div class="method-info-container">
<div class="method-subsection brief-description">
<p>The deleteOne method issues a query to delete a single record for a given type and unique identifier.</p>
</div>
<div class="method-subsection method-declaration"><code>- (void)deleteOne:(NSString *)<em>type</em> id:(NSString *)<em>ID</em> completionHandler:(void ( ^ ) ( NSHTTPURLResponse *response , NSError *error ))<em>handler</em></code></div>
<div class="method-subsection arguments-section parameters">
<h4 class="method-subtitle parameter-title">Parameters</h4>
<table class="argument-def parameter-def">
<tr>
<th scope="row" class="argument-name"><code>type</code></th>
<td><p>The data type to query. If querying for a Vantiq system type (e.g. types, sources), add a ‘system.’ prefix to the type (e.g. system.types, system.sources).</p></td>
</tr>
<tr>
<th scope="row" class="argument-name"><code>ID</code></th>
<td><p>The unique identifier that matches the type’s ‘_id’ property.</p></td>
</tr>
<tr>
<th scope="row" class="argument-name"><code>handler</code></th>
<td><p>The handler block to execute.</p></td>
</tr>
</table>
</div>
<div class="method-subsection return">
<h4 class="method-subtitle parameter-title">Return Value</h4>
<p>response: <a href="https://developer.apple.com/library/mac/documentation/Cocoa/Reference/Foundation/Classes/NSHTTPURLResponse_Class/">iOS HTTP operation response</a></p><p>error: <a href="https://developer.apple.com/library/mac/documentation/Cocoa/Reference/Foundation/Classes/NSError_Class/">iOS error condition response</a></p>
</div>
<div class="method-subsection discussion-section">
<h4 class="method-subtitle">Discussion</h4>
<p>The deleteOne method issues a query to delete a single record for a given type and unique identifier.</p><div class="warning"><p><strong>Warning:</strong> Please also note this method invokes a callback block associated with a network-
related block. Because this block is called from asynchronous network operations,
its code must be wrapped by a call to <em>dispatch_async(dispatch_get_main_queue(), ^ {…});</em>
to ensure UI operations are completed on the main thread.</p>
<p>It is important to check the response and error callback return values to verify there were no
errors returned by the delete operation.</p></div>
</div>
<div class="method-subsection see-also-section">
<h4 class="method-subtitle">See Also</h4>
<ul>
<li><code><p><a href="#//api/name/delete:where:completionHandler:">- delete:where:completionHandler:</a></p></code></li>
</ul>
</div>
<div class="method-subsection declared-in-section">
<h4 class="method-subtitle">Declared In</h4>
<p><code class="declared-in-ref">Vantiq.h</code></p>
</div>
</div>
</div>
</div><div class="section-method">
<a name="//api/name/publish:message:completionHandler:" title="publish:message:completionHandler:"></a>
<h3 class="method-title"><code><a href="#//api/name/publish:message:completionHandler:">– publish:message:completionHandler:</a></code>
</h3>
<div class="method-info">
<div class="pointy-thing"></div>
<div class="method-info-container">
<div class="method-subsection brief-description">
<p>The publish method publishes a message onto a given topic. Messages published onto topics can trigger rules to facilitate identifying situations.</p>
</div>
<div class="method-subsection method-declaration"><code>- (void)publish:(NSString *)<em>topic</em> message:(NSString *)<em>message</em> completionHandler:(void ( ^ ) ( NSHTTPURLResponse *response , NSError *error ))<em>handler</em></code></div>
<div class="method-subsection arguments-section parameters">
<h4 class="method-subtitle parameter-title">Parameters</h4>
<table class="argument-def parameter-def">
<tr>
<th scope="row" class="argument-name"><code>topic</code></th>
<td><p>The topic on which to publish.</p></td>
</tr>
<tr>
<th scope="row" class="argument-name"><code>message</code></th>
<td><p>The message to publish. This is a JSON-formatted string.</p></td>
</tr>
<tr>
<th scope="row" class="argument-name"><code>handler</code></th>
<td><p>The handler block to execute.</p></td>
</tr>
</table>
</div>
<div class="method-subsection return">
<h4 class="method-subtitle parameter-title">Return Value</h4>
<p>response: <a href="https://developer.apple.com/library/mac/documentation/Cocoa/Reference/Foundation/Classes/NSHTTPURLResponse_Class/">iOS HTTP operation response</a></p><p>error: <a href="https://developer.apple.com/library/mac/documentation/Cocoa/Reference/Foundation/Classes/NSError_Class/">iOS error condition response</a></p>
</div>
<div class="method-subsection discussion-section">
<h4 class="method-subtitle">Discussion</h4>
<p>The publish method publishes a message onto a given topic. Messages published onto topics can trigger rules to facilitate identifying situations.</p>
<p>Topics are slash-delimited strings, such as ‘/test/topic’. Vantiq system-defined topics begin with /type, /property, /system, and /source.</p><div class="warning"><p><strong>Warning:</strong> Please also note this method invokes a callback block associated with a network-
related block. Because this block is called from asynchronous network operations,
its code must be wrapped by a call to <em>dispatch_async(dispatch_get_main_queue(), ^ {…});</em>
to ensure UI operations are completed on the main thread.</p>
<p>It is important to check the response and error callback return values to verify there were no
errors returned by the publish operation.</p></div>
</div>
<div class="method-subsection declared-in-section">
<h4 class="method-subtitle">Declared In</h4>
<p><code class="declared-in-ref">Vantiq.h</code></p>
</div>
</div>
</div>
</div><div class="section-method">
<a name="//api/name/execute:params:completionHandler:" title="execute:params:completionHandler:"></a>
<h3 class="method-title"><code><a href="#//api/name/execute:params:completionHandler:">– execute:params:completionHandler:</a></code>
</h3>
<div class="method-info">
<div class="pointy-thing"></div>
<div class="method-info-container">
<div class="method-subsection brief-description">
<p>The execute method executes a procedure on the Vantiq server. Procedures can take parameters (i.e. arguments) and produce a result.</p>
</div>
<div class="method-subsection method-declaration"><code>- (void)execute:(NSString *)<em>procedure</em> params:(NSString *)<em>params</em> completionHandler:(void ( ^ ) ( id data , NSHTTPURLResponse *response , NSError *error ))<em>handler</em></code></div>
<div class="method-subsection arguments-section parameters">
<h4 class="method-subtitle parameter-title">Parameters</h4>
<table class="argument-def parameter-def">
<tr>
<th scope="row" class="argument-name"><code>procedure</code></th>
<td><p>The procedure to execute. The parameters may be provided as an array where the arguments are given in order. Alternatively, the parameters may be provided as an object where the arguments are named.</p></td>
</tr>
<tr>
<th scope="row" class="argument-name"><code>params</code></th>
<td><p>Parameters passed to the procedure. This is a JSON-formatted string.</p></td>
</tr>
<tr>
<th scope="row" class="argument-name"><code>handler</code></th>
<td><p>The handler block to execute.</p></td>
</tr>
</table>
</div>
<div class="method-subsection return">
<h4 class="method-subtitle parameter-title">Return Value</h4>
<p>data: result of method execution, if any, usually an NSDictionary or NSArray (use isKindOfClass to determine)</p><p>response: <a href="https://developer.apple.com/library/mac/documentation/Cocoa/Reference/Foundation/Classes/NSHTTPURLResponse_Class/">iOS HTTP operation response</a></p><p>error: <a href="https://developer.apple.com/library/mac/documentation/Cocoa/Reference/Foundation/Classes/NSError_Class/">iOS error condition response</a></p>
</div>
<div class="method-subsection discussion-section">
<h4 class="method-subtitle">Discussion</h4>
<p>The execute method executes a procedure on the Vantiq server. Procedures can take parameters (i.e. arguments) and produce a result.</p><div class="warning"><p><strong>Warning:</strong> Please also note this method invokes a callback block associated with a network-
related block. Because this block is called from asynchronous network operations,
its code must be wrapped by a call to <em>dispatch_async(dispatch_get_main_queue(), ^ {…});</em>
to ensure UI operations are completed on the main thread.</p>
<p>It is important to check the response and error callback return values to verify there were no
errors returned by the execute operation. The callback data returns the results of the procedure, if any.</p></div>
</div>
<div class="method-subsection declared-in-section">
<h4 class="method-subtitle">Declared In</h4>
<p><code class="declared-in-ref">Vantiq.h</code></p>
</div>
</div>
</div>
</div><div class="section-method">
<a name="//api/name/execute:completionHandler:" title="execute:completionHandler:"></a>
<h3 class="method-title"><code><a href="#//api/name/execute:completionHandler:">– execute:completionHandler:</a></code>
</h3>
<div class="method-info">
<div class="pointy-thing"></div>
<div class="method-info-container">
<div class="method-subsection brief-description">
<p>The execute method executes a procedure on the Vantiq server. Procedures can take parameters (i.e. arguments) and produce a result.</p>
</div>
<div class="method-subsection method-declaration"><code>- (void)execute:(NSString *)<em>procedure</em> completionHandler:(void ( ^ ) ( id data , NSHTTPURLResponse *response , NSError *error ))<em>handler</em></code></div>
<div class="method-subsection arguments-section parameters">
<h4 class="method-subtitle parameter-title">Parameters</h4>
<table class="argument-def parameter-def">
<tr>
<th scope="row" class="argument-name"><code>procedure</code></th>
<td><p>The procedure to execute. The parameters may be provided as an array where the arguments are given in order. Alternatively, the parameters may be provided as an object where the arguments are named.</p></td>
</tr>
<tr>
<th scope="row" class="argument-name"><code>handler</code></th>
<td><p>The handler block to execute.</p></td>
</tr>
</table>
</div>
<div class="method-subsection return">
<h4 class="method-subtitle parameter-title">Return Value</h4>
<p>data: result of method execution, if any, usually an NSDictionary or NSArray (use isKindOfClass to determine)</p><p>response: <a href="https://developer.apple.com/library/mac/documentation/Cocoa/Reference/Foundation/Classes/NSHTTPURLResponse_Class/">iOS HTTP operation response</a></p><p>error: <a href="https://developer.apple.com/library/mac/documentation/Cocoa/Reference/Foundation/Classes/NSError_Class/">iOS error condition response</a></p>
</div>
<div class="method-subsection discussion-section">
<h4 class="method-subtitle">Discussion</h4>
<p>The execute method executes a procedure on the Vantiq server. Procedures can take parameters (i.e. arguments) and produce a result.</p><div class="warning"><p><strong>Warning:</strong> Please also note this method invokes a callback block associated with a network-
related block. Because this block is called from asynchronous network operations,
its code must be wrapped by a call to <em>dispatch_async(dispatch_get_main_queue(), ^ {…});</em>
to ensure UI operations are completed on the main thread.</p>
<p>It is important to check the response and error callback return values to verify there were no
errors returned by the execute operation. The callback data returns the results of the procedure, if any.</p></div>
</div>
<div class="method-subsection see-also-section">
<h4 class="method-subtitle">See Also</h4>
<ul>
<li><code><p><a href="#//api/name/execute:params:completionHandler:">- execute:params:completionHandler:</a></p></code></li>
</ul>
</div>
<div class="method-subsection declared-in-section">
<h4 class="method-subtitle">Declared In</h4>
<p><code class="declared-in-ref">Vantiq.h</code></p>
</div>
</div>
</div>
</div><div class="section-method">
<a name="//api/name/registerForPushNotifications:completionHandler:" title="registerForPushNotifications:completionHandler:"></a>
<h3 class="method-title"><code><a href="#//api/name/registerForPushNotifications:completionHandler:">– registerForPushNotifications:completionHandler:</a></code>
</h3>
<div class="method-info">
<div class="pointy-thing"></div>
<div class="method-info-container">
<div class="method-subsection brief-description">
<p>The registerForPushNotifications method registers an app to receive Apple Push Notifications. Please note that
you must enable the iOS app for Push Notifications and for the remote-notifications Background Mode, in addition
to assigning a bundle identifier in both the app and in the app definition and provisioning profiles at the
<a href="https://developer.apple.com">Apple Developer</a> site.</p>
</div>
<div class="method-subsection method-declaration"><code>- (void)registerForPushNotifications:(NSString *)<em>APNSDeviceToken</em> completionHandler:(void ( ^ ) ( NSDictionary *data , NSHTTPURLResponse *response , NSError *error ))<em>handler</em></code></div>
<div class="method-subsection arguments-section parameters">
<h4 class="method-subtitle parameter-title">Parameters</h4>
<table class="argument-def parameter-def">
<tr>
<th scope="row" class="argument-name"><code>APNSDeviceToken</code></th>
<td><p>The APNS Device Token returned by the registerForRemoteNotifications method.</p></td>
</tr>
<tr>
<th scope="row" class="argument-name"><code>handler</code></th>
<td><p>The handler block to execute.</p></td>
</tr>
</table>
</div>
<div class="method-subsection return">
<h4 class="method-subtitle parameter-title">Return Value</h4>
<p>data: result of method execution, if any</p><p>response: <a href="https://developer.apple.com/library/mac/documentation/Cocoa/Reference/Foundation/Classes/NSHTTPURLResponse_Class/">iOS HTTP operation response</a></p><p>error: <a href="https://developer.apple.com/library/mac/documentation/Cocoa/Reference/Foundation/Classes/NSError_Class/">iOS error condition response</a></p>
</div>
<div class="method-subsection discussion-section">
<h4 class="method-subtitle">Discussion</h4>
<p>The registerForPushNotifications method registers an app to receive Apple Push Notifications. Please note that
you must enable the iOS app for Push Notifications and for the remote-notifications Background Mode, in addition
to assigning a bundle identifier in both the app and in the app definition and provisioning profiles at the
<a href="https://developer.apple.com">Apple Developer</a> site.</p><div class="warning"><p><strong>Warning:</strong> Please also note this method invokes a callback block associated with a network-
related block. Because this block is called from asynchronous network operations,
its code must be wrapped by a call to <em>dispatch_async(dispatch_get_main_queue(), ^ {…});</em>
to ensure UI operations are completed on the main thread.</p>
<p>It is important to check the response and error callback return values to verify there were no
errors returned by the execute operation. The callback data returns the results of the procedure, if any.</p></div>
</div>
<div class="method-subsection declared-in-section">
<h4 class="method-subtitle">Declared In</h4>
<p><code class="declared-in-ref">Vantiq.h</code></p>
</div>
</div>
</div>
</div><div class="section-method">
<a name="//api/name/uploadDocument:fileName:filePrefix:contentType:completionHandler:" title="uploadDocument:fileName:filePrefix:contentType:completionHandler:"></a>
<h3 class="method-title"><code><a href="#//api/name/uploadDocument:fileName:filePrefix:contentType:completionHandler:">– uploadDocument:fileName:filePrefix:contentType:completionHandler:</a></code>
</h3>
<div class="method-info">
<div class="pointy-thing"></div>
<div class="method-info-container">
<div class="method-subsection brief-description">
<p>The uploadDocument method uploads the given file, specified by the full path and file name, with
any directory prefix and the given content type (MIME type). The upload process creates an
ArsDocument record which contains the contents of the file.</p>
</div>
<div class="method-subsection method-declaration"><code>- (void)uploadDocument:(NSString *)<em>filePath</em> fileName:(NSString *)<em>fileName</em> filePrefix:(NSString *)<em>filePrefix</em> contentType:(NSString *)<em>contentType</em> completionHandler:(void ( ^ ) ( NSHTTPURLResponse *response , NSError *error ))<em>handler</em></code></div>
<div class="method-subsection arguments-section parameters">
<h4 class="method-subtitle parameter-title">Parameters</h4>
<table class="argument-def parameter-def">
<tr>
<th scope="row" class="argument-name"><code>filePath</code></th>
<td><p>The full path to the document, for example in the NSDocumentDirectory appended with the file name</p></td>
</tr>
<tr>
<th scope="row" class="argument-name"><code>fileName</code></th>
<td><p>The file name which also contains its file extension</p></td>
</tr>
<tr>
<th scope="row" class="argument-name"><code>filePrefix</code></th>
<td><p>Any directory prefix to be added to the file path when it’s uploaded</p></td>
</tr>
<tr>
<th scope="row" class="argument-name"><code>contentType</code></th>
<td><p>The MIME type of the file contents</p></td>
</tr>
<tr>
<th scope="row" class="argument-name"><code>handler</code></th>
<td><p>The handler block to execute</p></td>
</tr>
<tr>
<th scope="row" class="argument-name"><code>resourcePath</code></th>
<td><p>String specification of the destination resource, e.g. @“/resources/documents”, @“/resources/images” or @“/resources/videos”</p></td>
</tr>
</table>
</div>
<div class="method-subsection return">
<h4 class="method-subtitle parameter-title">Return Value</h4>
<p>data: result of method execution, if any</p><p>response: <a href="https://developer.apple.com/library/mac/documentation/Cocoa/Reference/Foundation/Classes/NSHTTPURLResponse_Class/">iOS HTTP operation response</a></p><p>error: <a href="https://developer.apple.com/library/mac/documentation/Cocoa/Reference/Foundation/Classes/NSError_Class/">iOS error condition response</a></p>
</div>
<div class="method-subsection discussion-section">
<h4 class="method-subtitle">Discussion</h4>
<p>The uploadDocument method uploads the given file, specified by the full path and file name, with
any directory prefix and the given content type (MIME type). The upload process creates an
ArsDocument record which contains the contents of the file.</p><div class="warning"><p><strong>Warning:</strong> Please also note this method invokes a callback block associated with a network-
related block. Because this block is called from asynchronous network operations,
its code must be wrapped by a call to <em>dispatch_async(dispatch_get_main_queue(), ^ {…});</em>
to ensure UI operations are completed on the main thread.</p>
<p>It is important to check the response and error callback return values to verify there were no
errors returned by the execute operation. The callback data returns the results of the procedure, if any.</p></div>
</div>
<div class="method-subsection declared-in-section">
<h4 class="method-subtitle">Declared In</h4>
<p><code class="declared-in-ref">Vantiq.h</code></p>
</div>
</div>
</div>
</div>
</div>
</div>
</main>
<footer>
<div class="footer-copyright">
<p class="copyright">Copyright © 2019 VANTIQ, Inc. All rights reserved. Updated: 2019-08-26</p>
<p class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2.1 (build 1334)</a>.</p>
</div>
</footer>
</div>
</div>
</article>
<script src="../js/script.js"></script>
</body>
</html> | Vantiq/vantiq-sdk-ios | Pod/help/docset/Contents/Resources/Documents/Classes/Vantiq.html | HTML | mit | 91,475 |
<!doctype html>
<html lang="en">
<head>
<title>JavaScript Patterns</title>
<meta charset="utf-8">
</head>
<body>
<p id='before'> showing information before the rase </p><br>
<p id='info1'> showing information </p>
<p id='after'> showing information after the rase</p><br>
<p id='info2'> showing information </p>
<script>
/* Title: Employee class
authour: speedyGonzales
*/
function Employee(firstName, lastName, monthlySalary ){
this.firstName=firstName;
this.lastName=lastName;
this.monthlySalary=monthlySalary;
}
//firstName
Employee.prototype.getFirstName = function(){
return this.firstName;
};
Employee.prototype.setFirstName = function(value){
this.firstName=value;
};
//lastName
Employee.prototype.getLastName = function(){
return this.lastName;
};
Employee.prototype.setLastName = function(value){
this.lastName=value;
};
//monthlySalary
Employee.prototype.getMonthlySalary = function(){
return this.monthlySalary;
};
Employee.prototype.setMonthlySalary = function(value){
this.monthlySalary=value;
};
Employee.prototype.toString = function(){
var buff='Employee information: <br><ul><li>' ;
buff+='number: '+this.getFirstName()+'</li><li>';
buff+='description: '+this.getLastName()+'</li><li>';
buff+='quantity: '+this.getMonthlySalary()+'</li><br>';
return buff;
};
Employee.prototype.toRaiseSalary = function(value){
this.monthlySalary=this.monthlySalary*(1+(value/100));
};
var emp1=new Employee('Ivan','Ivanov',1500);
var emp2=new Employee('Georgi','Georgiev',1800);
document.getElementById('info1').innerHTML=''+emp1.toString()+emp2.toString();
emp1.toRaiseSalary(10);
emp2.toRaiseSalary(10);
document.getElementById('info2').innerHTML=''+emp1.toString()+emp2.toString();
</script>
</body>
</html>
| speedyGonzales/jsplayground | solutions/05/Emplyee.html | HTML | mit | 2,026 |
<!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="./1a1222f63d5294c6aead433154cae0c8b6eb4ecb7e7447f743056a1f434d2164.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/ce707e5eb52b2b3af47bbb0303d89453ed11b6af252da206989c68753b23be94.html | HTML | mit | 550 |
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en-us">
<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-47871740-2', 'auto');
ga('send', 'pageview');
</script>
<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>
About · Bharat Kunduri
</title>
<!-- CSS -->
<link rel="stylesheet" href="/public/css/poole.css">
<link rel="stylesheet" href="/public/css/syntax.css">
<link rel="stylesheet" href="/public/css/hyde.css">
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=PT+Sans:400,400italic,700|Abril+Fatface">
<!-- Icons -->
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="/public/Bb.png">
<link rel="shortcut icon" href="/public/Bb.png">
<!-- RSS -->
<link rel="alternate" type="application/rss+xml" title="RSS" href="/atom.xml">
</head>
<body class="theme-base-0f">
<div class="sidebar">
<div class="container sidebar">
<div class="sidebar-about">
<h1>
<a href="/">
Bharat Kunduri
</a>
</h1>
<p class="lead">A blog I use to share some of my projects and discuss about projects I come across.</p>
</div>
<nav class="sidebar-nav">
<a class="sidebar-nav-item" href="/">Home</a>
<a class="sidebar-nav-item active" href="/about/">About</a>
<a class="sidebar-nav-item" href="/archive/">Archive</a>
<!-- <a class="sidebar-nav-item" href="https://github.com/bharatreddy/archive/v2.1.0.zip">Download</a> -->
<a class="sidebar-nav-item" href="https://github.com/bharatreddy">GitHub</a>
<a class="sidebar-nav-item" href="http://www.linkedin.com/pub/bharat-kunduri/64/14a/9a0/">LinkedIn</a>
<a class="sidebar-nav-item" href="mailto:bharatr@vt.edu">Email</a>
<!-- <span class="sidebar-nav-item">Currently v2.1.0</span> -->
</nav>
<!-- <p>© 2015. All rights reserved.</p> -->
</div>
</div>
<div class="content container">
<div class="page">
<h1 class="page-title">About</h1>
<p>I finished my PhD in space science in Dec, 2013 from the <a href="http://vt.superdarn.org/tiki-index.php">SuperDARN lab</a> in Virginia Tech. </p>
<p>I constantly try to learn new tools and software by working on some open source projects. Some of my projects are discussed in this blog, few more are present in my <a href="https://github.com/bharatreddy">Github</a> account. Over the last few years I taught myself Python, Javascript, JQUERY and visualization tools such as d3.js, by working on some projects. The latest tool I'm playing with is the awesome Pandas (Python) library. </p>
<p>Drop me an <a href="mailto:bharatr@vt.edu">email</a> if anything interests you.</p>
<p>Thanks for reading!</p>
</div>
</div>
</body>
</html>
| bharatreddy/bharatreddy.github.io | _site/about/index.html | HTML | mit | 3,797 |
<link rel='stylesheet' href='{{ printf "%s/%s" .Site.BaseURL "css/normalize.css" | sanitizeurl }}'>
<link rel='stylesheet' href='{{ printf "%s/%s" .Site.BaseURL "css/foundation.min.css" | sanitizeurl }}'>
<link rel='stylesheet' href='{{ printf "%s/%s" .Site.BaseURL "css/site.css" | sanitizeurl }}'>
<script src='{{ printf "%s/%s" .Site.BaseURL "js/vendor/modernizr.js" | sanitizeurl }}'></script>
| johnweldon/hugo-foundation-template | layouts/partials/head_includes.html | HTML | mit | 401 |
<!DOCTYPE html>
<html lang="en-us">
<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">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1">
<meta http-equiv="Content-Language" content="ru">
<link rel="alternate" hreflang="en" href="https://polyglot.untra.io/2022/01/15/dutch-site-support/"/>
<link rel="alternate" hreflang="es" href="https://polyglot.untra.io/es/2022/01/15/dutch-site-support/"/>
<link rel="alternate" hreflang="de" href="https://polyglot.untra.io/de/2022/01/15/dutch-site-support/"/>
<link rel="alternate" hreflang="fr" href="https://polyglot.untra.io/fr/2022/01/15/dutch-site-support/"/>
<link rel="alternate" hreflang="ru" href="https://polyglot.untra.io/ru/2022/01/15/dutch-site-support/"/>
<link rel="alternate" hreflang="nl" href="https://polyglot.untra.io/nl/2022/01/15/dutch-site-support/"/>
<title>
Dutch Site Support · Polyglot
</title>
<!-- CSS -->
<link rel="stylesheet" href="/public/css/poole.css">
<link rel="stylesheet" href="/public/css/syntax.css">
<link rel="stylesheet" href="/public/css/hyde.css">
<link rel="stylesheet" href="/public/css/custom.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=PT+Sans:400,400italic,700|Abril+Fatface">
<!-- Icons -->
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="/public/apple-touch-icon-144-precomposed.png">
<link rel="shortcut icon" href="/public/favicon.ico">
<!-- RSS -->
<link rel="alternate" type="application/rss+xml" title="RSS" href="/ru/atom.xml">
</head>
<body theme-base-08>
<div class="sidebar">
<div class="container sidebar-sticky">
<div class="sidebar-about">
<p class="speech">Привет!</p>
</br>
<h1>
<a href="">
Polyglot
</a>
</h1>
<p class="lead">Плагин поддержки i18n для <a href="http://jekyllrb.com" target="_blank">Jekyll</a> что делает поддержку нескольких языков быстрой и интуитивно понятной, для больших и маленьких блогов. Сделано в <a href="https://github.com/untra" target="_blank">@untra</a>.</p>
</div>
<nav class="sidebar-nav">
<a class="sidebar-nav-item" href="/ru/">Home</a>
<a class="sidebar-nav-item" href="/ru/about/">About</a>
<a class="sidebar-nav-item" href="/ru/a-really-long/permalink/">A really long permalink</a>
<a class="sidebar-nav-item" href="/ru/sample/">Sample rich text data</a>
<a class="sidebar-nav-item" href="/ru/seo/">SEO Recipes</a>
<a class="sidebar-nav-item" href=""></a>
<a class="sidebar-nav-item" href="https://rubygems.org/gems/jekyll-polyglot">Ruby Gem</a>
<a class="sidebar-nav-item" href="https://github.com/untra/polyglot">GitHub project</a>
<a class="sidebar-nav-item" href="https://github.com/untra/polyglot/tree/master/site/_posts/nl/2022-01-15-dutch-site-support.md"><small>view this page source on github</small></a>
<small class="sidebar-nav-item">Currently v1.5.0</small>
</nav>
<p><small>© 2022 Samuel Volin</small><br/><small>MIT Licensed</small></p>
<p>
<!-- jekyll-polyglot will process ferh= into href= through the static_href liquid block tag without relativizing the url; useful for making language navigation switchers -->
<a href="/2022/01/15/dutch-site-support/" >en</a> |
<a href="/es/2022/01/15/dutch-site-support/" >es</a> |
<a href="/de/2022/01/15/dutch-site-support/" >de</a> |
<a href="/fr/2022/01/15/dutch-site-support/" >fr</a> |
<a style="font-weight: bold;" href="/ru/2022/01/15/dutch-site-support/" >ru</a> |
<a href="/nl/2022/01/15/dutch-site-support/" >nl</a> |
</p>
</div>
</div>
<div class="content container">
<div class="post">
<h1 class="post-title">Dutch Site Support</h1>
<span class="post-date">15 Jan 2022</span>
<p>Met dank aan github-user <a href="https://github.com/PanderMusubi">@PanderMusubi</a> deze website ondersteunt nu <code class="language-plaintext highlighter-rouge">nl</code> nederlands! Bedankt!</p>
</div>
<div class="related">
<h2>Related Posts</h2>
<ul class="related-posts">
<li>
<h3>
<a href="/ru/2021/07/17/polyglot-1.5.0/">
Polyglot 1.5.0
<small>17 Jul 2021</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/ru/2021/04/18/polyglot-1.4.1/">
Polyglot 1.4.1
<small>18 Apr 2021</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/ru/2021/02/07/polyglot-1.4.0/">
Polyglot 1.4.0
<small>07 Feb 2021</small>
</a>
</h3>
</li>
</ul>
</div>
</div>
</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-68106041-1', 'auto');
ga('send', 'pageview');
</script>
</html>
| untra/polyglot | site/_site/ru/2022/01/15/dutch-site-support/index.html | HTML | mit | 5,897 |
{{<layout}}
{{$pageTitle}}
Performance platform
{{/pageTitle}}
{{$content}}
<main id="content" role="main">
<h1 class="heading-xlarge">Digital Take-up</h1>
<div class="intro-block">
<p>Digital take-up is a long term strategic measure of how well digital by default service is working. You’ll monitor this on a monthly basis to track that it’s on course with the desired performance levels. <a href="https://www.gov.uk/service-manual/measurement/digital-takeup.html">Read more on the service manual</a> </p>
</div>
<h2 class="heading-large">
Settings
</h2>
<table class="summary-item-body">
<thead class="summary-item-field-headings-visible">
<tr>
<th scope="col" class="summary-item-field-heading-first">
</th>
<th scope="col" class="summary-item-field-heading">
</th>
<th scope="col" class="summary-item-field-heading">
</th>
</tr>
</thead>
<tbody>
<tr class="summary-item-row">
<td class="summary-item-field-first-wider">
<span class="bold-xsmall">
Service channels
</span>
</td>
<td class="summary-item-field">
<span>
<span class="bold-xsmall">Digital:</span><br>
Online, API
<br>
<span class="bold-xsmall">Offline:</span><br>
Face to face, Telephone (operator)
</span>
</td>
<td class="summary-item-field-with-action">
<a href="#">Edit</a>
</td>
</tr>
<tr class="summary-item-row">
<td class="summary-item-field-first-wider">
<span class="bold-xsmall">
How regularly do you collect data?
</span>
</td>
<td class="summary-item-field">
<span>
Weekly
</span>
</td>
<td class="summary-item-field-with-action">
<span>
<a href="#">Edit</a>
</span>
</td>
</tr>
</tbody>
</table>
<h2 class="summary-item-heading">
</h2>
<table class="summary-item-body">
<caption class="visuallyhidden">
Summary table with name field as link
</caption>
<thead class="summary-item-field-headings-visible">
<tr>
<th scope="col" class="summary-item-field-heading-first">
Time period
</th>
<th scope="col" class="summary-item-field-heading">
</th>
<th scope="col" class="summary-item-field-heading">
<span class="hidden">Action</span>
</th>
</tr>
</thead>
<tbody>
<h2 class="heading-large">Data</h2>
<h2 class="heading-medium">Current week </h2>
<ul>
<li>Week ending 4 September 2015 </li>
</li>
<button class="button">Add data for this week</button>
<h2 class="heading-medium">2015</h2>
<tr class="summary-item-row">
<td class="summary-item-field-first-wider">
<span>
<a href="#">31 August to 6 September</a>
</span>
</td>
<td class="summary-item-field">
<span>
Complete
</span>
</td>
<td class="summary-item-field-with-action">
<span>
<form method="post" action="#">
<input type="hidden" name="csrf_token" value="random" />
<button type="submit" class="button-secondary">Manage</button>
</form>
</span>
</td>
</tr>
<tr class="summary-item-row">
<td class="summary-item-field-first-wider">
<span>
<a href="#">24 August to 29 August</a>
</span>
</td>
<td class="summary-item-field">
<span>
Complete
</span>
</td>
<td class="summary-item-field-with-action">
<span>
<form method="post" action="#">
<input type="hidden" name="csrf_token" value="random" />
<button type="submit" class="button-secondary">Manage</button>
</form>
</span>
</td>
</tr>
<tr class="summary-item-row">
<td class="summary-item-field-first-wider">
<span>
<a href="#">17 August to 23 August </a>
</span>
</td>
<td class="summary-item-field">
<span>
</span>
</td>
<td class="summary-item-field-with-action">
<span>
<form method="post" action="#">
<input type="hidden" name="csrf_token" value="random" />
<button class="button">Add data</button>
</form>
</span>
</td>
</tr>
<tr class="summary-item-row">
<td class="summary-item-field-first-wider">
<span>
<a href="#">10 August to 16 August </a>
</span>
</td>
<td class="summary-item-field">
<span>
</span>
</td>
<td class="summary-item-field-with-action">
<span>
<form method="post" action="#">
<input type="hidden" name="csrf_token" value="random" />
<button class="button">Add data</button>
</form>
</span>
</td>
</tr>
<tr class="summary-item-row">
<td class="summary-item-field-first-wider">
<span>
<a href="#">3 August to 9 August </a>
</span>
</td>
<td class="summary-item-field">
<span>
</span>
</td>
<td class="summary-item-field-with-action">
<span>
<form method="post" action="#">
<input type="hidden" name="csrf_token" value="random" />
<button class="button">Add data</button>
</form>
</span>
</td>
</tr>
</tbody>
</table>
<br>
<p><a href="manage-dashboard">Return to dashboard</a>
</main>
</div>
</div>
{{/content}}
{{/layout}}
| antimega/performance-self-serve-prototype | app/views/digitaltakeup.html | HTML | mit | 5,216 |
<html>
<head lang="en-us">
<meta charset="utf-8">
<title>React Ghost Button</title>
<meta name="viewport" content="user-scalable=no width=device-width, initial-scale=1.0 maximum-scale=1.0">
</head>
<body style="margin: 0">
<script src="./bundle.js"></script>
</body>
</html>
| KyleAMathews/react-ghost-button | examples/index.html | HTML | mit | 300 |
@(passwordChangeForm:play.api.data.Form[securesocial.controllers.PasswordChange.ChangeInfo])(implicit request: play.api.mvc.RequestHeader)
@import securesocial.core.providers.UsernamePasswordProvider
@import securesocial.core.IdentityProvider
@import helper._
@implicitFieldConstructor = @{ FieldConstructor(securesocial.views.html.inputFieldConstructor.f) }
@securesocial.views.html.main( Messages("securesocial.passwordChange.title") ) {
<div class="page-header">
<h1>@Messages("securesocial.passwordChange.title")</h1>
</div>
@request.flash.get("error").map { msg =>
<div class="alert alert-error">
@msg
</div>
}
@if( request.flash.get("success").isDefined ) {
<div class="alert alert-info">
@request.flash.get("success").get
</div>
}
}
| dkarivalis/SEP_SMIFL | app/views/custom/passwordChange.scala.html | HTML | mit | 842 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Parent Float - Problem</title>
<link rel="stylesheet" href="../css/07_floating_problem.css">
</head>
<body>
<div class="container">
<h1>The Evolution of the Bicycle</h1>
<p>In 1817 Baron von Drais invented a walking machine that would help him get around the royal gardens faster.</p>
<p>The device know as the Draisienne (or "hobby horse") was made of wood, and propelled by pushing your feed on the ground in a gliding movement.</p>
<p>It was not seen a suitable for any place other than a well maintained pathway. </p>
<p>In 1865, the velocipede (meaning "fast foot") attached pedals to the front wheel, but its wooden structure made it extremely uncomfortable. </p>
<p>In 1870 the first all-metal machine appeared. The pedals were attached directly to the front wheel.</p>
<p>Solid rubber tires and the long spokes of the large front wheel provided a much smoother ride than its predecessor.</p>
</div>
</body>
</html> | gdmgent/1718-webtech1 | examples/pages/07_floating_problem.html | HTML | mit | 1,068 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>elpi: 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.7.1+1 / elpi - 1.11.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
elpi
<small>
1.11.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-01-05 21:09:41 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-01-05 21:09:41 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.7.1+1 Formal proof management system
num 0 The Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.03.0 The OCaml compiler (virtual package)
ocaml-base-compiler 4.03.0 Official 4.03.0 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "Enrico Tassi <enrico.tassi@inria.fr>"
authors: [ "Enrico Tassi" ]
license: "LGPL-2.1-or-later"
homepage: "https://github.com/LPCIC/coq-elpi"
bug-reports: "https://github.com/LPCIC/coq-elpi/issues"
dev-repo: "git+https://github.com/LPCIC/coq-elpi"
build: [ [ make "build" "COQBIN=%{bin}%/" "ELPIDIR=%{prefix}%/lib/elpi" "OCAMLWARN=" ]
[ make "test" "COQBIN=%{bin}%/" "ELPIDIR=%{prefix}%/lib/elpi" ] {with-test}
]
install: [ make "install" "COQBIN=%{bin}%/" "ELPIDIR=%{prefix}%/lib/elpi" ]
depends: [
"stdlib-shims"
"ocaml" {>= "4.07.0" }
"elpi" {>= "1.13.6" & < "1.14.0~"}
"coq" {>= "8.13" & < "8.14~" }
]
tags: [ "logpath:elpi" "date:2021-06-18" ]
synopsis: "Elpi extension language for Coq"
description: """
Coq-elpi provides a Coq plugin that embeds ELPI.
It also provides a way to embed Coq's terms into λProlog using
the Higher-Order Abstract Syntax approach
and a way to read terms back. In addition to that it exports to ELPI a
set of Coq's primitives, e.g. printing a message, accessing the
environment of theorems and data types, defining a new constant and so on.
For convenience it also provides a quotation and anti-quotation for Coq's
syntax in λProlog. E.g. `{{nat}}` is expanded to the type name of natural
numbers, or `{{A -> B}}` to the representation of a product by unfolding
the `->` notation. Finally it provides a way to define new vernacular commands
and
new tactics."""
url {
src: "https://github.com/LPCIC/coq-elpi/archive/v1.11.0.tar.gz"
checksum: "sha256=d4982bf38c4cbc945a8fedb0ffce3d274e5812eb7de8a93c4438fbf2dc978d27"
}
</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-elpi.1.11.0 coq.8.7.1+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.7.1+1).
The following dependencies couldn't be met:
- coq-elpi -> ocaml >= 4.07.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-elpi.1.11.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.03.0-2.0.5/released/8.7.1+1/elpi/1.11.0.html | HTML | mit | 7,730 |
<!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_45) on Thu Oct 15 19:41:23 CEST 2015 -->
<title> Class Hierarchy</title>
<meta name="date" content="2015-10-15">
<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=" Class Hierarchy";
}
}
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>Class</li>
<li class="navBarCell1Rev">Tree</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><a href="de/deadmist/deadSimpleHttp/errors/package-tree.html">Next</a></li>
</ul>
<ul class="navList">
<li><a href="index.html?package-tree.html" target="_top">Frames</a></li>
<li><a href="package-tree.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h1 class="title">Hierarchy For Package <Unnamed></h1>
<span class="packageHierarchyLabel">Package Hierarchies:</span>
<ul class="horizontal">
<li><a href="overview-tree.html">All Packages</a></li>
</ul>
</div>
<div class="contentContainer">
<h2 title="Class Hierarchy">Class Hierarchy</h2>
<ul>
<li type="circle">java.lang.<a
href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true"
title="class or interface in java.lang"><span class="typeNameLink">Object</span></a>
<ul>
<li type="circle"><a href="main.html" title="class in <Unnamed>"><span
class="typeNameLink">main</span></a></li>
</ul>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li>Class</li>
<li class="navBarCell1Rev">Tree</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><a href="de/deadmist/deadSimpleHttp/errors/package-tree.html">Next</a></li>
</ul>
<ul class="navList">
<li><a href="index.html?package-tree.html" target="_top">Frames</a></li>
<li><a href="package-tree.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>
| Deadmist/deadSimpleHttp | docs/package-tree.html | HTML | mit | 4,830 |
<!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>
gravitypope -
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=1492289387182&V_SEARCH.docsCount=3&V_DOCUMENT.docRank=20109&V_SEARCH.docsStart=20108&V_SEARCH.command=navigate&V_SEARCH.resultsJSP=/prfl.do&lang=fra&redirectUrl=/app/scr/imbs/ccc/rgstrtn/updt.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=20107&V_DOCUMENT.docRank=20108&V_SEARCH.docsCount=3&lang=eng&prtl=1&sbPrtl=&profile=cmpltPrfl&V_TOKEN=1492289403532&V_SEARCH.command=navigate&V_SEARCH.resultsJSP=%2fprfl.do&estblmntNo=234567152112&profileId=&key.newSearchLabel=">Previous Company</a></li>
<li>| <a href="nvgt.do?V_SEARCH.docsStart=20109&V_DOCUMENT.docRank=20110&V_SEARCH.docsCount=3&lang=eng&prtl=1&sbPrtl=&profile=cmpltPrfl&V_TOKEN=1492289403532&V_SEARCH.command=navigate&V_SEARCH.resultsJSP=%2fprfl.do&estblmntNo=234567100739&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>
Gravity Pope Company Limited
</h2>
<div class="row">
<div class="col-md-5">
<h2 class="h5 mrgn-bttm-0">Legal Name:</h2>
<p>Gravity Pope Company Limited</p>
<h2 class="h5 mrgn-bttm-0">Operating Name:</h2>
<p>gravitypope</p>
<div class="mrgn-tp-md"></div>
<p class="mrgn-bttm-0" ><a href="http://www.gravitypope.com"
target="_blank" title="Website URL">http://www.gravitypope.com</a></p>
<p><a href="mailto:info@gravitypope.com" title="info@gravitypope.com">info@gravitypope.com</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">
2-10442 82 Ave NW<br/>
EDMONTON,
Alberta<br/>
T6E 2A2
<br/>
</address>
<h2 class="h5 mrgn-bttm-0">Location Address:</h2>
<address class="mrgn-bttm-md">
2-10442 82 Ave NW<br/>
EDMONTON,
Alberta<br/>
T6E 2A2
<br/>
</address>
<p class="mrgn-bttm-0"><abbr title="Telephone">Tel.</abbr>:
(780) 439-7466
</p>
<p class="mrgn-bttm-lg"><abbr title="Facsimile">Fax</abbr>:
(780) 439-7434</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=234567103491&graphFileName=gravitypope_logo.png&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> Retailer of hard to find shoe, clothing accessory and apothecary brands imported from around the world. Designer collections, luxury brands and specialty items are all available in our huge selection of over 300 brands and thousands of styles. Locations in Edmonton, Calgary, Vancouver and Toronto.<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>
Louise
Dirks
</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-->
Owner
</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">
(780) 439-7466
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
louise@gravitypope.com
</div>
</div>
<div class="row mrgn-tp-lg">
<div class="col-md-3">
<strong>
Jon
Berg
</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-->
Manager
</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.
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Telephone:
</strong>
</div>
<div class="col-md-7">
(780) 989-1635
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
jon@gravitypope.com
</div>
</div>
<div class="row mrgn-tp-lg">
<div class="col-md-3">
<strong>
Angela
Brown
</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-->
Manager
</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">
(604) 731-7647
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
angela@gravitypope.com
</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">
Yes
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Primary Industry (NAICS):
</strong>
</div>
<div class="col-md-7">
448210 - Shoe Stores
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Alternate Industries (NAICS):
</strong>
</div>
<div class="col-md-7">
448199 - All Other Clothing Stores<br>
454111 - Internet Shopping<br>
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Primary Business Activity:
</strong>
</div>
<div class="col-md-7">
Retail
</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">
Footwear and apparel<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-12">
Shoes, boots, sandals, footwear, clothing, jeans, dresses<br>
<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>
Louise
Dirks
</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-->
Owner
</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">
(780) 439-7466
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
louise@gravitypope.com
</div>
</div>
<div class="row mrgn-tp-lg">
<div class="col-md-3">
<strong>
Jon
Berg
</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-->
Manager
</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.
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Telephone:
</strong>
</div>
<div class="col-md-7">
(780) 989-1635
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
jon@gravitypope.com
</div>
</div>
<div class="row mrgn-tp-lg">
<div class="col-md-3">
<strong>
Angela
Brown
</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-->
Manager
</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">
(604) 731-7647
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
angela@gravitypope.com
</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">
Yes
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Primary Industry (NAICS):
</strong>
</div>
<div class="col-md-7">
448210 - Shoe Stores
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Alternate Industries (NAICS):
</strong>
</div>
<div class="col-md-7">
448199 - All Other Clothing Stores<br>
454111 - Internet Shopping<br>
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Primary Business Activity:
</strong>
</div>
<div class="col-md-7">
Retail
</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">
Footwear and apparel<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-12">
Shoes, boots, sandals, footwear, clothing, jeans, dresses<br>
<br>
</div>
</div>
</section>
</details>
</div>
</div>
<div class="row">
<div class="col-md-12 text-right">
Last Update Date 2015-01-30
</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/234567103491.html | HTML | mit | 44,701 |
<!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="./eeec22c50f2fab86989a7aa90f8cc17c48f42ecf715586c7f8977ac29e22227b.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/669393168dfc42d72b0cabe8babf17aa6d9a8723e6daeac24c69a9e6f38125a2.html | HTML | mit | 550 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>User agent detail - Mozilla/5.0 (Linux; U; Android 2.2.1; en-us; Eris FroshedYo v11 Build/FRG83) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.3/css/materialize.min.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="../circle.css" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="section">
<h1 class="header center orange-text">User agent detail</h1>
<div class="row center">
<h5 class="header light">
Mozilla/5.0 (Linux; U; Android 2.2.1; en-us; Eris FroshedYo v11 Build/FRG83) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1
</h5>
</div>
</div>
<div class="section">
<table class="striped"><tr><th></th><th colspan="3">General</th><th colspan="5">Device</th><th colspan="3">Bot</th><th colspan="2"></th></tr><tr><th>Provider</th><th>Browser</th><th>Engine</th><th>OS</th><th>Brand</th><th>Model</th><th>Type</th><th>Is mobile</th><th>Is touch</th><th>Is bot</th><th>Name</th><th>Type</th><th>Parse time</th><th>Actions</th></tr><tr><th colspan="14" class="green lighten-3">Test suite</th></tr><tr><td>UAParser<br /><small>v0.5.0.2</small><br /><small>vendor/thadafinser/uap-core/tests/test_device.yaml</small></td><td> </td><td><i class="material-icons">close</i></td><td> </td><td style="border-left: 1px solid #555">HTC</td><td>Eris FroshedYo v11</td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>0</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-cfed3005-df48-4fa8-bf03-4f6ef8988f59">Detail</a>
<!-- Modal Structure -->
<div id="modal-cfed3005-df48-4fa8-bf03-4f6ef8988f59" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>UAParser result detail</h4>
<p><pre><code class="php">Array
(
[user_agent_string] => Mozilla/5.0 (Linux; U; Android 2.2.1; en-us; Eris FroshedYo v11 Build/FRG83) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1
[family] => HTC Eris FroshedYo v11
[brand] => HTC
[model] => Eris FroshedYo v11
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><th colspan="14" class="green lighten-3">Providers</th></tr><tr><td>BrowscapFull<br /><small>6014</small><br /></td><td>Android 4.0</td><td>WebKit </td><td>Android 2.2</td><td style="border-left: 1px solid #555"></td><td></td><td>Mobile Phone</td><td>yes</td><td>yes</td><td style="border-left: 1px solid #555"></td><td></td><td></td><td>0.1716</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-47a9cd06-e213-4882-bc34-db6aed664223">Detail</a>
<!-- Modal Structure -->
<div id="modal-47a9cd06-e213-4882-bc34-db6aed664223" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>BrowscapFull result detail</h4>
<p><pre><code class="php">stdClass Object
(
[browser_name_regex] => /^mozilla\/5\.0 \(.*linux.*android.2\.2.* build\/.*\).*applewebkit\/.*\(.*khtml,.*like gecko.*\).*version\/4\.0.*safari.*$/
[browser_name_pattern] => mozilla/5.0 (*linux*android?2.2* build/*)*applewebkit/*(*khtml,*like gecko*)*version/4.0*safari*
[parent] => Android Browser 4.0
[comment] => Android Browser 4.0
[browser] => Android
[browser_type] => Browser
[browser_bits] => 32
[browser_maker] => Google Inc
[browser_modus] => unknown
[version] => 4.0
[majorver] => 4
[minorver] => 0
[platform] => Android
[platform_version] => 2.2
[platform_description] => Android OS
[platform_bits] => 32
[platform_maker] => Google Inc
[alpha] =>
[beta] =>
[win16] =>
[win32] =>
[win64] =>
[frames] => 1
[iframes] => 1
[tables] => 1
[cookies] => 1
[backgroundsounds] =>
[javascript] => 1
[vbscript] =>
[javaapplets] => 1
[activexcontrols] =>
[ismobiledevice] => 1
[istablet] =>
[issyndicationreader] =>
[crawler] =>
[isfake] =>
[isanonymized] =>
[ismodified] =>
[cssversion] => 3
[aolversion] => 0
[device_name] => general Mobile Phone
[device_maker] => unknown
[device_type] => Mobile Phone
[device_pointing_method] => touchscreen
[device_code_name] => general Mobile Phone
[device_brand_name] => unknown
[renderingengine_name] => WebKit
[renderingengine_version] => unknown
[renderingengine_description] => For Google Chrome, iOS (including both mobile Safari, WebViews within third-party apps, and web clips), Safari, Arora, Midori, OmniWeb, Shiira, iCab since version 4, Web, SRWare Iron, Rekonq, and in Maxthon 3.
[renderingengine_maker] => Apple Inc
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>BrowscapLite<br /><small>6014</small><br /></td><td>Android 4.0</td><td><i class="material-icons">close</i></td><td>Android </td><td style="border-left: 1px solid #555"><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>Mobile Phone</td><td>yes</td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>0.0156</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-42bb56ba-b834-47c5-bea0-c0270e9ab371">Detail</a>
<!-- Modal Structure -->
<div id="modal-42bb56ba-b834-47c5-bea0-c0270e9ab371" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>BrowscapLite result detail</h4>
<p><pre><code class="php">stdClass Object
(
[browser_name_regex] => /^mozilla\/5\.0 \(.*linux.*android.* build\/.*\).*applewebkit\/.*\(.*khtml,.*like gecko.*\).*version\/4\.0.*safari.*$/
[browser_name_pattern] => mozilla/5.0 (*linux*android* build/*)*applewebkit/*(*khtml,*like gecko*)*version/4.0*safari*
[parent] => Android Browser 4.0
[comment] => Android Browser 4.0
[browser] => Android
[browser_type] => unknown
[browser_bits] => 0
[browser_maker] => unknown
[browser_modus] => unknown
[version] => 4.0
[majorver] => 0
[minorver] => 0
[platform] => Android
[platform_version] => unknown
[platform_description] => unknown
[platform_bits] => 0
[platform_maker] => unknown
[alpha] => false
[beta] => false
[win16] => false
[win32] => false
[win64] => false
[frames] => false
[iframes] => false
[tables] => false
[cookies] => false
[backgroundsounds] => false
[javascript] => false
[vbscript] => false
[javaapplets] => false
[activexcontrols] => false
[ismobiledevice] => 1
[istablet] =>
[issyndicationreader] => false
[crawler] => false
[isfake] => false
[isanonymized] => false
[ismodified] => false
[cssversion] => 0
[aolversion] => 0
[device_name] => unknown
[device_maker] => unknown
[device_type] => Mobile Phone
[device_pointing_method] => unknown
[device_code_name] => unknown
[device_brand_name] => unknown
[renderingengine_name] => unknown
[renderingengine_version] => unknown
[renderingengine_description] => unknown
[renderingengine_maker] => unknown
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>BrowscapPhp<br /><small>6014</small><br /></td><td>Android 4.0</td><td><i class="material-icons">close</i></td><td>Android </td><td style="border-left: 1px solid #555"><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>Mobile Phone</td><td>yes</td><td>yes</td><td style="border-left: 1px solid #555"></td><td></td><td><i class="material-icons">close</i></td><td>0.0624</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-ad0041a2-b0f4-43f6-a70d-cad1443caa68">Detail</a>
<!-- Modal Structure -->
<div id="modal-ad0041a2-b0f4-43f6-a70d-cad1443caa68" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>BrowscapPhp result detail</h4>
<p><pre><code class="php">stdClass Object
(
[browser_name_regex] => /^mozilla\/5\.0 \(.*linux.*android.* build\/.*\).*applewebkit\/.*\(.*khtml,.*like gecko.*\).*version\/4\.0.*safari.*$/
[browser_name_pattern] => mozilla/5.0 (*linux*android* build/*)*applewebkit/*(*khtml,*like gecko*)*version/4.0*safari*
[parent] => Android Browser 4.0
[comment] => Android Browser 4.0
[browser] => Android
[browser_type] => unknown
[browser_bits] => 0
[browser_maker] => Google Inc
[browser_modus] => unknown
[version] => 4.0
[majorver] => 4
[minorver] => 0
[platform] => Android
[platform_version] => unknown
[platform_description] => unknown
[platform_bits] => 0
[platform_maker] => unknown
[alpha] => false
[beta] => false
[win16] => false
[win32] => false
[win64] => false
[frames] => false
[iframes] => false
[tables] => false
[cookies] => false
[backgroundsounds] => false
[javascript] => false
[vbscript] => false
[javaapplets] => false
[activexcontrols] => false
[ismobiledevice] => 1
[istablet] =>
[issyndicationreader] => false
[crawler] =>
[isfake] => false
[isanonymized] => false
[ismodified] => false
[cssversion] => 0
[aolversion] => 0
[device_name] => unknown
[device_maker] => unknown
[device_type] => Mobile Phone
[device_pointing_method] => touchscreen
[device_code_name] => unknown
[device_brand_name] => unknown
[renderingengine_name] => unknown
[renderingengine_version] => unknown
[renderingengine_description] => unknown
[renderingengine_maker] => unknown
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>DonatjUAParser<br /><small>v0.5.1</small><br /></td><td>Android Browser 4.0</td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>0</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-15fbc1f0-2615-4d42-b5d9-a30dd647b050">Detail</a>
<!-- Modal Structure -->
<div id="modal-15fbc1f0-2615-4d42-b5d9-a30dd647b050" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>DonatjUAParser result detail</h4>
<p><pre><code class="php">Array
(
[platform] => Android
[browser] => Android Browser
[version] => 4.0
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>JenssegersAgent<br /><small>v2.3.3</small><br /></td><td>Safari 4.0</td><td><i class="material-icons">close</i></td><td>AndroidOS 2.2.1</td><td style="border-left: 1px solid #555"><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>yes</td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"></td><td></td><td><i class="material-icons">close</i></td><td>0</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-b85a2b91-6a55-4436-a82c-1ea0d46e2e51">Detail</a>
<!-- Modal Structure -->
<div id="modal-b85a2b91-6a55-4436-a82c-1ea0d46e2e51" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>JenssegersAgent result detail</h4>
<p><pre><code class="php">Array
(
[browserName] => Safari
[browserVersion] => 4.0
[osName] => AndroidOS
[osVersion] => 2.2.1
[deviceModel] => WebKit
[isMobile] => 1
[isRobot] =>
[botName] =>
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>NeutrinoApiCom<br /><small></small><br /></td><td>Android Webkit 4.0</td><td><i class="material-icons">close</i></td><td>Android 2.2.1</td><td style="border-left: 1px solid #555"></td><td>Eris FroshedYo v11</td><td>mobile-browser</td><td>yes</td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"></td><td></td><td><i class="material-icons">close</i></td><td>0.312</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-8c2a7a4e-3fbf-4df2-8d61-5e730422f67b">Detail</a>
<!-- Modal Structure -->
<div id="modal-8c2a7a4e-3fbf-4df2-8d61-5e730422f67b" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>NeutrinoApiCom result detail</h4>
<p><pre><code class="php">stdClass Object
(
[mobile_screen_height] => 480
[is_mobile] => 1
[type] => mobile-browser
[mobile_brand] => Generic
[mobile_model] => Eris FroshedYo v11
[version] => 4.0
[is_android] => 1
[browser_name] => Android Webkit
[operating_system_family] => Android
[operating_system_version] => 2.2.1
[is_ios] =>
[producer] => Google Inc.
[operating_system] => Android 2.2.x Froyo
[mobile_screen_width] => 320
[mobile_browser] => Android Webkit
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>PiwikDeviceDetector<br /><small>3.6.1</small><br /></td><td>Android Browser </td><td>WebKit </td><td>Android 2.2</td><td style="border-left: 1px solid #555"></td><td></td><td></td><td>yes</td><td></td><td style="border-left: 1px solid #555"></td><td></td><td></td><td>0</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-4a941d34-a8d3-4914-9724-346f60ad7046">Detail</a>
<!-- Modal Structure -->
<div id="modal-4a941d34-a8d3-4914-9724-346f60ad7046" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>PiwikDeviceDetector result detail</h4>
<p><pre><code class="php">Array
(
[client] => Array
(
[type] => browser
[name] => Android Browser
[short_name] => AN
[version] =>
[engine] => WebKit
)
[operatingSystem] => Array
(
[name] => Android
[short_name] => AND
[version] => 2.2
[platform] =>
)
[device] => Array
(
[brand] =>
[brandName] =>
[model] =>
[device] =>
[deviceName] =>
)
[bot] =>
[extra] => Array
(
[isBot] =>
[isBrowser] => 1
[isFeedReader] =>
[isMobileApp] =>
[isPIM] =>
[isLibrary] =>
[isMediaPlayer] =>
[isCamera] =>
[isCarBrowser] =>
[isConsole] =>
[isFeaturePhone] =>
[isPhablet] =>
[isPortableMediaPlayer] =>
[isSmartDisplay] =>
[isSmartphone] =>
[isTablet] =>
[isTV] =>
[isDesktop] =>
[isMobile] => 1
[isTouchEnabled] =>
)
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>SinergiBrowserDetector<br /><small>6.0.1</small><br /></td><td>Navigator 4.0</td><td><i class="material-icons">close</i></td><td>Android 2.2.1</td><td style="border-left: 1px solid #555"><i class="material-icons">close</i></td><td></td><td><i class="material-icons">close</i></td><td>yes</td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>0</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-ec1cd248-02b0-457e-8a9d-35bb99af008c">Detail</a>
<!-- Modal Structure -->
<div id="modal-ec1cd248-02b0-457e-8a9d-35bb99af008c" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>SinergiBrowserDetector result detail</h4>
<p><pre><code class="php">Array
(
[browser] => Sinergi\BrowserDetector\Browser Object
(
[userAgent:Sinergi\BrowserDetector\Browser:private] => Sinergi\BrowserDetector\UserAgent Object
(
[userAgentString:Sinergi\BrowserDetector\UserAgent:private] => Mozilla/5.0 (Linux; U; Android 2.2.1; en-us; Eris FroshedYo v11 Build/FRG83) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1
)
[name:Sinergi\BrowserDetector\Browser:private] => Navigator
[version:Sinergi\BrowserDetector\Browser:private] => 4.0
[isRobot:Sinergi\BrowserDetector\Browser:private] =>
[isChromeFrame:Sinergi\BrowserDetector\Browser:private] =>
[isFacebookWebView:Sinergi\BrowserDetector\Browser:private] =>
[isCompatibilityMode:Sinergi\BrowserDetector\Browser:private] =>
)
[operatingSystem] => Sinergi\BrowserDetector\Os Object
(
[name:Sinergi\BrowserDetector\Os:private] => Android
[version:Sinergi\BrowserDetector\Os:private] => 2.2.1
[isMobile:Sinergi\BrowserDetector\Os:private] => 1
[userAgent:Sinergi\BrowserDetector\Os:private] => Sinergi\BrowserDetector\UserAgent Object
(
[userAgentString:Sinergi\BrowserDetector\UserAgent:private] => Mozilla/5.0 (Linux; U; Android 2.2.1; en-us; Eris FroshedYo v11 Build/FRG83) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1
)
)
[device] => Sinergi\BrowserDetector\Device Object
(
[name:Sinergi\BrowserDetector\Device:private] => unknown
[userAgent:Sinergi\BrowserDetector\Device:private] => Sinergi\BrowserDetector\UserAgent Object
(
[userAgentString:Sinergi\BrowserDetector\UserAgent:private] => Mozilla/5.0 (Linux; U; Android 2.2.1; en-us; Eris FroshedYo v11 Build/FRG83) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1
)
)
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>UAParser<br /><small>v3.4.5</small><br /></td><td>Android 2.2.1</td><td><i class="material-icons">close</i></td><td>Android 2.2.1</td><td style="border-left: 1px solid #555">HTC</td><td>Eris FroshedYo v11</td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"></td><td></td><td><i class="material-icons">close</i></td><td>0</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-3160e405-8a8f-46dd-8f47-5115f06462d2">Detail</a>
<!-- Modal Structure -->
<div id="modal-3160e405-8a8f-46dd-8f47-5115f06462d2" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>UAParser result detail</h4>
<p><pre><code class="php">UAParser\Result\Client Object
(
[ua] => UAParser\Result\UserAgent Object
(
[major] => 2
[minor] => 2
[patch] => 1
[family] => Android
)
[os] => UAParser\Result\OperatingSystem Object
(
[major] => 2
[minor] => 2
[patch] => 1
[patchMinor] =>
[family] => Android
)
[device] => UAParser\Result\Device Object
(
[brand] => HTC
[model] => Eris FroshedYo v11
[family] => HTC Eris FroshedYo v11
)
[originalUserAgent] => Mozilla/5.0 (Linux; U; Android 2.2.1; en-us; Eris FroshedYo v11 Build/FRG83) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>UserAgentApiCom<br /><small></small><br /></td><td>Safari 533.1</td><td>WebKit 533.1</td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>Mobile</td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"></td><td></td><td><i class="material-icons">close</i></td><td>0.156</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-afeb05fb-26b9-4509-b8ac-0c604a9e97d6">Detail</a>
<!-- Modal Structure -->
<div id="modal-afeb05fb-26b9-4509-b8ac-0c604a9e97d6" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>UserAgentApiCom result detail</h4>
<p><pre><code class="php">stdClass Object
(
[platform_name] => Android
[platform_version] => 2.2.1
[platform_type] => Mobile
[browser_name] => Safari
[browser_version] => 533.1
[engine_name] => WebKit
[engine_version] => 533.1
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>UserAgentStringCom<br /><small></small><br /></td><td>Android Webkit Browser </td><td><i class="material-icons">close</i></td><td>Android 2.2.1</td><td style="border-left: 1px solid #555"><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"></td><td></td><td></td><td>0.0936</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-08a9ddfb-838f-48d7-9ede-1d132306b2ee">Detail</a>
<!-- Modal Structure -->
<div id="modal-08a9ddfb-838f-48d7-9ede-1d132306b2ee" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>UserAgentStringCom result detail</h4>
<p><pre><code class="php">stdClass Object
(
[agent_type] => Browser
[agent_name] => Android Webkit Browser
[agent_version] => --
[os_type] => Android
[os_name] => Android
[os_versionName] =>
[os_versionNumber] => 2.2.1
[os_producer] =>
[os_producerURL] =>
[linux_distibution] => Null
[agent_language] => English - United States
[agent_languageTag] => en-us
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>WhatIsMyBrowserCom<br /><small></small><br /></td><td>Android Browser 4.0</td><td>WebKit 533.1</td><td>Android 2.2.1</td><td style="border-left: 1px solid #555"></td><td></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>0.234</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-5fc1ff22-a74d-481b-9ad1-fcfde73ded9c">Detail</a>
<!-- Modal Structure -->
<div id="modal-5fc1ff22-a74d-481b-9ad1-fcfde73ded9c" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>WhatIsMyBrowserCom result detail</h4>
<p><pre><code class="php">stdClass Object
(
[operating_system_name] => Android
[simple_sub_description_string] =>
[simple_browser_string] => Android Browser 4 on Android (Froyo)
[browser_version] => 4
[extra_info] => Array
(
)
[operating_platform] =>
[extra_info_table] => stdClass Object
(
[System Build] => FRG83
)
[layout_engine_name] => WebKit
[detected_addons] => Array
(
)
[operating_system_flavour_code] =>
[hardware_architecture] =>
[operating_system_flavour] =>
[operating_system_frameworks] => Array
(
)
[browser_name_code] => android-browser
[operating_system_version] => Froyo
[simple_operating_platform_string] =>
[is_abusive] =>
[layout_engine_version] => 533.1
[browser_capabilities] => Array
(
)
[operating_platform_vendor_name] =>
[operating_system] => Android (Froyo)
[operating_system_version_full] => 2.2.1
[operating_platform_code] =>
[browser_name] => Android Browser
[operating_system_name_code] => android
[user_agent] => Mozilla/5.0 (Linux; U; Android 2.2.1; en-us; Eris FroshedYo v11 Build/FRG83) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1
[browser_version_full] => 4.0
[browser] => Android Browser 4
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>WhichBrowser<br /><small>v2.0.18</small><br /></td><td>Android Browser </td><td>Webkit 533.1</td><td>Android 2.2.1</td><td style="border-left: 1px solid #555"></td><td>Eris FroshedYo v11</td><td>mobile:smart</td><td>yes</td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"></td><td></td><td><i class="material-icons">close</i></td><td>0.0156</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-083a336f-5d73-4505-84f3-c5fc9bb78652">Detail</a>
<!-- Modal Structure -->
<div id="modal-083a336f-5d73-4505-84f3-c5fc9bb78652" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>WhichBrowser result detail</h4>
<p><pre><code class="php">Array
(
[browser] => Array
(
[name] => Android Browser
)
[engine] => Array
(
[name] => Webkit
[version] => 533.1
)
[os] => Array
(
[name] => Android
[version] => 2.2.1
)
[device] => Array
(
[type] => mobile
[subtype] => smart
[model] => Eris FroshedYo v11
)
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>Woothee<br /><small>v1.2.0</small><br /></td><td>Safari 4.0</td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>smartphone</td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"></td><td></td><td><i class="material-icons">close</i></td><td>0</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-f00e7198-0e22-49fe-bad0-dbb3a9cde9b9">Detail</a>
<!-- Modal Structure -->
<div id="modal-f00e7198-0e22-49fe-bad0-dbb3a9cde9b9" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>Woothee result detail</h4>
<p><pre><code class="php">Array
(
[name] => Safari
[vendor] => Apple
[version] => 4.0
[category] => smartphone
[os] => Android
[os_version] => 2.2.1
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>Wurfl<br /><small>1.7.1.0</small><br /></td><td>Android Webkit 2.2.1</td><td><i class="material-icons">close</i></td><td>Android 2.2.1</td><td style="border-left: 1px solid #555"></td><td></td><td>Smartphone</td><td>yes</td><td>yes</td><td style="border-left: 1px solid #555"></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>0.0156</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-a2bedf8c-4a95-42a7-96c5-aaf233b2ac50">Detail</a>
<!-- Modal Structure -->
<div id="modal-a2bedf8c-4a95-42a7-96c5-aaf233b2ac50" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>Wurfl result detail</h4>
<p><pre><code class="php">Array
(
[virtual] => Array
(
[is_android] => true
[is_ios] => false
[is_windows_phone] => false
[is_app] => false
[is_full_desktop] => false
[is_largescreen] => false
[is_mobile] => true
[is_robot] => false
[is_smartphone] => true
[is_touchscreen] => true
[is_wml_preferred] => false
[is_xhtmlmp_preferred] => false
[is_html_preferred] => true
[advertised_device_os] => Android
[advertised_device_os_version] => 2.2.1
[advertised_browser] => Android Webkit
[advertised_browser_version] => 2.2.1
[complete_device_name] => Generic Android 2.2
[device_name] => Generic Android 2.2
[form_factor] => Smartphone
[is_phone] => true
[is_app_webview] => false
)
[all] => Array
(
[brand_name] => Generic
[model_name] => Android 2.2
[unique] => true
[ununiqueness_handler] =>
[is_wireless_device] => true
[device_claims_web_support] => true
[has_qwerty_keyboard] => true
[can_skip_aligned_link_row] => true
[uaprof] =>
[uaprof2] =>
[uaprof3] =>
[nokia_series] => 0
[nokia_edition] => 0
[device_os] => Android
[mobile_browser] => Android Webkit
[mobile_browser_version] =>
[device_os_version] => 2.2
[pointing_method] => touchscreen
[release_date] => 2009_october
[marketing_name] =>
[model_extra_info] =>
[nokia_feature_pack] => 0
[can_assign_phone_number] => true
[is_tablet] => false
[manufacturer_name] =>
[is_bot] => false
[is_google_glass] => false
[proportional_font] => false
[built_in_back_button_support] => false
[card_title_support] => true
[softkey_support] => false
[table_support] => true
[numbered_menus] => false
[menu_with_select_element_recommended] => false
[menu_with_list_of_links_recommended] => true
[icons_on_menu_items_support] => false
[break_list_of_links_with_br_element_recommended] => true
[access_key_support] => false
[wrap_mode_support] => false
[times_square_mode_support] => false
[deck_prefetch_support] => false
[elective_forms_recommended] => true
[wizards_recommended] => false
[image_as_link_support] => false
[insert_br_element_after_widget_recommended] => false
[wml_can_display_images_and_text_on_same_line] => false
[wml_displays_image_in_center] => false
[opwv_wml_extensions_support] => false
[wml_make_phone_call_string] => wtai://wp/mc;
[chtml_display_accesskey] => false
[emoji] => false
[chtml_can_display_images_and_text_on_same_line] => false
[chtml_displays_image_in_center] => false
[imode_region] => none
[chtml_make_phone_call_string] => tel:
[chtml_table_support] => false
[xhtml_honors_bgcolor] => true
[xhtml_supports_forms_in_table] => true
[xhtml_support_wml2_namespace] => false
[xhtml_autoexpand_select] => false
[xhtml_select_as_dropdown] => false
[xhtml_select_as_radiobutton] => false
[xhtml_select_as_popup] => false
[xhtml_display_accesskey] => false
[xhtml_supports_invisible_text] => false
[xhtml_supports_inline_input] => false
[xhtml_supports_monospace_font] => false
[xhtml_supports_table_for_layout] => true
[xhtml_supports_css_cell_table_coloring] => true
[xhtml_format_as_css_property] => false
[xhtml_format_as_attribute] => false
[xhtml_nowrap_mode] => false
[xhtml_marquee_as_css_property] => false
[xhtml_readable_background_color1] => #FFFFFF
[xhtml_readable_background_color2] => #FFFFFF
[xhtml_allows_disabled_form_elements] => true
[xhtml_document_title_support] => true
[xhtml_preferred_charset] => iso-8859-1
[opwv_xhtml_extensions_support] => false
[xhtml_make_phone_call_string] => tel:
[xhtmlmp_preferred_mime_type] => text/html
[xhtml_table_support] => true
[xhtml_send_sms_string] => sms:
[xhtml_send_mms_string] => mms:
[xhtml_file_upload] => supported
[cookie_support] => true
[accept_third_party_cookie] => true
[xhtml_supports_iframe] => full
[xhtml_avoid_accesskeys] => true
[xhtml_can_embed_video] => play_and_stop
[ajax_support_javascript] => true
[ajax_manipulate_css] => true
[ajax_support_getelementbyid] => true
[ajax_support_inner_html] => true
[ajax_xhr_type] => standard
[ajax_manipulate_dom] => true
[ajax_support_events] => true
[ajax_support_event_listener] => true
[ajax_preferred_geoloc_api] => w3c_api
[xhtml_support_level] => 4
[preferred_markup] => html_web_4_0
[wml_1_1] => false
[wml_1_2] => false
[wml_1_3] => false
[html_wi_w3_xhtmlbasic] => true
[html_wi_oma_xhtmlmp_1_0] => true
[html_wi_imode_html_1] => false
[html_wi_imode_html_2] => false
[html_wi_imode_html_3] => false
[html_wi_imode_html_4] => false
[html_wi_imode_html_5] => false
[html_wi_imode_htmlx_1] => false
[html_wi_imode_htmlx_1_1] => false
[html_wi_imode_compact_generic] => false
[html_web_3_2] => true
[html_web_4_0] => true
[voicexml] => false
[multipart_support] => false
[total_cache_disable_support] => false
[time_to_live_support] => false
[resolution_width] => 320
[resolution_height] => 480
[columns] => 60
[max_image_width] => 320
[max_image_height] => 400
[rows] => 40
[physical_screen_width] => 34
[physical_screen_height] => 50
[dual_orientation] => true
[density_class] => 1.0
[wbmp] => true
[bmp] => false
[epoc_bmp] => false
[gif_animated] => false
[jpg] => true
[png] => true
[tiff] => false
[transparent_png_alpha] => true
[transparent_png_index] => true
[svgt_1_1] => false
[svgt_1_1_plus] => false
[greyscale] => false
[gif] => true
[colors] => 65536
[webp_lossy_support] => false
[webp_lossless_support] => false
[post_method_support] => true
[basic_authentication_support] => true
[empty_option_value_support] => true
[emptyok] => false
[nokia_voice_call] => false
[wta_voice_call] => false
[wta_phonebook] => false
[wta_misc] => false
[wta_pdc] => false
[https_support] => true
[phone_id_provided] => false
[max_data_rate] => 384
[wifi] => true
[sdio] => false
[vpn] => false
[has_cellular_radio] => true
[max_deck_size] => 2000000
[max_url_length_in_requests] => 256
[max_url_length_homepage] => 0
[max_url_length_bookmark] => 0
[max_url_length_cached_page] => 0
[max_no_of_connection_settings] => 0
[max_no_of_bookmarks] => 0
[max_length_of_username] => 0
[max_length_of_password] => 0
[max_object_size] => 0
[downloadfun_support] => false
[directdownload_support] => true
[inline_support] => false
[oma_support] => true
[ringtone] => false
[ringtone_3gpp] => false
[ringtone_midi_monophonic] => false
[ringtone_midi_polyphonic] => false
[ringtone_imelody] => false
[ringtone_digiplug] => false
[ringtone_compactmidi] => false
[ringtone_mmf] => false
[ringtone_rmf] => false
[ringtone_xmf] => false
[ringtone_amr] => false
[ringtone_awb] => false
[ringtone_aac] => false
[ringtone_wav] => false
[ringtone_mp3] => false
[ringtone_spmidi] => false
[ringtone_qcelp] => false
[ringtone_voices] => 1
[ringtone_df_size_limit] => 0
[ringtone_directdownload_size_limit] => 0
[ringtone_inline_size_limit] => 0
[ringtone_oma_size_limit] => 0
[wallpaper] => false
[wallpaper_max_width] => 0
[wallpaper_max_height] => 0
[wallpaper_preferred_width] => 0
[wallpaper_preferred_height] => 0
[wallpaper_resize] => none
[wallpaper_wbmp] => false
[wallpaper_bmp] => false
[wallpaper_gif] => false
[wallpaper_jpg] => false
[wallpaper_png] => false
[wallpaper_tiff] => false
[wallpaper_greyscale] => false
[wallpaper_colors] => 2
[wallpaper_df_size_limit] => 0
[wallpaper_directdownload_size_limit] => 0
[wallpaper_inline_size_limit] => 0
[wallpaper_oma_size_limit] => 0
[screensaver] => false
[screensaver_max_width] => 0
[screensaver_max_height] => 0
[screensaver_preferred_width] => 0
[screensaver_preferred_height] => 0
[screensaver_resize] => none
[screensaver_wbmp] => false
[screensaver_bmp] => false
[screensaver_gif] => false
[screensaver_jpg] => false
[screensaver_png] => false
[screensaver_greyscale] => false
[screensaver_colors] => 2
[screensaver_df_size_limit] => 0
[screensaver_directdownload_size_limit] => 0
[screensaver_inline_size_limit] => 0
[screensaver_oma_size_limit] => 0
[picture] => false
[picture_max_width] => 0
[picture_max_height] => 0
[picture_preferred_width] => 0
[picture_preferred_height] => 0
[picture_resize] => none
[picture_wbmp] => false
[picture_bmp] => false
[picture_gif] => false
[picture_jpg] => false
[picture_png] => false
[picture_greyscale] => false
[picture_colors] => 2
[picture_df_size_limit] => 0
[picture_directdownload_size_limit] => 0
[picture_inline_size_limit] => 0
[picture_oma_size_limit] => 0
[video] => false
[oma_v_1_0_forwardlock] => false
[oma_v_1_0_combined_delivery] => false
[oma_v_1_0_separate_delivery] => false
[streaming_video] => true
[streaming_3gpp] => true
[streaming_mp4] => true
[streaming_mov] => false
[streaming_video_size_limit] => 0
[streaming_real_media] => none
[streaming_flv] => false
[streaming_3g2] => false
[streaming_vcodec_h263_0] => 10
[streaming_vcodec_h263_3] => -1
[streaming_vcodec_mpeg4_sp] => 2
[streaming_vcodec_mpeg4_asp] => -1
[streaming_vcodec_h264_bp] => 3.0
[streaming_acodec_amr] => nb
[streaming_acodec_aac] => lc
[streaming_wmv] => none
[streaming_preferred_protocol] => rtsp
[streaming_preferred_http_protocol] => progressive_download
[wap_push_support] => false
[connectionless_service_indication] => false
[connectionless_service_load] => false
[connectionless_cache_operation] => false
[connectionoriented_unconfirmed_service_indication] => false
[connectionoriented_unconfirmed_service_load] => false
[connectionoriented_unconfirmed_cache_operation] => false
[connectionoriented_confirmed_service_indication] => false
[connectionoriented_confirmed_service_load] => false
[connectionoriented_confirmed_cache_operation] => false
[utf8_support] => true
[ascii_support] => false
[iso8859_support] => false
[expiration_date] => false
[j2me_cldc_1_0] => false
[j2me_cldc_1_1] => false
[j2me_midp_1_0] => false
[j2me_midp_2_0] => false
[doja_1_0] => false
[doja_1_5] => false
[doja_2_0] => false
[doja_2_1] => false
[doja_2_2] => false
[doja_3_0] => false
[doja_3_5] => false
[doja_4_0] => false
[j2me_jtwi] => false
[j2me_mmapi_1_0] => false
[j2me_mmapi_1_1] => false
[j2me_wmapi_1_0] => false
[j2me_wmapi_1_1] => false
[j2me_wmapi_2_0] => false
[j2me_btapi] => false
[j2me_3dapi] => false
[j2me_locapi] => false
[j2me_nokia_ui] => false
[j2me_motorola_lwt] => false
[j2me_siemens_color_game] => false
[j2me_siemens_extension] => false
[j2me_heap_size] => 0
[j2me_max_jar_size] => 0
[j2me_storage_size] => 0
[j2me_max_record_store_size] => 0
[j2me_screen_width] => 0
[j2me_screen_height] => 0
[j2me_canvas_width] => 0
[j2me_canvas_height] => 0
[j2me_bits_per_pixel] => 0
[j2me_audio_capture_enabled] => false
[j2me_video_capture_enabled] => false
[j2me_photo_capture_enabled] => false
[j2me_capture_image_formats] => none
[j2me_http] => false
[j2me_https] => false
[j2me_socket] => false
[j2me_udp] => false
[j2me_serial] => false
[j2me_gif] => false
[j2me_gif89a] => false
[j2me_jpg] => false
[j2me_png] => false
[j2me_bmp] => false
[j2me_bmp3] => false
[j2me_wbmp] => false
[j2me_midi] => false
[j2me_wav] => false
[j2me_amr] => false
[j2me_mp3] => false
[j2me_mp4] => false
[j2me_imelody] => false
[j2me_rmf] => false
[j2me_au] => false
[j2me_aac] => false
[j2me_realaudio] => false
[j2me_xmf] => false
[j2me_wma] => false
[j2me_3gpp] => false
[j2me_h263] => false
[j2me_svgt] => false
[j2me_mpeg4] => false
[j2me_realvideo] => false
[j2me_real8] => false
[j2me_realmedia] => false
[j2me_left_softkey_code] => 0
[j2me_right_softkey_code] => 0
[j2me_middle_softkey_code] => 0
[j2me_select_key_code] => 0
[j2me_return_key_code] => 0
[j2me_clear_key_code] => 0
[j2me_datefield_no_accepts_null_date] => false
[j2me_datefield_broken] => false
[receiver] => false
[sender] => false
[mms_max_size] => 0
[mms_max_height] => 0
[mms_max_width] => 0
[built_in_recorder] => false
[built_in_camera] => true
[mms_jpeg_baseline] => false
[mms_jpeg_progressive] => false
[mms_gif_static] => false
[mms_gif_animated] => false
[mms_png] => false
[mms_bmp] => false
[mms_wbmp] => false
[mms_amr] => false
[mms_wav] => false
[mms_midi_monophonic] => false
[mms_midi_polyphonic] => false
[mms_midi_polyphonic_voices] => 0
[mms_spmidi] => false
[mms_mmf] => false
[mms_mp3] => false
[mms_evrc] => false
[mms_qcelp] => false
[mms_ota_bitmap] => false
[mms_nokia_wallpaper] => false
[mms_nokia_operatorlogo] => false
[mms_nokia_3dscreensaver] => false
[mms_nokia_ringingtone] => false
[mms_rmf] => false
[mms_xmf] => false
[mms_symbian_install] => false
[mms_jar] => false
[mms_jad] => false
[mms_vcard] => false
[mms_vcalendar] => false
[mms_wml] => false
[mms_wbxml] => false
[mms_wmlc] => false
[mms_video] => false
[mms_mp4] => false
[mms_3gpp] => false
[mms_3gpp2] => false
[mms_max_frame_rate] => 0
[nokiaring] => false
[picturemessage] => false
[operatorlogo] => false
[largeoperatorlogo] => false
[callericon] => false
[nokiavcard] => false
[nokiavcal] => false
[sckl_ringtone] => false
[sckl_operatorlogo] => false
[sckl_groupgraphic] => false
[sckl_vcard] => false
[sckl_vcalendar] => false
[text_imelody] => false
[ems] => false
[ems_variablesizedpictures] => false
[ems_imelody] => false
[ems_odi] => false
[ems_upi] => false
[ems_version] => 0
[siemens_ota] => false
[siemens_logo_width] => 101
[siemens_logo_height] => 29
[siemens_screensaver_width] => 101
[siemens_screensaver_height] => 50
[gprtf] => false
[sagem_v1] => false
[sagem_v2] => false
[panasonic] => false
[sms_enabled] => true
[wav] => false
[mmf] => false
[smf] => false
[mld] => false
[midi_monophonic] => false
[midi_polyphonic] => false
[sp_midi] => false
[rmf] => false
[xmf] => false
[compactmidi] => false
[digiplug] => false
[nokia_ringtone] => false
[imelody] => false
[au] => false
[amr] => false
[awb] => false
[aac] => true
[mp3] => true
[voices] => 1
[qcelp] => false
[evrc] => false
[flash_lite_version] =>
[fl_wallpaper] => false
[fl_screensaver] => false
[fl_standalone] => false
[fl_browser] => false
[fl_sub_lcd] => false
[full_flash_support] => true
[css_supports_width_as_percentage] => true
[css_border_image] => webkit
[css_rounded_corners] => webkit
[css_gradient] => none
[css_spriting] => true
[css_gradient_linear] => none
[is_transcoder] => false
[transcoder_ua_header] => user-agent
[rss_support] => false
[pdf_support] => true
[progressive_download] => true
[playback_vcodec_h263_0] => 10
[playback_vcodec_h263_3] => -1
[playback_vcodec_mpeg4_sp] => 0
[playback_vcodec_mpeg4_asp] => -1
[playback_vcodec_h264_bp] => 3.0
[playback_real_media] => none
[playback_3gpp] => true
[playback_3g2] => false
[playback_mp4] => true
[playback_mov] => false
[playback_acodec_amr] => nb
[playback_acodec_aac] => none
[playback_df_size_limit] => 0
[playback_directdownload_size_limit] => 0
[playback_inline_size_limit] => 0
[playback_oma_size_limit] => 0
[playback_acodec_qcelp] => false
[playback_wmv] => none
[hinted_progressive_download] => true
[html_preferred_dtd] => html4
[viewport_supported] => true
[viewport_width] => device_width_token
[viewport_userscalable] => no
[viewport_initial_scale] =>
[viewport_maximum_scale] =>
[viewport_minimum_scale] =>
[mobileoptimized] => false
[handheldfriendly] => false
[canvas_support] => full
[image_inlining] => true
[is_smarttv] => false
[is_console] => false
[nfc_support] => false
[ux_full_desktop] => false
[jqm_grade] => A
[is_sencha_touch_ok] => false
)
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>Zsxsoft<br /><small>1.3</small><br /></td><td>Android Webkit 4.0</td><td><i class="material-icons">close</i></td><td>Android 2.2.1</td><td style="border-left: 1px solid #555"></td><td></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>0</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-5d43e024-b46c-44f6-8914-529b05569bc2">Detail</a>
<!-- Modal Structure -->
<div id="modal-5d43e024-b46c-44f6-8914-529b05569bc2" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>Zsxsoft result detail</h4>
<p><pre><code class="php">Array
(
[browser] => Array
(
[link] => http://developer.android.com/reference/android/webkit/package-summary.html
[title] => Android Webkit 4.0
[name] => Android Webkit
[version] => 4.0
[code] => android-webkit
[image] => img/16/browser/android-webkit.png
)
[os] => Array
(
[link] => http://www.android.com/
[name] => Android
[version] => 2.2.1
[code] => android
[x64] =>
[title] => Android 2.2.1
[type] => os
[dir] => os
[image] => img/16/os/android.png
)
[device] => Array
(
[link] =>
[title] =>
[model] =>
[brand] =>
[code] => null
[dir] => device
[type] => device
[image] => img/16/device/null.png
)
[platform] => Array
(
[link] => http://www.android.com/
[name] => Android
[version] => 2.2.1
[code] => android
[x64] =>
[title] => Android 2.2.1
[type] => os
[dir] => os
[image] => img/16/os/android.png
)
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr></table>
</div>
<div class="section">
<h1 class="header center orange-text">About this comparison</h1>
<div class="row center">
<h5 class="header light">
The primary goal of this project is simple<br />
I wanted to know which user agent parser is the most accurate in each part - device detection, bot detection and so on...<br />
<br />
The secondary goal is to provide a source for all user agent parsers to improve their detection based on this results.<br />
<br />
You can also improve this further, by suggesting ideas at <a href="https://github.com/ThaDafinser/UserAgentParserComparison">ThaDafinser/UserAgentParserComparison</a><br />
<br />
The comparison is based on the abstraction by <a href="https://github.com/ThaDafinser/UserAgentParser">ThaDafinser/UserAgentParser</a>
</h5>
</div>
</div>
<div class="card">
<div class="card-content">
Comparison created <i>2016-05-10 07:52:27</i> | by
<a href="https://github.com/ThaDafinser">ThaDafinser</a>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.3/js/materialize.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/list.js/1.2.0/list.min.js"></script>
<script>
$(document).ready(function(){
// the "href" attribute of .modal-trigger must specify the modal ID that wants to be triggered
$('.modal-trigger').leanModal();
});
</script>
</body>
</html> | ThaDafinser/UserAgentParserComparison | v5/user-agent-detail/19/ab/19abcfcb-301e-4f70-b4e5-9faa5748e5f0.html | HTML | mit | 56,541 |
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html lang="en">
<head>
<meta name="generator" content="AWStats 7.1 (build 1.983) from config file awstats.bank.smart-server.info.conf (http://www.awstats.org)">
<meta name="robots" content="noindex,nofollow">
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta http-equiv="description" content="Awstats - Advanced Web Statistics for bank.smart-server.info (2015-09) - allemails">
<title>Statistics for bank.smart-server.info (2015-09) - allemails</title>
<style type="text/css">
body { font: 11px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; margin-top: 0; margin-bottom: 0; }
.aws_bodyl { }
.aws_border { border-collapse: collapse; background-color: #CCCCDD; padding: 1px 1px 1px 1px; margin-top: 0px; margin-bottom: 0px; }
.aws_title { font: 13px verdana, arial, helvetica, sans-serif; font-weight: bold; background-color: #CCCCDD; text-align: center; margin-top: 0; margin-bottom: 0; padding: 1px 1px 1px 1px; color: #000000; }
.aws_blank { font: 13px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; text-align: center; margin-bottom: 0; padding: 1px 1px 1px 1px; }
.aws_data {
background-color: #FFFFFF;
border-top-width: 1px;
border-left-width: 0px;
border-right-width: 0px;
border-bottom-width: 0px;
}
.aws_formfield { font: 13px verdana, arial, helvetica; }
.aws_button {
font-family: arial,verdana,helvetica, sans-serif;
font-size: 12px;
border: 1px solid #ccd7e0;
background-image : url(/awstatsicons/other/button.gif);
}
th { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
th.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font-size: 13px; font-weight: bold; }
td { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
td.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px;}
td.awsm { border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px; }
b { font-weight: bold; }
a { font: 11px verdana, arial, helvetica, sans-serif; }
a:link { color: #0011BB; text-decoration: none; }
a:visited { color: #0011BB; text-decoration: none; }
a:hover { color: #605040; text-decoration: underline; }
.currentday { font-weight: bold; }
</style>
</head>
<body style="margin-top: 0px">
<a name="top"></a>
<a name="menu"> </a>
<form name="FormDateFilter" action="/cgi-bin/awstats.pl?config=bank.smart-server.info&output=allemails" style="padding: 0px 0px 0px 0px; margin-top: 0">
<table class="aws_border" border="0" cellpadding="2" cellspacing="0" width="100%">
<tr><td>
<table class="aws_data sortable" border="0" cellpadding="1" cellspacing="0" width="100%">
<tr><td class="aws" valign="middle"><b>Statistics for:</b> </td><td class="aws" valign="middle"><span style="font-size: 14px;">bank.smart-server.info</span></td><td align="right" rowspan="3"><a href="http://awstats.sourceforge.net" target="awstatshome"><img src="/awstatsicons/other/awstats_logo6.png" border="0" /></a></td></tr>
<tr valign="middle"><td class="aws" valign="middle" width="150"><b>Last Update:</b> </td><td class="aws" valign="middle"><span style="font-size: 12px;">01 Sep 2015 - 00:01</span></td></tr>
<tr><td class="aws" valign="middle"><b>Reported period:</b></td><td class="aws" valign="middle"><span style="font-size: 14px;">Month Sep 2015</span></td></tr>
</table>
</td></tr></table>
</form><br />
<table>
<tr><td class="aws"><a href="javascript:parent.window.close();">Close window</a></td></tr>
</table>
<a name="emailsenders"> </a><br />
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
<tr><td class="aws_title" width="70%">Sender EMail </td><td class="aws_blank"> </td></tr>
<tr><td colspan="2">
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
<tr bgcolor="#ECECEC"><th colspan="3">Sender EMail : 0</th></tr>
<tr bgcolor="#ECECEC"><th width="30%">Local</th><th> </th><th width="30%">External</th></tr></table></td></tr></table><br />
<br /><br />
<span dir="ltr" style="font: 11px verdana, arial, helvetica; color: #000000;"><b>Advanced Web Statistics 7.1 (build 1.983)</b> - <a href="http://www.awstats.org" target="awstatshome">Created by awstats</a></span><br />
<br />
</body>
</html>
| tigranParemuzian/master | web/webstat/awstats.bank.smart-server.info.allemails.092015.html | HTML | mit | 5,034 |
<!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_34) on Wed Oct 23 13:33:57 EDT 2013 -->
<TITLE>
Uses of Class org.hibernate.engine.jdbc.internal.TypeInfoExtracter (Hibernate JavaDocs)
</TITLE>
<META NAME="date" CONTENT="2013-10-23">
<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.hibernate.engine.jdbc.internal.TypeInfoExtracter (Hibernate JavaDocs)";
}
}
</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/hibernate/engine/jdbc/internal/TypeInfoExtracter.html" title="class in org.hibernate.engine.jdbc.internal"><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="../../../../../../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">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../index.html?org/hibernate/engine/jdbc/internal//class-useTypeInfoExtracter.html" target="_top"><B>FRAMES</B></A>
<A HREF="TypeInfoExtracter.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.hibernate.engine.jdbc.internal.TypeInfoExtracter</B></H2>
</CENTER>
No usage of org.hibernate.engine.jdbc.internal.TypeInfoExtracter
<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/hibernate/engine/jdbc/internal/TypeInfoExtracter.html" title="class in org.hibernate.engine.jdbc.internal"><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="../../../../../../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">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../index.html?org/hibernate/engine/jdbc/internal//class-useTypeInfoExtracter.html" target="_top"><B>FRAMES</B></A>
<A HREF="TypeInfoExtracter.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>
Copyright © 2001-2013 <a href="http://redhat.com">Red Hat, Inc.</a> All Rights Reserved.
</BODY>
</HTML>
| HerrB92/obp | OpenBeaconPackage/libraries/hibernate-release-4.2.7.SP1/documentation/javadocs/org/hibernate/engine/jdbc/internal/class-use/TypeInfoExtracter.html | HTML | mit | 6,263 |
<!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_19) on Fri Oct 29 16:39:52 MSD 2010 -->
<TITLE>
Uses of Class org.apache.poi.hssf.record.formula.AreaErrPtg (POI API Documentation)
</TITLE>
<META NAME="date" CONTENT="2010-10-29">
<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.hssf.record.formula.AreaErrPtg (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/hssf/record/formula/AreaErrPtg.html" title="class in org.apache.poi.hssf.record.formula"><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/hssf/record/formula/\class-useAreaErrPtg.html" target="_top"><B>FRAMES</B></A>
<A HREF="AreaErrPtg.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.hssf.record.formula.AreaErrPtg</B></H2>
</CENTER>
No usage of org.apache.poi.hssf.record.formula.AreaErrPtg
<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/hssf/record/formula/AreaErrPtg.html" title="class in org.apache.poi.hssf.record.formula"><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/hssf/record/formula/\class-useAreaErrPtg.html" target="_top"><B>FRAMES</B></A>
<A HREF="AreaErrPtg.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 2010 The Apache Software Foundation or
its licensors, as applicable.</i>
</BODY>
</HTML>
| nimbleapps/export_to_spreadsheet | lib/apache-poi/docs/apidocs/org/apache/poi/hssf/record/formula/class-use/AreaErrPtg.html | HTML | mit | 6,394 |
<div class="auth-main">
<div class="auth-block">
<h1>Sign up to Media Promotional Services</h1>
<a routerLink="/pages/login" class="auth-link">Already have an account? Sign in!</a>
<form [formGroup]="form" (ngSubmit)="onSubmit(form.value)" class="form-horizontal">
<div class="form-group row" [ngClass]="{'has-error': (!name.valid && name.touched), 'has-success': (name.valid && name.touched)}">
<label for="inputName3" class="col-sm-2 control-label">Name</label>
<div class="col-sm-10">
<input [formControl]="name" type="text" class="form-control" id="inputName3" placeholder="Full Name">
</div>
</div>
<div class="form-group row" [ngClass]="{'has-error': (!username.valid && username.touched), 'has-success': (username.valid && username.touched)}">
<label for="inputUserName3" class="col-sm-2 control-label">Name</label>
<div class="col-sm-10">
<input [formControl]="username" type="text" class="form-control" id="inputUserName3" placeholder="Account Name">
</div>
</div>
<div class="form-group row" [ngClass]="{'has-error': (!email.valid && email.touched), 'has-success': (email.valid && email.touched)}">
<label for="inputEmail3" class="col-sm-2 control-label">Email</label>
<div class="col-sm-10">
<input [formControl]="email" type="email" class="form-control" id="inputEmail3" placeholder="Email">
</div>
</div>
<div class="form-group row" [ngClass]="{'has-error': (!password.valid && password.touched), 'has-success': (password.valid && password.touched)}">
<label for="inputPassword3" class="col-sm-2 control-label">Password</label>
<div class="col-sm-10">
<input [formControl]="password" type="password" class="form-control" id="inputPassword3" placeholder="Password">
</div>
</div>
<div class="form-group row" [ngClass]="{'has-error': (!repeatPassword.valid && repeatPassword.touched), 'has-success': (repeatPassword.valid && repeatPassword.touched)}">
<label for="inputPassword4" class="col-sm-2 control-label">Repeat</label>
<div class="col-sm-10">
<input [formControl]="repeatPassword" type="password" class="form-control" id="inputPassword4" placeholder="Repeat">
<span *ngIf="!passwords.valid && (password.touched || repeatPassword.touched)" class="help-block sub-little-text">Passwords don't match.</span>
</div>
</div>
<div class="form-group row">
<div class="offset-sm-2 col-sm-10">
<button [disabled]="!form.valid" type="submit" class="btn btn-default btn-auth">Sign up</button>
</div>
</div>
</form>
</div>
</div> | moiseshv/MediaProm_client | src/app/pages/register/register.html | HTML | mit | 3,037 |
---
layout: basic
category: HackBrexit
---
<h2>Beyond Brexit: Creating dialogue and action for a country divided</h2>
<p>Brexit is one of the most controversial and seismic political events in the UK’s recent history. Yet throughout the pre-referendum campaigns and aftermath of Brexit many questions remain unanswered and the future unclear.</p>
<p>Regardless of whether you voted in or out, this two day event is open to the tech and non-tech community to join forces to create dialogue and action beyond Brexit.</p>
{% for post in site.posts %}
{% if post.category == 'HackBrexit' %}
{% include episode.html %}
{% endif %}
{% endfor %}
| WeRockTech/werocktech.github.io | hackbrexit.html | HTML | mit | 661 |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Eko Wave • CAFM</title>
<meta name="description" content="Site design and creative for Eko Wave — a team of three specializing in niche applications.">
<meta name="keywords" content="design, logo, website">
<!-- Open Graph -->
<meta property="og:locale" content="en_US">
<meta property="og:type" content="article">
<meta property="og:title" content="Eko Wave">
<meta property="og:description" content="Site design and creative for Eko Wave — a team of three specializing in niche applications.">
<meta property="og:url" content="http://climbafingmountain.github.io/work/eko-wave/">
<meta property="og:site_name" content="CAFM">
<link rel="canonical" href="http://climbafingmountain.github.io/work/eko-wave/">
<link rel="sitemap" type="application/xml" title="Sitemap" href="http://climbafingmountain.github.io/sitemap.xml">
<link href="http://feeds.feedburner.com/MadeMistakes" type="application/atom+xml" rel="alternate" title="CAFM – Everything">
<link href="http://feeds.feedburner.com/MadeMistakesArticles" type="application/atom+xml" rel="alternate" title="CAFM – Articles">
<link href="http://feeds.feedburner.com/MadeMistakesMasteringPaper" type="application/atom+xml" rel="alternate" title="CAFM – Mastering Paper">
<link href="http://feeds.feedburner.com/MadeMistakesPaperFaces" type="application/atom+xml" rel="alternate" title="CAFM – PaperFaces Portraits">
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="cleartype" content="on">
<!-- Webmaster Tools verifications -->
<style>
.sliding-menu-content {
visibility: hidden;
-webkit-transform: translateX(100%);
-moz-transform: translateX(100%);
-ms-transform: translateX(100%);
-o-transform: translateX(100%);
transform: translateX(100%);
}
</style>
<link rel="stylesheet" href="/assets/global-3db4b28b5e9e55dd34b574074a1621c7.css">
<!-- HTML5 Shiv and Media Query Support for IE -->
<!--[if lt IE 9]>
<script src="/assets/vendor/html5shiv-885c726bf070ed12d4f7169c3cef6cac.js"></script>
<script src="/assets/vendor/respond-436602cb1583ac6782a71c2d567a5b2c.js"></script>
<![endif]-->
</head>
<body id="js-body">
<!--[if lt IE 9]><div class="upgrade notice-danger"><strong>Your browser is quite old!</strong> Why not <a href="http://whatbrowser.org/">upgrade to a newer one</a> to better enjoy this site?</div><![endif]-->
<header id="masthead">
<div class="inner-wrap">
<div class="logo-wrap">
<a href="/" class="site-title">CAFM</a>
</div>
<nav role="navigation" class="menu top-menu">
<ul class="menu-item">
<li><a href="/work/">Work</a></li>
<li><a href="/articles/">Articles</a></li>
<li><a href="/mastering-paper/">Mastering Paper</a></li>
<li><a href="/paperfaces/">PaperFaces</a></li>
<li><a href="/about/">About</a></li>
</ul>
</nav>
</div><!-- /.inner-wrap -->
</header><!-- /.masthead -->
<nav role="navigation" id="js-menu" class="sliding-menu-content">
<ul class="menu-item">
<li>
<a href="/work/"><img src="/images/relic-scout-teaser-225.jpg" alt="teaser" class="teaser"></a>
<a href="/work/" class="title">Work</a>
<p class="excerpt">Things designed, illustrated, or developed by Michael Rose.</p>
</li><li>
<a href="/articles/"><img src="/images/skinny-bones-theme-teaser-225.jpg" alt="teaser" class="teaser"></a>
<a href="/articles/" class="title">Articles</a>
<p class="excerpt">A collection of thoughts, inspiration, mistakes, and other minutia.</p>
</li><li>
<a href="/mastering-paper/"><img src="/images/paper-53-erasing-teaser.jpg" alt="teaser" class="teaser"></a>
<a href="/mastering-paper/" class="title">Mastering Paper</a>
<p class="excerpt">A collection of tutorials and techniques to help master Paper by 53.</p>
</li><li>
<a href="/paperfaces/"><img src="/images/paperfaces-remi-l-teaser.jpg" alt="teaser" class="teaser"></a>
<a href="/paperfaces/" class="title">PaperFaces</a>
<p class="excerpt">Gallery of every PaperFaces portrait drawn to date with Paper by 53.</p>
</li><li>
<a href="/about/"><img src="/images/about-teaser-225.jpg" alt="teaser" class="teaser"></a>
<a href="/about/" class="title">About</a>
<p class="excerpt">Michael Rose is just another boring, tattooed, time traveling designer from Buffalo.</p>
</li>
</ul>
</nav>
<button type="button" id="js-menu-trigger" class="sliding-menu-button lines-button x2" role="button" aria-label="Toggle Navigation">
<span class="lines"></span>
</button>
<div id="js-menu-screen" class="menu-screen"></div>
<div id="page-wrapper">
<div id="main" role="main">
<article class="wrap" itemscope itemtype="http://schema.org/Article">
<div class="page-feature-header">
<div class="page-image">
<img src="/images/eko-wave-feature.jpg" class="page-feature-image" alt="Eko Wave" itemprop="image">
</div><!-- /.page-image -->
<div class="page-title">
<h1><span>Eko Wave</span></h1>
<div class="page-meta">
<span><i class="fa fa-folder-open-o"></i> <a href="/tag/design/" title="design" rel="tag">design</a>, <a href="/tag/logo/" title="logo" rel="tag">logo</a>, <a href="/tag/website/" title="website" rel="tag">website</a></span>
</div><!-- /.page-meta -->
</div><!-- /.page-title -->
</div><!-- /.page-header -->
<div class="inner-wrap">
<nav class="breadcrumbs">
<span itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
<a href="http://climbafingmountain.github.io" itemprop="url">
<span itemprop="title">Home</span>
</a> ›
<span itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
<a href="http://climbafingmountain.github.io/work/" itemprop="url">
<span itemprop="title">
Work
</span>
</a>
</span>
</nav><!-- /.breadcrumbs -->
<div id="content" class="page-content" itemprop="articleBody">
<div><a href="http://ekowave.com" class="btn" itemprop="sameAs"><i class="fa fa-external-link"></i> Launch Website</a></div>
<p>Eko Wave LLC is a company started by <a href="http://twitter.com/endonend">two</a> <a href="http://twitter.com/bjpmba">pals</a> and myself to provide value to niche consumers through well-thought-out applications.</p>
<p>When designing the logo I wanted something that played off of the word <em>wave</em> found in our name, while keeping with a color palette we established in Eko’s previous life.</p>
<figure>
<img src="http://climbafingmountain.github.io/images/eko-wave-logo-guide.jpg" alt="Eko Wave logo guide" />
<figcaption>Eko Wave logo guide</figcaption>
</figure>
<p>Taking things a step further I created a basic style tile<sup id="fnref:style-tile"><a href="#fn:style-tile" class="footnote">1</a></sup> document that helped me brainstorm how color, typography, and imagery fit and sell the concept to my partners. It would also serve as blueprint for me to design the site in browser — making for a more enjoyable and loose experience instead of being tied to a .PSD mockup I needed to CSSify<sup id="fnref:cssify"><a href="#fn:cssify" class="footnote">2</a></sup> exactly.</p>
<figure>
<img src="http://climbafingmountain.github.io/images/eko-wave-style-tile.jpg" alt="Eko Wave style tile" />
<figcaption>Eko Wave style tile</figcaption>
</figure>
<p>The end result was a simple one page site that will ultimately grow as we build out our application and service portfolio.</p>
<div class="footnotes">
<ol>
<li id="fn:style-tile">
<p>Style Tiles are a design deliverable consisting of fonts, colors and interface elements that communicate the essence of a visual brand for the web. (<a href="http://styletil.es/">Learn more</a>) <a href="#fnref:style-tile" class="reversefootnote">↩</a></p>
</li>
<li id="fn:cssify">
<p>Is CSSify even a word? <a href="#fnref:cssify" class="reversefootnote">↩</a></p>
</li>
</ol>
</div>
<hr />
<footer class="page-footer">
<div class="page-meta">
<span><i class="fa fa-clock-o"></i> Updated <time datetime="2013-10-16T00:00:00Z" itemprop="datePublished">October 16, 2013</time></span><br />
</div><!-- /.page-meta -->
</footer><!-- /.footer -->
<aside>
<div class="archive-wrap">
<h3>Latest Work</h3>
<ul class="th-grid">
<li><a href="http://climbafingmountain.github.io/work/jekyll-themes/" title="Jekyll Themes"><img src="http://climbafingmountain.github.io/images/jekyll-themes-thumb-250x250.png" alt=""></a></li>
<li><a href="http://climbafingmountain.github.io/work/eko-wave/" title="Eko Wave"><img src="http://climbafingmountain.github.io/images/eko-wave-thumb.jpg" alt=""></a></li>
<li><a href="http://climbafingmountain.github.io/paperfaces/" title="PaperFaces Project Gallery"><img src="http://climbafingmountain.github.io/images/paperfaces-project-250x250.jpg" alt=""></a></li>
</ul>
</div><!-- /.archive-wrap -->
</aside>
</div><!-- /.content -->
</div><!-- /.inner-wrap -->
</article><!-- /.wrap -->
</div><!-- /#main -->
<footer role="contentinfo" id="site-footer">
<nav role="navigation" class="menu">
<ul class="footer-links">
<li><a href="/">Home</a></li>
<li><a href="/about/">About</a></li>
<li><a href="/faqs/">FAQs</a></li>
<li><a href="/subscribe/">Subscribe</a></li>
<li><a href="/support/">Support</a></li>
<li><a href="/terms/">Terms</a></li>
</ul>
<ul class="social-links">
<li><a href="https://twitter.com/" onclick="ga('send', 'event', 'link', 'click', 'Twitter follow');">
<span class="twitter fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-twitter fa-stack-1x fa-inverse"></i>
</span>
</a></li>
<li><a href="https://www.facebook.com/" onclick="ga('send', 'event', 'link', 'click', 'Facebook follow');">
<span class="facebook fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-facebook fa-stack-1x fa-inverse"></i>
</span>
</a></li>
<li><a href="" onclick="ga('send', 'event', 'link', 'click', 'Google+ follow');">
<span class="google-plus fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-google-plus fa-stack-1x fa-inverse"></i>
</span>
</a></li>
<li><a href="http://instagram.com/" onclick="ga('send', 'event', 'link', 'click', 'Instagram follow');">
<span class="instagram fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-instagram fa-stack-1x fa-inverse"></i>
</span>
</a></li>
<li><a href="http://.tumblr.com" onclick="ga('send', 'event', 'link', 'click', 'Tumblr follow');">
<span class="tumblr fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-tumblr fa-stack-1x fa-inverse"></i>
</span>
</a></li>
</ul>
</nav><!-- /.menu -->
<p class="copyright">© 2004–2014 Michael Rose, <a href="/humans.txt">a real human being</a>. <a href="https://github.com/mmistakes/made-mistakes" title="Made Mistakes source on GitHub">View Source</a></p>
</footer>
</div>
<script src="/assets/main-42002837a0ef4c06b751284fde32cd84.js"></script>
<!-- Google Universal 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','//www.google-analytics.com/analytics.js','ga');
ga('create', '', 'mademistakes.com');
ga('require', 'linkid', 'linkid.js');
ga('require', 'displayfeatures');
ga('send', 'pageview');
</script>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script>
</body>
</html>
| ClimbAFingMountain/ClimbAFingMountain.github.io | _site/work/eko-wave/index.html | HTML | mit | 12,641 |
---
layout: page_title
title: <i class="fa fa-home fa-lg"></i>
titlename: 首页
---
<!--<br>-->
<center><h3><font color="#000080">时</font><font color="#FFA500">间</font><font color="#2E8B57">就</font><font color="#F08080">像</font><font color="#00CED1">乳</font><font color="red">沟, </font><font color="#BA55D3">挤</font><font color="#601986">一</font><font color="#556fb5">挤</font><font color="#fa1089">总</font><font color="#638c0b">会</font><font color="#e00089">有</font><font color="#0a1089">的 ^_^!</font></h3></center>
<div class="row">
<div class="col-md-12">
<div class="panel panel-primary">
<div class="panel-heading">{{ site.locals.newest }}</div>
{% for post in paginator.posts %}
<a href='{{ post.url }}' class="list-group-item pjaxlink clearfix">
{{post.title}}
<span class="badge">{{ post.date | date:"%Y年%m月%d日" }}</span>
</a>
{% endfor %}
</div>
</div>
{% for cate in site.cates %}
<div class="col-md-12">
<div class="panel panel-primary">
<div class="panel-heading">{{ cate }}</div>
{% for tag in site.tags %}
{% if tag[0] == cate %}
{% for post in tag[1] %}
<a href='{{ post.url }}' class="list-group-item pjaxlink clearfix">
{{post.title}}
<span class="badge">{{ post.date | date:"%Y年%m月%d日" }}</span>
</a>
{% endfor %}
{% endif %}
{% endfor %}
</div>
</div>
{% endfor %}
</div>
| woolaman/woolaman.github.io | index.html | HTML | mit | 1,553 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>regexp: 16 s</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.7.1+1 / regexp - 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>
regexp
<small>
8.7.0
<span class="label label-success">16 s</span>
</small>
</h1>
<p><em><script>document.write(moment("2020-03-02 21:28:58 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2020-03-02 21:28:58 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
camlp5 7.11 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-m4 1 Virtual package relying on m4
coq 8.7.1+1 Formal proof management system.
num 1.3 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.09.0 The OCaml compiler (virtual package)
ocaml-base-compiler 4.09.0 Official release 4.09.0
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.8.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "Hugo.Herbelin@inria.fr"
homepage: "https://github.com/coq-contribs/regexp"
license: "LGPL"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/RegExp"]
depends: [
"ocaml"
"coq" {>= "8.7" & < "8.8~"}
]
tags: [ "keyword: Regular Expression" "keyword: Kleene Algebra" "category: Computer Science/Formal Languages Theory and Automata" ]
authors: [ "Takashi Miyamoto <tmiya@bu.iij4u.or.jp> [http://study-func-prog.blogspot.com/]" ]
bug-reports: "https://github.com/coq-contribs/regexp/issues"
dev-repo: "git+https://github.com/coq-contribs/regexp.git"
synopsis: "Regular Expression"
description: """
The Library RegExp is a Coq library for regular expression. The implementation is based on the Janusz Brzozowski's algorithm ("Derivatives of Regular Expressions", Journal of the ACM 1964).
The RegExp library satisfies the axioms of Kleene Algebra. The proofs are shown in the library."""
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/regexp/archive/v8.7.0.tar.gz"
checksum: "md5=ea5fb8370ee2f55d922cdff26faea9c3"
}
</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-regexp.8.7.0 coq.8.7.1+1</code></dd>
<dt>Return code</dt>
<dd>0</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>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam list; echo; ulimit -Sv 4000000; timeout 2h opam install -y --deps-only coq-regexp.8.7.0 coq.8.7.1+1</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>4 s</dd>
</dl>
<h2>Install</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam list; echo; ulimit -Sv 16000000; timeout 2h opam install -y -v coq-regexp.8.7.0 coq.8.7.1+1</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>16 s</dd>
</dl>
<h2>Installation size</h2>
<p>Total: 589 K</p>
<ul>
<li>77 K <code>../ocaml-base-compiler.4.09.0/lib/coq/user-contrib/RegExp/Star.vo</code></li>
<li>73 K <code>../ocaml-base-compiler.4.09.0/lib/coq/user-contrib/RegExp/Concat.vo</code></li>
<li>61 K <code>../ocaml-base-compiler.4.09.0/lib/coq/user-contrib/RegExp/Includes.vo</code></li>
<li>44 K <code>../ocaml-base-compiler.4.09.0/lib/coq/user-contrib/RegExp/Includes.glob</code></li>
<li>43 K <code>../ocaml-base-compiler.4.09.0/lib/coq/user-contrib/RegExp/Concat.glob</code></li>
<li>40 K <code>../ocaml-base-compiler.4.09.0/lib/coq/user-contrib/RegExp/Definitions.vo</code></li>
<li>39 K <code>../ocaml-base-compiler.4.09.0/lib/coq/user-contrib/RegExp/Boolean.vo</code></li>
<li>36 K <code>../ocaml-base-compiler.4.09.0/lib/coq/user-contrib/RegExp/Utility.vo</code></li>
<li>31 K <code>../ocaml-base-compiler.4.09.0/lib/coq/user-contrib/RegExp/Char.vo</code></li>
<li>28 K <code>../ocaml-base-compiler.4.09.0/lib/coq/user-contrib/RegExp/Star.glob</code></li>
<li>25 K <code>../ocaml-base-compiler.4.09.0/lib/coq/user-contrib/RegExp/RegExp.vo</code></li>
<li>14 K <code>../ocaml-base-compiler.4.09.0/lib/coq/user-contrib/RegExp/Boolean.glob</code></li>
<li>13 K <code>../ocaml-base-compiler.4.09.0/lib/coq/user-contrib/RegExp/Utility.glob</code></li>
<li>12 K <code>../ocaml-base-compiler.4.09.0/lib/coq/user-contrib/RegExp/Definitions.glob</code></li>
<li>10 K <code>../ocaml-base-compiler.4.09.0/lib/coq/user-contrib/RegExp/Concat.v</code></li>
<li>10 K <code>../ocaml-base-compiler.4.09.0/lib/coq/user-contrib/RegExp/Includes.v</code></li>
<li>10 K <code>../ocaml-base-compiler.4.09.0/lib/coq/user-contrib/RegExp/Star.v</code></li>
<li>5 K <code>../ocaml-base-compiler.4.09.0/lib/coq/user-contrib/RegExp/Boolean.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.09.0/lib/coq/user-contrib/RegExp/Definitions.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.09.0/lib/coq/user-contrib/RegExp/Utility.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.09.0/lib/coq/user-contrib/RegExp/Char.glob</code></li>
<li>2 K <code>../ocaml-base-compiler.4.09.0/lib/coq/user-contrib/RegExp/RegExp.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.09.0/lib/coq/user-contrib/RegExp/Char.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.09.0/lib/coq/user-contrib/RegExp/RegExp.glob</code></li>
</ul>
<h2>Uninstall</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq-regexp.8.7.0</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.09.0-2.0.5/released/8.7.1+1/regexp/8.7.0.html | HTML | mit | 9,505 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>markov: 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.0 / markov - 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>
markov
<small>
8.8.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2021-12-07 06:33:16 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-12-07 06:33:16 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.0 Formal proof management system
num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.07.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.07.1 Official release 4.07.1
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/markov"
license: "GNU Lesser Public License"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/Markov"]
depends: [
"ocaml"
"coq" {>= "8.8" & < "8.9~"}
]
tags: [
"keyword: probability"
"keyword: Markov"
"keyword: Lebesgue integral"
"keyword: sigma algebras"
"keyword: measurability"
"keyword: Borel"
"category: Mathematics/Real Calculus and Topology"
"date: 2008-01-5"
]
authors: [ "Robert Kam <rkam2001@hotmail.com> [none]" ]
bug-reports: "https://github.com/coq-contribs/markov/issues"
dev-repo: "git+https://github.com/coq-contribs/markov.git"
synopsis: "Markov's inequality"
description:
"A proof of Markov's inequality, restricted to probability spaces, based on the Wikipedia proof. Defines Lebesgue integral and associated concepts such as measurability, measure functions, and sigma algebras. Extended real numbers did not need to be defined because we are working in a probability space with measure 1. Nonconstructive; uses classic, Extensionality_Ensembles, axiomatized real numbers from Coq standard library."
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/markov/archive/v8.8.0.tar.gz"
checksum: "md5=9d723716490b0b2fdd98ddf0c99146a8"
}
</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-markov.8.8.0 coq.8.10.0</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.0).
The following dependencies couldn't be met:
- coq-markov -> coq < 8.9~ -> 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-markov.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.07.1-2.0.6/released/8.10.0/markov/8.8.0.html | HTML | mit | 7,285 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>traversable-fincontainer: 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 / traversable-fincontainer - 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>
traversable-fincontainer
<small>
8.10.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-01-13 08:04:05 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-01-13 08:04:05 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.10.2 The OCaml compiler (virtual package)
ocaml-base-compiler 4.10.2 Official release 4.10.2
ocaml-config 1 OCaml Switch Configuration
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: "Hugo.Herbelin@inria.fr"
homepage: "https://github.com/oconnorr/traversable-fincontainer"
license: "ASL"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/TraversableFincontainer"]
depends: [
"ocaml"
"coq" {>= "8.10" & < "8.11~"}
]
tags: [
"keyword: finitary container"
"keyword: traversable functors"
"category: Computer Science/Data Types and Data Structures"
]
authors: [
"Russell O'Connor <oconnorr@google.com>"
]
bug-reports: "https://github.com/coq-contribs/traversable-fincontainer/issues"
dev-repo: "git+https://github.com/coq-contribs/traversable-fincontainer.git"
synopsis: "Traversable Functors are Finitary Containers"
description: """
A Coq proof that all Traversable functors are isomorphic to finitary containers."""
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/traversable-fincontainer/archive/v8.10.0.tar.gz"
checksum: "md5=2d2b3b18f46d2d11651ba6022fefb71b"
}
</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-traversable-fincontainer.8.10.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-traversable-fincontainer -> coq < 8.11~ -> 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-traversable-fincontainer.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.10.2-2.0.6/released/8.13.1/traversable-fincontainer/8.10.0.html | HTML | mit | 7,119 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>ppsimpl: 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.8.1 / ppsimpl - 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>
ppsimpl
<small>
8.10.0
<span class="label label-info">Not compatible</span>
</small>
</h1>
<p><em><script>document.write(moment("2020-09-01 14:15:30 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2020-09-01 14:15:30 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.12 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-m4 1 Virtual package relying on m4
coq 8.8.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.8.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "frederic.besson@inria.fr"
homepage: "http://ppsimpl.gforge.inria.fr/"
dev-repo: "git+https://scm.gforge.inria.fr/anonscm/git/ppsimpl/ppsimpl.git"
authors: ["Frédéric Besson"]
bug-reports: "frederic.besson@inria.fr"
license: "LGPL 3"
build: [
["./configure"]
[make "-j%{jobs}%"]
]
install: [
[make "install"]
]
depends: [
"ocaml"
"coq" {>= "8.10" & < "8.11~"}
"coq-bignums" {>= "8.10" & < "8.11~"}
]
depopts: [ "coq-flocq" "coq-mathcomp-ssreflect" ]
tags: [
"keyword:integers" "keyword:arithmetic" "keyword:automation"
"category:Miscellaneous/Coq Extensions"
"logpath:PP"
]
synopsis: "Ppsimpl is a reflexive tactic for canonising (arithmetic) goals"
url {
src: "https://gforge.inria.fr/frs/download.php/file/38179/ppsimpl-17-10-2019.tar.gz"
checksum: "md5=db2cc823e6d4cd53e9429cef7af34d10"
}
</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-ppsimpl.8.10.0 coq.8.8.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.8.1).
The following dependencies couldn't be met:
- coq-ppsimpl -> coq >= 8.10
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-ppsimpl.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">
<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.05.0-2.0.6/released/8.8.1/ppsimpl/8.10.0.html | HTML | mit | 6,886 |
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<style>
body{margin: 0;padding: 0;position: relative;}
.wrap{width: 100%;overflow: hidden;}
.list{width: 140%;line-height: 100px;border-bottom: 1px solid red;cursor: pointer;
position: relative;}
.addList{transition: all 0.5s ease;-webkit-transition: all 0.5s ease;}
.list:after{content: "";display: block;clear: both;}
.con{float: left;background: black;color: white;}
.hid{position: relative;overflow: hidden;background: sandybrown;}
</style>
</head>
<body>
<div class="wrap">
<div class="list" id="list1" ontouchstart="down(event,'list1')">
<div class="con">1111</div>
<div class="hid">dd</div>
</div>
<div class="list" id="list2" ontouchstart="down(event,'list2')"><div class="con">1111</div>
<div class="hid">dd</div></div>
<div class="list" id="list3" ontouchstart="down(event,'list3')">
<div class="con">2222222222</div>
<div class="hid">dd</div>
</div>
<div class="list" id="list4" ontouchstart="down(event,'list4')">
<div class="con">444444444444</div>
<div class="hid">dd</div>
</div>
<div class="list" id="list5" ontouchstart="down(event,'list5')">
<div class="con">55555555555555</div>
<div class="hid">dd</div>
</div>
<div class="list" id="list6" ontouchstart="down(event,'list6')">
<div class="con">234234234</div>
<div class="hid">dd</div>
</div>
<div class="list" id="list7" ontouchstart="down(event,'list7')">
<div class="con">234234</div>
<div class="hid">dd</div>
</div>
<div class="list" id="list8" ontouchstart="down(event,'list8')">
<div class="con">4234234</div>
<div class="hid">dd</div>
</div>
<div class="list" id="list9" ontouchstart="down(event,'list9')">
<div class="con">24234</div>
<div class="hid">dd</div>
</div>
</div>
<script>
window.onload = function(){
var dom = document.documentElement.clientWidth;
var con = document.getElementsByClassName("con");
for(var i=0 ; i<con.length ; i++){
con[i].setAttribute("style","width:"+dom+"px");
}
}
var _t = false;//控制器
var x=0;
var y=0;//记录初始的x--y
var mx = 0;
var my = 0;//移动的坐标
var s = -1;//0为上下滚动 1为左右滑动
var id = "";
var hid_width_left = 0;//滑出节点的width--左滑动
var hid_width_right = 0;//右滑动
var has_slide = false;//判断是否有节点滑出--默认false
function down(e,d){
if(has_slide==true){
if(id!=d){
var domid = document.getElementById(id);
domid.setAttribute("class","list addList");
var str = "transform:translateX("+hid_width_right+"px);";
str+= "-webkit-transform:translateX("+hid_width_right+"px);";
str+= "-moz-transform:translateX("+hid_width_right+"px);";
domid.setAttribute("style",str);
setTimeout(function(){
var domid = document.getElementById(id);
domid.setAttribute("class","list");
domid.setAttribute("style","");
document.getElementsByTagName("body")[0].setAttribute("style","")
has_slide=false;
},500)//删除样式
}
return false;
}
_t=true;
x = e.touches[0].clientX;
y = e.touches[0].clientY;
id=d;
hid_width_left = -(document.getElementById(id).getElementsByClassName("hid")[0].clientWidth);
console.log(e.touches[0]);
e.path[1].addEventListener("touchmove",move,false);
e.path[1].addEventListener("touchend",up,false);
}
function move(e){
if(_t==true){
mx = e.touches[0].clientX;
my = e.touches[0].clientY;//记录移动的x--y
var chax = -(x-mx);
if(s==-1){
var abschax = Math.abs(chax);
var abschay = Math.abs(y-my);
if(abschay>15){
s=0;
}
if(abschax>15){
s=1;
document.getElementsByTagName("body")[0].setAttribute("style","position: relative;width: 100%;overflow: hidden;")
console.log(e);
}
}
if(s==1){
if(chax<=hid_width_left){
chax=hid_width_left;
}
if(chax>hid_width_right){
chax=hid_width_right;
}
var domid = document.getElementById(id);
var str = "transform:translateX("+chax+"px);";
str+= "-webkit-transform:translateX("+chax+"px);";
str+= "-moz-transform:translateX("+chax+"px);";
domid.setAttribute("style",str)
}
}
}
function up(e){
_t=false;
if(s==1){
var chax = -(x-mx);
if(chax<(hid_width_left/2)){
var domid = document.getElementById(id);
domid.setAttribute("class","list addList");
var str = "transform:translateX("+hid_width_left+"px);";
str+= "-webkit-transform:translateX("+hid_width_left+"px);";
str+= "-moz-transform:translateX("+hid_width_left+"px);";
domid.setAttribute("style",str)
has_slide=true;
}else{
var domid = document.getElementById(id);
domid.setAttribute("class","list addList");
var str = "transform:translateX("+hid_width_right+"px);";
str+= "-webkit-transform:translateX("+hid_width_right+"px);";
str+= "-moz-transform:translateX("+hid_width_right+"px);";
domid.setAttribute("style",str);
document.getElementsByTagName("body")[0].setAttribute("style","")
}
}
setTimeout(function(){
var domid = document.getElementById(id);
domid.setAttribute("class","list");
if(has_slide==false){
domid.setAttribute("style","");
}
},500)//删除样式
s=-1//初始化---下次滑动再次启动
}
</script>
<!--改为pc端-->
<!--<div class="wrap">
<div class="list" id="list1" ontouchstart="down(event)">1111111111</div>
<div class="list" id="list2" ontouchstart="down(event)">1111111111</div>
<div class="list" id="list3" ontouchstart="down(event)">1111111111</div>
<div class="list" id="list4" ontouchstart="down(event)">1111111111</div>
<div class="list" id="list5" ontouchstart="down(event)">1111111111</div>
<div class="list" id="list6" ontouchstart="down(event)">1111111111</div>
<div class="list" id="list7" ontouchstart="down(event)">1111111111</div>
</div>
<script>
var _t = false;//控制器
var x=0;
var y=0;//记录初始的x--y
var s = -1;//0为上下滚动 1为左右滑动
var id = "";
function down(e){
_t=true;
x = e.clientX;
y = e.clientY;
id=e.path[0].id;
console.log(e,id);
e.path[1].addEventListener("touchmove",move,false);
e.path[1].addEventListener("touchup",up,false);
}
function move(e){
if(_t==true){
var mx = e.clientX;
var my = e.clientY;//记录移动的x--y
var chax = -(x-mx);
if(s==-1){
var abschax = Math.abs(chax);
var abschay = Math.abs(y-my);
if(abschay>15){
s=0;
}
if(abschax>15){
s=1;
}
}
if(s==1){
var domid = document.getElementById(id);
domid.setAttribute("style","left:"+chax+"px")
}
console.log(abschax,abschay);
}
}
function up(e){
_t=false;
console.log(22)
}
</script>-->
</body>
</html>
| albb1002/new_test | move.html | HTML | mit | 7,336 |
<!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.12"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>BeyondHooperville: Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="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>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">BeyondHooperville
</div>
<div id="projectbrief">A Village Ecodynamics Project simulation</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.12 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "search",false,'Search');
</script>
<script type="text/javascript" src="menudata.js"></script>
<script type="text/javascript" src="menu.js"></script>
<script type="text/javascript">
$(function() {
initMenu('',true,false,'search.php','Search');
$(document).ready(function() { init_search(); });
});
</script>
<div id="main-nav"></div>
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>com</b></li><li class="navelem"><b>mesaverde</b></li><li class="navelem"><b>groups</b></li><li class="navelem"><a class="el" href="classcom_1_1mesaverde_1_1groups_1_1_beyond_merge_fight.html">BeyondMergeFight</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="headertitle">
<div class="title">com.mesaverde.groups.BeyondMergeFight Member List</div> </div>
</div><!--header-->
<div class="contents">
<p>This is the complete list of members for <a class="el" href="classcom_1_1mesaverde_1_1groups_1_1_beyond_merge_fight.html">com.mesaverde.groups.BeyondMergeFight</a>, including all inherited members.</p>
<table class="directory">
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>attemptMergeOrFight</b>(BeyondGroup a, BeyondGroup b) (defined in <a class="el" href="classcom_1_1mesaverde_1_1groups_1_1_beyond_merge_fight.html">com.mesaverde.groups.BeyondMergeFight</a>)</td><td class="entry"><a class="el" href="classcom_1_1mesaverde_1_1groups_1_1_beyond_merge_fight.html">com.mesaverde.groups.BeyondMergeFight</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>BeyondMergeFight</b>(BeyondHooperMaster myHooper) (defined in <a class="el" href="classcom_1_1mesaverde_1_1groups_1_1_beyond_merge_fight.html">com.mesaverde.groups.BeyondMergeFight</a>)</td><td class="entry"><a class="el" href="classcom_1_1mesaverde_1_1groups_1_1_beyond_merge_fight.html">com.mesaverde.groups.BeyondMergeFight</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>considerFightFromAToB</b>(BeyondGroup a, BeyondGroup b) (defined in <a class="el" href="classcom_1_1mesaverde_1_1groups_1_1_beyond_merge_fight.html">com.mesaverde.groups.BeyondMergeFight</a>)</td><td class="entry"><a class="el" href="classcom_1_1mesaverde_1_1groups_1_1_beyond_merge_fight.html">com.mesaverde.groups.BeyondMergeFight</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>findAlliance</b>(BeyondGroup a, BeyondGroup b) (defined in <a class="el" href="classcom_1_1mesaverde_1_1groups_1_1_beyond_merge_fight.html">com.mesaverde.groups.BeyondMergeFight</a>)</td><td class="entry"><a class="el" href="classcom_1_1mesaverde_1_1groups_1_1_beyond_merge_fight.html">com.mesaverde.groups.BeyondMergeFight</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>getFight</b>() (defined in <a class="el" href="classcom_1_1mesaverde_1_1groups_1_1_beyond_merge_fight.html">com.mesaverde.groups.BeyondMergeFight</a>)</td><td class="entry"><a class="el" href="classcom_1_1mesaverde_1_1groups_1_1_beyond_merge_fight.html">com.mesaverde.groups.BeyondMergeFight</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>getHooper2</b>() (defined in <a class="el" href="classcom_1_1mesaverde_1_1groups_1_1_beyond_merge_fight.html">com.mesaverde.groups.BeyondMergeFight</a>)</td><td class="entry"><a class="el" href="classcom_1_1mesaverde_1_1groups_1_1_beyond_merge_fight.html">com.mesaverde.groups.BeyondMergeFight</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>getMerge</b>() (defined in <a class="el" href="classcom_1_1mesaverde_1_1groups_1_1_beyond_merge_fight.html">com.mesaverde.groups.BeyondMergeFight</a>)</td><td class="entry"><a class="el" href="classcom_1_1mesaverde_1_1groups_1_1_beyond_merge_fight.html">com.mesaverde.groups.BeyondMergeFight</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>offerMergeFromAToB</b>(BeyondGroup a, BeyondGroup b) (defined in <a class="el" href="classcom_1_1mesaverde_1_1groups_1_1_beyond_merge_fight.html">com.mesaverde.groups.BeyondMergeFight</a>)</td><td class="entry"><a class="el" href="classcom_1_1mesaverde_1_1groups_1_1_beyond_merge_fight.html">com.mesaverde.groups.BeyondMergeFight</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>setFight</b>(BeyondFight fight) (defined in <a class="el" href="classcom_1_1mesaverde_1_1groups_1_1_beyond_merge_fight.html">com.mesaverde.groups.BeyondMergeFight</a>)</td><td class="entry"><a class="el" href="classcom_1_1mesaverde_1_1groups_1_1_beyond_merge_fight.html">com.mesaverde.groups.BeyondMergeFight</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>setHooper2</b>(BeyondHooperMaster hooper2) (defined in <a class="el" href="classcom_1_1mesaverde_1_1groups_1_1_beyond_merge_fight.html">com.mesaverde.groups.BeyondMergeFight</a>)</td><td class="entry"><a class="el" href="classcom_1_1mesaverde_1_1groups_1_1_beyond_merge_fight.html">com.mesaverde.groups.BeyondMergeFight</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>setMerge</b>(BeyondMerge merge) (defined in <a class="el" href="classcom_1_1mesaverde_1_1groups_1_1_beyond_merge_fight.html">com.mesaverde.groups.BeyondMergeFight</a>)</td><td class="entry"><a class="el" href="classcom_1_1mesaverde_1_1groups_1_1_beyond_merge_fight.html">com.mesaverde.groups.BeyondMergeFight</a></td><td class="entry"></td></tr>
</table></div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.12
</small></address>
</body>
</html>
| crowcanyon/vep_sim_beyondhooperville | docs/classcom_1_1mesaverde_1_1groups_1_1_beyond_merge_fight-members.html | HTML | mit | 7,685 |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Res Hall Test - Walk Controls - Three.js</title>
<link rel="stylesheet" href="css/stylesheet.css" type="text/css" media="screen" charset="utf-8" />
<link href="css/bootstrap-responsive.min.css" rel="stylesheet" media="screen"/>
<script src="js/jquery_v1.9.1.js" type="text/javascript"></script>
<script src="../build/three.min.js"></script>
<script src="js/Detector.js"></script>
<script src="js/controls/WalkControls.js"></script>
</head>
<body>
<article class ="trophyIcon">
<section>
<div id = "trophy"></div>
<!-- <input type="button" id="toggleTrophy" value="toggle" /> -->
</section>
</article>
<article class ="mapIcon">
<section>
<div id = "map"></div>
<!-- <input type="button" id="toggleMap" value="toggle" /> -->
</section>
</article>
<article class ="pauseIcon">
<section>
<div id = "pause"></div>
<!-- <input type="button" id="togglePause" value="toggle" /> -->
</section>
</article>
<article class ="soundIcon">
<section>
<div id = "sound"></div>
<!-- <input type="button" id="toggleSound" value="toggle" /> -->
</section>
</article>
<article class ="navKeyIcon">
<section>
<div id = "navKey"></div>
<!-- <input type="button" id="toggleKey" value="toggle" /> -->
</section>
</article>
<div id="blocker">
<div id="instructions">
<span style="font-size:50px">Click to Play</span><br />
W, A, S, D or ← ↑ → ↓ = Move<br />
Esc, P = Pause, Right Mouse = Look
</div>
</div>
<script type="text/javascript">
//Jquery Code:
$(document).ready(function() {
$('#toggleTrophy').click(function()
{
$('#trophy').slideToggle('slow'); });
$('#toggleMap').click(function()
{
$('#map').slideToggle('slow'); });
$('#togglePause').click(function()
{
$('#pause').slideToggle('slow'); });
$('#toggleSound').click(function()
{
$('#sound').slideToggle('slow'); });
$('#toggleKey').click(function()
{
$('#navKey').slideToggle('slow'); });
//Threejs Code:
var camera, scene, renderer;
var geometry, material, mesh;
var controls, time = Date.now();
var projector, items = [];
if ( !Detector.webgl ) {
controls.enabled = false;
Detector.addGetWebGLMessage();
} else {
blocker.addEventListener( 'click', function ( event ) {
controls.enabled = true;
document.getElementById( 'blocker' ).style.display = 'none';
document.getElementById( 'instructions' ).style.display = 'none';
}, false );
}
init();
animate();
function init() {
camera = new THREE.PerspectiveCamera( 90, window.innerWidth / window.innerHeight, 1, 1200 );
scene = new THREE.Scene();
scene.fog = new THREE.Fog( 0x000000, 0, 1200 );
var light = new THREE.DirectionalLight( 0xffffff, 1.5 );
light.position.set( 1, 1, 1 );
scene.add( light );
var light = new THREE.DirectionalLight( 0xffffff, 0.75 );
light.position.set( -1, - 0.5, -1 );
scene.add( light );
controls = new THREE.WalkControls( camera );
scene.add( controls.getObject() );
// model
var loader = new THREE.JSONLoader();
var callbackModel = function ( geometry, materials ) {
/*material = new THREE.MeshLambertMaterial( materials );
material.side = THREE.DoubleSide;
material.transparent = true;
material.opacity = 0.5; */
material = new THREE.MeshFaceMaterial( materials );
material.transparent = true; //Not working
mesh = new THREE.Mesh( geometry, material );
scene.add( mesh );
};
loader.load( "models/reshall/ResHall.js", callbackModel );
// items
geometry = new THREE.CubeGeometry( 6, 6, 6 );
material = new THREE.MeshLambertMaterial ( { color: 0x228B22 } );
mesh = new THREE.Mesh( geometry, material );
mesh.position.set( -509, 51, -461 );
scene.add( mesh );
items.push( mesh );
mesh = new THREE.Mesh( geometry, material );
mesh.position.set(-485, 51, -485 );
scene.add( mesh );
items.push( mesh );
mesh = new THREE.Mesh( geometry, material );
mesh.position.set( -461, 51, -509 );
scene.add( mesh );
items.push( mesh );
//
projector = new THREE.Projector();
renderer = new THREE.WebGLRenderer();
renderer.sortObjects = false;
renderer.setSize( window.innerWidth, window.innerHeight );
renderer.setClearColor( scene.fog.color, 1 );
document.body.appendChild( renderer.domElement );
//
window.addEventListener( 'resize', onWindowResize, false );
}
function onWindowResize() {
camera.aspect = window.innerWidth / window.innerHeight;
camera.updateProjectionMatrix();
renderer.setSize( window.innerWidth, window.innerHeight );
}
function animate() {
requestAnimationFrame( animate );
controls.update( Date.now() - time );
renderer.render( scene, camera );
time = Date.now();
}
});
</script>
</body>
</html>
| pmerrity/BlueHouse.js | examples/reshall_test_walk.html | HTML | mit | 5,408 |
<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="fmt0table"><tr><th class="zt1"><b><font class=""></font></b></th><td class="zc1">恣心所欲</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/2254-33.html | HTML | mit | 571 |
<template>
<template is="dom-bind">
<p class="lead">JSON's primitive value type <code>string</code> can be mapped directly to HTML form <code>textarea</code>.</p>
<label class="control-label">{{model.BioReaction}}</label>
<textarea value="{{model.Bio$::input}}" class="form-control" rows="3"></textarea>
</template>
</template>
| Jgholmstrom/KitchenSinkEdit | src/KitchenSink/wwwroot/KitchenSink/TextareaPage.html | HTML | mit | 349 |
{% extends "registration/base.html" %}
{% load bootstrap %}
{% load fontawesome %}
{% load i18n %}
{% block content %}
{% include 'home/navbar.html' %}
<!-- Marketing messaging and featurettes
================================================== -->
<!-- Wrap the rest of the page in another container to center all the content. -->
<div class="container marketing">
<hr class="featurette-divider">
<h2 style="max-width: 330px; padding: 15px; margin: 0 auto;">{% trans "로그인" %}</h2>
{% if form.errors %}
<p>ID나 비밀번호가 일치하지 않습니다.</p>
{% endif %}
<form method="POST" action="{% url 'login' %}" style="max-width: 330px; padding: 15px; margin: 0 auto;">
{% csrf_token %}
{{ form.as_p }}
<input type="hidden" name="next" value="/" />
<button class="btn btn-primary" type="submit">로그인</button>
</form>
<br>
<br>
<h2 style="max-width: 330px; padding: 15px; margin: 0 auto;">{% trans "소셜 로그인" %}</h2>
<div style="">
<a href="{% url "social:begin" "google-oauth2" %}">
<img class="icon icons8-Google-Plus" src="/static/img/register/google-plus.png" width="48" height="48">
</a>
<a href="{% url "social:begin" "facebook" %}">
<img class="icon icons8-Facebook" src="/static/img/register/facebook.png" width="48" height="48">
</a>
<a href="{% url "social:begin" "twitter" %}" class="btn ">
<img class="icon icons8-Twitter" src="/static/img/register/twitter.png" width="48" height="48">
</a>
</div>
</div><!-- /.container -->
{% include 'home/footer.html' %}
{% endblock %}
| yeongseon/django_beautifulseodang | templates/registration/login.html | HTML | mit | 1,677 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="zh-TW">
<head>
<title>æè²é¨ãæèªå
¸ã</title>
<meta http-equiv="Pragma" content="no-cache">
<meta name="AUTHOR" content="FlySheet Information Services, Inc.">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel=stylesheet type="text/css" href="/cydic/styles.css?v=1331799287.0">
</head>
<body bgcolor=snow >
<form method=post name=main action="/cgi-bin/cydic/gsweb.cgi">
<script language=JavaScript src="/cydic/prototype.js?v=1234435343.0"></script>
<script language=JavaScript src="/cydic/swfobject.js?v=1215332700.0"></script>
<script language=JavaScript src="/cydic/dicsearch.js?v=1306830621.0"></script>
<script language=JavaScript src="/cydic//yui/yui2.3.0/build/yahoo-dom-event/yahoo-dom-event.js"></script>
<script language=JavaScript src="/cydic/cydicpage/mycookie.js?v=1247566755.0"></script>
<link rel="stylesheet" type="text/css" href="/cydic/cydicpage/cyt.css?v=1398321301.0" />
<link rel="stylesheet" type="text/css" href="/cydic/fontcss.css?v=1301307888.0" />
<link rel="stylesheet" type="text/css" href="/cydic/fulu_f.css?v=1298448600.0" />
<script type="text/javascript">
<!--
function MM_swapImgRestore() { //v3.0
var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}
function MM_preloadImages() { //v3.0
var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}
function MM_findObj(n, d) { //v4.01
var p,i,x; if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
if(!x && d.getElementById) x=d.getElementById(n); return x;
}
function MM_swapImage() { //v3.0
var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}
//-->
</script>
<input type=hidden name="o" value="e0">
<input type=hidden name="ccd" value="xxxxxx">
<input type=hidden name="sec" value="sec3">
<SCRIPT language=JavaScript1.1>
<!--
exiturl = "1";
var showcountdown = ""
var exitalerturl = "/cydic/index.htm";
exitalertmsg = "å æ¨éç½®è¶
é30åéï¼ç³»çµ±å·²èªåç»åºï¼æ¡è¿å次ç»å
¥ä½¿ç¨ãè«æä¸ã確å®ãå系統é¦é ï¼ææãåæ¶ãééè¦çªã";
var secondsleft = 30 * 60;
var showntimeout = false; // has the alert been shown?
var timewin; // handle for the timeout warning window
var remind = 5 * 60; // remind user when this much time is left
function fsUnload() {
cleartimeout();
// BEGIN: FSPage plugin for the JS-onUnload() event.
// END: FSPage plugin for the JS-onUnload() event.
}
function cleartimeout() {
if ((timewin != null) && !(timewin.closed))
timewin.close();
}
function showtimeout() {
if (secondsleft <= 0){
if (exiturl != ""){
if (exitalertmsg!=""){
if (confirm(exitalertmsg)){
window.location.href = exitalerturl;
}
else{
window.close();
}
}
else{
parent.location.href = exiturl;
}
}
//self.close();
return;
}
if (showntimeout == false && secondsleft > 0 && secondsleft <= remind) {
}
var minutes = Math.floor (secondsleft / 60);
var seconds = secondsleft % 60;
if (seconds < 10)
seconds = "0" + seconds;
if (showcountdown){
window.status = toLatin("last time:" + minutes + ":" + seconds);
}
var period = 1;
setTimeout("showtimeout()", period*1000);
secondsleft -= period;
}
// -->
window.onload = function (){
showtimeout();
}
</SCRIPT>
<script language="JavaScript"> var _version = 1.0 </script>
<script language="JavaScript1.1"> _version = 1.1 </script>
<script language="JavaScript1.2"> _version = 1.2 </script>
<script language="JavaScript1.1">
function toLatin(x) {
if (_version >= 1.2 && ("zh" == "fr" || "zh" == "es")) {
var pattern = new RegExp("&#([0-9]+);");
while ((result = pattern.exec(x)) != null) {
x = x.replace(result[0], String.fromCharCode(RegExp.$1));
}
x = x.replace(/ /g, ' ');
}
return (x);
}
</script>
<div id="pageall">
<div id="gamelink">
<a href="/cydic/flash/game/flash001/game.html" target="_blank" title="æèªéæ²">æèªéæ²</a>
<a href="/cydic/flash/game/flash002/game2.html" target="_blank" title="æèªéæ²">æèªéæ²</a>
</div>
<div id="top">
<h1><a href="/cgi-bin/cydic/gsweb.cgi?ccd=xxxxx&o=e0&func=diccydicfunc.cydicexit" title="æè²é¨æèªå
¸"><img src="/cydic/images/logo_text.jpg" alt="æè²é¨æèªå
¸" align="left" /></a></a></h1>
<p>
<span class="map">
<a href="/cgi-bin/cydic/gsweb.cgi?ccd=xxxxx&o=e0&sec=sec10&init=1&active=webguide" title="ç¶²ç«å°è¦½">ç¶²ç«å°è¦½</a>â
<a href="/cgi-bin/cydic/gsweb.cgi?ccd=xxxxx&o=e0&func=diccydicfunc.cydic_switch" title="åæç">åæç</a>
</span>
<span class="een"> <a href="/cgi-bin/cydic/gsweb.cgi?ccd=xxxxx&o=e0&&sec=sec1&index=1&active=index&switchlanguage=eng" title="ENGLISH VERSION"></a></span>
</p>
<ul>
<li><a title="3a up ins" accessKey="u" href="#" style="position: absolute;top: 10px; left:-30px;color:#E6D29F;" >
<font class="fontcenter">:::</font></a></li>
<li class="link1"><a href="/cgi-bin/cydic/gsweb.cgi?ccd=xxxxx&o=e0&func=diccydicfunc.cydicexit" title="é¦é ">é¦é </a></li>
<li class="link2"><a href="/cydic/userguide/userguide1/userguide_top.htm" title="使ç¨èªªæ" target=_blank>使ç¨èªªæ</a></li>
<li class="link3"><a href="/cgi-bin/cydic/gsweb.cgi?ccd=xxxxx&o=e0&sec=sec8&init=1&active=editor" title="編輯說æ">編輯說æ</a></li>
<li class="link4"><a href="/cgi-bin/cydic/gsweb.cgi?ccd=xxxxx&o=e0&sec=sec6&ducfulu=1&init=1&active=dicfulu&dicfululv1=1" title="è¾å
¸éé">è¾å
¸éé</a></li>
<li class="link5"><a href="/cgi-bin/cydic/gsweb.cgi?ccd=xxxxx&o=e0&sec=sec7&active=qadb&brwtype=browse&brwval=id%3D%27QR%2A%27&disparea=QR&init=1" title="常è¦åé¡">常è¦åé¡</a></li>
</ul>
</div>
<!-- top -->
<div id="menu">
<ul>
<a title="3a menu ins" accessKey="m" href="#" style="position: absolute;top: 40px; left:-30px;color:#969C32;" >
<font class="fontcenter">:::</font></a><li><a href="/cgi-bin/cydic/gsweb.cgi?ccd=xxxxx&o=e0&&sec=sec1&index=1&active=index" class="m1clk" title="åºæ¬æª¢ç´¢"></a></li>
<li class="m2" title="é²é檢索"><a href="/cgi-bin/cydic/gsweb.cgi?ccd=xxxxx&o=e0&&sec=sec3&op=ma&init=1&advance=1&active=advance">é²é檢索</a></li>
<li class="m3" title="ééæª¢ç´¢"><a href="/cgi-bin/cydic/gsweb.cgi?ccd=xxxxx&o=e0&sec=sec4&fulu=1&init=1&active=fulu">ééæª¢ç´¢</a></li>
<li class="m4" title="é»åæ¸ç覽"><a href="/cgi-bin/cydic/gsweb.cgi?ccd=xxxxx&o=e0&sec=sec5&ebook=1&init=1&active=ebook">é»åæ¸ç覽</a></li>
</ul>
</div>
<a title="3a center ins" accessKey="c" href="#" style="position: absolute;color:red;" >
<font class="fontcenter">:::</font></a>
<div id="contents">
<div id="contents2">
<div class="search">
<input name="basicopt" id="basicopt1" type="radio" value="1" checked/>
<font class="chi_12">æèªæª¢ç´¢</font>
<input name="basicopt" id="basicopt2" type="radio" value="2" />
<font class="chi_12">ç¾©é¡æª¢ç´¢<font>
<input type="text" name="qs0" id="qs0" size="10" class="s1b" onKeypress="return dealsubmitsearch(event, '0', 'qs0', 'è«è¼¸å
¥æª¢ç´¢å串ï¼')" onclick="this.focus();"
onmouseover="this.focus();" onfocus="this.focus();" />
<input name="input" type="submit" class="s2f" value="檢索" onclick="return cydic_basic_cksearch(event, '0', 'qs0', 'è«è¼¸å
¥æª¢ç´¢å串', 'è«è¼¸å
¥æª¢ç´¢åè©ï¼å¯æé
ç¬¦èæª¢ç´¢/è«éµå
¥æèªèªç¾©é¡å¥');;" onKeypress="" />
</div>
<!-- div search -->
<div class="prbtnbar"><table cellspacing=0 cellpadding=2 align=right summary="system htm table"><tr> <td><label for=browse></label><input type=image border=0 align=top hspace=0 style="cursor:hand" alt="æ¨é¡ç覽" onMouseOver="mover(event)" onMouseOut="mout(0,event)" onblur="mout(0,event)" onfocus="mover(event)" name=browse id="browse" src="/cydic/images/browse.gif"></td></tr></table></div>
<table class="fmt0table">
<tr><td colspan=2>
<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"><div class="layoutclass_first"><table class="tableoutfmt2"><tr><th class="std1"><b>æèª </b></th><td class="std2"><font class=inverse>èå¼µè²å¢</font></td></tr>
<tr><th class="std1"><b>æ³¨é³ </b></th><td class="std2">ãã©ããã¤ããã¥ãã<sup class="subfont">Ë</sup></td></tr>
<tr><th class="std1"><b>æ¼¢èªæ¼é³ </b></th><td class="std2"><font class="english_word">xÅ« zhÄng shÄng shì</font></td></tr>
<tr><th class="std1"><b>é義 </b></th><td class="std2"></font> æ
æèªå¤§è²å¨ï¼å¼µææ°£å¢ï¼ç¨ä»¥åé»ä»äººãèªæ¬ãä¸åå¿ï¼å·ä¹ï¼éæ¸ï¼è«¸å¤ä¾¯æ¹å³ï¼æ¹ä¼ãã</font></td></tr>
</td></tr></table></div> <!-- layoutclass_first --><div class="layoutclass_second"><h5 class="btitle2">èå¼µè²å¢</h5>
<div class="leftm"><ul><li class="leftm1n"><a href="/cgi-bin/cydic/gsweb.cgi?ccd=xxxxx&o=e0&sec=sec3&op=v&view=90-1&fmt=11" title="é³è®èé義" class=clink></a></li>
<li class="leftm2"><a href="/cgi-bin/cydic/gsweb.cgi?ccd=xxxxx&o=e0&sec=sec3&op=v&view=90-1&fmt=12" title="å
¸æº"></a></li>
<li class="leftm8"><a href="/cgi-bin/cydic/gsweb.cgi?ccd=xxxxx&o=e0&sec=sec3&op=v&view=90-1&fmt=13" title="å
¸æ
說æ"></a></li>
<li class="leftm3"><a href="/cgi-bin/cydic/gsweb.cgi?ccd=xxxxx&o=e0&sec=sec3&op=v&view=90-1&fmt=14" title="æ¸è"></a></li>
<li class="leftm4"><a href="/cgi-bin/cydic/gsweb.cgi?ccd=xxxxx&o=e0&sec=sec3&op=v&view=90-1&fmt=15" title="ç¨æ³èªªæ"></a></li>
<li class="leftm6"><a href="/cgi-bin/cydic/gsweb.cgi?ccd=xxxxx&o=e0&sec=sec3&op=v&view=90-1&fmt=17" title="辨è"></a></li>
<li class="leftm5"><a href="/cgi-bin/cydic/gsweb.cgi?ccd=xxxxx&o=e0&sec=sec3&op=v&view=90-1&fmt=16" title="åè說æ"></a></li>
</ul></div></div> <!-- layoutclass_second --></div> <!-- layoutclass -->
</td></tr>
</table>
<table class="referencetable1">
<tr><td>
æ¬é ç¶²å︰<input type="text" value="http://dict.idioms.moe.edu.tw/cgi-bin/cydic/gsweb.cgi?o=dcydic&schfmt=text&searchid=CW0000000464" size=60 onclick="select()" readonly="">
</td></tr>
</table>
<input type=hidden name=r1 value=1>
<input type=hidden name=op value="v">
<div class="prbtnbar"><table cellspacing=0 cellpadding=2 align=right summary="system htm table"><tr> <td><label for=browse></label><input type=image border=0 align=top hspace=0 style="cursor:hand" alt="æ¨é¡ç覽" onMouseOver="mover(event)" onMouseOut="mout(0,event)" onblur="mout(0,event)" onfocus="mover(event)" name=browse id="browse" src="/cydic/images/browse.gif"></td></tr></table></div>
</div>
<!-- div contents2 -->
<link rel="stylesheet" type="text/css" href="/cydic/yui/yui2.3.0/build/container/assets/skins/sam/container.css?v=1185870262.0" />
<script language=JavaScript src="/cydic/yui/yui2.3.0/build/utilities/utilities.js?v=1185870262.0"></script>
<script language=JavaScript src="/cydic/yui/yui2.3.0/build/button/button-beta.js?v=1185870256.0"></script>
<script language=JavaScript src="/cydic/yui/yui2.3.0/build/container/container.js?v=1185870256.0"></script>
<div id="keybordarea">
</div>
<script type="text/javascript" language="JavaScript">
var inputfield = "qs0"
String.prototype.trim = function() {
return this.replace(/^\s+|\s+$/g,"");
}
function inputkeyb(digit){
var src = document.getElementById(inputfield).value.trim();
var dig = unescape(digit);
//ps("dig", dig);
if (dig =="空ç½"){dig = "ã"}
else if (dig == "ã§"){dig = "ï½"}
///// ³B²z²MÁn³¡¥÷. £»£¹£¬
dotchar = "Ë";
if (dig == "Ë"){
var oldv = document.getElementById(inputfield).value;
oldv = oldv + dotchar;
//ps("oldv", oldv);
pwlst = oldv.split(' ')
newlst = []
for(c=0; c < pwlst.length; c++){
//ps("v", pwlst[c]);
indv = pwlst[c].indexOf('Ë');
if (indv != -1){
var quote = /Ë/g;
val = pwlst[c].replace(quote, "");
newlst.push("Ë"+val);
}
else{
newlst.push(pwlst[c]);
}
}
oldv = newlst.join(' ')
}
///// ¤@¯ë¤è¦¡
else{
var oldv = document.getElementById(inputfield).value;
oldv += dig;
}
document.getElementById(inputfield).focus();
document.getElementById(inputfield).value = oldv;
}
</script>
<div id="line"></div>
<div id="foot">
<span class="logodiv1">
<img src="/cydic/images/stand_unitlogo.png" class="logoimg1" border="0" align="absmiddle">
</span><br>
<a href="http://www.edu.tw/" target="blank">
<img src="/cydic/images/logo.gif" alt="æè²é¨logo" width="46" height="36" align="absmiddle" />
</a>
<span class="ff">ä¸è¯æ°åæè²é¨çæ¬ææ</span><span class="ffeng">©2010 Ministry of Education, R.O.C. All rights reserved.</span>ã<span class="copyright">ç·ä¸ï¼N 仿¥äººæ¬¡ï¼N 總人次ï¼N</span><br><span class="ff"><a href="mailto:april0212@mail.naer.edu.tw"><img src="/cydic/images/mail_f.gif" border=0 alt="mail to our" title="è¯çµ¡æå" ></a>ï½<a href="#">é±ç§æ¬æ¿ç宣å</a>ï½<a href="#">é£çµææ¬è²æ</a>ï½å»ºè°ä½¿ç¨</span><span class="ffeng">IE8.0ãFirefox3.6</span><span class="ff">以ä¸çæ¬ç覽å¨åè§£æåº¦</span><span class="ffeng">1024*768</span>ã<a href="http://www.webguide.nat.gov.tw/enable.jsp?category=20110921092959" title="ç¡éç¤ç¶²ç«" target=_blank><img src="/cydic/images/aplus.jpg" alt="ééA+網路çç´ç¡éç¤ç¶²é 檢è¦" width="88" height="31" align="absmiddle" /></a>
</div>
</div>
<!-- contents -->
<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-44370428-1', 'moe.edu.tw');ga('send', 'pageview');</script>
</div>
<!-- pageall -->
</form>
</body>
</html>
| BuzzAcademy/idioms-moe-unformatted-data | cw-data/0-999/CW0000000464.html | HTML | mit | 16,023 |
<div class="modal fade org_item_modal" id="add_to_organization">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title"></h4>
</div>
<div class="modal-body">
{{ include('add-farm-form.html') }}
{{ include('add-user-form.html') }}
{{ include('../ajax/add-equipment-form.html') }}
{{ include('add-product-form.html') }}
{{ include('add-skill-form.html') }}
{{ include('add-payment-form.html') }}
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal"><span class="glyphicon glyphicon-remove"></span> Close</button>
<button type="button" class="btn btn-primary add"><span class="glyphicon glyphicon-plus"></span> Add</button>
</div>
</div><!-- /.modal-content -->
</div><!-- /.modal-dialog -->
</div><!-- /.modal --> | JamieMcDonnell/admin.plenty.rdthree.com | snippets/add_to_organization.html | HTML | mit | 1,033 |
<!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_45) on Mon Jun 06 13:18:33 PDT 2016 -->
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
<title>Uses of Class org.robolectric.shadows.support.v4.ShadowSwipeRefreshLayout (robolectric-parent 3.1 API)</title>
<meta name="date" content="2016-06-06">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class org.robolectric.shadows.support.v4.ShadowSwipeRefreshLayout (robolectric-parent 3.1 API)";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../org/robolectric/shadows/support/v4/ShadowSwipeRefreshLayout.html" title="class in org.robolectric.shadows.support.v4">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?org/robolectric/shadows/support/v4/class-use/ShadowSwipeRefreshLayout.html" target="_top">Frames</a></li>
<li><a href="ShadowSwipeRefreshLayout.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.robolectric.shadows.support.v4.ShadowSwipeRefreshLayout" class="title">Uses of Class<br>org.robolectric.shadows.support.v4.ShadowSwipeRefreshLayout</h2>
</div>
<div class="classUseContainer">No usage of org.robolectric.shadows.support.v4.ShadowSwipeRefreshLayout</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../org/robolectric/shadows/support/v4/ShadowSwipeRefreshLayout.html" title="class in org.robolectric.shadows.support.v4">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?org/robolectric/shadows/support/v4/class-use/ShadowSwipeRefreshLayout.html" target="_top">Frames</a></li>
<li><a href="ShadowSwipeRefreshLayout.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright © 2016. All rights reserved.</small></p>
</body>
</html>
| robolectric/robolectric.github.io | javadoc/3.1/org/robolectric/shadows/support/v4/class-use/ShadowSwipeRefreshLayout.html | HTML | mit | 4,630 |
<!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/bootstrap/js/plugins/prettify/js/plugins/favicon.ico"/>
<link rel="apple-touch-icon" href="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/js/bootstrap/js/plugins/prettify/js/plugins/iosicon.png"/>
<link rel="stylesheet" href="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/js/bootstrap/js/plugins/prettify/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/bootstrap/js/plugins/prettify/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/bootstrap/js/plugins/prettify/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/bootstrap/js/plugins/prettify/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/bootstrap/js/plugins/prettify/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/bootstrap/js/plugins/prettify/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/bootstrap/js/plugins/prettify/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/bootstrap/js/plugins/prettify/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/bootstrap/js/plugins/prettify/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/bootstrap/js/plugins/prettify/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/bootstrap/js/plugins/prettify/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/bootstrap/js/plugins/prettify/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/bootstrap/js/plugins/prettify/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/bootstrap/js/plugins/prettify/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/bootstrap/js/plugins/prettify/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/bootstrap/js/plugins/prettify/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/bootstrap/js/plugins/prettify/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/bootstrap/js/plugins/prettify/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/bootstrap/js/plugins/prettify/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/bootstrap/js/plugins/prettify/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/bootstrap/js/plugins/prettify/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/bootstrap/js/plugins/prettify/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/bootstrap/js/plugins/prettify/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/bootstrap/js/plugins/prettify/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/bootstrap/js/plugins/prettify/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/bootstrap/js/plugins/prettify/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/bootstrap/js/plugins/prettify/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/bootstrap/js/plugins/prettify/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/bootstrap/js/plugins/prettify/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/bootstrap/js/plugins/prettify/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/bootstrap/js/plugins/prettify/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/bootstrap/js/plugins/prettify/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/bootstrap/js/plugins/prettify/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/bootstrap/js/plugins/prettify/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/bootstrap/js/plugins/prettify/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/bootstrap/js/plugins/prettify/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/bootstrap/js/plugins/prettify/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/bootstrap/js/plugins/prettify/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/bootstrap/js/plugins/prettify/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/bootstrap/js/plugins/prettify/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/bootstrap/js/plugins/prettify/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/bootstrap/js/plugins/prettify/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/bootstrap/js/plugins/prettify/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/bootstrap/js/plugins/prettify/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/bootstrap/js/plugins/prettify/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/bootstrap/js/plugins/prettify/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/bootstrap/js/plugins/prettify/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/bootstrap/js/plugins/prettify/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="elrte.en.js.html#">Sign Up »</a>
<a href="elrte.en.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="elrte.en.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/bootstrap/js/plugins/prettify/js/plugins/elrte.en.js.html | HTML | mit | 15,473 |
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<a class="navbar-brand" href="#">Logo</a>
</div>
<div id="navbar" class="navbar-collapse collapse">
<div class="navbar-right">
<p class="navbar-text">
<login></login>
</p>
</div>
</div><!--/.navbar-collapse -->
</div>
</nav>
<ol class="breadcrumb">
<li><a [routerLink]="['/Courses']">Cources</a></li>
<li>Add new</li>
</ol>
<form class="form-horizontal" [ngFormModel]="addForm">
<div class="form-group">
<label for="" class="col-sm-2 control-label">Title</label>
<div class="col-sm-10">
<input type="text" id="" ngControl="title" class="form-control" required>
</div>
</div>
<div class="form-group">
<label for="" class="col-sm-2 control-label">Description</label>
<div class="col-sm-10">
<textarea id="" ngControl="description" class="form-control" required></textarea>
</div>
</div>
<div class="form-group">
<label for="" class="col-sm-2 control-label">Date</label>
<div class="col-sm-10">
<input type="date" id="" ngControl="date" class="form-control" required>
</div>
</div>
<div class="form-group">
<label for="" class="col-sm-2 control-label">Duration</label>
<div class="col-sm-10">
<input type="text" id="" ngControl="duration" class="form-control" required>
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<button class="btn btn-primary" (click)="addCourse($event, addForm.value)" [disabled]="!addForm.valid" type="submit">Save</button>
<button class="btn btn-danger" [routerLink]="['/Courses']">Cancel</button>
</div>
</div>
</form> | kovalevmax/ang2 | src/app/tpl/add-course.html | HTML | mit | 1,779 |
<!doctype html>
<html lang="en">
<head>
<title>Code coverage report for src/modules/people/components/PersonItem.jsx</title>
<meta charset="utf-8">
<link rel="stylesheet" href="../../../../prettify.css">
<link rel="stylesheet" href="../../../../base.css">
<style type='text/css'>
div.coverage-summary .sorter {
background-image: url(../../../../sort-arrow-sprite.png);
}
</style>
</head>
<body>
<div class="header high">
<h1>Code coverage report for <span class="entity">src/modules/people/components/PersonItem.jsx</span></h1>
<h2>
Statements: <span class="metric">80% <small>(16 / 20)</small></span>
Branches: <span class="metric">66.67% <small>(4 / 6)</small></span>
Functions: <span class="metric">30% <small>(3 / 10)</small></span>
Lines: <span class="metric">78.95% <small>(15 / 19)</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">src/modules/people/components/</a> » PersonItem.jsx</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</td><td class="line-coverage"><span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">6</span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">1</span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">1</span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">1</span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">1</span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">1</span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">1</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-yes">1</span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">1</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>
<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>
<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>
<span class="cline-any cline-yes">1</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>
<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>
<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-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>
<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-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-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-neutral"> </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>
<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-neutral"> </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>
<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>
<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>
<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>
<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>
<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>
<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>
<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>
<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>
<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>
<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>
<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>
<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>
<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-neutral"> </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">"use strict";
var _interopRequire = function (obj) { return obj && obj.__esModule ? <span class="branch-0 cbranch-no" title="branch not covered" >obj["default"] </span>: obj; };
var React = _interopRequire(require("react"));
var Reflux = _interopRequire(require("reflux"));
var PeopleActions = _interopRequire(require("../actions/PeopleActions"));
var FeedbackForm = _interopRequire(require("../../feedback/components/FeedbackForm.jsx"));
var RequestFeedbackButton = _interopRequire(require("../../feedback/components/RequestFeedbackButton.jsx"));
var Modal = _interopRequire(require("react-modal"));
var appElement = document.getElementById("app");
Modal.setAppElement(appElement);
Modal.injectCSS();
var PersonItem = React.createClass({
displayName: "PersonItem",
propTypes: {
firstName: React.PropTypes.string.isRequired,
lastName: React.PropTypes.string.isRequired,
avatarUrl: React.PropTypes.string.isRequired,
isCoworker: React.PropTypes.bool.isRequired,
//showModal: React.PropTypes.func,
id: React.PropTypes.number.isRequired
},
getInitialState: function getInitialState() {
return { modalIsOpen: false };
},
initialize: <span class="fstat-no" title="function not covered" >function initialize() {</span>},
componentDidMount: <span class="fstat-no" title="function not covered" >function componentDidMount() {</span>},
componentWillUnmount: <span class="fstat-no" title="function not covered" >function componentWillUnmount() {</span>},
handleAddCoworker: <span class="fstat-no" title="function not covered" >function handleAddCoworker() {</span>
<span class="cstat-no" title="statement not covered" > PeopleActions.addCoworker(this.props.id);</span>
},
handleRemoveCoworker: <span class="fstat-no" title="function not covered" >function handleRemoveCoworker() {</span>
<span class="cstat-no" title="statement not covered" > PeopleActions.removeCoworker(this.props.id);</span>
},
/*
* Modal methods
*/
openModal: <span class="fstat-no" title="function not covered" >function openModal(personId) {</span>
<span class="cstat-no" title="statement not covered" > this.setState({ modalIsOpen: true });</span>
},
closeModal: <span class="fstat-no" title="function not covered" >function closeModal() {</span>
<span class="cstat-no" title="statement not covered" > this.setState({ modalIsOpen: false });</span>
},
render: function render() {
var coworkerOrNot = this.props.isCoworker ? <span class="branch-0 cbranch-no" title="branch not covered" >React.createElement(</span>
"button",
{ className: "person-item-button person-item-button-remove", onClick: this.handleRemoveCoworker },
"Remove Co-Worker"
) : React.createElement(
"button",
{ className: "person-item-button", onClick: this.handleAddCoworker },
"Add Co-Worker"
);
return React.createElement(
"div",
{ className: "person-item" },
React.createElement(
"div",
{ className: "person-item-avatar" },
React.createElement("img", { src: this.props.avatarUrl })
),
React.createElement(
"div",
{ className: "person-item-content" },
React.createElement(
"h4",
null,
this.props.firstName,
" ",
this.props.lastName
),
React.createElement(
"h5",
null,
"LinkedIn"
)
),
React.createElement(
"div",
{ className: "person-item-button-container-right" },
React.createElement(RequestFeedbackButton, { from: this.props.id }),
React.createElement(
"button",
{ className: "person-item-button", onClick: this.openModal },
"Send Review"
)
),
React.createElement(
Modal,
{
isOpen: this.state.modalIsOpen,
onRequestClose: null,
closeTimeoutMS: 10
},
React.createElement(
"h1",
null,
"Create Feedback"
),
React.createElement(FeedbackForm, { to: this.props.id, closeModal: this.closeModal }),
React.createElement(
"button",
{ onClick: this.closeModal },
"Cancel"
)
)
);
}
});
module.exports = PersonItem;
/** Note - Store subscription handled in mixin */
/** Note - Store unsubscription handled in mixin */
</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 Sat May 16 2015 18:05:12 GMT-0700 (PDT)</div>
</div>
<script src="../../../../prettify.js"></script>
<script>
window.onload = function () {
if (typeof prettyPrint === 'function') {
prettyPrint();
}
};
</script>
<script src="../../../../sorter.js"></script>
</body>
</html>
| 360Me/360Me-Webapp | coverage/html/src/modules/people/components/PersonItem.jsx.html | HTML | mit | 13,808 |
<!DOCTYPE html>
<!--
Template Name: Metronic - Responsive Admin Dashboard Template build with Twitter Bootstrap 3.3.7
Version: 4.7
Author: KeenThemes
Website: http://www.keenthemes.com/
Contact: support@keenthemes.com
Follow: www.twitter.com/keenthemes
Dribbble: www.dribbble.com/keenthemes
Like: www.facebook.com/keenthemes
Purchase: http://themeforest.net/item/metronic-responsive-admin-dashboard-template/4021469?ref=keenthemes
Renew Support: http://themeforest.net/item/metronic-responsive-admin-dashboard-template/4021469?ref=keenthemes
License: You must have a valid license purchased only from themeforest(the above link) in order to legally use the theme for your project.
-->
<!--[if IE 8]> <html lang="en" class="ie8 no-js"> <![endif]-->
<!--[if IE 9]> <html lang="en" class="ie9 no-js"> <![endif]-->
<!--[if !IE]><!-->
<html lang="en">
<!--<![endif]-->
<!-- BEGIN HEAD -->
<head>
<meta charset="utf-8" />
<title>Metronic | The Ultimate Multi-purpose Bootstrap Admin Dashboard Theme | Theme #1 | Ion Range Sliders</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta content="width=device-width, initial-scale=1" name="viewport" />
<meta content="#1 selling multi-purpose bootstrap admin theme sold in themeforest marketplace packed with angularjs, material design, rtl support with over thausands of templates and ui elements and plugins to power any type of web applications including saas and admin dashboards. Preview page of Theme #1 for cool, comfortable and easily customizable range slider with skins support"
name="description" />
<meta content="" name="author" />
<!-- BEGIN GLOBAL MANDATORY STYLES -->
<link href="http://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700&subset=all" rel="stylesheet" type="text/css" />
<link href="../assets/global/plugins/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css" />
<link href="../assets/global/plugins/simple-line-icons/simple-line-icons.min.css" rel="stylesheet" type="text/css" />
<link href="../assets/global/plugins/bootstrap/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
<link href="../assets/global/plugins/bootstrap-switch/css/bootstrap-switch.min.css" rel="stylesheet" type="text/css" />
<!-- END GLOBAL MANDATORY STYLES -->
<!-- BEGIN PAGE LEVEL PLUGINS -->
<link href="../assets/global/plugins/ion.rangeslider/css/ion.rangeSlider.css" rel="stylesheet" type="text/css" />
<link href="../assets/global/plugins/ion.rangeslider/css/ion.rangeSlider.skinFlat.css" rel="stylesheet" type="text/css" />
<link href="../assets/global/plugins/bootstrap-markdown/css/bootstrap-markdown.min.css" rel="stylesheet" type="text/css" />
<link href="../assets/global/plugins/bootstrap-summernote/summernote.css" rel="stylesheet" type="text/css" />
<!-- END PAGE LEVEL PLUGINS -->
<!-- BEGIN THEME GLOBAL STYLES -->
<link href="../assets/global/css/components.min.css" rel="stylesheet" id="style_components" type="text/css" />
<link href="../assets/global/css/plugins.min.css" rel="stylesheet" type="text/css" />
<!-- END THEME GLOBAL STYLES -->
<!-- BEGIN THEME LAYOUT STYLES -->
<link href="../assets/layouts/layout/css/layout.min.css" rel="stylesheet" type="text/css" />
<link href="../assets/layouts/layout/css/themes/darkblue.min.css" rel="stylesheet" type="text/css" id="style_color" />
<link href="../assets/layouts/layout/css/custom.min.css" rel="stylesheet" type="text/css" />
<!-- END THEME LAYOUT STYLES -->
<link rel="shortcut icon" href="favicon.ico" /> </head>
<!-- END HEAD -->
<body class="page-header-fixed page-sidebar-closed-hide-logo page-content-white">
<div class="page-wrapper">
<!-- BEGIN HEADER -->
<div class="page-header navbar navbar-fixed-top">
<!-- BEGIN HEADER INNER -->
<div class="page-header-inner ">
<!-- BEGIN LOGO -->
<div class="page-logo">
<a href="index.html">
<img src="../assets/layouts/layout/img/logo.png" alt="logo" class="logo-default" /> </a>
<div class="menu-toggler sidebar-toggler">
<span></span>
</div>
</div>
<!-- END LOGO -->
<!-- BEGIN RESPONSIVE MENU TOGGLER -->
<a href="javascript:;" class="menu-toggler responsive-toggler" data-toggle="collapse" data-target=".navbar-collapse">
<span></span>
</a>
<!-- END RESPONSIVE MENU TOGGLER -->
<!-- BEGIN TOP NAVIGATION MENU -->
<div class="top-menu">
<ul class="nav navbar-nav pull-right">
<!-- BEGIN NOTIFICATION DROPDOWN -->
<!-- DOC: Apply "dropdown-dark" class after "dropdown-extended" to change the dropdown styte -->
<!-- DOC: Apply "dropdown-hoverable" class after below "dropdown" and remove data-toggle="dropdown" data-hover="dropdown" data-close-others="true" attributes to enable hover dropdown mode -->
<!-- DOC: Remove "dropdown-hoverable" and add data-toggle="dropdown" data-hover="dropdown" data-close-others="true" attributes to the below A element with dropdown-toggle class -->
<li class="dropdown dropdown-extended dropdown-notification" id="header_notification_bar">
<a href="javascript:;" class="dropdown-toggle" data-toggle="dropdown" data-hover="dropdown" data-close-others="true">
<i class="icon-bell"></i>
<span class="badge badge-default"> 7 </span>
</a>
<ul class="dropdown-menu">
<li class="external">
<h3>
<span class="bold">12 pending</span> notifications</h3>
<a href="page_user_profile_1.html">view all</a>
</li>
<li>
<ul class="dropdown-menu-list scroller" style="height: 250px;" data-handle-color="#637283">
<li>
<a href="javascript:;">
<span class="time">just now</span>
<span class="details">
<span class="label label-sm label-icon label-success">
<i class="fa fa-plus"></i>
</span> New user registered. </span>
</a>
</li>
<li>
<a href="javascript:;">
<span class="time">3 mins</span>
<span class="details">
<span class="label label-sm label-icon label-danger">
<i class="fa fa-bolt"></i>
</span> Server #12 overloaded. </span>
</a>
</li>
<li>
<a href="javascript:;">
<span class="time">10 mins</span>
<span class="details">
<span class="label label-sm label-icon label-warning">
<i class="fa fa-bell-o"></i>
</span> Server #2 not responding. </span>
</a>
</li>
<li>
<a href="javascript:;">
<span class="time">14 hrs</span>
<span class="details">
<span class="label label-sm label-icon label-info">
<i class="fa fa-bullhorn"></i>
</span> Application error. </span>
</a>
</li>
<li>
<a href="javascript:;">
<span class="time">2 days</span>
<span class="details">
<span class="label label-sm label-icon label-danger">
<i class="fa fa-bolt"></i>
</span> Database overloaded 68%. </span>
</a>
</li>
<li>
<a href="javascript:;">
<span class="time">3 days</span>
<span class="details">
<span class="label label-sm label-icon label-danger">
<i class="fa fa-bolt"></i>
</span> A user IP blocked. </span>
</a>
</li>
<li>
<a href="javascript:;">
<span class="time">4 days</span>
<span class="details">
<span class="label label-sm label-icon label-warning">
<i class="fa fa-bell-o"></i>
</span> Storage Server #4 not responding dfdfdfd. </span>
</a>
</li>
<li>
<a href="javascript:;">
<span class="time">5 days</span>
<span class="details">
<span class="label label-sm label-icon label-info">
<i class="fa fa-bullhorn"></i>
</span> System Error. </span>
</a>
</li>
<li>
<a href="javascript:;">
<span class="time">9 days</span>
<span class="details">
<span class="label label-sm label-icon label-danger">
<i class="fa fa-bolt"></i>
</span> Storage server failed. </span>
</a>
</li>
</ul>
</li>
</ul>
</li>
<!-- END NOTIFICATION DROPDOWN -->
<!-- BEGIN INBOX DROPDOWN -->
<!-- DOC: Apply "dropdown-dark" class after below "dropdown-extended" to change the dropdown styte -->
<li class="dropdown dropdown-extended dropdown-inbox" id="header_inbox_bar">
<a href="javascript:;" class="dropdown-toggle" data-toggle="dropdown" data-hover="dropdown" data-close-others="true">
<i class="icon-envelope-open"></i>
<span class="badge badge-default"> 4 </span>
</a>
<ul class="dropdown-menu">
<li class="external">
<h3>You have
<span class="bold">7 New</span> Messages</h3>
<a href="app_inbox.html">view all</a>
</li>
<li>
<ul class="dropdown-menu-list scroller" style="height: 275px;" data-handle-color="#637283">
<li>
<a href="#">
<span class="photo">
<img src="../assets/layouts/layout3/img/avatar2.jpg" class="img-circle" alt=""> </span>
<span class="subject">
<span class="from"> Lisa Wong </span>
<span class="time">Just Now </span>
</span>
<span class="message"> Vivamus sed auctor nibh congue nibh. auctor nibh auctor nibh... </span>
</a>
</li>
<li>
<a href="#">
<span class="photo">
<img src="../assets/layouts/layout3/img/avatar3.jpg" class="img-circle" alt=""> </span>
<span class="subject">
<span class="from"> Richard Doe </span>
<span class="time">16 mins </span>
</span>
<span class="message"> Vivamus sed congue nibh auctor nibh congue nibh. auctor nibh auctor nibh... </span>
</a>
</li>
<li>
<a href="#">
<span class="photo">
<img src="../assets/layouts/layout3/img/avatar1.jpg" class="img-circle" alt=""> </span>
<span class="subject">
<span class="from"> Bob Nilson </span>
<span class="time">2 hrs </span>
</span>
<span class="message"> Vivamus sed nibh auctor nibh congue nibh. auctor nibh auctor nibh... </span>
</a>
</li>
<li>
<a href="#">
<span class="photo">
<img src="../assets/layouts/layout3/img/avatar2.jpg" class="img-circle" alt=""> </span>
<span class="subject">
<span class="from"> Lisa Wong </span>
<span class="time">40 mins </span>
</span>
<span class="message"> Vivamus sed auctor 40% nibh congue nibh... </span>
</a>
</li>
<li>
<a href="#">
<span class="photo">
<img src="../assets/layouts/layout3/img/avatar3.jpg" class="img-circle" alt=""> </span>
<span class="subject">
<span class="from"> Richard Doe </span>
<span class="time">46 mins </span>
</span>
<span class="message"> Vivamus sed congue nibh auctor nibh congue nibh. auctor nibh auctor nibh... </span>
</a>
</li>
</ul>
</li>
</ul>
</li>
<!-- END INBOX DROPDOWN -->
<!-- BEGIN TODO DROPDOWN -->
<!-- DOC: Apply "dropdown-dark" class after below "dropdown-extended" to change the dropdown styte -->
<li class="dropdown dropdown-extended dropdown-tasks" id="header_task_bar">
<a href="javascript:;" class="dropdown-toggle" data-toggle="dropdown" data-hover="dropdown" data-close-others="true">
<i class="icon-calendar"></i>
<span class="badge badge-default"> 3 </span>
</a>
<ul class="dropdown-menu extended tasks">
<li class="external">
<h3>You have
<span class="bold">12 pending</span> tasks</h3>
<a href="app_todo.html">view all</a>
</li>
<li>
<ul class="dropdown-menu-list scroller" style="height: 275px;" data-handle-color="#637283">
<li>
<a href="javascript:;">
<span class="task">
<span class="desc">New release v1.2 </span>
<span class="percent">30%</span>
</span>
<span class="progress">
<span style="width: 40%;" class="progress-bar progress-bar-success" aria-valuenow="40" aria-valuemin="0" aria-valuemax="100">
<span class="sr-only">40% Complete</span>
</span>
</span>
</a>
</li>
<li>
<a href="javascript:;">
<span class="task">
<span class="desc">Application deployment</span>
<span class="percent">65%</span>
</span>
<span class="progress">
<span style="width: 65%;" class="progress-bar progress-bar-danger" aria-valuenow="65" aria-valuemin="0" aria-valuemax="100">
<span class="sr-only">65% Complete</span>
</span>
</span>
</a>
</li>
<li>
<a href="javascript:;">
<span class="task">
<span class="desc">Mobile app release</span>
<span class="percent">98%</span>
</span>
<span class="progress">
<span style="width: 98%;" class="progress-bar progress-bar-success" aria-valuenow="98" aria-valuemin="0" aria-valuemax="100">
<span class="sr-only">98% Complete</span>
</span>
</span>
</a>
</li>
<li>
<a href="javascript:;">
<span class="task">
<span class="desc">Database migration</span>
<span class="percent">10%</span>
</span>
<span class="progress">
<span style="width: 10%;" class="progress-bar progress-bar-warning" aria-valuenow="10" aria-valuemin="0" aria-valuemax="100">
<span class="sr-only">10% Complete</span>
</span>
</span>
</a>
</li>
<li>
<a href="javascript:;">
<span class="task">
<span class="desc">Web server upgrade</span>
<span class="percent">58%</span>
</span>
<span class="progress">
<span style="width: 58%;" class="progress-bar progress-bar-info" aria-valuenow="58" aria-valuemin="0" aria-valuemax="100">
<span class="sr-only">58% Complete</span>
</span>
</span>
</a>
</li>
<li>
<a href="javascript:;">
<span class="task">
<span class="desc">Mobile development</span>
<span class="percent">85%</span>
</span>
<span class="progress">
<span style="width: 85%;" class="progress-bar progress-bar-success" aria-valuenow="85" aria-valuemin="0" aria-valuemax="100">
<span class="sr-only">85% Complete</span>
</span>
</span>
</a>
</li>
<li>
<a href="javascript:;">
<span class="task">
<span class="desc">New UI release</span>
<span class="percent">38%</span>
</span>
<span class="progress progress-striped">
<span style="width: 38%;" class="progress-bar progress-bar-important" aria-valuenow="18" aria-valuemin="0" aria-valuemax="100">
<span class="sr-only">38% Complete</span>
</span>
</span>
</a>
</li>
</ul>
</li>
</ul>
</li>
<!-- END TODO DROPDOWN -->
<!-- BEGIN USER LOGIN DROPDOWN -->
<!-- DOC: Apply "dropdown-dark" class after below "dropdown-extended" to change the dropdown styte -->
<li class="dropdown dropdown-user">
<a href="javascript:;" class="dropdown-toggle" data-toggle="dropdown" data-hover="dropdown" data-close-others="true">
<img alt="" class="img-circle" src="../assets/layouts/layout/img/avatar3_small.jpg" />
<span class="username username-hide-on-mobile"> Nick </span>
<i class="fa fa-angle-down"></i>
</a>
<ul class="dropdown-menu dropdown-menu-default">
<li>
<a href="page_user_profile_1.html">
<i class="icon-user"></i> My Profile </a>
</li>
<li>
<a href="app_calendar.html">
<i class="icon-calendar"></i> My Calendar </a>
</li>
<li>
<a href="app_inbox.html">
<i class="icon-envelope-open"></i> My Inbox
<span class="badge badge-danger"> 3 </span>
</a>
</li>
<li>
<a href="app_todo.html">
<i class="icon-rocket"></i> My Tasks
<span class="badge badge-success"> 7 </span>
</a>
</li>
<li class="divider"> </li>
<li>
<a href="page_user_lock_1.html">
<i class="icon-lock"></i> Lock Screen </a>
</li>
<li>
<a href="page_user_login_1.html">
<i class="icon-key"></i> Log Out </a>
</li>
</ul>
</li>
<!-- END USER LOGIN DROPDOWN -->
<!-- BEGIN QUICK SIDEBAR TOGGLER -->
<!-- DOC: Apply "dropdown-dark" class after below "dropdown-extended" to change the dropdown styte -->
<li class="dropdown dropdown-quick-sidebar-toggler">
<a href="javascript:;" class="dropdown-toggle">
<i class="icon-logout"></i>
</a>
</li>
<!-- END QUICK SIDEBAR TOGGLER -->
</ul>
</div>
<!-- END TOP NAVIGATION MENU -->
</div>
<!-- END HEADER INNER -->
</div>
<!-- END HEADER -->
<!-- BEGIN HEADER & CONTENT DIVIDER -->
<div class="clearfix"> </div>
<!-- END HEADER & CONTENT DIVIDER -->
<!-- BEGIN CONTAINER -->
<div class="page-container">
<!-- BEGIN SIDEBAR -->
<div class="page-sidebar-wrapper">
<!-- BEGIN SIDEBAR -->
<!-- DOC: Set data-auto-scroll="false" to disable the sidebar from auto scrolling/focusing -->
<!-- DOC: Change data-auto-speed="200" to adjust the sub menu slide up/down speed -->
<div class="page-sidebar navbar-collapse collapse">
<!-- BEGIN SIDEBAR MENU -->
<!-- DOC: Apply "page-sidebar-menu-light" class right after "page-sidebar-menu" to enable light sidebar menu style(without borders) -->
<!-- DOC: Apply "page-sidebar-menu-hover-submenu" class right after "page-sidebar-menu" to enable hoverable(hover vs accordion) sub menu mode -->
<!-- DOC: Apply "page-sidebar-menu-closed" class right after "page-sidebar-menu" to collapse("page-sidebar-closed" class must be applied to the body element) the sidebar sub menu mode -->
<!-- DOC: Set data-auto-scroll="false" to disable the sidebar from auto scrolling/focusing -->
<!-- DOC: Set data-keep-expand="true" to keep the submenues expanded -->
<!-- DOC: Set data-auto-speed="200" to adjust the sub menu slide up/down speed -->
<ul class="page-sidebar-menu page-header-fixed " data-keep-expanded="false" data-auto-scroll="true" data-slide-speed="200" style="padding-top: 20px">
<!-- DOC: To remove the sidebar toggler from the sidebar you just need to completely remove the below "sidebar-toggler-wrapper" LI element -->
<!-- BEGIN SIDEBAR TOGGLER BUTTON -->
<li class="sidebar-toggler-wrapper hide">
<div class="sidebar-toggler">
<span></span>
</div>
</li>
<!-- END SIDEBAR TOGGLER BUTTON -->
<!-- DOC: To remove the search box from the sidebar you just need to completely remove the below "sidebar-search-wrapper" LI element -->
<li class="sidebar-search-wrapper">
<!-- BEGIN RESPONSIVE QUICK SEARCH FORM -->
<!-- DOC: Apply "sidebar-search-bordered" class the below search form to have bordered search box -->
<!-- DOC: Apply "sidebar-search-bordered sidebar-search-solid" class the below search form to have bordered & solid search box -->
<form class="sidebar-search " action="page_general_search_3.html" method="POST">
<a href="javascript:;" class="remove">
<i class="icon-close"></i>
</a>
<div class="input-group">
<input type="text" class="form-control" placeholder="Search...">
<span class="input-group-btn">
<a href="javascript:;" class="btn submit">
<i class="icon-magnifier"></i>
</a>
</span>
</div>
</form>
<!-- END RESPONSIVE QUICK SEARCH FORM -->
</li>
<li class="nav-item start ">
<a href="javascript:;" class="nav-link nav-toggle">
<i class="icon-home"></i>
<span class="title">Dashboard</span>
<span class="arrow"></span>
</a>
<ul class="sub-menu">
<li class="nav-item start ">
<a href="index.html" class="nav-link ">
<i class="icon-bar-chart"></i>
<span class="title">Dashboard 1</span>
</a>
</li>
<li class="nav-item start ">
<a href="dashboard_2.html" class="nav-link ">
<i class="icon-bulb"></i>
<span class="title">Dashboard 2</span>
<span class="badge badge-success">1</span>
</a>
</li>
<li class="nav-item start ">
<a href="dashboard_3.html" class="nav-link ">
<i class="icon-graph"></i>
<span class="title">Dashboard 3</span>
<span class="badge badge-danger">5</span>
</a>
</li>
</ul>
</li>
<li class="heading">
<h3 class="uppercase">Features</h3>
</li>
<li class="nav-item ">
<a href="javascript:;" class="nav-link nav-toggle">
<i class="icon-diamond"></i>
<span class="title">UI Features</span>
<span class="arrow"></span>
</a>
<ul class="sub-menu">
<li class="nav-item ">
<a href="ui_colors.html" class="nav-link ">
<span class="title">Color Library</span>
</a>
</li>
<li class="nav-item ">
<a href="ui_general.html" class="nav-link ">
<span class="title">General Components</span>
</a>
</li>
<li class="nav-item ">
<a href="ui_buttons.html" class="nav-link ">
<span class="title">Buttons</span>
</a>
</li>
<li class="nav-item ">
<a href="ui_buttons_spinner.html" class="nav-link ">
<span class="title">Spinner Buttons</span>
</a>
</li>
<li class="nav-item ">
<a href="ui_confirmations.html" class="nav-link ">
<span class="title">Popover Confirmations</span>
</a>
</li>
<li class="nav-item ">
<a href="ui_sweetalert.html" class="nav-link ">
<span class="title">Bootstrap Sweet Alerts</span>
</a>
</li>
<li class="nav-item ">
<a href="ui_icons.html" class="nav-link ">
<span class="title">Font Icons</span>
</a>
</li>
<li class="nav-item ">
<a href="ui_socicons.html" class="nav-link ">
<span class="title">Social Icons</span>
</a>
</li>
<li class="nav-item ">
<a href="ui_typography.html" class="nav-link ">
<span class="title">Typography</span>
</a>
</li>
<li class="nav-item ">
<a href="ui_tabs_accordions_navs.html" class="nav-link ">
<span class="title">Tabs, Accordions & Navs</span>
</a>
</li>
<li class="nav-item ">
<a href="ui_timeline.html" class="nav-link ">
<span class="title">Timeline 1</span>
</a>
</li>
<li class="nav-item ">
<a href="ui_timeline_2.html" class="nav-link ">
<span class="title">Timeline 2</span>
</a>
</li>
<li class="nav-item ">
<a href="ui_timeline_horizontal.html" class="nav-link ">
<span class="title">Horizontal Timeline</span>
</a>
</li>
<li class="nav-item ">
<a href="ui_tree.html" class="nav-link ">
<span class="title">Tree View</span>
</a>
</li>
<li class="nav-item ">
<a href="javascript:;" class="nav-link nav-toggle">
<span class="title">Page Progress Bar</span>
<span class="arrow"></span>
</a>
<ul class="sub-menu">
<li class="nav-item ">
<a href="ui_page_progress_style_1.html" class="nav-link "> Flash </a>
</li>
<li class="nav-item ">
<a href="ui_page_progress_style_2.html" class="nav-link "> Big Counter </a>
</li>
</ul>
</li>
<li class="nav-item ">
<a href="ui_blockui.html" class="nav-link ">
<span class="title">Block UI</span>
</a>
</li>
<li class="nav-item ">
<a href="ui_bootstrap_growl.html" class="nav-link ">
<span class="title">Bootstrap Growl Notifications</span>
</a>
</li>
<li class="nav-item ">
<a href="ui_notific8.html" class="nav-link ">
<span class="title">Notific8 Notifications</span>
</a>
</li>
<li class="nav-item ">
<a href="ui_toastr.html" class="nav-link ">
<span class="title">Toastr Notifications</span>
</a>
</li>
<li class="nav-item ">
<a href="ui_bootbox.html" class="nav-link ">
<span class="title">Bootbox Dialogs</span>
</a>
</li>
<li class="nav-item ">
<a href="ui_alerts_api.html" class="nav-link ">
<span class="title">Metronic Alerts API</span>
</a>
</li>
<li class="nav-item ">
<a href="ui_session_timeout.html" class="nav-link ">
<span class="title">Session Timeout</span>
</a>
</li>
<li class="nav-item ">
<a href="ui_idle_timeout.html" class="nav-link ">
<span class="title">User Idle Timeout</span>
</a>
</li>
<li class="nav-item ">
<a href="ui_modals.html" class="nav-link ">
<span class="title">Modals</span>
</a>
</li>
<li class="nav-item ">
<a href="ui_extended_modals.html" class="nav-link ">
<span class="title">Extended Modals</span>
</a>
</li>
<li class="nav-item ">
<a href="ui_tiles.html" class="nav-link ">
<span class="title">Tiles</span>
</a>
</li>
<li class="nav-item ">
<a href="ui_datepaginator.html" class="nav-link ">
<span class="title">Date Paginator</span>
</a>
</li>
<li class="nav-item ">
<a href="ui_nestable.html" class="nav-link ">
<span class="title">Nestable List</span>
</a>
</li>
</ul>
</li>
<li class="nav-item active open">
<a href="javascript:;" class="nav-link nav-toggle">
<i class="icon-puzzle"></i>
<span class="title">Components</span>
<span class="selected"></span>
<span class="arrow open"></span>
</a>
<ul class="sub-menu">
<li class="nav-item ">
<a href="components_date_time_pickers.html" class="nav-link ">
<span class="title">Date & Time Pickers</span>
</a>
</li>
<li class="nav-item ">
<a href="components_color_pickers.html" class="nav-link ">
<span class="title">Color Pickers</span>
<span class="badge badge-danger">2</span>
</a>
</li>
<li class="nav-item ">
<a href="components_select2.html" class="nav-link ">
<span class="title">Select2 Dropdowns</span>
</a>
</li>
<li class="nav-item ">
<a href="components_bootstrap_multiselect_dropdown.html" class="nav-link ">
<span class="title">Bootstrap Multiselect Dropdowns</span>
</a>
</li>
<li class="nav-item ">
<a href="components_bootstrap_select.html" class="nav-link ">
<span class="title">Bootstrap Select</span>
</a>
</li>
<li class="nav-item ">
<a href="components_multi_select.html" class="nav-link ">
<span class="title">Bootstrap Multiple Select</span>
</a>
</li>
<li class="nav-item ">
<a href="components_bootstrap_select_splitter.html" class="nav-link ">
<span class="title">Select Splitter</span>
</a>
</li>
<li class="nav-item ">
<a href="components_clipboard.html" class="nav-link ">
<span class="title">Clipboard</span>
</a>
</li>
<li class="nav-item ">
<a href="components_typeahead.html" class="nav-link ">
<span class="title">Typeahead Autocomplete</span>
</a>
</li>
<li class="nav-item ">
<a href="components_bootstrap_tagsinput.html" class="nav-link ">
<span class="title">Bootstrap Tagsinput</span>
</a>
</li>
<li class="nav-item ">
<a href="components_bootstrap_switch.html" class="nav-link ">
<span class="title">Bootstrap Switch</span>
<span class="badge badge-success">6</span>
</a>
</li>
<li class="nav-item ">
<a href="components_bootstrap_maxlength.html" class="nav-link ">
<span class="title">Bootstrap Maxlength</span>
</a>
</li>
<li class="nav-item ">
<a href="components_bootstrap_fileinput.html" class="nav-link ">
<span class="title">Bootstrap File Input</span>
</a>
</li>
<li class="nav-item ">
<a href="components_bootstrap_touchspin.html" class="nav-link ">
<span class="title">Bootstrap Touchspin</span>
</a>
</li>
<li class="nav-item ">
<a href="components_form_tools.html" class="nav-link ">
<span class="title">Form Widgets & Tools</span>
</a>
</li>
<li class="nav-item ">
<a href="components_context_menu.html" class="nav-link ">
<span class="title">Context Menu</span>
</a>
</li>
<li class="nav-item ">
<a href="components_editors.html" class="nav-link ">
<span class="title">Markdown & WYSIWYG Editors</span>
</a>
</li>
<li class="nav-item ">
<a href="components_code_editors.html" class="nav-link ">
<span class="title">Code Editors</span>
</a>
</li>
<li class="nav-item active open">
<a href="components_ion_sliders.html" class="nav-link ">
<span class="title">Ion Range Sliders</span>
<span class="selected"></span>
</a>
</li>
<li class="nav-item ">
<a href="components_noui_sliders.html" class="nav-link ">
<span class="title">NoUI Range Sliders</span>
</a>
</li>
<li class="nav-item ">
<a href="components_knob_dials.html" class="nav-link ">
<span class="title">Knob Circle Dials</span>
</a>
</li>
</ul>
</li>
<li class="nav-item ">
<a href="javascript:;" class="nav-link nav-toggle">
<i class="icon-settings"></i>
<span class="title">Form Stuff</span>
<span class="arrow"></span>
</a>
<ul class="sub-menu">
<li class="nav-item ">
<a href="form_controls.html" class="nav-link ">
<span class="title">Bootstrap Form
<br>Controls</span>
</a>
</li>
<li class="nav-item ">
<a href="form_controls_md.html" class="nav-link ">
<span class="title">Material Design
<br>Form Controls</span>
</a>
</li>
<li class="nav-item ">
<a href="form_validation.html" class="nav-link ">
<span class="title">Form Validation</span>
</a>
</li>
<li class="nav-item ">
<a href="form_validation_states_md.html" class="nav-link ">
<span class="title">Material Design
<br>Form Validation States</span>
</a>
</li>
<li class="nav-item ">
<a href="form_validation_md.html" class="nav-link ">
<span class="title">Material Design
<br>Form Validation</span>
</a>
</li>
<li class="nav-item ">
<a href="form_layouts.html" class="nav-link ">
<span class="title">Form Layouts</span>
</a>
</li>
<li class="nav-item ">
<a href="form_repeater.html" class="nav-link ">
<span class="title">Form Repeater</span>
</a>
</li>
<li class="nav-item ">
<a href="form_input_mask.html" class="nav-link ">
<span class="title">Form Input Mask</span>
</a>
</li>
<li class="nav-item ">
<a href="form_editable.html" class="nav-link ">
<span class="title">Form X-editable</span>
</a>
</li>
<li class="nav-item ">
<a href="form_wizard.html" class="nav-link ">
<span class="title">Form Wizard</span>
</a>
</li>
<li class="nav-item ">
<a href="form_icheck.html" class="nav-link ">
<span class="title">iCheck Controls</span>
</a>
</li>
<li class="nav-item ">
<a href="form_image_crop.html" class="nav-link ">
<span class="title">Image Cropping</span>
</a>
</li>
<li class="nav-item ">
<a href="form_fileupload.html" class="nav-link ">
<span class="title">Multiple File Upload</span>
</a>
</li>
<li class="nav-item ">
<a href="form_dropzone.html" class="nav-link ">
<span class="title">Dropzone File Upload</span>
</a>
</li>
</ul>
</li>
<li class="nav-item ">
<a href="javascript:;" class="nav-link nav-toggle">
<i class="icon-bulb"></i>
<span class="title">Elements</span>
<span class="arrow"></span>
</a>
<ul class="sub-menu">
<li class="nav-item ">
<a href="elements_steps.html" class="nav-link ">
<span class="title">Steps</span>
</a>
</li>
<li class="nav-item ">
<a href="elements_lists.html" class="nav-link ">
<span class="title">Lists</span>
</a>
</li>
<li class="nav-item ">
<a href="elements_ribbons.html" class="nav-link ">
<span class="title">Ribbons</span>
</a>
</li>
<li class="nav-item ">
<a href="elements_overlay.html" class="nav-link ">
<span class="title">Overlays</span>
</a>
</li>
<li class="nav-item ">
<a href="elements_cards.html" class="nav-link ">
<span class="title">User Cards</span>
</a>
</li>
</ul>
</li>
<li class="nav-item ">
<a href="javascript:;" class="nav-link nav-toggle">
<i class="icon-briefcase"></i>
<span class="title">Tables</span>
<span class="arrow"></span>
</a>
<ul class="sub-menu">
<li class="nav-item ">
<a href="table_static_basic.html" class="nav-link ">
<span class="title">Basic Tables</span>
</a>
</li>
<li class="nav-item ">
<a href="table_static_responsive.html" class="nav-link ">
<span class="title">Responsive Tables</span>
</a>
</li>
<li class="nav-item ">
<a href="table_bootstrap.html" class="nav-link ">
<span class="title">Bootstrap Tables</span>
</a>
</li>
<li class="nav-item ">
<a href="javascript:;" class="nav-link nav-toggle">
<span class="title">Datatables</span>
<span class="arrow"></span>
</a>
<ul class="sub-menu">
<li class="nav-item ">
<a href="table_datatables_managed.html" class="nav-link "> Managed Datatables </a>
</li>
<li class="nav-item ">
<a href="table_datatables_buttons.html" class="nav-link "> Buttons Extension </a>
</li>
<li class="nav-item ">
<a href="table_datatables_colreorder.html" class="nav-link "> Colreorder Extension </a>
</li>
<li class="nav-item ">
<a href="table_datatables_rowreorder.html" class="nav-link "> Rowreorder Extension </a>
</li>
<li class="nav-item ">
<a href="table_datatables_scroller.html" class="nav-link "> Scroller Extension </a>
</li>
<li class="nav-item ">
<a href="table_datatables_fixedheader.html" class="nav-link "> FixedHeader Extension </a>
</li>
<li class="nav-item ">
<a href="table_datatables_responsive.html" class="nav-link "> Responsive Extension </a>
</li>
<li class="nav-item ">
<a href="table_datatables_editable.html" class="nav-link "> Editable Datatables </a>
</li>
<li class="nav-item ">
<a href="table_datatables_ajax.html" class="nav-link "> Ajax Datatables </a>
</li>
</ul>
</li>
</ul>
</li>
<li class="nav-item ">
<a href="?p=" class="nav-link nav-toggle">
<i class="icon-wallet"></i>
<span class="title">Portlets</span>
<span class="arrow"></span>
</a>
<ul class="sub-menu">
<li class="nav-item ">
<a href="portlet_boxed.html" class="nav-link ">
<span class="title">Boxed Portlets</span>
</a>
</li>
<li class="nav-item ">
<a href="portlet_light.html" class="nav-link ">
<span class="title">Light Portlets</span>
</a>
</li>
<li class="nav-item ">
<a href="portlet_solid.html" class="nav-link ">
<span class="title">Solid Portlets</span>
</a>
</li>
<li class="nav-item ">
<a href="portlet_ajax.html" class="nav-link ">
<span class="title">Ajax Portlets</span>
</a>
</li>
<li class="nav-item ">
<a href="portlet_draggable.html" class="nav-link ">
<span class="title">Draggable Portlets</span>
</a>
</li>
</ul>
</li>
<li class="nav-item ">
<a href="javascript:;" class="nav-link nav-toggle">
<i class="icon-bar-chart"></i>
<span class="title">Charts</span>
<span class="arrow"></span>
</a>
<ul class="sub-menu">
<li class="nav-item ">
<a href="charts_amcharts.html" class="nav-link ">
<span class="title">amChart</span>
</a>
</li>
<li class="nav-item ">
<a href="charts_flotcharts.html" class="nav-link ">
<span class="title">Flot Charts</span>
</a>
</li>
<li class="nav-item ">
<a href="charts_flowchart.html" class="nav-link ">
<span class="title">Flow Charts</span>
</a>
</li>
<li class="nav-item ">
<a href="charts_google.html" class="nav-link ">
<span class="title">Google Charts</span>
</a>
</li>
<li class="nav-item ">
<a href="charts_echarts.html" class="nav-link ">
<span class="title">eCharts</span>
</a>
</li>
<li class="nav-item ">
<a href="charts_morris.html" class="nav-link ">
<span class="title">Morris Charts</span>
</a>
</li>
<li class="nav-item ">
<a href="javascript:;" class="nav-link nav-toggle">
<span class="title">HighCharts</span>
<span class="arrow"></span>
</a>
<ul class="sub-menu">
<li class="nav-item ">
<a href="charts_highcharts.html" class="nav-link "> HighCharts </a>
</li>
<li class="nav-item ">
<a href="charts_highstock.html" class="nav-link "> HighStock </a>
</li>
<li class="nav-item ">
<a href="charts_highmaps.html" class="nav-link "> HighMaps </a>
</li>
</ul>
</li>
</ul>
</li>
<li class="nav-item ">
<a href="javascript:;" class="nav-link nav-toggle">
<i class="icon-pointer"></i>
<span class="title">Maps</span>
<span class="arrow"></span>
</a>
<ul class="sub-menu">
<li class="nav-item ">
<a href="maps_google.html" class="nav-link ">
<span class="title">Google Maps</span>
</a>
</li>
<li class="nav-item ">
<a href="maps_vector.html" class="nav-link ">
<span class="title">Vector Maps</span>
</a>
</li>
</ul>
</li>
<li class="heading">
<h3 class="uppercase">Layouts</h3>
</li>
<li class="nav-item ">
<a href="javascript:;" class="nav-link nav-toggle">
<i class="icon-layers"></i>
<span class="title">Page Layouts</span>
<span class="arrow"></span>
</a>
<ul class="sub-menu">
<li class="nav-item ">
<a href="layout_blank_page.html" class="nav-link ">
<span class="title">Blank Page</span>
</a>
</li>
<li class="nav-item ">
<a href="layout_ajax_page.html" class="nav-link ">
<span class="title">Ajax Content Layout</span>
</a>
</li>
<li class="nav-item ">
<a href="layout_offcanvas_mobile_menu.html" class="nav-link ">
<span class="title">Off-canvas Mobile Menu</span>
</a>
</li>
<li class="nav-item ">
<a href="layout_classic_page_head.html" class="nav-link ">
<span class="title">Classic Page Head</span>
</a>
</li>
<li class="nav-item ">
<a href="layout_light_page_head.html" class="nav-link ">
<span class="title">Light Page Head</span>
</a>
</li>
<li class="nav-item ">
<a href="layout_content_grey.html" class="nav-link ">
<span class="title">Grey Bg Content</span>
</a>
</li>
<li class="nav-item ">
<a href="layout_search_on_header_1.html" class="nav-link ">
<span class="title">Search Box On Header 1</span>
</a>
</li>
<li class="nav-item ">
<a href="layout_search_on_header_2.html" class="nav-link ">
<span class="title">Search Box On Header 2</span>
</a>
</li>
<li class="nav-item ">
<a href="layout_language_bar.html" class="nav-link ">
<span class="title">Header Language Bar</span>
</a>
</li>
<li class="nav-item ">
<a href="layout_footer_fixed.html" class="nav-link ">
<span class="title">Fixed Footer</span>
</a>
</li>
<li class="nav-item ">
<a href="layout_boxed_page.html" class="nav-link ">
<span class="title">Boxed Page</span>
</a>
</li>
</ul>
</li>
<li class="nav-item ">
<a href="javascript:;" class="nav-link nav-toggle">
<i class="icon-feed"></i>
<span class="title">Sidebar Layouts</span>
<span class="arrow"></span>
</a>
<ul class="sub-menu">
<li class="nav-item ">
<a href="layout_sidebar_menu_light.html" class="nav-link ">
<span class="title">Light Sidebar Menu</span>
</a>
</li>
<li class="nav-item ">
<a href="layout_sidebar_menu_hover.html" class="nav-link ">
<span class="title">Hover Sidebar Menu</span>
</a>
</li>
<li class="nav-item ">
<a href="layout_sidebar_search_1.html" class="nav-link ">
<span class="title">Sidebar Search Option 1</span>
</a>
</li>
<li class="nav-item ">
<a href="layout_sidebar_search_2.html" class="nav-link ">
<span class="title">Sidebar Search Option 2</span>
</a>
</li>
<li class="nav-item ">
<a href="layout_toggler_on_sidebar.html" class="nav-link ">
<span class="title">Sidebar Toggler On Sidebar</span>
</a>
</li>
<li class="nav-item ">
<a href="layout_sidebar_reversed.html" class="nav-link ">
<span class="title">Reversed Sidebar Page</span>
</a>
</li>
<li class="nav-item ">
<a href="layout_sidebar_fixed.html" class="nav-link ">
<span class="title">Fixed Sidebar Layout</span>
</a>
</li>
<li class="nav-item ">
<a href="layout_sidebar_closed.html" class="nav-link ">
<span class="title">Closed Sidebar Layout</span>
</a>
</li>
</ul>
</li>
<li class="nav-item ">
<a href="javascript:;" class="nav-link nav-toggle">
<i class="icon-paper-plane"></i>
<span class="title">Horizontal Menu</span>
<span class="arrow"></span>
</a>
<ul class="sub-menu">
<li class="nav-item ">
<a href="layout_mega_menu_light.html" class="nav-link ">
<span class="title">Light Mega Menu</span>
</a>
</li>
<li class="nav-item ">
<a href="layout_mega_menu_dark.html" class="nav-link ">
<span class="title">Dark Mega Menu</span>
</a>
</li>
<li class="nav-item ">
<a href="layout_full_width.html" class="nav-link ">
<span class="title">Full Width Layout</span>
</a>
</li>
</ul>
</li>
<li class="nav-item ">
<a href="javascript:;" class="nav-link nav-toggle">
<i class=" icon-wrench"></i>
<span class="title">Custom Layouts</span>
<span class="arrow"></span>
</a>
<ul class="sub-menu">
<li class="nav-item ">
<a href="layout_disabled_menu.html" class="nav-link ">
<span class="title">Disabled Menu Links</span>
</a>
</li>
<li class="nav-item ">
<a href="layout_full_height_portlet.html" class="nav-link ">
<span class="title">Full Height Portlet</span>
</a>
</li>
<li class="nav-item ">
<a href="layout_full_height_content.html" class="nav-link ">
<span class="title">Full Height Content</span>
</a>
</li>
</ul>
</li>
<li class="heading">
<h3 class="uppercase">Pages</h3>
</li>
<li class="nav-item ">
<a href="javascript:;" class="nav-link nav-toggle">
<i class="icon-basket"></i>
<span class="title">eCommerce</span>
<span class="arrow"></span>
</a>
<ul class="sub-menu">
<li class="nav-item ">
<a href="ecommerce_index.html" class="nav-link ">
<i class="icon-home"></i>
<span class="title">Dashboard</span>
</a>
</li>
<li class="nav-item ">
<a href="ecommerce_orders.html" class="nav-link ">
<i class="icon-basket"></i>
<span class="title">Orders</span>
</a>
</li>
<li class="nav-item ">
<a href="ecommerce_orders_view.html" class="nav-link ">
<i class="icon-tag"></i>
<span class="title">Order View</span>
</a>
</li>
<li class="nav-item ">
<a href="ecommerce_products.html" class="nav-link ">
<i class="icon-graph"></i>
<span class="title">Products</span>
</a>
</li>
<li class="nav-item ">
<a href="ecommerce_products_edit.html" class="nav-link ">
<i class="icon-graph"></i>
<span class="title">Product Edit</span>
</a>
</li>
</ul>
</li>
<li class="nav-item ">
<a href="javascript:;" class="nav-link nav-toggle">
<i class="icon-docs"></i>
<span class="title">Apps</span>
<span class="arrow"></span>
</a>
<ul class="sub-menu">
<li class="nav-item ">
<a href="app_todo.html" class="nav-link ">
<i class="icon-clock"></i>
<span class="title">Todo 1</span>
</a>
</li>
<li class="nav-item ">
<a href="app_todo_2.html" class="nav-link ">
<i class="icon-check"></i>
<span class="title">Todo 2</span>
</a>
</li>
<li class="nav-item ">
<a href="app_inbox.html" class="nav-link ">
<i class="icon-envelope"></i>
<span class="title">Inbox</span>
</a>
</li>
<li class="nav-item ">
<a href="app_calendar.html" class="nav-link ">
<i class="icon-calendar"></i>
<span class="title">Calendar</span>
</a>
</li>
<li class="nav-item ">
<a href="app_ticket.html" class="nav-link ">
<i class="icon-notebook"></i>
<span class="title">Support</span>
</a>
</li>
</ul>
</li>
<li class="nav-item ">
<a href="javascript:;" class="nav-link nav-toggle">
<i class="icon-user"></i>
<span class="title">User</span>
<span class="arrow"></span>
</a>
<ul class="sub-menu">
<li class="nav-item ">
<a href="page_user_profile_1.html" class="nav-link ">
<i class="icon-user"></i>
<span class="title">Profile 1</span>
</a>
</li>
<li class="nav-item ">
<a href="page_user_profile_1_account.html" class="nav-link ">
<i class="icon-user-female"></i>
<span class="title">Profile 1 Account</span>
</a>
</li>
<li class="nav-item ">
<a href="page_user_profile_1_help.html" class="nav-link ">
<i class="icon-user-following"></i>
<span class="title">Profile 1 Help</span>
</a>
</li>
<li class="nav-item ">
<a href="page_user_profile_2.html" class="nav-link ">
<i class="icon-users"></i>
<span class="title">Profile 2</span>
</a>
</li>
<li class="nav-item ">
<a href="javascript:;" class="nav-link nav-toggle">
<i class="icon-notebook"></i>
<span class="title">Login</span>
<span class="arrow"></span>
</a>
<ul class="sub-menu">
<li class="nav-item ">
<a href="page_user_login_1.html" class="nav-link " target="_blank"> Login Page 1 </a>
</li>
<li class="nav-item ">
<a href="page_user_login_2.html" class="nav-link " target="_blank"> Login Page 2 </a>
</li>
<li class="nav-item ">
<a href="page_user_login_3.html" class="nav-link " target="_blank"> Login Page 3 </a>
</li>
<li class="nav-item ">
<a href="page_user_login_4.html" class="nav-link " target="_blank"> Login Page 4 </a>
</li>
<li class="nav-item ">
<a href="page_user_login_5.html" class="nav-link " target="_blank"> Login Page 5 </a>
</li>
<li class="nav-item ">
<a href="page_user_login_6.html" class="nav-link " target="_blank"> Login Page 6 </a>
</li>
</ul>
</li>
<li class="nav-item ">
<a href="page_user_lock_1.html" class="nav-link " target="_blank">
<i class="icon-lock"></i>
<span class="title">Lock Screen 1</span>
</a>
</li>
<li class="nav-item ">
<a href="page_user_lock_2.html" class="nav-link " target="_blank">
<i class="icon-lock-open"></i>
<span class="title">Lock Screen 2</span>
</a>
</li>
</ul>
</li>
<li class="nav-item ">
<a href="javascript:;" class="nav-link nav-toggle">
<i class="icon-social-dribbble"></i>
<span class="title">General</span>
<span class="arrow"></span>
</a>
<ul class="sub-menu">
<li class="nav-item ">
<a href="page_general_about.html" class="nav-link ">
<i class="icon-info"></i>
<span class="title">About</span>
</a>
</li>
<li class="nav-item ">
<a href="page_general_contact.html" class="nav-link ">
<i class="icon-call-end"></i>
<span class="title">Contact</span>
</a>
</li>
<li class="nav-item ">
<a href="javascript:;" class="nav-link nav-toggle">
<i class="icon-notebook"></i>
<span class="title">Portfolio</span>
<span class="arrow"></span>
</a>
<ul class="sub-menu">
<li class="nav-item ">
<a href="page_general_portfolio_1.html" class="nav-link "> Portfolio 1 </a>
</li>
<li class="nav-item ">
<a href="page_general_portfolio_2.html" class="nav-link "> Portfolio 2 </a>
</li>
<li class="nav-item ">
<a href="page_general_portfolio_3.html" class="nav-link "> Portfolio 3 </a>
</li>
<li class="nav-item ">
<a href="page_general_portfolio_4.html" class="nav-link "> Portfolio 4 </a>
</li>
</ul>
</li>
<li class="nav-item ">
<a href="javascript:;" class="nav-link nav-toggle">
<i class="icon-magnifier"></i>
<span class="title">Search</span>
<span class="arrow"></span>
</a>
<ul class="sub-menu">
<li class="nav-item ">
<a href="page_general_search.html" class="nav-link "> Search 1 </a>
</li>
<li class="nav-item ">
<a href="page_general_search_2.html" class="nav-link "> Search 2 </a>
</li>
<li class="nav-item ">
<a href="page_general_search_3.html" class="nav-link "> Search 3 </a>
</li>
<li class="nav-item ">
<a href="page_general_search_4.html" class="nav-link "> Search 4 </a>
</li>
<li class="nav-item ">
<a href="page_general_search_5.html" class="nav-link "> Search 5 </a>
</li>
</ul>
</li>
<li class="nav-item ">
<a href="page_general_pricing.html" class="nav-link ">
<i class="icon-tag"></i>
<span class="title">Pricing</span>
</a>
</li>
<li class="nav-item ">
<a href="page_general_faq.html" class="nav-link ">
<i class="icon-wrench"></i>
<span class="title">FAQ</span>
</a>
</li>
<li class="nav-item ">
<a href="page_general_blog.html" class="nav-link ">
<i class="icon-pencil"></i>
<span class="title">Blog</span>
</a>
</li>
<li class="nav-item ">
<a href="page_general_blog_post.html" class="nav-link ">
<i class="icon-note"></i>
<span class="title">Blog Post</span>
</a>
</li>
<li class="nav-item ">
<a href="page_general_invoice.html" class="nav-link ">
<i class="icon-envelope"></i>
<span class="title">Invoice</span>
</a>
</li>
<li class="nav-item ">
<a href="page_general_invoice_2.html" class="nav-link ">
<i class="icon-envelope"></i>
<span class="title">Invoice 2</span>
</a>
</li>
</ul>
</li>
<li class="nav-item ">
<a href="javascript:;" class="nav-link nav-toggle">
<i class="icon-settings"></i>
<span class="title">System</span>
<span class="arrow"></span>
</a>
<ul class="sub-menu">
<li class="nav-item ">
<a href="page_cookie_consent_1.html" class="nav-link ">
<span class="title">Cookie Consent 1</span>
</a>
</li>
<li class="nav-item ">
<a href="page_cookie_consent_2.html" class="nav-link ">
<span class="title">Cookie Consent 2</span>
</a>
</li>
<li class="nav-item ">
<a href="page_system_coming_soon.html" class="nav-link " target="_blank">
<span class="title">Coming Soon</span>
</a>
</li>
<li class="nav-item ">
<a href="page_system_404_1.html" class="nav-link ">
<span class="title">404 Page 1</span>
</a>
</li>
<li class="nav-item ">
<a href="page_system_404_2.html" class="nav-link " target="_blank">
<span class="title">404 Page 2</span>
</a>
</li>
<li class="nav-item ">
<a href="page_system_404_3.html" class="nav-link " target="_blank">
<span class="title">404 Page 3</span>
</a>
</li>
<li class="nav-item ">
<a href="page_system_500_1.html" class="nav-link ">
<span class="title">500 Page 1</span>
</a>
</li>
<li class="nav-item ">
<a href="page_system_500_2.html" class="nav-link " target="_blank">
<span class="title">500 Page 2</span>
</a>
</li>
</ul>
</li>
<li class="nav-item">
<a href="javascript:;" class="nav-link nav-toggle">
<i class="icon-folder"></i>
<span class="title">Multi Level Menu</span>
<span class="arrow "></span>
</a>
<ul class="sub-menu">
<li class="nav-item">
<a href="javascript:;" class="nav-link nav-toggle">
<i class="icon-settings"></i> Item 1
<span class="arrow"></span>
</a>
<ul class="sub-menu">
<li class="nav-item">
<a href="javascript:;" target="_blank" class="nav-link">
<i class="icon-user"></i> Arrow Toggle
<span class="arrow nav-toggle"></span>
</a>
<ul class="sub-menu">
<li class="nav-item">
<a href="#" class="nav-link">
<i class="icon-power"></i> Sample Link 1</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link">
<i class="icon-paper-plane"></i> Sample Link 1</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link">
<i class="icon-star"></i> Sample Link 1</a>
</li>
</ul>
</li>
<li class="nav-item">
<a href="#" class="nav-link">
<i class="icon-camera"></i> Sample Link 1</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link">
<i class="icon-link"></i> Sample Link 2</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link">
<i class="icon-pointer"></i> Sample Link 3</a>
</li>
</ul>
</li>
<li class="nav-item">
<a href="javascript:;" target="_blank" class="nav-link">
<i class="icon-globe"></i> Arrow Toggle
<span class="arrow nav-toggle"></span>
</a>
<ul class="sub-menu">
<li class="nav-item">
<a href="#" class="nav-link">
<i class="icon-tag"></i> Sample Link 1</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link">
<i class="icon-pencil"></i> Sample Link 1</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link">
<i class="icon-graph"></i> Sample Link 1</a>
</li>
</ul>
</li>
<li class="nav-item">
<a href="#" class="nav-link">
<i class="icon-bar-chart"></i> Item 3 </a>
</li>
</ul>
</li>
</ul>
<!-- END SIDEBAR MENU -->
<!-- END SIDEBAR MENU -->
</div>
<!-- END SIDEBAR -->
</div>
<!-- END SIDEBAR -->
<!-- BEGIN CONTENT -->
<div class="page-content-wrapper">
<!-- BEGIN CONTENT BODY -->
<div class="page-content">
<!-- BEGIN PAGE HEADER-->
<!-- BEGIN THEME PANEL -->
<div class="theme-panel hidden-xs hidden-sm">
<div class="toggler"> </div>
<div class="toggler-close"> </div>
<div class="theme-options">
<div class="theme-option theme-colors clearfix">
<span> THEME COLOR </span>
<ul>
<li class="color-default current tooltips" data-style="default" data-container="body" data-original-title="Default"> </li>
<li class="color-darkblue tooltips" data-style="darkblue" data-container="body" data-original-title="Dark Blue"> </li>
<li class="color-blue tooltips" data-style="blue" data-container="body" data-original-title="Blue"> </li>
<li class="color-grey tooltips" data-style="grey" data-container="body" data-original-title="Grey"> </li>
<li class="color-light tooltips" data-style="light" data-container="body" data-original-title="Light"> </li>
<li class="color-light2 tooltips" data-style="light2" data-container="body" data-html="true" data-original-title="Light 2"> </li>
</ul>
</div>
<div class="theme-option">
<span> Theme Style </span>
<select class="layout-style-option form-control input-sm">
<option value="square" selected="selected">Square corners</option>
<option value="rounded">Rounded corners</option>
</select>
</div>
<div class="theme-option">
<span> Layout </span>
<select class="layout-option form-control input-sm">
<option value="fluid" selected="selected">Fluid</option>
<option value="boxed">Boxed</option>
</select>
</div>
<div class="theme-option">
<span> Header </span>
<select class="page-header-option form-control input-sm">
<option value="fixed" selected="selected">Fixed</option>
<option value="default">Default</option>
</select>
</div>
<div class="theme-option">
<span> Top Menu Dropdown</span>
<select class="page-header-top-dropdown-style-option form-control input-sm">
<option value="light" selected="selected">Light</option>
<option value="dark">Dark</option>
</select>
</div>
<div class="theme-option">
<span> Sidebar Mode</span>
<select class="sidebar-option form-control input-sm">
<option value="fixed">Fixed</option>
<option value="default" selected="selected">Default</option>
</select>
</div>
<div class="theme-option">
<span> Sidebar Menu </span>
<select class="sidebar-menu-option form-control input-sm">
<option value="accordion" selected="selected">Accordion</option>
<option value="hover">Hover</option>
</select>
</div>
<div class="theme-option">
<span> Sidebar Style </span>
<select class="sidebar-style-option form-control input-sm">
<option value="default" selected="selected">Default</option>
<option value="light">Light</option>
</select>
</div>
<div class="theme-option">
<span> Sidebar Position </span>
<select class="sidebar-pos-option form-control input-sm">
<option value="left" selected="selected">Left</option>
<option value="right">Right</option>
</select>
</div>
<div class="theme-option">
<span> Footer </span>
<select class="page-footer-option form-control input-sm">
<option value="fixed">Fixed</option>
<option value="default" selected="selected">Default</option>
</select>
</div>
</div>
</div>
<!-- END THEME PANEL -->
<!-- BEGIN PAGE BAR -->
<div class="page-bar">
<ul class="page-breadcrumb">
<li>
<a href="index.html">Home</a>
<i class="fa fa-circle"></i>
</li>
<li>
<span>Components</span>
</li>
</ul>
<div class="page-toolbar">
<div class="btn-group pull-right">
<button type="button" class="btn green btn-sm btn-outline dropdown-toggle" data-toggle="dropdown"> Actions
<i class="fa fa-angle-down"></i>
</button>
<ul class="dropdown-menu pull-right" role="menu">
<li>
<a href="#">
<i class="icon-bell"></i> Action</a>
</li>
<li>
<a href="#">
<i class="icon-shield"></i> Another action</a>
</li>
<li>
<a href="#">
<i class="icon-user"></i> Something else here</a>
</li>
<li class="divider"> </li>
<li>
<a href="#">
<i class="icon-bag"></i> Separated link</a>
</li>
</ul>
</div>
</div>
</div>
<!-- END PAGE BAR -->
<!-- BEGIN PAGE TITLE-->
<h1 class="page-title"> Ion Range Sliders
<small>cool, comfortable and easily customizable range slider with skins support</small>
</h1>
<!-- END PAGE TITLE-->
<!-- END PAGE HEADER-->
<div class="m-heading-1 border-green m-bordered">
<h3>Ion Range Slider</h3>
<p> Ion.RangeSlider. Is an easy, flexible and responsive range slider with tons of options. For more info please check out
<a class="btn red btn-outline" href="https://github.com/IonDen/ion.rangeSlider" target="_blank">the official documentation</a>
</p>
</div>
<div class="row">
<div class="col-md-12">
<!-- BEGIN PORTLET-->
<div class="portlet light form-fit bordered">
<div class="portlet-title">
<div class="caption">
<i class="icon-settings font-dark"></i>
<span class="caption-subject font-dark sbold uppercase">Basic Demos</span>
</div>
<div class="actions">
<div class="btn-group btn-group-devided" data-toggle="buttons">
<label class="btn btn-transparent dark btn-outline btn-circle btn-sm active">
<input type="radio" name="options" class="toggle" id="option1">Actions</label>
<label class="btn btn-transparent dark btn-outline btn-circle btn-sm">
<input type="radio" name="options" class="toggle" id="option2">Settings</label>
</div>
</div>
</div>
<div class="portlet-body form">
<form role="form" class="form-horizontal form-bordered">
<div class="form-body">
<div class="form-group">
<label class="col-md-3 control-label">Basic</label>
<div class="col-md-9">
<input id="range_1" type="text" /> </div>
</div>
<div class="form-group">
<label class="col-md-3 control-label">Min & Max Values</label>
<div class="col-md-9">
<input id="range_2" type="text" value="" />
<span class="help-block"> Set min value, max value and start point </span>
</div>
</div>
<div class="form-group">
<label class="col-md-3 control-label">Range Type</label>
<div class="col-md-9">
<input id="range_3" type="text" value="" />
<span class="help-block"> Set type to double and specify range, also showing grid and adding prefix "$" </span>
</div>
</div>
<div class="form-group">
<label class="col-md-3 control-label">Negative Range</label>
<div class="col-md-9">
<input id="range_4" type="text" value="" />
<span class="help-block"> Set up range with negative values </span>
</div>
</div>
<div class="form-group">
<label class="col-md-3 control-label">Custom Steps</label>
<div class="col-md-9">
<input id="range_5" type="text" value="" />
<span class="help-block"> Set up you own numbers </span>
</div>
</div>
<div class="form-group">
<label class="col-md-3 control-label">String Values</label>
<div class="col-md-9">
<input id="range_6" type="text" value="" />
<span class="help-block"> Using any strings as your values </span>
</div>
</div>
<div class="form-group">
<label class="col-md-3 control-label">Month Values</label>
<div class="col-md-9">
<input id="range_7" type="text" value="" />
<span class="help-block"> One more example with strings </span>
</div>
</div>
<div class="form-group">
<label class="col-md-3 control-label">Values Connect</label>
<div class="col-md-9">
<input id="range_8" type="text" value="" />
<span class="help-block"> Taking care about how from and to values connect? Use decorate_both option. </span>
</div>
</div>
<div class="form-group last">
<label class="col-md-3 control-label">Values Connect Separator</label>
<div class="col-md-9">
<input id="range_9" type="text" value="" />
<span class="help-block"> Use your own separator symbol with values_separator option. Like → </span>
</div>
</div>
</div>
<div class="form-actions">
<div class="row">
<div class="col-md-offset-3 col-md-9">
<button type="submit" class="btn green">Submit</button>
<button type="button" class="btn default">Cancel</button>
</div>
</div>
</div>
</form>
</div>
</div>
<!-- END PORTLET-->
</div>
</div>
<div class="row">
<div class="col-md-12">
<!-- BEGIN PORTLET-->
<div class="portlet light form-fit bordered">
<div class="portlet-title">
<div class="caption">
<i class="icon-settings font-green"></i>
<span class="caption-subject font-green sbold uppercase">Advanced Demos</span>
</div>
<div class="actions">
<div class="btn-group btn-group-devided" data-toggle="buttons">
<label class="btn btn-transparent green btn-outline btn-circle btn-sm active">
<input type="radio" name="options" class="toggle" id="option1">Actions</label>
<label class="btn btn-transparent green btn-outline btn-circle btn-sm">
<input type="radio" name="options" class="toggle" id="option2">Settings</label>
</div>
</div>
</div>
<div class="portlet-body form">
<form role="form" class="form-horizontal form-bordered">
<div class="form-body">
<div class="form-group">
<label class="col-md-3 control-label">Lock handles</label>
<div class="col-md-9">
<input id="range_10" type="text" value="" />
<span class="help-block"> Sometimes you want to forbid dragging one or both handles. Try to move left handle, you can't. </span>
</div>
</div>
</div>
<div class="form-body">
<div class="form-group">
<label class="col-md-3 control-label">Movement Limits 1</label>
<div class="col-md-9">
<input id="range_11" type="text" value="" />
<span class="help-block"> Sometimes you may want to show user full slider, but restict him from using it for 100%. The limits is the tool for you. Try to drag slider, you will see, it has invisible borders on 10 and 50. </span>
</div>
</div>
</div>
<div class="form-body">
<div class="form-group">
<label class="col-md-3 control-label">Movement Limits 2</label>
<div class="col-md-9">
<input id="range_12" type="text" value="" />
<span class="help-block"> One more example with limits. </span>
</div>
</div>
</div>
<div class="form-body">
<div class="form-group">
<label class="col-md-3 control-label">Disable Slider</label>
<div class="col-md-9">
<input id="range_13" type="text" value="" />
<span class="help-block"> You can lock your slider, by using disable option. </span>
</div>
</div>
</div>
<div class="form-actions">
<div class="row">
<div class="col-md-offset-3 col-md-9">
<button type="submit" class="btn dark">Submit</button>
<button type="button" class="btn grey-salsa btn-outline">Cancel</button>
</div>
</div>
</div>
</form>
</div>
</div>
<!-- END PORTLET-->
</div>
</div>
</div>
<!-- END CONTENT BODY -->
</div>
<!-- END CONTENT -->
<!-- BEGIN QUICK SIDEBAR -->
<a href="javascript:;" class="page-quick-sidebar-toggler">
<i class="icon-login"></i>
</a>
<div class="page-quick-sidebar-wrapper" data-close-on-body-click="false">
<div class="page-quick-sidebar">
<ul class="nav nav-tabs">
<li class="active">
<a href="javascript:;" data-target="#quick_sidebar_tab_1" data-toggle="tab"> Users
<span class="badge badge-danger">2</span>
</a>
</li>
<li>
<a href="javascript:;" data-target="#quick_sidebar_tab_2" data-toggle="tab"> Alerts
<span class="badge badge-success">7</span>
</a>
</li>
<li class="dropdown">
<a href="javascript:;" class="dropdown-toggle" data-toggle="dropdown"> More
<i class="fa fa-angle-down"></i>
</a>
<ul class="dropdown-menu pull-right">
<li>
<a href="javascript:;" data-target="#quick_sidebar_tab_3" data-toggle="tab">
<i class="icon-bell"></i> Alerts </a>
</li>
<li>
<a href="javascript:;" data-target="#quick_sidebar_tab_3" data-toggle="tab">
<i class="icon-info"></i> Notifications </a>
</li>
<li>
<a href="javascript:;" data-target="#quick_sidebar_tab_3" data-toggle="tab">
<i class="icon-speech"></i> Activities </a>
</li>
<li class="divider"></li>
<li>
<a href="javascript:;" data-target="#quick_sidebar_tab_3" data-toggle="tab">
<i class="icon-settings"></i> Settings </a>
</li>
</ul>
</li>
</ul>
<div class="tab-content">
<div class="tab-pane active page-quick-sidebar-chat" id="quick_sidebar_tab_1">
<div class="page-quick-sidebar-chat-users" data-rail-color="#ddd" data-wrapper-class="page-quick-sidebar-list">
<h3 class="list-heading">Staff</h3>
<ul class="media-list list-items">
<li class="media">
<div class="media-status">
<span class="badge badge-success">8</span>
</div>
<img class="media-object" src="../assets/layouts/layout/img/avatar3.jpg" alt="...">
<div class="media-body">
<h4 class="media-heading">Bob Nilson</h4>
<div class="media-heading-sub"> Project Manager </div>
</div>
</li>
<li class="media">
<img class="media-object" src="../assets/layouts/layout/img/avatar1.jpg" alt="...">
<div class="media-body">
<h4 class="media-heading">Nick Larson</h4>
<div class="media-heading-sub"> Art Director </div>
</div>
</li>
<li class="media">
<div class="media-status">
<span class="badge badge-danger">3</span>
</div>
<img class="media-object" src="../assets/layouts/layout/img/avatar4.jpg" alt="...">
<div class="media-body">
<h4 class="media-heading">Deon Hubert</h4>
<div class="media-heading-sub"> CTO </div>
</div>
</li>
<li class="media">
<img class="media-object" src="../assets/layouts/layout/img/avatar2.jpg" alt="...">
<div class="media-body">
<h4 class="media-heading">Ella Wong</h4>
<div class="media-heading-sub"> CEO </div>
</div>
</li>
</ul>
<h3 class="list-heading">Customers</h3>
<ul class="media-list list-items">
<li class="media">
<div class="media-status">
<span class="badge badge-warning">2</span>
</div>
<img class="media-object" src="../assets/layouts/layout/img/avatar6.jpg" alt="...">
<div class="media-body">
<h4 class="media-heading">Lara Kunis</h4>
<div class="media-heading-sub"> CEO, Loop Inc </div>
<div class="media-heading-small"> Last seen 03:10 AM </div>
</div>
</li>
<li class="media">
<div class="media-status">
<span class="label label-sm label-success">new</span>
</div>
<img class="media-object" src="../assets/layouts/layout/img/avatar7.jpg" alt="...">
<div class="media-body">
<h4 class="media-heading">Ernie Kyllonen</h4>
<div class="media-heading-sub"> Project Manager,
<br> SmartBizz PTL </div>
</div>
</li>
<li class="media">
<img class="media-object" src="../assets/layouts/layout/img/avatar8.jpg" alt="...">
<div class="media-body">
<h4 class="media-heading">Lisa Stone</h4>
<div class="media-heading-sub"> CTO, Keort Inc </div>
<div class="media-heading-small"> Last seen 13:10 PM </div>
</div>
</li>
<li class="media">
<div class="media-status">
<span class="badge badge-success">7</span>
</div>
<img class="media-object" src="../assets/layouts/layout/img/avatar9.jpg" alt="...">
<div class="media-body">
<h4 class="media-heading">Deon Portalatin</h4>
<div class="media-heading-sub"> CFO, H&D LTD </div>
</div>
</li>
<li class="media">
<img class="media-object" src="../assets/layouts/layout/img/avatar10.jpg" alt="...">
<div class="media-body">
<h4 class="media-heading">Irina Savikova</h4>
<div class="media-heading-sub"> CEO, Tizda Motors Inc </div>
</div>
</li>
<li class="media">
<div class="media-status">
<span class="badge badge-danger">4</span>
</div>
<img class="media-object" src="../assets/layouts/layout/img/avatar11.jpg" alt="...">
<div class="media-body">
<h4 class="media-heading">Maria Gomez</h4>
<div class="media-heading-sub"> Manager, Infomatic Inc </div>
<div class="media-heading-small"> Last seen 03:10 AM </div>
</div>
</li>
</ul>
</div>
<div class="page-quick-sidebar-item">
<div class="page-quick-sidebar-chat-user">
<div class="page-quick-sidebar-nav">
<a href="javascript:;" class="page-quick-sidebar-back-to-list">
<i class="icon-arrow-left"></i>Back</a>
</div>
<div class="page-quick-sidebar-chat-user-messages">
<div class="post out">
<img class="avatar" alt="" src="../assets/layouts/layout/img/avatar3.jpg" />
<div class="message">
<span class="arrow"></span>
<a href="javascript:;" class="name">Bob Nilson</a>
<span class="datetime">20:15</span>
<span class="body"> When could you send me the report ? </span>
</div>
</div>
<div class="post in">
<img class="avatar" alt="" src="../assets/layouts/layout/img/avatar2.jpg" />
<div class="message">
<span class="arrow"></span>
<a href="javascript:;" class="name">Ella Wong</a>
<span class="datetime">20:15</span>
<span class="body"> Its almost done. I will be sending it shortly </span>
</div>
</div>
<div class="post out">
<img class="avatar" alt="" src="../assets/layouts/layout/img/avatar3.jpg" />
<div class="message">
<span class="arrow"></span>
<a href="javascript:;" class="name">Bob Nilson</a>
<span class="datetime">20:15</span>
<span class="body"> Alright. Thanks! :) </span>
</div>
</div>
<div class="post in">
<img class="avatar" alt="" src="../assets/layouts/layout/img/avatar2.jpg" />
<div class="message">
<span class="arrow"></span>
<a href="javascript:;" class="name">Ella Wong</a>
<span class="datetime">20:16</span>
<span class="body"> You are most welcome. Sorry for the delay. </span>
</div>
</div>
<div class="post out">
<img class="avatar" alt="" src="../assets/layouts/layout/img/avatar3.jpg" />
<div class="message">
<span class="arrow"></span>
<a href="javascript:;" class="name">Bob Nilson</a>
<span class="datetime">20:17</span>
<span class="body"> No probs. Just take your time :) </span>
</div>
</div>
<div class="post in">
<img class="avatar" alt="" src="../assets/layouts/layout/img/avatar2.jpg" />
<div class="message">
<span class="arrow"></span>
<a href="javascript:;" class="name">Ella Wong</a>
<span class="datetime">20:40</span>
<span class="body"> Alright. I just emailed it to you. </span>
</div>
</div>
<div class="post out">
<img class="avatar" alt="" src="../assets/layouts/layout/img/avatar3.jpg" />
<div class="message">
<span class="arrow"></span>
<a href="javascript:;" class="name">Bob Nilson</a>
<span class="datetime">20:17</span>
<span class="body"> Great! Thanks. Will check it right away. </span>
</div>
</div>
<div class="post in">
<img class="avatar" alt="" src="../assets/layouts/layout/img/avatar2.jpg" />
<div class="message">
<span class="arrow"></span>
<a href="javascript:;" class="name">Ella Wong</a>
<span class="datetime">20:40</span>
<span class="body"> Please let me know if you have any comment. </span>
</div>
</div>
<div class="post out">
<img class="avatar" alt="" src="../assets/layouts/layout/img/avatar3.jpg" />
<div class="message">
<span class="arrow"></span>
<a href="javascript:;" class="name">Bob Nilson</a>
<span class="datetime">20:17</span>
<span class="body"> Sure. I will check and buzz you if anything needs to be corrected. </span>
</div>
</div>
</div>
<div class="page-quick-sidebar-chat-user-form">
<div class="input-group">
<input type="text" class="form-control" placeholder="Type a message here...">
<div class="input-group-btn">
<button type="button" class="btn green">
<i class="icon-paper-clip"></i>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="tab-pane page-quick-sidebar-alerts" id="quick_sidebar_tab_2">
<div class="page-quick-sidebar-alerts-list">
<h3 class="list-heading">General</h3>
<ul class="feeds list-items">
<li>
<div class="col1">
<div class="cont">
<div class="cont-col1">
<div class="label label-sm label-info">
<i class="fa fa-check"></i>
</div>
</div>
<div class="cont-col2">
<div class="desc"> You have 4 pending tasks.
<span class="label label-sm label-warning "> Take action
<i class="fa fa-share"></i>
</span>
</div>
</div>
</div>
</div>
<div class="col2">
<div class="date"> Just now </div>
</div>
</li>
<li>
<a href="javascript:;">
<div class="col1">
<div class="cont">
<div class="cont-col1">
<div class="label label-sm label-success">
<i class="fa fa-bar-chart-o"></i>
</div>
</div>
<div class="cont-col2">
<div class="desc"> Finance Report for year 2013 has been released. </div>
</div>
</div>
</div>
<div class="col2">
<div class="date"> 20 mins </div>
</div>
</a>
</li>
<li>
<div class="col1">
<div class="cont">
<div class="cont-col1">
<div class="label label-sm label-danger">
<i class="fa fa-user"></i>
</div>
</div>
<div class="cont-col2">
<div class="desc"> You have 5 pending membership that requires a quick review. </div>
</div>
</div>
</div>
<div class="col2">
<div class="date"> 24 mins </div>
</div>
</li>
<li>
<div class="col1">
<div class="cont">
<div class="cont-col1">
<div class="label label-sm label-info">
<i class="fa fa-shopping-cart"></i>
</div>
</div>
<div class="cont-col2">
<div class="desc"> New order received with
<span class="label label-sm label-success"> Reference Number: DR23923 </span>
</div>
</div>
</div>
</div>
<div class="col2">
<div class="date"> 30 mins </div>
</div>
</li>
<li>
<div class="col1">
<div class="cont">
<div class="cont-col1">
<div class="label label-sm label-success">
<i class="fa fa-user"></i>
</div>
</div>
<div class="cont-col2">
<div class="desc"> You have 5 pending membership that requires a quick review. </div>
</div>
</div>
</div>
<div class="col2">
<div class="date"> 24 mins </div>
</div>
</li>
<li>
<div class="col1">
<div class="cont">
<div class="cont-col1">
<div class="label label-sm label-info">
<i class="fa fa-bell-o"></i>
</div>
</div>
<div class="cont-col2">
<div class="desc"> Web server hardware needs to be upgraded.
<span class="label label-sm label-warning"> Overdue </span>
</div>
</div>
</div>
</div>
<div class="col2">
<div class="date"> 2 hours </div>
</div>
</li>
<li>
<a href="javascript:;">
<div class="col1">
<div class="cont">
<div class="cont-col1">
<div class="label label-sm label-default">
<i class="fa fa-briefcase"></i>
</div>
</div>
<div class="cont-col2">
<div class="desc"> IPO Report for year 2013 has been released. </div>
</div>
</div>
</div>
<div class="col2">
<div class="date"> 20 mins </div>
</div>
</a>
</li>
</ul>
<h3 class="list-heading">System</h3>
<ul class="feeds list-items">
<li>
<div class="col1">
<div class="cont">
<div class="cont-col1">
<div class="label label-sm label-info">
<i class="fa fa-check"></i>
</div>
</div>
<div class="cont-col2">
<div class="desc"> You have 4 pending tasks.
<span class="label label-sm label-warning "> Take action
<i class="fa fa-share"></i>
</span>
</div>
</div>
</div>
</div>
<div class="col2">
<div class="date"> Just now </div>
</div>
</li>
<li>
<a href="javascript:;">
<div class="col1">
<div class="cont">
<div class="cont-col1">
<div class="label label-sm label-danger">
<i class="fa fa-bar-chart-o"></i>
</div>
</div>
<div class="cont-col2">
<div class="desc"> Finance Report for year 2013 has been released. </div>
</div>
</div>
</div>
<div class="col2">
<div class="date"> 20 mins </div>
</div>
</a>
</li>
<li>
<div class="col1">
<div class="cont">
<div class="cont-col1">
<div class="label label-sm label-default">
<i class="fa fa-user"></i>
</div>
</div>
<div class="cont-col2">
<div class="desc"> You have 5 pending membership that requires a quick review. </div>
</div>
</div>
</div>
<div class="col2">
<div class="date"> 24 mins </div>
</div>
</li>
<li>
<div class="col1">
<div class="cont">
<div class="cont-col1">
<div class="label label-sm label-info">
<i class="fa fa-shopping-cart"></i>
</div>
</div>
<div class="cont-col2">
<div class="desc"> New order received with
<span class="label label-sm label-success"> Reference Number: DR23923 </span>
</div>
</div>
</div>
</div>
<div class="col2">
<div class="date"> 30 mins </div>
</div>
</li>
<li>
<div class="col1">
<div class="cont">
<div class="cont-col1">
<div class="label label-sm label-success">
<i class="fa fa-user"></i>
</div>
</div>
<div class="cont-col2">
<div class="desc"> You have 5 pending membership that requires a quick review. </div>
</div>
</div>
</div>
<div class="col2">
<div class="date"> 24 mins </div>
</div>
</li>
<li>
<div class="col1">
<div class="cont">
<div class="cont-col1">
<div class="label label-sm label-warning">
<i class="fa fa-bell-o"></i>
</div>
</div>
<div class="cont-col2">
<div class="desc"> Web server hardware needs to be upgraded.
<span class="label label-sm label-default "> Overdue </span>
</div>
</div>
</div>
</div>
<div class="col2">
<div class="date"> 2 hours </div>
</div>
</li>
<li>
<a href="javascript:;">
<div class="col1">
<div class="cont">
<div class="cont-col1">
<div class="label label-sm label-info">
<i class="fa fa-briefcase"></i>
</div>
</div>
<div class="cont-col2">
<div class="desc"> IPO Report for year 2013 has been released. </div>
</div>
</div>
</div>
<div class="col2">
<div class="date"> 20 mins </div>
</div>
</a>
</li>
</ul>
</div>
</div>
<div class="tab-pane page-quick-sidebar-settings" id="quick_sidebar_tab_3">
<div class="page-quick-sidebar-settings-list">
<h3 class="list-heading">General Settings</h3>
<ul class="list-items borderless">
<li> Enable Notifications
<input type="checkbox" class="make-switch" checked data-size="small" data-on-color="success" data-on-text="ON" data-off-color="default" data-off-text="OFF"> </li>
<li> Allow Tracking
<input type="checkbox" class="make-switch" data-size="small" data-on-color="info" data-on-text="ON" data-off-color="default" data-off-text="OFF"> </li>
<li> Log Errors
<input type="checkbox" class="make-switch" checked data-size="small" data-on-color="danger" data-on-text="ON" data-off-color="default" data-off-text="OFF"> </li>
<li> Auto Sumbit Issues
<input type="checkbox" class="make-switch" data-size="small" data-on-color="warning" data-on-text="ON" data-off-color="default" data-off-text="OFF"> </li>
<li> Enable SMS Alerts
<input type="checkbox" class="make-switch" checked data-size="small" data-on-color="success" data-on-text="ON" data-off-color="default" data-off-text="OFF"> </li>
</ul>
<h3 class="list-heading">System Settings</h3>
<ul class="list-items borderless">
<li> Security Level
<select class="form-control input-inline input-sm input-small">
<option value="1">Normal</option>
<option value="2" selected>Medium</option>
<option value="e">High</option>
</select>
</li>
<li> Failed Email Attempts
<input class="form-control input-inline input-sm input-small" value="5" /> </li>
<li> Secondary SMTP Port
<input class="form-control input-inline input-sm input-small" value="3560" /> </li>
<li> Notify On System Error
<input type="checkbox" class="make-switch" checked data-size="small" data-on-color="danger" data-on-text="ON" data-off-color="default" data-off-text="OFF"> </li>
<li> Notify On SMTP Error
<input type="checkbox" class="make-switch" checked data-size="small" data-on-color="warning" data-on-text="ON" data-off-color="default" data-off-text="OFF"> </li>
</ul>
<div class="inner-content">
<button class="btn btn-success">
<i class="icon-settings"></i> Save Changes</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- END QUICK SIDEBAR -->
</div>
<!-- END CONTAINER -->
<!-- BEGIN FOOTER -->
<div class="page-footer">
<div class="page-footer-inner"> 2016 © Metronic Theme By
<a target="_blank" href="http://keenthemes.com">Keenthemes</a> |
<a href="http://themeforest.net/item/metronic-responsive-admin-dashboard-template/4021469?ref=keenthemes" title="Purchase Metronic just for 27$ and get lifetime updates for free" target="_blank">Purchase Metronic!</a>
</div>
<div class="scroll-to-top">
<i class="icon-arrow-up"></i>
</div>
</div>
<!-- END FOOTER -->
</div>
<!-- BEGIN QUICK NAV -->
<nav class="quick-nav">
<a class="quick-nav-trigger" href="#0">
<span aria-hidden="true"></span>
</a>
<ul>
<li>
<a href="https://themeforest.net/item/metronic-responsive-admin-dashboard-template/4021469?ref=keenthemes" target="_blank" class="active">
<span>Purchase Metronic</span>
<i class="icon-basket"></i>
</a>
</li>
<li>
<a href="https://themeforest.net/item/metronic-responsive-admin-dashboard-template/reviews/4021469?ref=keenthemes" target="_blank">
<span>Customer Reviews</span>
<i class="icon-users"></i>
</a>
</li>
<li>
<a href="http://keenthemes.com/showcast/" target="_blank">
<span>Showcase</span>
<i class="icon-user"></i>
</a>
</li>
<li>
<a href="http://keenthemes.com/metronic-theme/changelog/" target="_blank">
<span>Changelog</span>
<i class="icon-graph"></i>
</a>
</li>
</ul>
<span aria-hidden="true" class="quick-nav-bg"></span>
</nav>
<div class="quick-nav-overlay"></div>
<!-- END QUICK NAV -->
<!--[if lt IE 9]>
<script src="../assets/global/plugins/respond.min.js"></script>
<script src="../assets/global/plugins/excanvas.min.js"></script>
<script src="../assets/global/plugins/ie8.fix.min.js"></script>
<![endif]-->
<!-- BEGIN CORE PLUGINS -->
<script src="../assets/global/plugins/jquery.min.js" type="text/javascript"></script>
<script src="../assets/global/plugins/bootstrap/js/bootstrap.min.js" type="text/javascript"></script>
<script src="../assets/global/plugins/js.cookie.min.js" type="text/javascript"></script>
<script src="../assets/global/plugins/jquery-slimscroll/jquery.slimscroll.min.js" type="text/javascript"></script>
<script src="../assets/global/plugins/jquery.blockui.min.js" type="text/javascript"></script>
<script src="../assets/global/plugins/bootstrap-switch/js/bootstrap-switch.min.js" type="text/javascript"></script>
<!-- END CORE PLUGINS -->
<!-- BEGIN PAGE LEVEL PLUGINS -->
<script src="../assets/global/plugins/ion.rangeslider/js/ion.rangeSlider.min.js" type="text/javascript"></script>
<script src="../assets/global/plugins/bootstrap-markdown/lib/markdown.js" type="text/javascript"></script>
<script src="./../assets/global/plugins/bootstrap-markdown/js/bootstrap-markdown.js" type="text/javascript"></script>
<script src="../assets/global/plugins/bootstrap-summernote/summernote.min.js" type="text/javascript"></script>
<!-- END PAGE LEVEL PLUGINS -->
<!-- BEGIN THEME GLOBAL SCRIPTS -->
<script src="../assets/global/scripts/app.min.js" type="text/javascript"></script>
<!-- END THEME GLOBAL SCRIPTS -->
<!-- BEGIN PAGE LEVEL SCRIPTS -->
<script src="../assets/pages/scripts/components-ion-sliders.min.js" type="text/javascript"></script>
<!-- END PAGE LEVEL SCRIPTS -->
<!-- BEGIN THEME LAYOUT SCRIPTS -->
<script src="../assets/layouts/layout/scripts/layout.min.js" type="text/javascript"></script>
<script src="../assets/layouts/layout/scripts/demo.min.js" type="text/javascript"></script>
<script src="../assets/layouts/global/scripts/quick-sidebar.min.js" type="text/javascript"></script>
<script src="../assets/layouts/global/scripts/quick-nav.min.js" type="text/javascript"></script>
<!-- END THEME LAYOUT SCRIPTS -->
</body>
</html> | Garulth/mdiary_admintools | public/layout/admin_1/components_ion_sliders.html | HTML | mit | 178,692 |
<!DOCTYPE html>
<script src='vendor/three.js/build/three.min.js'></script>
<script src='../threex.dilategeometry.js'></script>
<script src='../threex.atmospherematerial.js'></script>
<script src="../threex.geometricglowmesh.js"></script>
<!-- include for threex.atmospherematerialdatgui -->
<script src='vendor/three.js/examples/js/libs/dat.gui.min.js'></script>
<script src="../threex.atmospherematerialdatgui.js"></script>
<body style='margin: 0px; background-color: #000000; overflow: hidden;'><script>
var renderer = new THREE.WebGLRenderer();
renderer.setSize( window.innerWidth, window.innerHeight );
document.body.appendChild( renderer.domElement );
var updateFcts = [];
var scene = new THREE.Scene();
var camera = new THREE.PerspectiveCamera(45, window.innerWidth / window.innerHeight, 0.01, 100 );
camera.position.z = 3;
//////////////////////////////////////////////////////////////////////////////////
// add an object and make it move //
/////////////////////////////////////////////////////////////////////////////////
var geometry = new THREE.TorusKnotGeometry(1-0.25, 0.25, 32*3, 32);
// var geometry = new THREE.TorusGeometry(1-0.25, 0.25);
// var geometry = new THREE.SphereGeometry(1, 32, 16);
// var geometry = new THREE.CubeGeometry(1,1,1, 10, 10, 10);
var material = new THREE.MeshBasicMaterial({
color : new THREE.Color('gray')
})
var mesh = new THREE.Mesh( geometry, material );
// mesh.visible = false
scene.add( mesh );
//////////////////////////////////////////////////////////////////////////////////
// create the glowMesh //
//////////////////////////////////////////////////////////////////////////////////
// create a glowMesh
var glowMesh = new THREEx.GeometricGlowMesh(mesh)
mesh.add(glowMesh.object3d)
//////////////////////////////////////////////////////////////////////////////////
// customize glow mesh if needed //
//////////////////////////////////////////////////////////////////////////////////
// example of customization of the default glowMesh
var insideUniforms = glowMesh.insideMesh.material.uniforms
insideUniforms.glowColor.value.set('hotpink')
var outsideUniforms = glowMesh.outsideMesh.material.uniforms
outsideUniforms.glowColor.value.set('hotpink')
//////////////////////////////////////////////////////////////////////////////////
// add dat.GUI for fine tuning //
//////////////////////////////////////////////////////////////////////////////////
// setup a datGUI for it
var datGUI = new dat.GUI()
new THREEx.addAtmosphereMaterial2DatGui(glowMesh.insideMesh.material, datGUI)
new THREEx.addAtmosphereMaterial2DatGui(glowMesh.outsideMesh.material, datGUI)
//////////////////////////////////////////////////////////////////////////////////
// Camera Controls //
//////////////////////////////////////////////////////////////////////////////////
var mouse = {x : 0, y : 0}
document.addEventListener('mousemove', function(event){
mouse.x = (event.clientX / window.innerWidth ) - 0.5
mouse.y = (event.clientY / window.innerHeight) - 0.5
}, false)
updateFcts.push(function(delta, now){
camera.position.x += (mouse.x*10 - camera.position.x) * (delta*3)
camera.position.y += (mouse.y*10 - camera.position.y) * (delta*3)
camera.lookAt( scene.position )
})
//////////////////////////////////////////////////////////////////////////////////
// render the scene //
//////////////////////////////////////////////////////////////////////////////////
updateFcts.push(function(){
renderer.render( scene, camera );
})
//////////////////////////////////////////////////////////////////////////////////
// loop runner //
//////////////////////////////////////////////////////////////////////////////////
var lastTimeMsec= null
requestAnimationFrame(function animate(nowMsec){
// keep looping
requestAnimationFrame( animate );
// measure time
lastTimeMsec = lastTimeMsec || nowMsec-1000/60
var deltaMsec = Math.min(200, nowMsec - lastTimeMsec)
lastTimeMsec = nowMsec
// call each update function
updateFcts.forEach(function(updateFn){
updateFn(deltaMsec/1000, nowMsec/1000)
})
})
</script></body>
| jeromeetienne/threex-playground | bower_components/threex.geometricglow/examples/geometricglowmesh.html | HTML | mit | 4,197 |
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>查询</title>
<meta name="description" content="A framework for easily creating beautiful presentations using HTML">
<meta name="author" content="Hakim El Hattab">
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link rel="stylesheet" href="css/reveal.min.css">
<link rel="stylesheet" href="css/theme/default.css" id="theme">
<!-- For syntax highlighting -->
<link rel="stylesheet" href="lib/css/zenburn.css">
<!-- If the query includes 'print-pdf', include the PDF print sheet -->
<script>
if( window.location.search.match( /print-pdf/gi ) ) {
var link = document.createElement( 'link' );
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = 'css/print/pdf.css';
document.getElementsByTagName( 'head' )[0].appendChild( link );
}
</script>
<!--[if lt IE 9]>
<script src="lib/js/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<div class="reveal">
<!-- Any section element inside of this container is displayed as a slide -->
<div class="slides">
<section data-background="#4d7e65">
<h1>查询</h1>
<h3>Active Record Querying</h3>
<p>
<small>Created by <a href="http://iwangzheng.com">王筝</a></small>
</p>
</section>
<section data-background="#8c4738" >
<h2>从数据库中获取对象</h2>
<p>
bind create_with distinct eager_load
extending from group having
includes joins limit lock
none offset order preload
readonly references reorder
reverse_order select uniq where
</p>
</section>
<section>
<section data-background="#007777" data-markdown>
<script type="text/template">
###获取单个对象
* find 使用主键获取对象
* take 不考虑顺序获取一个记录
* first/last 主键生/降序取数据
* find_by 满足条件第一个
</script>
</section>
<section data-markdown>
<script type="text/template">
CmsTudouTvChannelVideo.find(1)
获取id=1
</script>
</section>
<section data-markdown>
<script type="text/template">
* take4.0.2+
CmsTudouTvChannelVideo.take
无记录返回nil
CmsTudouTvChannelVideo.take!
无记录会抛出 ActiveRecord::RecordNotFound 异常
</script>
</section>
<section data-markdown>
<script type="text/template">
* first/last
CmsTudouTvChannelVideo.first
CmsTudouTvChannelVideo.last
无记录返回nil
CmsTudouTvChannelVideo.first!
CmsTudouTvChannelVideo.last!
无记录抛异常
</script>
</section>
<section data-markdown>
<script type="text/template">
* find_by v4.0.2+
Client.find_by name:'HanPeipei'
无记录返回nil
Client.find_by! name:'HanPeipei'
无记录抛异常
CmsTudouTvChannelVideo.find_by_title:"火影忍者"
CmsTudouTvChannelVideo.find_by_show_id:"115971"
</script>
</section>
</section>
<section data-background="#007777" >
<section data-markdown>
<script type="text/template">
###获取多个对象
* Model.find(array_of_primary_key)
* Model.take(n)
* Model.first(n)
* Model.last(n)
</script>
</section>
<section data-markdown>
<script type="text/template">
CmsTudouTvChannelVideo.find([1,5])
只要有一个主键对应的记录未找到,抛异常
</script>
</section>
<section data-markdown>
<script type="text/template">
###v4.0.2 +
Client.take(n)
SELECT * FROM clients LIMIT 2
</script>
</section>
<section data-markdown>
<script type="text/template">
###主键排序
CmsTudouTvChannelVideo.first(3)
CmsTudouTvChannelVideo.last(3)
</script>
</section>
</section>
<section data-background="#007777">
<section data-markdown>
<script type="text/template">
###批量获取多个对象
应用:给大量用户发邮件,数据导出
分批处理无法一次载入内存的海量数据
* find_each 获取一批记录,分别把每个记录传入代码块
* find_in_batches 获取一批记录,把整批记录作为数组传入
</br>
</script>
</section>
<section data-markdown >
<script type="text/template">
each:
User.all.each do |user|
NewsLetter.deliver(user)
end
读取整个数据库表,整个模型对象数组存入内存
</script>
</section>
<section data-markdown >
<script type="text/template">
find_each:
User.find_each do |user|
NewsLetter.deliver(user)
end
* :batch_size每批次的记录数量
* :start 从主键为某数的记录作为起始点
User.find_each(:start:2000,batch_size:5000) do |user|
NewsLetter.deliver(user)
end
</script>
</section>
<section data-markdown >
<script type="text/template">
find_in_batches:
* :batch_size每批次的记录数量
* :start 从主键为某数的记录作为起始点
</script>
</section>
</section>
<section>
<section data-markdown >
<script type="text/template">
###条件查询
where方法的条件可以使用字符串数组Hash
</script>
</section>
<section data-markdown >
<script type="text/template">
###纯字符串查询
Client.where("state = 1")
</script>
</section>
<section data-markdown >
<script type="text/template">
###动态生成条件
Client.where("orders_count = ? AND locked = ?", params[:orders], false)
</script>
</section>
<section data-markdown >
<script type="text/template">
###Hash形式的占位符
用于多条参数的情况,增加代码可读性
Client.where("created_at >= :start_date AND created_at <= :end_date",
{start_date: params[:start_date], end_date: params[:end_date]})
</script>
</section>
<section data-markdown >
<script type="text/template">
###Hash条件
Client.where(locked: true)
Client.where('locked' => true)
</script>
</section>
<section data-markdown >
<script type="text/template">
###范围
Client.where(created_at: (Time.now.midnight - 1.day)..Time.now.midnight)
</script>
</section>
<section data-markdown >
<script type="text/template">
###子集(Hash条件中使用数组)
Client.where(age: [21,33,25])
</script>
</section>
<section data-markdown >
<script type="text/template">
###not条件
Post.where.not(author: author)
</script>
</section>
</section>
<section>
<section data-markdown >
<script type="text/template">
###order排序(默认升序)
Client.order(:created_at)
Client.order(created_at: :desc)
Client.order(:orders_count, created_at: :desc)
</script>
</section>
</section>
<section>
<section data-markdown >
<script type="text/template">
###select查询指定的字段
Client.select("viewable_by, locked")
Client.select(:name).distinct
</script>
</section>
</section>
<section data-markdown>
<script type="text/template">
###限量和偏移
###limit 方法指定获取的记录数量,offset 方法指定在返回结果之前跳过多少个记录
Client.limit(5).offset(30)
</script>
</section>
<section data-markdown>
<script type="text/template">
###group分组,分组后的条件筛选having
Order.select("date(created_at) as ordered_date, sum(price) as total_price").
group("date(created_at)").having("sum(price) > ?", 100)`
</script>
</section>
<section>
<section data-markdown>
<script type="text/template">
###条件覆盖
* unscope 删除某个查询条件
* only 设置生效的查询方法
</script>
</section>
<section data-markdown>
<script type="text/template">
###unscope
Post.where('id > 10').limit(20).order('id asc').unscope(:order)
SELECT * FROM posts WHERE id > 10 LIMIT 20
</script>
</section>
<section data-markdown>
<script type="text/template">
###only
Post.where('id > 10').limit(20).order('id desc').only(:order, :where)
SELECT * FROM posts WHERE id > 10 ORDER BY id DESC
</script>
</section>
</section>
<section id="transitions">
<section data-markdown>
<script type="type/template">
* readonly 方法,禁止修改获取的对象
client = Client.readonly.first
client.visits += 1
client.save
抛出 ActiveRecord::ReadOnlyRecord 异常
</script>
</section>
</section>
<section id="transitions">
<section data-markdown>
<script type="type/template">
###scope常用的查询定义成方法,在关联对象或模型上调用
class Post < ActiveRecord::Base
scope :published, -> { where(published: true) }
end
class Post < ActiveRecord::Base
def self.published
where(published: true)
end
end
class Post < ActiveRecord::Base
scope :created_before, ->(time) { where("created_at < ?", time) }
end
Post.created_before(Time.zone.now)
</script>
</section>
<section data-markdown>
<script type="text/template">
###合并scope
class User < ActiveRecord::Base
scope :active, -> { where state: 'active' }
scope :inactive, -> { where state: 'inactive' }
end
User.active.inactive
</script>
</section>
<section data-markdown>
<script type="text/template">
###指定默认scope
class Client < ActiveRecord::Base
default_scope { where("VIP = true") }
end
</script>
</section>
<section data-markdown>
<script type="text/template">
###删除所有scope
Client.unscoped.load
</script>
</section>
</section>
<section id="themes">
<section data-markdown>
<script type="text/template">
###动态查询方法
* Active Record 为数据表中的每个字段都提供了一个查询方法
在Client模型中有个 first_name 字段,
那么Active Record 就会生成 find_by_first_name 方法
</script>
</section>
</section>
<section>
<section data-markdown>
<script type="text/template">
###查找并构建新对象
* find_or_create_by
* find_or_initialize_by
</script>
</section>
<section data-markdown>
<script type="text/template">
* find_or_create_by 方法首先检查指定属性对应的记录是否存在,
如果不存在就调用 create 方法,返回现有的记录或者新建的记录
Client.find_or_create_by(first_name: 'Andy')
</script>
</section>
<section data-markdown>
<script type="text/template">
* find_or_initialize_by不存在调用new方法,也就是说新建的模型实例在内存中,没有存入数据库
nick = Client.find_or_initialize_by(first_name: 'Nick')
nick.persisted?
# =>false
nick.new_record?
# => true
nike.save
</script>
</section>
</section>
<section data-state="customevent">
<section data-markdown>
<script type="text/template">
* find_by_sql 返回由记录组成的数组
Client.find_by_sql("SELECT * FROM clients
INNER JOIN orders ON clients.id = orders.client_id
ORDER BY clients.created_at desc")
</script>
</section>
<section data-markdown>
<script type="text/template">
* pluck 参数是一组字段名,返回结果是由各字段的值组成的数组
* 不生成 Active Record 对象
Client.where(active: true).pluck(:id)
# SELECT id FROM clients WHERE active = 1
# => [1, 2, 3]
Client.distinct.pluck(:role)
# SELECT DISTINCT role FROM clients
# => ['admin', 'member', 'guest']
Client.pluck(:id, :name)
# SELECT clients.id, clients.name FROM clients
# => [[1, 'David'], [2, 'Jeremy'], [3, 'Jose']]
</script>
</section>
</section>
<section>
<section data-markdown data-background="#007777">
<script type="text/template">
* ids直接获取数据表的主键
Person.ids
#=> SELECT id FROM table
</script>
</section>
</section>
<section data-transition="linear" data-background="#4d7e65" data-background-transition="slide">
<section data-background="#00777" data-markdown>
<script type="text/template">
####exists 检查对象是否存在
Client.exists?(1)
Client.exists?(name: ['John', 'Sergei'])
Client.where(first_name: 'Ryan').exists?
</script>
</section>
</section>
<section data-transition="linear" data-background="#8c4738" data-background-transition="slide">
<section data-markdown>
<script type="text/template">
####计算
* 计数count
* 平均值average
* 最小值minimum
* 最大值 maximum
* 求和 sum
</script>
</section>
<section data-markdown>
<script type="text/template">
* count
Client.count
Client.where(first_name: 'Ryan').count
</script>
</section>
<section data-markdown>
<script type="text/template">
* average
Client.average("orders_count")
</script>
</section>
<section data-markdown>
<script type="text/template">
* minimum/maximum
Client.minimum("age")
Client.maximum("age")
</script>
</section>
<section data-markdown>
<script type="text/template">
* sum
Client.sum("orders_count")
Client.maximum("age")
</script>
</section>
</section>
<section>
<h1>THE END</h1>
</section>
</div>
</div>
<script src="lib/js/head.min.js"></script>
<script src="js/reveal.min.js"></script>
<script>
// Full list of configuration options available here:
// https://github.com/hakimel/reveal.js#configuration
Reveal.initialize({
controls: true,
progress: true,
history: true,
center: true,
theme: Reveal.getQueryHash().theme, // available themes are in /css/theme
transition: Reveal.getQueryHash().transition || 'default', // default/cube/page/concave/zoom/linear/fade/none
// Parallax scrolling
// parallaxBackgroundImage: 'https://s3.amazonaws.com/hakim-static/reveal-js/reveal-parallax-1.jpg',
// parallaxBackgroundSize: '2100px 900px',
// Optional libraries used to extend on reveal.js
dependencies: [
{ src: 'lib/js/classList.js', condition: function() { return !document.body.classList; } },
{ src: 'plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: 'plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: 'plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } },
{ src: 'plugin/zoom-js/zoom.js', async: true, condition: function() { return !!document.body.classList; } },
{ src: 'plugin/notes/notes.js', async: true, condition: function() { return !!document.body.classList; } }
]
});
</script>
</body>
</html>
| shiralwz/shared | index.html | HTML | mit | 17,961 |
<!DOCTYPE html>
<html>
<head>
<title>angular-bootstrap-select demo</title>
<meta charset="utf-8"/>
<link rel="stylesheet" href="demo/vendor.min.css">
<script src="demo/vendor.min.js"></script>
<script src="dist/angular-bootstrap-select-tpls.js"></script>
<script src="demo/demo.js"></script>
</head>
<body ng-app="absDemo">
<div ng-controller="absDemoCtrl as abs">
<bootstrap-select options="abs.options"
selection="abs.selection1"
change-callback="abs.change()"
simple
multiple>
</bootstrap-select>
<select bootstrap-select
options="abs.complex"
selection="abs.selection2"
multiple>
</select>
</div>
</body>
</html> | rkurbatov/angular-bootstrap-select | demo.html | HTML | mit | 780 |
<h3 class="">
{{product.name}}
<em class="pull-right">{{product.price | currency }}</em>
</h3>
| bionikspoon/gem-store | app/views/templates/product-title.html | HTML | mit | 104 |
<!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>葡萄藤PPT</title>
<link rel="stylesheet" href="https://ptteng.github.io/PPT/css/reveal/reveal.css">
<!-- PPT主题,可以在/css/reveal/theme/中选择其他主题,目前暂时只能使用该模板 -->
<link rel="stylesheet" href="https://ptteng.github.io/PPT/css/reveal/theme/ptt.css">
<!-- syntax highlighting 代码高亮主题 -->
<link rel="stylesheet" href="https://ptteng.github.io/PPT/lib/reveal/css/zenburn.css">
<!-- 打印和PDF输出样式 -->
<script>
var link = document.createElement( 'link' );
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = window.location.search.match( /print-pdf/gi ) ? 'https://ptteng.github.io/PPT/css/reveal/print/pdf.css' : '../css/reveal/print/paper.css';
document.getElementsByTagName( 'head' )[0].appendChild( link );
</script>
</head>
<body>
<img src="https://ptteng.github.io/PPT/img/demo/logo.png" alt="" usemap="#pttmap" class="base-logo">
<map name="pttmap">
<area shape="rect" coords="0,0,276,58" href="http://www.jnshu.com" alt="" target="_blank"/>
</map>
<div class="reveal">
<div class="slides">
<section>
<h2>Filter和Interceptor的区别</h2>
<p></p>
<h3>java分享会</h3>
<p>分享人:张鑫</p>
</section>
<section>
<p>1.背景介绍</p>
<p>2.知识剖析</p>
<p>3.常见问题</p>
<p>4.解决方案</p>
<p>5.编码实战</p>
<p>6.扩展思考</p>
<p>7.参考文献</p>
<p>8.更多讨论</p>
</section>
<section>
<h3>1.背景介绍</h3>
</section>
<section>
<p>为什么要深入了解Filter和Interceptor</p>
<p>Filter和Interceptor是我们在做任务时(主要是任务二和任务五)常用的配置,比如字符集过滤以及自动认证拦截器,但是filter和Interceptor到底是如何工作的,两者有什么区别,最重要的是如何利用它们完成更多其他的功能,这些都需要我们进一步的了解掌握</p>
</section>
<section>
<h3>2.知识剖析</h3>
</section>
<section>
<p>Filter和Interceptor的概念</p>
<p>Filter可以认为是Servlet的一种“加强版”,它主要用于对用户请求进行预处理,也可以对HttpServletResponse进行后处理,是个典型的处理链。使用Filter完整的流程是:Filter对用户请求进行预处理,接着将请求交给Servlet进行处理并生成响应,最后Filter再对服务器响应进行后处理。</p>
<p>Interceptor是动态拦截Action调用的对象。它提供了一种机制可以使开发者可以定义在一个Action执行的前后执行的代码,也可以在一个Action执行前阻止其执行。同时也提供了一种可以提取Action中可重用的部分的方式。</p>
</section>
<section>
<section>
<p>Filter和Interceptor的作用</p>
</section>
<section>
<p>Filter的作用</p>
<p>1.在HttpServletRequest到达Servlet之前,拦截客户的HttpServletRequest</p>
<p>2.根据需要检查HttpServletRequest,也可以修改HttpServletRequest头和数据。</p>
<p>3.在HttpServletResponse到达客户端之前,拦截HttpServletResponse。</p>
<p>4.根据需要检查HttpServletResponse,也可以修改HttpServletResponse头和数据。</p>
<p>通俗点说就是"欺上瞒下",不论是客户端的请求还是处理之后的响应都经过一番包装或更改之后再传递,只给你我想给你的</p>
</section>
<section>
<p>Interceptor的作用</p>
<p>最主要的作用就是在请求到达控制器(servlet)之前进行筛选拦截,对拦截到的请求执行某些功能,也可以选择是否将请求送达控制器.</p>
<p>通俗点说就是看门的,不论是什么请求我让你通过你才能通过,不符合规则的一律不让通过</p>
</section>
</section>
<section>
<p>Filter和Interceptor的区别</p>
<p>1. Filter是基于函数回调的,而Interceptor则是基于Java反射的。</p>
<p>2. Filter依赖于Servlet容器,而Interceptor不依赖于Servlet容器。</p>
<p>3. Filter对几乎所有的请求起作用,而Interceptor只能对action请求起作用。</p>
<p>4. 在action的生命周期里,Interceptor可以被多次调用,而Filter只能在容器初始化时调用一次。所以Fileter配置在web.xml中,而Interceptor配置在springmvc-servlet.xml中.</p>
<p>执行顺序. 过滤前-拦截前-控制器执行-拦截后-过滤后</p>
</section>
<section>
<section>
<p>Filter,Interceptor和AOP的关系</p>
<p>Filter和Interceptor都是可以在控制器执行的前后额外的执行一些动作,乍一看和AOP一样,那么Filter和Inteceptor是不是都是AOP呢?两者是不是一个东西呢?</p>
</section>
<section>
<p>答案是否定的.</p>
<p>Interceptor和AOP可以看作是类似的,因为其内部实现原理都是利用JAVA的反射机制(AOP是使用动态代理,动态代理的实现就是java反射机制).但是Filter和Interceptor有本质上的区别.其实现是通过回调函数.两者的控制粒度也不同,AOP和Interceptor的控制粒度都是方法级别,但是Filter的控制粒度就是servlet容器,它只能在servlet容器执行前后进行处理</p>
<p></p>
</section>
</section>
<section>
<h3>3.常见问题</h3>
</section>
<section>
<p> 如何获取页面表单的隐藏属性中设置的HTTP方法</p>
</section>
<section>
<h3>4.解决方案</h3>
</section>
<section>
<p> 通过配置filter过滤器来获取真正请求的HTTP方法</p>
</section>
<section>
<h3>5.编码实战</h3>
</section>
<section>
<h3>6.扩展思考</h3>
</section>
<section>
<p>Filter和Interceptor还有什么用法</p>
</section>
<section>
<p>Filter还可以用于敏感词汇过滤,压缩响应信息等</p>
<p>Interceptor一般主要就是用于自动登陆认证</p>
</section>
<section>
<h3>7.参考文献</h3>
<p>参考一:<a href="http://blog.csdn.net/xiaodanjava/article/details/32125687"
target="_blank">过滤器(Filter)和拦截器(Interceptor)的区别</a></p>
<p>参考二:<a href="http://blog.csdn.net/reggergdsg/article/details/52962774"
target="_blank">Java三大器(过滤器,监听器,拦截器)</a></p>
<p>参考三:<a href="https://stackoverflow.com/questions/24673041/405-jsp-error-with-put-method"
target="_blank">解决tomcat8无法处理PUT和DELETE请求的问题</a></p>
</section>
<section>
<h3>8.更多讨论</h3>
<p></p>
</section>
<section>
<h4>鸣谢</h4>
<p>感谢观看,如有出错,恳请指正</p>
<p><small>BY : 张鑫</small></p>
</section>
</div>
</div>
<script src="https://ptteng.github.io/PPT/lib/reveal/js/head.min.js"></script>
<script src="https://ptteng.github.io/PPT/lib/reveal/reveal.js"></script>
<script>
// 以下为常见配置属性的默认值
// {
// controls: true, // 是否在右下角展示控制条
// progress: true, // 是否显示演示的进度条
// slideNumber: false, // 是否显示当前幻灯片的页数编号,也可以使用代码slideNumber: 'c / t' ,表示当前页/总页数。
// history: false, // 是否将每个幻灯片改变加入到浏览器的历史记录中去
// keyboard: true, // 是否启用键盘快捷键来导航
// overview: true, // 是否启用幻灯片的概览模式,可使用"Esc"或"o"键来切换概览模式
// center: true, // 是否将幻灯片垂直居中
// touch: true, // 是否在触屏设备上启用触摸滑动切换
// loop: false, // 是否循环演示
// rtl: false, // 是否将演示的方向变成RTL,即从右往左
// fragments: true, // 全局开启和关闭碎片。
// autoSlide: 0, // 两个幻灯片之间自动切换的时间间隔(毫秒),当设置成 0 的时候则禁止自动切换,该值可以被幻灯片上的 ` data-autoslide` 属性覆盖
// transition: 'default', // 切换过渡效果,有none/fade/slide/convex/concave/zoom
// transitionSpeed: 'default', // 过渡速度,default/fast/slow
// mouseWheel: true, //是否启用通过鼠标滚轮来切换幻灯片
// }
// 初始化幻灯片
Reveal.initialize({
history: true,
dependencies: [
{ src: 'https://ptteng.github.io/PPT/plugin/markdown/marked.js' },
{ src: 'https://ptteng.github.io/PPT/plugin/markdown/markdown.js' },
{ src: 'https://ptteng.github.io/PPT/plugin/notes/notes.js', async: true },
{ src: 'https://ptteng.github.io/PPT/plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } }
]
});
</script>
</body>
</html>
| ptteng/PPT | PPT-java/Java-task2-Filter and Interceptor.html | HTML | mit | 10,057 |
<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">ㄔㄥ<sup class="subfont">ˊ</sup> ㄓㄨ<sup class="subfont">ˊ</sup> ㄗㄞ<sup class="subfont">ˋ</sup> ㄒㄩㄥ</td></tr>
<tr><th class="ztd1"><b>漢語拼音 </b></th><td class="ztd2"><font class="english_word">chéng zhú zài xiōng</font></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%22CW0000000009%22.%26v%3D-1" class="clink" target=_blank>胸有成竹</a>」。見「<a href="/cgi-bin/cydic/gsweb.cgi?o=dcydic&schfmt=text&gourl=%3De0%26sec%3Dsec1%26op%3Dsid%3D%22CW0000000009%22.%26v%3D-1" class="clink" target=_blank>胸有成竹</a>」條。</font></td></tr>
<tr><th class="ztd1"><b><style>.tableoutfmt2 .std1{width:3%;}</style></b></th><td class="ztd2"><table class="fmt16_table"><tr><td width=150 style="text-align:left;" class="fmt16_td1" ><b>參考詞語︰</b></td><td width=150 style="text-align:left;" class="fmt16_td2" ><a href="/cgi-bin/cydic/gsweb.cgi?o=dcydic&schfmt=text&gourl=%3De0%26sec%3Dsec1%26op%3Dsid%3D%22CW0000000009%22.%26v%3D-1" class="clink" target=_blank>胸有成竹</a></td></tr><tr><td width=150 style="text-align:left;" class="fmt16_td1" ><b>注音︰</b></td><td width=150 style="text-align:left;" class="fmt16_td2" >ㄒㄩㄥ |ㄡ<sup class="subfont">ˇ</sup> ㄔㄥ<sup class="subfont">ˊ</sup> ㄓㄨ<sup class="subfont">ˊ</sup></td></tr><tr><td width=150 style="text-align:left;" class="fmt16_td1" ><b>漢語拼音︰</b></td><td width=150 style="text-align:left;" class="fmt16_td2" ><font class="english_word">xiōng yǒu chéng zhú</font></td></tr></table><br><br></td></tr>
</td></tr></table></div> <!-- layoutclass_first_pic --><div class="layoutclass_second_pic"></div> <!-- layoutclass_second_pic --></div> <!-- layoutclass_pic --></td></tr></table>
| BuzzAcademy/idioms-moe-unformatted-data | all-data/0-999/432-34.html | HTML | mit | 2,298 |
<!DOCTYPE html><html><head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Page Not Found</title>
<style>
:root { --gray: #61656D; --primary: #A463F2; }
html, body { margin: 0; font-family: sans-serif; font-size: 16px; line-height: 1.4; border-top: 4px solid var(--primary); }
a { text-decoration: none; color: var(--primary); cursor: pointer; }
a:hover { text-decoration: underline; }
.has-text-centered { text-align: center; }
.title { font-weight: normal; font-size: 1.75rem; margin-top: 0; }
.subtitle { font-weight: 300; font-size: 1.25rem; color: var(--gray); margin-top: 0; }
.error-page { margin: 40vh auto 2rem; }
</style>
</head>
<body>
<div class="error-page has-text-centered">
<h1 class="title">404</h1>
<h2 class="subtitle">Page not found.</h2>
<a href="/" class="">← Back home</a>
</div>
</body>
</html>
| kiasaki/kiasaki.github.io | 404.html | HTML | mit | 892 |
<!DOCTYPE>
<html>
<head>
<script src="codemirror/lib/codemirror.js"></script>
<link rel="stylesheet" href="codemirror/lib/codemirror.css" />
<script src="codemirror/mode/javascript/javascript.js"></script>
</head>
<body>
<p><textarea id="code-js">var widgets = []
function updateHints() {
editor.operation(function(){
for (var i = 0; i < widgets.length; ++i)
editor.removeLineWidget(widgets[i]);
widgets.length = 0;
JSHINT(editor.getValue());
for (var i = 0; i < JSHINT.errors.length; ++i) {
var err = JSHINT.errors[i];
if (!err) continue;
var msg = document.createElement("div");
var icon = msg.appendChild(document.createElement("span"));
icon.innerHTML = "!!";
icon.className = "lint-error-icon";
msg.appendChild(document.createTextNode(err.reason));
msg.className = "lint-error";
widgets.push(editor.addLineWidget(err.line - 1, msg, {coverGutter: false, noHScroll: true}));
}
});
var info = editor.getScrollInfo();
var after = editor.charCoords({line: editor.getCursor().line + 1, ch: 0}, "local").top;
if (info.top + info.clientHeight < after)
editor.scrollTo(null, after - info.clientHeight + 3);
}
</textarea></p>
</body>
<style>
#code-wrapper {
width: 100%;
height: 500px;
}
;
</style>
<script>
let code = document.querySelector("#code-js");
let mirror = CodeMirror.fromTextArea(code, {
mode: "javascript",
lineNumbers: true
})
</script>
</html> | zxqian1991/angular2-build | test/codemirror/index.html | HTML | mit | 1,528 |
<h3>Images Page
<a style="float:right" href="" ng-if="(level == 'admin')" class="btn btn-add" ui-sref="admin.slides.add"><i class='fa fa-plus'></i>Add Image</a>
</h3>
<div class="ui four cards">
<div class="card" ng-repeat="image in slides.data" ng-if="image.path!=''">
<div class="image">
<img src="{{image.uri}}">
</div>
<div class="content">
<a class="header">{{image.name}}</a>
<div class="meta">
<span class="date">Modified <span am-time-ago="image.timestamp" am-preprocess="unix"></span></span>
</div>
<div class="description">
</div>
</div>
<div class="extra content">
<a href="" ng-click="archiveSlide(image)"><i class='icon archive'></i>Archive</a>
<a href="" ng-click="removeSlide(image)"><i class='icon remove'></i>Remove</a>
</div>
</div>
</div>
| RufusMbugua/nqcl | app/partials/slides/list.html | HTML | mit | 847 |
<div class="gh-map-container">
<div class="gh-map" id="map"></div>
</div>
| Kasheftin/graphhopper-frontend | js/widgets/map-leaflet/main.html | HTML | mit | 75 |
<h1><code ng:non-bindable="">PagarMeHttpConfig</code>
<div><span class="hint">overview in module <code ng:non-bindable="">pagarMe</code>
</span>
</div>
</h1>
<div><h2 id="dependencies">Dependencies</h2>
<ul class="dependencies"><li><code ng:non-bindable=""><a href="#/api/ng.$httpProvider">$httpProvider</a></code>
</li>
</ul>
<div class="pagarme-config-page pagarme-config-pagarmehttpconfig-page"><p>Configure $http to add a interceptor for set api key for all requests.</p>
</div></div>
| davidsonalencar/pagarme-challenge | docs/partials/api/pagarMe.config.PagarMeHttpConfig.html | HTML | mit | 489 |
{% extends "base.html" %}
{% block content %}
<div class='bs-docs-section'>
<div class='row'>
<div class='col-lg-12'>
<div class='page-header'>
<h1>Please Sign In</h1>
</div>
</div>
</div>
<div class='row'>
<div class='col-lg-8'>
<div class='well bs-component'>
<p>
{% for name in login_urls %}
<a href='{{ login_urls[name] }}' class='btn btn-primary btn-lg'>{{ name }}</a>
{% endfor %}
</p>
</div>
</div>
</div>
</div>
<form role='form'>
</form>
{% endblock %}
| cloud-io/CloudUp | templates/signin.html | HTML | mit | 610 |
<!doctype html><summary><article></summary>a
| robashton/zombify | src/node_modules/zombie/node_modules/html5/data/tree-construction/tests19.dat-101/input.html | HTML | mit | 46 |
<!doctype html>
<html>
<head>
<title>linkHasAUniqueContext</title>
</head>
<body>
<div data-expected="inapplicable">
<p><!-- No links here --></p>
</div>
<div data-expected="pass">
<!-- Different link content -->
<a id="assert-1" href="dogs">aaa</a>
<a id="assert-2" href="cats">bbb</a>
</div>
<div data-expected="pass">
<!-- same URL -->
<a id="assert-3" href="dogs">Dogs!</a>
<a id="assert-4" href="dogs">Dogs!</a>
</div>
<div data-expected="pass">
<!-- Different img alt -->
<a id="assert-5" href="dogs"><img alt="Dogs!">Read more</a>
<a id="assert-6" href="cats"><img alt="Cats!">Read more</a>
</div>
<div data-expected="pass">
<!-- Different title -->
<a id="assert-7" href="dogs" title="dogs">Read more</a>
<a id="assert-8" href="cats" title="cats">Read more</a>
</div>
<div data-expected="pass">
<!-- Context paragraph -->
<p>Dogs! - <a id="assert-9" href="dogs">Read more</a></p>
<p>Cats! - <a id="assert-10" href="cats">Read more</a></p>
</div>
<div data-expected="pass">
<!-- Context list items -->
<ul>
<li>Dogs! - <a id="assert-11" href="dogs">Read more</a></li>
<li>Cats! - <a id="assert-12" href="cats">Read more</a></li>
</ul>
</div>
<div data-expected="pass">
<!-- Context list items -->
<dl>
<dd>Dogs! - <a id="assert-13" href="dogs">Read more</a></dd>
<dd>Cats! - <a id="assert-14" href="cats">Read more</a></dd>
<dt>Cows! - <a id="assert-15" href="cows">Read more</a></dt>
<dt>Horses! - <a id="assert-16" href="horses">Read more</a></dt>
</dl>
</div>
<div data-expected="pass">
<!-- Context heading -->
<table><tr>
<td>Dogs! - <i><a id="assert-17" href="dogs">Read more</a></i></td>
<td><i>Cats</i>! - <a id="assert-18" href="cats">Read more</a></td>
</tr></table>
</div>
<div data-expected="fail">
<!-- link text title -->
<a id="assert-19" href="dogs" class="quail-failed-element">Read more</a>
<a id="assert-20" href="cats" class="quail-failed-element">Read more</a>
</div>
<div data-expected="pass">
<!-- Context heading -->
<table><tr>
<th>Dogs</th><th>Cats</th>
</tr><tr>
<td><a id="assert-21" href="dogs">Read more</a></td>
<td><i><a id="assert-22" href="cats">Read more</a></i></td>
</tr></table>
</div>
<div data-expected="pass">
<!-- Context heading -->
<table><tr>
<td headers="dogs"><i><a id="assert-23" href="dogs">Read more</a></i></td>
<td headers="cats"><a id="assert-24" href="cats">Read more</a></td>
</tr><tr>
<td id="dogs">Dogs!</td><td id="cats">Cats!</td>
</tr></table>
</div>
<div data-expected="pass">
<!-- Context heading -->
<table><tr>
<th>Dogs!</th><td><i><a id="assert-25" href="dogs">Read more</a></i></td>
<th><i>Cats!</i></th><td><a id="assert-26" href="cats">Read more</a></td>
</tr></table>
</div>
<div data-expected="pass">
<!-- Part of the same sentence -->
<div><i><a id="assert-27" href="dogs">Read more</a></i> (about dogs)</div>
<p><a id="assert-28" href="cats">Read more</a> <i>(about cats)</i></p>
</div>
<div data-expected="fail">
<!-- similar text -->
<a id="assert-29" href="dogs" class="quail-failed-element">(READ MORE!)</a>
<a id="assert-30" href="cats" class="quail-failed-element">Read more...</a>
</div>
<div data-expected="fail">
<!-- Not in the same sentence -->
<div>Dogs! -
<a id="assert-31" href="dogs" class="quail-failed-element">Read more</a>
</div>
<div>Cats! -
<a id="assert-32" href="cats" class="quail-failed-element">Read more</a>
</div>
</div>
<div data-expected="fail">
<!-- Not in the same sentence -->
<div><a id="assert-33" href="dogs" class="quail-failed-element">Read more</a>.
About Dogs!
</div>
<div><a id="assert-34" href="cats" class="quail-failed-element">Read more</a>.
About Cats!
</div>
</div>
<div data-expected="pass">
<!-- Not in the same sentence -->
<div>Dogs<br>
<a id="assert-35" href="dogs" class="quail-failed-element">Read more</a>
</div>
<div>Cats<br>
<a id="assert-36" href="cats" class="quail-failed-element">Read more</a>
</div>
</div>
</body>
</html>
| quailjs/quail | test/assessmentSpecs/specs/linkHasAUniqueContext/linkHasAUniqueContext.html | HTML | mit | 4,354 |
<!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.10"/>
<title>OpenIndy-Core: D:/Daten/03_SoftDev/Qt/OpenIndy-Core/src/geometry/scalarentitymeasurementseries.cpp File Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="navtree.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="resize.js"></script>
<script type="text/javascript" src="navtreedata.js"></script>
<script type="text/javascript" src="navtree.js"></script>
<script type="text/javascript">
$(document).ready(initResizable);
$(window).load(resizeHeight);
</script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<script type="text/javascript">
$(document).ready(function() { init_search(); });
</script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="openIndy.png"/></td>
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">OpenIndy-Core
 <span id="projectnumber">0.2.0.43</span>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.10 -->
<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="pages.html"><span>Related Pages</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li><a href="annotated.html"><span>Classes</span></a></li>
<li class="current"><a href="files.html"><span>Files</span></a></li>
<li>
<div id="MSearchBox" class="MSearchBoxInactive">
<span class="left">
<img id="MSearchSelect" src="search/mag_sel.png"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
<input type="text" id="MSearchField" value="Search" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
</span><span class="right">
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
</span>
</div>
</li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="files.html"><span>File List</span></a></li>
<li><a href="globals.html"><span>File Members</span></a></li>
</ul>
</div>
</div><!-- top -->
<div id="side-nav" class="ui-resizable side-nav-resizable">
<div id="nav-tree">
<div id="nav-tree-contents">
<div id="nav-sync" class="sync"></div>
</div>
</div>
<div id="splitbar" style="-moz-user-select:none;"
class="ui-resizable-handle">
</div>
</div>
<script type="text/javascript">
$(document).ready(function(){initNavTree('scalarentitymeasurementseries_8cpp.html','');});
</script>
<div id="doc-content">
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div class="header">
<div class="headertitle">
<div class="title">scalarentitymeasurementseries.cpp File Reference</div> </div>
</div><!--header-->
<div class="contents">
<div class="textblock"><code>#include "<a class="el" href="scalarentitymeasurementseries_8h_source.html">scalarentitymeasurementseries.h</a>"</code><br />
<code>#include "<a class="el" href="featurewrapper_8h_source.html">featurewrapper.h</a>"</code><br />
</div></div><!-- contents -->
</div><!-- doc-content -->
<!-- start footer part -->
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
<ul>
<li class="navelem"><a class="el" href="dir_6a1c216c220c043dc0d57761fc78c3de.html">03_SoftDev</a></li><li class="navelem"><a class="el" href="dir_c765c1e7d9d3e2027d03ab3b21a5c1d9.html">Qt</a></li><li class="navelem"><a class="el" href="dir_45d6422faa1c60402c14e08bb1ec8307.html">OpenIndy-Core</a></li><li class="navelem"><a class="el" href="dir_b646c30edcfb279a0c507756858103be.html">src</a></li><li class="navelem"><a class="el" href="dir_30863912108c2d95ce0ff894223016d9.html">geometry</a></li><li class="navelem"><a class="el" href="scalarentitymeasurementseries_8cpp.html">scalarentitymeasurementseries.cpp</a></li>
<li class="footer">Generated by
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.10 </li>
</ul>
</div>
</body>
</html>
| OpenIndy/OpenIndy.github.io | documentation/docu-dev/srd/html/scalarentitymeasurementseries_8cpp.html | HTML | mit | 5,790 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Welcome to ClusterPBX Documentation’s documentation! — ClusterPBX Documentation v74 documentation</title>
<link rel="stylesheet" href="_static/alabaster.css" type="text/css" />
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: './',
VERSION: 'v74',
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>
<link rel="index" title="Index" href="genindex.html" />
<link rel="search" title="Search" href="search.html" />
<link rel="next" title="HELP" href="help.html" />
<link rel="stylesheet" href="_static/custom.css" type="text/css" />
<meta name="viewport" content="width=device-width, initial-scale=0.9, maximum-scale=0.9" />
</head>
<body role="document">
<div class="document">
<div class="documentwrapper">
<div class="bodywrapper">
<div class="body" role="main">
<div class="section" id="welcome-to-clusterpbx-documentation-s-documentation">
<h1>Welcome to ClusterPBX Documentation’s documentation!<a class="headerlink" href="#welcome-to-clusterpbx-documentation-s-documentation" title="Permalink to this headline">¶</a></h1>
<a class="reference internal image-reference" href="https://www.modulis.com/wp-content/uploads/2013/10/logo31.png"><img alt="alternate text" class="align-left" src="https://www.modulis.com/wp-content/uploads/2013/10/logo31.png" style="width: 240px; height: 45px;" /></a>
<div class="line-block">
<div class="line"><br /></div>
<div class="line"><br /></div>
</div>
<p>gettext(“Test”);</p>
<div class="toctree-wrapper compound">
<p class="caption"><span class="caption-text">Contents:</span></p>
<ul>
<li class="toctree-l1"><a class="reference internal" href="help.html">HELP</a></li>
<li class="toctree-l1"><a class="reference internal" href="license.html">License</a></li>
<li class="toctree-l1"><a class="reference internal" href="changelog.html">ClusterPBX Changelog</a><ul>
<li class="toctree-l2"><a class="reference internal" href="changelog.html#v74">v74</a></li>
<li class="toctree-l2"><a class="reference internal" href="changelog.html#v71">v71</a></li>
</ul>
</li>
</ul>
</div>
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p class="last">I like automated stuff - <em>Adrien Laurent</em></p>
</div>
<div class="admonition warning">
<p class="first admonition-title">Warning</p>
<p class="last">This is AUTOMATED</p>
</div>
</div>
<div class="section" id="indices-and-tables">
<h1>Indices and tables<a class="headerlink" href="#indices-and-tables" title="Permalink to this headline">¶</a></h1>
<ul class="simple">
<li><a class="reference internal" href="genindex.html"><span class="std std-ref">Index</span></a></li>
<li><a class="reference internal" href="py-modindex.html"><span class="std std-ref">Module Index</span></a></li>
<li><a class="reference internal" href="search.html"><span class="std std-ref">Search Page</span></a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="sphinxsidebar" role="navigation" aria-label="main navigation">
<div class="sphinxsidebarwrapper">
<h3><a href="#">Table Of Contents</a></h3>
<ul>
<li><a class="reference internal" href="#">Welcome to ClusterPBX Documentation’s documentation!</a></li>
<li><a class="reference internal" href="#indices-and-tables">Indices and tables</a></li>
</ul>
<div class="relations">
<h3>Related Topics</h3>
<ul>
<li><a href="#">Documentation overview</a><ul>
<li>Next: <a href="help.html" title="next chapter">HELP</a></li>
</ul></li>
</ul>
</div>
<div role="note" aria-label="source link">
<h3>This Page</h3>
<ul class="this-page-menu">
<li><a href="_sources/index.rst.txt"
rel="nofollow">Show Source</a></li>
</ul>
</div>
<div id="searchbox" style="display: none" role="search">
<h3>Quick search</h3>
<form class="search" action="search.html" method="get">
<div><input type="text" name="q" /></div>
<div><input type="submit" value="Go" /></div>
<input type="hidden" name="check_keywords" value="yes" />
<input type="hidden" name="area" value="default" />
</form>
</div>
<script type="text/javascript">$('#searchbox').show(0);</script>
</div>
</div>
<div class="clearer"></div>
</div>
<div class="footer">
©2016, CHABANON Julien.
|
Powered by <a href="http://sphinx-doc.org/">Sphinx 1.5.1</a>
& <a href="https://github.com/bitprophet/alabaster">Alabaster 0.7.9</a>
|
<a href="_sources/index.rst.txt"
rel="nofollow">Page source</a>
</div>
</body>
</html> | modulis/zonkey_read_the_doc | docs/source/_build_html/index.html | HTML | mit | 5,355 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>minic: 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.7.2 / minic - 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>
minic
<small>
8.10.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-01-20 08:18:01 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-01-20 08:18:01 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
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.7.2 Formal proof management system
num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.08.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.08.1 Official release 4.08.1
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/minic"
license: "LGPL 2.1"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/MiniC"]
depends: [
"ocaml"
"coq" {>= "8.10" & < "8.11~"}
]
tags: [
"keyword: denotational semantics"
"keyword: compilation"
"category: Computer Science/Semantics and Compilation/Semantics"
]
authors: [
"Eduardo Giménez and Emmanuel Ledinot"
]
bug-reports: "https://github.com/coq-contribs/minic/issues"
dev-repo: "git+https://github.com/coq-contribs/minic.git"
synopsis: "Semantics of a subset of the C language"
description: """
This contribution defines the denotational semantics of MiniC, a
sub-set of the C language. This sub-set is sufficiently large to
contain any program generated by lustre2C.
The denotation function describing the semantics of a MiniC program
actually provides an interpreter for the program."""
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/minic/archive/v8.10.0.tar.gz"
checksum: "md5=5b45fd02609aa8586070b4c511ff04f5"
}
</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-minic.8.10.0 coq.8.7.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.7.2).
The following dependencies couldn't be met:
- coq-minic -> coq >= 8.10
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-minic.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.08.1-2.0.5/released/8.7.2/minic/8.10.0.html | HTML | mit | 7,056 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<HEAD>
<TITLE></TITLE>
<META NAME="description" CONTENT="">
<META NAME="keywords" CONTENT="">
<script language=javascript>
<!-- hide
function write_to_field(code)
{
var found = false;
var i =0;
while ((found == false) && (i < document.form1.elements.length))
{i = i + 1
if (document.form1.elements[i].name == code)
{
found = true;
document.form1.elements[i].value = parent.item_quan(code);
}
}
}
function Loc_additem(code,price,desc,url)
{
self.parent.additem(code,price,desc,url);
write_to_field(code)
}
function Loc_subitem(code,price,desc)
{
self.parent.subitem(code,price,desc);
write_to_field(code)
}
<!-- End -->
</script>
</HEAD>
<BODY TEXT="#000000" BGCOLOR="#FFFFFF" LINK="#8000FF" VLINK="#FF8000" ALINK="#FF0000" BACKGROUND="images/thisback.gif" onload=parent.update_this_page()>
<form name=form1>
<a name="top"></a>
<!-- The script below is activated if this page is not within the frame model -->
<script language="javascript">
<!-- hide
if (self==parent){document.write('<font color=#ff000><b>THIS IS A FRAME ELEMENT : GO TO <a href=index.htm>Start Page</a> TO LOAD MAIN PAGE</b></font><BR>')};
<!-- end hide -->
</script>
<center><FONT COLOR="#0000FF">One Item On This Page</FONT></center><P>
<!-- Below are the add and subtract buttons and the window showing number ordered -->
<!-- Update it for your needs by changing out the 'p1','1.11','Page_one_order','pageone.htm' section.-->
<!-- All updates must occur for both the add and subtract satement equally -->
<!-- pl is the name of the text window. If you change that - you must change it in the window also -->
<!-- 1.11 is the price -->
<!-- Page_one_order is the name of the page and section where the order came from -->
<!-- pageone.htm is the name of this page -->
<!-- This is the only page that has these instructions -->
<!-- All other pages with shopping cart items work the same way -->
<center>
<input name=addbox type=button value="Add This Item To My Total" onclick=Loc_additem('p1i1','1.11','Page_1_item_1','pageone.html')><BR>
<input type=button name=subbox value="Subtract This Item From My Total" onclick=Loc_subitem('p1i1','1.11','page_1_item_1','pageone.html')><P>
You Have Ordered This Many Of This Item:<input type=text name=p1i1 size=2><P>
</center>
<P>
<!-- These are the links at the bottom of the page -->
<center>
[ <a href="javascript:parent.updatemain_order()">Review updated Order Form</a> ] <br>
</center>
<CENTER>
</BODY>
</HTML>
| spikk/effective-adventure | CreateCookiesWeb/Shopcart/pageone.html | HTML | mit | 2,558 |
<!doctype html>
<html>
<title>changelog</title>
<meta http-equiv="content-type" value="text/html;utf-8">
<link rel="stylesheet" type="text/css" href="./style.css">
<body>
<div id="wrapper">
<h1><a href="../doc/changelog.html">changelog</a></h1> <p>Changes</p>
<h2 id="HISTORY">HISTORY</h2>
<h3 id="1-1-3-1-1-4">1.1.3, 1.1.4</h3>
<ul><li>Update request to support HTTPS-over-HTTP proxy tunneling</li><li>Throw on undefined envs in config settings</li><li>Update which to 1.0.5</li><li>Fix windows UNC busyloop in findPrefix</li><li>Bundle nested bundleDependencies properly</li><li>Alias adduser to add-user</li><li>Doc updates (Christian Howe, Henrik Hodne, Andrew Lunny)</li><li>ignore logfd/outfd streams in makeEnv() (Rod Vagg)</li><li>shrinkwrap: Behave properly with url-installed deps</li><li>install: Support --save with url install targets</li><li>Support installing naked tars or single-file modules from urls etc.</li><li>init: Don't add engines section</li><li>Don't run make clean on rebuild</li><li>Added missing unicode replacement (atomizer)</li></ul>
<h3 id="1-1-2">1.1.2</h3>
<p>Dave Pacheco (2):
add "npm shrinkwrap"</p>
<p>Martin Cooper (1):
Fix #1753 Make a copy of the cached objects we'll modify.</p>
<p>Tim Oxley (1):
correctly remove readme from default npm view command.</p>
<p>Tyler Green (1):
fix #2187 set terminal columns to Infinity if 0</p>
<p>isaacs (19):
update minimatch
update request
Experimental: single-file modules
Fix #2172 Don't remove global mans uninstalling local pkgs
Add --versions flag to show the version of node as well
Support --json flag for ls output
update request to 2.9.151</p>
<h3 id="1-1">1.1</h3>
<ul><li>Replace system tar dependency with a JS tar</li><li>Continue to refine</li></ul>
<h3 id="1-0">1.0</h3>
<ul><li>Greatly simplified folder structure </li><li>Install locally (bundle by default) </li><li>Drastic rearchitecture</li></ul>
<h3 id="0-3">0.3</h3>
<ul><li>More correct permission/uid handling when running as root </li><li>Require node 0.4.0 </li><li>Reduce featureset </li><li>Packages without "main" modules don't export modules</li><li>Remove support for invalid JSON (since node doesn't support it)</li></ul>
<h3 id="0-2">0.2</h3>
<ul><li>First allegedly "stable" release</li><li>Most functionality implemented </li><li>Used shim files and <code>name@version</code> symlinks</li><li>Feature explosion</li><li>Kind of a mess</li></ul>
<h3 id="0-1">0.1</h3>
<ul><li>push to beta, and announce </li><li>Solaris and Cygwin support</li></ul>
<h3 id="0-0">0.0</h3>
<ul><li>Lots of sketches and false starts; abandoned a few times</li><li>Core functionality established</li></ul>
<h2 id="SEE-ALSO">SEE ALSO</h2>
<ul><li><a href="../doc/npm.html">npm(1)</a></li><li><a href="../doc/faq.html">faq(1)</a></li></ul>
</div>
<p id="footer">changelog — npm@1.1.22</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>
| carloscrespog/HookTemperature | node_modules/hook.io/node_modules/npm/html/doc/changelog.html | HTML | mit | 3,654 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_72) on Thu Feb 18 20:49:52 EST 2016 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>ISharedObjectEvent (Red5 :: Common server classes 1.0.7-SNAPSHOT API)</title>
<meta name="date" content="2016-02-18">
<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="ISharedObjectEvent (Red5 :: Common server classes 1.0.7-SNAPSHOT API)";
}
}
catch(err) {
}
//-->
var methods = {"i0":6,"i1":6,"i2":6};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
var tableTab = "tableTab";
var activeTableTab = "activeTableTab";
</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 class="navBarCell1Rev">Class</li>
<li><a href="class-use/ISharedObjectEvent.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../org/red5/server/so/FlexSharedObjectMessage.html" title="class in org.red5.server.so"><span class="typeNameLink">Prev Class</span></a></li>
<li><a href="../../../../org/red5/server/so/ISharedObjectEvent.Type.html" title="enum in org.red5.server.so"><span class="typeNameLink">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?org/red5/server/so/ISharedObjectEvent.html" target="_top">Frames</a></li>
<li><a href="ISharedObjectEvent.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>Field | </li>
<li>Constr | </li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li>Constr | </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">org.red5.server.so</div>
<h2 title="Interface ISharedObjectEvent" class="title">Interface ISharedObjectEvent</h2>
</div>
<div class="contentContainer">
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Known Implementing Classes:</dt>
<dd><a href="../../../../org/red5/server/so/SharedObjectEvent.html" title="class in org.red5.server.so">SharedObjectEvent</a></dd>
</dl>
<hr>
<br>
<pre>public interface <span class="typeNameLabel">ISharedObjectEvent</span></pre>
<div class="block">One update event for a shared object received through a connection.</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="memberSummary" 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">Interface and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static class </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/red5/server/so/ISharedObjectEvent.Type.html" title="enum in org.red5.server.so">ISharedObjectEvent.Type</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>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd"> </span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd"> </span></span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr id="i0" class="altColor">
<td class="colFirst"><code><a href="http://download.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/red5/server/so/ISharedObjectEvent.html#getKey--">getKey</a></span>()</code>
<div class="block">Returns the key of the event.</div>
</td>
</tr>
<tr id="i1" class="rowColor">
<td class="colFirst"><code><a href="../../../../org/red5/server/so/ISharedObjectEvent.Type.html" title="enum in org.red5.server.so">ISharedObjectEvent.Type</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/red5/server/so/ISharedObjectEvent.html#getType--">getType</a></span>()</code>
<div class="block">Returns the type of the event.</div>
</td>
</tr>
<tr id="i2" class="altColor">
<td class="colFirst"><code><a href="http://download.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/red5/server/so/ISharedObjectEvent.html#getValue--">getValue</a></span>()</code>
<div class="block">Returns the value of the event.</div>
</td>
</tr>
</table>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method.detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="getType--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getType</h4>
<pre><a href="../../../../org/red5/server/so/ISharedObjectEvent.Type.html" title="enum in org.red5.server.so">ISharedObjectEvent.Type</a> getType()</pre>
<div class="block">Returns the type of the event.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the type of the event.</dd>
</dl>
</li>
</ul>
<a name="getKey--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getKey</h4>
<pre><a href="http://download.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> getKey()</pre>
<div class="block">Returns the key of the event.
Depending on the type this contains:
<ul>
<li>the attribute name to set for SET_ATTRIBUTE</li>
<li>the attribute name to delete for DELETE_ATTRIBUTE</li>
<li>the handler name to call for SEND_MESSAGE</li>
</ul>
In all other cases the key is
<pre>
null
</pre>
.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the key of the event</dd>
</dl>
</li>
</ul>
<a name="getValue--">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>getValue</h4>
<pre><a href="http://download.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a> getValue()</pre>
<div class="block">Returns the value of the event.
Depending on the type this contains:
<ul>
<li>the attribute value to set for SET_ATTRIBUTE</li>
<li>a list of parameters to pass to the handler for SEND_MESSAGE</li>
</ul>
In all other cases the value is
<pre>
null
</pre>
.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the value of the event</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>
<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 class="navBarCell1Rev">Class</li>
<li><a href="class-use/ISharedObjectEvent.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../org/red5/server/so/FlexSharedObjectMessage.html" title="class in org.red5.server.so"><span class="typeNameLink">Prev Class</span></a></li>
<li><a href="../../../../org/red5/server/so/ISharedObjectEvent.Type.html" title="enum in org.red5.server.so"><span class="typeNameLink">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?org/red5/server/so/ISharedObjectEvent.html" target="_top">Frames</a></li>
<li><a href="ISharedObjectEvent.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>Field | </li>
<li>Constr | </li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li>Constr | </li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright © 2005–2016 <a href="https://github.com/Red5">Red5</a>. All rights reserved.</small></p>
</body>
</html>
| Red5/red5.github.io | javadoc/red5-server-common/org/red5/server/so/ISharedObjectEvent.html | HTML | mit | 11,723 |
<!DOCTYPE html>
<html lang="en">
<head>
<!-- This code is for the favicon (image located on the tab of a browser) -->
<link rel="apple-touch-icon" sizes="57x57" href="Resources/Images/favicon/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="Resources/Images/favicon/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="Resources/Images/favicon/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="Resources/Images/favicon/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="Resources/Images/favicon/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="Resources/Images/favicon/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="Resources/Images/favicon/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="Resources/Images/favicon/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="Resources/Images/favicon/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="Resources/Images/favicon/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="Resources/Images/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="Resources/Images/favicon/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="Resources/Images/favicon/favicon-16x16.png">
<link rel="manifest" href="Resources/Images/favicon/manifest.json">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="Resources/Images/favicon/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="../../favicon.ico">
<title>Purple Cobras Capstone</title>
<!-- Bootstrap core CSS -->
<link href="Resources/bootstrap/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="Resources/css/style.css" type="text/css" />
<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-75296801-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<!-- Fixed navbar -->
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html">
<div><img id="table" src =
"Resources/images/favicon/android-icon-36x36.png" alt = "1UP"
style="width:23px;height:23px;"> Purple Cobras </div></a>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li class="dropdown"><a href="index.html">Home</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">About<span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="Resources/HTML/AboutUs.html">About Purple Cobras</a></li>
<li><a href="Resources/HTML/APIInfo.html">About API</a></li>
<li><a href="Resources/HTML/GateGrabberInfo.html">About Gate Grabber</a></li>
<li><a href="Resources/HTML/MathMazeInfo.html">About Math Maze</a></li>
</ul>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Games<span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="Resources/HTML/gateGrabber.html">Gate Grabber</a></li>
<li><a href="Resources/HTML/mathMaze.html">Math Maze</a></li>
</ul>
</li>
</ul>
</div>
</div>
</nav>
<br>
<body>
<div class="container" style="background color:#989898">
<div class="jumbotron" style="background color:#989898">
<div class="container">
<div id = "warning" class="alert alert-warning">
<a href="#" class="close" data-dismiss="alert" aria-label="close">×</a>
<strong>Warning!</strong> You may experience some issues on browsers other than Google Chrome.
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-6">
<a href = "Resources/HTML/gateGrabber.html"> <div class="GGLogo"></div> </a>
<br>
<br>
<p><b>Gate Grabber</b></p>
<b>Practice with logic gates and grab the gates with the correct inputs and outputs to get the highest score! </b> <br>
<br> <p><a class="btn btn-default" href="Resources/HTML/GateGrabberInfo.html" role="button">Learn More »</a></p>
<br>
<b> Review logic gates: </b>
<br><br><p><a class="btn btn-default" href="Resources/HTML/LogicGateLesson.html" role="button">Logic Gate Lesson »</a></p>
</div>
<div class="col-md-6">
<a href = "Resources/HTML/mathMaze.html"><div class="MMLogo"></div></a>
<br>
<br>
<p><b>Math Maze</b></p>
<b>Quickly navigate through the maze to solve equations!</b> <br>
<br> <p><a class="btn btn-default" href="Resources/HTML/MathMazeInfo.html" role="button">Learn More »</a></p>
</div>
<br>
</div>
</div>
</div> <!-- /container -->
</div>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="../../assets/js/vendor/jquery.min.js"><\/script>')</script>
<script src="Resources/bootstrap/bootstrap.min.js"></script>
</body>
</html> | PurpleCobras/PurpleCobras.github.io | index.html | HTML | mit | 6,953 |
<!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 charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Peersview</title>
<link rel="stylesheet" type="text/css" href="css/bootstrap.css" />
<link rel="stylesheet" type="text/css" href="css/peersview.css" />
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/bootstrap.js"></script>
<script type="text/javascript" src="js/sticky.js"></script>
<script type="text/javascript" src="js/custom.js"></script>
<!-- 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 class="fixed-header">
<!--header start-->
<div class="header">
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" 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>
<span class="mobile-action">
<a href="notification.html" class="notification"><i></i></a>
<a href="messages.html" class="message"><i></i></a>
<span class="dropdown userli"><a href="javascript:void(0);" data-toggle="dropdown"><img class="profile-pic" src="images/profile.jpg" alt=""><span class="header-caret"></span></a>
<ul class="dropdown-menu" aria-labelledby="dropdownMenu1">
<span class="icon-arrow-up"></span>
<li><a href="my-profile.html">My Profile</a></li>
<li><a href="account-setting.html">Account Setting</a></li>
<li><a href="support.html">Peersview Support</a></li>
<li><a href="index.html">Log-Out</a></li>
</ul>
</span>
</span>
<a class="navbar-brand" href="home.html"><img src="images/logo.png" alt="peersview" /></a> </div>
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-left">
<li class="nav-home"><a href="home.html"><i></i>Home</a></li>
<li class="nav-forum"><a href="forum-home.html"><i></i>Forum</a></li>
<li class="active nav-comm"><a href="community.html"><i></i>Campus</a></li>
<li class="nav-events"><a href="events-landing.html"><i></i>Leisure</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li class="notification"> <a href="javascript:void(0);" class="dropdown-toggle" data-toggle="dropdown"><i></i></a>
<div class="inline-flyout dropdown-menu"> <span class="icon-arrow-up"></span>
<div>
<div class="flyout-title">Notifications</div>
<ul class="conversation-list">
<li class="co-row"> <a href="javascript:void(0);">
<div class="co-img"><img src="images/user1.jpg" alt=""></div>
<div class="co-info"> <span class="co-name">Angela Gill started following you</span> <span class="co-time">2 hours ago</span> </div>
</a> </li>
<li class="co-row"> <a href="javascript:void(0);">
<div class="co-img"><img src="images/user2.jpg" alt=""></div>
<div class="co-info"> <span class="co-name">Faith Black commented on your post</span> <span class="co-time">3 hours ago</span> </div>
</a> </li>
<li class="co-row"> <a href="javascript:void(0);">
<div class="co-img"><img src="images/user3.jpg" alt=""></div>
<div class="co-info"> <span class="co-name">Olivia Metcalfe like your post</span> <span class="co-time">4 hours ago</span> </div>
</a> </li>
<li class="co-row"> <a href="javascript:void(0);">
<div class="co-img"><img src="images/user5.jpg" alt=""></div>
<div class="co-info"> <span class="co-name">Gordon Piper invite you to join the community</span> <span class="co-time">Today at 1:20pm</span> </div>
</a> </li>
<li class="co-row"> <a href="javascript:void(0);">
<div class="co-img"><img src="images/user4.jpg" alt=""></div>
<div class="co-info"> <span class="co-name">Adekunle Amodu likes your post.</span> <span class="co-time">Yesterday at 5:35pm</span> </div>
</a> </li>
</ul>
<div class="flyout-view"><a href="notification.html">View All</a></div>
</div>
</div>
</li>
<li class="message"> <a href="javascript:void(0);" class="dropdown-toggle" data-toggle="dropdown"><i></i></a>
<div class="inline-flyout dropdown-menu"> <span class="icon-arrow-up"></span>
<div>
<div class="flyout-title">Messages<a href="javascript:void(0);" data-toggle="modal" data-target="#message-modal" class="ext-action">New Message</a></div>
<ul class="conversation-list">
<li class="co-row"> <a href="messages.html">
<div class="co-img"><img src="images/user1.jpg" alt=""></div>
<div class="co-info"> <span class="co-name">Angela Gill</span> <span class="co-day">Tue</span> </div>
</a> </li>
<li class="co-row"> <a href="messages.html">
<div class="co-img"><img src="images/user2.jpg" alt=""></div>
<div class="co-info"> <span class="co-name">Faith Black</span> <span class="co-day">Tue</span> </div>
</a> </li>
<li class="co-row"> <a href="messages.html">
<div class="co-img"><img src="images/user3.jpg" alt=""></div>
<div class="co-info"> <span class="co-name">Olivia Metcalfe</span> <span class="co-day">Tue</span> </div>
</a> </li>
<li class="co-row"> <a href="messages.html">
<div class="co-img"><img src="images/user4.jpg" alt=""></div>
<div class="co-info"> <span class="co-name">Adekunle Amodu</span> <span class="co-day">Tue</span> </div>
</a> </li>
<li class="co-row"> <a href="messages.html">
<div class="co-img"><img src="images/user5.jpg" alt=""></div>
<div class="co-info"> <span class="co-name">Gordon Piper</span> <span class="co-day">Tue</span> </div>
</a> </li>
</ul>
<div class="flyout-view"><a href="messages.html">View All</a></div>
</div>
</div>
</li>
<li class="dropdown search"> <a href="javascript:void(0);" data-toggle="dropdown"><i></i></a>
<div id="search-form" class="dropdown-menu"> <span class="icon-arrow-up"></span>
<div class="form-container">
<form action="">
<input type="text" class="search-field" placeholder="Type search text here...">
<div class="submit-container">
<input type="submit" value="" class="submit">
</div>
</form>
<div class="clear"></div>
<a href="advanced-search.html" class="advance-search-link">Advanced Search</a> </div>
</div>
</li>
<li class="dropdown userli"> <a href="javascript:void(0);" data-toggle="dropdown"><span class="welcome-user">Welcome John</span> <img class="profile-pic" src="images/profile.jpg" alt="" /><span class="header-caret"></span></a>
<ul class="dropdown-menu" aria-labelledby="dropdownMenu1">
<span class="icon-arrow-up"></span>
<li><a href="my-profile.html">My Profile</a></li>
<li><a href="account-setting.html">Account Setting</a></li>
<li><a href="support.html">Peersview Support</a></li>
<li><a href="index.html">Log-Out</a></li>
</ul>
</li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
</nav>
</div>
<!--header start-->
<div class="container">
<div class="row">
<div class="col-md-2">
<div class="sticky-width sticky">
<!--left sidebar-->
<div class="sidebar-info"> <img src="images/univ-logo.jpg" alt="" />
<h4>University of Manchester</h4>
</div>
<div class="sidebar-links campus-menu">
<ul>
<li><a href="community-feed.html"><i class="icon-all-students"></i><span class="link-text">All Students</span></a></li>
<li><a href="community-year-enrollment.html"><i class="icon-feed"></i><span class="link-text">Freshers Feed</span></a></li>
<li><a href="community-course-list.html"><i class="icon-feed"></i><span class="link-text">Course feed</span></a></li>
<li class="active-link"><a href="community-classes-list.html"><i class="icon-classes"></i><span class="link-text">Classes</span></a></li>
<li><a href="student-home.html"><i class="icon-sgroup"></i><span class="link-text">Student group</span></a></li>
<li><a href="community-group.html"><i class="icon-clubs"></i><span class="link-text">Societies & Clubs</span></a></li>
<li><a href="market-place.html"><i class="icon-marketplace"></i><span class="link-text">Market Place</span></a></li>
<li><a href="community-job-center.html"><i class="icon-job"></i><span class="link-text">Job Center</span></a></li>
</ul>
</div>
<!--left sidebar-->
</div>
</div>
<div class="col-md-10">
<div class="col-md-12">
<div class="about-info">
<div class="about-title">
<div class="info-block-left"> <img src="images/ACS.jpg" alt="" />
<h3>African Caribbean Society</h3>
</div>
<div class="info-block-right"> <a href="my-club-list.html">< Back</a><br />
<span class="about-action"> <a href="javascript:void(0);" class="btn btn-primary" id="follow-class">Follow</a> </span> </div>
<div class="clear"></div>
</div>
<div class="about-desc">
<h6>About</h6>
<p>Donec maximus semper velit. Vivamus faucibus accumsan odio. In quam purus, consequat eget hendrerit sit amet, consectetur eget orci. Ut sit amet suscipit ligula, in commodo tortor. n quam purus, consequat eget hendrerit sit amet, consectetur eget orci. Ut sit amet suscipit ligula, in commodo tortor.</p>
</div>
</div>
</div>
<!--content area-->
<div class="col-xs-12 col-sm-8 col-md-8">
<!--create post-->
<ul class="post-action">
<li class="active"><a href="javascript:void(0);" class="create-post-link">Write a Post</a></li>
<li><a href="javascript:void(0);" class="create-poll-link">Create Poll</a></li>
</ul>
<div class="create-post"> <a href="javascript:void(0);" class="img-upload"></a>
<input class="upload-file" type="file" style="display:none;" />
<textarea class="form-control" placeholder="Whats happening?"></textarea>
</div>
<div class="create-poll" style="display:none;">
<textarea class="form-control" placeholder="Ask something..."></textarea>
<ul class="poll-option">
<li>
<input type="text" placeholder="Add an option" />
</li>
<li>
<input type="text" placeholder="Add an option" />
</li>
</ul>
<div><a href="javascript:void(0);" class="btn-add-new" id="add-poll-opt">Add New</a></div>
<div class="bottom-block">
<input type="button" class="btn btn-blue btn-sm" value="Post" />
</div>
</div>
<!--create post-->
<div>
<div>
<div class="tab-pill"><span>TIMELINE</span></div>
<!--post-->
<div class="single-post">
<div class="post-head">
<div class="post-user"><img src="images/user-post.jpg" alt="" /></div>
<div class="post-info"> <a class="post-by" href="user-profile.html">Adekunle Amodu</a>
<ul class="post-share user-star">
<li> <i class="star fill"></i> <i class="star fill"></i> <i class="star fill"></i> <i class="star fill"></i> <i class="star"></i> </li>
</ul>
<span class="post-time"> • 10 h</span>
<h1 class="post-title"><a href="javascript:void(0);" data-toggle="modal" data-target="#post-detail">Saudi Government Linked To 9/11 Hijackers In Newly Released U.S. Report</a></h1>
</div>
</div>
<div class="post-content">
<div class="post-img"><span class="new">New Post</span><img src="images/post-img1.jpg" alt="" /></div>
<div class="post-share">
<ul>
<li> <i class="star fill"></i> <i class="star fill"></i> <i class="star fill"></i> <i class="star fill"></i> <i class="star fill"></i> Like • 205 Likes</li>
<li class="reply">106 Replies</li>
<li class="view">670 Views</li>
<li class="share">100 Shares</li>
<li class="report"><a href="javascript:void(0);" data-toggle="modal" data-target="#report-modal">Report</a></li>
</ul>
</div>
</div>
<div class="add-comment"><a href="javascript:void(0);">Write a comment (Use @ to mention people)</a></div>
</div>
<!--post-->
<!--post-->
<div class="single-post">
<div class="post-shared">Coopeers post shared</div>
<div class="post-head">
<div class="post-user"><img src="images/user-post.jpg" alt="" /></div>
<div class="post-info"> <a class="post-by" href="user-profile.html">Adekunle Amodu</a>
<ul class="post-share user-star">
<li> <i class="star fill"></i> <i class="star fill"></i> <i class="star fill"></i> <i class="star fill"></i> <i class="star"></i> </li>
</ul>
<span class="post-time"> • 10 h</span>
<h1 class="post-title"><a href="javascript:void(0);" data-toggle="modal" data-target="#post-detail">Who understands financial modeling?</a></h1>
</div>
</div>
<div class="post-content">
<div class="post-img"><img src="images/post-img2.jpg" alt="" /></div>
<div class="post-share">
<ul>
<li> <i class="star fill"></i> <i class="star fill"></i> <i class="star fill"></i> <i class="star fill"></i> <i class="star"></i> Like • 205 Likes</li>
<li class="reply">106 Replies</li>
<li class="view">670 Views</li>
<li class="share">100 Shares</li>
<li class="report"><a href="javascript:void(0);" data-toggle="modal" data-target="#report-modal">Report</a></li>
</ul>
</div>
</div>
<div class="add-comment"><a href="javascript:void(0);">Write a comment (Use @ to mention people)</a></div>
</div>
<!--post-->
<!--post-->
<div class="single-post">
<div class="post-head">
<div class="post-user"><img src="images/user-post.jpg" alt="" /></div>
<div class="post-info"> <a class="post-by" href="user-profile.html">Adekunle Amodu</a>
<ul class="post-share user-star">
<li> <i class="star fill"></i> <i class="star fill"></i> <i class="star fill"></i> <i class="star fill"></i> <i class="star"></i> </li>
</ul>
<span class="post-time"> • 10 h</span>
<h1 class="post-title"><a href="javascript:void(0);" data-toggle="modal" data-target="#post-detail">Looks like team "Giggle Waters" had the last giggle after all! Congratulations to the <span class="hash-tag">#MahindraWarRoom 2016</span> Champion...</a></h1>
</div>
</div>
<div class="post-content">
<div class="post-img"><span class="new">New Post</span><img src="images/post-img3.jpg" alt="" /></div>
<div class="post-share">
<ul>
<li> <i class="star fill"></i> <i class="star fill"></i> <i class="star fill"></i> <i class="star fill"></i> <i class="star fill"></i> Like • 205 Likes</li>
<li class="reply">106 Replies</li>
<li class="view">670 Views</li>
<li class="share">100 Shares</li>
<li class="report"><a href="javascript:void(0);" data-toggle="modal" data-target="#report-modal">Report</a></li>
</ul>
</div>
</div>
<div class="add-comment"><a href="javascript:void(0);">Write a comment (Use @ to mention people)</a></div>
</div>
<!--post-->
<div class="load-more"><a href="javascript:void(0);">load more...</a></div>
</div>
</div>
</div>
<!--content area-->
<!--right sidebar-->
<div class="col-xs-12 col-sm-6 col-md-4">
<div class="widget">
<h5 class="widget-title">Peers (<strong>24 Online</strong>)</h5>
<ul class="users-list">
<li data-toggle="tooltip" title="Angela Gill"><img src="images/user1.jpg" alt="" data-toggle="modal" data-target="#userprofile-modal" /></li>
<li data-toggle="tooltip" title="Faith Black"><i class="online-indicator"></i><img src="images/user2.jpg" alt="" data-toggle="modal" data-target="#userprofile-modal" /></li>
<li data-toggle="tooltip" title="Olivia Metcalfe"><img src="images/user3.jpg" alt="" data-toggle="modal" data-target="#userprofile-modal" /></li>
<li data-toggle="tooltip" title="Adekunle Amodu"><i class="online-indicator"></i><img src="images/user4.jpg" alt="" data-toggle="modal" data-target="#userprofile-modal" /></li>
<li data-toggle="tooltip" title="Gordon Piper"><img src="images/user5.jpg" alt="" data-toggle="modal" data-target="#userprofile-modal" /></li>
<li data-toggle="tooltip" title="David Ball"><i class="online-indicator"></i><img src="images/user6.jpg" alt="" data-toggle="modal" data-target="#userprofile-modal" /></li>
<li data-toggle="tooltip" title="Megan Vaughan"><img src="images/user7.jpg" alt="" data-toggle="modal" data-target="#userprofile-modal" /></li>
<li data-toggle="tooltip" title="Gavin Newman"><i class="online-indicator"></i><img src="images/user8.jpg" alt="" data-toggle="modal" data-target="#userprofile-modal" /></li>
</ul>
<a class="link-und" href="followers-following.html">View All</a> </div>
<div class="widget">
<h5 class="widget-title">Invite Members</h5>
<div class="invite-form">
<div class="form-group">
<label>Enter Name</label>
<input type="text" class="form-control">
</div>
<input type="button" value="Send Invite" class="btn btn-white btn-sm">
</div>
</div>
<div class="widget">
<h5 class="widget-title">Media</h5>
<ul class="social-list">
<a href="javascript:void(0);" class="fb" data-toggle="tooltip" title="Facebook"></a> <a href="javascript:void(0);" class="linkedin" data-toggle="tooltip" title="Linkedin"></a> <a href="javascript:void(0);" class="twitter" data-toggle="tooltip" title="Twitter"></a> <a href="javascript:void(0);" class="insta" data-toggle="tooltip" title="Instagram"></a>
</ul>
</div>
<div class="sidebar-footer">
<p>Copyright 2017 All rights reserved.</p>
<ul>
<li><a href="javascript:void(0);">About Us</a></li>
<li><a href="javascript:void(0);">Our Team</a></li>
<li><a href="javascript:void(0);">Careers</a></li>
<li><a href="javascript:void(0);">Support</a></li>
<li><a href="javascript:void(0);">Events</a></li>
<li><a href="javascript:void(0);">Campus</a></li>
<li><a href="javascript:void(0);">Privacy Policy</a></li>
<li><a href="javascript:void(0);">Terms & Conditions</a></li>
<li><a href="javascript:void(0);">Contact Us</a></li>
</ul>
</div>
</div>
<!--right sidebar-->
</div>
</div>
</div>
<!-- Post Detail Modal -->
<div class="modal fade" id="post-detail" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog modal-lg" role="document"> <a href="javascript:void(0);" class="popup-close" data-dismiss="modal" aria-label="Close"></a>
<div class="modal-content">
<div class="modal-body">
<!--post-->
<div class="single-post">
<div class="post-head">
<div class="post-user"><img src="images/user-post.jpg" alt="" /></div>
<div class="post-info"> <a class="post-by" href="user-profile.html">Adekunle Amodu</a>
<ul class="post-share user-star">
<li> <i class="star fill"></i> <i class="star fill"></i> <i class="star fill"></i> <i class="star fill"></i> <i class="star"></i> </li>
</ul>
<span class="post-time"> • 10 h</span>
<h1 class="post-title"><a href="javascript:void(0);">Saudi Government Linked To 9/11 Hijackers In Newly Released U.S. Report</a></h1>
</div>
</div>
<div class="post-content row">
<div class="col-md-4">
<div class="post-img"><span class="new">New Post</span><img src="images/post-img4.jpg" alt="" /></div>
</div>
<div class="col-md-8">
<p>Cras dictum id justo mollis maximus. Pellentesque interdum, erat vel bibendum tincidunt, eros risus consequat elit, sed vulputate felis leo sit amet magna. Duis malesuada feugiat urna et vestibulum. Donec condimentum felis vehicula pretium sodales. Praesent pulvinar lobortis est vitae luctus. Nullam mollis felis a nunc bibendum, eget elementum elit imperdiet. Maecenas maximus felis in ante commodo cursus.</p>
<div class="post-share">
<ul>
<li> <i class="star fill"></i> <i class="star fill"></i> <i class="star fill"></i> <i class="star fill"></i> <i class="star fill"></i> Like • 205 Likes</li>
<li class="reply">106 Replies</li>
<li class="view">670 Views</li>
<li class="share">100 Shares</li>
<li class="report"><a href="javascript:void(0);" data-toggle="modal" data-target="#report-modal">Report</a></li>
</ul>
</div>
</div>
<div> </div>
</div>
</div>
<!--post-->
</div>
</div>
</div>
</div>
<!-- Post Detail Modal -->
<!-- User Profile Modal -->
<div class="modal fade" id="userprofile-modal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog modal-sm" role="document">
<div class="modal-content"> <a href="javascript:void(0);" class="popup-close" data-dismiss="modal" aria-label="Close"></a>
<div class="modal-brand"><img src="images/peersview-brand.png" alt=""></div>
<div class="modal-body">
<div class="profile-widget">
<div class="top-info"> <a href="user-profile.html" class="user-img"><img src="images/john.jpg" alt="Peersview"></a> <span class="user-profile-info">
<h2>John Smith</h2>
<ul>
<li class="info-add">Student | Los Anageles, LA</li>
<li>
<label class="lbl">Institution</label>
<label class="val">St. Marry's</label>
</li>
<li>
<label class="lbl">Course</label>
<label class="val">Accounting and Finance</label>
</li>
</ul>
</span> </div>
<div class="bottom-info"> <a href="user-profile.html" class="link">View Profile</a> </div>
</div>
</div>
</div>
</div>
</div>
<!-- User Profile Modal -->
<!-- Report Modal -->
<div class="modal fade" id="report-modal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog modal-md">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title">Report</h4>
</div>
<div class="modal-body">
<div class="radio">
<div class="radio">
<label>
<input type="radio" name="report">
I am not interested in this Post</label>
</div>
<div class="radio">
<label>
<input type="radio" name="report">
This Post is abusive and harmful</label>
</div>
<div class="radio">
<label>
<input type="radio" name="report">
This Post is posting Spam</label>
</div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-grey" data-dismiss="modal">Cancel</button>
<button type="button" class="btn btn-blue">Submit</button>
</div>
</div>
</div>
</div>
<!-- Report Modal -->
<!-- New Message Modal -->
<div class="modal fade" id="message-modal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog modal-md">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title">New Message</h4>
</div>
<div class="modal-body">
<div class="form-group">
<label>To</label>
<input type="text" class="form-control" placeholder="Name" />
</div>
<div class="form-group">
<label>Message</label>
<textarea placeholder="Write a message here..." rows="3"class="form-control"></textarea>
</div>
<div class="form-group">
<label>Attach a File</label>
<input type="file" />
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-grey" data-dismiss="modal">Cancel</button>
<button type="button" class="btn btn-blue">Send</button>
</div>
</div>
</div>
</div>
<!-- New Message Modal -->
<div id="backToTop" title="Back to Top"></div>
</body>
</html>
| lnalbandyan/peerup | frontend/community-ACS.html | HTML | mit | 28,198 |
<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">ㄐ|<sup class="subfont">ˊ</sup> ㄈㄥ ㄓ ㄐ|ㄥ<sup class="subfont">ˋ</sup> ㄘㄠ<sup class="subfont">ˇ</sup></td></tr>
<tr><th class="ztd1"><b>漢語拼音 </b></th><td class="ztd2"><font class="english_word">jí fēng zhī jìng cǎo</font></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%22CW0000001801%22.%26v%3D-1" class="clink" target=_blank>疾風勁草</a>」。見「<a href="/cgi-bin/cydic/gsweb.cgi?o=dcydic&schfmt=text&gourl=%3De0%26sec%3Dsec1%26op%3Dsid%3D%22CW0000001801%22.%26v%3D-1" class="clink" target=_blank>疾風勁草</a>」條。</font></td></tr>
<tr><th class="ztd1"><b><style>.tableoutfmt2 .std1{width:3%;}</style></b></th><td class="ztd2"><table class="fmt16_table"><tr><td width=150 style="text-align:left;" class="fmt16_td1" ><b>參考詞語︰</b></td><td width=150 style="text-align:left;" class="fmt16_td2" ><a href="/cgi-bin/cydic/gsweb.cgi?o=dcydic&schfmt=text&gourl=%3De0%26sec%3Dsec1%26op%3Dsid%3D%22CW0000001801%22.%26v%3D-1" class="clink" target=_blank>疾風勁草</a></td></tr><tr><td width=150 style="text-align:left;" class="fmt16_td1" ><b>注音︰</b></td><td width=150 style="text-align:left;" class="fmt16_td2" >ㄐ|<sup class="subfont">ˊ</sup> ㄈㄥ ㄐ|ㄥ<sup class="subfont">ˋ</sup> ㄘㄠ<sup class="subfont">ˇ</sup></td></tr><tr><td width=150 style="text-align:left;" class="fmt16_td1" ><b>漢語拼音︰</b></td><td width=150 style="text-align:left;" class="fmt16_td2" ><font class="english_word">jí fēng jìng cǎo</font></td></tr></table><br><br></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/1000-1999/1553-34.html | HTML | mit | 2,306 |
<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> ㄉㄤ ㄓㄠ</td></tr>
<tr><th class="std1"><b>漢語拼音 </b></th><td class="std2"><font class="english_word">wā ěr dāng zhāo</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></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/18000-18999/18742-22.html | HTML | mit | 1,398 |
<!-- Twitter Cards -->
<meta name="twitter:title" content="{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}">
{% if page.description %}<meta name="twitter:description" content="{{ page.description }}">{% endif %}
{% if site.owner.twitter %}<meta name="twitter:site" content="@{{ site.owner.twitter }}">{% endif %}
{% if page.author.twitter %}<meta name="twitter:creator" content="@{{ page.author.twitter }}">{% endif %}
{% if page.og_image %}
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:image" content="http:{{ site.url }}/{{ page.og_image }}">
{% else %}
<meta name="twitter:card" content="summary">
<meta name="twitter:image" content="{% if page.image.thumb %}{{ site.url }}/images/{{ page.image.thumb }}{% else %}{{ site.url }}/images/{{ site.logo }}{% endif %}">
{% endif %}
<!-- Open Graph -->
<meta property="og:locale" content="{{ site.locale }}">
<meta property="og:type" content="article">
<meta property="og:title" content="{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}">
{% if page.description %}<meta property="og:description" content="{{ page.description }}">{% endif %}
<meta property="og:url" content="{{ page.url | replace:'index.html','' | prepend: site.url }}">
<meta property="og:site_name" content="{{ site.title }}">
{% if page.og_image %}
<meta property="og:image" content="http:{{ site.url }}/{{ page.og_image }}">
{% if site.url contains 'https://' %}<meta property="og:image:secure_url" content="{{ site.url }}/{% if page.og_image %}{{ page.og_image }}{% else %}{{ site.og_image }}{% endif %}">{% endif %}
<meta property="og:image:type" content="{{ page.og_image_type }}">
<meta property="og:image:width" content="{{ page.og_image_width }}">
<meta property="og:image:height" content="{{ page.og_image_height }}">
{% endif %}
| josecastillo/joeycastillo.com | _includes/open-graph.html | HTML | mit | 1,834 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>generic-environments: 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.8.0 / generic-environments - 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>
generic-environments
<small>
8.7.0
<span class="label label-info">Not compatible</span>
</small>
</h1>
<p><em><script>document.write(moment("2020-02-22 04:40:42 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2020-02-22 04:40:42 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
camlp5 7.11 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-m4 1 Virtual package relying on m4
coq 8.8.0 Formal proof management system.
num 1.3 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.09.0 The OCaml compiler (virtual package)
ocaml-base-compiler 4.09.0 Official release 4.09.0
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.8.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "Hugo.Herbelin@inria.fr"
homepage: "https://github.com/coq-contribs/generic-environments"
license: "LGPL"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/GenericEnvironments"]
depends: [
"ocaml"
"coq" {>= "8.7" & < "8.8~"}
]
tags: [ "keyword: generic environments" "keyword: typing" "keyword: type theory" "category: Mathematics/Logic/Type theory" ]
authors: [ "Emmanuel Polonowski <emmanuel.polonowski@u-pec.fr> [http://lacl.u-pec.fr/polonowski/]" ]
bug-reports: "https://github.com/coq-contribs/generic-environments/issues"
dev-repo: "git+https://github.com/coq-contribs/generic-environments.git"
synopsis: "Generic_Environments"
description: """
http://lacl.u-pec.fr/polonowski/Develop/Generic_Env/gen-env.html
Generic_Environments is a library which provides an abstract data type of environments, as a functor parameterized by a module defining variables, and a function which builds environments for such variables with any Type of type. Usual operations over environments are defined, along with an extensive set of basic and more advanced properties. Moreover, an implementation using lists satisfying and all the required properties is provided."""
flags: light-uninstall
url {
src:
"https://github.com/coq-contribs/generic-environments/archive/v8.7.0.tar.gz"
checksum: "md5=22f39ec272161c7c322e521682b1d9ae"
}
</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-generic-environments.8.7.0 coq.8.8.0</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.8.0).
The following dependencies couldn't be met:
- coq-generic-environments -> coq < 8.8~ -> 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-generic-environments.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">
<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.09.0-2.0.5/released/8.8.0/generic-environments/8.7.0.html | HTML | mit | 7,520 |
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Task 3 - Handlebars</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div id="book-items-container">
</div>
<div id="book-details-container">
</div>
<script id="books-list-template" type='text/x-handlebars-template'>
<ul class="books-list">
{{#each books}}
<li class="book-item">
<a href="#" data-id="{{id}}">
<strong class="book-title">{{title}}</strong><span class="author">by {{author}}</span>
</a>
</li>
{{/each}}
</ul>
</script>
<script id="book-details-template" type='text/x-handlebars-template'>
<div class="book-details">
<h2 class="book-title">
{{title}}
</h2>
<p><span class="isbn">{{isbn}}</span></p>
<p>Published on <span class="publish-date">{{publicationDate}}</span> by <strong class="author">{{author}}</strong></p>
<p class="description">{{description}}</p>
</div>
</script>
<script src="handlebars.min.js"></script>
<script src="scripts.js"></script>
</body>
</html> | iliyaST/TelerikAcademy | JavaScript-UI-and-DOM/Exams/Sample-exam-1/task-3/task-files/index.html | HTML | mit | 1,234 |
<div class="commune_descr limited">
<p>
Berné est
une commune située dans le département de Morbihan en Bretagne. Elle comptait 1 331 habitants en 2008.</p>
<p>
La localité dispose concernant l'enseignement aux enfants de un collège et un lycée.
S'agissant les plus jeunes, la commune dispose de trois écoles primaires.
Berné est équipée des équipements facilitant une bonne prise en charge des jeunes.
Lors d'un projet d'acheter un appartement ou une maison à Berné, il est important regarder la valeur des écoles de la communes</p>
<p>À Berné, le prix moyen à l'achat d'un appartement s'évalue à 1 410 € du m² en vente. la valorisation moyenne d'une maison à l'achat se situe à 1 322 € du m². À la location la valeur moyenne se situe à 6,52 € du m² par mois.</p>
<p>La ville offre quelques aménagements, elle dispose, entre autres, de un terrain de sport et une boucle de randonnée.</p>
<p>Le parc de logements, à Berné, était réparti en 2011 en 36 appartements et 744 maisons soit
un marché plutôt équilibré.</p>
<p>À coté de Berné sont localisées les communes de
<a href="{{VLROOT}}/immobilier/croisty_56048/">Le Croisty</a> à 7 km, 685 habitants,
<a href="{{VLROOT}}/immobilier/locunole_29136/">Locunolé</a> localisée à 9 km, 950 habitants,
<a href="{{VLROOT}}/immobilier/kernascleden_56264/">Kernascléden</a> située à 5 km, 379 habitants,
<a href="{{VLROOT}}/immobilier/priziac_56182/">Priziac</a> à 7 km, 1 025 habitants,
<a href="{{VLROOT}}/immobilier/meslan_56131/">Meslan</a> située à 3 km, 1 242 habitants,
<a href="{{VLROOT}}/immobilier/guilligomarch_29071/">Guilligomarc'h</a> localisée à 6 km, 650 habitants,
entre autres. De plus, Berné est située à seulement 27 km de <a href="{{VLROOT}}/immobilier/lorient_56121/">Lorient</a>.</p>
</div>
| donaldinou/frontend | src/Viteloge/CoreBundle/Resources/descriptions/56014.html | HTML | mit | 1,903 |
<!DOCTYPE html>
<!--[if IE]><![endif]-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Class ResponseHeader
</title>
<meta name="viewport" content="width=device-width">
<meta name="title" content="Class ResponseHeader
">
<meta name="generator" content="docfx 2.22.2.0">
<link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" href="../styles/docfx.vendor.css">
<link rel="stylesheet" href="../styles/docfx.css">
<link rel="stylesheet" href="../styles/main.css">
<meta property="docfx:navrel" content="../toc">
<meta property="docfx:tocrel" content="toc">
</head>
<body data-spy="scroll" data-target="#affix">
<div id="wrapper">
<header>
<nav id="autocollapse" class="navbar navbar-inverse ng-scope" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="../index.html">
<img id="logo" class="svg" src="../logo.svg" alt="">
</a>
</div>
<div class="collapse navbar-collapse" id="navbar">
<form class="navbar-form navbar-right" role="search" id="search">
<div class="form-group">
<input type="text" class="form-control" id="search-query" placeholder="Search" autocomplete="off">
</div>
</form>
<ul class="nav level1 navbar-nav">
<li class="">
<a href="../articles/intro.html" title="Articles" class="">Articles</a>
</li>
<li class="active">
<a href="../api/index.html" title="Api Documentation" class="active">Api Documentation</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="subnav navbar navbar-default">
<div class="container hide-when-search" id="breadcrumb">
<ul class="breadcrumb">
<li></li>
</ul>
</div>
</div>
</header>
<div role="main" class="container body-content hide-when-search">
<div class="sidenav hide-when-search">
<a class="btn toc-toggle collapse" data-toggle="collapse" href="#sidetoggle" aria-expanded="false" aria-controls="sidetoggle">Show / Hide Table of Contents</a>
<div class="sidetoggle collapse" id="sidetoggle">
<div>
<div class="sidefilter">
<form class="toc-filter">
<span class="glyphicon glyphicon-filter filter-icon"></span>
<input type="text" id="toc_filter_input" placeholder="Enter here to filter..." onkeypress="if(event.keyCode==13) {return false;}">
</form>
</div>
<div class="sidetoc">
<div class="toc" id="toc">
<ul class="nav level1">
<li class="">
<span class="expand-stub"></span>
<a href="Authpb.html" title="Authpb" class="">Authpb</a>
<ul class="nav level2">
<li class="">
<a href="Authpb.AuthReflection.html" title="AuthReflection" class="">AuthReflection</a>
</li>
<li class="">
<a href="Authpb.Permission.html" title="Permission" class="">Permission</a>
</li>
<li class="">
<a href="Authpb.Permission.Types.html" title="Permission.Types" class="">Permission.Types</a>
</li>
<li class="">
<a href="Authpb.Permission.Types.Type.html" title="Permission.Types.Type" class="">Permission.Types.Type</a>
</li>
<li class="">
<a href="Authpb.Role.html" title="Role" class="">Role</a>
</li>
<li class="">
<a href="Authpb.User.html" title="User" class="">User</a>
</li>
</ul> </li>
<li class="">
<span class="expand-stub"></span>
<a href="ETCD.V3.html" title="ETCD.V3" class="">ETCD.V3</a>
<ul class="nav level2">
<li class="">
<a href="ETCD.V3.AuthCallInvoker.html" title="AuthCallInvoker" class="">AuthCallInvoker</a>
</li>
<li class="">
<a href="ETCD.V3.AuthExtensions.html" title="AuthExtensions" class="">AuthExtensions</a>
</li>
<li class="">
<a href="ETCD.V3.Client.html" title="Client" class="">Client</a>
</li>
<li class="">
<a href="ETCD.V3.ClusterExtensions.html" title="ClusterExtensions" class="">ClusterExtensions</a>
</li>
<li class="">
<a href="ETCD.V3.Constants.html" title="Constants" class="">Constants</a>
</li>
<li class="">
<a href="ETCD.V3.KVExtensions.html" title="KVExtensions" class="">KVExtensions</a>
</li>
<li class="">
<a href="ETCD.V3.LeaseExtensions.html" title="LeaseExtensions" class="">LeaseExtensions</a>
</li>
<li class="">
<a href="ETCD.V3.MaintenanceExtensions.html" title="MaintenanceExtensions" class="">MaintenanceExtensions</a>
</li>
<li class="">
<a href="ETCD.V3.WatchExtensions.html" title="WatchExtensions" class="">WatchExtensions</a>
</li>
</ul> </li>
<li class="">
<span class="expand-stub"></span>
<a href="Etcdserverpb.html" title="Etcdserverpb" class="">Etcdserverpb</a>
<ul class="nav level2">
<li class="">
<a href="Etcdserverpb.AlarmMember.html" title="AlarmMember" class="">AlarmMember</a>
</li>
<li class="">
<a href="Etcdserverpb.AlarmRequest.html" title="AlarmRequest" class="">AlarmRequest</a>
</li>
<li class="">
<a href="Etcdserverpb.AlarmRequest.Types.html" title="AlarmRequest.Types" class="">AlarmRequest.Types</a>
</li>
<li class="">
<a href="Etcdserverpb.AlarmRequest.Types.AlarmAction.html" title="AlarmRequest.Types.AlarmAction" class="">AlarmRequest.Types.AlarmAction</a>
</li>
<li class="">
<a href="Etcdserverpb.AlarmResponse.html" title="AlarmResponse" class="">AlarmResponse</a>
</li>
<li class="">
<a href="Etcdserverpb.AlarmType.html" title="AlarmType" class="">AlarmType</a>
</li>
<li class="">
<a href="Etcdserverpb.Auth.html" title="Auth" class="">Auth</a>
</li>
<li class="">
<a href="Etcdserverpb.Auth.AuthBase.html" title="Auth.AuthBase" class="">Auth.AuthBase</a>
</li>
<li class="">
<a href="Etcdserverpb.Auth.AuthClient.html" title="Auth.AuthClient" class="">Auth.AuthClient</a>
</li>
<li class="">
<a href="Etcdserverpb.AuthDisableRequest.html" title="AuthDisableRequest" class="">AuthDisableRequest</a>
</li>
<li class="">
<a href="Etcdserverpb.AuthDisableResponse.html" title="AuthDisableResponse" class="">AuthDisableResponse</a>
</li>
<li class="">
<a href="Etcdserverpb.AuthEnableRequest.html" title="AuthEnableRequest" class="">AuthEnableRequest</a>
</li>
<li class="">
<a href="Etcdserverpb.AuthEnableResponse.html" title="AuthEnableResponse" class="">AuthEnableResponse</a>
</li>
<li class="">
<a href="Etcdserverpb.AuthenticateRequest.html" title="AuthenticateRequest" class="">AuthenticateRequest</a>
</li>
<li class="">
<a href="Etcdserverpb.AuthenticateResponse.html" title="AuthenticateResponse" class="">AuthenticateResponse</a>
</li>
<li class="">
<a href="Etcdserverpb.AuthRoleAddRequest.html" title="AuthRoleAddRequest" class="">AuthRoleAddRequest</a>
</li>
<li class="">
<a href="Etcdserverpb.AuthRoleAddResponse.html" title="AuthRoleAddResponse" class="">AuthRoleAddResponse</a>
</li>
<li class="">
<a href="Etcdserverpb.AuthRoleDeleteRequest.html" title="AuthRoleDeleteRequest" class="">AuthRoleDeleteRequest</a>
</li>
<li class="">
<a href="Etcdserverpb.AuthRoleDeleteResponse.html" title="AuthRoleDeleteResponse" class="">AuthRoleDeleteResponse</a>
</li>
<li class="">
<a href="Etcdserverpb.AuthRoleGetRequest.html" title="AuthRoleGetRequest" class="">AuthRoleGetRequest</a>
</li>
<li class="">
<a href="Etcdserverpb.AuthRoleGetResponse.html" title="AuthRoleGetResponse" class="">AuthRoleGetResponse</a>
</li>
<li class="">
<a href="Etcdserverpb.AuthRoleGrantPermissionRequest.html" title="AuthRoleGrantPermissionRequest" class="">AuthRoleGrantPermissionRequest</a>
</li>
<li class="">
<a href="Etcdserverpb.AuthRoleGrantPermissionResponse.html" title="AuthRoleGrantPermissionResponse" class="">AuthRoleGrantPermissionResponse</a>
</li>
<li class="">
<a href="Etcdserverpb.AuthRoleListRequest.html" title="AuthRoleListRequest" class="">AuthRoleListRequest</a>
</li>
<li class="">
<a href="Etcdserverpb.AuthRoleListResponse.html" title="AuthRoleListResponse" class="">AuthRoleListResponse</a>
</li>
<li class="">
<a href="Etcdserverpb.AuthRoleRevokePermissionRequest.html" title="AuthRoleRevokePermissionRequest" class="">AuthRoleRevokePermissionRequest</a>
</li>
<li class="">
<a href="Etcdserverpb.AuthRoleRevokePermissionResponse.html" title="AuthRoleRevokePermissionResponse" class="">AuthRoleRevokePermissionResponse</a>
</li>
<li class="">
<a href="Etcdserverpb.AuthUserAddRequest.html" title="AuthUserAddRequest" class="">AuthUserAddRequest</a>
</li>
<li class="">
<a href="Etcdserverpb.AuthUserAddResponse.html" title="AuthUserAddResponse" class="">AuthUserAddResponse</a>
</li>
<li class="">
<a href="Etcdserverpb.AuthUserChangePasswordRequest.html" title="AuthUserChangePasswordRequest" class="">AuthUserChangePasswordRequest</a>
</li>
<li class="">
<a href="Etcdserverpb.AuthUserChangePasswordResponse.html" title="AuthUserChangePasswordResponse" class="">AuthUserChangePasswordResponse</a>
</li>
<li class="">
<a href="Etcdserverpb.AuthUserDeleteRequest.html" title="AuthUserDeleteRequest" class="">AuthUserDeleteRequest</a>
</li>
<li class="">
<a href="Etcdserverpb.AuthUserDeleteResponse.html" title="AuthUserDeleteResponse" class="">AuthUserDeleteResponse</a>
</li>
<li class="">
<a href="Etcdserverpb.AuthUserGetRequest.html" title="AuthUserGetRequest" class="">AuthUserGetRequest</a>
</li>
<li class="">
<a href="Etcdserverpb.AuthUserGetResponse.html" title="AuthUserGetResponse" class="">AuthUserGetResponse</a>
</li>
<li class="">
<a href="Etcdserverpb.AuthUserGrantRoleRequest.html" title="AuthUserGrantRoleRequest" class="">AuthUserGrantRoleRequest</a>
</li>
<li class="">
<a href="Etcdserverpb.AuthUserGrantRoleResponse.html" title="AuthUserGrantRoleResponse" class="">AuthUserGrantRoleResponse</a>
</li>
<li class="">
<a href="Etcdserverpb.AuthUserListRequest.html" title="AuthUserListRequest" class="">AuthUserListRequest</a>
</li>
<li class="">
<a href="Etcdserverpb.AuthUserListResponse.html" title="AuthUserListResponse" class="">AuthUserListResponse</a>
</li>
<li class="">
<a href="Etcdserverpb.AuthUserRevokeRoleRequest.html" title="AuthUserRevokeRoleRequest" class="">AuthUserRevokeRoleRequest</a>
</li>
<li class="">
<a href="Etcdserverpb.AuthUserRevokeRoleResponse.html" title="AuthUserRevokeRoleResponse" class="">AuthUserRevokeRoleResponse</a>
</li>
<li class="">
<a href="Etcdserverpb.Cluster.html" title="Cluster" class="">Cluster</a>
</li>
<li class="">
<a href="Etcdserverpb.Cluster.ClusterBase.html" title="Cluster.ClusterBase" class="">Cluster.ClusterBase</a>
</li>
<li class="">
<a href="Etcdserverpb.Cluster.ClusterClient.html" title="Cluster.ClusterClient" class="">Cluster.ClusterClient</a>
</li>
<li class="">
<a href="Etcdserverpb.CompactionRequest.html" title="CompactionRequest" class="">CompactionRequest</a>
</li>
<li class="">
<a href="Etcdserverpb.CompactionResponse.html" title="CompactionResponse" class="">CompactionResponse</a>
</li>
<li class="">
<a href="Etcdserverpb.Compare.html" title="Compare" class="">Compare</a>
</li>
<li class="">
<a href="Etcdserverpb.Compare.TargetUnionOneofCase.html" title="Compare.TargetUnionOneofCase" class="">Compare.TargetUnionOneofCase</a>
</li>
<li class="">
<a href="Etcdserverpb.Compare.Types.html" title="Compare.Types" class="">Compare.Types</a>
</li>
<li class="">
<a href="Etcdserverpb.Compare.Types.CompareResult.html" title="Compare.Types.CompareResult" class="">Compare.Types.CompareResult</a>
</li>
<li class="">
<a href="Etcdserverpb.Compare.Types.CompareTarget.html" title="Compare.Types.CompareTarget" class="">Compare.Types.CompareTarget</a>
</li>
<li class="">
<a href="Etcdserverpb.DefragmentRequest.html" title="DefragmentRequest" class="">DefragmentRequest</a>
</li>
<li class="">
<a href="Etcdserverpb.DefragmentResponse.html" title="DefragmentResponse" class="">DefragmentResponse</a>
</li>
<li class="">
<a href="Etcdserverpb.DeleteRangeRequest.html" title="DeleteRangeRequest" class="">DeleteRangeRequest</a>
</li>
<li class="">
<a href="Etcdserverpb.DeleteRangeResponse.html" title="DeleteRangeResponse" class="">DeleteRangeResponse</a>
</li>
<li class="">
<a href="Etcdserverpb.HashRequest.html" title="HashRequest" class="">HashRequest</a>
</li>
<li class="">
<a href="Etcdserverpb.HashResponse.html" title="HashResponse" class="">HashResponse</a>
</li>
<li class="">
<a href="Etcdserverpb.KV.html" title="KV" class="">KV</a>
</li>
<li class="">
<a href="Etcdserverpb.KV.KVBase.html" title="KV.KVBase" class="">KV.KVBase</a>
</li>
<li class="">
<a href="Etcdserverpb.KV.KVClient.html" title="KV.KVClient" class="">KV.KVClient</a>
</li>
<li class="">
<a href="Etcdserverpb.Lease.html" title="Lease" class="">Lease</a>
</li>
<li class="">
<a href="Etcdserverpb.Lease.LeaseBase.html" title="Lease.LeaseBase" class="">Lease.LeaseBase</a>
</li>
<li class="">
<a href="Etcdserverpb.Lease.LeaseClient.html" title="Lease.LeaseClient" class="">Lease.LeaseClient</a>
</li>
<li class="">
<a href="Etcdserverpb.LeaseGrantRequest.html" title="LeaseGrantRequest" class="">LeaseGrantRequest</a>
</li>
<li class="">
<a href="Etcdserverpb.LeaseGrantResponse.html" title="LeaseGrantResponse" class="">LeaseGrantResponse</a>
</li>
<li class="">
<a href="Etcdserverpb.LeaseKeepAliveRequest.html" title="LeaseKeepAliveRequest" class="">LeaseKeepAliveRequest</a>
</li>
<li class="">
<a href="Etcdserverpb.LeaseKeepAliveResponse.html" title="LeaseKeepAliveResponse" class="">LeaseKeepAliveResponse</a>
</li>
<li class="">
<a href="Etcdserverpb.LeaseRevokeRequest.html" title="LeaseRevokeRequest" class="">LeaseRevokeRequest</a>
</li>
<li class="">
<a href="Etcdserverpb.LeaseRevokeResponse.html" title="LeaseRevokeResponse" class="">LeaseRevokeResponse</a>
</li>
<li class="">
<a href="Etcdserverpb.LeaseTimeToLiveRequest.html" title="LeaseTimeToLiveRequest" class="">LeaseTimeToLiveRequest</a>
</li>
<li class="">
<a href="Etcdserverpb.LeaseTimeToLiveResponse.html" title="LeaseTimeToLiveResponse" class="">LeaseTimeToLiveResponse</a>
</li>
<li class="">
<a href="Etcdserverpb.Maintenance.html" title="Maintenance" class="">Maintenance</a>
</li>
<li class="">
<a href="Etcdserverpb.Maintenance.MaintenanceBase.html" title="Maintenance.MaintenanceBase" class="">Maintenance.MaintenanceBase</a>
</li>
<li class="">
<a href="Etcdserverpb.Maintenance.MaintenanceClient.html" title="Maintenance.MaintenanceClient" class="">Maintenance.MaintenanceClient</a>
</li>
<li class="">
<a href="Etcdserverpb.Member.html" title="Member" class="">Member</a>
</li>
<li class="">
<a href="Etcdserverpb.MemberAddRequest.html" title="MemberAddRequest" class="">MemberAddRequest</a>
</li>
<li class="">
<a href="Etcdserverpb.MemberAddResponse.html" title="MemberAddResponse" class="">MemberAddResponse</a>
</li>
<li class="">
<a href="Etcdserverpb.MemberListRequest.html" title="MemberListRequest" class="">MemberListRequest</a>
</li>
<li class="">
<a href="Etcdserverpb.MemberListResponse.html" title="MemberListResponse" class="">MemberListResponse</a>
</li>
<li class="">
<a href="Etcdserverpb.MemberRemoveRequest.html" title="MemberRemoveRequest" class="">MemberRemoveRequest</a>
</li>
<li class="">
<a href="Etcdserverpb.MemberRemoveResponse.html" title="MemberRemoveResponse" class="">MemberRemoveResponse</a>
</li>
<li class="">
<a href="Etcdserverpb.MemberUpdateRequest.html" title="MemberUpdateRequest" class="">MemberUpdateRequest</a>
</li>
<li class="">
<a href="Etcdserverpb.MemberUpdateResponse.html" title="MemberUpdateResponse" class="">MemberUpdateResponse</a>
</li>
<li class="">
<a href="Etcdserverpb.PutRequest.html" title="PutRequest" class="">PutRequest</a>
</li>
<li class="">
<a href="Etcdserverpb.PutResponse.html" title="PutResponse" class="">PutResponse</a>
</li>
<li class="">
<a href="Etcdserverpb.RangeRequest.html" title="RangeRequest" class="">RangeRequest</a>
</li>
<li class="">
<a href="Etcdserverpb.RangeRequest.Types.html" title="RangeRequest.Types" class="">RangeRequest.Types</a>
</li>
<li class="">
<a href="Etcdserverpb.RangeRequest.Types.SortOrder.html" title="RangeRequest.Types.SortOrder" class="">RangeRequest.Types.SortOrder</a>
</li>
<li class="">
<a href="Etcdserverpb.RangeRequest.Types.SortTarget.html" title="RangeRequest.Types.SortTarget" class="">RangeRequest.Types.SortTarget</a>
</li>
<li class="">
<a href="Etcdserverpb.RangeResponse.html" title="RangeResponse" class="">RangeResponse</a>
</li>
<li class="">
<a href="Etcdserverpb.RequestOp.html" title="RequestOp" class="">RequestOp</a>
</li>
<li class="">
<a href="Etcdserverpb.RequestOp.RequestOneofCase.html" title="RequestOp.RequestOneofCase" class="">RequestOp.RequestOneofCase</a>
</li>
<li class="active">
<a href="Etcdserverpb.ResponseHeader.html" title="ResponseHeader" class="active">ResponseHeader</a>
</li>
<li class="">
<a href="Etcdserverpb.ResponseOp.html" title="ResponseOp" class="">ResponseOp</a>
</li>
<li class="">
<a href="Etcdserverpb.ResponseOp.ResponseOneofCase.html" title="ResponseOp.ResponseOneofCase" class="">ResponseOp.ResponseOneofCase</a>
</li>
<li class="">
<a href="Etcdserverpb.RpcReflection.html" title="RpcReflection" class="">RpcReflection</a>
</li>
<li class="">
<a href="Etcdserverpb.SnapshotRequest.html" title="SnapshotRequest" class="">SnapshotRequest</a>
</li>
<li class="">
<a href="Etcdserverpb.SnapshotResponse.html" title="SnapshotResponse" class="">SnapshotResponse</a>
</li>
<li class="">
<a href="Etcdserverpb.StatusRequest.html" title="StatusRequest" class="">StatusRequest</a>
</li>
<li class="">
<a href="Etcdserverpb.StatusResponse.html" title="StatusResponse" class="">StatusResponse</a>
</li>
<li class="">
<a href="Etcdserverpb.TxnRequest.html" title="TxnRequest" class="">TxnRequest</a>
</li>
<li class="">
<a href="Etcdserverpb.TxnResponse.html" title="TxnResponse" class="">TxnResponse</a>
</li>
<li class="">
<a href="Etcdserverpb.Watch.html" title="Watch" class="">Watch</a>
</li>
<li class="">
<a href="Etcdserverpb.Watch.WatchBase.html" title="Watch.WatchBase" class="">Watch.WatchBase</a>
</li>
<li class="">
<a href="Etcdserverpb.Watch.WatchClient.html" title="Watch.WatchClient" class="">Watch.WatchClient</a>
</li>
<li class="">
<a href="Etcdserverpb.WatchCancelRequest.html" title="WatchCancelRequest" class="">WatchCancelRequest</a>
</li>
<li class="">
<a href="Etcdserverpb.WatchCreateRequest.html" title="WatchCreateRequest" class="">WatchCreateRequest</a>
</li>
<li class="">
<a href="Etcdserverpb.WatchCreateRequest.Types.html" title="WatchCreateRequest.Types" class="">WatchCreateRequest.Types</a>
</li>
<li class="">
<a href="Etcdserverpb.WatchCreateRequest.Types.FilterType.html" title="WatchCreateRequest.Types.FilterType" class="">WatchCreateRequest.Types.FilterType</a>
</li>
<li class="">
<a href="Etcdserverpb.WatchRequest.html" title="WatchRequest" class="">WatchRequest</a>
</li>
<li class="">
<a href="Etcdserverpb.WatchRequest.RequestUnionOneofCase.html" title="WatchRequest.RequestUnionOneofCase" class="">WatchRequest.RequestUnionOneofCase</a>
</li>
<li class="">
<a href="Etcdserverpb.WatchResponse.html" title="WatchResponse" class="">WatchResponse</a>
</li>
</ul> </li>
<li class="">
<span class="expand-stub"></span>
<a href="Mvccpb.html" title="Mvccpb" class="">Mvccpb</a>
<ul class="nav level2">
<li class="">
<a href="Mvccpb.Event.html" title="Event" class="">Event</a>
</li>
<li class="">
<a href="Mvccpb.Event.Types.html" title="Event.Types" class="">Event.Types</a>
</li>
<li class="">
<a href="Mvccpb.Event.Types.EventType.html" title="Event.Types.EventType" class="">Event.Types.EventType</a>
</li>
<li class="">
<a href="Mvccpb.KeyValue.html" title="KeyValue" class="">KeyValue</a>
</li>
<li class="">
<a href="Mvccpb.KvReflection.html" title="KvReflection" class="">KvReflection</a>
</li>
</ul> </li>
</ul> </div>
</div>
</div>
</div>
</div>
<div class="article row grid-right">
<div class="col-md-10">
<article class="content wrap" id="_content" data-uid="Etcdserverpb.ResponseHeader">
<h1 id="Etcdserverpb_ResponseHeader" data-uid="Etcdserverpb.ResponseHeader" class="text-break">Class ResponseHeader
</h1>
<div class="markdown level0 summary"></div>
<div class="markdown level0 conceptual"></div>
<div class="inheritance">
<h5>Inheritance</h5>
<div class="level0"><span class="xref">System.Object</span></div>
<div class="level1"><span class="xref">ResponseHeader</span></div>
</div>
<h6><strong>Namespace</strong>: <a class="xref" href="Etcdserverpb.html">Etcdserverpb</a></h6>
<h6><strong>Assembly</strong>: cs.temp.dll.dll</h6>
<h5 id="Etcdserverpb_ResponseHeader_syntax">Syntax</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public sealed class ResponseHeader : Google.Protobuf.IMessage<ResponseHeader></code></pre>
</div>
<h3 id="constructors">Constructors
</h3>
<a id="Etcdserverpb_ResponseHeader__ctor_" data-uid="Etcdserverpb.ResponseHeader.#ctor*"></a>
<h4 id="Etcdserverpb_ResponseHeader__ctor" data-uid="Etcdserverpb.ResponseHeader.#ctor">ResponseHeader()</h4>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public ResponseHeader()</code></pre>
</div>
<a id="Etcdserverpb_ResponseHeader__ctor_" data-uid="Etcdserverpb.ResponseHeader.#ctor*"></a>
<h4 id="Etcdserverpb_ResponseHeader__ctor_Etcdserverpb_ResponseHeader_" data-uid="Etcdserverpb.ResponseHeader.#ctor(Etcdserverpb.ResponseHeader)">ResponseHeader(ResponseHeader)</h4>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public ResponseHeader(ResponseHeader other)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="Etcdserverpb.ResponseHeader.html">ResponseHeader</a></td>
<td><span class="parametername">other</span></td>
<td></td>
</tr>
</tbody>
</table>
<h3 id="fields">Fields
</h3>
<h4 id="Etcdserverpb_ResponseHeader_ClusterIdFieldNumber" data-uid="Etcdserverpb.ResponseHeader.ClusterIdFieldNumber">ClusterIdFieldNumber</h4>
<div class="markdown level1 summary"><p>Field number for the "cluster_id" field.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public const int ClusterIdFieldNumber = 1</code></pre>
</div>
<h5 class="fieldValue">Field Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Int32</span></td>
<td></td>
</tr>
</tbody>
</table>
<h4 id="Etcdserverpb_ResponseHeader_MemberIdFieldNumber" data-uid="Etcdserverpb.ResponseHeader.MemberIdFieldNumber">MemberIdFieldNumber</h4>
<div class="markdown level1 summary"><p>Field number for the "member_id" field.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public const int MemberIdFieldNumber = 2</code></pre>
</div>
<h5 class="fieldValue">Field Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Int32</span></td>
<td></td>
</tr>
</tbody>
</table>
<h4 id="Etcdserverpb_ResponseHeader_RaftTermFieldNumber" data-uid="Etcdserverpb.ResponseHeader.RaftTermFieldNumber">RaftTermFieldNumber</h4>
<div class="markdown level1 summary"><p>Field number for the "raft_term" field.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public const int RaftTermFieldNumber = 4</code></pre>
</div>
<h5 class="fieldValue">Field Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Int32</span></td>
<td></td>
</tr>
</tbody>
</table>
<h4 id="Etcdserverpb_ResponseHeader_RevisionFieldNumber" data-uid="Etcdserverpb.ResponseHeader.RevisionFieldNumber">RevisionFieldNumber</h4>
<div class="markdown level1 summary"><p>Field number for the "revision" field.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public const int RevisionFieldNumber = 3</code></pre>
</div>
<h5 class="fieldValue">Field Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Int32</span></td>
<td></td>
</tr>
</tbody>
</table>
<h3 id="properties">Properties
</h3>
<a id="Etcdserverpb_ResponseHeader_ClusterId_" data-uid="Etcdserverpb.ResponseHeader.ClusterId*"></a>
<h4 id="Etcdserverpb_ResponseHeader_ClusterId" data-uid="Etcdserverpb.ResponseHeader.ClusterId">ClusterId</h4>
<div class="markdown level1 summary"><p>cluster_id is the ID of the cluster which sent the response.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public ulong ClusterId { get; set; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.UInt64</span></td>
<td></td>
</tr>
</tbody>
</table>
<a id="Etcdserverpb_ResponseHeader_Descriptor_" data-uid="Etcdserverpb.ResponseHeader.Descriptor*"></a>
<h4 id="Etcdserverpb_ResponseHeader_Descriptor" data-uid="Etcdserverpb.ResponseHeader.Descriptor">Descriptor</h4>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static Google.Protobuf.Reflection.MessageDescriptor Descriptor { get; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">Google.Protobuf.Reflection.MessageDescriptor</span></td>
<td></td>
</tr>
</tbody>
</table>
<a id="Etcdserverpb_ResponseHeader_MemberId_" data-uid="Etcdserverpb.ResponseHeader.MemberId*"></a>
<h4 id="Etcdserverpb_ResponseHeader_MemberId" data-uid="Etcdserverpb.ResponseHeader.MemberId">MemberId</h4>
<div class="markdown level1 summary"><p>member_id is the ID of the member which sent the response.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public ulong MemberId { get; set; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.UInt64</span></td>
<td></td>
</tr>
</tbody>
</table>
<a id="Etcdserverpb_ResponseHeader_Parser_" data-uid="Etcdserverpb.ResponseHeader.Parser*"></a>
<h4 id="Etcdserverpb_ResponseHeader_Parser" data-uid="Etcdserverpb.ResponseHeader.Parser">Parser</h4>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static Google.Protobuf.MessageParser<ResponseHeader> Parser { get; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">Google.Protobuf.MessageParser</span><<a class="xref" href="Etcdserverpb.ResponseHeader.html">ResponseHeader</a>></td>
<td></td>
</tr>
</tbody>
</table>
<a id="Etcdserverpb_ResponseHeader_RaftTerm_" data-uid="Etcdserverpb.ResponseHeader.RaftTerm*"></a>
<h4 id="Etcdserverpb_ResponseHeader_RaftTerm" data-uid="Etcdserverpb.ResponseHeader.RaftTerm">RaftTerm</h4>
<div class="markdown level1 summary"><p>raft_term is the raft term when the request was applied.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public ulong RaftTerm { get; set; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.UInt64</span></td>
<td></td>
</tr>
</tbody>
</table>
<a id="Etcdserverpb_ResponseHeader_Revision_" data-uid="Etcdserverpb.ResponseHeader.Revision*"></a>
<h4 id="Etcdserverpb_ResponseHeader_Revision" data-uid="Etcdserverpb.ResponseHeader.Revision">Revision</h4>
<div class="markdown level1 summary"><p>revision is the key-value store revision when the request was applied.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public long Revision { get; set; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Int64</span></td>
<td></td>
</tr>
</tbody>
</table>
<h3 id="methods">Methods
</h3>
<a id="Etcdserverpb_ResponseHeader_CalculateSize_" data-uid="Etcdserverpb.ResponseHeader.CalculateSize*"></a>
<h4 id="Etcdserverpb_ResponseHeader_CalculateSize" data-uid="Etcdserverpb.ResponseHeader.CalculateSize">CalculateSize()</h4>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public int CalculateSize()</code></pre>
</div>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Int32</span></td>
<td></td>
</tr>
</tbody>
</table>
<a id="Etcdserverpb_ResponseHeader_Clone_" data-uid="Etcdserverpb.ResponseHeader.Clone*"></a>
<h4 id="Etcdserverpb_ResponseHeader_Clone" data-uid="Etcdserverpb.ResponseHeader.Clone">Clone()</h4>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public ResponseHeader Clone()</code></pre>
</div>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="Etcdserverpb.ResponseHeader.html">ResponseHeader</a></td>
<td></td>
</tr>
</tbody>
</table>
<a id="Etcdserverpb_ResponseHeader_Equals_" data-uid="Etcdserverpb.ResponseHeader.Equals*"></a>
<h4 id="Etcdserverpb_ResponseHeader_Equals_Etcdserverpb_ResponseHeader_" data-uid="Etcdserverpb.ResponseHeader.Equals(Etcdserverpb.ResponseHeader)">Equals(ResponseHeader)</h4>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public bool Equals(ResponseHeader other)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="Etcdserverpb.ResponseHeader.html">ResponseHeader</a></td>
<td><span class="parametername">other</span></td>
<td></td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Boolean</span></td>
<td></td>
</tr>
</tbody>
</table>
<a id="Etcdserverpb_ResponseHeader_Equals_" data-uid="Etcdserverpb.ResponseHeader.Equals*"></a>
<h4 id="Etcdserverpb_ResponseHeader_Equals_System_Object_" data-uid="Etcdserverpb.ResponseHeader.Equals(System.Object)">Equals(Object)</h4>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public override bool Equals(object other)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Object</span></td>
<td><span class="parametername">other</span></td>
<td></td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Boolean</span></td>
<td></td>
</tr>
</tbody>
</table>
<a id="Etcdserverpb_ResponseHeader_GetHashCode_" data-uid="Etcdserverpb.ResponseHeader.GetHashCode*"></a>
<h4 id="Etcdserverpb_ResponseHeader_GetHashCode" data-uid="Etcdserverpb.ResponseHeader.GetHashCode">GetHashCode()</h4>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public override int GetHashCode()</code></pre>
</div>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Int32</span></td>
<td></td>
</tr>
</tbody>
</table>
<a id="Etcdserverpb_ResponseHeader_MergeFrom_" data-uid="Etcdserverpb.ResponseHeader.MergeFrom*"></a>
<h4 id="Etcdserverpb_ResponseHeader_MergeFrom_Etcdserverpb_ResponseHeader_" data-uid="Etcdserverpb.ResponseHeader.MergeFrom(Etcdserverpb.ResponseHeader)">MergeFrom(ResponseHeader)</h4>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public void MergeFrom(ResponseHeader other)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="Etcdserverpb.ResponseHeader.html">ResponseHeader</a></td>
<td><span class="parametername">other</span></td>
<td></td>
</tr>
</tbody>
</table>
<a id="Etcdserverpb_ResponseHeader_MergeFrom_" data-uid="Etcdserverpb.ResponseHeader.MergeFrom*"></a>
<h4 id="Etcdserverpb_ResponseHeader_MergeFrom_Google_Protobuf_CodedInputStream_" data-uid="Etcdserverpb.ResponseHeader.MergeFrom(Google.Protobuf.CodedInputStream)">MergeFrom(Google.Protobuf.CodedInputStream)</h4>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public void MergeFrom(Google.Protobuf.CodedInputStream input)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">Google.Protobuf.CodedInputStream</span></td>
<td><span class="parametername">input</span></td>
<td></td>
</tr>
</tbody>
</table>
<a id="Etcdserverpb_ResponseHeader_ToString_" data-uid="Etcdserverpb.ResponseHeader.ToString*"></a>
<h4 id="Etcdserverpb_ResponseHeader_ToString" data-uid="Etcdserverpb.ResponseHeader.ToString">ToString()</h4>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public override string ToString()</code></pre>
</div>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.String</span></td>
<td></td>
</tr>
</tbody>
</table>
<a id="Etcdserverpb_ResponseHeader_WriteTo_" data-uid="Etcdserverpb.ResponseHeader.WriteTo*"></a>
<h4 id="Etcdserverpb_ResponseHeader_WriteTo_Google_Protobuf_CodedOutputStream_" data-uid="Etcdserverpb.ResponseHeader.WriteTo(Google.Protobuf.CodedOutputStream)">WriteTo(Google.Protobuf.CodedOutputStream)</h4>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public void WriteTo(Google.Protobuf.CodedOutputStream output)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">Google.Protobuf.CodedOutputStream</span></td>
<td><span class="parametername">output</span></td>
<td></td>
</tr>
</tbody>
</table>
</article>
</div>
<div class="hidden-sm col-md-2" role="complementary">
<div class="sideaffix">
<div class="contribution">
<ul class="nav">
</ul>
</div>
<nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm affix" id="affix">
<!-- <p><a class="back-to-top" href="#top">Back to top</a><p> -->
</nav>
</div>
</div>
</div>
</div>
<footer>
<div class="grad-bottom"></div>
<div class="footer">
<div class="container">
<span class="pull-right">
<a href="#top">Back to top</a>
</span>
<span>Copyright © 2015-2017 Microsoft<br>Generated by <strong>DocFX</strong></span>
</div>
</div>
</footer>
</div>
<script type="text/javascript" src="../styles/docfx.vendor.js"></script>
<script type="text/javascript" src="../styles/docfx.js"></script>
<script type="text/javascript" src="../styles/main.js"></script>
</body>
</html>
| fs7744/etcdcsharp | docs/api/Etcdserverpb.ResponseHeader.html | HTML | mit | 53,120 |
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="referrer" content="always">
<meta name="robots" content="index, follow">
<link rel="icon" href="about:blank" type="image/x-icon">
<title>
U.S. President Signs $700 Billion Defense Bill, Authorizing Blockchain Security Study
</title>
<meta name="title" content="U.S. President Signs $700 Billion Defense Bill, Authorizing Blockchain Security Study">
<meta name="description"
content="Yesterday, U.S. President Donald Trump signed a $700 billion military spending bill, authorizing a blockchain security study. The bill aims to improve the government’s IT and cybersecurity systems">
<meta name="keywords" content="Blockchain; U.S. ; Donald Trump; the Department of Defense; Criminal networks">
<link rel="stylesheet" type="text/css" href="../css/article-font.css">
<link rel="stylesheet" href="../css/article.min.css"> <!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-109516558-1"></script>
<script> window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-109516558-1');
var _hmt = _hmt || [];
(function () {
var hm = document.createElement("script");
hm.src = "https://hm.baidu.com/hm.js?dc9c3afdb0d4ee781a538922a7c9aaa9";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})(); </script>
</head>
<body class="browser-chrome os-mac is-withMagicUnderlines v-glyph v-glyph--m2 v-enableBrandingButtons is-js postShowScreen">
<div class="site-main surface-container">
<div class="surface">
<div class="screenContent surface-content">
<div class="metabar u-clearfix u-boxShadowBottomThinLighter u-textColorDarker u-fixed u-backgroundTransparentWhiteDarkest u-xs-sizeFullViewportWidth u-tintBgColor u-tintSpectrum">
<div class="metabar-inner u-marginAuto u-maxWidth1000 u-flexCenter u-justifyContentSpaceBetween u-paddingLeft20 u-paddingRight20 u-height65 u-xs-height56">
<div class="metabar-block u-flex1 u-flexCenter">
<a href="../index.html" class="link u-flex">
<img src="../images/icon/logo_black.svg" height="25px">
</a>
</div>
<div class="metabar-block u-flex0 u-flexCenter">
<div class="u-alignMiddle u-inlineBlock u-verticalAlignTop u-height65 u-xs-height56">
<div class="u-alignBlock">
<div class="buttonSet buttonSet--wide u-lineHeightInherit">
<!--<a class="button button--primary button--dark button--chromeless u-accentColor--buttonDark is-inSiteNavBar u-xs-hide js-signInButton" href="#">-->
<!--中文</a>-->
<a class="button button--primary button--dark button--withChrome u-accentColor--buttonDark is-inSiteNavBar"
href="us_president_signs_700_billion_defense_bill_cn.html"
style="font-size: 14px">
中文</a>
</div>
</div>
</div>
</div>
</div>
<div class="metabar-inner u-marginAuto u-maxWidth1000">
<nav role="navigation" class="metabar-block metabar-block--below u-overflowHiddenY u-height40">
<ul class="u-textAlignLeft u-noWrap u-overflowX u-paddingBottom100 u-sm-paddingLeft20 u-sm-paddingRight20">
<li class="metabar-navItem u-uiTextMedium u-fontSize14 u-inlineBlock u-textUppercase u-letterSpacing003 u-textColorNormal u-xs-paddingRight12 u-xs-marginRight0 u-paddingTop5 u-xs-paddingTop10">
<a class="link link--darken u-accentColor--textDarken "
href="http://unitimes.media/?cat=2"> Unitalks </a></li>
<li class="metabar-navItem u-uiTextMedium u-fontSize14 u-inlineBlock u-textUppercase u-letterSpacing003 u-textColorNormal u-xs-paddingRight12 u-xs-marginRight0 u-paddingTop5 u-xs-paddingTop10">
<a class="link link--darker link--darken u-accentColor--textDarken link--noUnderline "
href="http://unitimes.media/?cat=3"> News </a></li>
<li class="metabar-navItem u-uiTextMedium u-fontSize14 u-inlineBlock u-textUppercase u-letterSpacing003 u-textColorNormal u-xs-paddingRight12 u-xs-marginRight0 u-paddingTop5 u-xs-paddingTop10">
<a class="link link--darken u-accentColor--textDarken link--noUnderline "
href="http://unitimes.media/?cat=5"> Knowledge </a></li>
<li class="metabar-navItem u-uiTextMedium u-fontSize14 u-inlineBlock u-textUppercase u-letterSpacing003 u-textColorNormal u-xs-paddingRight12 u-xs-marginRight0 u-paddingTop5 u-xs-paddingTop10">
<a class="link link--darken u-accentColor--textDarken link--noUnderline "
href="http://unitimes.media/?cat=4"> Events </a></li>
<span class="u-borderLeft1 u-paddingLeft22 u-xs-paddingLeft12 u-baseColor--borderLight"></span>
<li class="metabar-navItem is-external u-uiTextMedium u-fontSize14 u-inlineBlock u-textUppercase u-letterSpacing003 u-textColorNormal u-xs-paddingRight12 u-xs-marginRight0 u-paddingTop5 u-xs-paddingTop10">
<a class="link link--darken u-accentColor--textDarken link--noUnderline "
href="http://unitimes.media"> Home </a></li>
</ul>
</nav>
</div>
</div>
<div class="metabar metabar--spacer u-tintBgColor u-height105 u-xs-height95"></div>
<main role="main">
<article
class="u-minHeight100vhOffset65 u-overflowHidden postArticle postArticle--full is-withAccentColors"
lang="en" data-scroll="native">
<header class="container u-maxWidth740">
<div class="uiScale uiScale-ui--regular uiScale-caption--regular postMetaHeader u-paddingBottom10 row">
<div class="col u-size12of12">
<div class="uiScale uiScale-ui--regular uiScale-caption--regular postMetaLockup postMetaLockup--authorWithBio u-flexCenter">
<div class="u-flex0">
<!--<a class="link avatar u-baseColor--link ui-linkSubtle" href="#">-->
<img src="../images/dog.jpg" width="50px" height="50px" class="avatar-image">
<!--</a>-->
</div>
<div class="u-flex1 u-paddingLeft15 u-overflowHidden">
<div class="u-lineHeightTightest">
Qianxi
</div>
<div class="ui-caption postMetaInline">
<time>Dec 14, 2017</time>
<!--<span class="middotDivider u-fontSize12"></span>-->
<!--<span class="readingTime"title="3 min read"></span>-->
</div>
</div>
</div>
</div>
</div>
</header>
<div class="postArticle-content" data-scroll="native">
<section class="section section--body section--first">
<div class="section-content">
<div class="section-inner sectionLayout--insetColumn">
<h1 class="graf graf--h3 graf--leading graf--title">
U.S. President Signs $700 Billion Defense Bill, Authorizing Blockchain Security
Study
</h1>
<p class="graf graf--p graf-after--h3">
<em class="markup--em markup--p-em">
“Yesterday, U.S. President Donald Trump signed a $700 billion military
spending bill, authorizing a blockchain security study. The bill aims to
improve the government’s IT and cybersecurity systems”
</em>
</p>
<img class="graf--p graf-image" src="../images/news/us_president.jpg" width="100%">
<p class="graf graf--p graf-after--p">Reportedly, U.S. President Donald Trump has
officially signed a $700 billion military spending bill, which includes the
authority to conduct a blockchain security study.
</p>
<p class="graf graf--p graf-after--p">According to the latest version of the bill,
the blockchain study mainly includes “an assessment of efforts by foreign
powers, extremist organizations, and criminal networks to utilize these
technologies; an assessment of the use or planned use of such technologies by
the Federal Government and critical infrastructure networks.”
</p>
<p class="graf graf--p graf-after--p">The bill is pushed forward by the U.S. Senate,
calling for the Department of Defense to investigate “potential offensive and
defensive cyber applications of blockchain technology and other distributed
database technologies.” According to the text, the study results will be
delivered to Congress within 6 months.
</p>
<p class="graf graf--p graf-after--p">Although the study is planned to be prepared
by the Department of Defense which has explored many applications, the final
product probably includes the input from other federal agencies and departments.
</p>
<p class="graf graf--p graf-after--p">Last month, Trey Hodgkins, Senior Vice
President of Public Sector at the Information Technology Industry Council (ITIC)
in Washington, D.C., said, “Blockchain was clearly one of the technological
capabilities that Congress meant for agencies to look at, and what they were
trying to do was to create dollars with some flexibility to them so that
agencies would have their own discretion on what they invest in.”
</p>
<p class="graf graf--p graf-after--p">Some observers believe that the measure
proposed by Rob Portman, a Senator of Ohio, may help facilitate the study on
possible blockchain applications within the U.S. government.</p>
<p class="graf graf--p graf-after--p u-textColorNormal">
<em>
「 Declaration: Please indicate the source if repost the article in UNITIMES.
Opinions expressed by Contributors belong to themselves. 」
</em>
</p>
</div>
</div>
</section>
<!--<section name="5e3a"class="section section--body section--last"></section>-->
</div>
<footer class="u-paddingTop30">
<div class="container u-maxWidth740">
<div class="row">
<div class="col u-size12of12">
<div class="u-paddingBottom30">
<ul class="tags tags--postTags tags--borderless">
Tags:
<li><a class="link ">
Blockchain
</a></li>
<li><a class="link ">
U.S.
</a></li>
<li><a class="link ">
Donald Trump
</a></li>
<li><a class="link ">
the Department of Defense
</a></li>
<li><a class="link ">
Criminal networks
</a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="streamItem streamItem--placementCardGrid">
<div class="u-clearfix u-backgroundGrayLightest">
<div class="row u-marginAuto u-maxWidth1000 u-paddingTop30 u-paddingBottom20">
<div class="col u-padding8 u-xs-size12of12 u-size4of12">
<div class="uiScale uiScale-ui--small uiScale-caption--regular u-height280 u-sizeFullWidth u-backgroundWhite u-borderCardBorder u-boxShadow u-borderBox u-borderRadius4"
data-scroll="native">
<a class="link link--noUnderline "
href="china_bans_all_token_offering_financing_activities.html">
<div class="u-backgroundCover u-backgroundColorGrayLight u-height100 u-sizeFullWidth u-borderBottomLight u-borderRadiusTop4"
style="background-image: url('../images/news/c2-thumb.jpg');"></div>
</a>
<div class="u-padding15 u-borderBox u-flexColumn u-height180">
<a class="link link--noUnderline u-flex1 "
href="china_bans_all_token_offering_financing_activities.html">
<div class="ui-caption postMetaInline u-noWrapWithEllipsis u-marginBottom7">
News
</div>
<div class="ui-heading ui-clamp2 u-textColorDarkest u-contentSansBold u-fontSize24 u-maxHeight2LineHeightTighter u-lineClamp2 u-textOverflowEllipsis u-letterSpacingTight u-paddingBottom2">
China Bans all Token Offering Financing Activities, Price of the
Virtual Currencies Decline
</div>
</a>
<div class="u-paddingTop10 u-flex0 u-flexCenter">
<div class="u-flex1 u-minWidth0 u-marginRight10">
<div class="u-flexCenter">
<div class="postMetaInline-avatar u-flex0">
<!--<a class="link avatar u-baseColor--link ui-linkSubtle" href="#">-->
<img src="../images/xue.jpg"
class="avatar-image u-size36x36 u-xs-size32x32">
<!--</a>-->
</div>
<div class="postMetaInline postMetaInline-authorLockup u-flex1 u-noWrapWithEllipsis">
<!--<a class="link link link--darken link--darker u-baseColor--link ui-linkSubtle" href="#">-->
Xue Xu
<!--</a>-->
<div class="u-fontSize12 u-baseColor--textNormal u-textColorNormal">
<time>4 Sept, 2017</time>
<!--<span class="readingTime u-textColorNormal" title="1 min read"></span>-->
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col u-padding8 u-xs-size12of12 u-size4of12">
<div class="uiScale uiScale-ui--small uiScale-caption--regular u-height280 u-sizeFullWidth u-backgroundWhite u-borderCardBorder u-boxShadow u-borderBox u-borderRadius4"
data-scroll="native">
<a class="link link--noUnderline "
href="the_3rd_global_blockchain_summit_successfully.html">
<div class="u-backgroundCover u-backgroundColorGrayLight u-height100 u-sizeFullWidth u-borderBottomLight u-borderRadiusTop4"
style="background-image: url('../images/news/c5-thumb.jpg');"></div>
</a>
<div class="u-padding15 u-borderBox u-flexColumn u-height180">
<a class="link link--noUnderline u-flex1 "
href="the_3rd_global_blockchain_summit_successfully.html">
<div class="ui-caption postMetaInline u-noWrapWithEllipsis u-marginBottom7">
News
</div>
<div class="ui-heading ui-clamp2 u-textColorDarkest u-contentSansBold u-fontSize24 u-maxHeight2LineHeightTighter u-lineClamp2 u-textOverflowEllipsis u-letterSpacingTight u-paddingBottom2">
The 3rd Global Blockchain Summit Successfully Held in Shanghai
</div>
</a>
<div class="u-paddingTop10 u-flex0 u-flexCenter">
<div class="u-flex1 u-minWidth0 u-marginRight10">
<div class="u-flexCenter">
<div class="postMetaInline-avatar u-flex0">
<!--<a class="link avatar u-baseColor--link ui-linkSubtle" href="#">-->
<img src="../images/cat.jpg"
class="avatar-image u-size36x36 u-xs-size32x32">
<!--</a>-->
</div>
<div class="postMetaInline postMetaInline-authorLockup u-flex1 u-noWrapWithEllipsis">
<!--<a class="link link link--darken link--darker u-baseColor--link ui-linkSubtle" href="#">-->
Qinghuan
<!--</a>-->
<div class="u-fontSize12 u-baseColor--textNormal u-textColorNormal">
<time>18 Sept, 2017</time>
<!--<span class="readingTime u-textColorNormal" title="1 min read"></span>-->
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col u-padding8 u-xs-size12of12 u-size4of12">
<div class="uiScale uiScale-ui--small uiScale-caption--regular u-height280 u-sizeFullWidth u-backgroundWhite u-borderCardBorder u-boxShadow u-borderBox u-borderRadius4"
data-scroll="native">
<a class="link link--noUnderline "
href="ethereum_erc-20_token_standard.html">
<div class="u-backgroundCover u-backgroundColorGrayLight u-height100 u-sizeFullWidth u-borderBottomLight u-borderRadiusTop4"
style="background-image: url('../images/news/w4-thumb.jpg');"></div>
</a>
<div class="u-padding15 u-borderBox u-flexColumn u-height180">
<a class="link link--noUnderline u-flex1 "
href="ethereum_erc-20_token_standard.html">
<div class="ui-caption postMetaInline u-noWrapWithEllipsis u-marginBottom7">
News
</div>
<div class="ui-heading ui-clamp2 u-textColorDarkest u-contentSansBold u-fontSize24 u-maxHeight2LineHeightTighter u-lineClamp2 u-textOverflowEllipsis u-letterSpacingTight u-paddingBottom2">
Ethereum's ERC-20 Token Standard Has Been Finalized
</div>
</a>
<div class="u-paddingTop10 u-flex0 u-flexCenter">
<div class="u-flex1 u-minWidth0 u-marginRight10">
<div class="u-flexCenter">
<div class="postMetaInline-avatar u-flex0">
<!--<a class="link avatar u-baseColor--link ui-linkSubtle" href="#">-->
<img src="../images/dog.jpg"
class="avatar-image u-size36x36 u-xs-size32x32">
<!--</a>-->
</div>
<div class="postMetaInline postMetaInline-authorLockup u-flex1 u-noWrapWithEllipsis">
<!--<a class="link link link--darken link--darker u-baseColor--link ui-linkSubtle" href="#">-->
Qianxi
<!--</a>-->
<div class="u-fontSize12 u-baseColor--textNormal u-textColorNormal">
<time>11 Sept, 2017</time>
<!--<span class="readingTime u-textColorNormal" title="1 min read"></span>-->
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="u-textAlignCenter u-paddingBottom20 u-xs-fontSize10">© UNITIMES. All
Rights Reserved.
</div>
</div>
</div>
</footer>
</article>
</main>
</div>
</div>
</div>
<div class="surface-scrollOverlay"></div>
</body>
</html> | LinkTimeTech/website | unitimes/Unitimes Web 5/news/us_president_signs_700_billion_defense_bill.html | HTML | mit | 28,081 |
<!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="author" content="Open Knowledge">
<meta name="description" content="The state of government open data in Guinea for Water Quality in 2015
">
<meta name="keywords" content="Guinea, Water Quality, 2015, Open Government, Open Data, Government Transparency, Open Knowledge
">
<meta property="og:type" content="website"/>
<meta property="og:title" content="Open Data Index - Open Knowledge"/>
<meta property="og:site_name" content="Open Data Index"/>
<meta property="og:description"
content="The state of government open data in Guinea for Water Quality in 2015"/>
<meta property="og:image" content="/static/images/favicon.ico"/>
<title>Guinea / Water Quality | Global Open Data Index by Open Knowledge</title>
<base href="/">
<!--[if lt IE 9]>
<script src="/static/vendor/html5shiv.min.js"></script>
<![endif]-->
<link rel="stylesheet" href="/static/css/site.css">
<link rel="icon" href="/static/images/favicon.ico">
<script>
var siteUrl = '';
</script>
</head>
<body class="place_dataset">
<div class="fixed-ok-panel">
<div id="ok-panel" class="closed">
<iframe src="http://assets.okfn.org/themes/okfn/okf-panel.html" scrolling="no"></iframe>
</div>
<a class="ok-ribbon"><img src="http://okfnlabs.org/ok-panel/assets/images/ok-ribbon.png" alt="Open Knowledge"></a>
</div>
<header id="header">
<nav class="navbar navbar-default" role="navigation">
<div class="container">
<div>
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" 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>
<div class="logo">
<a href="/">
<img src="/static/images/logo2.png">
<span>Global<br/>Open Data Index</span>
</a>
</div>
</div>
<div class="collapse navbar-collapse" id="navbar-collapse">
<ul class="nav navbar-nav" style="margin-right: 132px;">
<li>
<a href="/place/" title="About the Open Data Index project">
Places
</a>
</li>
<li>
<a href="/dataset/" title="About the Open Data Index project">
Datasets
</a>
</li>
<li>
<a href="/download/" title="Download Open Data Index data">
Download
</a>
</li>
<li>
<a href="/insights/" title="Insights">
Insights
</a>
</li>
<li>
<a href="/methodology/"
title="The methodology behind the Open Data Index">
Methodology
</a>
</li>
<li>
<a href="/about/" title="About the Open Data Index project">
About
</a>
</li>
<li>
<a href="/press/"
title="Press information for the Open Data Index">
Press
</a>
</li>
</ul>
</div>
</div>
</div>
</nav>
</header>
<div class="container">
<div class="content">
<div class="row">
<div class="col-md-12">
<ol class="breadcrumb">
<li>
<a href="/">Home</a>
</li>
<li><a href="/place">Places</a></li>
<li><a href="/place/guinea/">Guinea</a></li>
<li class="active">Water Quality</li>
</ol>
<section id="data-header">
<div class="row">
<div class="col-md-6">
<h1>
<a href="/dataset/water/" title="See more data on Water Quality in the Open Data Index">Water Quality</a> <span class="place-openness" data-score="0">0% open</span>
</h1>
<h3>
<a href="/place/guinea/" title="See more data on Guinea in the Open Data Index">Guinea</a>
</h3>
<!--div class="col-md-12 place-rank statistics">
<span class="">Guinea is ranked #74 for this dataset</span>
</div>
<div class="row relative">
</div-->
<div class="row navigate">
<div class="col-md-12">
<h4 class="inline">See other years</h4>
<div class=" inline">
<a class="" href="/place/guinea/water/2014/" title="2014">2014</a>
<a class="" href="/place/guinea/water/2013/" title="2013">2013</a>
</div>
</div>
<div class="col-md-12">
<h4>Share or embed this page</h4>
<div class="btn-group">
<a href="" class="btn btn-default embed" data-toggle="modal" data-target="#embed-instructions">
<i class="fa fa-code"></i> Embed
</a>
<a href="http://twitter.com/share?url=/place/guinea/water/&text=Check out this data from the Global Open Data Index" class="btn btn-default twitter" target="_blank">
<i class="fa fa-twitter"></i> Twitter </a>
<a href="http://www.facebook.com/sharer/sharer.php?u=/place/guinea/water/" class="btn btn-default facebook" target="_blank">
<i class="fa fa-facebook"></i> Facebook </a>
<a href="https://plus.google.com/share?url=/place/guinea/water/" class="btn btn-default google-plus" target="_blank">
<i class="fa fa-google-plus"></i> Google+ </a>
</div>
<div class="modal fade" id="embed-instructions" tabindex="-1" role="dialog" aria-labelledby="embedLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<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" id="embedLabel">Map embed code</h4>
</div>
<div class="modal-body">
<p>
Use the following code to embed the map visualisation into your own website.
</p>
<xmp contenteditable="true"><iframe width="100%" height="360px" src="/vis/map/embed/?embed_width=100%&embed_height=360px&filter_year=2015&filter_dataset=water&panel_tools=false&panel_share=false&embed_title=Guinea ; Water Quality ; 2015&map_place=gn" frameBorder="0"></iframe></xmp>
<p>
If you are a developer, you can read more about the embed options here: <a href="https://github.com/okfn/opendataindex/#choropleth-map" title="Embed options">Embed options</a>
</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-6">
<div id="map-container">
<iframe width="100%" height="360px" src="/vis/map/embed/?embed_width=100%&embed_height=360px&filter_year=2015&filter_dataset=water&panel_tools=false&panel_share=false&embed_title=Guinea ; Water Quality ; 2015&map_place=gn" frameBorder="0"></iframe> </div>
</div>
</div>
</section>
<hr />
<section class="dataset-about">
<div class="row">
<div class="col-md-12">
<h3>What data is expected?</h3>
<p>Data, measured at the water source, on the quality of water is essential for both the delivery of services and the prevention of diseases. In order to satisfy the minimum requirements for this category, data should be available on level of the following chemicals by water source and be updated at least weekly:</p>
<ul>
<li>fecal coliform</li>
<li>arsenic</li>
<li>fluoride levels</li>
<li>nitrates</li>
<li>TDS (Total dissolved solids)</li>
</ul>
</div>
</div>
<div class="row">
<div class="col-md-12">
<h3>What data is available</h3>
</div>
<div class="col-md-6">
<ul class="availability-single">
<li class="maybe" data-toggle="popover" title="<h4><p>Openly licensed? </p></h4>" data-content="<p>The licence must comply with the Open Definition which allows data to be freely used, reused and redistributed. The Open Definition provides a list of conformant licences. If the data uses one of these licences, it is openly licensed.</p>
<p>Licences are commonly found in:</p>
<ul>
<li>the web page footer</li>
<li>a link to Terms &amp; Conditions</li>
<li>the About section</li>
</ul>
<p>Some licences may allow re-use and redistribution but have not been assessed as conformant with the Open Definition. In this case, seek feedback on the Open Data Index discussion forum</p>" data-placement="right">
<i class="fa fa-unlock-alt pointer" title="Click for more information"></i>
Openly licensed? Unsure (No URL given) </li>
<li class="maybe" data-toggle="popover" title="<h4><p>Is the data available for free? </p></h4>" data-content="<p>The data is free if you don’t have to pay for it.</p>" data-placement="right">
<i class="fa fa-dollar pointer" title="Click for more information"></i>
Is the data available for free? Unsure </li>
<li class="maybe" data-toggle="popover" title="<h4><p>Is the data machine readable? </p></h4>" data-content="<p>All files are digital, but not all can be processed or parsed easily by a computer. In order to answer this question, you would need to look at the file type of the dataset. As a rule of thumb the following file types are machine readable:</p>
<ul>
<li>XLS</li>
<li>CSV</li>
<li>JSON</li>
<li>XML</li>
</ul>
<p>The following formats are NOT machine readable:</p>
<ul>
<li>HTML</li>
<li>PDF</li>
<li>DOC</li>
<li>JIF</li>
<li>JPEG</li>
<li>PPT</li>
</ul>
<p>If you have a different file type and you don’t know if it’s machine readable or not, ask in the Open Data Census forum</p>" data-placement="right">
<i class="fa fa-keyboard-o pointer" title="Click for more information"></i>
Is the data machine readable? Unsure (n/a)
</li>
<li class="maybe" data-toggle="popover" title="<h4><p>Available in bulk? </p></h4>" data-content="<p>Data is available in bulk if the whole dataset can be downloaded easily. It is considered non-bulk if the citizens are limited to getting parts of the dataset through an online interface.</p>
<p>For example, if restricted to querying a web form and retrieving a few results at a time from a very large database.</p>" data-placement="right">
<i class="fa fa-copy pointer" title="Click for more information"></i>
Available in bulk? Unsure </li>
<li class="maybe" data-toggle="popover" title="<h4><p>Is the data provided on a timely and up to date basis? </p></h4>" data-content="<p>Is the data current for the census year? You can determine or estimate when the data was last updated and its update frequency by reviewing:</p>
<ul>
<li>the metadata displayed for the data in an open data portal or web page</li>
<li>the dataset title or filename e.g. Budget 2013-14 or Election_4July2015.csv</li>
<li>metadata tags embedded in the web page that contains the data</li>
<li>date values within the data to find the most recent date value</li>
<li>the timestamp on the data file (although this may not be accurate)</li>
<li>Some data is not updated on a regular basis. e.g. Pollutant emissions may be updated daily - while postal codes may not change for many years. </li>
</ul>
<p>You may need to use your judgement to determine if the data is timely and up to date. Document your rationale in the comments section.</p>
<p>If you cannot determine a date, answer, &quot;NO&quot; i.e. the data is not timely or up-to-date.</p>" data-placement="right">
<i class="fa fa-clock-o pointer" title="Click for more information"></i>
Is the data provided on a timely and up to date basis? Unsure </li>
<li class="maybe" data-toggle="popover" title="<h4><p>Publicly available? </p></h4>" data-content="<p>Can the data be accessed by the public without restrictions? Data is considered publicly available when:</p>
<ul>
<li>It can be accessed online without the need for a password or permissions.</li>
<li>If the data is in paper form, can be accessed by the public, and there is no restrictions on the number of photocopies that can be made.</li>
</ul>
<p>Data is <strong>NOT</strong> publicly available when:</p>
<ul>
<li>It is only made available after making a request.</li>
<li>It was availiable because of FOIA. </li>
<li>It can only be accessed by government officials.</li>
</ul>" data-placement="right">
<i class="fa fa-eye pointer" title="Click for more information"></i>
Publicly available? Unsure </li>
<li class="maybe" data-toggle="popover" title="<h4><p>Is data in digital form? </p></h4>" data-content="<p>Data can be in a digital format, but not accessible online. For example: A country budget can be stored on a spreadsheet or otherwise on a private government network, but not on the Internet. This means that the data is digital, but not publicly available. If you know that the data is digital somewhere inside the government (e.g. a government official tells you so), then you should answer “YES” to this question and note in the comment section how you discovered the data is in digital form.</p>" data-placement="right">
<i class="fa fa-save pointer" title="Click for more information"></i>
Is data in digital form? Unsure </li>
<li class="maybe" data-toggle="popover" title="<h4><p>Is the data available online? </p></h4>" data-content="<p>Data is online if it can be accessed via the Internet (e.g. a website or open data portal). If the data has been emailed to you but is not accessible via the Internet, it is not considered to be available online.</p>" data-placement="right">
<i class="fa fa-download pointer" title="Click for more information"></i>
Is the data available online? Unsure (No URL given) </li>
<li class="maybe" data-toggle="popover" title="<h4><p>Does the data exist? </p></h4>" data-content="<p>Data must come from an official resource either issued directly by the government or by a third party officially representing the government. Data offered by companies, citizen initiatives or any non-governmental organisation do not count for the Index.</p>
<p>If the government has given the right to publish the data to third parties, a submission with a link a to third party site is allowed. The third-party site must explicitly state that the data has been commissioned by the government. Check if the organization has an agreement with the government to be the official source and make a note in the comment section.</p>" data-placement="right">
<i class="fa fa-file-o pointer" title="Click for more information"></i>
Does the data exist? Unsure </li>
</ul>
</div>
<div class="col-md-6">
<h4><strong>Details</strong></h4>
<p>The guinea water point service is doing daily analysis of water quality, but no evidence about the availability of the data</p>
<h4><strong>Reviewer comments</strong></h4>
<p>Couldn't find any government website or water authority that talks about water quality collection or monitoring. So I changed the submission to UNSURE</p>
</div>
</div>
</section>
<section id="place-contributors">
<div class="row">
<h2>Contributors</h2>
<div class="col-md-6">
<h4>Reviewers</h4>
<ul>
<li>Nisha Thompson</li>
</ul>
</div>
<div class="col-md-6">
<h4>Submitters</h4>
<ul>
<li>anonymous</li>
</ul>
</div>
</div>
</section>
</div>
</div>
</div>
</div>
<footer id="footer">
<div class="container">
<div class="row">
<div class="footer-main col-md-8">
<div class="footer-attribution">
<p>
<a href="http://opendefinition.org/ossd/" title="Open Online Software Service">
<img src="http://assets.okfn.org/images/ok_buttons/os_80x15_orange_grey.png" alt=""
border=""/>
</a>
<a href="http://opendefinition.org/okd/" title="Open Online Software Service">
<img src="http://assets.okfn.org/images/ok_buttons/od_80x15_blue.png" alt="" border=""/>
</a>
<a href="http://opendefinition.org/okd/" title="Open Content">
<img src="http://assets.okfn.org/images/ok_buttons/oc_80x15_blue.png" alt="" border=""/>
</a>
–
<a href="http://creativecommons.org/licenses/by/3.0/"
title="Content Licensed under a CC Attribution"></a>
<a href="http://opendatacommons.org/licenses/pddl/1.0"
title="Data License (Public Domain)">Data License (Public
Domain)</a>
</p>
</div>
<div class="footer-meta">
<p>
This service is run by <a href="https://okfn.org/" title="Open Knowledge">Open Knowledge</a>
</p> <a class="naked" href="http://okfn.org/" title="Open Knowledge"><img
src="http://assets.okfn.org/p/okfn/img/okfn-logo-landscape-black-s.png" alt="" height="28"></a>
</div>
</div>
<div class="footer-links col-md-2">
<li><a href="http://okfn.org/" title="Open Knowledge">Open Knowledge</a></li>
<li><a href="http://okfn.org/opendata/" title="What is Open Data?">What is
Open Data?</a></li>
<li><a href="http://census.okfn.org/" title="Run your own Index">Run your
own Index</a></li>
<li><a href="https://github.com/okfn/opendataindex" title="The source code for Open Data Index">Source Code</a></li>
</div>
<div class="footer-links col-md-2">
<li><a href="/" title="Open Data Index home">Home</a></li>
<li><a href="/download/" title="Download data">Download</a></li>
<li><a href="/methodology/"
title="The methodology behind the Open Data Index">Methodology</a></li>
<li><a href="/faq/" title=" Open Data Index FAQ">FAQ</a></li>
<li><a href="/about/" title="About the Open Data Index">About</a></li>
<li><a href="/about/" title="Contact us">Contact</a></li>
<li><a href="/press/" title="Press">Press</a></li>
</div>
</div>
</div>
</footer>
<script data-main="/static/scripts/site" src="/static/scripts/require.js"></script>
</body>
</html> | okfn/opendataindex-2015 | place/guinea/water/index.html | HTML | mit | 21,386 |
<html>
<head>
<title>Fiona Campbell's panel show appearances</title>
<script type="text/javascript" src="../common.js"></script>
<link rel="stylesheet" media="all" href="../style.css" type="text/css"/>
<script type="text/javascript" src="../people.js"></script>
<!--#include virtual="head.txt" -->
</head>
<body>
<!--#include virtual="nav.txt" -->
<div class="page">
<h1>Fiona Campbell's panel show appearances</h1>
<p>Fiona Campbell has appeared in <span class="total">1</span> episodes between 2011-2011. Note that these appearances may be for more than one person if multiple people have the same name.</p>
<div class="performerholder">
<table class="performer">
<tr style="vertical-align:bottom;">
<td><div style="height:100px;" class="performances female" title="1"></div><span class="year">2011</span></td>
</tr>
</table>
</div>
<ol class="episodes">
<li><strong>2011-10-26</strong> / <a href="../shows/spicks-and-specks.html">Spicks and Specks</a></li>
</ol>
</div>
</body>
</html>
| slowe/panelshows | people/8lxy7zmz.html | HTML | mit | 1,014 |
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<!-- Common Lisp REST Server 0.2, Feb 15, 2022
Mariano Montone
Copyright (C) 2014, Mariano Montone
-->
<!-- Created by GNU Texinfo 6.7, http://www.gnu.org/software/texinfo/ -->
<!-- This file redirects to the location of a node or anchor -->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>42 (Common Lisp REST Server Documentation)</title>
<meta name="description" content="42 (Common Lisp REST Server Documentation)">
<meta name="keywords" content="42 (Common Lisp REST Server Documentation)">
<meta name="resource-type" content="document">
<meta name="distribution" content="global">
<meta name="Generator" content="makeinfo">
<style type="text/css">
<!--
/* Style-sheet to use for manuals (copied from Emacs) */
@import url('../style.css');
/* makeinfo 6.5 converts @quotation to <blockquote>. Highlight them. */
a.summary-letter {text-decoration: none}
blockquote.indentedblock {margin-right: 0em}
div.display {margin-left: 3.2em}
div.example {margin-left: 3.2em}
div.lisp {margin-left: 3.2em}
kbd {font-style: oblique}
pre.display {font-family: inherit}
pre.format {font-family: inherit}
pre.menu-comment {font-family: serif}
pre.menu-preformatted {font-family: serif}
span.nolinebreak {white-space: nowrap}
span.roman {font-family: initial; font-weight: normal}
span.sansserif {font-family: sans-serif; font-weight: normal}
ul.no-bullet {list-style: none}
blockquote {
font-style: normal;
border-left: solid 10px red;
padding-left: 2.5%;
margin-left: 0px;
}
/* Increase inter-line spacing to improve readability. */
p, pre, li, dt, dd, table, code, address { line-height: 1.5em; }
var { font-style: italic; }
/* Lay out @lisp just like @example. Copied from what /style.css
does for the 'example' class. */
div.lisp { padding: .8em 1.2em .4em; }
pre.lisp { padding: .8em 1.2em; }
div.lisp, pre.lisp {
margin: 1em 0 1em 3% ;
-webkit-border-radius: .3em;
-moz-border-radius: .3em;
border-radius: .3em;
border: 1px solid #d4cbb6;
background-color: #f2efe4;
}
div.lisp > pre.lisp {
padding: 0 0 .4em;
margin: 0;
border: none;
}
/* makeinfo 6.7 uses <div class="header"> for navigation links above node
titles. Make those links less prominent. */
.header {
line-height: 2em;
font-size: 87.5%;
color: #433;
}
/* In title and node titles, use Fira Sans if available as it is more
pleasant and more compact than Helvetica. */
.settitle, .top, .chapter, .section, .subsection, .subsubsection {
font-family: Fira Sans, sans;
}
/* ----- coreutils specific styling ----- */
/* layout.css indents "body p" when it should probably only indent "body > p"?
In any case, disable indenting of p in these sub elements. */
dd p,li p {
margin-left: 0;
margin-right: 0;
}
/* underlined links are distracting, especially within outlined tables. */
a { /*add :link for external links*/
text-decoration: none; /* don't underline links by default */
outline-style: none; /* don't put dotted box around clicked links */
}
a:hover {
text-decoration: underline;
}
body {
/* Make sure the body doesn't become to wide: long lines are hard to
read. */
max-width: 45em;
}
-->
</style>
<meta http-equiv="Refresh" content="0; url=API.html#g_t42">
</head>
<body lang="en">
<p>The node you are looking for is at <a href="API.html#g_t42">42</a>.</p>
</body>
| mmontone/cl-rest-server | docs/cl-rest-server/42.html | HTML | mit | 3,511 |
<!DOCTYPE html>
<html>
<head lang="en">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Examples of Meddelare usage -- fully customizable, open source, privacy aware social share buttons with counters! meddelare.com</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://meddelare.com/resources/font/font.css" />
<link rel="stylesheet" href="https://meddelare.com/resources/style/main.css">
<link rel="stylesheet" href="resources/style/main.css">
<!-- See https://meddelare.com/meddelare-examples/examples/button for the rest of this example -->
<link rel="stylesheet" href="examples/button/meddelare.css">
<link rel="icon" type="image/png" href="https://meddelare.com/resources/image/icon/icon-16x16.png" sizes="16x16" />
<link rel="icon" type="image/png" href="https://meddelare.com/resources/image/icon/icon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="https://meddelare.com/resources/image/icon/icon-64x64.png" sizes="64x64" />
<link rel="icon" type="image/png" href="https://meddelare.com/resources/image/icon/icon-96x96.png" sizes="96x96" />
<link rel="image_src" href="https://meddelare.com/resources/image/icon/icon-256x256.png" />
<link rel="canonical" href="https://meddelare.com/meddelare-examples/" />
<link rel="canonical-domain" href="https://meddelare.com/" />
<meta name="title" content="Examples of Meddelare usage -- fully customizable, open source, privacy aware social share buttons with counters! meddelare.com" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="Examples of Meddelare usage -- fully customizable, open source, privacy aware social share buttons with counters! meddelare.com" />
<meta name="twitter:description" content="Example of using Meddelare in the front-end of you website -- free, open source! Custom social share counters with your own hosted solution; only a single API request and minimal or zero assets to display the counters." />
<meta name="twitter:site" content="@meddelare" />
<meta name="twitter:creator" content="@meddelare" />
<meta name="twitter:image" content="https://meddelare.com/resources/image/icon/icon-256x256.png" />
<meta name="twitter:image:width" content="256" />
<meta name="twitter:image:height" content="256" />
<meta name="twitter:domain" content="meddelare.com" />
<meta property="og:site_name" content="Examples of Meddelare usage -- fully customizable, open source, privacy aware social share buttons with counters! meddelare.com" />
<meta property="og:url" content="https://meddelare.com/meddelare-examples/" />
<meta property="og:image" content="https://meddelare.com/resources/image/icon/icon-256x256.png" />
<meta property="og:image:type" content="image/png" />
<meta property="og:image:width" content="256" />
<meta property="og:image:height" content="256" />
<meta property="og:title" content="Examples of Meddelare usage -- fully customizable, open source, privacy aware social share buttons with counters! meddelare.com" />
<meta name="description" content="Example of using Meddelare in the front-end of you website -- free, open source! Custom social share counters with your own hosted solution; only a single API request and minimal or zero assets to display the counters." />
</head>
<body>
<header>
<h1><a href="https://meddelare.com/">Meddelare</a></h1>
<p>
Install <strong>custom social share counters</strong> on your website with your <strong>own hosted solution</strong>, which only makes <strong>a single API request</strong> and loads <strong>minimal or zero assets</strong> to display the counters.
</p>
<ul class="inline small">
<li><a href="https://twitter.com/meddelare">@meddelare on Twitter</a></li>
<li><a href="https://github.com/meddelare">@meddelare on Github</a></li>
<li><a href="https://npmjs.org/~meddelare">@meddelare on NPM</a></li>
</ul>
</header>
<section class="shutdown">
⚠️ <strong>The Meddelare project <a href="https://github.com/meddelare/meddelare-superproject/issues/8">has been shut down</a></strong> as of <nobr>2020-12-07</nobr>. No updates will be made and the source code will possibly be deleted in the future. Please download what you need as soon as possible.
</section>
<aside>
<div id="live-example-notice">Live demo!</div>
<!-- See https://meddelare.com/meddelare-examples/examples/button for the rest of this example -->
<div class="meddelare-container" data-meddelare-url="https://meddelare.com/">
<a href="https://twitter.com/intent/tweet?text=I+love+these+social+sharing+buttons!&url=https%3A%2F%2Fmeddelare.com%2F&via=meddelare&related=thomasdav_is,joelpurra&hashtags=javascript,UX,privacy,SMM" target="_blank" class="meddelare-network" data-meddelare-network="twitter" data-count="—">
<span class="meddelare-icon"></span>
</a>
<a href="https://www.facebook.com/share.php?u=https%3A%2F%2Fmeddelare.com%2F" target="_blank" class="meddelare-network" data-meddelare-network="facebook" data-count="—">
<span class="meddelare-icon"></span>
</a>
<a href="https://plus.google.com/share?url=https%3A%2F%2Fmeddelare.com%2F" target="_blank" class="meddelare-network" data-meddelare-network="googleplus" data-count="—">
<span class="meddelare-icon"></span>
</a>
</div>
</aside>
<main>
<article>
<h2>We would love to feature your widget design!</h2>
<p>
Submit your design in a <a href="https://github.com/meddelare/meddelare-examples">pull request to meddelare-examples</a> and we will add it to our list.
</p>
<div class="two columns">
<div class="left column">
<h2>Basic examples</h2>
<ul>
<li>
<a href="https://d12cncu17l9pr5.cloudfront.net/?networks=facebook,twitter,googleplus&url=https%3A%2F%2Fmeddelare.com%2F">JSON</a>
</li>
<li>
<a href="https://d12cncu17l9pr5.cloudfront.net/?networks=facebook,twitter,googleplus&url=https%3A%2F%2Fmeddelare.com%2F&callback=thisIsAnExample">JSONP</a>
</li>
<li>
<a href="examples/text/">Text</a> (<a href="https://github.com/meddelare/meddelare-examples/tree/master/examples/text">source</a>)
</li>
</ul>
</div>
<div class="right column">
<h2>Pretty examples</h2>
<ul id="pretty-examples">
<li>
<a href="examples/button/"><img src="examples/button/screenshot.png" /></a><a href="examples/button/">Button</a> (<a href="https://github.com/meddelare/meddelare-examples/tree/master/examples/button">source</a>), <a href="examples/button-multiple/">Multiple urls</a> (<a href="https://github.com/meddelare/meddelare-examples/tree/master/examples/button-multiple">source</a>)
</li>
<li>
<a href="examples/button-no-image/"><img src="examples/button-no-image/screenshot.png" /></a><a href="examples/button-no-image/">Button (no image)</a> (<a href="https://github.com/meddelare/meddelare-examples/tree/master/examples/button-no-image">source</a>)
</li>
</ul>
</div>
</article>
</main>
<footer>
<ul class="inline">
<li><a href="https://twitter.com/meddelare">@meddelare on Twitter</a></li>
<li><a href="https://github.com/meddelare">@meddelare on Github</a></li>
<li><a href="https://npmjs.org/~meddelare">@meddelare on NPM</a></li>
</ul>
<p>
<img src="https://meddelare.com/resources/image/icon/icon-64x64.png" /> <a href="https://meddelare.com/">Meddelare</a> Copyright © 2015 Team <a href="https://meddelare.com/">Meddelare</a> All rights reserved. <a href="https://github.com/meddelare">Released</a> under the <a href="https://opensource.org/licenses/MIT">MIT license</a>.
</p>
</footer>
<!-- See https://meddelare.com/meddelare-examples/examples/button for the rest of this example -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
<script src="examples/button/meddelare.js"></script>
</body>
</html>
| meddelare/meddelare-examples | index.html | HTML | mit | 8,862 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_31) on Sun Oct 25 11:10:59 CET 2015 -->
<title>javahx.thnx.view Class Hierarchy</title>
<meta name="date" content="2015-10-25">
<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="javahx.thnx.view Class Hierarchy";
}
}
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>Class</li>
<li class="navBarCell1Rev">Tree</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="../../../javahx/thnx/socket/package-tree.html">Prev</a></li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../index.html?javahx/thnx/view/package-tree.html" target="_top">Frames</a></li>
<li><a href="package-tree.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h1 class="title">Hierarchy For Package javahx.thnx.view</h1>
<span class="packageHierarchyLabel">Package Hierarchies:</span>
<ul class="horizontal">
<li><a href="../../../overview-tree.html">All Packages</a></li>
</ul>
</div>
<div class="contentContainer">
<h2 title="Class Hierarchy">Class Hierarchy</h2>
<ul>
<li type="circle">java.lang.Object
<ul>
<li type="circle">java.awt.Component (implements java.awt.image.ImageObserver, java.awt.MenuContainer, java.io.Serializable)
<ul>
<li type="circle">java.awt.Container
<ul>
<li type="circle">javax.swing.JComponent (implements java.io.Serializable)
<ul>
<li type="circle">javax.swing.JPanel (implements javax.accessibility.Accessible)
<ul>
<li type="circle">javahx.thnx.view.<a href="../../../javahx/thnx/view/DebugCanvas.html" title="class in javahx.thnx.view"><span class="typeNameLink">DebugCanvas</span></a> (implements haxe.lang.IHxObject)</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
<li type="circle">haxe.lang.HxObject (implements haxe.lang.IHxObject)
<ul>
<li type="circle">javahx.thnx.view.<a href="../../../javahx/thnx/view/ViewController.html" title="class in javahx.thnx.view"><span class="typeNameLink">ViewController</span></a> (implements haxe.thnx.view.<a href="../../../haxe/thnx/view/IViewController.html" title="interface in haxe.thnx.view">IViewController</a>)</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li>Class</li>
<li class="navBarCell1Rev">Tree</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="../../../javahx/thnx/socket/package-tree.html">Prev</a></li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../index.html?javahx/thnx/view/package-tree.html" target="_top">Frames</a></li>
<li><a href="package-tree.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>
| ScrambledRK/Thnx | bin/java/doc/javahx/thnx/view/package-tree.html | HTML | mit | 5,149 |
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Vector Network Analyzer</title>
<link rel="stylesheet" href="/css/main.css">
<link rel="stylesheet" href="/css/pygments.css">
</head>
<body>
<div id="header">
<div id="logo">
<a href="/">Back to all apps</a>
</div>
<div id="menu">
<a href="https://github.com/pavel-demin/red-pitaya-notes" target="_blank">Source</a>
<a href="https://github.com/pavel-demin/red-pitaya-notes/issues" target="_blank">Issues</a>
</div>
</div>
<div id="content">
<h1>Vector Network Analyzer</h1>
<p>The Red Pitaya VNA application is ready.</p>
<p>Now you can run the control program.</p>
<p>More details about this application can be found at <a href="http://pavel-demin.github.io/red-pitaya-notes/vna/" target="_blank">this link</a>.</p>
<h2>Getting started with MS Windows</h2>
<ul>
<li>Download and unpack the <a href="https://github.com/pavel-demin/red-pitaya-notes/releases/download/20191120/vna-win32-20191120.zip">control program</a>.</li>
<li>Run the <code>vna.exe</code> program.</li>
<li>Type in the IP address of the Red Pitaya board and press Connect button.</li>
<li>Perform calibration and measurements.</li>
</ul>
<h2>Getting started with GNU/Linux</h2>
<ul>
<li>Install Python 3 and all the required libraries:</li>
<div class="highlight"><pre><code class="language-bash" data-lang="bash">sudo apt-get install python3-dev python3-pip python3-numpy python3-pyqt5 libfreetype6-dev
sudo pip3 install matplotlib mpldatacursor</code></pre></div>
<li>Clone the source code repository:</li>
<div class="highlight"><pre><code class="language-bash" data-lang="bash">git clone https://github.com/pavel-demin/red-pitaya-notes</code></pre></div>
<li>Run the control program:</li>
<div class="highlight"><pre><code class="language-bash" data-lang="bash">cd red-pitaya-notes/projects/vna/client
python3 vna.py</code></pre></div>
<li>Type in the IP address of the Red Pitaya board and press Connect button.</li>
<li>Perform calibration and measurements.</li>
</ul>
</div>
</body>
</html>
| fbalakirev/red-pitaya-notes | projects/vna/app/index.html | HTML | mit | 2,027 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns='http://www.w3.org/1999/xhtml' xml:lang='en' lang='en'><head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"></meta>
<title>6065-63-0.smi.png.html</title>
</head>
<body>ID6065-63-0<br/>
<img border="0" src="6065-63-0.smi.png" alt="6065-63-0.smi.png"></img><br/>
<br/>
<table border="1">
<tr>
<td></td><td>ID</td><td>Formula</td><td>FW</td><td>DSSTox_CID</td><td>DSSTox_RID</td><td>DSSTox_GSID</td><td>DSSTox_FileID_Sort</td><td>TS_ChemName</td><td>TS_ChemName_Synonyms</td><td>TS_CASRN</td><td>CASRN_ChemName_Relationship</td><td>TS_Description</td><td>ChemNote</td><td>STRUCTURE_Shown</td><td>STRUCTURE_Formula</td><td>STRUCTURE_MW</td><td>STRUCTURE_ChemType</td><td>STRUCTURE_DefinedOrganicForm</td><td>STRUCTURE_IUPAC</td><td>STRUCTURE_SMILES</td><td>STRUCTURE_SMILES_Desalt</td><td>Substance_modify_yyyymmdd</td></tr>
<tr>
<td>6065-63-0</td><td>16182</td><td>C13H24O4</td><td>244.3273</td><td>31572</td><td>97457</td><td>57783</td><td>8524</td><td>Diethyl dipropylmalonate</td><td></td><td>6065-63-0</td><td>primary</td><td>single chemical compound</td><td></td><td>tested chemical</td><td>C13H24O4</td><td>244.3273</td><td>defined organic</td><td>parent</td><td>diethyl dipropylmalonate</td><td>CCCC(CCC)(C(=O)OCC)C(=O)OCC</td><td>CCCC(CCC)(C(=O)OCC)C(=O)OCC</td><td>20131018</td></tr>
</table>
<br/><br/><font size="-2">(Page generated on Wed Sep 17 04:05:52 2014 by <a href="http://www.embl.de/~gpau/hwriter/index.html">hwriter</a> 1.3)</font><br/>
</body></html> | andrewdefries/ToxCast | Figure3/Tox21_nnm/WorkHere/6065-63-0.smi.png.html | HTML | mit | 1,628 |
---
layout: default
---
<div id="home" class="container">
<h1>Hi,我是 Damon Chen</h1>
<br>
<p>来自大连理工大学的一枚研究僧</p>
<p>追求精致的生活</p>
<p>爱折腾</p>
<p>喜欢做成人之美的事</p>
<img src="/assets/img/cover.jpg"; width="100%">
<!-- <h2>/* 折腾项目 *\</h2>
<ul>
<li><a href="http://rebar.io" target="_blank">Rebar Grid Framework</a></li>
<li><a href="https://github.com/P233/Syntax-highlighting-for-Sass" target="_blank">Syntax Highlighting for Sass</a></li>
<li><a href="https://github.com/P233/Syntax-highlighting-for-JavaScript" target="_blank">Syntax Highlighting for JavaScript</a></li>
<li><a href="https://github.com/P233/3-Jekyll" target="_blank">3-Jekyll</a> <span>/</span> <a href="https://github.com/P233/3-Ghost" target="_blank">3-Ghost</a></li>
<li><a href="http://p233.github.io/Emmet-Css-Snippets-for-Sublime-Text-2/" target="_blank">Emmet CSS Snippets</a></li>
<li><a href="https://github.com/P233?tab=repositories" target="_blank">更多...</a></li>
--></ul>
</div>
| zhenchentl/zhenchentl.github.com | index.html | HTML | mit | 1,079 |
<!DOCTYPE html>
<html lang="jp" xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="UTF-8">
</head>
<body>
<div class="selectList">
<div class="form-group"
th:each="row,rowStat : ${skillSearchInfo.lsSkill}">
<label for="inputName" class="col-sm-4 control-label">スキル</label> <select
th:field="${skillSearchInfo.lsSkill[__${index}__]}"
class="selectpicker dynamic-select" data-live-search="true" title="下記のスキルを選択してください">
<optgroup label="資格">
<option th:each="skill : ${skillOptions}"
th:if="${skill.skillCategory==1}" th:value="${skill.skillTitleId}"
th:text="${skill.titleName}"></option>
</optgroup>
<optgroup label="環境(OS)">
<option th:each="skill : ${skillOptions}"
th:if="${skill.skillCategory==2}" th:value="${skill.skillTitleId}"
th:text="${skill.titleName}"></option>
</optgroup>
<optgroup label="DB">
<option th:each="skill : ${skillOptions}"
th:if="${skill.skillCategory==3}" th:value="${skill.skillTitleId}"
th:text="${skill.titleName}"></option>
</optgroup>
<optgroup label="言語">
<option th:each="skill : ${skillOptions}"
th:if="${skill.skillCategory==4}" th:value="${skill.skillTitleId}"
th:text="${skill.titleName}"></option>
</optgroup>
</select>
</div>
</div>
</body>
</html> | chenw1201/stuff-skill | skill/src/main/resources/templates/search_subrow.html | HTML | mit | 1,368 |
<!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-beta2) on Mon Mar 19 19:25:39 CST 2007 -->
<META http-equiv="Content-Type" content="text/html; charset=utf-8">
<TITLE>
javax.imageio.spi (Java Platform SE 6)
</TITLE><script>var _hmt = _hmt || [];(function() {var hm = document.createElement("script");hm.src = "//hm.baidu.com/hm.js?dd1361ca20a10cc161e72d4bc4fef6df";var s = document.getElementsByTagName("script")[0];s.parentNode.insertBefore(hm, s);})();</script>
<META NAME="date" CONTENT="2007-03-19">
<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="javax.imageio.spi (Java Platform SE 6)";
}
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<HR>
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="跳过导航链接"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>概述</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>软件包</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">类</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-use.html"><FONT CLASS="NavBarFont1"><B>使用</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>树</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>已过时</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>索引</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>帮助</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Java<sup><font size=-2>TM</font></sup> Platform<br>Standard Ed. 6</b></EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../javax/imageio/plugins/jpeg/package-summary.html"><B>上一个软件包</B></A>
<A HREF="../../../javax/imageio/stream/package-summary.html"><B>下一个软件包</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../index.html?javax/imageio/spi/package-summary.html" target="_top"><B>框架</B></A>
<A HREF="package-summary.html" target="_top"><B>无框架</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../allclasses-noframe.html"><B>所有类</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../allclasses-noframe.html"><B>所有类</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<H2>
软件包 javax.imageio.spi
</H2>
包含用于 reader、writer、transcoder 和流的插件接口以及一个运行时注册表的 Java Image I/O API 包。
<P>
<B>请参见:</B>
<BR>
<A HREF="#package_description"><B>描述</B></A>
<P>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>接口摘要</B></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD WIDTH="15%"><B><A HREF="../../../javax/imageio/spi/RegisterableService.html" title="javax.imageio.spi 中的接口">RegisterableService</A></B></TD>
<TD>一个可选接口,它可能是由向 <code>ServiceRegistry</code> 注册的服务提供者对象提供的。</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD WIDTH="15%"><B><A HREF="../../../javax/imageio/spi/ServiceRegistry.Filter.html" title="javax.imageio.spi 中的接口">ServiceRegistry.Filter</A></B></TD>
<TD><code>ServiceRegistry.getServiceProviders</code> 使用的一个简单过滤器接口,用来选择与任意条件匹配的提供者。</TD>
</TR>
</TABLE>
<P>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>类摘要</B></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD WIDTH="15%"><B><A HREF="../../../javax/imageio/spi/IIORegistry.html" title="javax.imageio.spi 中的类">IIORegistry</A></B></TD>
<TD>用于服务提供者实例的注册表。</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD WIDTH="15%"><B><A HREF="../../../javax/imageio/spi/IIOServiceProvider.html" title="javax.imageio.spi 中的类">IIOServiceProvider</A></B></TD>
<TD>一个常用于所有 Image I/O 服务提供者接口 (SPI) 的功能性超接口。</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD WIDTH="15%"><B><A HREF="../../../javax/imageio/spi/ImageInputStreamSpi.html" title="javax.imageio.spi 中的类">ImageInputStreamSpi</A></B></TD>
<TD>用于 <code>ImageInputStream</code> 的服务提供者接口 (SPI)。</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD WIDTH="15%"><B><A HREF="../../../javax/imageio/spi/ImageOutputStreamSpi.html" title="javax.imageio.spi 中的类">ImageOutputStreamSpi</A></B></TD>
<TD>用于 <code>ImageOutputStream</code> 的服务提供者接口 (SPI)。</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD WIDTH="15%"><B><A HREF="../../../javax/imageio/spi/ImageReaderSpi.html" title="javax.imageio.spi 中的类">ImageReaderSpi</A></B></TD>
<TD>用于 <code>ImageReader</code> 的服务提供者接口 (SPI)。</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD WIDTH="15%"><B><A HREF="../../../javax/imageio/spi/ImageReaderWriterSpi.html" title="javax.imageio.spi 中的类">ImageReaderWriterSpi</A></B></TD>
<TD>包含 <code>ImageReaderSpi</code> 和 <code>ImageWriterSpi</code> 常用实例变量和方法的一个超类。</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD WIDTH="15%"><B><A HREF="../../../javax/imageio/spi/ImageTranscoderSpi.html" title="javax.imageio.spi 中的类">ImageTranscoderSpi</A></B></TD>
<TD>用于 <code>ImageTranscoder</code> 的服务提供者接口 (SPI)。</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD WIDTH="15%"><B><A HREF="../../../javax/imageio/spi/ImageWriterSpi.html" title="javax.imageio.spi 中的类">ImageWriterSpi</A></B></TD>
<TD>用于 <code>ImageWriter</code> 的服务提供者接口 (SPI)。</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD WIDTH="15%"><B><A HREF="../../../javax/imageio/spi/ServiceRegistry.html" title="javax.imageio.spi 中的类">ServiceRegistry</A></B></TD>
<TD>用于服务提供者实例的注册表。</TD>
</TR>
</TABLE>
<P>
<A NAME="package_description"><!-- --></A><H2>
软件包 javax.imageio.spi 的描述
</H2>
<P>
包含用于 reader、writer、transcoder 和流的插件接口以及一个运行时注册表的 Java Image I/O API 包。
<p>
此 <code>javax.imageio.spi</code> 包包含了用于图像的读取、写入和代码转换、流的输入和输出获取,以及用于查找所安装的服务提供者实例和动态注册新实例的运行时注册表。
<P>
<P>
<DL>
<DT><B>从以下版本开始:</B></DT>
<DD>1.4</DD>
</DL>
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="跳过导航链接"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>概述</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>软件包</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">类</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-use.html"><FONT CLASS="NavBarFont1"><B>使用</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>树</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>已过时</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>索引</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>帮助</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Java<sup><font size=-2>TM</font></sup> Platform<br>Standard Ed. 6</b></EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../javax/imageio/plugins/jpeg/package-summary.html"><B>上一个软件包</B></A>
<A HREF="../../../javax/imageio/stream/package-summary.html"><B>下一个软件包</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../index.html?javax/imageio/spi/package-summary.html" target="_top"><B>框架</B></A>
<A HREF="package-summary.html" target="_top"><B>无框架</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../allclasses-noframe.html"><B>所有类</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../allclasses-noframe.html"><B>所有类</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
<font size="-1"><a href="http://bugs.sun.com/services/bugreport/index.jsp">提交错误或意见</a><br>有关更多的 API 参考资料和开发人员文档,请参阅 <a href="http://java.sun.com/javase/6/webnotes/devdocs-vs-specs.html">Java SE 开发人员文档</a>。该文档包含更详细的、面向开发人员的描述,以及总体概述、术语定义、使用技巧和工作代码示例。 <p>版权所有 2007 Sun Microsystems, Inc. 保留所有权利。 请遵守<a href="http://java.sun.com/javase/6/docs/legal/license.html">许可证条款</a>。另请参阅<a href="http://java.sun.com/docs/redist.html">文档重新分发政策</a>。</font>
</BODY>
</HTML>
| piterlin/piterlin.github.io | doc/jdk6_cn/javax/imageio/spi/package-summary.html | HTML | mit | 11,282 |
<!DOCTYPE html>
<html ng-app="ngBoilerplate" ng-controller="AppCtrl">
<head>
<title ng-bind="pageTitle"></title>
<!-- font awesome from BootstrapCDN -->
<link href="http://netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css" rel="stylesheet">
<!-- compiled CSS --><% styles.forEach( function ( file ) { %>
<link rel="stylesheet" type="text/css" href="<%= file %>" /><% }); %>
<!-- compiled JavaScript --><% scripts.forEach( function ( file ) { %>
<script type="text/javascript" src="<%= file %>"></script><% }); %>
</head>
<body>
<div class="container">
<div class="masthead">
<img class="brand-logo" src="assets/img/logo-prodigious-notext.png" height="67" width="318" />
<div class="navbar">
<div class="navbar-inner">
<ul class="nav">
<li ui-route="/wfh" ng-class="{active:$uiRoute}">
<a href="#/wfh">
<i class="icon-home"></i><br />
Work From Home
</a>
</li>
</ul>
</div>
</div>
<h3 class="muted">Management Suite <small><a
href="http://github.com/joshdmiller/ng-boilerplate/blob/master/CHANGELOG.md">v<%= version %></a></small></h3>
</div>
</div>
<div ui-view="main"></div>
<footer class="footer">
<div class="container">
<div class="footer-inner">
</div>
</div>
</footer>
</body>
</html>
| ProdigiousLabs/MGMTool | src/index.html | HTML | mit | 1,520 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>coqoban: 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.0 / coqoban - 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>
coqoban
<small>
8.8.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-01-30 22:40:01 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-01-30 22:40:01 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-num base Num library distributed with the OCaml compiler
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
conf-gmp 4 Virtual package relying on a GMP lib system installation
coq 8.13.0 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.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-contribs/coqoban"
license: "LGPL 2.1"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/Coqoban"]
depends: [
"ocaml"
"coq" {>= "8.8" & < "8.9~"}
]
tags: [ "keyword: Sokoban" "keyword: puzzles" "category: Miscellaneous/Logical Puzzles and Entertainment" "date: 2003-09-19" ]
authors: [ "Jasper Stein" ]
bug-reports: "https://github.com/coq-contribs/coqoban/issues"
dev-repo: "git+https://github.com/coq-contribs/coqoban.git"
synopsis: "Coqoban (Sokoban)"
description: """
A Coq implementation of Sokoban, the Japanese warehouse
keepers' game"""
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/coqoban/archive/v8.8.0.tar.gz"
checksum: "md5=a5e4858ebbd03ec269c7a4dfe7f22195"
}
</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-coqoban.8.8.0 coq.8.13.0</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.0).
The following dependencies couldn't be met:
- coq-coqoban -> coq < 8.9~ -> ocaml < 4.03.0
base of this switch (use `--unlock-base' to force)
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-coqoban.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.13.0/coqoban/8.8.0.html | HTML | mit | 7,031 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_101) on Wed Mar 01 17:23:24 CET 2017 -->
<title>A-Index</title>
<meta name="date" content="2017-03-01">
<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="A-Index";
}
}
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="../deltadak/package-summary.html">Package</a></li>
<li>Class</li>
<li><a href="../deltadak/package-tree.html">Tree</a></li>
<li><a href="../deprecated-list.html">Deprecated</a></li>
<li class="navBarCell1Rev">Index</li>
<li><a href="../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev Letter</li>
<li><a href="index-2.html">Next Letter</a></li>
</ul>
<ul class="navList">
<li><a href="../index.html?index-files/index-1.html" target="_top">Frames</a></li>
<li><a href="index-1.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="contentContainer"><a href="index-1.html">A</a> <a href="index-2.html">C</a> <a href="index-3.html">D</a> <a href="index-4.html">F</a> <a href="index-5.html">G</a> <a href="index-6.html">H</a> <a href="index-7.html">I</a> <a href="index-8.html">L</a> <a href="index-9.html">M</a> <a href="index-10.html">N</a> <a href="index-11.html">P</a> <a href="index-12.html">Q</a> <a href="index-13.html">R</a> <a href="index-14.html">S</a> <a href="index-15.html">T</a> <a href="index-16.html">U</a> <a href="index-17.html">V</a> <a name="I:A">
<!-- -->
</a>
<h2 class="title">A</h2>
<dl>
<dt><span class="memberNameLink"><a href="../deltadak/Controller.html#addDeleteKeyListener-javafx.scene.control.ListView-java.time.LocalDate-">addDeleteKeyListener(ListView<Task>, LocalDate)</a></span> - Method in class deltadak.<a href="../deltadak/Controller.html" title="class in deltadak">Controller</a></dt>
<dd>
<div class="block">add a Listener to a list for the delete key</div>
</dd>
<dt><span class="memberNameLink"><a href="../deltadak/Controller.html#addVBoxToGridPane-javafx.scene.layout.VBox-int-">addVBoxToGridPane(VBox, int)</a></span> - Method in class deltadak.<a href="../deltadak/Controller.html" title="class in deltadak">Controller</a></dt>
<dd>
<div class="block">add a box containing listview and title</div>
</dd>
</dl>
<a href="index-1.html">A</a> <a href="index-2.html">C</a> <a href="index-3.html">D</a> <a href="index-4.html">F</a> <a href="index-5.html">G</a> <a href="index-6.html">H</a> <a href="index-7.html">I</a> <a href="index-8.html">L</a> <a href="index-9.html">M</a> <a href="index-10.html">N</a> <a href="index-11.html">P</a> <a href="index-12.html">Q</a> <a href="index-13.html">R</a> <a href="index-14.html">S</a> <a href="index-15.html">T</a> <a href="index-16.html">U</a> <a href="index-17.html">V</a> </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="../deltadak/package-summary.html">Package</a></li>
<li>Class</li>
<li><a href="../deltadak/package-tree.html">Tree</a></li>
<li><a href="../deprecated-list.html">Deprecated</a></li>
<li class="navBarCell1Rev">Index</li>
<li><a href="../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev Letter</li>
<li><a href="index-2.html">Next Letter</a></li>
</ul>
<ul class="navList">
<li><a href="../index.html?index-files/index-1.html" target="_top">Frames</a></li>
<li><a href="index-1.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>
| deltadak/plep | Javadoc/index-files/index-1.html | HTML | mit | 5,500 |
<ion-header>
<ion-navbar>
<button ion-button menuToggle>
<ion-icon name="menu"></ion-icon>
</button>
<ion-title>Ionic Native Features</ion-title>
</ion-navbar>
</ion-header>
<ion-content padding>
<ion-list>
<button ion-item *ngFor="let item of items" (click)="itemTapped($event, item)">
{{item.title}}
</button>
</ion-list>
</ion-content>
| yannbf/ionic3-components | src/pages/ionic-native/ionic-native.html | HTML | mit | 379 |
<html>
<head>
<title>Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; Win64; x64; Trident/6.0; MASEJS)</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.3/css/materialize.min.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="section">
<h1 class="header center orange-text">User agent detail</h1>
<div class="row center">
Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; Win64; x64; Trident/6.0; MASEJS)
<p>
Detected by 8 of 8 providers<br />
As bot detected by 0 of 7
</p>
</div>
</div>
<div class="section">
<table class="striped"><tr><th></th><th colspan="3">General</th><th colspan="5">Device</th><th colspan="3">Bot</th><th></th></tr><tr><th>Provider</th><th>Browser</th><th>Engine</th><th>OS</th><th>Brand</th><th>Model</th><th>Type</th><th>Is mobile</th><th>Is touch</th><th>Is bot</th><th>Name</th><th>Type</th><th>Actions</th></tr><tr><td>BrowscapPhp<br /><small>6011</small></td><td>IE 10.0</td><td>Trident 6.0</td><td>Win8 6.2</td><td></td><td>Windows Desktop</td><td>Desktop</td><td></td><td></td><td></td><td></td><td></td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-cbfe2df3-330b-4abd-b5df-0ca181549ca9">Detail</a>
<!-- Modal Structure -->
<div id="modal-cbfe2df3-330b-4abd-b5df-0ca181549ca9" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>BrowscapPhp result detail</h4>
<p><pre><code class="php">stdClass Object
(
[browser_name_regex] => /^mozilla\/5\.0 \(.*msie 10\.0.*windows nt 6\.2.*win64. x64.*trident\/6\.0.*\).*$/
[browser_name_pattern] => mozilla/5.0 (*msie 10.0*windows nt 6.2*win64? x64*trident/6.0*)*
[parent] => IE 10.0 for Desktop
[comment] => IE 10.0
[browser] => IE
[browser_type] => Browser
[browser_bits] => 64
[browser_maker] => Microsoft Corporation
[browser_modus] => unknown
[version] => 10.0
[majorver] => 10
[minorver] => 0
[platform] => Win8
[platform_version] => 6.2
[platform_description] => Windows 8
[platform_bits] => 64
[platform_maker] => Microsoft Corporation
[alpha] =>
[beta] => 1
[win16] =>
[win32] =>
[win64] => 1
[frames] => 1
[iframes] => 1
[tables] => 1
[cookies] => 1
[backgroundsounds] => 1
[javascript] => 1
[vbscript] => 1
[javaapplets] => 1
[activexcontrols] => 1
[ismobiledevice] =>
[istablet] =>
[issyndicationreader] =>
[crawler] =>
[cssversion] => 3
[aolversion] => 0
[device_name] => Windows Desktop
[device_maker] => Various
[device_type] => Desktop
[device_pointing_method] => mouse
[device_code_name] => Windows Desktop
[device_brand_name] => unknown
[renderingengine_name] => Trident
[renderingengine_version] => 6.0
[renderingengine_description] => For Internet Explorer since version 4.0 and embedded WebBrowser controls (such as Internet Explorer shells, Maxthon and some media players).
[renderingengine_maker] => Microsoft Corporation
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>DonatjUAParser<br /><small>v0.5.0</small></td><td>MSIE 10.0</td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-6fae891b-b0d5-4415-b07d-355015c3af67">Detail</a>
<!-- Modal Structure -->
<div id="modal-6fae891b-b0d5-4415-b07d-355015c3af67" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>DonatjUAParser result detail</h4>
<p><pre><code class="php">Array
(
[platform] => Windows
[browser] => MSIE
[version] => 10.0
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>PiwikDeviceDetector<br /><small>3.5.1</small></td><td>Internet Explorer 10.0</td><td>Trident </td><td>Windows 8</td><td>Sony</td><td></td><td>desktop</td><td></td><td></td><td></td><td></td><td></td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-fc0f1b55-50d8-49c2-bb12-4cc1d8144ebf">Detail</a>
<!-- Modal Structure -->
<div id="modal-fc0f1b55-50d8-49c2-bb12-4cc1d8144ebf" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>PiwikDeviceDetector result detail</h4>
<p><pre><code class="php">Array
(
[client] => Array
(
[type] => browser
[name] => Internet Explorer
[short_name] => IE
[version] => 10.0
[engine] => Trident
)
[operatingSystem] => Array
(
[name] => Windows
[short_name] => WIN
[version] => 8
[platform] => x64
)
[device] => Array
(
[brand] => SO
[brandName] => Sony
[model] =>
[device] => 0
[deviceName] => desktop
)
[bot] =>
[extra] => Array
(
[isBot] =>
[isBrowser] => 1
[isFeedReader] =>
[isMobileApp] =>
[isPIM] =>
[isLibrary] =>
[isMediaPlayer] =>
[isCamera] =>
[isCarBrowser] =>
[isConsole] =>
[isFeaturePhone] =>
[isPhablet] =>
[isPortableMediaPlayer] =>
[isSmartDisplay] =>
[isSmartphone] =>
[isTablet] =>
[isTV] =>
[isDesktop] => 1
[isMobile] =>
[isTouchEnabled] =>
)
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>SinergiBrowserDetector<br /><small>6.0.0</small></td><td>Internet Explorer 10.0</td><td><i class="material-icons">close</i></td><td>Windows 8</td><td><i class="material-icons">close</i></td><td></td><td><i class="material-icons">close</i></td><td></td><td><i class="material-icons">close</i></td><td></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-8c08f104-4e61-421b-9405-291b09c383dc">Detail</a>
<!-- Modal Structure -->
<div id="modal-8c08f104-4e61-421b-9405-291b09c383dc" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>SinergiBrowserDetector result detail</h4>
<p><pre><code class="php">Array
(
[browser] => Sinergi\BrowserDetector\Browser Object
(
[userAgent:Sinergi\BrowserDetector\Browser:private] => Sinergi\BrowserDetector\UserAgent Object
(
[userAgentString:Sinergi\BrowserDetector\UserAgent:private] => Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; Win64; x64; Trident/6.0; MASEJS)
)
[name:Sinergi\BrowserDetector\Browser:private] => Internet Explorer
[version:Sinergi\BrowserDetector\Browser:private] => 10.0
[isRobot:Sinergi\BrowserDetector\Browser:private] =>
[isChromeFrame:Sinergi\BrowserDetector\Browser:private] =>
)
[operatingSystem] => Sinergi\BrowserDetector\Os Object
(
[name:Sinergi\BrowserDetector\Os:private] => Windows
[version:Sinergi\BrowserDetector\Os:private] => 8
[isMobile:Sinergi\BrowserDetector\Os:private] =>
[userAgent:Sinergi\BrowserDetector\Os:private] => Sinergi\BrowserDetector\UserAgent Object
(
[userAgentString:Sinergi\BrowserDetector\UserAgent:private] => Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; Win64; x64; Trident/6.0; MASEJS)
)
)
[device] => Sinergi\BrowserDetector\Device Object
(
[name:Sinergi\BrowserDetector\Device:private] => unknown
[userAgent:Sinergi\BrowserDetector\Device:private] => Sinergi\BrowserDetector\UserAgent Object
(
[userAgentString:Sinergi\BrowserDetector\UserAgent:private] => Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; Win64; x64; Trident/6.0; MASEJS)
)
)
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>UAParser<br /><small>v3.4.5</small></td><td>IE 10.0</td><td><i class="material-icons">close</i></td><td>Windows 8 </td><td></td><td></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td></td><td></td><td><i class="material-icons">close</i></td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-8f4c86c5-433e-4536-b799-ad26d77264e0">Detail</a>
<!-- Modal Structure -->
<div id="modal-8f4c86c5-433e-4536-b799-ad26d77264e0" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>UAParser result detail</h4>
<p><pre><code class="php">UAParser\Result\Client Object
(
[ua] => UAParser\Result\UserAgent Object
(
[major] => 10
[minor] => 0
[patch] =>
[family] => IE
)
[os] => UAParser\Result\OperatingSystem Object
(
[major] =>
[minor] =>
[patch] =>
[patchMinor] =>
[family] => Windows 8
)
[device] => UAParser\Result\Device Object
(
[brand] =>
[model] =>
[family] => Other
)
[originalUserAgent] => Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; Win64; x64; Trident/6.0; MASEJS)
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>WhichBrowser<br /><small>2.0.9</small></td><td>Internet Explorer 10.0</td><td>Trident 6.0</td><td>Windows 8</td><td></td><td></td><td>desktop</td><td></td><td><i class="material-icons">close</i></td><td></td><td></td><td><i class="material-icons">close</i></td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-62f1f3a3-0c44-4ecb-9ee2-48145e35736b">Detail</a>
<!-- Modal Structure -->
<div id="modal-62f1f3a3-0c44-4ecb-9ee2-48145e35736b" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>WhichBrowser result detail</h4>
<p><pre><code class="php">Array
(
[browser] => Array
(
[name] => Internet Explorer
[version] => 10.0
[type] => browser
)
[engine] => Array
(
[name] => Trident
[version] => 6.0
)
[os] => Array
(
[name] => Windows
[version] => Array
(
[value] => 6.2
[alias] => 8
)
)
[device] => Array
(
[type] => desktop
)
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>Woothee<br /><small>v1.2.0</small></td><td>Internet Explorer 10.0</td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>pc</td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td></td><td></td><td><i class="material-icons">close</i></td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-bd437f52-91e9-4ce8-88f7-6e5206ed6635">Detail</a>
<!-- Modal Structure -->
<div id="modal-bd437f52-91e9-4ce8-88f7-6e5206ed6635" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>Woothee result detail</h4>
<p><pre><code class="php">Array
(
[name] => Internet Explorer
[vendor] => Microsoft
[version] => 10.0
[category] => pc
[os] => Windows 8
[os_version] => NT 6.2
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>Wurfl<br /><small>1.6.4</small></td><td>IE 10(Compatibility View)</td><td><i class="material-icons">close</i></td><td>Windows 8</td><td></td><td></td><td>Desktop</td><td></td><td></td><td></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-3a72b31e-c3c1-4317-a357-7a6d5e3c7027">Detail</a>
<!-- Modal Structure -->
<div id="modal-3a72b31e-c3c1-4317-a357-7a6d5e3c7027" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>Wurfl result detail</h4>
<p><pre><code class="php">Array
(
[virtual] => Array
(
[is_android] => false
[is_ios] => false
[is_windows_phone] => false
[is_app] => false
[is_full_desktop] => true
[is_largescreen] => true
[is_mobile] => false
[is_robot] => false
[is_smartphone] => false
[is_touchscreen] => false
[is_wml_preferred] => false
[is_xhtmlmp_preferred] => false
[is_html_preferred] => true
[advertised_device_os] => Windows
[advertised_device_os_version] => 8
[advertised_browser] => IE
[advertised_browser_version] => 10(Compatibility View)
[complete_device_name] => Microsoft Internet Explorer
[form_factor] => Desktop
[is_phone] => false
[is_app_webview] => false
)
[all] => Array
(
[brand_name] => Microsoft
[model_name] => Internet Explorer
[unique] => true
[ununiqueness_handler] =>
[is_wireless_device] => false
[device_claims_web_support] => true
[has_qwerty_keyboard] => true
[can_skip_aligned_link_row] => true
[uaprof] =>
[uaprof2] =>
[uaprof3] =>
[nokia_series] => 0
[nokia_edition] => 0
[device_os] => Desktop
[mobile_browser] => MSIE
[mobile_browser_version] => 10
[device_os_version] =>
[pointing_method] => mouse
[release_date] => 2012_may
[marketing_name] =>
[model_extra_info] =>
[nokia_feature_pack] => 0
[can_assign_phone_number] => false
[is_tablet] => false
[manufacturer_name] =>
[is_bot] => false
[is_google_glass] => false
[proportional_font] => false
[built_in_back_button_support] => false
[card_title_support] => false
[softkey_support] => false
[table_support] => false
[numbered_menus] => false
[menu_with_select_element_recommended] => false
[menu_with_list_of_links_recommended] => false
[icons_on_menu_items_support] => false
[break_list_of_links_with_br_element_recommended] => false
[access_key_support] => false
[wrap_mode_support] => false
[times_square_mode_support] => false
[deck_prefetch_support] => false
[elective_forms_recommended] => false
[wizards_recommended] => false
[image_as_link_support] => false
[insert_br_element_after_widget_recommended] => false
[wml_can_display_images_and_text_on_same_line] => false
[wml_displays_image_in_center] => false
[opwv_wml_extensions_support] => false
[wml_make_phone_call_string] => none
[chtml_display_accesskey] => false
[emoji] => false
[chtml_can_display_images_and_text_on_same_line] => false
[chtml_displays_image_in_center] => false
[imode_region] => none
[chtml_make_phone_call_string] => tel:
[chtml_table_support] => true
[xhtml_honors_bgcolor] => true
[xhtml_supports_forms_in_table] => true
[xhtml_support_wml2_namespace] => false
[xhtml_autoexpand_select] => false
[xhtml_select_as_dropdown] => true
[xhtml_select_as_radiobutton] => true
[xhtml_select_as_popup] => true
[xhtml_display_accesskey] => false
[xhtml_supports_invisible_text] => false
[xhtml_supports_inline_input] => false
[xhtml_supports_monospace_font] => false
[xhtml_supports_table_for_layout] => false
[xhtml_supports_css_cell_table_coloring] => false
[xhtml_format_as_css_property] => false
[xhtml_format_as_attribute] => false
[xhtml_nowrap_mode] => false
[xhtml_marquee_as_css_property] => false
[xhtml_readable_background_color1] => #FFFFFF
[xhtml_readable_background_color2] => #FFFFFF
[xhtml_allows_disabled_form_elements] => false
[xhtml_document_title_support] => true
[xhtml_preferred_charset] => utf8
[opwv_xhtml_extensions_support] => false
[xhtml_make_phone_call_string] => none
[xhtmlmp_preferred_mime_type] => text/html
[xhtml_table_support] => false
[xhtml_send_sms_string] => none
[xhtml_send_mms_string] => none
[xhtml_file_upload] => supported
[cookie_support] => true
[accept_third_party_cookie] => true
[xhtml_supports_iframe] => full
[xhtml_avoid_accesskeys] => true
[xhtml_can_embed_video] => play_and_stop
[ajax_support_javascript] => true
[ajax_manipulate_css] => true
[ajax_support_getelementbyid] => true
[ajax_support_inner_html] => true
[ajax_xhr_type] => standard
[ajax_manipulate_dom] => true
[ajax_support_events] => true
[ajax_support_event_listener] => true
[ajax_preferred_geoloc_api] => none
[xhtml_support_level] => 4
[preferred_markup] => html_web_4_0
[wml_1_1] => false
[wml_1_2] => false
[wml_1_3] => false
[html_wi_w3_xhtmlbasic] => true
[html_wi_oma_xhtmlmp_1_0] => false
[html_wi_imode_html_1] => false
[html_wi_imode_html_2] => false
[html_wi_imode_html_3] => false
[html_wi_imode_html_4] => false
[html_wi_imode_html_5] => false
[html_wi_imode_htmlx_1] => false
[html_wi_imode_htmlx_1_1] => false
[html_wi_imode_compact_generic] => false
[html_web_3_2] => true
[html_web_4_0] => true
[voicexml] => false
[multipart_support] => false
[total_cache_disable_support] => false
[time_to_live_support] => false
[resolution_width] => 800
[resolution_height] => 600
[columns] => 120
[max_image_width] => 800
[max_image_height] => 600
[rows] => 200
[physical_screen_width] => 400
[physical_screen_height] => 400
[dual_orientation] => false
[density_class] => 1.0
[wbmp] => false
[bmp] => true
[epoc_bmp] => false
[gif_animated] => true
[jpg] => true
[png] => true
[tiff] => false
[transparent_png_alpha] => false
[transparent_png_index] => false
[svgt_1_1] => true
[svgt_1_1_plus] => false
[greyscale] => false
[gif] => true
[colors] => 65536
[webp_lossy_support] => false
[webp_lossless_support] => false
[post_method_support] => true
[basic_authentication_support] => true
[empty_option_value_support] => true
[emptyok] => false
[nokia_voice_call] => false
[wta_voice_call] => false
[wta_phonebook] => false
[wta_misc] => false
[wta_pdc] => false
[https_support] => true
[phone_id_provided] => false
[max_data_rate] => 3200
[wifi] => true
[sdio] => false
[vpn] => false
[has_cellular_radio] => false
[max_deck_size] => 100000
[max_url_length_in_requests] => 128
[max_url_length_homepage] => 0
[max_url_length_bookmark] => 0
[max_url_length_cached_page] => 0
[max_no_of_connection_settings] => 0
[max_no_of_bookmarks] => 0
[max_length_of_username] => 0
[max_length_of_password] => 0
[max_object_size] => 0
[downloadfun_support] => false
[directdownload_support] => false
[inline_support] => false
[oma_support] => false
[ringtone] => false
[ringtone_3gpp] => false
[ringtone_midi_monophonic] => false
[ringtone_midi_polyphonic] => false
[ringtone_imelody] => false
[ringtone_digiplug] => false
[ringtone_compactmidi] => false
[ringtone_mmf] => false
[ringtone_rmf] => false
[ringtone_xmf] => false
[ringtone_amr] => false
[ringtone_awb] => false
[ringtone_aac] => false
[ringtone_wav] => false
[ringtone_mp3] => false
[ringtone_spmidi] => false
[ringtone_qcelp] => false
[ringtone_voices] => 1
[ringtone_df_size_limit] => 0
[ringtone_directdownload_size_limit] => 0
[ringtone_inline_size_limit] => 0
[ringtone_oma_size_limit] => 0
[wallpaper] => false
[wallpaper_max_width] => 0
[wallpaper_max_height] => 0
[wallpaper_preferred_width] => 0
[wallpaper_preferred_height] => 0
[wallpaper_resize] => none
[wallpaper_wbmp] => false
[wallpaper_bmp] => false
[wallpaper_gif] => false
[wallpaper_jpg] => false
[wallpaper_png] => false
[wallpaper_tiff] => false
[wallpaper_greyscale] => false
[wallpaper_colors] => 2
[wallpaper_df_size_limit] => 0
[wallpaper_directdownload_size_limit] => 0
[wallpaper_inline_size_limit] => 0
[wallpaper_oma_size_limit] => 0
[screensaver] => false
[screensaver_max_width] => 0
[screensaver_max_height] => 0
[screensaver_preferred_width] => 0
[screensaver_preferred_height] => 0
[screensaver_resize] => none
[screensaver_wbmp] => false
[screensaver_bmp] => false
[screensaver_gif] => false
[screensaver_jpg] => false
[screensaver_png] => false
[screensaver_greyscale] => false
[screensaver_colors] => 2
[screensaver_df_size_limit] => 0
[screensaver_directdownload_size_limit] => 0
[screensaver_inline_size_limit] => 0
[screensaver_oma_size_limit] => 0
[picture] => false
[picture_max_width] => 0
[picture_max_height] => 0
[picture_preferred_width] => 0
[picture_preferred_height] => 0
[picture_resize] => none
[picture_wbmp] => false
[picture_bmp] => false
[picture_gif] => false
[picture_jpg] => false
[picture_png] => false
[picture_greyscale] => false
[picture_colors] => 2
[picture_df_size_limit] => 0
[picture_directdownload_size_limit] => 0
[picture_inline_size_limit] => 0
[picture_oma_size_limit] => 0
[video] => false
[oma_v_1_0_forwardlock] => false
[oma_v_1_0_combined_delivery] => false
[oma_v_1_0_separate_delivery] => false
[streaming_video] => false
[streaming_3gpp] => false
[streaming_mp4] => false
[streaming_mov] => false
[streaming_video_size_limit] => 0
[streaming_real_media] => none
[streaming_flv] => false
[streaming_3g2] => false
[streaming_vcodec_h263_0] => -1
[streaming_vcodec_h263_3] => -1
[streaming_vcodec_mpeg4_sp] => -1
[streaming_vcodec_mpeg4_asp] => -1
[streaming_vcodec_h264_bp] => -1
[streaming_acodec_amr] => none
[streaming_acodec_aac] => none
[streaming_wmv] => none
[streaming_preferred_protocol] => rtsp
[streaming_preferred_http_protocol] => none
[wap_push_support] => false
[connectionless_service_indication] => false
[connectionless_service_load] => false
[connectionless_cache_operation] => false
[connectionoriented_unconfirmed_service_indication] => false
[connectionoriented_unconfirmed_service_load] => false
[connectionoriented_unconfirmed_cache_operation] => false
[connectionoriented_confirmed_service_indication] => false
[connectionoriented_confirmed_service_load] => false
[connectionoriented_confirmed_cache_operation] => false
[utf8_support] => true
[ascii_support] => false
[iso8859_support] => false
[expiration_date] => false
[j2me_cldc_1_0] => false
[j2me_cldc_1_1] => false
[j2me_midp_1_0] => false
[j2me_midp_2_0] => false
[doja_1_0] => false
[doja_1_5] => false
[doja_2_0] => false
[doja_2_1] => false
[doja_2_2] => false
[doja_3_0] => false
[doja_3_5] => false
[doja_4_0] => false
[j2me_jtwi] => false
[j2me_mmapi_1_0] => false
[j2me_mmapi_1_1] => false
[j2me_wmapi_1_0] => false
[j2me_wmapi_1_1] => false
[j2me_wmapi_2_0] => false
[j2me_btapi] => false
[j2me_3dapi] => false
[j2me_locapi] => false
[j2me_nokia_ui] => false
[j2me_motorola_lwt] => false
[j2me_siemens_color_game] => false
[j2me_siemens_extension] => false
[j2me_heap_size] => 0
[j2me_max_jar_size] => 0
[j2me_storage_size] => 0
[j2me_max_record_store_size] => 0
[j2me_screen_width] => 0
[j2me_screen_height] => 0
[j2me_canvas_width] => 0
[j2me_canvas_height] => 0
[j2me_bits_per_pixel] => 0
[j2me_audio_capture_enabled] => false
[j2me_video_capture_enabled] => false
[j2me_photo_capture_enabled] => false
[j2me_capture_image_formats] => none
[j2me_http] => false
[j2me_https] => false
[j2me_socket] => false
[j2me_udp] => false
[j2me_serial] => false
[j2me_gif] => false
[j2me_gif89a] => false
[j2me_jpg] => false
[j2me_png] => false
[j2me_bmp] => false
[j2me_bmp3] => false
[j2me_wbmp] => false
[j2me_midi] => false
[j2me_wav] => false
[j2me_amr] => false
[j2me_mp3] => false
[j2me_mp4] => false
[j2me_imelody] => false
[j2me_rmf] => false
[j2me_au] => false
[j2me_aac] => false
[j2me_realaudio] => false
[j2me_xmf] => false
[j2me_wma] => false
[j2me_3gpp] => false
[j2me_h263] => false
[j2me_svgt] => false
[j2me_mpeg4] => false
[j2me_realvideo] => false
[j2me_real8] => false
[j2me_realmedia] => false
[j2me_left_softkey_code] => 0
[j2me_right_softkey_code] => 0
[j2me_middle_softkey_code] => 0
[j2me_select_key_code] => 0
[j2me_return_key_code] => 0
[j2me_clear_key_code] => 0
[j2me_datefield_no_accepts_null_date] => false
[j2me_datefield_broken] => false
[receiver] => false
[sender] => false
[mms_max_size] => 0
[mms_max_height] => 0
[mms_max_width] => 0
[built_in_recorder] => false
[built_in_camera] => false
[mms_jpeg_baseline] => false
[mms_jpeg_progressive] => false
[mms_gif_static] => false
[mms_gif_animated] => false
[mms_png] => false
[mms_bmp] => false
[mms_wbmp] => false
[mms_amr] => false
[mms_wav] => false
[mms_midi_monophonic] => false
[mms_midi_polyphonic] => false
[mms_midi_polyphonic_voices] => 0
[mms_spmidi] => false
[mms_mmf] => false
[mms_mp3] => false
[mms_evrc] => false
[mms_qcelp] => false
[mms_ota_bitmap] => false
[mms_nokia_wallpaper] => false
[mms_nokia_operatorlogo] => false
[mms_nokia_3dscreensaver] => false
[mms_nokia_ringingtone] => false
[mms_rmf] => false
[mms_xmf] => false
[mms_symbian_install] => false
[mms_jar] => false
[mms_jad] => false
[mms_vcard] => false
[mms_vcalendar] => false
[mms_wml] => false
[mms_wbxml] => false
[mms_wmlc] => false
[mms_video] => false
[mms_mp4] => false
[mms_3gpp] => false
[mms_3gpp2] => false
[mms_max_frame_rate] => 0
[nokiaring] => false
[picturemessage] => false
[operatorlogo] => false
[largeoperatorlogo] => false
[callericon] => false
[nokiavcard] => false
[nokiavcal] => false
[sckl_ringtone] => false
[sckl_operatorlogo] => false
[sckl_groupgraphic] => false
[sckl_vcard] => false
[sckl_vcalendar] => false
[text_imelody] => false
[ems] => false
[ems_variablesizedpictures] => false
[ems_imelody] => false
[ems_odi] => false
[ems_upi] => false
[ems_version] => 0
[siemens_ota] => false
[siemens_logo_width] => 101
[siemens_logo_height] => 29
[siemens_screensaver_width] => 101
[siemens_screensaver_height] => 50
[gprtf] => false
[sagem_v1] => false
[sagem_v2] => false
[panasonic] => false
[sms_enabled] => false
[wav] => false
[mmf] => false
[smf] => false
[mld] => false
[midi_monophonic] => false
[midi_polyphonic] => false
[sp_midi] => false
[rmf] => false
[xmf] => false
[compactmidi] => false
[digiplug] => false
[nokia_ringtone] => false
[imelody] => false
[au] => false
[amr] => false
[awb] => false
[aac] => false
[mp3] => false
[voices] => 1
[qcelp] => false
[evrc] => false
[flash_lite_version] =>
[fl_wallpaper] => false
[fl_screensaver] => false
[fl_standalone] => false
[fl_browser] => false
[fl_sub_lcd] => false
[full_flash_support] => true
[css_supports_width_as_percentage] => true
[css_border_image] => none
[css_rounded_corners] => none
[css_gradient] => none
[css_spriting] => true
[css_gradient_linear] => none
[is_transcoder] => false
[transcoder_ua_header] => user-agent
[rss_support] => false
[pdf_support] => true
[progressive_download] => true
[playback_vcodec_h263_0] => -1
[playback_vcodec_h263_3] => -1
[playback_vcodec_mpeg4_sp] => -1
[playback_vcodec_mpeg4_asp] => -1
[playback_vcodec_h264_bp] => -1
[playback_real_media] => none
[playback_3gpp] => false
[playback_3g2] => false
[playback_mp4] => false
[playback_mov] => false
[playback_acodec_amr] => none
[playback_acodec_aac] => none
[playback_df_size_limit] => 0
[playback_directdownload_size_limit] => 0
[playback_inline_size_limit] => 0
[playback_oma_size_limit] => 0
[playback_acodec_qcelp] => false
[playback_wmv] => none
[hinted_progressive_download] => false
[html_preferred_dtd] => html4
[viewport_supported] => false
[viewport_width] =>
[viewport_userscalable] =>
[viewport_initial_scale] =>
[viewport_maximum_scale] =>
[viewport_minimum_scale] =>
[mobileoptimized] => false
[handheldfriendly] => false
[canvas_support] => full
[image_inlining] => true
[is_smarttv] => false
[is_console] => false
[nfc_support] => false
[ux_full_desktop] => true
[jqm_grade] => A
[is_sencha_touch_ok] => true
[controlcap_is_smartphone] => default
[controlcap_is_ios] => default
[controlcap_is_android] => default
[controlcap_is_robot] => default
[controlcap_is_app] => default
[controlcap_advertised_device_os] => default
[controlcap_advertised_device_os_version] => default
[controlcap_advertised_browser] => default
[controlcap_advertised_browser_version] => default
[controlcap_is_windows_phone] => default
[controlcap_is_full_desktop] => default
[controlcap_is_largescreen] => default
[controlcap_is_mobile] => default
[controlcap_is_touchscreen] => default
[controlcap_is_wml_preferred] => default
[controlcap_is_xhtmlmp_preferred] => default
[controlcap_is_html_preferred] => default
[controlcap_form_factor] => default
[controlcap_complete_device_name] => default
)
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr></table>
</div>
<div class="section">
<h1 class="header center orange-text">About this comparison</h1>
<div class="row center">
<h5 class="header light">
The primary goal of this project is simple<br />
I wanted to know which user agent parser is the most accurate in each part - device detection, bot detection and so on...<br />
<br />
The secondary goal is to provide a source for all user agent parsers to improve their detection based on this results.<br />
<br />
You can also improve this further, by suggesting ideas at <a href="https://github.com/ThaDafinser/UserAgentParserComparison">ThaDafinser/UserAgentParserComparison</a><br />
<br />
The comparison is based on the abstraction by <a href="https://github.com/ThaDafinser/UserAgentParser">ThaDafinser/UserAgentParser</a>
</h5>
</div>
</div>
<div class="card">
<div class="card-content">
Comparison created <i>2016-01-26 16:38:45</i> | by
<a href="https://github.com/ThaDafinser">ThaDafinser</a>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.3/js/materialize.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/list.js/1.1.1/list.min.js"></script>
<script>
$(document).ready(function(){
// the "href" attribute of .modal-trigger must specify the modal ID that wants to be triggered
$('.modal-trigger').leanModal();
});
</script>
</body>
</html> | ThaDafinser/UserAgentParserComparison | v3/user-agent-detail/ec/62/ec62c5c5-d34c-4eeb-a9a1-7386f7e31ea3.html | HTML | mit | 38,611 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>mathcomp-tarjan: 2 m 10 s 🏆</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 / mathcomp-tarjan - 1.0.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
mathcomp-tarjan
<small>
1.0.0
<span class="label label-success">2 m 10 s 🏆</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-01-13 08:04:05 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-01-13 08:04:05 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.10.2 The OCaml compiler (virtual package)
ocaml-base-compiler 4.10.2 Official release 4.10.2
ocaml-config 1 OCaml Switch Configuration
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: "Cyril Cohen <cyril.cohen@inria.fr>"
homepage: "https://github.com/math-comp/tarjan"
dev-repo: "git+https://github.com/math-comp/tarjan.git"
bug-reports: "https://github.com/math-comp/tarjan/issues"
license: "CECILL-B"
synopsis: "Strongly connected component algorithms by Tarjan and Kosaraju using Coq and MathComp"
description: """
This development contains formalizations and correctness proofs using Coq and the Mathematical
Components library of algorithms originally due to Kosaraju and Tarjan for finding strongly
connected components in finite graphs. It also contains a verified implementation of topological
sorting with extended guarantees for acyclic graphs."""
build: [make "-j%{jobs}%"]
install: [make "install"]
depends: [
"coq" {(>= "8.10" & < "8.15~") | (= "dev")}
"coq-mathcomp-ssreflect" {(>= "1.12.0" & < "1.14~") | (= "dev")}
"coq-mathcomp-fingroup"
]
tags: [
"category:Computer Science/Graph Theory"
"keyword:strongly connected components"
"keyword:topological sorting"
"keyword:Kosaraju"
"keyword:Tarjan"
"keyword:acyclicity"
"keyword:graph theory"
"logpath:mathcomp.tarjan"
]
authors: [
"Cyril Cohen"
"Jean-Jacques Lévy"
"Karl Palmskog"
"Laurent Théry"
]
url {
src: "https://github.com/math-comp/tarjan/archive/1.0.0.tar.gz"
checksum: "sha256=abed66d36c76e0824f32322c9b951d5154203d98e3ee65943e30925da089e133"
}
</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-mathcomp-tarjan.1.0.0 coq.8.13.1</code></dd>
<dt>Return code</dt>
<dd>0</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>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam list; echo; ulimit -Sv 4000000; timeout 4h opam install -y --deps-only coq-mathcomp-tarjan.1.0.0 coq.8.13.1</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>4 m 42 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam list; echo; ulimit -Sv 16000000; timeout 4h opam install -y -v coq-mathcomp-tarjan.1.0.0 coq.8.13.1</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>2 m 10 s</dd>
</dl>
<h2>Installation size</h2>
<p>Total: 4 M</p>
<ul>
<li>533 K <code>../ocaml-base-compiler.4.10.2/lib/coq/user-contrib/mathcomp/tarjan/tarjan_num.vo</code></li>
<li>416 K <code>../ocaml-base-compiler.4.10.2/lib/coq/user-contrib/mathcomp/tarjan/tarjan_num.glob</code></li>
<li>401 K <code>../ocaml-base-compiler.4.10.2/lib/coq/user-contrib/mathcomp/tarjan/tarjan_rank_bigmin.vo</code></li>
<li>396 K <code>../ocaml-base-compiler.4.10.2/lib/coq/user-contrib/mathcomp/tarjan/tarjan_rank.vo</code></li>
<li>338 K <code>../ocaml-base-compiler.4.10.2/lib/coq/user-contrib/mathcomp/tarjan/tarjan_rank_bigmin.glob</code></li>
<li>282 K <code>../ocaml-base-compiler.4.10.2/lib/coq/user-contrib/mathcomp/tarjan/tarjan_rank.glob</code></li>
<li>281 K <code>../ocaml-base-compiler.4.10.2/lib/coq/user-contrib/mathcomp/tarjan/tarjan_nocolors.vo</code></li>
<li>276 K <code>../ocaml-base-compiler.4.10.2/lib/coq/user-contrib/mathcomp/tarjan/Kosaraju.vo</code></li>
<li>216 K <code>../ocaml-base-compiler.4.10.2/lib/coq/user-contrib/mathcomp/tarjan/tarjan_nocolors.glob</code></li>
<li>202 K <code>../ocaml-base-compiler.4.10.2/lib/coq/user-contrib/mathcomp/tarjan/Kosaraju.glob</code></li>
<li>105 K <code>../ocaml-base-compiler.4.10.2/lib/coq/user-contrib/mathcomp/tarjan/acyclic.vo</code></li>
<li>101 K <code>../ocaml-base-compiler.4.10.2/lib/coq/user-contrib/mathcomp/tarjan/extra.vo</code></li>
<li>97 K <code>../ocaml-base-compiler.4.10.2/lib/coq/user-contrib/mathcomp/tarjan/acyclic.glob</code></li>
<li>95 K <code>../ocaml-base-compiler.4.10.2/lib/coq/user-contrib/mathcomp/tarjan/extra_nocolors.vo</code></li>
<li>78 K <code>../ocaml-base-compiler.4.10.2/lib/coq/user-contrib/mathcomp/tarjan/extra_nocolors.glob</code></li>
<li>77 K <code>../ocaml-base-compiler.4.10.2/lib/coq/user-contrib/mathcomp/tarjan/extra.glob</code></li>
<li>49 K <code>../ocaml-base-compiler.4.10.2/lib/coq/user-contrib/mathcomp/tarjan/bigmin.vo</code></li>
<li>48 K <code>../ocaml-base-compiler.4.10.2/lib/coq/user-contrib/mathcomp/tarjan/tarjan_num.v</code></li>
<li>38 K <code>../ocaml-base-compiler.4.10.2/lib/coq/user-contrib/mathcomp/tarjan/bigmin.glob</code></li>
<li>38 K <code>../ocaml-base-compiler.4.10.2/lib/coq/user-contrib/mathcomp/tarjan/tarjan_rank_bigmin.v</code></li>
<li>35 K <code>../ocaml-base-compiler.4.10.2/lib/coq/user-contrib/mathcomp/tarjan/tarjan_rank.v</code></li>
<li>27 K <code>../ocaml-base-compiler.4.10.2/lib/coq/user-contrib/mathcomp/tarjan/acyclic_tsorted.vo</code></li>
<li>27 K <code>../ocaml-base-compiler.4.10.2/lib/coq/user-contrib/mathcomp/tarjan/Kosaraju.v</code></li>
<li>25 K <code>../ocaml-base-compiler.4.10.2/lib/coq/user-contrib/mathcomp/tarjan/tarjan_nocolors.v</code></li>
<li>13 K <code>../ocaml-base-compiler.4.10.2/lib/coq/user-contrib/mathcomp/tarjan/acyclic.v</code></li>
<li>11 K <code>../ocaml-base-compiler.4.10.2/lib/coq/user-contrib/mathcomp/tarjan/extra.v</code></li>
<li>11 K <code>../ocaml-base-compiler.4.10.2/lib/coq/user-contrib/mathcomp/tarjan/acyclic_tsorted.glob</code></li>
<li>10 K <code>../ocaml-base-compiler.4.10.2/lib/coq/user-contrib/mathcomp/tarjan/extra_nocolors.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.10.2/lib/coq/user-contrib/mathcomp/tarjan/bigmin.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.10.2/lib/coq/user-contrib/mathcomp/tarjan/acyclic_tsorted.v</code></li>
</ul>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq-mathcomp-tarjan.1.0.0</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.10.2-2.0.6/released/8.13.1/mathcomp-tarjan/1.0.0.html | HTML | mit | 11,124 |
<h1>quqi_money</h1>
<h2>新建数据表</h2>
<pre><code>DROP TABLE IF EXISTS `cfg_holiday`;
CREATE TABLE `cfg_holiday` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`start_date` varchar(50) DEFAULT NULL COMMENT '假期开始日期,格式YYYY-MM-DD',
`end_date` varchar(50) DEFAULT NULL COMMENT '结束日期',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='法定节假日';
-- ----------------------------
-- Table structure for cfg_whitelist
-- ----------------------------
DROP TABLE IF EXISTS `cfg_whitelist`;
CREATE TABLE `cfg_whitelist` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`ip` varchar(50) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT;
-- ----------------------------
-- Table structure for log_change
-- ----------------------------
DROP TABLE IF EXISTS `log_change`;
CREATE TABLE `log_change` (
`change_id` varchar(50) NOT NULL COMMENT '变化记录号,系统生成唯一',
`order_id` varchar(50) NOT NULL COMMENT '对应订单号',
`type` int(11) NOT NULL COMMENT '变化类型,0为余额不变,1为增加,1为余额减少',
`time` bigint(20) NOT NULL DEFAULT '0' COMMENT '变化时间',
`quqi_id` int(11) NOT NULL DEFAULT '0' COMMENT '对应quqi账户id',
`is_company` tinyint(4) DEFAULT NULL COMMENT '是否团队账户',
`account_id` int(11) DEFAULT NULL COMMENT '对应的passport_id或company_id',
`name` varchar(50) DEFAULT NULL COMMENT '账户名',
`coin_num` double NOT NULL DEFAULT '0' COMMENT '变化曲奇币金额',
`coin_balance` double NOT NULL DEFAULT '0' COMMENT '剩余曲奇币',
`detail` varchar(255) NOT NULL DEFAULT '0' COMMENT '描述',
PRIMARY KEY (`change_id`),
KEY `type` (`type`) USING BTREE,
KEY `quqi_id` (`quqi_id`) USING BTREE,
KEY `order_id` (`order_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT;
-- ----------------------------
-- Table structure for order_cost
-- ----------------------------
DROP TABLE IF EXISTS `order_cost`;
CREATE TABLE `order_cost` (
`cost_id` varchar(50) NOT NULL COMMENT '订单号,系统生成唯一',
`parent_cost_id` varchar(50) DEFAULT NULL COMMENT '如果是父团队代扣费,父团队消耗订单号',
`type` int(11) NOT NULL COMMENT '消耗类型,1文档消耗,2代扣消费',
`time` bigint(20) NOT NULL DEFAULT '0' COMMENT '消耗时间,为0点整数时间戳',
`quqi_id` int(11) NOT NULL DEFAULT '0' COMMENT '对应消耗quqi账户id',
`is_company` tinyint(4) DEFAULT NULL COMMENT '是否团队账户',
`account_id` int(11) DEFAULT NULL COMMENT '对应的passport_id或company_id',
`name` varchar(50) DEFAULT NULL COMMENT '账户名',
`cost_doc_num` int(11) DEFAULT '0' COMMENT '文档消耗数,默认为0',
`cost_coin` double NOT NULL COMMENT '消耗曲奇币金额',
PRIMARY KEY (`cost_id`),
KEY `type` (`type`) USING BTREE,
KEY `quqi_id` (`quqi_id`) USING BTREE,
KEY `change_id` (`parent_cost_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT;
-- ----------------------------
-- Table structure for order_gift
-- ----------------------------
DROP TABLE IF EXISTS `order_gift`;
CREATE TABLE `order_gift` (
`gift_id` varchar(50) NOT NULL COMMENT '订单号,系统生成唯一',
`type` int(11) NOT NULL COMMENT '赠送类型,例如1注册赠送,2为邀请赠送,3充值赠送,4首冲赠送,5后台赠送,6曲奇卷兑换',
`pay_order_id` varchar(50) DEFAULT NULL COMMENT '若为充值返点,对应的充值订单号',
`time` bigint(20) NOT NULL DEFAULT '0' COMMENT '赠送时间',
`status` tinyint(4) NOT NULL DEFAULT '0' COMMENT '是否生效',
`quqi_id` int(11) NOT NULL DEFAULT '0' COMMENT '对应赠送quqi账户id',
`is_company` tinyint(4) DEFAULT NULL COMMENT '是否团队账户',
`account_id` int(11) DEFAULT NULL COMMENT '对应的passport_id或company_id',
`name` varchar(50) DEFAULT NULL COMMENT '账户名',
`gift_coin` double NOT NULL DEFAULT '0' COMMENT '赠送曲奇币金额',
`detail` text COMMENT '备注信息',
PRIMARY KEY (`gift_id`),
KEY `quqi_id` (`quqi_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT;
-- ----------------------------
-- Table structure for order_pay
-- ----------------------------
DROP TABLE IF EXISTS `order_pay`;
CREATE TABLE `order_pay` (
`order_id` varchar(50) NOT NULL COMMENT '订单号,系统生成唯一',
`type` int(11) NOT NULL COMMENT '充值渠道,例如1为支付宝,2为微信',
`type_order_id` varchar(50) DEFAULT NULL COMMENT '充值渠道中对应的订单号',
`time` bigint(20) NOT NULL DEFAULT '0' COMMENT '充值时间',
`status` tinyint(4) NOT NULL DEFAULT '0' COMMENT '是否生效',
`quqi_id` int(11) NOT NULL DEFAULT '0' COMMENT '对应充值quqi账户id',
`is_company` tinyint(4) NOT NULL DEFAULT '0' COMMENT '是否团队账户',
`account_id` int(11) DEFAULT NULL COMMENT '对应的passport_id或company_id',
`name` varchar(50) DEFAULT NULL COMMENT '账户名',
`operate_id` int(11) DEFAULT NULL COMMENT '操作人passport_id',
`pay_money` double NOT NULL COMMENT '充值现金到帐金额',
`pay_coin` double NOT NULL COMMENT '充值曲奇币金额',
`pay_ip` varchar(50) DEFAULT NULL COMMENT '充值ip',
PRIMARY KEY (`order_id`),
UNIQUE KEY `type_type_order_id` (`type`,`type_order_id`) USING BTREE,
KEY `quqi_id` (`quqi_id`) USING BTREE,
KEY `operate_id` (`operate_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT;
-- ----------------------------
-- Table structure for order_voucher
-- ----------------------------
DROP TABLE IF EXISTS `order_voucher`;
CREATE TABLE `order_voucher` (
`voucher_id` varchar(50) NOT NULL COMMENT '订单号,系统生成唯一',
`type` int(11) NOT NULL COMMENT '发放类型,例如1为邀请人注册账号,2为邀请人创建团队,3为邀请人充值20000曲奇币以上,4系统赠送',
`bind_passport_id` int(11) NOT NULL COMMENT '被邀请人passport_id',
`status` tinyint(4) NOT NULL COMMENT '是否使用',
`time` bigint(20) NOT NULL COMMENT '发放时间',
`quqi_id` int(11) NOT NULL COMMENT '对应发放的quqi账户id',
`account_id` int(11) NOT NULL COMMENT '对应的passport_id',
`name` varchar(50) NOT NULL COMMENT '账户名',
`voucher_coin` double NOT NULL COMMENT '曲奇券金额',
PRIMARY KEY (`voucher_id`),
KEY `type` (`type`) USING BTREE,
KEY `bind_passport_id` (`bind_passport_id`) USING BTREE,
KEY `quqi_id` (`quqi_id`) USING BTREE
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC;
-- ----------------------------
-- Table structure for sys_passport_bind
-- ----------------------------
DROP TABLE IF EXISTS `sys_passport_bind`;
CREATE TABLE `sys_passport_bind` (
`passport_id` int(11) NOT NULL COMMENT '新注册用户',
`bind_passport_id` int(11) NOT NULL COMMENT '发出邀请的老用户',
PRIMARY KEY (`passport_id`),
KEY `bind_passport_id` (`bind_passport_id`) USING BTREE
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED;
-- ----------------------------
-- Table structure for sys_voucher
-- ----------------------------
DROP TABLE IF EXISTS `sys_voucher`;
CREATE TABLE `sys_voucher` (
`voucher_id` varchar(50) NOT NULL COMMENT '订单号,系统生成唯一',
`passport_id` int(11) NOT NULL DEFAULT '0' COMMENT '对应发放的passport账户id',
`time` bigint(20) NOT NULL DEFAULT '0' COMMENT '发放时间,加一年为过期时间',
`status` tinyint(4) NOT NULL DEFAULT '0' COMMENT '使用状态,0未使用,1使用,2过期',
`use_time` bigint(20) NOT NULL DEFAULT '0' COMMENT '使用时间',
`use_name` varchar(50) DEFAULT NULL COMMENT '充值团队名',
`voucher_coin` double NOT NULL DEFAULT '0' COMMENT '曲奇券金额',
PRIMARY KEY (`voucher_id`),
KEY `passport_id_status` (`passport_id`,`status`) USING BTREE
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC;
</code></pre>
| JianmingXia/StudyTest | MarkdownItDemo/output/quqi_money.html | HTML | mit | 7,950 |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>AngularJS Succinctly</title>
<!-- Bootstrap -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.0.4/angular.js"></script>
<script src="app.js"></script>
</head>
<body ng-app="MyApp">
<h1>Paginação utilizando resultados infinitos</h1>
<div ng-controller="PaginationCtrl">
<table class="table table-striped">
<thead>
<tr>
<th>Id</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="item in pagedItems">
<td>{{item.id}}</td>
<td>{{item.name}}</td>
<td>{{item.description}}</td>
</tr>
</tbody>
<tfoot>
<td colspan="3">
<button class="btn" href="#" ng-class="nextPageDisabledClass()" ng-click="loadMore()">Load More</button>
</td>
</tfoot>
</table>
</div>
</body>
</html>
| matheusmpessoa/angularjs-succinctly | capitulo8/parte4/parte4.html | HTML | mit | 1,469 |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>
Categories – tomjamescn's blog
</title>
<meta name="description" property="og:description" content="Describe what your web page is about">
<meta name="apple-mobile-web-app-title" content="tomjamescn's blog">
<link rel="icon" href="/favicon-64.png">
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
<link rel="mask-icon" size="any" href="/pinned-icon.svg">
<link rel="stylesheet" href="/assets/syntax.css">
<link rel="stylesheet" href="/assets/primer-build.css">
<link rel="stylesheet" href="/assets/style.css">
</head>
<body class="bg-gray">
<div id="holy" class="container-lg bg-white h-100">
<div id="header" class="px-1 bg-white">
<nav class="UnderlineNav UnderlineNav--right px-2">
<a class="UnderlineNav-actions muted-link h2" href="https://tomjamescn.github.io">
tomjamescn's blog
</a>
<div class="UnderlineNav-body">
<a class="UnderlineNav-item " href="/">
<span>Home</span>
</a>
<a class="UnderlineNav-item " href="/post/">
<span>Blog</span>
</a>
<a class="UnderlineNav-item " href="/about/">
<span>About</span>
</a>
</div>
</nav>
</div>
<div role="main" id="main" class="holy-main markdown-body px-4 bg-white">
<div>
<h1>Categories</h1>
<div class="rounded-2 box-shadow-medium px-3 pb-2 pt-2 mb-2">
<div class="mb-2">
<a href="/categories/proxmox/" class="link-gray-dark"><span class="h2">proxmox</span></a>
<span class="text-right Counter Counter--gray">1</span>
</div>
<div class="text-gray">
<a class="btn btn-transparent bg-blue-light link-gray mb-2" href="/post/2020-10-10-proxmox-6.2-gpu-passthrough/" role="button">proxmox6.2中配置显卡直通</a>
</div>
</div>
<div class="rounded-2 box-shadow-medium px-3 pb-2 pt-2 mb-2">
<div class="mb-2">
<a href="/categories/kubernetes/" class="link-gray-dark"><span class="h2">kubernetes</span></a>
<span class="text-right Counter Counter--gray">3</span>
</div>
<div class="text-gray">
<a class="btn btn-transparent bg-blue-light link-gray mb-2" href="/post/2020-09-19-kubernetes-concepts/" role="button">Kubernetes概念</a>
<a class="btn btn-transparent bg-blue-light link-gray mb-2" href="/post/2019-05-02-upgrade-k8s-cluster/" role="button">升级k8s集群到v1.14.1</a>
<a class="btn btn-transparent bg-blue-light link-gray mb-2" href="/post/2019-02-09-build-a-k8s-cluster/" role="button">搭建k8s集群</a>
</div>
</div>
<div class="rounded-2 box-shadow-medium px-3 pb-2 pt-2 mb-2">
<div class="mb-2">
<a href="/categories/python/" class="link-gray-dark"><span class="h2">python</span></a>
<span class="text-right Counter Counter--gray">1</span>
</div>
<div class="text-gray">
<a class="btn btn-transparent bg-blue-light link-gray mb-2" href="/post/2020-09-16-anaconda-and-pip-source/" role="button">国内可用的anaconda和pip源</a>
</div>
</div>
<div class="rounded-2 box-shadow-medium px-3 pb-2 pt-2 mb-2">
<div class="mb-2">
<a href="/categories/%E8%BD%AF%E4%BB%B6%E5%BC%80%E5%8F%91/" class="link-gray-dark"><span class="h2">软件开发</span></a>
<span class="text-right Counter Counter--gray">1</span>
</div>
<div class="text-gray">
<a class="btn btn-transparent bg-blue-light link-gray mb-2" href="/post/2020-08-25-tips-about-git-flow/" role="button">Tips About Git Flow</a>
</div>
</div>
<div class="rounded-2 box-shadow-medium px-3 pb-2 pt-2 mb-2">
<div class="mb-2">
<a href="/categories/grafana/" class="link-gray-dark"><span class="h2">grafana</span></a>
<span class="text-right Counter Counter--gray">1</span>
</div>
<div class="text-gray">
<a class="btn btn-transparent bg-blue-light link-gray mb-2" href="/post/2020-06-06-release-grafana-datasource-plugin-for-tusharepro-api/" role="button">发布基于tushare.pro的api的grafana datasource插件</a>
</div>
</div>
<div class="rounded-2 box-shadow-medium px-3 pb-2 pt-2 mb-2">
<div class="mb-2">
<a href="/categories/%E7%82%92%E8%82%A1/" class="link-gray-dark"><span class="h2">炒股</span></a>
<span class="text-right Counter Counter--gray">1</span>
</div>
<div class="text-gray">
<a class="btn btn-transparent bg-blue-light link-gray mb-2" href="/post/2020-06-06-release-grafana-datasource-plugin-for-tusharepro-api/" role="button">发布基于tushare.pro的api的grafana datasource插件</a>
</div>
</div>
<div class="rounded-2 box-shadow-medium px-3 pb-2 pt-2 mb-2">
<div class="mb-2">
<a href="/categories/golang/" class="link-gray-dark"><span class="h2">golang</span></a>
<span class="text-right Counter Counter--gray">11</span>
</div>
<div class="text-gray">
<a class="btn btn-transparent bg-blue-light link-gray mb-2" href="/post/2020-05-22-golang-http-transport-disable-http2/" role="button">http.Transport禁用Http2</a>
<a class="btn btn-transparent bg-blue-light link-gray mb-2" href="/post/2020-05-18-go-mod-private/" role="button">Go私有库访问设置</a>
<a class="btn btn-transparent bg-blue-light link-gray mb-2" href="/post/2020-04-22-golang-tips/" role="button">Golang Tips</a>
<a class="btn btn-transparent bg-blue-light link-gray mb-2" href="/post/2019-08-15-golang-best-practise-functional-options/" role="button">golang最佳实践-functional options</a>
<a class="btn btn-transparent bg-blue-light link-gray mb-2" href="/post/2019-07-29-golang-basic-2-how-to-use-godoc/" role="button">golang基础(2) - godoc的用法</a>
<a class="btn btn-transparent link-gray mb-2" href="/categories/golang/" role="button">…more</a>
</div>
</div>
<div class="rounded-2 box-shadow-medium px-3 pb-2 pt-2 mb-2">
<div class="mb-2">
<a href="/categories/macos/" class="link-gray-dark"><span class="h2">MacOS</span></a>
<span class="text-right Counter Counter--gray">3</span>
</div>
<div class="text-gray">
<a class="btn btn-transparent bg-blue-light link-gray mb-2" href="/post/2020-04-24-useful-hotkey/" role="button">常用快捷键和按键组合</a>
<a class="btn btn-transparent bg-blue-light link-gray mb-2" href="/post/2020-01-01-acess-ios-file-system-using-libimobiledevice/" role="button">使用libimobiledevice库访问iphone上的文件</a>
<a class="btn btn-transparent bg-blue-light link-gray mb-2" href="/post/2019-01-10-how-to-use-mac-os-effectively/" role="button">怎样有效使用mac os</a>
</div>
</div>
<div class="rounded-2 box-shadow-medium px-3 pb-2 pt-2 mb-2">
<div class="mb-2">
<a href="/categories/cpu%E6%9E%B6%E6%9E%84/" class="link-gray-dark"><span class="h2">CPU架构</span></a>
<span class="text-right Counter Counter--gray">1</span>
</div>
<div class="text-gray">
<a class="btn btn-transparent bg-blue-light link-gray mb-2" href="/post/2019-08-31-cache-line-false-sharing/" role="button">CPU缓存体系-Cache Line假共享</a>
</div>
</div>
<div class="rounded-2 box-shadow-medium px-3 pb-2 pt-2 mb-2">
<div class="mb-2">
<a href="/categories/%E5%BF%83%E7%90%86/" class="link-gray-dark"><span class="h2">心理</span></a>
<span class="text-right Counter Counter--gray">1</span>
</div>
<div class="text-gray">
<a class="btn btn-transparent bg-blue-light link-gray mb-2" href="/post/2019-08-13-a-poem-about-love-and-independent-for-children/" role="button">一首关于给予孩子爱与独立的诗歌</a>
</div>
</div>
<nav class="paginate-container">
<div class="pagination">
<ul>
<span class="previous_page disabled">Prev</span>
<em class="current selected" aria-current="true">1</em>
<a href="/categories/page/2/">2</a>
<a href="/categories/page/2/" class="next_page">Next</a>
</ul>
</div>
</nav>
</div>
</div>
<div id="side" class="pr-1 bg-white">
<aside class="pr-3">
<div class="Box Box--blue p-2 mb-3 mt-5">
<a href="/tags/" class="link-gray-dark">
<h4>Tags</h4>
</a>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/ai" class="link-gray text-emphasized css-truncate-target"><span class="">Ai</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/anaconda" class="link-gray text-emphasized css-truncate-target"><span class="">Anaconda</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/architecture" class="link-gray text-emphasized css-truncate-target"><span class="">Architecture</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/brew" class="link-gray text-emphasized css-truncate-target"><span class="">Brew</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/cache-line" class="link-gray text-emphasized css-truncate-target"><span class="">Cache line</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/cache-system" class="link-gray text-emphasized css-truncate-target"><span class="">Cache system</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/chrome" class="link-gray text-emphasized css-truncate-target"><span class="">Chrome</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/cluster" class="link-gray text-emphasized css-truncate-target"><span class="">Cluster</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/concepts" class="link-gray text-emphasized css-truncate-target"><span class="">Concepts</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/cpu" class="link-gray text-emphasized css-truncate-target"><span class="">Cpu</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/crypto/x509" class="link-gray text-emphasized css-truncate-target"><span class="">Crypto/x509</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/datasource" class="link-gray text-emphasized css-truncate-target"><span class="">Datasource</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/disk" class="link-gray text-emphasized css-truncate-target"><span class="">Disk</span></a>
<span class="text-right Counter">2</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/docker" class="link-gray text-emphasized css-truncate-target"><span class="">Docker</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/false-sharing" class="link-gray text-emphasized css-truncate-target"><span class="">False sharing</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/git-flow" class="link-gray text-emphasized css-truncate-target"><span class="">Git flow</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/go" class="link-gray text-emphasized css-truncate-target"><span class="">Go</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/go-mod" class="link-gray text-emphasized css-truncate-target"><span class="">Go mod</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/golang" class="link-gray text-emphasized css-truncate-target"><span class="">Golang</span></a>
<span class="text-right Counter">11</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/golnag" class="link-gray text-emphasized css-truncate-target"><span class="">Golnag</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/google" class="link-gray text-emphasized css-truncate-target"><span class="">Google</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/gpu-passthrough" class="link-gray text-emphasized css-truncate-target"><span class="">Gpu passthrough</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/grafana" class="link-gray text-emphasized css-truncate-target"><span class="">Grafana</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/hdd" class="link-gray text-emphasized css-truncate-target"><span class="">Hdd</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/http" class="link-gray text-emphasized css-truncate-target"><span class="">Http</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/http2" class="link-gray text-emphasized css-truncate-target"><span class="">Http2</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/ifuse" class="link-gray text-emphasized css-truncate-target"><span class="">Ifuse</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/iphone" class="link-gray text-emphasized css-truncate-target"><span class="">Iphone</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/iterm" class="link-gray text-emphasized css-truncate-target"><span class="">Iterm</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/k8s" class="link-gray text-emphasized css-truncate-target"><span class="">K8s</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/karabiner-elements" class="link-gray text-emphasized css-truncate-target"><span class="">Karabiner elements</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/kubernetes" class="link-gray text-emphasized css-truncate-target"><span class="">Kubernetes</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/libimobiledevice" class="link-gray text-emphasized css-truncate-target"><span class="">Libimobiledevice</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/linux" class="link-gray text-emphasized css-truncate-target"><span class="">Linux</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/macos" class="link-gray text-emphasized css-truncate-target"><span class="">Macos</span></a>
<span class="text-right Counter">2</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/nextcloud" class="link-gray text-emphasized css-truncate-target"><span class="">Nextcloud</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/openssl" class="link-gray text-emphasized css-truncate-target"><span class="">Openssl</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/php" class="link-gray text-emphasized css-truncate-target"><span class="">Php</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/pip" class="link-gray text-emphasized css-truncate-target"><span class="">Pip</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/plugin" class="link-gray text-emphasized css-truncate-target"><span class="">Plugin</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/private" class="link-gray text-emphasized css-truncate-target"><span class="">Private</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/proxmox" class="link-gray text-emphasized css-truncate-target"><span class="">Proxmox</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/rasbian" class="link-gray text-emphasized css-truncate-target"><span class="">Rasbian</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/raspberry-pi" class="link-gray text-emphasized css-truncate-target"><span class="">Raspberry pi</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/redis" class="link-gray text-emphasized css-truncate-target"><span class="">Redis</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/redis-go" class="link-gray text-emphasized css-truncate-target"><span class="">Redis go</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/serialize" class="link-gray text-emphasized css-truncate-target"><span class="">Serialize</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/shell" class="link-gray text-emphasized css-truncate-target"><span class="">Shell</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/stock" class="link-gray text-emphasized css-truncate-target"><span class="">Stock</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/vim" class="link-gray text-emphasized css-truncate-target"><span class="">Vim</span></a>
<span class="text-right Counter">3</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/zeppelin" class="link-gray text-emphasized css-truncate-target"><span class="">Zeppelin</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/zfs" class="link-gray text-emphasized css-truncate-target"><span class="">Zfs</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/zotero" class="link-gray text-emphasized css-truncate-target"><span class="">Zotero</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/zpool" class="link-gray text-emphasized css-truncate-target"><span class="">Zpool</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/%e4%b8%aa%e4%ba%ba%e6%88%90%e9%95%bf" class="link-gray text-emphasized css-truncate-target"><span class="">个人成长</span></a>
<span class="text-right Counter">2</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/%e4%bd%bf%e7%94%a8%e6%8a%80%e5%b7%a7" class="link-gray text-emphasized css-truncate-target"><span class="">使用技巧</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/%e5%87%bd%e6%95%b0%e5%8f%82%e6%95%b0" class="link-gray text-emphasized css-truncate-target"><span class="">函数参数</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/%e5%88%86%e5%b8%83%e5%bc%8f" class="link-gray text-emphasized css-truncate-target"><span class="">分布式</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/%e5%8a%a0%e8%a7%a3%e5%af%86" class="link-gray text-emphasized css-truncate-target"><span class="">加解密</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/%e5%9d%8f%e9%81%93" class="link-gray text-emphasized css-truncate-target"><span class="">坏道</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/%e5%b0%91%e6%9c%89%e4%ba%ba%e8%b5%b0%e7%9a%84%e8%b7%af" class="link-gray text-emphasized css-truncate-target"><span class="">少有人走的路</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/%e5%b7%a5%e5%85%b7" class="link-gray text-emphasized css-truncate-target"><span class="">工具</span></a>
<span class="text-right Counter">2</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/%e5%bf%83%e7%90%86%e5%ad%a6" class="link-gray text-emphasized css-truncate-target"><span class="">心理学</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/%e6%80%9d%e8%80%83" class="link-gray text-emphasized css-truncate-target"><span class="">思考</span></a>
<span class="text-right Counter">2</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/%e6%80%bb%e7%bb%93" class="link-gray text-emphasized css-truncate-target"><span class="">总结</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/%e6%83%b3%e6%b3%95" class="link-gray text-emphasized css-truncate-target"><span class="">想法</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/%e6%8a%80%e6%9c%af" class="link-gray text-emphasized css-truncate-target"><span class="">技术</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/%e6%9c%80%e4%bd%b3%e5%ae%9e%e8%b7%b5" class="link-gray text-emphasized css-truncate-target"><span class="">最佳实践</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/%e6%a0%91%e8%8e%93%e6%b4%be" class="link-gray text-emphasized css-truncate-target"><span class="">树莓派</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/%e6%ba%90" class="link-gray text-emphasized css-truncate-target"><span class="">源</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/%e7%82%92%e8%82%a1" class="link-gray text-emphasized css-truncate-target"><span class="">炒股</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/%e7%89%9b%e4%ba%ba" class="link-gray text-emphasized css-truncate-target"><span class="">牛人</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/%e7%9f%a5%e8%af%86%e7%ae%a1%e7%90%86" class="link-gray text-emphasized css-truncate-target"><span class="">知识管理</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/%e7%a1%ac%e4%bb%b6" class="link-gray text-emphasized css-truncate-target"><span class="">硬件</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/%e7%a1%ac%e7%9b%98" class="link-gray text-emphasized css-truncate-target"><span class="">硬盘</span></a>
<span class="text-right Counter">2</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/%e7%a7%81%e6%9c%89%e5%ba%93" class="link-gray text-emphasized css-truncate-target"><span class="">私有库</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/%e8%af%97%e6%ad%8c" class="link-gray text-emphasized css-truncate-target"><span class="">诗歌</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/tags/%e8%bd%af%e4%bb%b6" class="link-gray text-emphasized css-truncate-target"><span class="">软件</span></a>
<span class="text-right Counter">1</span>
</span>
</div>
<div class="Box Box--blue p-2 mb-3">
<a href="/categories/" class="link-gray-dark">
<h4>Categories</h4>
</a>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/categories/cpu%e6%9e%b6%e6%9e%84" class="link-gray text-emphasized css-truncate-target"><span class="">Cpu架构</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/categories/docker" class="link-gray text-emphasized css-truncate-target"><span class="">Docker</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/categories/golang" class="link-gray text-emphasized css-truncate-target"><span class="">Golang</span></a>
<span class="text-right Counter">11</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/categories/grafana" class="link-gray text-emphasized css-truncate-target"><span class="">Grafana</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/categories/kubernetes" class="link-gray text-emphasized css-truncate-target"><span class="">Kubernetes</span></a>
<span class="text-right Counter">3</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/categories/macos" class="link-gray text-emphasized css-truncate-target"><span class="">Macos</span></a>
<span class="text-right Counter">3</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/categories/proxmox" class="link-gray text-emphasized css-truncate-target"><span class="">Proxmox</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/categories/python" class="link-gray text-emphasized css-truncate-target"><span class="">Python</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/categories/vim" class="link-gray text-emphasized css-truncate-target"><span class="">Vim</span></a>
<span class="text-right Counter">2</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/categories/zeppelin" class="link-gray text-emphasized css-truncate-target"><span class="">Zeppelin</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/categories/zfs" class="link-gray text-emphasized css-truncate-target"><span class="">Zfs</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/categories/%e5%bf%83%e7%90%86" class="link-gray text-emphasized css-truncate-target"><span class="">心理</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/categories/%e6%84%9f%e6%82%9f" class="link-gray text-emphasized css-truncate-target"><span class="">感悟</span></a>
<span class="text-right Counter">2</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/categories/%e6%8a%80%e6%9c%af%e9%9a%8f%e7%ac%94" class="link-gray text-emphasized css-truncate-target"><span class="">技术随笔</span></a>
<span class="text-right Counter">2</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/categories/%e6%a0%91%e8%8e%93%e6%b4%be" class="link-gray text-emphasized css-truncate-target"><span class="">树莓派</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/categories/%e7%82%92%e8%82%a1" class="link-gray text-emphasized css-truncate-target"><span class="">炒股</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/categories/%e7%a1%ac%e4%bb%b6" class="link-gray text-emphasized css-truncate-target"><span class="">硬件</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/categories/%e7%ae%a1%e7%90%86" class="link-gray text-emphasized css-truncate-target"><span class="">管理</span></a>
<span class="text-right Counter">1</span>
</span>
<span class="css-truncate no-wrap m-1 pl-1">
<a href="/categories/%e8%bd%af%e4%bb%b6%e5%bc%80%e5%8f%91" class="link-gray text-emphasized css-truncate-target"><span class="">软件开发</span></a>
<span class="text-right Counter">1</span>
</span>
</div>
</aside>
</div>
<div id="footer" class="pt-2 pb-3 bg-white text-center">
<span class="text-small text-gray">
©tomjamescn 2020 ·
Powered by the
<a href="https://github.com/qqhann/hugo-primer" class="link-gray-dark">Hugo-Primer</a> theme for
<a href="https://gohugo.io" class="link-gray-dark">Hugo</a>.
</span>
</div>
</div>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
<script type="text/x-mathjax-config">MathJax.Hub.Config({ tex2jax: { inlineMath: [['$','$'], ['\\(','\\)']] } });</script>
</body>
</html>
| tomjamescn/tomjamescn.github.io | categories/index.html | HTML | mit | 33,263 |
<!doctype html>
<html>
<head>
<title>Popups</title>
<meta charset="utf-8">
<meta name="viewport" content="user-scalable=no, initial-scale=1.0, maximum-scale=1.0, width=device-width">
<meta name="apple-mobile-web-app-capable" content="yes"/>
<link rel="stylesheet" href="../css/main.css?v=1.0">
</head>
<body class="_IE9">
<div class="sxc-white">
<div class="sxc-default container-fluid">
<div class="row sxc-p30">
<div class="col-xs-12">
<h1>Popups</h1>
<h2><a href="http://dimsemenov.com/plugins/magnific-popup/">Magnific Popup</a></h2>
</div>
</div> <!-- row -->
</div> <!-- sxc-type container -->
</div> <!-- sxc-color -->
<!-- ####################################################################### -->
<div class="sxc-white">
<div class="sxc-default sxc-p50">
<div class="row">
<div class="col-xs-12">
<ul class="sx-list">
<li><a class="j-mfp-modal-link" href="#test-modal1">Modal window</a> j-mfp-modal-link</li>
<li><a class="j-mfp-non-modal-link" href="#support">Dotaz na technika</a> j-mfp-non-modal-link</li>
</ul>
</div>
</div> <!-- row -->
</div> <!-- sxc-type container -->
</div> <!-- sxc-color -->
<!-- ####################################################################### -->
<div id="test-modal1" class="mfp-hide sx-popup sx-popup-white sx-popup-content">
<h1>Modal dialog</h1>
<p>You won't be able to dismiss this by usual means (escape or
click button), but you can close it programatically based on
user choices or actions.</p>
<p><a class="j-mfp-modal-dismiss" href="#">Dismiss</a></p>
</div>
<!-- ####################################################################### -->
<div id="support" class="mfp-hide sx-popup sx-popup-white sx-popup-content sx-popup-login">
<div class="sx-form sx-popup-content-slender">
<h2 class="sx-popup-heading">Dotaz na technika</h2>
<div class="sx-media-h sx-media-vat">
<div class="sx-media-figure">
<img class="sx-img-circle" src="images/contact3.png"><br>
</div>
<div class="sx-media-body">
<div class="pb20">
<strong class="sx-text-11em">Jiří Janáček</strong><br>
Technik
</div>
<div class="sx-contact-card-data sx-contact-card-phone pb10">
+420 581 261 228<br>
</div>
<div class="sx-contact-card-data sx-contact-card-email pb20">
<a href="mailto:sivcova@emos.cz">janacek@emos.cz</a>
</div>
</div>
</div>
<div class="sx-form-group">
<label for="email">Váš E-mail</label>
<input id="email" type="email" value="@">
</div>
<div class="sx-form-group">
<label for="question">Váš dotaz</label>
<textarea id="question" rows="3"></textarea>
</div>
<div class="sx-form-group">
<input class="sx-btn sx-btn-huge sx-btn-primary sx-effect w100p" type="submit" value="Odeslat">
</div>
</div>
<a class="j-mfp-modal-dismiss sx-popup-close" href="#"><i class="fa fa-close"></i></a>
</div>
<script src="../js/libs.js"></script>
<script src="../js/scripts.js"></script>
<a class="sg-back-link" href="00-index.html"><i class="fa fa-home"></i></a>
</body>
</html> | kblh/LessStarter-2017-01 | assets/src/styleguide/popups.html | HTML | mit | 3,201 |
<!DOCTYPE html>
<html lang="en" ng-cloak>
<head>
<meta charset="UTF-8">
<title>linkit</title>
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="lib/github/angular/bower-angular@1.4.8/angular-csp.css">
</head>
<body layout="column">
<md-toolbar>
<div class="md-toolbar-tools" layout="row">
<md-button ui-sref="home" aria-label="go to Homepage">
<md-icon md-svg-src="src/logo.svg" class="logo" alt="linkit logo"></md-icon>
Linkit
</md-button>
<span flex></span>
<linkit-account></linkit-account>
</div>
</md-toolbar>
<ui-view role="main" layout="column"></ui-view>
<script src="dist/app.js"></script>
</body>
</html>
| munxar/reddit | front/index2.html | HTML | mit | 729 |
<!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>
Assante Capital Management -
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=1492240585294&V_SEARCH.docsCount=3&V_DOCUMENT.docRank=4042&V_SEARCH.docsStart=4041&V_SEARCH.command=navigate&V_SEARCH.resultsJSP=/prfl.do&lang=fra&redirectUrl=/app/scr/imbs/ccc/rgstrtn/updt.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=4040&V_DOCUMENT.docRank=4041&V_SEARCH.docsCount=3&lang=eng&prtl=1&sbPrtl=&profile=cmpltPrfl&V_TOKEN=1492240609054&V_SEARCH.command=navigate&V_SEARCH.resultsJSP=%2fprfl.do&estblmntNo=234567136143&profileId=&key.newSearchLabel=">Previous Company</a></li>
<li>| <a href="nvgt.do?V_SEARCH.docsStart=4042&V_DOCUMENT.docRank=4043&V_SEARCH.docsCount=3&lang=eng&prtl=1&sbPrtl=&profile=cmpltPrfl&V_TOKEN=1492240609054&V_SEARCH.command=navigate&V_SEARCH.resultsJSP=%2fprfl.do&estblmntNo=123456255190&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>
Assante Capital Management
</h2>
<div class="row">
<div class="col-md-5">
<h2 class="h5 mrgn-bttm-0">Legal/Operating Name:</h2>
<p>Assante Capital Management</p>
<div class="mrgn-tp-md"></div>
<p class="mrgn-bttm-0" ><a href="http://www.assante.com"
target="_blank" title="Website URL">http://www.assante.com</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">
371 Dufferin Ave.<br/>
LONDON,
Ontario<br/>
N6B 1Z5
<br/>
</address>
<h2 class="h5 mrgn-bttm-0">Location Address:</h2>
<address class="mrgn-bttm-md">
371 Dufferin Ave.<br/>
LONDON,
Ontario<br/>
N6B 1Z5
<br/>
</address>
<p class="mrgn-bttm-0"><abbr title="Telephone">Tel.</abbr>:
(519) 434-1993
</p>
<p class="mrgn-bttm-lg"><abbr title="Facsimile">Fax</abbr>:
(519) 438-5901</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> Financial Planning Consultant<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>
Norman
Sproule
</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-->
Manager
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Telephone:
</strong>
</div>
<div class="col-md-7">
(519) 434-1993
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Facsimile:
</strong>
</div>
<div class="col-md-7">
(519) 438-5901
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
nsproule@assante.com
</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">
541611 - Administrative Management and General Management Consulting Services
</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>
Number of Employees:
</strong>
</div>
<div class="col-md-7">
4
</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">
Financial Planning Consultant <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>
Norman
Sproule
</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-->
Manager
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Telephone:
</strong>
</div>
<div class="col-md-7">
(519) 434-1993
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Facsimile:
</strong>
</div>
<div class="col-md-7">
(519) 438-5901
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
nsproule@assante.com
</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">
541611 - Administrative Management and General Management Consulting Services
</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>
Number of Employees:
</strong>
</div>
<div class="col-md-7">
4
</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">
Financial Planning Consultant <br>
</div>
</div>
</section>
</details>
</div>
</div>
<div class="row">
<div class="col-md-12 text-right">
Last Update Date 2017-03-20
</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/234567006852.html | HTML | mit | 33,499 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Peeker Connect Class</title>
<style type='text/css' media='all'>@import url('./userguide.css');</style>
<link rel='stylesheet' type='text/css' media='all' href='../userguide.css' />
<meta http-equiv='expires' content='-1' />
<meta http-equiv= 'pragma' content='no-cache' />
<meta name='robots' content='all' />
</head>
<body>
<!-- START NAVIGATION -->
<div id="nav"><div id="nav_inner"></div></div>
<div id="nav2"><a name="top"> </a></div>
<div id="masthead">
<table cellpadding="0" cellspacing="0" border="0" style="width:100%">
<tr>
<td><h1>Peeker Connect</h1></td>
<td id="breadcrumb_right"></td>
</tr>
</table>
</div>
<!-- END NAVIGATION -->
<!-- START BREADCRUMB -->
<table cellpadding="0" cellspacing="0" border="0" style="width:100%">
<tr>
<td id="breadcrumb">
<a href="https://github.com/sophistry/peeker">Project Home</a> ›
<a href="peeker_toc.html">User Guide Home</a> ›
Peeker Connect Class
</td>
</tr>
</table>
<!-- END BREADCRUMB -->
<br clear="all" />
<!-- START CONTENT -->
<div id="content">
<h1>Peeker Connect Class</h1>
<p>This class connects to IMAP or POP servers and tells you if there are messages waiting.</p>
<p>Features:</p>
<ul>
<li>Connect to IMAP and POP servers.</li>
<li>Find out if connection was established.</li>
<li>Find out if messages are waiting.</li>
<li>Close connection.</li>
</ul>
<p class="important"><strong>Note:</strong> This class can be used alone as a lightweight way to check if an email account has messages waiting, but for most email retrieval tasks, it is designed to work with the main peeker class; it is an ancestor class. This class only <kbd>connects</kbd> to the IMAP or POP server and <kbd>detects</kbd> if there are any messages waiting. You need to use the main Peeker class to actually count and get the messages.</p>
<h2>Connecting to IMAP or POP server</h2>
<p>Enter your mailserver connection data and run a few lines of code.</p>
<p>There are many different types of mail servers. Each one has its own requirements.</p>
<h3>Example POP connection</h3>
<p>Connect to a password-protected POP server using the Peeker Connect class:</p>
<code>
$config['login']='your_username';<br />
$config['pass']='your_password';<br />
$config['host']='mail.example.com';<br />
$config['port']='110';<br />
$config['service_flags'] = '/pop3/notls';<br />
<br />
// you can pass config as second parameter or use initialize()<br />
// $this->load->library('peeker_connect', $config);<br />
<br />
$this->load->library('peeker_connect');<br />
$this->peeker_connect->initialize($config);<br />
if ($this->peeker_connect->message_waiting())<br />
{<br />
echo "You've got mail!";<br />
}<br />
<br />
$this->peeker_connect->close();<br />
<br />
// now tell us the story of the connection<br />
print_r($this->peeker_connect->trace());
</code>
<h2>Config items</h2>
<p>IMAP and POP server data. Star* indicates config item is required to be set to something other than default.</p>
<table cellpadding="0" cellspacing="1" border="0" style="width:100%" class="tableborder">
<tr>
<th>Config</th>
<th>Default Value</th>
<th>Options</th>
<th>Description</th>
</tr>
<tr>
<td class="td"><strong>login</strong></td>
<td class="td">NULL*</td>
<td class="td">any valid login string</td>
<td class="td">IMAP or POP server login name.</td>
</tr>
<tr>
<td class="td"><strong>pass</strong></td>
<td class="td">NULL*</td>
<td class="td">any valid password string</td>
<td class="td">IMAP or POP server password.</td>
</tr>
<tr>
<td class="td"><strong>host</strong></td>
<td class="td">NULL*</td>
<td class="td">the fully-qualified domain name for a mailserver</td>
<td class="td">e.g., mail.example.com</td>
</tr>
<tr>
<td class="td"><strong>port</strong></td>
<td class="td">NULL*</td>
<td class="td">the port number, typically 110, 143, 443, 993, etc...</td>
<td class="td">e.g., 110 (for POP3)</td>
</tr>
<tr>
<td class="td"><strong>service_flags</strong></td>
<td class="td">NULL*</td>
<td class="td">any valid service flag string (see <a href="http://php.net/imap-open">http://php.net/imap-open</a>)</td>
<td class="td">Change these to fit your server settings. For instance, some servers require SSL and Certificates and some don't.</td>
</tr>
<tr>
<td class="td"><strong>mailbox</strong></td>
<td class="td">NULL</td>
<td class="td">any valid mailbox name (used only for IMAP, not POP)</td>
<td class="td">POP servers don't use a mailbox name, use 'INBOX' for IMAP or another mailbox name in the IMAP account</td>
</tr>
</table>
<p>The config array can be sent on library load, by passing to the initialize() method (as shown on this page), or by using the Code Igniter config file convention (see the CI manual for details).</p>
<h2>Function Reference</h2>
<h3>$this->peeker_connect->initialize($config_array)</h3>
<p>After loading the library, call initialize() to establish a connection.</p>
<code>$this->peeker_connect->initialize(<var>$config_array</var>);</code>
<h3>$this->peeker_connect->is_connected()</h3>
<p>After initialize is called, you can check the connection. Returns TRUE or FALSE.</p>
<code>$this->peeker_connect->is_connected();</code>
<h3>$this->peeker_connect->message_waiting()</h3>
<p>Check if there is at least one message waiting. Returns TRUE or FALSE.</p> <p class="important">NOTE: Only returns the messages waiting on the initial connection with the server.</p>
<p>This is useful for a "You've got mail!" indicator. </p>
<code>$this->peeker_connect->message_waiting();</code>
<p class="important">Note: The connect class does not count messages or get messages (you need the main peeker class for that).</p>
<h3>$this->peeker_connect->close()</h3>
<p>Close the IMAP or POP connection.</p>
<code>$this->peeker_connect->close();</code>
</div>
<!-- END CONTENT -->
<div id="footer">
<p>
<a href="#top">Top of Page</a> ·
<a href="peeker_toc.html">User Guide Home</a>
</p>
<p><a href="https://github.com/sophistry/peeker">Peeker</a> · Copyright © 2009-20xx · </p>
</div>
</body>
</html> | sophistry/peeker | docs/peeker_connect.html | HTML | mit | 6,448 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.