code stringlengths 2 1.05M | repo_name stringlengths 5 101 | path stringlengths 4 991 | language stringclasses 3 values | license stringclasses 5 values | size int64 2 1.05M |
|---|---|---|---|---|---|
<html><body>
<h4>Windows 10 x64 (19041.329)</h4><br>
<h2>_KAPC</h2>
<font face="arial"> +0x000 Type : UChar<br>
+0x001 SpareByte0 : UChar<br>
+0x002 Size : UChar<br>
+0x003 SpareByte1 : UChar<br>
+0x004 SpareLong0 : Uint4B<br>
+0x008 Thread : Ptr64 <a href="./_KTHREAD.html">_KTHREAD</a><br>
+0x010 ApcListEntry : <a href="./_LIST_ENTRY.html">_LIST_ENTRY</a><br>
+0x020 KernelRoutine : Ptr64 void <br>
+0x028 RundownRoutine : Ptr64 void <br>
+0x030 NormalRoutine : Ptr64 void <br>
+0x020 Reserved : [3] Ptr64 Void<br>
+0x038 NormalContext : Ptr64 Void<br>
+0x040 SystemArgument1 : Ptr64 Void<br>
+0x048 SystemArgument2 : Ptr64 Void<br>
+0x050 ApcStateIndex : Char<br>
+0x051 ApcMode : Char<br>
+0x052 Inserted : UChar<br>
</font></body></html> | epikcraw/ggool | public/Windows 10 x64 (19041.329)/_KAPC.html | HTML | mit | 922 |
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<!-- Jose Saldana JOSJB29311 Class # 11901 -->
<head>
<title> Pacific Trails Resort </title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
</head>
<body>
<h1> Pacific Trails Resort </h1>
<!-- Nav Menu -->
<div>
<p> <!-- updated page to include the paragraph tags -->
<b>
<a href="index.html"> Home </a> <!--Updated with   tags -->
<a href="yurts.html"> Yurts </a>
<a href="activities.html"> Activities</a>
<a href="reservations.html"> Reservations</a>
</b>
</p>
</div>
<!-- Content -->
<h2> The Yurts at Pacific Trails Resort </h2>
<b> What is a yurt? </b>
<p> Our luxury yurts are permanent structures four feet off the ground. Each yurt has canvas walls, a wooden floor, and a roof dome that can be opened. </p>
<b> How are the yurts furnished? </b>
<p> Each yurt is furnished with a queen-size bed with down quilt and gas-fi red stove. The luxury camping experience also includes electricity and a sink with hot and cold running water. Shower and restroom facilities are located in the lodge. </p>
<b> What should I bring? </b>
<p> Bring a sense of adventure and some time to relax! Most guests also pack comfortable walking shoes and plan to dress for changing weather with layers of clothing. </p>
<!-- footer start -->
<br />
<div>
<p><small> Copyright © 2013 Pacific Trails Resort </small> </p>
<i> <a href="mailto:jose@saldana.com"> jose@saldana.com </a> </i>
</div>
<p>
<a href="http://validator.w3.org/check?uri=referer"><img
src="http://www.w3.org/Icons/valid-xhtml10" alt="Valid XHTML 1.0 Transitional" height="31" width="88" /></a>
</p>
<!-- footer end -->
</body>
</html>
<!-- The old simple HTML wasn't too advanced and the elements had to be nearly perfect, with XHTML the power of the device does not have to be used to it's full potential, attempting to figure out how to display the web page(s). Thus making XHTML diverse in allowing any device to display the proper contents of a page barring that the page is a well-formed document. (pg 25-26) --> | rawmx/Projects | HTML_CSS/Lesson 1/yurts.html | HTML | mit | 2,306 |
<div class="modal-header">
<h3 ng-if="newMode" class="modal-title">New New User</h3>
<h3 ng-if="!newMode && editMode" class="modal-title">Edit User: {{saved.nameFirst}} {{saved.nameLast}}</h3>
<h3 ng-if="!newMode && !editMode" class="modal-title">User: {{saved.nameFirst}} {{saved.nameLast}}</h3>
</div>
<div class="modal-body">
<div class="alert alert-danger well-sm" role="alert" ng-if="editing.disabled == 'true'">
<strong>Disabled User!</strong> This user is disabled and cannot log in.
</div>
<div data-rc-bootstrap-alerts="alertProxy"></div>
<div ng-if="!editMode && !manageGroupsMode">
<div class="row">
<div class="col-xs-6">
<div class="form-group">
<label for="nameFirst">First Name</label>
<p>{{saved.nameFirst}}</p>
</div>
</div>
<div class="col-xs-6">
<div class="form-group">
<label for="nameLast">Last Name</label>
<p>{{saved.nameLast}}</p>
</div>
</div>
</div>
<div class="row">
<div class="col-xs-6">
<div class="form-group">
<label for="email">Email</label>
<p>{{saved.email}}</p>
</div>
</div>
<div class="col-xs-6">
<div class="form-group">
<label for="team">Team</label>
<p ng-show="saved.teamId">#{{saved.teamId}} - {{saved.teamName}}</p>
<p ng-hide="saved.teamId">This user is not a member of a team.</p>
</div>
</div>
</div>
<div class="row">
<div class="col-xs-6">
<div class="form-group">
<label for="phone">Phone Number</label>
<p>{{saved.phone}}</p>
</div>
</div>
<div class="col-xs-6">
<div class="form-group">
<label for="verified">Email Verified</label>
<p ng-if="!saved.verified"><span class="label label-danger">Not Verified</span></p>
<p ng-if="saved.verified"><span class="label label-success">Verified</span></p>
</div>
</div>
</div>
<div class="meta" ng-if="!newMode && (saved.created || saved.lastUpdated)">
<hr/>
<p ng-show="saved.created" class="text-muted"><strong>Created:</strong> {{saved.created | formatMySQLDate}} <span ng-show="saved.createdBy">by {{saved.createdBy}}</span></p>
<p ng-show="saved.lastUpdated" class="text-muted"><strong>Updated:</strong> {{saved.lastUpdated | formatMySQLDate}} <span ng-show="saved.updatedBy">by {{saved.updatedBy}}</span></p>
</div>
</div>
<form ng-if="editMode" name="form.modalForm" role="form" novalidate>
<div class="row">
<div class="col-xs-6">
<div class="form-group">
<label for="nameFirst">First Name</label>
<input class="form-control" name="nameFirst" ng-model="editing.nameFirst" type="text" maxlength="100" required />
</div>
</div>
<div class="col-xs-6">
<div class="form-group">
<label for="nameLast">Last Name</label>
<input class="form-control" name="nameLast" ng-model="editing.nameLast" type="text" maxlength="100" required />
</div>
</div>
</div>
<div class="row">
<div class="col-xs-6">
<div class="form-group">
<label for="email">Email</label>
<input class="form-control" name="email" ng-model="editing.email" type="email" maxlength="255" required />
</div>
</div>
<div class="col-xs-6">
<div class="form-group">
<label for="email">Phone</label>
<input class="form-control" name="phone" ng-model="editing.phone" type="text" maxlength="20" />
</div>
</div>
</div>
<div class="row">
<div class="col-xs-6">
<div class="form-group">
<label for="verified">Email Verified</label>
<p ng-if="!editing.verified"><span class="label label-danger">Not Verified</span></p>
<p ng-if="editing.verified"><span class="label label-success">Verified</span></p>
</div>
</div>
<div class="col-xs-6">
<div class="form-group">
<label for="disabled">Restrict User Access</label> {{editing.disabled}}<br/>
<label class="radio-inline"><input type="radio" name="disabled" ng-click="buttonChangeDisabled()" ng-model="editing.disabled" value="false"> Enable User</label>
<label class="radio-inline"><input type="radio" name="disabled" ng-click="buttonChangeDisabled()" ng-model="editing.disabled" value="true"> Disable User</label>
</div>
</div>
</div>
<div class="meta" ng-if="saved.disabled === 'true'">
<hr/>
<p class="text-danger">Current Saved User State: <strong>Disabled</strong>.</p>
</div>
</form>
<div ng-if="manageGroupsMode">
<table class="table table-bordered table-striped">
<thead>
<tr><th>ID</th><th>Label</th><th></th></tr>
</thead>
<tbody>
<tr ng-repeat="group in groupList">
<td>{{group.id}}</td>
<td>{{group.label}}</td>
<td>
<button ng-if="isUserAssignedToGroup(group.id)" type="button" ng-click="buttonRemoveUserFromGroup(group.id)" class="btn btn-warning btn-xs pull-right">Remove</button>
<button ng-if="!isUserAssignedToGroup(group.id)" type="button" ng-click="buttonAddUserToGroup(group.id)" class="btn btn-default btn-xs pull-right">Add</button>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div ng-if="!editMode" class="modal-footer">
<button ng-if="!manageGroupsMode" class="btn btn-default pull-left" ng-click="buttonEdit()">Edit</button>
<button ng-if="!manageGroupsMode" class="btn btn-default pull-left" ng-click="buttonManageGroups()">Manage Groups</button>
<button class="btn btn-info" ng-click="buttonCancel()">Done</button>
</div>
<div ng-if="editMode" class="modal-footer">
<button class="btn btn-warning pull-left" ng-if="!newMode" ng-click="buttonDelete()">Delete</button>
<button class="btn btn-info pull-left" ng-click="buttonCancel()">Cancel</button>
<button class="btn btn-primary" ng-if="newMode" ng-click="buttonNew()">Add</button>
<button class="btn btn-primary" ng-if="!newMode" ng-click="buttonSave()">Save</button>
</div> | rachellcarbone/angular-seed | www/app/modals/admin/editUser/editUser.html | HTML | mit | 7,182 |
<ion-header>
<ion-navbar>
<ion-title>{{ "TRAIN" | translate }}</ion-title>
</ion-navbar>
</ion-header>
<ion-header no-border>
<ion-toolbar>
<ion-grid>
<ion-row>
<ion-col center>
<training-stats #trainingStats></training-stats>
</ion-col>
</ion-row>
</ion-grid>
</ion-toolbar>
</ion-header>
<ion-content padding [style.backgroundColor]="session.settings.background">
<ion-card *ngIf="currentCard" [ngClass]='{
"slidingOutRight": (animationClass=="slidingOutRight"),
"slidingOutLeft": (animationClass=="slidingOutLeft"),
"flippingOut": (animationClass=="flippingOut"),
"flippingIn": (animationClass=="flippingIn")
}' [style.backgroundColor]="flipped ? session.settings.card.back.backgroundColor : session.settings.card.front.backgroundColor"
[style.color]="flipped ? session.settings.card.back.color : session.settings.card.front.color" (tap)="flipClick($event)"
(swipe)="cardSwipe($event)">
<ion-card-content>
<div>
{{currentCard.deck}}
</div>
<hr />
<h2 class="content" *ngIf="!flipped">
{{currentCard.front}}
</h2>
<h2 class="content" *ngIf="flipped">
{{currentCard.back}}
</h2>
</ion-card-content>
</ion-card>
</ion-content>
<ion-footer no-border>
<ion-toolbar>
<ion-grid *ngIf="currentCard">
<ion-row>
<ion-col class="btnTraining">
<button ion-button (tap)="dontKnowClick($event)" icon-left full default outline color="danger">
<ion-icon name="thumbs-down"></ion-icon>
{{ "DONTKNOW" | translate }}
</button>
</ion-col>
<ion-col class="btnTraining">
<button class="btnTraining" ion-button (tap)="flipClick($event)" icon-left full default outline color="dark">
<ion-icon name="sync"></ion-icon>
{{ "FLIP" | translate }}
</button>
</ion-col>
<ion-col class="btnTraining">
<button class="btnTraining" ion-button (tap)="knowClick($event)" icon-right full default outline color="secondary">
{{ "KNOW" | translate }}
<ion-icon name="thumbs-up"></ion-icon>
</button>
</ion-col>
</ion-row>
</ion-grid>
</ion-toolbar>
</ion-footer> | MarianAldenhoevel/Lernkartei | src/pages/train/train.html | HTML | mit | 2,751 |
<!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_20) on Thu Oct 19 14:11:26 CST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>MessageDirect (android API)</title>
<meta name="date" content="2017-10-19">
<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="MessageDirect (android API)";
}
}
catch(err) {
}
//-->
var methods = {"i0":9,"i1":9};
var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],8:["t4","Concrete 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="package-tree.html">Tree</a></li>
<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../../cn/jpush/im/android/api/enums/ConversationType.html" title="enum in cn.jpush.im.android.api.enums"><span class="typeNameLink">Prev Class</span></a></li>
<li><a href="../../../../../../cn/jpush/im/android/api/enums/MessageStatus.html" title="enum in cn.jpush.im.android.api.enums"><span class="typeNameLink">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?cn/jpush/im/android/api/enums/MessageDirect.html" target="_top">Frames</a></li>
<li><a href="MessageDirect.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li><a href="#enum.constant.summary">Enum Constants</a> | </li>
<li>Field | </li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li><a href="#enum.constant.detail">Enum Constants</a> | </li>
<li>Field | </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">cn.jpush.im.android.api.enums</div>
<h2 title="Enum MessageDirect" class="title">Enum MessageDirect</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li>java.lang.Enum<<a href="../../../../../../cn/jpush/im/android/api/enums/MessageDirect.html" title="enum in cn.jpush.im.android.api.enums">MessageDirect</a>></li>
<li>
<ul class="inheritance">
<li>cn.jpush.im.android.api.enums.MessageDirect</li>
</ul>
</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Implemented Interfaces:</dt>
<dd>java.io.Serializable, java.lang.Comparable<<a href="../../../../../../cn/jpush/im/android/api/enums/MessageDirect.html" title="enum in cn.jpush.im.android.api.enums">MessageDirect</a>></dd>
</dl>
<hr>
<br>
<pre>public enum <span class="typeNameLabel">MessageDirect</span>
extends java.lang.Enum<<a href="../../../../../../cn/jpush/im/android/api/enums/MessageDirect.html" title="enum in cn.jpush.im.android.api.enums">MessageDirect</a>></pre>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- =========== ENUM CONSTANT SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="enum.constant.summary">
<!-- -->
</a>
<h3>Enum Constant Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Enum Constant Summary table, listing enum constants, and an explanation">
<caption><span>Enum Constants</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">Enum Constant and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../../../cn/jpush/im/android/api/enums/MessageDirect.html#receive">receive</a></span></code> </td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../../../cn/jpush/im/android/api/enums/MessageDirect.html#send">send</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="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd"> </span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete 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>static <a href="../../../../../../cn/jpush/im/android/api/enums/MessageDirect.html" title="enum in cn.jpush.im.android.api.enums">MessageDirect</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../cn/jpush/im/android/api/enums/MessageDirect.html#valueOf-java.lang.String-">valueOf</a></span>(java.lang.String name)</code>
<div class="block">Returns the enum constant of this type with the specified name.</div>
</td>
</tr>
<tr id="i1" class="rowColor">
<td class="colFirst"><code>static <a href="../../../../../../cn/jpush/im/android/api/enums/MessageDirect.html" title="enum in cn.jpush.im.android.api.enums">MessageDirect</a>[]</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../cn/jpush/im/android/api/enums/MessageDirect.html#values--">values</a></span>()</code>
<div class="block">Returns an array containing the constants of this enum type, in
the order they are declared.</div>
</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Enum">
<!-- -->
</a>
<h3>Methods inherited from class java.lang.Enum</h3>
<code>compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf</code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class java.lang.Object</h3>
<code>getClass, notify, notifyAll, wait, wait, wait</code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ============ ENUM CONSTANT DETAIL =========== -->
<ul class="blockList">
<li class="blockList"><a name="enum.constant.detail">
<!-- -->
</a>
<h3>Enum Constant Detail</h3>
<a name="send">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>send</h4>
<pre>public static final <a href="../../../../../../cn/jpush/im/android/api/enums/MessageDirect.html" title="enum in cn.jpush.im.android.api.enums">MessageDirect</a> send</pre>
</li>
</ul>
<a name="receive">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>receive</h4>
<pre>public static final <a href="../../../../../../cn/jpush/im/android/api/enums/MessageDirect.html" title="enum in cn.jpush.im.android.api.enums">MessageDirect</a> receive</pre>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method.detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="values--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>values</h4>
<pre>public static <a href="../../../../../../cn/jpush/im/android/api/enums/MessageDirect.html" title="enum in cn.jpush.im.android.api.enums">MessageDirect</a>[] values()</pre>
<div class="block">Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
<pre>
for (MessageDirect c : MessageDirect.values())
System.out.println(c);
</pre></div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>an array containing the constants of this enum type, in the order they are declared</dd>
</dl>
</li>
</ul>
<a name="valueOf-java.lang.String-">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>valueOf</h4>
<pre>public static <a href="../../../../../../cn/jpush/im/android/api/enums/MessageDirect.html" title="enum in cn.jpush.im.android.api.enums">MessageDirect</a> valueOf(java.lang.String name)</pre>
<div class="block">Returns the enum constant of this type with the specified name.
The string must match <i>exactly</i> an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>name</code> - the name of the enum constant to be returned.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the enum constant with the specified name</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code>java.lang.IllegalArgumentException</code> - if this enum type has no constant with the specified name</dd>
<dd><code>java.lang.NullPointerException</code> - if the argument is null</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="package-tree.html">Tree</a></li>
<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../../cn/jpush/im/android/api/enums/ConversationType.html" title="enum in cn.jpush.im.android.api.enums"><span class="typeNameLink">Prev Class</span></a></li>
<li><a href="../../../../../../cn/jpush/im/android/api/enums/MessageStatus.html" title="enum in cn.jpush.im.android.api.enums"><span class="typeNameLink">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?cn/jpush/im/android/api/enums/MessageDirect.html" target="_top">Frames</a></li>
<li><a href="MessageDirect.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li><a href="#enum.constant.summary">Enum Constants</a> | </li>
<li>Field | </li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li><a href="#enum.constant.detail">Enum Constants</a> | </li>
<li>Field | </li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>
| Nocturnana/jpush-docs | zh/jmessage/client/im_android_api_docs/cn/jpush/im/android/api/enums/MessageDirect.html | HTML | mit | 13,242 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_45) on Fri May 22 03:50:33 CEST 2015 -->
<title>MapGenerator.Generators</title>
<meta name="date" content="2015-05-22">
<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="MapGenerator.Generators";
}
}
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 class="navBarCell1Rev">Package</li>
<li>Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../index-files/index-1.html">Index</a></li>
<li><a href="../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev Package</li>
<li><a href="../../MapGenerator/Graph/package-summary.html">Next Package</a></li>
</ul>
<ul class="navList">
<li><a href="../../index.html?MapGenerator/Generators/package-summary.html" target="_top">Frames</a></li>
<li><a href="package-summary.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 title="Package" class="title">Package MapGenerator.Generators</h1>
<div class="docSummary">
<div class="block">Contains classes for generation of doors and rooms</div>
</div>
<p>See: <a href="#package.description">Description</a></p>
</div>
<div class="contentContainer">
<ul class="blockList">
<li class="blockList">
<table class="typeSummary" border="0" cellpadding="3" cellspacing="0" summary="Class Summary table, listing classes, and an explanation">
<caption><span>Class Summary</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Class</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href="../../MapGenerator/Generators/DoorGenerator.html" title="class in MapGenerator.Generators">DoorGenerator</a></td>
<td class="colLast">
<div class="block">Generates doors to map.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../MapGenerator/Generators/RoomsGenerator.html" title="class in MapGenerator.Generators">RoomsGenerator</a></td>
<td class="colLast">
<div class="block">Generates randomly certain number of different rooms.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="../../MapGenerator/Generators/RoomType.html" title="class in MapGenerator.Generators">RoomType</a></td>
<td class="colLast">
<div class="block">Wrapper for different room types</div>
</td>
</tr>
</tbody>
</table>
</li>
</ul>
<a name="package.description">
<!-- -->
</a>
<h2 title="Package MapGenerator.Generators Description">Package MapGenerator.Generators Description</h2>
<div class="block">Contains classes for generation of doors and rooms</div>
<dl>
<dt><span class="simpleTagLabel">Author:</span></dt>
<dd>Lukas Jelinek</dd>
</dl>
</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 class="navBarCell1Rev">Package</li>
<li>Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../index-files/index-1.html">Index</a></li>
<li><a href="../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev Package</li>
<li><a href="../../MapGenerator/Graph/package-summary.html">Next Package</a></li>
</ul>
<ul class="navList">
<li><a href="../../index.html?MapGenerator/Generators/package-summary.html" target="_top">Frames</a></li>
<li><a href="package-summary.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>
| Lukx19/Vrep-map-generator | docs/MapGenerator/Generators/package-summary.html | HTML | mit | 5,589 |
<div class="commune_descr limited">
<p>
Loisia est
un village
géographiquement positionné dans le département de Jura en Franche-Comté. Elle totalisait 178 habitants en 2008.</p>
<p>Si vous envisagez de emmenager à Loisia, vous pourrez aisément trouver une maison à vendre. </p>
<p>À proximité de Loisia sont localisées les villes de
<a href="{{VLROOT}}/immobilier/rosay_39466/">Rosay</a> située à 5 km, 132 habitants,
<a href="{{VLROOT}}/immobilier/gizia_39255/">Gizia</a> à 5 km, 221 habitants,
<a href="{{VLROOT}}/immobilier/pimorin_39420/">Pimorin</a> située à 3 km, 179 habitants,
<a href="{{VLROOT}}/immobilier/cressia_39180/">Cressia</a> localisée à 4 km, 270 habitants,
<a href="{{VLROOT}}/immobilier/graye-et-charnay_39261/">Graye-et-Charnay</a> localisée à 2 km, 132 habitants,
<a href="{{VLROOT}}/immobilier/cuiseaux_71157/">Cuiseaux</a> localisée à 5 km, 1 764 habitants,
entre autres. De plus, Loisia est située à seulement 29 km de <a href="{{VLROOT}}/immobilier/oyonnax_01283/">Oyonnax</a>.</p>
<p>Le nombre d'habitations, à Loisia, était réparti en 2011 en trois appartements et 109 maisons soit
un marché relativement équilibré.</p>
</div>
| donaldinou/frontend | src/Viteloge/CoreBundle/Resources/descriptions/39295.html | HTML | mit | 1,244 |
<div class="commune_descr limited">
<p>
Baudonvilliers est
un village
géographiquement positionné dans le département de Meuse en Lorraine. On dénombrait 456 habitants en 2008.</p>
<p>La commune offre quelques équipements, elle propose entre autres un centre d'équitation et un terrain de sport.</p>
<p>À proximité de Baudonvilliers sont positionnées géographiquement les villes de
<a href="{{VLROOT}}/immobilier/chancenay_52104/">Chancenay</a> située à 3 km, 1 019 habitants,
<a href="{{VLROOT}}/immobilier/sommelonne_55494/">Sommelonne</a> localisée à 2 km, 501 habitants,
<a href="{{VLROOT}}/immobilier/brillon-en-barrois_55079/">Brillon-en-Barrois</a> localisée à 6 km, 595 habitants,
<a href="{{VLROOT}}/immobilier/ancerville_55010/">Ancerville</a> à 5 km, 2 819 habitants,
<a href="{{VLROOT}}/immobilier/lisle-en-rigault_55296/">Lisle-en-Rigault</a> localisée à 4 km, 537 habitants,
<a href="{{VLROOT}}/immobilier/trois-fontaines-labbaye_51583/">Trois-Fontaines-l'Abbaye</a> à 5 km, 232 habitants,
entre autres. De plus, Baudonvilliers est située à seulement sept km de <a href="{{VLROOT}}/immobilier/saint-dizier_52448/">Saint-Dizier</a>.</p>
<p>Le nombre d'habitations, à Baudonvilliers, était réparti en 2011 en un appartements et 175 maisons soit
un marché relativement équilibré.</p>
<p>Si vous envisagez de venir habiter à Baudonvilliers, vous pourrez aisément trouver une maison à vendre. </p>
</div>
| donaldinou/frontend | src/Viteloge/CoreBundle/Resources/descriptions/55031.html | HTML | mit | 1,509 |
<div class="commune_descr limited">
<p>
Varennes est
un village
localisé dans le département de Somme en Picardie. Elle comptait 183 habitants en 2008.</p>
<p>Si vous envisagez de emmenager à Varennes, vous pourrez aisément trouver une maison à vendre. </p>
<p>À coté de Varennes sont localisées les communes de
<a href="{{VLROOT}}/immobilier/lealvillers_80470/">Léalvillers</a> à 2 km, 178 habitants,
<a href="{{VLROOT}}/immobilier/henencourt_80429/">Hénencourt</a> à 5 km, 173 habitants,
<a href="{{VLROOT}}/immobilier/toutencourt_80766/">Toutencourt</a> à 5 km, 487 habitants,
<a href="{{VLROOT}}/immobilier/louvencourt_80493/">Louvencourt</a> à 5 km, 263 habitants,
<a href="{{VLROOT}}/immobilier/acheux-en-amienois_80003/">Acheux-en-Amiénois</a> localisée à 2 km, 533 habitants,
<a href="{{VLROOT}}/immobilier/bouzincourt_80129/">Bouzincourt</a> localisée à 5 km, 499 habitants,
entre autres. De plus, Varennes est située à seulement 24 km de <a href="{{VLROOT}}/immobilier/amiens_80021/">Amiens</a>.</p>
<p>Le parc de logements, à Varennes, se décomposait en 2011 en zero appartements et 91 maisons soit
un marché plutôt équilibré.</p>
</div>
| donaldinou/frontend | src/Viteloge/CoreBundle/Resources/descriptions/80776.html | HTML | mit | 1,229 |
<!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/prettify/images/photon/images/photon/js/plugins/favicon.ico" />
<link rel="apple-touch-icon" href="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/prettify/images/photon/images/photon/js/plugins/iosicon.png" />
<!-- DEVELOPMENT LESS -->
<!-- <link rel="stylesheet/less" href="css/photon.less" media="all" />
<link rel="stylesheet/less" href="css/photon-responsive.less" media="all" />
--> <!-- PRODUCTION CSS -->
<link rel="stylesheet" href="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/prettify/images/photon/images/photon/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/prettify/images/photon/images/photon/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/prettify/images/photon/images/photon/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/prettify/images/photon/images/photon/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/prettify/images/photon/images/photon/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/prettify/images/photon/images/photon/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/prettify/images/photon/images/photon/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/prettify/images/photon/images/photon/js/plugins/js/plugins/xbreadcrumbs.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/prettify/images/photon/images/photon/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/prettify/images/photon/images/photon/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/prettify/images/photon/images/photon/js/plugins/js/plugins/charCount.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/prettify/images/photon/images/photon/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/prettify/images/photon/images/photon/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/prettify/images/photon/images/photon/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/prettify/images/photon/images/photon/js/plugins/js/plugins/select2.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/prettify/images/photon/images/photon/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/prettify/images/photon/images/photon/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/prettify/images/photon/images/photon/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/prettify/images/photon/images/photon/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/prettify/images/photon/images/photon/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/prettify/images/photon/images/photon/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/prettify/images/photon/images/photon/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/prettify/images/photon/images/photon/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/prettify/images/photon/images/photon/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/prettify/images/photon/images/photon/js/plugins/js/plugins/farbtastic.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/prettify/images/photon/images/photon/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/prettify/images/photon/images/photon/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/prettify/images/photon/images/photon/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/prettify/images/photon/images/photon/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/prettify/images/photon/images/photon/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/prettify/images/photon/images/photon/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/prettify/images/photon/images/photon/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/prettify/images/photon/images/photon/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/prettify/images/photon/images/photon/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/prettify/images/photon/images/photon/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/prettify/images/photon/images/photon/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/prettify/images/photon/images/photon/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/prettify/images/photon/images/photon/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/prettify/images/photon/images/photon/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/prettify/images/photon/images/photon/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/prettify/images/photon/images/photon/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/prettify/images/photon/images/photon/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/prettify/images/photon/images/photon/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/prettify/images/photon/images/photon/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/prettify/images/photon/images/photon/js/plugins/js/plugins/bootstrapSwitch.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/prettify/images/photon/images/photon/js/plugins/js/plugins/mfupload.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/prettify/images/photon/images/photon/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/prettify/images/photon/images/photon/js/plugins/images/photon/login-logo@2x.png" alt="Photon UI"/>
</div>
<h2 class="login-title">Welcome to Photon UI!</h2>
<div class="login-member">Not a Member? <a href="jquery.uniform.min.js.html#">Sign Up »</a>
<a href="jquery.uniform.min.js.html#" class="btn btn-facebook"><i class="icon-fb"></i>Login with Facebook<i class="icon-fb-arrow"></i></a>
</div>
<div class="login-or">Or</div>
<div class="login-input-area">
<form method="POST" action="dashboard.php">
<span class="help-block">Login With Your Photon Account</span>
<input type="text" name="email" placeholder="Email">
<input type="password" name="password" placeholder="Password">
<button type="submit" class="btn btn-large btn-success btn-login">Login</button>
</form>
<a href="jquery.uniform.min.js.html#" class="forgot-pass">Forgot Your Password?</a>
</div>
</div>
</div>
</div>
</div>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-1936460-27']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</body>
</html>
| user-tony/photon-rails | lib/assets/css/css_compiled/@{photonImagePath}plugins/elrte/js/plugins/prettify/images/photon/images/photon/js/plugins/jquery.uniform.min.js.html | HTML | mit | 17,059 |
<table width="90%" border="0"><tr><td><script>function openfile(url) {fullwin = window.open(url, "fulltext", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes");}</script><div class="flayoutclass"><div class="flayoutclass_first"><table class="tableoutfmt2"><tr><th class="std1"><b>條目 </b></th><td class="std2">立錐之地</td></tr>
<tr><th class="std1"><b>注音 </b></th><td class="std2">ㄌ|<sup class="subfont">ˋ</sup> ㄓㄨㄟ ㄓ ㄉ|<sup class="subfont">ˋ</sup></td></tr>
<tr><th class="std1"><b>漢語拼音 </b></th><td class="std2"><font class="english_word">lì zhuī zhī dì</font></td></tr>
<tr><th class="std1"><b>釋義 </b></th><td class="std2">插錐子的地方。比喻極微小的地方。見<img src=/cydic/dicword/fa40.gif border=0 alt=* class=fontimg valign=center>置錐之地<img src=/cydic/dicword/fa41.gif border=0 alt=* class=fontimg valign=center>條。史記˙卷五十五˙留侯世家:<img src=/cydic/dicword/fa40.gif border=0 alt=* class=fontimg valign=center>今秦失德棄義,侵伐諸侯社稷,滅六國之後,使無立錐之地。<img src=/cydic/dicword/fa41.gif border=0 alt=* class=fontimg valign=center>漢書˙卷二十四˙食貨志上:<img src=/cydic/dicword/fa40.gif border=0 alt=* class=fontimg valign=center>富者田連仟陌,貧者亡立錐之地。<img src=/cydic/dicword/fa41.gif border=0 alt=* class=fontimg valign=center></td></tr>
<tr><th class="std1"><b><font class="fltypefont">附錄</font> </b></th><td class="std2">修訂本參考資料</td></tr>
</td></tr></table></div> <!-- flayoutclass_first --><div class="flayoutclass_second"></div> <!-- flayoutclass_second --></div> <!-- flayoutclass --></td></tr></table>
| BuzzAcademy/idioms-moe-unformatted-data | all-data/5000-5999/5893-22.html | HTML | mit | 1,767 |
<HTML><HEAD>
<TITLE>Review for Toy Story 2 (1999)</TITLE>
<LINK REL="STYLESHEET" TYPE="text/css" HREF="/ramr.css">
</HEAD>
<BODY BGCOLOR="#FFFFFF" TEXT="#000000">
<H1 ALIGN="CENTER" CLASS="title"><A HREF="/Title?0120363">Toy Story 2 (1999)</A></H1><H3 ALIGN=CENTER>reviewed by<BR><A HREF="/ReviewsBy?Berge+Garabedian">Berge Garabedian</A></H3><HR WIDTH="40%" SIZE="4">
<PRE>TOY STORY 2
RATING: 8 /10 --> Great Movie</PRE>
<P>For more reviews and movie screensavers, visit <A HREF="http://www.joblo.com/">http://www.joblo.com/</A></P>
<P>Listen, I am going to admit right up front that I am not a big fan of
animation films, and wasn't a particularly over-enthused admirer of the
first part of this Pixar duo of film, but gosh darned if I wasn't bowled
over like the rest of those over and under grown kids in the theatre tonite!</P>
<P>PLOT:
Woody the cowboy is stolen from Andy his owner, and it is up to Buzz
Lightyear and the rest of those nutty toy friends of his to save his wooden
ass. During his abduction, Woody meets a few of his older friends from his
days as a TV star and is suddenly faced with the tough decision of remaining
with them and preserving his legacy forever, or returning to his rightful
owner, who is bound to get rid of him any year now.</P>
<P>CRITIQUE:
A rollickin' great lil' fun adventure for newborns, children, kids,
teenagers, young adults, parents, grandpas and grandmas alike. It doesn't
take much for one to enjoy themselves with this movie. It's got fantastic
effects, a fun story, likeable characters, an upbeat soundtrack, a decent
runtime and toys, toys and more toys. And what an adventure they get into
here. Indiana Jones could take lessons from some of these cartoon munchkins.
>From its opening scene, which is one of the cooler action animated sequences
that I have ever seen on film, to the last twenty minutes of the movie which
just rattle from one humdingin' close call after another. This film has got
everything that its original had and more, including one really cute new toy
named Jessie. Va-va-voom! What an adorably cute doll! They even toss in a
decent "touching" scene for effect. Pretty cool. Now folks, please don't get
me wrong here.</P>
<P>This film is not a revolution of the medium of film. I mean, honestly
speaking, the animation isn't a thousand times better than the original or
anything, but does remain quite spectacular on the big screen. But if you
happen to be reading this review a few years after the film's original
release, you may just scoff at my enthusiasm since the leaps and bounds
which continue to be made in this burgeoning industry seem to leave much of
their own ancestry flying in the wind. Buuuuut, at this point in time, I can
honestly say that this film was a positively enjoyable treat. In fact, the
first film seems more like a "set-up" for this one, a sketchpad used to
clarify the actual creation of this complete animated "movie". In fact, most
of this film takes place on the "outside" of the room in which the human
being characters have become eerily lifelike. I can't wait until they start
creating computer-generated pictures starring human characters in
extraordinary situations...wow, things are really gonna be nuts! All in all,
kudos to everyone associated with this exciting new-age cartoon adventure
sure to satisfy all lighthearted people looking for a good time.</P>
<P>Of course, the biggest handshake should be reserved for the genius who
actually thought to come up with an idea for a cartoon film based on the
actual merchandise of the film (i.e. the toys)!! Wow, now what kind of
merchandising exposure do you think we could get with this one, boss?!?
Yikes, laughing all the way to the toy bank, eh fellas?</P>
<P>Little Known Facts about this film and its stars:
Various references to other films pepper this flick with at least three
blatant homages including the one right off the top playing the theme to
2001: A SPACE ODYSSEY. There is also a pretty cool photocopied shot of the
dinosaur running after a jeep, as seen through the side-view mirror, a la
JURASSIC PARK and one of the funniest moments of the film for me, which was
a beautiful tip of the hat to the STAR WARS trilogy, involved Buzz' final
confrontation with Zurg. I won't say any more.
A couple of new celebrity voices have joined the fray in this film including
the always adorable Joan Cusack as the ever adorable Jessie and Kelsey
Grammer as Stinky Pete the Prospector. And let's not forget Newman! That's
Wayne Knight as the voice of Al McWhiggin, the evil antique toy collector.
Brrrrrr.
Director John Lasseter was also the man behind Pixar's first original
computer generated film called LUXO JR. in 1986. That film involved a
smaller, younger lamp bouncing around after a ball, while the older lamp
looked after it. That short "lamp" film was obviously very special to the
people at Pixar, since they've made it part of their visual logo before each
of their films. In 1996, Lasseter received a Special Achievement Award at
the Academy Awards, for the development and inspired application of
techniques that have made possible the first feature-length
computer-animated film. He also directed TOY STORY and A BUG'S LIFE.</P>
<PRE>Review Date: November 30, 1999
Director: John Lasseter
Co-Directors: Ash Brannon and Lee Unkrich
Writers: Andrew Stanton, Rita Hsiao, Doug Chamberlain and Chris Webb
Producer: Sarah McArthur
Actors: Tom Hanks as Woody
Tim Allen as Buzz Lightyear
Genre: Animation
Year of Release: 1999
---------------------------------------
JoBlo's Movie Emporium
<A HREF="http://www.joblo.com">http://www.joblo.com</A>
---------------------------------------
(c) 1999 Berge Garabedian</PRE>
<HR><P CLASS=flush><SMALL>The review above was posted to the
<A HREF="news:rec.arts.movies.reviews">rec.arts.movies.reviews</A> newsgroup (<A HREF="news:de.rec.film.kritiken">de.rec.film.kritiken</A> for German reviews).<BR>
The Internet Movie Database accepts no responsibility for the contents of the
review and has no editorial control. Unless stated otherwise, the copyright
belongs to the author.<BR>
Please direct comments/criticisms of the review to relevant newsgroups.<BR>
Broken URLs inthe reviews are the responsibility of the author.<BR>
The formatting of the review is likely to differ from the original due
to ASCII to HTML conversion.
</SMALL></P>
<P ALIGN=CENTER>Related links: <A HREF="/Reviews/">index of all rec.arts.movies.reviews reviews</A></P>
</P></BODY></HTML>
| xianjunzhengbackup/code | data science/machine_learning_for_the_web/chapter_4/movie/21988.html | HTML | mit | 6,594 |
<!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="./ce67d1dfcef89de88786c886bdef5b7b42e9562684efe1acd5a8262054e4b924.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/c5b08e869863bd19ba2830fc134848b825d77ab7e9cd1373a1e61339577f6a14.html | HTML | mit | 550 |
<!DOCTYPE html>
<html>
<head>
<!-- Basic -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Image Frames | Porto - Responsive HTML5 Template 4.9.1</title>
<meta name="keywords" content="HTML5 Template" />
<meta name="description" content="Porto - Responsive HTML5 Template">
<meta name="author" content="okler.net">
<!-- Favicon -->
<link rel="shortcut icon" href="img/favicon.ico" type="image/x-icon" />
<link rel="apple-touch-icon" href="img/apple-touch-icon.png">
<!-- Mobile Metas -->
<meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
<!-- Web Fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800%7CShadows+Into+Light" rel="stylesheet" type="text/css">
<!-- Vendor CSS -->
<link rel="stylesheet" href="vendor/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="vendor/font-awesome/css/font-awesome.min.css">
<link rel="stylesheet" href="vendor/simple-line-icons/css/simple-line-icons.min.css">
<link rel="stylesheet" href="vendor/owl.carousel/assets/owl.carousel.min.css">
<link rel="stylesheet" href="vendor/owl.carousel/assets/owl.theme.default.min.css">
<link rel="stylesheet" href="vendor/magnific-popup/magnific-popup.min.css">
<!-- Theme CSS -->
<link rel="stylesheet" href="css/theme.css">
<link rel="stylesheet" href="css/theme-elements.css">
<link rel="stylesheet" href="css/theme-blog.css">
<link rel="stylesheet" href="css/theme-shop.css">
<link rel="stylesheet" href="css/theme-animate.css">
<!-- Skin CSS -->
<link rel="stylesheet" href="css/skins/default.css">
<!-- Theme Custom CSS -->
<link rel="stylesheet" href="css/custom.css">
<!-- Head Libs -->
<script src="vendor/modernizr/modernizr.min.js"></script>
</head>
<body>
<div class="body">
<header id="header" data-plugin-options='{"stickyEnabled": true, "stickyEnableOnBoxed": true, "stickyEnableOnMobile": true, "stickyStartAt": 57, "stickySetTop": "-57px", "stickyChangeLogo": true}'>
<div class="header-body">
<div class="header-container container">
<div class="header-row">
<div class="header-column">
<div class="header-logo">
<a href="index.html">
<img alt="Porto" width="111" height="54" data-sticky-width="82" data-sticky-height="40" data-sticky-top="33" src="img/logo.png">
</a>
</div>
</div>
<div class="header-column">
<div class="header-row">
<div class="header-search hidden-xs">
<form id="searchForm" action="page-search-results.html" method="get">
<div class="input-group">
<input type="text" class="form-control" name="q" id="q" placeholder="Search..." required>
<span class="input-group-btn">
<button class="btn btn-default" type="submit"><i class="fa fa-search"></i></button>
</span>
</div>
</form>
</div>
<nav class="header-nav-top">
<ul class="nav nav-pills">
<li class="hidden-xs">
<a href="about-us.html"><i class="fa fa-angle-right"></i> About Us</a>
</li>
<li class="hidden-xs">
<a href="contact-us.html"><i class="fa fa-angle-right"></i> Contact Us</a>
</li>
<li>
<span class="ws-nowrap"><i class="fa fa-phone"></i> (123) 456-789</span>
</li>
</ul>
</nav>
</div>
<div class="header-row">
<div class="header-nav">
<button class="btn header-btn-collapse-nav" data-toggle="collapse" data-target=".header-nav-main">
<i class="fa fa-bars"></i>
</button>
<ul class="header-social-icons social-icons hidden-xs">
<li class="social-icons-facebook"><a href="http://www.facebook.com/" target="_blank" title="Facebook"><i class="fa fa-facebook"></i></a></li>
<li class="social-icons-twitter"><a href="http://www.twitter.com/" target="_blank" title="Twitter"><i class="fa fa-twitter"></i></a></li>
<li class="social-icons-linkedin"><a href="http://www.linkedin.com/" target="_blank" title="Linkedin"><i class="fa fa-linkedin"></i></a></li>
</ul>
<div class="header-nav-main header-nav-main-effect-1 header-nav-main-sub-effect-1 collapse">
<nav>
<ul class="nav nav-pills" id="mainNav">
<li class="dropdown">
<a class="dropdown-toggle" href="index.html">
Home
</a>
<ul class="dropdown-menu">
<li>
<a href="index.html">
Landing Page
</a>
</li>
<li class="dropdown-submenu">
<a href="index-classic.html">Classic</a>
<ul class="dropdown-menu">
<li><a href="index-classic.html" data-thumb-preview="img/previews/preview-classic.jpg">Classic - Original</a></li>
<li><a href="index-classic-color.html" data-thumb-preview="img/previews/preview-classic-color.jpg">Classic - Color</a></li>
<li><a href="index-classic-light.html" data-thumb-preview="img/previews/preview-classic-light.jpg">Classic - Light</a></li>
<li><a href="index-classic-video.html" data-thumb-preview="img/previews/preview-classic-video.jpg">Classic - Video</a></li>
<li><a href="index-classic-video-light.html" data-thumb-preview="img/previews/preview-classic-video-light.jpg">Classic - Video - Light</a></li>
</ul>
</li>
<li class="dropdown-submenu">
<a href="index-corporate.html">Corporate <span class="tip tip-dark">hot</span></a>
<ul class="dropdown-menu">
<li><a href="index-corporate.html" data-thumb-preview="img/previews/preview-corporate.jpg">Corporate - Version 1</a></li>
<li><a href="index-corporate-2.html" data-thumb-preview="img/previews/preview-corporate-version2.jpg">Corporate - Version 2</a></li>
<li><a href="index-corporate-3.html" data-thumb-preview="img/previews/preview-corporate-version3.jpg">Corporate - Version 3</a></li>
<li><a href="index-corporate-4.html" data-thumb-preview="img/previews/preview-corporate-version4.jpg">Corporate - Version 4</a></li>
<li><a href="index-corporate-5.html" data-thumb-preview="img/previews/preview-corporate-version5.jpg">Corporate - Version 5</a></li>
<li><a href="index-corporate-6.html" data-thumb-preview="img/previews/preview-corporate-version6.jpg">Corporate - Version 6</a></li>
<li><a href="index-corporate-7.html" data-thumb-preview="img/previews/preview-corporate-version7.jpg">Corporate - Version 7</a></li>
<li><a href="index-corporate-8.html" data-thumb-preview="img/previews/preview-corporate-version8.jpg">Corporate - Version 8</a></li>
<li><a href="index-corporate-hosting.html" data-thumb-preview="img/previews/preview-corporate-hosting.jpg">Corporate - Hosting</a></li>
</ul>
</li>
<li class="dropdown-submenu">
<a href="#">One Page</a>
<ul class="dropdown-menu">
<li><a href="index-one-page.html" data-thumb-preview="img/previews/preview-one-page.jpg">One Page Original</a></li>
</ul>
</li>
</ul>
</li>
<li class="">
<a href="overview.html">
Overview
</a>
</li>
<li class="dropdown dropdown-mega active">
<a class="dropdown-toggle" href="#">
Shortcodes
</a>
<ul class="dropdown-menu">
<li>
<div class="dropdown-mega-content">
<div class="row">
<div class="col-md-3">
<span class="dropdown-mega-sub-title">Shortcodes 1</span>
<ul class="dropdown-mega-sub-nav">
<li><a href="shortcodes-accordions.html">Accordions</a></li>
<li><a href="shortcodes-toggles.html">Toggles</a></li>
<li><a href="shortcodes-tabs.html">Tabs</a></li>
<li><a href="shortcodes-icons.html">Icons</a></li>
<li><a href="shortcodes-icon-boxes.html">Icon Boxes</a></li>
<li><a href="shortcodes-carousels.html">Carousels</a></li>
<li><a href="shortcodes-modals.html">Modals</a></li>
<li><a href="shortcodes-lightboxes.html">Lightboxes</a></li>
</ul>
</div>
<div class="col-md-3">
<span class="dropdown-mega-sub-title">Shortcodes 2</span>
<ul class="dropdown-mega-sub-nav">
<li><a href="shortcodes-buttons.html">Buttons</a></li>
<li><a href="shortcodes-labels.html">Labels</a></li>
<li><a href="shortcodes-lists.html">Lists</a></li>
<li><a href="shortcodes-image-gallery.html">Image Gallery</a></li>
<li><a href="shortcodes-image-frames.html">Image Frames</a></li>
<li><a href="shortcodes-testimonials.html">Testimonials</a></li>
<li><a href="shortcodes-blockquotes.html">Blockquotes</a></li>
<li><a href="shortcodes-word-rotator.html">Word Rotator</a></li>
</ul>
</div>
<div class="col-md-3">
<span class="dropdown-mega-sub-title">Shortcodes 3</span>
<ul class="dropdown-mega-sub-nav">
<li><a href="shortcodes-call-to-action.html">Call to Action</a></li>
<li><a href="shortcodes-pricing-tables.html">Pricing Tables</a></li>
<li><a href="shortcodes-tables.html">Tables</a></li>
<li><a href="shortcodes-progressbars.html">Progress Bars</a></li>
<li><a href="shortcodes-counters.html">Counters</a></li>
<li><a href="shortcodes-sections-parallax.html">Sections & Parallax</a></li>
<li><a href="shortcodes-tooltips-popovers.html">Tooltips & Popovers</a></li>
<li><a href="shortcodes-sticky-elements.html">Sticky Elements</a></li>
</ul>
</div>
<div class="col-md-3">
<span class="dropdown-mega-sub-title">Shortcodes 4</span>
<ul class="dropdown-mega-sub-nav">
<li><a href="shortcodes-headings.html">Headings</a></li>
<li><a href="shortcodes-dividers.html">Dividers</a></li>
<li><a href="shortcodes-animations.html">Animations</a></li>
<li><a href="shortcodes-medias.html">Medias</a></li>
<li><a href="shortcodes-maps.html">Maps</a></li>
<li><a href="shortcodes-arrows.html">Arrows</a></li>
<li><a href="shortcodes-alerts.html">Alerts</a></li>
<li><a href="shortcodes-posts.html">Posts</a></li>
</ul>
</div>
</div>
</div>
</li>
</ul>
</li>
<li class="dropdown">
<a class="dropdown-toggle" href="#">
Features
</a>
<ul class="dropdown-menu">
<li class="dropdown-submenu">
<a href="#">Headers</a>
<ul class="dropdown-menu">
<li class="dropdown-submenu">
<a href="#">Default</a>
<ul class="dropdown-menu">
<li><a href="index-classic.html">Default</a></li>
<li><a href="index-header-language-dropdown.html">Default + Language Dropdown</a></li>
<li><a href="index-header-big-logo.html">Default + Big Logo</a></li>
</ul>
</li>
<li class="dropdown-submenu">
<a href="#">Flat</a>
<ul class="dropdown-menu">
<li><a href="index-header-flat.html">Flat</a></li>
<li><a href="index-header-flat-top-bar.html">Flat + Top Bar</a></li>
<li><a href="index-header-flat-colored-top-bar.html">Flat + Colored Top Bar</a></li>
<li><a href="index-header-flat-top-bar-search.html">Flat + Top Bar with Search</a></li>
</ul>
</li>
<li><a href="index-header-center.html">Center</a></li>
<li><a href="index-header-below-slider.html">Below Slider</a></li>
<li><a href="index-header-full-video.html">Full Video</a></li>
<li><a href="index-header-narrow.html">Narrow</a></li>
<li><a href="index-header-always-sticky.html">Always Sticky</a></li>
<li class="dropdown-submenu">
<a href="#">Transparent</a>
<ul class="dropdown-menu">
<li><a href="index-header-transparent.html">Transparent</a></li>
<li><a href="index-header-transparent-bottom-border.html">Transparent - Bottom Border</a></li>
<li><a href="index-header-semi-transparent.html">Semi Transparent</a></li>
<li><a href="index-header-semi-transparent-light.html">Semi Transparent - Light</a></li>
</ul>
</li>
<li><a href="index-header-full-width.html">Full-Width</a></li>
<li class="dropdown-submenu">
<a href="#">Navbar</a>
<ul class="dropdown-menu">
<li><a href="index-header-navbar.html">Navbar</a></li>
<li><a href="index-header-navbar-extra-info.html">Navbar + Extra Info</a></li>
</ul>
</li>
<li class="dropdown-submenu">
<a href="#">Side Header</a>
<ul class="dropdown-menu">
<li><a href="index-header-side-header-left.html">Side Header Left</a></li>
<li><a href="index-header-side-header-right.html">Side Header Right</a></li>
<li><a href="index-header-side-header-semi-transparent.html">Side Header Semi Transparent</a></li>
</ul>
</li>
<li><a href="index-header-signin.html">Sign In / Sign Up</a></li>
<li><a href="index-header-logged.html">Logged</a></li>
</ul>
</li>
<li class="dropdown-submenu">
<a href="#">Navigations</a>
<ul class="dropdown-menu">
<li><a href="index-classic.html">Default</a></li>
<li><a href="index-navigation-stripe.html">Stripe</a></li>
<li><a href="index-navigation-top-line.html">Top Line</a></li>
<li><a href="index-navigation-dark-dropdown.html">Dark Dropdown</a></li>
<li><a href="index-navigation-colors.html">Colors</a></li>
</ul>
</li>
<li class="dropdown-submenu">
<a href="#">Footers</a>
<ul class="dropdown-menu">
<li><a href="index-classic.html#footer">Default</a></li>
<li><a href="index-footer-advanced.html#footer">Advanced</a></li>
<li><a href="index-footer-simple.html#footer">Simple</a></li>
<li><a href="index-footer-light.html#footer">Light</a></li>
<li><a href="index-footer-light-narrow.html#footer">Light Narrow</a></li>
<li class="dropdown-submenu">
<a href="#">Colors</a>
<ul class="dropdown-menu">
<li><a href="index-footer-color-primary.html#footer">Primary Color</a></li>
<li><a href="index-footer-color-secondary.html#footer">Secondary Color</a></li>
<li><a href="index-footer-color-tertiary.html#footer">Tertiary Color</a></li>
<li><a href="index-footer-color-quaternary.html#footer">Quaternary Color</a></li>
</ul>
</li>
<li><a href="index-footer-latest-work.html#footer">Latest Work</a></li>
<li><a href="index-footer-contact-form.html#footer">Contact Form</a></li>
</ul>
</li>
<li class="dropdown-submenu">
<a href="#">Page Headers</a>
<ul class="dropdown-menu">
<li><a href="index-page-header-default.html">Default</a></li>
<li class="dropdown-submenu">
<a href="#">Colors</a>
<ul class="dropdown-menu">
<li><a href="index-page-header-color-primary.html">Primary Color</a></li>
<li><a href="index-page-header-color-secondary.html">Secondary Color</a></li>
<li><a href="index-page-header-color-tertiary.html">Tertiary Color</a></li>
<li><a href="index-page-header-color-quaternary.html">Quaternary Color</a></li>
</ul>
</li>
<li><a href="index-page-header-light.html">Light</a></li>
<li><a href="index-page-header-light-reverse.html">Light - Reverse</a></li>
<li><a href="index-page-header-custom-background.html">Custom Background</a></li>
<li><a href="index-page-header-parallax.html">Parallax</a></li>
<li><a href="index-page-header-center.html">Center</a></li>
</ul>
</li>
<li class="dropdown-submenu">
<a href="#">Admin Extension <span class="tip tip-dark">hot</span> <em class="not-included">(Not Included)</em></a>
<ul class="dropdown-menu">
<li><a href="feature-admin-forms-basic.html">Forms Basic</a></li>
<li><a href="feature-admin-forms-advanced.html">Forms Advanced</a></li>
<li><a href="feature-admin-forms-wizard.html">Forms Wizard</a></li>
<li><a href="feature-admin-forms-code-editor.html">Code Editor</a></li>
<li><a href="feature-admin-tables-advanced.html">Tables Advanced</a></li>
<li><a href="feature-admin-tables-responsive.html">Tables Responsive</a></li>
<li><a href="feature-admin-tables-editable.html">Tables Editable</a></li>
<li><a href="feature-admin-tables-ajax.html">Tables Ajax</a></li>
<li><a href="feature-admin-charts.html">Charts</a></li>
</ul>
</li>
<li class="dropdown-submenu">
<a href="#">Sliders</a>
<ul class="dropdown-menu">
<li><a href="index-classic.html">Revolution Slider</a></li>
<li><a href="index-slider-nivo.html">Nivo Slider</a></li>
</ul>
</li>
<li class="dropdown-submenu">
<a href="#">Layout Options</a>
<ul class="dropdown-menu">
<li><a href="feature-layout-boxed.html">Boxed</a></li>
<li><a href="feature-layout-dark.html">Dark</a></li>
<li><a href="feature-layout-rtl.html">RTL</a></li>
</ul>
</li>
<li class="dropdown-submenu">
<a href="#">Extra</a>
<ul class="dropdown-menu">
<li><a href="feature-typography.html">Typography</a></li>
<li><a href="feature-grid-system.html">Grid System</a></li>
<li><a href="feature-page-loading.html">Page Loading</a></li>
<li><a href="feature-lazy-load.html">Lazy Load</a></li>
</ul>
</li>
</ul>
</li>
<li class="dropdown">
<a class="dropdown-toggle" href="#">
Pages
</a>
<ul class="dropdown-menu">
<li class="dropdown-submenu">
<a href="#">About Us</a>
<ul class="dropdown-menu">
<li><a href="about-us.html">About Us</a></li>
<li><a href="about-us-basic.html">About Us - Basic</a></li>
<li><a href="about-me.html">About Me</a></li>
</ul>
</li>
<li class="dropdown-submenu">
<a href="#">Shop</a>
<ul class="dropdown-menu">
<li><a href="shop-full-width.html">Shop - Full Width</a></li>
<li><a href="shop-sidebar.html">Shop - Sidebar</a></li>
<li><a href="shop-product-full-width.html">Shop - Product Full Width</a></li>
<li><a href="shop-product-sidebar.html">Shop - Product Sidebar</a></li>
<li><a href="shop-cart.html">Shop - Cart</a></li>
<li><a href="shop-login.html">Shop - Login</a></li>
<li><a href="shop-checkout.html">Shop - Checkout</a></li>
</ul>
</li>
<li class="dropdown-submenu">
<a href="#">Blog</a>
<ul class="dropdown-menu">
<li><a href="blog-full-width.html">Blog Full Width</a></li>
<li><a href="blog-large-image.html">Blog Large Image</a></li>
<li><a href="blog-medium-image.html">Blog Medium Image</a></li>
<li><a href="blog-timeline.html">Blog Timeline</a></li>
<li><a href="blog-post.html">Single Post</a></li>
</ul>
</li>
<li class="dropdown-submenu">
<a href="#">Layouts</a>
<ul class="dropdown-menu">
<li><a href="page-full-width.html">Full Width</a></li>
<li><a href="page-left-sidebar.html">Left Sidebar</a></li>
<li><a href="page-right-sidebar.html">Right Sidebar</a></li>
<li><a href="page-left-and-right-sidebars.html">Left and Right Sidebars</a></li>
<li><a href="page-sticky-sidebar.html">Sticky Sidebar</a></li>
<li><a href="page-secondary-navbar.html">Secondary Navbar</a></li>
</ul>
</li>
<li class="dropdown-submenu">
<a href="#">Extra</a>
<ul class="dropdown-menu">
<li><a href="page-404.html">404 Error</a></li>
<li><a href="page-coming-soon.html">Coming Soon</a></li>
<li><a href="page-maintenance-mode.html">Maintenance Mode</a></li>
<li><a href="sitemap.html">Sitemap</a></li>
</ul>
</li>
<li><a href="page-custom-header.html">Custom Header</a></li>
<li><a href="page-team.html">Team</a></li>
<li><a href="page-services.html">Services</a></li>
<li><a href="page-careers.html">Careers</a></li>
<li><a href="page-our-office.html">Our Office</a></li>
<li><a href="page-faq.html">FAQ</a></li>
<li><a href="page-login.html">Login / Register</a></li>
</ul>
</li>
<li class="dropdown">
<a class="dropdown-toggle" href="#">
Portfolio
</a>
<ul class="dropdown-menu">
<li class="dropdown-submenu">
<a href="#">Single Project</a>
<ul class="dropdown-menu">
<li><a href="portfolio-single-small-slider.html">Small Slider</a></li>
<li><a href="portfolio-single-wide-slider.html">Wide Slider</a></li>
<li><a href="portfolio-single-full-width-slider.html">Full Width Slider</a></li>
<li><a href="portfolio-single-gallery.html">Gallery</a></li>
<li><a href="portfolio-single-carousel.html">Carousel</a></li>
<li><a href="portfolio-single-medias.html">Medias</a></li>
<li><a href="portfolio-single-full-width-video.html">Full Width Video</a></li>
<li><a href="portfolio-single-masonry-images.html">Masonry Images</a></li>
<li><a href="portfolio-single-left-sidebar.html">Left Sidebar</a></li>
<li><a href="portfolio-single-right-sidebar.html">Right Sidebar</a></li>
<li><a href="portfolio-single-left-and-right-sidebars.html">Left and Right Sidebars</a></li>
<li><a href="portfolio-single-sticky-sidebar.html">Sticky Sidebar</a></li>
<li><a href="portfolio-single-extended.html">Extended</a></li>
</ul>
</li>
<li class="dropdown-submenu">
<a href="#">Grid Layouts</a>
<ul class="dropdown-menu">
<li><a href="portfolio-grid-1-column.html">1 Column</a></li>
<li><a href="portfolio-grid-2-columns.html">2 Columns</a></li>
<li><a href="portfolio-grid-3-columns.html">3 Columns</a></li>
<li><a href="portfolio-grid-4-columns.html">4 Columns</a></li>
<li><a href="portfolio-grid-5-columns.html">5 Columns</a></li>
<li><a href="portfolio-grid-6-columns.html">6 Columns</a></li>
<li><a href="portfolio-grid-no-margins.html">No Margins</a></li>
<li><a href="portfolio-grid-full-width.html">Full Width</a></li>
<li><a href="portfolio-grid-full-width-no-margins.html">Full Width No Margins</a></li>
<li><a href="portfolio-grid-1-column-title-and-description.html">Title and Description</a></li>
</ul>
</li>
<li class="dropdown-submenu">
<a href="#">Masonry Layouts</a>
<ul class="dropdown-menu">
<li><a href="portfolio-masonry-2-columns.html">2 Columns</a></li>
<li><a href="portfolio-masonry-3-columns.html">3 Columns</a></li>
<li><a href="portfolio-masonry-4-columns.html">4 Columns</a></li>
<li><a href="portfolio-masonry-5-columns.html">5 Columns</a></li>
<li><a href="portfolio-masonry-6-columns.html">6 Columns</a></li>
<li><a href="portfolio-masonry-no-margins.html">No Margins</a></li>
<li><a href="portfolio-masonry-full-width.html">Full Width</a></li>
</ul>
</li>
<li class="dropdown-submenu">
<a href="#">Sidebar Layouts</a>
<ul class="dropdown-menu">
<li><a href="portfolio-sidebar-left.html">Left Sidebar</a></li>
<li><a href="portfolio-sidebar-right.html">Right Sidebar</a></li>
<li><a href="portfolio-sidebar-left-and-right.html">Left and Right Sidebars</a></li>
<li><a href="portfolio-sidebar-sticky.html">Sticky Sidebar</a></li>
</ul>
</li>
<li class="dropdown-submenu">
<a href="#">Ajax</a>
<ul class="dropdown-menu">
<li><a href="portfolio-ajax-page.html">Ajax on Page</a></li>
<li><a href="portfolio-ajax-modal.html">Ajax on Modal</a></li>
</ul>
</li>
<li class="dropdown-submenu">
<a href="#">Extra</a>
<ul class="dropdown-menu">
<li><a href="portfolio-extra-timeline.html">Timeline</a></li>
<li><a href="portfolio-extra-lightbox.html">Lightbox</a></li>
<li><a href="portfolio-extra-load-more.html">Load More</a></li>
<li><a href="portfolio-extra-lazy-load.html">Lazy Load</a></li>
<li><a href="portfolio-extra-pagination.html">Pagination</a></li>
<li><a href="portfolio-extra-combination-filters.html">Combination Filters</a></li>
</ul>
</li>
</ul>
</li>
<li class="dropdown">
<a class="dropdown-toggle" href="#">
Contact Us
</a>
<ul class="dropdown-menu">
<li><a href="contact-us.html">Contact Us - Basic</a></li>
<li><a href="contact-us-advanced.php">Contact Us - Advanced</a></li>
</ul>
</li>
</ul>
</nav>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</header>
<div role="main" class="main">
<section class="page-header">
<div class="container">
<div class="row">
<div class="col-md-12">
<ul class="breadcrumb">
<li><a href="#">Home</a></li>
<li class="active">Shortcodes</li>
</ul>
</div>
</div>
<div class="row">
<div class="col-md-12">
<h1>Image Frames</h1>
</div>
</div>
</div>
</section>
<div class="container">
<div class="row">
<div class="col-md-9">
<div class="row">
<div class="col-md-12">
<h2 class="mb-none">Image Frames Shortcodes</h2>
<p>You can show your images in different layout styles.</p>
<hr class="tall">
</div>
</div>
<div class="row">
<div class="col-md-12">
<h4 class="mb-none">Default</h4>
<p>By default, Bootstrap's thumbnails are designed to showcase linked images with minimal required markup.</p>
<div class="row">
<div class="col-md-4">
<img class="img-responsive img-rounded mb-lg" src="img/projects/project.jpg" alt="Project Image">
</div>
<div class="col-md-4">
<img class="img-responsive img-circle mb-lg" src="img/projects/project-1.jpg" alt="Project Image">
</div>
<div class="col-md-4">
<span class="img-thumbnail">
<img class="img-responsive" src="img/projects/project-2.jpg" alt="Project Image">
</span>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<hr class="tall">
</div>
</div>
<div class="row">
<div class="col-md-12">
<h4 class="mb-none">Hover Styles</h4>
<p>The thumbnail details can be displayed in different styles.</p>
<div class="row">
<div class="col-md-4">
<h5 class="text-uppercase mt-lg">Default</h5>
<a href="portfolio-single-small-slider.html">
<span class="thumb-info">
<span class="thumb-info-wrapper">
<img src="img/projects/project.jpg" class="img-responsive" alt="">
<span class="thumb-info-action">
<span class="thumb-info-action-icon"><i class="fa fa-link"></i></span>
</span>
</span>
</span>
</a>
</div>
<div class="col-md-4">
<h5 class="text-uppercase mt-lg">Default Lighten</h5>
<a href="portfolio-single-small-slider.html">
<span class="thumb-info thumb-info-lighten">
<span class="thumb-info-wrapper">
<img src="img/projects/project-2.jpg" class="img-responsive" alt="">
<span class="thumb-info-action">
<span class="thumb-info-action-icon"><i class="fa fa-link"></i></span>
</span>
</span>
</span>
</a>
</div>
<div class="col-md-4">
<h5 class="text-uppercase mt-lg">No Zoom</h5>
<a href="portfolio-single-small-slider.html">
<span class="thumb-info thumb-info-no-zoom">
<span class="thumb-info-wrapper">
<img src="img/projects/project.jpg" class="img-responsive" alt="">
<span class="thumb-info-action">
<span class="thumb-info-action-icon"><i class="fa fa-link"></i></span>
</span>
</span>
</span>
</a>
</div>
</div>
<div class="row mt-xlg">
<div class="col-md-4">
<h5 class="text-uppercase mt-lg">With Title and Type</h5>
<a href="portfolio-single-small-slider.html">
<span class="thumb-info">
<span class="thumb-info-wrapper">
<img src="img/projects/project-4.jpg" class="img-responsive" alt="">
<span class="thumb-info-title">
<span class="thumb-info-inner">Project Title</span>
<span class="thumb-info-type">Project Type</span>
</span>
<span class="thumb-info-action">
<span class="thumb-info-action-icon"><i class="fa fa-link"></i></span>
</span>
</span>
</span>
</a>
</div>
<div class="col-md-4">
<h5 class="text-uppercase mt-lg">Centered Icons</h5>
<span class="thumb-info thumb-info-centered-icons">
<span class="thumb-info-wrapper">
<img src="img/projects/project-5.jpg" class="img-responsive" alt="">
<span class="thumb-info-action">
<a href="#">
<span class="thumb-info-action-icon thumb-info-action-icon-light"><i class="fa fa-play-circle"></i></span>
</a>
<a href="portfolio-single-small-slider.html">
<span class="thumb-info-action-icon thumb-info-action-icon-light"><i class="fa fa-plus"></i></span>
</a>
</span>
</span>
</span>
</div>
<div class="col-md-4">
<h5 class="text-uppercase mt-lg">Icons Colors</h5>
<span class="thumb-info thumb-info-centered-icons">
<span class="thumb-info-wrapper">
<img src="img/projects/project-6.jpg" class="img-responsive" alt="">
<span class="thumb-info-action">
<a href="#">
<span class="thumb-info-action-icon thumb-info-action-icon-primary" title=""><i class="fa fa-play-circle"></i></span>
</a>
<a href="#">
<span class="thumb-info-action-icon thumb-info-action-icon-secondary" title=""><i class="fa fa-plus"></i></span>
</a>
<a href="#">
<span class="thumb-info-action-icon thumb-info-action-icon-tertiary" title=""><i class="fa fa-link"></i></span>
</a>
<a href="#">
<span class="thumb-info-action-icon thumb-info-action-icon-light"><i class="fa fa-ellipsis-h"></i></span>
</a>
</span>
</span>
</span>
</div>
</div>
<div class="row mt-xlg">
<div class="col-md-4">
<h5 class="text-uppercase mt-lg">Centered Info</h5>
<a href="portfolio-single-small-slider.html">
<span class="thumb-info thumb-info-centered-info">
<span class="thumb-info-wrapper">
<img src="img/projects/project-7.jpg" class="img-responsive" alt="">
<span class="thumb-info-title">
<span class="thumb-info-inner">Project Title <em>09/19/2016</em></span>
<span class="thumb-info-type">Project Type</span>
</span>
<span class="thumb-info-action">
<span class="thumb-info-action-icon"><i class="fa fa-link"></i></span>
</span>
</span>
</span>
</a>
</div>
<div class="col-md-4">
<h5 class="text-uppercase mt-lg">Bottom Info</h5>
<span class="thumb-info thumb-info-lighten thumb-info-bottom-info thumb-info-centered-icons">
<span class="thumb-info-wrapper">
<img src="img/projects/project.jpg" class="img-responsive" alt="">
<span class="thumb-info-title">
<span class="thumb-info-inner">Project Title</span>
<span class="thumb-info-type">Project Type</span>
</span>
<span class="thumb-info-action">
<a href="#">
<span class="thumb-info-action-icon thumb-info-action-icon-light"><i class="fa fa-play-circle"></i></span>
</a>
<a href="portfolio-single-small-slider.html">
<span class="thumb-info-action-icon thumb-info-action-icon-light"><i class="fa fa-plus"></i></span>
</a>
</span>
</span>
</span>
</div>
<div class="col-md-4">
<h5 class="text-uppercase mt-lg">Bottom Info Dark</h5>
<span class="thumb-info thumb-info-lighten thumb-info-bottom-info thumb-info-bottom-info-dark thumb-info-centered-icons">
<span class="thumb-info-wrapper">
<img src="img/projects/project-1.jpg" class="img-responsive" alt="">
<span class="thumb-info-title">
<span class="thumb-info-inner">Project Title</span>
<span class="thumb-info-type">Project Type</span>
</span>
<span class="thumb-info-action">
<a href="#">
<span class="thumb-info-action-icon thumb-info-action-icon-light"><i class="fa fa-play-circle"></i></span>
</a>
<a href="portfolio-single-small-slider.html">
<span class="thumb-info-action-icon thumb-info-action-icon-light"><i class="fa fa-plus"></i></span>
</a>
</span>
</span>
</span>
</div>
</div>
<div class="row mt-xlg">
<div class="col-md-4">
<h5 class="text-uppercase mt-lg">Push Horizontally</h5>
<a href="portfolio-single-small-slider.html">
<span class="thumb-info thumb-info-lighten thumb-info-centered-info thumb-info-push-hor">
<span class="thumb-info-wrapper">
<img src="img/projects/project-4.jpg" class="img-responsive" alt="">
<span class="thumb-info-title">
<span class="thumb-info-inner">Project Title</span>
<span class="thumb-info-type">Project Type</span>
</span>
<span class="thumb-info-action">
<span class="thumb-info-action-icon"><i class="fa fa-link"></i></span>
</span>
</span>
</span>
</a>
</div>
<div class="col-md-4">
<h5 class="text-uppercase mt-lg">With Captions</h5>
<span class="thumb-info thumb-info-hide-wrapper-bg">
<span class="thumb-info-wrapper">
<img src="img/projects/project-4.jpg" class="img-responsive" alt="">
<span class="thumb-info-title">
<span class="thumb-info-inner">Project Title</span>
<span class="thumb-info-type">Project Type</span>
</span>
</span>
<span class="thumb-info-caption">
<span class="thumb-info-caption-text">Lorem ipsum dolor sit amet, consectetur adipiscing elit.</span>
<span class="thumb-info-social-icons">
<a target="_blank" href="http://www.facebook.com"><i class="fa fa-facebook"></i><span>Facebook</span></a>
<a href="http://www.twitter.com"><i class="fa fa-twitter"></i><span>Twitter</span></a>
<a href="http://www.linkedin.com"><i class="fa fa-linkedin"></i><span>Linkedin</span></a>
</span>
</span>
</span>
</div>
<div class="col-md-4">
<h5 class="text-uppercase mt-lg">Hide Info Hover</h5>
<a href="portfolio-single-small-slider.html">
<span class="thumb-info thumb-info-centered-info thumb-info-hide-info-hover">
<span class="thumb-info-wrapper">
<img src="img/projects/project.jpg" class="img-responsive" alt="">
<span class="thumb-info-title">
<span class="thumb-info-inner">Project Title</span>
<span class="thumb-info-type">Project Type</span>
</span>
</span>
</span>
</a>
</div>
</div>
<div class="row mt-xlg">
<div class="col-md-6">
<h5 class="text-uppercase mt-lg">Side Image Left</h5>
<span class="thumb-info thumb-info-side-image thumb-info-no-zoom">
<span class="thumb-info-side-image-wrapper">
<img src="img/projects/project-4.jpg" class="img-responsive" alt="" style="width: 200px;">
</span>
<span class="thumb-info-caption">
<span class="thumb-info-caption-text">
<h5 class="text-uppercase mb-xs">Project Title</h5>
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
</span>
</span>
</span>
</div>
<div class="col-md-6">
<h5 class="text-uppercase mt-lg">Side Image Right</h5>
<span class="thumb-info thumb-info-side-image thumb-info-side-image-right thumb-info-no-zoom">
<span class="thumb-info-side-image-wrapper">
<img src="img/projects/project-4.jpg" class="img-responsive" alt="" style="width: 200px;">
</span>
<span class="thumb-info-caption">
<span class="thumb-info-caption-text">
<h5 class="text-uppercase mb-xs">Project Title</h5>
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
</span>
</span>
</span>
</div>
</div>
<div class="row mt-xlg">
<div class="col-md-12">
<h5 class="text-uppercase mt-lg">No Borders</h5>
</div>
</div>
<div class="row">
<div class="col-md-4">
<a href="portfolio-single-small-slider.html">
<span class="thumb-info thumb-info-lighten thumb-info-centered-info thumb-info-no-borders mt-lg">
<span class="thumb-info-wrapper">
<img src="img/projects/project-2.jpg" class="img-responsive" alt="">
<span class="thumb-info-title">
<span class="thumb-info-inner">Project Title</span>
<span class="thumb-info-type">Project Type</span>
</span>
</span>
</span>
</a>
</div>
<div class="col-md-4">
<a href="portfolio-single-small-slider.html">
<span class="thumb-info thumb-info-no-borders mt-lg">
<span class="thumb-info-wrapper">
<img src="img/projects/project-4.jpg" class="img-responsive" alt="">
<span class="thumb-info-title">
<span class="thumb-info-inner">Project Title</span>
<span class="thumb-info-type">Project Type</span>
</span>
<span class="thumb-info-action">
<span class="thumb-info-action-icon"><i class="fa fa-link"></i></span>
</span>
</span>
</span>
</a>
</div>
<div class="col-md-4">
<span class="thumb-info thumb-info-lighten thumb-info-bottom-info thumb-info-bottom-info-dark thumb-info-centered-icons thumb-info-no-borders mt-lg">
<span class="thumb-info-wrapper">
<img src="img/projects/project-1.jpg" class="img-responsive" alt="">
<span class="thumb-info-title">
<span class="thumb-info-inner">Project Title</span>
<span class="thumb-info-type">Project Type</span>
</span>
<span class="thumb-info-action">
<a href="#">
<span class="thumb-info-action-icon thumb-info-action-icon-light"><i class="fa fa-play-circle"></i></span>
</a>
<a href="portfolio-single-small-slider.html">
<span class="thumb-info-action-icon thumb-info-action-icon-light"><i class="fa fa-plus"></i></span>
</a>
</span>
</span>
</span>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<hr class="tall">
</div>
</div>
<div class="row">
<div class="col-md-12">
<h4 class="mb-none">Grid</h4>
<div class="content-grid mt-lg mb-lg">
<div class="row content-grid-row">
<div class="content-grid-item col-md-3 center">
<img class="img-responsive" src="img/logos/logo-1.png" alt="">
</div>
<div class="content-grid-item col-md-3 center">
<img class="img-responsive" src="img/logos/logo-2.png" alt="">
</div>
<div class="content-grid-item col-md-3 center">
<img class="img-responsive" src="img/logos/logo-3.png" alt="">
</div>
<div class="content-grid-item col-md-3 center">
<img class="img-responsive" src="img/logos/logo-4.png" alt="">
</div>
</div>
<div class="row content-grid-row">
<div class="content-grid-item col-md-3 center">
<img class="img-responsive" src="img/logos/logo-5.png" alt="">
</div>
<div class="content-grid-item col-md-3 center">
<img class="img-responsive" src="img/logos/logo-6.png" alt="">
</div>
<div class="content-grid-item col-md-3 center">
<img class="img-responsive" src="img/logos/logo-1.png" alt="">
</div>
<div class="content-grid-item col-md-3 center">
<img class="img-responsive" src="img/logos/logo-2.png" alt="">
</div>
</div>
</div>
<hr class="tall">
<div class="content-grid content-grid-dashed mt-xlg mb-lg">
<div class="row content-grid-row">
<div class="content-grid-item col-md-4 center">
<img class="img-responsive" src="img/logos/logo-1.png" alt="">
</div>
<div class="content-grid-item col-md-4 center">
<img class="img-responsive" src="img/logos/logo-2.png" alt="">
</div>
<div class="content-grid-item col-md-4 center">
<img class="img-responsive" src="img/logos/logo-3.png" alt="">
</div>
</div>
<div class="row content-grid-row">
<div class="content-grid-item col-md-4 center">
<img class="img-responsive" src="img/logos/logo-5.png" alt="">
</div>
<div class="content-grid-item col-md-4 center">
<img class="img-responsive" src="img/logos/logo-6.png" alt="">
</div>
<div class="content-grid-item col-md-4 center">
<img class="img-responsive" src="img/logos/logo-1.png" alt="">
</div>
</div>
<div class="row content-grid-row">
<div class="content-grid-item col-md-4 center">
<img class="img-responsive" src="img/logos/logo-2.png" alt="">
</div>
<div class="content-grid-item col-md-4 center">
<img class="img-responsive" src="img/logos/logo-1.png" alt="">
</div>
<div class="content-grid-item col-md-4 center">
<img class="img-responsive" src="img/logos/logo-6.png" alt="">
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-3">
<aside class="sidebar">
<h4 class="heading-primary">Shortcodes</h4>
<ul class="nav nav-list narrow">
<li><a href="shortcodes-accordions.html">Accordions</a></li>
<li><a href="shortcodes-toggles.html">Toggles</a></li>
<li><a href="shortcodes-tabs.html">Tabs</a></li>
<li><a href="shortcodes-icons.html">Icons</a></li>
<li><a href="shortcodes-icon-boxes.html">Icon Boxes</a></li>
<li><a href="shortcodes-carousels.html">Carousels</a></li>
<li><a href="shortcodes-modals.html">Modals</a></li>
<li><a href="shortcodes-lightboxes.html">Lightboxes</a></li>
<li><a href="shortcodes-buttons.html">Buttons</a></li>
<li><a href="shortcodes-labels.html">Labels</a></li>
<li><a href="shortcodes-lists.html">Lists</a></li>
<li><a href="shortcodes-image-gallery.html">Image Gallery</a></li>
<li><a href="shortcodes-image-frames.html">Image Frames</a></li>
<li><a href="shortcodes-testimonials.html">Testimonials</a></li>
<li><a href="shortcodes-blockquotes.html">Blockquotes</a></li>
<li><a href="shortcodes-word-rotator.html">Word Rotator</a></li>
<li><a href="shortcodes-call-to-action.html">Call to Action</a></li>
<li><a href="shortcodes-pricing-tables.html">Pricing Tables</a></li>
<li><a href="shortcodes-tables.html">Tables</a></li>
<li><a href="shortcodes-progressbars.html">Progress Bars</a></li>
<li><a href="shortcodes-counters.html">Counters</a></li>
<li><a href="shortcodes-sections-parallax.html">Sections & Parallax</a></li>
<li><a href="shortcodes-tooltips-popovers.html">Tooltips & Popovers</a></li>
<li><a href="shortcodes-sticky-elements.html">Sticky Elements</a></li>
<li><a href="shortcodes-headings.html">Headings</a></li>
<li><a href="shortcodes-dividers.html">Dividers</a></li>
<li><a href="shortcodes-animations.html">Animations</a></li>
<li><a href="shortcodes-medias.html">Medias</a></li>
<li><a href="shortcodes-maps.html">Maps</a></li>
<li><a href="shortcodes-arrows.html">Arrows</a></li>
<li><a href="shortcodes-alerts.html">Alerts</a></li>
<li><a href="shortcodes-posts.html">Posts</a></li>
</ul>
</aside>
</div>
</div>
</div>
</div>
<footer id="footer">
<div class="container">
<div class="row">
<div class="footer-ribbon">
<span>Get in Touch</span>
</div>
<div class="col-md-3">
<div class="newsletter">
<h4>Newsletter</h4>
<p>Keep up on our always evolving product features and technology. Enter your e-mail and subscribe to our newsletter.</p>
<div class="alert alert-success hidden" id="newsletterSuccess">
<strong>Success!</strong> You've been added to our email list.
</div>
<div class="alert alert-danger hidden" id="newsletterError"></div>
<form id="newsletterForm" action="php/newsletter-subscribe.php" method="POST">
<div class="input-group">
<input class="form-control" placeholder="Email Address" name="newsletterEmail" id="newsletterEmail" type="text">
<span class="input-group-btn">
<button class="btn btn-default" type="submit">Go!</button>
</span>
</div>
</form>
</div>
</div>
<div class="col-md-3">
<h4>Latest Tweets</h4>
<div id="tweet" class="twitter" data-plugin-tweets data-plugin-options='{"username": "", "count": 2}'>
<p>Please wait...</p>
</div>
</div>
<div class="col-md-4">
<div class="contact-details">
<h4>Contact Us</h4>
<ul class="contact">
<li><p><i class="fa fa-map-marker"></i> <strong>Address:</strong> 1234 Street Name, City Name, United States</p></li>
<li><p><i class="fa fa-phone"></i> <strong>Phone:</strong> (123) 456-789</p></li>
<li><p><i class="fa fa-envelope"></i> <strong>Email:</strong> <a href="mailto:mail@example.com">mail@example.com</a></p></li>
</ul>
</div>
</div>
<div class="col-md-2">
<h4>Follow Us</h4>
<ul class="social-icons">
<li class="social-icons-facebook"><a href="http://www.facebook.com/" target="_blank" title="Facebook"><i class="fa fa-facebook"></i></a></li>
<li class="social-icons-twitter"><a href="http://www.twitter.com/" target="_blank" title="Twitter"><i class="fa fa-twitter"></i></a></li>
<li class="social-icons-linkedin"><a href="http://www.linkedin.com/" target="_blank" title="Linkedin"><i class="fa fa-linkedin"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="footer-copyright">
<div class="container">
<div class="row">
<div class="col-md-1">
<a href="index.html" class="logo">
<img alt="Porto Website Template" class="img-responsive" src="img/logo-footer.png">
</a>
</div>
<div class="col-md-7">
<p>© Copyright 2016. All Rights Reserved.</p>
</div>
<div class="col-md-4">
<nav id="sub-menu">
<ul>
<li><a href="page-faq.html">FAQ's</a></li>
<li><a href="sitemap.html">Sitemap</a></li>
<li><a href="contact-us.html">Contact</a></li>
</ul>
</nav>
</div>
</div>
</div>
</div>
</footer>
</div>
<!-- Vendor -->
<script src="vendor/jquery/jquery.min.js"></script>
<script src="vendor/jquery.appear/jquery.appear.min.js"></script>
<script src="vendor/jquery.easing/jquery.easing.min.js"></script>
<script src="vendor/jquery-cookie/jquery-cookie.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.min.js"></script>
<script src="vendor/common/common.min.js"></script>
<script src="vendor/jquery.validation/jquery.validation.min.js"></script>
<script src="vendor/jquery.easy-pie-chart/jquery.easy-pie-chart.min.js"></script>
<script src="vendor/jquery.gmap/jquery.gmap.min.js"></script>
<script src="vendor/jquery.lazyload/jquery.lazyload.min.js"></script>
<script src="vendor/isotope/jquery.isotope.min.js"></script>
<script src="vendor/owl.carousel/owl.carousel.min.js"></script>
<script src="vendor/magnific-popup/jquery.magnific-popup.min.js"></script>
<script src="vendor/vide/vide.min.js"></script>
<!-- Theme Base, Components and Settings -->
<script src="js/theme.js"></script>
<!-- Theme Custom -->
<script src="js/custom.js"></script>
<!-- Theme Initialization Files -->
<script src="js/theme.init.js"></script>
<!-- Google Analytics: Change UA-XXXXX-X to be your site's ID. Go to http://www.google.com/analytics/ for more information.
<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-12345678-1', 'auto');
ga('send', 'pageview');
</script>
-->
</body>
</html>
| SupasitC/Pricetrolley | THEME/shortcodes-image-frames.html | HTML | mit | 55,655 |
<!--
Copyright (c) 2016-2017 Martin Donath <martin.donath@squidfunk.com>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to
deal in the Software without restriction, including without limitation the
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
sell copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
IN THE SOFTWARE.
-->
<!-- Application header -->
<header class="md-header" data-md-component="header">
<!-- Top-level navigation -->
<nav class="md-header-nav md-grid">
<div class="md-flex">
<!-- Link to home -->
<div class="md-flex__cell md-flex__cell--shrink">
<a href="{{ config.site_url | default(nav.homepage.url, true) }}"
title="{{ config.site_name }}"
class="md-header-nav__button md-logo">
{% if config.theme.logo.icon %}
<i class="md-icon">{{ config.theme.logo.icon }}</i>
{% else %}
<img src="{{ base_url }}/{{ config.theme.logo }}"
width="24" height="24" />
{% endif %}
</a>
</div>
<!-- Button to toggle drawer -->
<div class="md-flex__cell md-flex__cell--shrink">
<label class="md-icon md-icon--menu md-header-nav__button"
for="drawer"></label>
</div>
<!-- Header title -->
<div class="md-flex__cell md-flex__cell--stretch">
<div class="md-flex__ellipsis md-header-nav__title"
data-md-component="title">
{% block site_name %}
{% if config.site_name == page.title %}
{{ config.site_name }}
{% else %}
<span class="md-header-nav__topic">
{{ config.site_name }}
</span>
<span class="md-header-nav__topic">
{{ page.title }}
</span>
{% endif %}
{% endblock %}
</div>
</div>
<!-- Button to open search dialogue -->
<div class="md-flex__cell md-flex__cell--shrink">
{% block search_box %}
{% if "search" in config["plugins"] %}
<label class="md-icon md-icon--search md-header-nav__button"
for="search"></label>
<!-- Search interface -->
{% include "partials/search.html" %}
{% endif %}
{% endblock %}
</div>
<!-- Repository containing source -->
{% if config.repo_url %}
<div class="md-flex__cell md-flex__cell--shrink">
<div class="md-header-nav__source">
{% include "partials/source.html" %}
</div>
</div>
{% endif %}
</div>
</nav>
</header>
| absolute8511/ZanRedisDB | mkdocs-material/src/partials/header.html | HTML | mit | 3,427 |
<!DOCTYPE HTML>
<html>
<head>
<title>Lukas G. Olson - Thanks</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<!--[if lte IE 8]><script src="assets/js/ie/html5shiv.js"></script><![endif]-->
<link rel="stylesheet" href="assets/css/main.css" />
<!--[if lte IE 9]><link rel="stylesheet" href="assets/css/ie9.css" /><![endif]-->
<!--[if lte IE 8]><link rel="stylesheet" href="assets/css/ie8.css" /><![endif]-->
<meta http-equiv="refresh" content="4;url=index.html" />
</head>
<body>
<!-- Wrapper -->
<div id="wrapper">
<!-- Header -->
<header id="header" class="alt">
<a href="index.html" class="logo"><strong>Lukas</strong> <span>Olson</span></a>
<nav>
<a href="#menu">Menu</a>
</nav>
</header>
<!-- Menu -->
<nav id="menu">
<ul class="links">
<li><a href="index.html">Home</a></li>
<li><a href="projectKreuthil.html">Project Kreuthil</a></li>
<li><a href="aquaconsole.html">AquaConsole</a></li>
<li><a href="lukepad.html">LukePad</a></li>
<li><a href="http://www.greyblockgames.com/">Greyblock Games</a></li>
<li><a href="http://www.palladiumco.in/">PalladiumCoin</a></li>
<li><a href="https://steamcommunity.com/sharedfiles/filedetails/?id=890752904">Sunset Forest</a></li>
</ul>
</nav>
<!-- Main -->
<div id="main" class="alt">
<!-- One -->
<section id="one">
<div class="inner">
<header class="major">
<h1>Thank-You</h1>
</header>
<p>Thanks for contacting me! I will be sure to get back to you ASAP!!!
<br>if you don't get redirected in 4 seconds, please click <a href="index.html">here</a> ...</p>
</div>
</section>
</div>
<!-- Footer -->
<footer id="footer">
<div class="inner">
<ul class="icons">
<li><a href="http://steamcommunity.com/id/LukasDragon/" class="icon alt fa-steam"><span class="label">Steam</span></a></li>
<li><a href="https://www.facebook.com/profile.php?id=100009870332962" class="icon alt fa-facebook"><span class="label">Facebook</span></a></li>
<li><a href="https://www.instagram.com/aquadark_esq" class="icon alt fa-instagram"><span class="label">Instagram</span></a></li>
<li><a href="https://github.com/lukasdragon" class="icon alt fa-github"><span class="label">GitHub</span></a></li>
<li><a href="https://www.linkedin.com/in/lukas-olson-/" class="icon alt fa-linkedin"><span class="label">LinkedIn</span></a></li>
</ul>
<ul class="copyright">
<li>© Lukas Olson</li></li>
</ul>
</div>
</footer>
</div>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/jquery.scrolly.min.js"></script>
<script src="assets/js/jquery.scrollex.min.js"></script>
<script src="assets/js/skel.min.js"></script>
<script src="assets/js/util.js"></script>
<!--[if lte IE 8]><script src="assets/js/ie/respond.min.js"></script><![endif]-->
<script src="assets/js/main.js"></script>
</body>
</html> | lukasdragon/lukasdragon.github.io | thanks.html | HTML | mit | 3,214 |
<h1>plz</h1>
| Arth101/hips | _includes/icon-github.html | HTML | mit | 13 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<title>WinPcap: _INTERNAL_REQUEST Struct Reference</title>
<link href="style.css" rel="stylesheet" type="text/css">
<link href="tabs.css" rel="stylesheet" type="text/css">
</head><body>
<!-- Generated by Doxygen 1.5.6 -->
<div class="navigation" id="top">
<div class="tabs">
<ul>
<li><a href="main.html"><span>Main Page</span></a></li>
<li><a href="pages.html"><span>Related Pages</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Data Structures</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
</ul>
</div>
<div class="tabs">
<ul>
<li><a href="annotated.html"><span>Data Structures</span></a></li>
<li><a href="functions.html"><span>Data Fields</span></a></li>
</ul>
</div>
</div>
<div class="contents">
<h1>_INTERNAL_REQUEST Struct Reference<br>
<small>
[<a class="el" href="group__NPF__include.html">NPF structures and definitions</a>]</small>
</h1><!-- doxytag: class="_INTERNAL_REQUEST" -->Stores an OID request.
<a href="#_details">More...</a>
<p>
<code>#include <<a class="el" href="Packet_8h-source.html">Packet.h</a>></code>
<p>
<table border="0" cellpadding="0" cellspacing="0">
<tr><td></td></tr>
<tr><td colspan="2"><br><h2>Data Fields</h2></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">LIST_ENTRY </td><td class="memItemRight" valign="bottom"><a class="el" href="struct__INTERNAL__REQUEST.html#52c50c47cc14f9989d741158ef6da1b9">ListElement</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Used to handle lists of requests. <a href="#52c50c47cc14f9989d741158ef6da1b9"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">NDIS_EVENT </td><td class="memItemRight" valign="bottom"><a class="el" href="struct__INTERNAL__REQUEST.html#a27c26f410846e10408bc8ac558430b9">InternalRequestCompletedEvent</a></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">NDIS_REQUEST </td><td class="memItemRight" valign="bottom"><a class="el" href="struct__INTERNAL__REQUEST.html#9d22abed5e537b5a86700c0cae0aeeda">Request</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">The structure with the actual request, that will be passed to NdisRequest(). <a href="#9d22abed5e537b5a86700c0cae0aeeda"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">NDIS_STATUS </td><td class="memItemRight" valign="bottom"><a class="el" href="struct__INTERNAL__REQUEST.html#1948690a3012c81acf392ba489b32b60">RequestStatus</a></td></tr>
</table>
<hr><a name="_details"></a><h2>Detailed Description</h2>
Stores an OID request.
<p>
This structure is used by the driver to perform OID query or set operations on the underlying NIC driver. The OID operations be performed usually only by network drivers, but NPF exports this mechanism to user-level applications through an IOCTL interface. The driver uses this structure to wrap a NDIS_REQUEST structure. This allows to handle correctly the callback structure of NdisRequest(), handling multiple requests and maintaining information about the IRPs to complete.
<p>Definition at line <a class="el" href="Packet_8h-source.html#l00163">163</a> of file <a class="el" href="Packet_8h-source.html">Packet.h</a>.</p>
<hr><h2>Field Documentation</h2>
<a class="anchor" name="52c50c47cc14f9989d741158ef6da1b9"></a><!-- doxytag: member="_INTERNAL_REQUEST::ListElement" ref="52c50c47cc14f9989d741158ef6da1b9" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">LIST_ENTRY <a class="el" href="struct__INTERNAL__REQUEST.html#52c50c47cc14f9989d741158ef6da1b9">ListElement</a> </td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Used to handle lists of requests.
<p>
<p>Definition at line <a class="el" href="Packet_8h-source.html#l00164">164</a> of file <a class="el" href="Packet_8h-source.html">Packet.h</a>.</p>
</div>
</div><p>
<a class="anchor" name="a27c26f410846e10408bc8ac558430b9"></a><!-- doxytag: member="_INTERNAL_REQUEST::InternalRequestCompletedEvent" ref="a27c26f410846e10408bc8ac558430b9" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">NDIS_EVENT <a class="el" href="struct__INTERNAL__REQUEST.html#a27c26f410846e10408bc8ac558430b9">InternalRequestCompletedEvent</a> </td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
<p>Definition at line <a class="el" href="Packet_8h-source.html#l00167">167</a> of file <a class="el" href="Packet_8h-source.html">Packet.h</a>.</p>
</div>
</div><p>
<a class="anchor" name="9d22abed5e537b5a86700c0cae0aeeda"></a><!-- doxytag: member="_INTERNAL_REQUEST::Request" ref="9d22abed5e537b5a86700c0cae0aeeda" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">NDIS_REQUEST <a class="el" href="struct__INTERNAL__REQUEST.html#9d22abed5e537b5a86700c0cae0aeeda">Request</a> </td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
The structure with the actual request, that will be passed to NdisRequest().
<p>
<p>Definition at line <a class="el" href="Packet_8h-source.html#l00168">168</a> of file <a class="el" href="Packet_8h-source.html">Packet.h</a>.</p>
</div>
</div><p>
<a class="anchor" name="1948690a3012c81acf392ba489b32b60"></a><!-- doxytag: member="_INTERNAL_REQUEST::RequestStatus" ref="1948690a3012c81acf392ba489b32b60" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">NDIS_STATUS <a class="el" href="struct__INTERNAL__REQUEST.html#1948690a3012c81acf392ba489b32b60">RequestStatus</a> </td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
<p>Definition at line <a class="el" href="Packet_8h-source.html#l00169">169</a> of file <a class="el" href="Packet_8h-source.html">Packet.h</a>.</p>
</div>
</div><p>
<hr>The documentation for this struct was generated from the following file:<ul>
<li><a class="el" href="Packet_8h-source.html">Packet.h</a></ul>
</div>
<hr>
<p align="right"><img border="0" src="winpcap_small.gif" align="absbottom" width="91" height="27">
documentation. Copyright (c) 2002-2005 Politecnico di Torino. Copyright (c) 2005-2009
CACE Technologies. All rights reserved.</p>
| gyakoo/pcapcigi | wpcap/4.1.1/docs/html/struct__INTERNAL__REQUEST.html | HTML | mit | 6,689 |
<!doctype html>
<html>
<head>
<title>Restaurants - Edit Menu Item</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css">
<link rel="stylesheet" href="/static/style.css">
<script src="https://code.jquery.com/jquery-1.8.2.min.js"></script>
<script src="https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
</head>
<body>
<div data-role="page">
<header data-role="header" >
<h1 class="ui-title" role="heading">{{restaurant.name}}</h1>
<a href="{{url_for('show_restaurants')}}" rel="external" data-role="button" data-icon="home"
data-iconpos="notext" title="Home">Home</a>
</header>
<!-- /header -->
<div data-role="content">
<h3 class="center">Edit menu item</h3>
<label for="textinput-hide" class="ui-hidden-accessible">Text Input:</label>
<form id="edit-menu-item-form" action="{{url_for('edit_menu_item', restaurant_id=restaurant.id, menu_id=item.id)}}" method="POST" target="_parent">
<input type="text" name="item-name" id="textinput-hide" placeholder="{{item.name}}" value="">
<input type="text" name="item-description" id="textinput-hide" placeholder="{{item.description}}" value="">
<input type="text" name="item-price" id="textinput-hide" placeholder="{{item.price}}" value="">
<fieldset class="ui-grid-a">
<div class="ui-block-a"><a href="#" data-role="button" data-rel="back" data-theme="c">Cancel</a></div>
<div class="ui-block-b"><button type="submit" data-role="button" data-transition="flow" data-theme="b"
id="btn-add-new-ok">Ok</button></div>
</fieldset>
</form>
</div>
<!-- /content -->
<div data-role="footer">
<h4>Coded by Davide Nastri</h4>
</div>
<!-- /footer -->
</div>
<!-- /page -->
<script src="/static/custom.js"></script>
</body>
</html> | ltpitt/restaurant-mobile-menu | templates/editMenuItem.html | HTML | mit | 2,036 |
<!doctype html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="base_conversion_style.css">
<script src="base_conversion.js">
</script>
</head>
<body>
<h1> Converting Numbers Between Bases </h1>
<p>
<label>Decimal</label>
<input id="txt" placeholder="Enter digits [0-9]" onkeyup="convertAll()"/>
</p>
<p>
<label>Binary</label>
<input id="binaryResult" placeholder="Enter digits [0-1]" onkeyup="convertNonBin()"/>
</p>
<p>
<label>Octal</label>
<input id="octalResult" placeholder="Enter digits [0-7]" onkeyup="convertNonOct()"/>
</p>
<p>
<label>Hexadecimal</label>
<input id="hexadecimalResult" placeholder="Enter digits [0-F]" onkeyup="convertNonHex()"/>
</p>
</body>
</html>
| chrzhang/daily-js | scribbles/base_conversion/base_conversion.html | HTML | mit | 906 |
{% if site.mathjax %}
<script type="text/javascript" async
src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.7/latest.js?config=TeX-MML-AM_CHTML">
</script>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
extensions: ["tex2jax.js"],
jax: ["input/TeX","output/HTML-CSS"],
tex2jax: {
inlineMath: [ ['$','$']],
processEscapes: true
}
});
</script>
{% endif %}
| petetanru/petetanru.github.io | _includes/script/mathjax.html | HTML | mit | 394 |
<!-- Begin Jekyll SEO tag v{{ seo_tag.version }} -->
{% if seo_tag.title? %}
<title>{{ seo_tag.title }}</title>
{% endif %}
<meta name="generator" content="Jekyll v{{ jekyll.version }}" />
{% if seo_tag.page_title %}
<meta property="og:title" content="{{ seo_tag.page_title }}" />
{% endif %}
{% if seo_tag.author.name %}
<meta name="author" content="{{ seo_tag.author.name }}" />
{% endif %}
<meta property="og:locale" content="{{ seo_tag.page_lang | replace:'-','_' }}" />
{% if seo_tag.description %}
<meta name="description" content="{{ seo_tag.description }}" />
<meta property="og:description" content="{{ seo_tag.description }}" />
{% endif %}
{% if site.url %}
<link rel="canonical" href="{{ seo_tag.canonical_url }}" />
<meta property="og:url" content="{{ seo_tag.canonical_url }}" />
{% endif %}
{% if seo_tag.site_title %}
<meta property="og:site_name" content="{{ seo_tag.site_title }}" />
{% endif %}
{% if seo_tag.image %}
<meta property="og:image" content="{{ seo_tag.image.path }}" />
{% if seo_tag.image.height %}
<meta property="og:image:height" content="{{ seo_tag.image.height }}" />
{% endif %}
{% if seo_tag.image.width %}
<meta property="og:image:width" content="{{ seo_tag.image.width }}" />
{% endif %}
{% endif %}
{% if page.date %}
<meta property="og:type" content="article" />
<meta property="article:published_time" content="{{ page.date | date_to_xmlschema }}" />
{% endif %}
{% if paginator.previous_page %}
<link rel="prev" href="{{ paginator.previous_page_path | absolute_url }}" />
{% endif %}
{% if paginator.next_page %}
<link rel="next" href="{{ paginator.next_page_path | absolute_url }}" />
{% endif %}
{% if site.twitter %}
{% if seo_tag.image %}
<meta name="twitter:card" content="summary_large_image" />
{% else %}
<meta name="twitter:card" content="summary" />
{% endif %}
<meta name="twitter:site" content="@{{ site.twitter.username | replace:"@","" }}" />
{% if seo_tag.author.twitter %}
<meta name="twitter:creator" content="@{{ seo_tag.author.twitter }}" />
{% endif %}
{% endif %}
{% if site.facebook %}
{% if site.facebook.admins %}
<meta property="fb:admins" content="{{ site.facebook.admins }}" />
{% endif %}
{% if site.facebook.publisher %}
<meta property="article:publisher" content="{{ site.facebook.publisher }}" />
{% endif %}
{% if site.facebook.app_id %}
<meta property="fb:app_id" content="{{ site.facebook.app_id }}" />
{% endif %}
{% endif %}
{% if site.webmaster_verifications %}
{% if site.webmaster_verifications.google %}
<meta name="google-site-verification" content="{{ site.webmaster_verifications.google }}" />
{% endif %}
{% if site.webmaster_verifications.bing %}
<meta name="msvalidate.01" content="{{ site.webmaster_verifications.bing }}" />
{% endif %}
{% if site.webmaster_verifications.alexa %}
<meta name="alexaVerifyID" content="{{ site.webmaster_verifications.alexa }}" />
{% endif %}
{% if site.webmaster_verifications.yandex %}
<meta name="yandex-verification" content="{{ site.webmaster_verifications.yandex }}" />
{% endif %}
{% elsif site.google_site_verification %}
<meta name="google-site-verification" content="{{ site.google_site_verification }}" />
{% endif %}
<script type="application/ld+json">
{{ seo_tag.json_ld | jsonify }}
</script>
<!-- End Jekyll SEO tag -->
| cvisger/Visger-Lab | vendor/bundle/ruby/2.3.0/gems/jekyll-seo-tag-2.4.0/lib/template.html | HTML | mit | 3,405 |
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width user-scalable=no">
<!-- Twitter Cards用metaタグ -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@toro_ponz" />
<meta name="twitter:creator" content="@toro_ponz">
<meta name="twitter:title" content="とろゝのHP" />
<meta name="twitter:description" content="趣味でゲームプログラミングやTwitterクライアント開発を行っている大学生のHPです。" />
<meta name="twitter:image" content="https://toro-ponz.github.io/images/top.jpg" />
<meta name="twitter:url" content="https://toro-ponz.github.io/" />
<!-- Google Search Console用metaタグ -->
<meta name="google-site-verification" content="Nf00rIQF3WdW3RVfYJhW5BlqklJ9RkVehy0ZjBKdA5c" />
<link rel="stylesheet" type="text/css" href="/css/style.css">
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script type="text/javascript" src="/javascript/script.js"></script>
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<script>
(adsbygoogle = window.adsbygoogle || []).push({
google_ad_client: "ca-pub-2605423435370141",
enable_page_level_ads: true
});
</script>
<title>Software - とろゝ(@toro_ponz) on GitHub Pages</title>
</head>
<body>
<div id="header">
<div id="header-image">
<img src="/images/top.jpg">
</div>
<div id="title">
<span>とろゝのHP</span><img src="/images/menu.png" id="menu-btn">
</div>
</div>
<div id="menu">
<ul>
<li><a href="/">HOME</a></li>
<li><a href="/profile.html">PROFILE</a></li>
<li><a href="/repos.html">REPOSITORIES</a></li>
<li><a href="/software.html">SOFTWARE</a></li>
<li><a href="/others.html">OTHERS</a></li>
</ul>
</div>
<div id="contents">
<div id="content">
<h3>TweetGazer by とろゝ</h3>
<p>
Windows PC用のTwitterクライアントです。<br> ホームタイムラインだけでなく、リストや検索結果なども並べて表示できます。
</p>
<p>
<img src="/software/TweetGazer/TweetGazer.png"><br>
<a href="/software/TweetGazer/">詳細ページへ</a>
</p>
<h3>らふがき by とろゝ</h3>
<p>Web上で実行できるお絵描きアプリケーションです。</p>
<p>
<img src="/software/roughgaki/roughgaki.png"><br>
<a href="/software/roughgaki/">詳細ページへ</a>
</p>
<h3>かわいいジェネレーター</h3>
<p>一時の気の迷いで作った</p>
<p>
<img src="/software/cute-generator/cute-generator.png"><br>
<a href="/software/cute-generator/">詳細ページへ</a>
</p>
<h3>RhythmGame</h3>
<p>
キーボードかジョイスティックで遊べるシンプルなリズムゲームです。<br> Windows上で動作します。
</p>
<p>
<img src="/software/RhythmGame/RhythmGame.png"><br>
<a href="/software/RhythmGame/">詳細ページへ</a>
</p>
</div>
<div id="sidebar">
<div id="twitter-area">
<a class="twitter-timeline" data-height="500px" data-lang="ja" data-dnt="true" data-theme="light" data-link-color="#2B7BB9" href="https://twitter.com/toro_ponz"></a>
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
</div>
<div id="google-adsense-area">
</div>
</div>
<div class="clear"></div>
<div id="pagetop"><a>▲</a></div>
</div>
<div id="footer">
<p id="copyright">© 2021 とろゝ(@toro_ponz)</p>
</div>
</body>
</html>
| toro-ponz/toro-ponz.github.io | software.html | HTML | mit | 3,809 |
<img style="float:left; padding-right:1em;" src="/images/logo_blk.png"> <br><a href="https://twitter.com/patmeenan" target="_blank">Patrick Meenan</a> published his "WebPagetest Power Users" Velocity conference talk to YouTube (<a href="https://www.youtube.com/watch?v=6UeRMMI_IzI&index=7&list=PLWa0Ky8nXQTaFXpT_YNvLElTEpHUyaZi4" target="_blank">Part 1</a> and <a href="https://www.youtube.com/watch?v=euVYHee1f1M&index=8&list=PLWa0Ky8nXQTaFXpT_YNvLElTEpHUyaZi4" target="_blank">Part 2</a>). | JHand93/WebPerformanceTestSuite | webpagetest_2.16/www/tips_data/power-users.html | HTML | mit | 501 |
---
layout: offer
title: "Make an Offer | Kappy Sapce"
published: true
---
<section class="content offers">
<p> </p>
<h1 class="thin">Make an Offer</h1>
<p>Com mais um rebento a caminho, o espaço em casa começa a ficar um pouco limitado.</p>
<p>Decidi então fazer um levantamento de material velho e outro não tão velho. Se vires algo que te interessa manda-me PM, ou deixa mensagem aqui no Disquss</p>
<p>Gostas? Propõe tu o preço!!</p>
<ul class="listing">
{% for offer in site.data.offers %}
<li>
<h3>{{ offer.title }}</h3>
<div class="row">
<div class="col col-xs-12 col-lg-4">
<div class="wrapper">
<a target="_blank" href="{{ offer.image }}">
<img src="{{ offer.image }}" alt="{{ offer.title }}">
{% if offer.price %}
<div class="ribbon-wrapper-green">
<div class="ribbon-green">{{ offer.price }} €</div>
</div>
{% endif %}
</a>
</div>
</div>
<div class="col col-xs-12 col-lg-8">
<p>
{{ offer.description }}
</p>
</div>
</div>
</li>
{% endfor %}
</ul>
</section>
<div class="pull"></div>
{% include facebook.html %}
{% include twitter.html %}
<hr>
{% include disqus.html %}
| kappy/kappy.github.io | makeanoffer.html | HTML | mit | 1,271 |
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>string</title>
<link href="../../../../../images/logo-icon.svg" rel="icon" type="image/svg">
<link href="../../../../../styles/style.css" rel="Stylesheet">
<script type="text/javascript" src="../../../../../scripts/navigationLoader.js" async="async"></script>
<script type="text/javascript" src="../../../../../scripts/platformContentHandler.js" async="async"></script>
<script type="text/javascript" src="../../../../../scripts/sourceset_dependencies.js" async="async"></script>
<script type="text/javascript" src="../../../../../scripts/clipboard.js" async="async"></script>
<link href="../../../../../styles/jetbrains-mono.css" rel="Stylesheet">
<script>var pathToRoot = "../../../../../";</script>
</head>
<body>
<div id="container">
<div id="leftColumn">
<div id="logo"></div>
<div id="paneSearch"></div>
<div id="sideMenu"></div>
</div>
<div id="main">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div id="searchBar"></div>
<script type="text/javascript" src="../../../../../scripts/pages.js"></script>
<script type="text/javascript" src="../../../../../scripts/main.js"></script>
<div id="content" pageIds="com.netflix.spinnaker.orca.api.preconfigured.jobs/PreconfiguredStageParameter.ParameterType.string///PointingToDeclaration/">
<div class="breadcrumbs"><a href="../../../../index.html">orca-api</a>/<a href="../../../index.html">com.netflix.spinnaker.orca.api.preconfigured.jobs</a>/<a href="../../index.html">PreconfiguredStageParameter</a>/<a href="../index.html">ParameterType</a>/<a href="index.html">string</a></div>
<div class="cover ">
<h1 class="cover"><a data-name="string"></a><span>string</span></h1>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":orca-api:dokkaHtml/main"><div class="symbol monospace"><a href="index.html">string</a><span class="top-right-position"><span class="copy-icon"><svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M5 4H15V16H5V4ZM17 7H19V18V20H17H8V18H17V7Z" fill="black"/>
</svg></span><div class="copy-popup-wrapper popup-to-left"><svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M18 9C18 14 14 18 9 18C4 18 0 14 0 9C0 4 4 0 9 0C14 0 18 4 18 9ZM14.2 6.2L12.8 4.8L7.5 10.1L5.3 7.8L3.8 9.2L7.5 13L14.2 6.2Z" fill="#4DBB5F"/>
</svg><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
<div class="tabbedcontent">
<div class="tabs-section" tabs-section="tabs-section"></div>
<div class="tabs-section-body"></div>
</div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#container"><svg width="12" height="10" viewBox="0 0 12 10" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M11.3337 9.66683H0.666992L6.00033 3.66683L11.3337 9.66683Z" fill="black"/>
<path d="M0.666992 0.333496H11.3337V1.66683H0.666992V0.333496Z" fill="black"/>
</svg></a></span><span>© 2020 Copyright</span><span class="pull-right"><span>Sponsored and developed by dokka</span><a href="https://github.com/Kotlin/dokka"><span class="padded-icon"><svg width="8" height="8" viewBox="0 0 8 8" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M8 0H2.3949L4.84076 2.44586L0 7.28662L0.713376 8L5.55414 3.15924L8 5.6051V0Z" fill="black"/>
</svg></span></a></span></div>
</div>
</div>
</body>
</html>
| spinnaker/spinnaker.github.io | reference/api/service-plugin-apis/orca-api/master/html/orca-api/com.netflix.spinnaker.orca.api.preconfigured.jobs/-preconfigured-stage-parameter/-parameter-type/string/index.html | HTML | mit | 3,875 |
Date: Tue, 05 Nov 1996 00:24:02 GMT
Server: NCSA/1.4.1
Content-type: text/html
<HTML>
<HEAD>
<body bgcolor="#ffffff">
<TITLE> IEEE RAS Technical Committee on Robot Motion
and Path Planning </TITLE>
</HEAD>
<p>
<BODY>
<center> <H2> IEEE RAS Tech. Committee
on Robot Motion & Path Planning </center> </H2> <BR>
<H2> <center> Groups active in motion planning
research </center> </H2>
<H3> This is a partial list of people and organizations involved in
research on automatic motion planning. At this time, one name for
contact (noted by "c:") is given for each organization. The areas covered include
both theory and applications of motion planning methodology:
robotics, computational geometry, control systems, CAD-CAM design
etc. Those interested in adding, deleting, or correcting
information on this list, please send your messages to
<i> lumelsky@engr.wisc.edu</i>.
<p> In the future, we may want to provide more than just names and
addresses, so please add few words about your group: the name of the
group; your position; nature of work; any software that your group
can post so that people can try it; if available, a Web link to a
page with more information.
We expect this list to grow, both in volume and diversity of
information it provides. For example, one section to add is a
bulletin of events that are of interest to this group; those
interested in posting such information please send it to us. Advices
on how we can make this page more effective are most welcome.
</H3>
<!WA0><img alt="o" src="http://robios8.me.wisc.edu/icons/bar.gif"> <BR>
<BR>
<b>
AUSTRALIA
<UL> <LI> Australian National University, Canberra. c:
Jon Kieffer, jon.kieffer@anu.edu.au </A>
</UL>
CANADA <UL> <LI> McGill University, Montreal. c: Vincent Hayward,
hayward@cim.mcgill.ca </A>
<LI>Simon Fraser University, Burnaby, B.C. c: Kamal Gupta, kamal@cs.sfu.ca
</A>
</UL>
FRANCE
<UL>
<LI>INRIA-Grenoble. c: Christian Laugier, laugier@imag.fr</A>
<LI>
LAAS-CNRS, Toulouse. c: J.P. Laumond, jpl@laas.fr </A>
</UL>
GERMANY
<UL>
<LI>
German Aerospace Research Establishment, Wessling. c: G. Hirzinger,
gerd.hirzinger@dlr.de </A>
</UL>
GREECE
<UL>
<LI>
National Technical University of Athens. c: K. Kyriakopoulos,
kkyria@central.ntua.gr </A>
</UL>
INDIA
<UL>
<LI> Centre for Artificial Intelligence & Robotics,
Bangalore. c: M. Vidyasagar, sagar@cair.ernet.in
</A>
</UL>
ITALY
<UL>
<LI> Universita di Roma "La Sapienza". c: Allessandro De Luca,
adeluca@giannutri.caspur.it</A>
</UL>
ISRAEL
<UL>
<LI> Technion, Haifa. c: Ehud Rivlin
</A>
</UL>
JAPAN
<UL>
<LI> University of Tokyo. c: Suguru Arimoto,
arimoto@arimotolab.t.u-tokyo.ac.jp </A>
<LI> University of Nagoya. c: Toshio Fukuda,
d43131a@nucc.cc.nagoya-u.ac.jp </A>
</UL>
SPAIN
<UL>
<LI>
Jaume-I University, Castellon. c: Angel P. del Pobil,
pobil@inf.uji.es </A>
</UL>
SWEDEN
<UL> <LI> University of Linkoping. c: Bernt Nilsson,
berni@ikp.liu.se </A> </UL>
UNITED KINGDOM
<UL> <LI>
Oxford University. c: Stephen Cameron,
stephen.cameron@comlab.ox.ac.uk </A>
</UL>
USA
<UL>
<LI> California Institute of Technology, Pasadena. c: Joel Burdick,
jwb@robby.caltech.edu
<LI> Carnegie Mellon University, Pittsburg. c: Michael Erdmann,
me+@h.gp.cs.cmu.edu
<LI>
General Electric Research Center, Schenectady. c: Hsuan Chang,
changhs@crd.GE.COM </A> <BR>
<LI> Sandia Labs, Albuquerque. c: Yong K. Hwang, hwang@isrc.sandia.gov <BR>
<LI> <!WA1><A HREF="http://www-soe.stanford.edu/compsci/faculty/
Latombe_Jean-Claude.html"> Stanford University Robotics Lab. </A>
c: Jean-Claude Latombe, latombe@cs.stanford.edu <BR>
<LI>
<!WA2><A HREF="http://http.cs.berkeley.edu/csbrochure/faculty/canny.html">
University of California-Berkeley </A>. c: John Canny,
jfc@ernie.berkeley.edu <BR>
<LI> University of Illinois/Champaign-Urbana. c: Seth Hutchinson,
seth@cs.uiuc.edu <BR>
<LI> University of Massachusetts-Amherst. c: Roderic Grupen,
grupen@cs.umass.edu </A> <BR>
<LI> <!WA3><A HREF=" http://www.cs.umn.edu/Research/airvl">
University of Minnesota, Minneapolis. </A>
c: Maria Gini, gini@cs.umn.edu </A> <BR>
<LI> <!WA4><A HREF="http://robios8.me.wisc.edu"> University of Wisconsin
Robotics Lab, Madison. </A>
c: Vladimir Lumelsky, lumelsky@engr.wisc.edu <BR>
</UL>
<BR>
<center> <!WA5><A HREF="http://robios8.me.wisc.edu/index.html">
Back to Robotics Lab Home Page</A> </center>
</b>
</BODY>
</HTML>
| ML-SWAT/Web2KnowledgeBase | webkb/other/wisconsin/http:^^robios8.me.wisc.edu^~lumelsky^ieee-mot-plan.html | HTML | mit | 4,441 |
<!DOCTYPE html>
<!--[if IE]><![endif]-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Class FtpStateMachine<TStatus>.Transition
| FTP Server documentation </title>
<meta name="viewport" content="width=device-width">
<meta name="title" content="Class FtpStateMachine<TStatus>.Transition
| FTP Server documentation ">
<meta name="generator" content="docfx 2.43.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.html">
<meta property="docfx:tocrel" content="toc.html">
<meta property="docfx:rel" content="../">
</head>
<body data-spy="scroll" data-target="#affix" data-offset="120">
<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>
</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 class="container body-content">
<div id="search-results">
<div class="search-list"></div>
<div class="sr-items">
<p><i class="glyphicon glyphicon-refresh index-loading"></i></p>
</div>
<ul id="pagination"></ul>
</div>
</div>
<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 id="sidetoc"></div>
</div>
</div>
<div class="article row grid-right">
<div class="col-md-10">
<article class="content wrap" id="_content" data-uid="FubarDev.FtpServer.FtpStateMachine`1.Transition">
<h1 id="FubarDev_FtpServer_FtpStateMachine_1_Transition" data-uid="FubarDev.FtpServer.FtpStateMachine`1.Transition" class="text-break">Class FtpStateMachine<TStatus>.Transition
</h1>
<div class="markdown level0 summary"><p>A class representing a transition.</p>
</div>
<div class="markdown level0 conceptual"></div>
<div class="inheritance">
<h5>Inheritance</h5>
<div class="level0"><a class="xref" href="https://docs.microsoft.com/dotnet/api/system.object">Object</a></div>
<div class="level1"><span class="xref">FtpStateMachine<TStatus>.Transition</span></div>
</div>
<div class="inheritedMembers">
<h5>Inherited Members</h5>
<div>
<a class="xref" href="https://docs.microsoft.com/dotnet/api/system.object.equals#System_Object_Equals_System_Object_">Object.Equals(Object)</a>
</div>
<div>
<a class="xref" href="https://docs.microsoft.com/dotnet/api/system.object.equals#System_Object_Equals_System_Object_System_Object_">Object.Equals(Object, Object)</a>
</div>
<div>
<a class="xref" href="https://docs.microsoft.com/dotnet/api/system.object.gethashcode#System_Object_GetHashCode">Object.GetHashCode()</a>
</div>
<div>
<a class="xref" href="https://docs.microsoft.com/dotnet/api/system.object.gettype#System_Object_GetType">Object.GetType()</a>
</div>
<div>
<a class="xref" href="https://docs.microsoft.com/dotnet/api/system.object.memberwiseclone#System_Object_MemberwiseClone">Object.MemberwiseClone()</a>
</div>
<div>
<a class="xref" href="https://docs.microsoft.com/dotnet/api/system.object.referenceequals#System_Object_ReferenceEquals_System_Object_System_Object_">Object.ReferenceEquals(Object, Object)</a>
</div>
<div>
<a class="xref" href="https://docs.microsoft.com/dotnet/api/system.object.tostring#System_Object_ToString">Object.ToString()</a>
</div>
</div>
<h6><strong>Namespace</strong>: <a class="xref" href="FubarDev.FtpServer.html">FubarDev.FtpServer</a></h6>
<h6><strong>Assembly</strong>: FubarDev.FtpServer.Abstractions.dll</h6>
<h5 id="FubarDev_FtpServer_FtpStateMachine_1_Transition_syntax">Syntax</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">protected class Transition</code></pre>
</div>
<h3 id="constructors">Constructors
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/FubarDevelopment/FtpServer/new/master/docfx_project/apidoc/new?filename=FubarDev_FtpServer_FtpStateMachine_1_Transition__ctor__0__0_System_String_FubarDev_FtpServer_SecurityActionResult_.md&value=---%0Auid%3A%20FubarDev.FtpServer.FtpStateMachine%601.Transition.%23ctor(%600%2C%600%2CSystem.String%2CFubarDev.FtpServer.SecurityActionResult)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/FubarDevelopment/FtpServer/blob/master/src/FubarDev.FtpServer.Abstractions/FtpStateMachine.cs/#L193">View Source</a>
</span>
<a id="FubarDev_FtpServer_FtpStateMachine_1_Transition__ctor_" data-uid="FubarDev.FtpServer.FtpStateMachine`1.Transition.#ctor*"></a>
<h4 id="FubarDev_FtpServer_FtpStateMachine_1_Transition__ctor__0__0_System_String_FubarDev_FtpServer_SecurityActionResult_" data-uid="FubarDev.FtpServer.FtpStateMachine`1.Transition.#ctor(`0,`0,System.String,FubarDev.FtpServer.SecurityActionResult)">Transition(TStatus, TStatus, String, SecurityActionResult)</h4>
<div class="markdown level1 summary"><p>Initializes a new instance of the <a class="xref" href="FubarDev.FtpServer.FtpStateMachine-1.Transition.html">FtpStateMachine<TStatus>.Transition</a> class.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public Transition(TStatus source, TStatus target, string command, SecurityActionResult resultCode)</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">TStatus</span></td>
<td><span class="parametername">source</span></td>
<td><p>The source status.</p>
</td>
</tr>
<tr>
<td><span class="xref">TStatus</span></td>
<td><span class="parametername">target</span></td>
<td><p>The target status.</p>
</td>
</tr>
<tr>
<td><a class="xref" href="https://docs.microsoft.com/dotnet/api/system.string">String</a></td>
<td><span class="parametername">command</span></td>
<td><p>The trigger command.</p>
</td>
</tr>
<tr>
<td><a class="xref" href="FubarDev.FtpServer.SecurityActionResult.html">SecurityActionResult</a></td>
<td><span class="parametername">resultCode</span></td>
<td><p>The expected FTP code.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/FubarDevelopment/FtpServer/new/master/docfx_project/apidoc/new?filename=FubarDev_FtpServer_FtpStateMachine_1_Transition__ctor__0__0_System_String_System_Func_System_Int32_System_Boolean__.md&value=---%0Auid%3A%20FubarDev.FtpServer.FtpStateMachine%601.Transition.%23ctor(%600%2C%600%2CSystem.String%2CSystem.Func%7BSystem.Int32%2CSystem.Boolean%7D)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/FubarDevelopment/FtpServer/blob/master/src/FubarDev.FtpServer.Abstractions/FtpStateMachine.cs/#L224">View Source</a>
</span>
<a id="FubarDev_FtpServer_FtpStateMachine_1_Transition__ctor_" data-uid="FubarDev.FtpServer.FtpStateMachine`1.Transition.#ctor*"></a>
<h4 id="FubarDev_FtpServer_FtpStateMachine_1_Transition__ctor__0__0_System_String_System_Func_System_Int32_System_Boolean__" data-uid="FubarDev.FtpServer.FtpStateMachine`1.Transition.#ctor(`0,`0,System.String,System.Func{System.Int32,System.Boolean})">Transition(TStatus, TStatus, String, Func<Int32, Boolean>)</h4>
<div class="markdown level1 summary"><p>Initializes a new instance of the <a class="xref" href="FubarDev.FtpServer.FtpStateMachine-1.Transition.html">FtpStateMachine<TStatus>.Transition</a> class.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public Transition(TStatus source, TStatus target, string command, Func<int, bool> isCodeMatch)</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">TStatus</span></td>
<td><span class="parametername">source</span></td>
<td><p>The source status.</p>
</td>
</tr>
<tr>
<td><span class="xref">TStatus</span></td>
<td><span class="parametername">target</span></td>
<td><p>The target status.</p>
</td>
</tr>
<tr>
<td><a class="xref" href="https://docs.microsoft.com/dotnet/api/system.string">String</a></td>
<td><span class="parametername">command</span></td>
<td><p>The trigger command.</p>
</td>
</tr>
<tr>
<td><a class="xref" href="https://docs.microsoft.com/dotnet/api/system.func-2">Func</a><<a class="xref" href="https://docs.microsoft.com/dotnet/api/system.int32">Int32</a>, <a class="xref" href="https://docs.microsoft.com/dotnet/api/system.boolean">Boolean</a>></td>
<td><span class="parametername">isCodeMatch</span></td>
<td><p>A function to test if the code triggers this transition.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/FubarDevelopment/FtpServer/new/master/docfx_project/apidoc/new?filename=FubarDev_FtpServer_FtpStateMachine_1_Transition__ctor__0__0_System_String_System_Int32_.md&value=---%0Auid%3A%20FubarDev.FtpServer.FtpStateMachine%601.Transition.%23ctor(%600%2C%600%2CSystem.String%2CSystem.Int32)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/FubarDevelopment/FtpServer/blob/master/src/FubarDev.FtpServer.Abstractions/FtpStateMachine.cs/#L208">View Source</a>
</span>
<a id="FubarDev_FtpServer_FtpStateMachine_1_Transition__ctor_" data-uid="FubarDev.FtpServer.FtpStateMachine`1.Transition.#ctor*"></a>
<h4 id="FubarDev_FtpServer_FtpStateMachine_1_Transition__ctor__0__0_System_String_System_Int32_" data-uid="FubarDev.FtpServer.FtpStateMachine`1.Transition.#ctor(`0,`0,System.String,System.Int32)">Transition(TStatus, TStatus, String, Int32)</h4>
<div class="markdown level1 summary"><p>Initializes a new instance of the <a class="xref" href="FubarDev.FtpServer.FtpStateMachine-1.Transition.html">FtpStateMachine<TStatus>.Transition</a> class.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public Transition(TStatus source, TStatus target, string command, int hundredsRange)</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">TStatus</span></td>
<td><span class="parametername">source</span></td>
<td><p>The source status.</p>
</td>
</tr>
<tr>
<td><span class="xref">TStatus</span></td>
<td><span class="parametername">target</span></td>
<td><p>The target status.</p>
</td>
</tr>
<tr>
<td><a class="xref" href="https://docs.microsoft.com/dotnet/api/system.string">String</a></td>
<td><span class="parametername">command</span></td>
<td><p>The trigger command.</p>
</td>
</tr>
<tr>
<td><a class="xref" href="https://docs.microsoft.com/dotnet/api/system.int32">Int32</a></td>
<td><span class="parametername">hundredsRange</span></td>
<td><p>The hundreds range.</p>
</td>
</tr>
</tbody>
</table>
<h5 id="FubarDev_FtpServer_FtpStateMachine_1_Transition__ctor__0__0_System_String_System_Int32__remarks">Remarks</h5>
<div class="markdown level1 remarks"><p>The <code data-dev-comment-type="paramref" class="paramref">hundredsRange</code> is multiplied by 100 to get the FTP code range.</p>
</div>
<h3 id="properties">Properties
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/FubarDevelopment/FtpServer/new/master/docfx_project/apidoc/new?filename=FubarDev_FtpServer_FtpStateMachine_1_Transition_Source.md&value=---%0Auid%3A%20FubarDev.FtpServer.FtpStateMachine%601.Transition.Source%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/FubarDevelopment/FtpServer/blob/master/src/FubarDev.FtpServer.Abstractions/FtpStateMachine.cs/#L235">View Source</a>
</span>
<a id="FubarDev_FtpServer_FtpStateMachine_1_Transition_Source_" data-uid="FubarDev.FtpServer.FtpStateMachine`1.Transition.Source*"></a>
<h4 id="FubarDev_FtpServer_FtpStateMachine_1_Transition_Source" data-uid="FubarDev.FtpServer.FtpStateMachine`1.Transition.Source">Source</h4>
<div class="markdown level1 summary"><p>Gets the source status.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public TStatus Source { 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">TStatus</span></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/FubarDevelopment/FtpServer/new/master/docfx_project/apidoc/new?filename=FubarDev_FtpServer_FtpStateMachine_1_Transition_Target.md&value=---%0Auid%3A%20FubarDev.FtpServer.FtpStateMachine%601.Transition.Target%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/FubarDevelopment/FtpServer/blob/master/src/FubarDev.FtpServer.Abstractions/FtpStateMachine.cs/#L240">View Source</a>
</span>
<a id="FubarDev_FtpServer_FtpStateMachine_1_Transition_Target_" data-uid="FubarDev.FtpServer.FtpStateMachine`1.Transition.Target*"></a>
<h4 id="FubarDev_FtpServer_FtpStateMachine_1_Transition_Target" data-uid="FubarDev.FtpServer.FtpStateMachine`1.Transition.Target">Target</h4>
<div class="markdown level1 summary"><p>Gets the target status.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public TStatus Target { 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">TStatus</span></td>
<td></td>
</tr>
</tbody>
</table>
<h3 id="methods">Methods
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/FubarDevelopment/FtpServer/new/master/docfx_project/apidoc/new?filename=FubarDev_FtpServer_FtpStateMachine_1_Transition_IsMatch_System_String_.md&value=---%0Auid%3A%20FubarDev.FtpServer.FtpStateMachine%601.Transition.IsMatch(System.String)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/FubarDevelopment/FtpServer/blob/master/src/FubarDev.FtpServer.Abstractions/FtpStateMachine.cs/#L247">View Source</a>
</span>
<a id="FubarDev_FtpServer_FtpStateMachine_1_Transition_IsMatch_" data-uid="FubarDev.FtpServer.FtpStateMachine`1.Transition.IsMatch*"></a>
<h4 id="FubarDev_FtpServer_FtpStateMachine_1_Transition_IsMatch_System_String_" data-uid="FubarDev.FtpServer.FtpStateMachine`1.Transition.IsMatch(System.String)">IsMatch(String)</h4>
<div class="markdown level1 summary"><p>Returns <span class="xref">true</span> when this transition might be triggered by the given <code data-dev-comment-type="paramref" class="paramref">command</code>.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public bool IsMatch(string command)</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="https://docs.microsoft.com/dotnet/api/system.string">String</a></td>
<td><span class="parametername">command</span></td>
<td><p>The command to test for.</p>
</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><a class="xref" href="https://docs.microsoft.com/dotnet/api/system.boolean">Boolean</a></td>
<td><p><span class="xref">true</span> when this transition might be triggered by the given <code data-dev-comment-type="paramref" class="paramref">command</code>.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/FubarDevelopment/FtpServer/new/master/docfx_project/apidoc/new?filename=FubarDev_FtpServer_FtpStateMachine_1_Transition_IsMatch_System_String_System_Int32_.md&value=---%0Auid%3A%20FubarDev.FtpServer.FtpStateMachine%601.Transition.IsMatch(System.String%2CSystem.Int32)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/FubarDevelopment/FtpServer/blob/master/src/FubarDev.FtpServer.Abstractions/FtpStateMachine.cs/#L256">View Source</a>
</span>
<a id="FubarDev_FtpServer_FtpStateMachine_1_Transition_IsMatch_" data-uid="FubarDev.FtpServer.FtpStateMachine`1.Transition.IsMatch*"></a>
<h4 id="FubarDev_FtpServer_FtpStateMachine_1_Transition_IsMatch_System_String_System_Int32_" data-uid="FubarDev.FtpServer.FtpStateMachine`1.Transition.IsMatch(System.String,System.Int32)">IsMatch(String, Int32)</h4>
<div class="markdown level1 summary"><p>Returns <span class="xref">true</span> when this transition will be triggered by the given <code data-dev-comment-type="paramref" class="paramref">command</code> and <code data-dev-comment-type="paramref" class="paramref">code</code>.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public bool IsMatch(string command, int code)</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="https://docs.microsoft.com/dotnet/api/system.string">String</a></td>
<td><span class="parametername">command</span></td>
<td><p>The command to test for.</p>
</td>
</tr>
<tr>
<td><a class="xref" href="https://docs.microsoft.com/dotnet/api/system.int32">Int32</a></td>
<td><span class="parametername">code</span></td>
<td><p>The code to test for.</p>
</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><a class="xref" href="https://docs.microsoft.com/dotnet/api/system.boolean">Boolean</a></td>
<td><p><span class="xref">true</span> when this transition will be triggered by the given <code data-dev-comment-type="paramref" class="paramref">command</code> and <code data-dev-comment-type="paramref" class="paramref">code</code>.</p>
</td>
</tr>
</tbody>
</table>
</article>
</div>
<div class="hidden-sm col-md-2" role="complementary">
<div class="sideaffix">
<div class="contribution">
<ul class="nav">
<li>
<a href="https://github.com/FubarDevelopment/FtpServer/new/master/docfx_project/apidoc/new?filename=FubarDev_FtpServer_FtpStateMachine_1_Transition.md&value=---%0Auid%3A%20FubarDev.FtpServer.FtpStateMachine%601.Transition%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" class="contribution-link">Improve this Doc</a>
</li>
<li>
<a href="https://github.com/FubarDevelopment/FtpServer/blob/master/src/FubarDev.FtpServer.Abstractions/FtpStateMachine.cs/#L181" class="contribution-link">View Source</a>
</li>
</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>
<table border='0'><tr><td><span>Copyright © 2018 Fubar Development Junker<br>Generated by <strong>DocFX</strong></span></td><td><a rel='license' href='http://creativecommons.org/licenses/by-sa/4.0/'><img alt='Creative Commons License' style='border-width:0' src='https://i.creativecommons.org/l/by-sa/4.0/88x31.png'></a><br><span xmlns:dct='http://purl.org/dc/terms/' property='dct:title'>FluentMigrator Documentation</span> by <a xmlns:cc='http://creativecommons.org/ns#' href='https://fluentmigrator.github.io' property='cc:attributionName' rel='cc:attributionURL'>FluentMigrator Project</a> is licensed under a <a rel='license' href='http://creativecommons.org/licenses/by-sa/4.0/'>Creative Commons Attribution-ShareAlike 4.0 International License</a>.</td></tr></table>
</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>
| FubarDevelopment/FtpServer | docs/api/FubarDev.FtpServer.FtpStateMachine-1.Transition.html | HTML | mit | 26,437 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Coq bench</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../../..">Stable</a></li>
<li><a href=".">8.5.dev / plouffe 1.0.0</a></li>
<li class="active"><a href="">2015-01-31 05:35:57</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="../../../../../about.html">About</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href=".">« Up</a>
<h1>
plouffe
<small>
1.0.0
<span class="label label-info">Not compatible with this Coq</span>
</small>
</h1>
<p><em><script>document.write(moment("2015-01-31 05:35:57 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2015-01-31 05:35:57 UTC)</em><p>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>ruby lint.rb stable ../stable/packages/coq:plouffe/coq:plouffe.1.0.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
<dt>Output</dt>
<dd><pre>The package is valid.
</pre></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 --dry-run coq:plouffe.1.0.0 coq.8.5.dev</code></dd>
<dt>Return code</dt>
<dd>768</dd>
<dt>Duration</dt>
<dd>0 s</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.5.dev).
The following dependencies couldn't be met:
- coq:plouffe -> coq:ssreflect -> coq <= 8.4.dev+ltacprof
Your request can't be satisfied:
- Conflicting version constraints for coq
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq, to test if the problem was incompatibility with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --dry-run coq:plouffe.1.0.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>3 s</dd>
<dt>Output</dt>
<dd><pre>The following actions will be performed:
- remove coq.8.5.dev
=== 1 to remove ===
=-=- Removing Packages =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Removing coq.8.5.dev.
[WARNING] Directory /home/bench/.opam/system/lib/coq is not empty, not removing
The following actions will be performed:
- install coq.8.4.dev [required by coq:plouffe]
- install coq:ssreflect.1.5.0 [required by coq:plouffe]
- install coq:coquelicot.2.0.1 [required by coq:plouffe]
- install coq:plouffe.1.0.0
=== 4 to install ===
=-=- Synchronizing package archives -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
=-=- Installing packages =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Building coq.8.4.dev:
./configure -configdir /home/bench/.opam/system/lib/coq/config -mandir /home/bench/.opam/system/man -docdir /home/bench/.opam/system/doc -prefix /home/bench/.opam/system -usecamlp5 -camlp5dir /home/bench/.opam/system/lib/camlp5 -coqide no
make -j4
make install
Installing coq.8.4.dev.
Building coq:ssreflect.1.5.0:
make -j4
make install
Installing coq:ssreflect.1.5.0.
Building coq:coquelicot.2.0.1:
./configure
./remake -j4
./remake install
Installing coq:coquelicot.2.0.1.
Building coq:plouffe.1.0.0:
./configure.sh
make -j4
make install
Installing coq:plouffe.1.0.0.
</pre></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>Duration</dt>
<dd>0 s</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-old | clean/Linux-x86_64-4.02.1-1.2.0/stable/8.5.dev/plouffe/1.0.0/2015-01-31_05-35-57.html | HTML | mit | 7,127 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
{% if title %}
<title>Node + Stripe + Express - {{ title }}</title>
{% else %}
<title>Node + Stripe + Express</title>
{% endif %}
<!-- stylesheets -->
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootswatch/4.1.0/yeti/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="//maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="/css/main.css">
{% block css %}{% endblock %}
</head>
<body>
{% include "./partials/nav.html" %}
<div class="container">
{% include "./partials/flash.html" %}
<!-- Page Content -->
{% block content %}
{% endblock %}
</div>
<!-- scripts -->
<script type="text/javascript" src="//code.jquery.com/jquery-3.3.1.slim.min.js"></script>
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.0/umd/popper.min.js"></script>
<script type="text/javascript" src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js"></script>
<script src="https://js.stripe.com/v2/" type="text/javascript"></script>
<script type="text/javascript" src="/js/main.js"></script>
{% block js %}{% endblock %}
</body>
</html>
| mjhea0/node-stripe-charge | src/server/views/_base.html | HTML | mit | 1,516 |
<!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/images/photon/js/bootstrap/js/plugins/favicon.ico" />
<link rel="apple-touch-icon" href="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/images/photon/js/bootstrap/js/plugins/iosicon.png" />
<!-- DEVELOPMENT LESS -->
<!-- <link rel="stylesheet/less" href="css/photon.less" media="all" />
<link rel="stylesheet/less" href="css/photon-responsive.less" media="all" />
--> <!-- PRODUCTION CSS -->
<link rel="stylesheet" href="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/images/photon/js/bootstrap/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/images/photon/js/bootstrap/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/images/photon/js/bootstrap/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/images/photon/js/bootstrap/js/plugins/js/bootstrap/bootstrap.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/images/photon/js/bootstrap/js/plugins/js/plugins/modernizr.custom.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/images/photon/js/bootstrap/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/images/photon/js/bootstrap/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/images/photon/js/bootstrap/js/plugins/js/plugins/xbreadcrumbs.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/images/photon/js/bootstrap/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/images/photon/js/bootstrap/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/images/photon/js/bootstrap/js/plugins/js/plugins/charCount.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/images/photon/js/bootstrap/js/plugins/js/plugins/jquery.textareaCounter.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/images/photon/js/bootstrap/js/plugins/js/plugins/elrte.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/images/photon/js/bootstrap/js/plugins/js/plugins/elrte.en.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/images/photon/js/bootstrap/js/plugins/js/plugins/select2.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/images/photon/js/bootstrap/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/images/photon/js/bootstrap/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/images/photon/js/bootstrap/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/images/photon/js/bootstrap/js/plugins/js/plugins/jquery.form.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/images/photon/js/bootstrap/js/plugins/js/plugins/jquery.metadata.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/images/photon/js/bootstrap/js/plugins/js/plugins/jquery.mockjax.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/images/photon/js/bootstrap/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/images/photon/js/bootstrap/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/images/photon/js/bootstrap/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/images/photon/js/bootstrap/js/plugins/js/plugins/farbtastic.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/images/photon/js/bootstrap/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/images/photon/js/bootstrap/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/images/photon/js/bootstrap/js/plugins/js/plugins/jquery.jstree.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/images/photon/js/bootstrap/js/plugins/js/plugins/dataTables.bootstrap.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/images/photon/js/bootstrap/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/images/photon/js/bootstrap/js/plugins/js/plugins/jquery.mCustomScrollbar.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/images/photon/js/bootstrap/js/plugins/js/plugins/jquery.flot.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/images/photon/js/bootstrap/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/images/photon/js/bootstrap/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/images/photon/js/bootstrap/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/images/photon/js/bootstrap/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/images/photon/js/bootstrap/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/images/photon/js/bootstrap/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/images/photon/js/bootstrap/js/plugins/js/plugins/jquery.clock.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/images/photon/js/bootstrap/js/plugins/js/plugins/jquery.countdown.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/images/photon/js/bootstrap/js/plugins/js/plugins/jquery.jqtweet.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/images/photon/js/bootstrap/js/plugins/js/plugins/jquery.cookie.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/images/photon/js/bootstrap/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/images/photon/js/bootstrap/js/plugins/js/plugins/prettify/prettify.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/images/photon/js/bootstrap/js/plugins/js/plugins/bootstrapSwitch.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/images/photon/js/bootstrap/js/plugins/js/plugins/mfupload.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/images/photon/js/bootstrap/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/images/photon/js/bootstrap/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="less-1.3.1.min.js.html#">Sign Up »</a>
<a href="less-1.3.1.min.js.html#" class="btn btn-facebook"><i class="icon-fb"></i>Login with Facebook<i class="icon-fb-arrow"></i></a>
</div>
<div class="login-or">Or</div>
<div class="login-input-area">
<form method="POST" action="dashboard.php">
<span class="help-block">Login With Your Photon Account</span>
<input type="text" name="email" placeholder="Email">
<input type="password" name="password" placeholder="Password">
<button type="submit" class="btn btn-large btn-success btn-login">Login</button>
</form>
<a href="less-1.3.1.min.js.html#" class="forgot-pass">Forgot Your Password?</a>
</div>
</div>
</div>
</div>
</div>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-1936460-27']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</body>
</html>
| user-tony/photon-rails | lib/assets/css/css_compiled/@{photonImagePath}plugins/elrte/js/images/photon/js/bootstrap/js/plugins/less-1.3.1.min.js.html | HTML | mit | 16,147 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>exact-real-arithmetic: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.11.1 / exact-real-arithmetic - 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>
exact-real-arithmetic
<small>
8.8.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2021-10-19 05:32:36 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-10-19 05:32:36 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
coq 8.11.1 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/exact-real-arithmetic"
license: "LGPL 2.1"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/ExactRealArithmetic"]
depends: [
"ocaml"
"coq" {>= "8.8" & < "8.9~"}
]
tags: [ "keyword: correctness" "keyword: real numbers" "keyword: arithmetic" "category: Mathematics/Arithmetic and Number Theory/Real numbers" ]
authors: [ "Jérôme Creci" ]
bug-reports: "https://github.com/coq-contribs/exact-real-arithmetic/issues"
dev-repo: "git+https://github.com/coq-contribs/exact-real-arithmetic.git"
synopsis: "Exact Real Arithmetic"
description: """
This contribution contains a proof of correctness
of some exact real arithmetic algorithms from the PhD thesis of
Valérie Ménissier-Morain"""
flags: light-uninstall
url {
src:
"https://github.com/coq-contribs/exact-real-arithmetic/archive/v8.8.0.tar.gz"
checksum: "md5=3ea310ffd2c6637261005ca6fac2b190"
}
</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-exact-real-arithmetic.8.8.0 coq.8.11.1</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.11.1).
The following dependencies couldn't be met:
- coq-exact-real-arithmetic -> 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-exact-real-arithmetic.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.11.1/exact-real-arithmetic/8.8.0.html | HTML | mit | 7,005 |
<!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, shrink-to-fit=no">
<title>The Texas Tribune</title>
<base target='_parent'>
<link rel="dns-prefetch" href="https://www.google-analytics.com">
<link rel="dns-prefetch" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<!-- Start fonts -->
<script>
window.WebFontConfig = {
google: {families: ['Open Sans:300,400,700']},
timeout: 10000
};
</script>
<script async src="https://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js"></script>
<!-- End fonts -->
{% if IS_PRODUCTION %}
<style>{{ inject('styles/main.css') }}</style>
{% else %}
<link rel="stylesheet" href="{{ static('styles/main.css') }}">
{% endif %}
</head>
<body>
{% block content %}{% endblock content %}
{% block inline_data %}{% endblock inline_data %}
{% block scripts %}
<script defer src="https://pym.nprapps.org/pym.v1.min.js"></script>
<script defer src="{{ static('scripts/main.js') }}"></script>
{% endblock scripts %}
<!-- Google Analytics -->
<script>window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date;ga('create', 'UA-9827490-1', 'auto');ga('send', 'pageview');</script>
<script async src='https://www.google-analytics.com/analytics.js'></script>
<!-- End Google Analytics -->
</body>
</html>
| texastribune/faces-of-death-row | app/templates/base-embed.html | HTML | mit | 1,492 |
<html>
<head>
</head>
<body>
<h2>
Distinction Between Divine And Civill Worship
</h2>
<span class="oldenglish">
The
</span>
Worship
<span class="oldenglish">
we
</span>
exhibite
<span class="oldenglish">
to
</span>
<span class="oldenglish">
those
</span>
<span class="oldenglish">
we
</span>
<span class="french">
esteem
</span>
<span class="oldenglish">
to
</span>
<span class="oldenglish">
be
</span>
<span class="oldenglish">
but
</span>
men,
<span class="oldenglish">
as
</span>
<span class="oldenglish">
to
</span>
Kings,
<span class="oldenglish">
and
</span>
men
<span class="oldenglish">
in
</span>
Authority,
<span class="oldenglish">
is
</span>
Civill Worship:
<span class="oldenglish">
But
</span>
<span class="oldenglish">
the
</span>
worship
<span class="oldenglish">
we
</span>
exhibite
<span class="oldenglish">
to
</span>
<span class="oldenglish">
that
</span>
<span class="oldenglish">
which
</span>
<span class="oldenglish">
we
</span>
<span class="oldenglish">
think
</span>
<span class="oldenglish">
to
</span>
<span class="oldenglish">
bee
</span>
God, whatsoever
<span class="oldenglish">
the
</span>
words, ceremonies, gestures,
<span class="oldenglish">
or
</span>
<span class="oldenglish">
other
</span>
<span class="oldfrench">
actions
</span>
be,
<span class="oldenglish">
is
</span>
<span class="oldfrench">
Divine
</span>
Worship.
<span class="oldenglish">
To
</span>
<span class="oldenglish">
fall
</span>
prostrate
<span class="oldenglish">
before
</span>
a King,
<span class="oldenglish">
in
</span>
<span class="oldenglish">
him
</span>
<span class="oldenglish">
that
</span>
<span class="oldenglish">
thinks
</span>
<span class="oldenglish">
him
</span>
<span class="oldenglish">
but
</span>
a Man,
<span class="oldenglish">
is
</span>
<span class="oldenglish">
but
</span>
Civill Worship:
<span class="oldenglish">
And
</span>
<span class="oldenglish">
he
</span>
<span class="oldenglish">
that
</span>
<span class="oldenglish">
but
</span>
putteth
<span class="oldenglish">
off
</span>
<span class="oldenglish">
his
</span>
<span class="oldenglish">
hat
</span>
<span class="oldenglish">
in
</span>
<span class="oldenglish">
the
</span>
Church,
<span class="oldenglish">
for
</span>
<span class="oldenglish">
this
</span>
cause,
<span class="oldenglish">
that
</span>
<span class="oldenglish">
he
</span>
thinketh
<span class="oldenglish">
it
</span>
<span class="oldenglish">
the
</span>
<span class="oldenglish">
House
</span>
<span class="oldenglish">
of
</span>
God, worshippeth
<span class="oldenglish">
with
</span>
<span class="oldfrench">
Divine
</span>
Worship.
<span class="oldnorse">
They
</span>
<span class="oldenglish">
that
</span>
<span class="oldenglish">
seek
</span>
<span class="oldenglish">
the
</span>
<span class="oldfrench">
distinction
</span>
<span class="oldenglish">
of
</span>
<span class="oldfrench">
Divine
</span>
<span class="oldenglish">
and
</span>
Civill Worship,
<span class="english">
not
</span>
<span class="oldenglish">
in
</span>
<span class="oldenglish">
the
</span>
<span class="oldfrench">
intention
</span>
<span class="oldenglish">
of
</span>
<span class="oldenglish">
the
</span>
Worshipper,
<span class="oldenglish">
but
</span>
<span class="oldenglish">
in
</span>
<span class="oldenglish">
the
</span>
<span class="oldenglish">
Words
</span>
douleia,
<span class="oldenglish">
and
</span>
latreia,
<span class="oldfrench">
deceive
</span>
themselves.
<span class="oldenglish">
For
</span>
whereas
<span class="oldenglish">
there
</span>
<span class="oldenglish">
be
</span>
<span class="oldenglish">
two
</span>
<span class="oldfrench">
sorts
</span>
<span class="oldenglish">
of
</span>
Servants;
<span class="oldenglish">
that
</span>
sort,
<span class="oldenglish">
which
</span>
<span class="oldenglish">
is
</span>
<span class="oldenglish">
of
</span>
<span class="oldenglish">
those
</span>
<span class="oldenglish">
that
</span>
<span class="oldenglish">
are
</span>
<span class="americanenglish">
absolutely
</span>
<span class="oldenglish">
in
</span>
<span class="oldenglish">
the
</span>
power
<span class="oldenglish">
of
</span>
<span class="oldnorse">
their
</span>
Masters,
<span class="oldenglish">
as
</span>
Slaves taken
<span class="oldenglish">
in
</span>
war,
<span class="oldenglish">
and
</span>
<span class="oldnorse">
their
</span>
Issue,
<span class="oldenglish">
whose
</span>
<span class="oldenglish">
bodies
</span>
<span class="oldenglish">
are
</span>
<span class="english">
not
</span>
<span class="oldenglish">
in
</span>
<span class="oldnorse">
their
</span>
<span class="oldenglish">
own
</span>
power, (their
<span class="oldenglish">
lives
</span>
<span class="french">
depending
</span>
<span class="oldenglish">
on
</span>
<span class="oldenglish">
the
</span>
<span class="oldenglish">
Will
</span>
<span class="oldenglish">
of
</span>
<span class="oldnorse">
their
</span>
Masters,
<span class="oldenglish">
in
</span>
<span class="oldenglish">
such
</span>
<span class="oldfrench">
manner
</span>
<span class="oldenglish">
as
</span>
<span class="oldenglish">
to
</span>
<span class="oldfrench">
forfeit
</span>
<span class="oldnorse">
them
</span>
<span class="oldenglish">
upon
</span>
<span class="oldenglish">
the
</span>
<span class="oldenglish">
least
</span>
disobedience,)
<span class="oldenglish">
and
</span>
<span class="oldenglish">
that
</span>
<span class="oldenglish">
are
</span>
bought
<span class="oldenglish">
and
</span>
<span class="oldenglish">
sold
</span>
<span class="oldenglish">
as
</span>
Beasts,
<span class="oldenglish">
were
</span>
<span class="oldenglish">
called
</span>
Douloi,
<span class="oldenglish">
that
</span>
<span class="oldenglish">
is
</span>
properly, Slaves,
<span class="oldenglish">
and
</span>
<span class="oldnorse">
their
</span>
Service, Douleia:
<span class="oldenglish">
The
</span>
other,
<span class="oldenglish">
which
</span>
<span class="oldenglish">
is
</span>
<span class="oldenglish">
of
</span>
<span class="oldenglish">
those
</span>
<span class="oldenglish">
that
</span>
serve (for hire,
<span class="oldenglish">
or
</span>
<span class="oldenglish">
in
</span>
<span class="oldenglish">
hope
</span>
<span class="oldenglish">
of
</span>
benefit
<span class="oldenglish">
from
</span>
<span class="oldnorse">
their
</span>
Masters) voluntarily;
<span class="oldenglish">
are
</span>
<span class="oldenglish">
called
</span>
Thetes;
<span class="oldenglish">
that
</span>
is, Domestique Servants;
<span class="oldenglish">
to
</span>
<span class="oldenglish">
whose
</span>
<span class="oldfrench">
service
</span>
<span class="oldenglish">
the
</span>
<span class="oldfrench">
Masters
</span>
<span class="oldenglish">
have
</span>
<span class="oldenglish">
no
</span>
<span class="oldenglish">
further
</span>
right,
<span class="oldenglish">
than
</span>
<span class="oldenglish">
is
</span>
<span class="oldfrench">
contained
</span>
<span class="oldenglish">
in
</span>
<span class="oldenglish">
the
</span>
Covenants
<span class="oldenglish">
made
</span>
<span class="oldenglish">
betwixt
</span>
them.
<span class="oldenglish">
These
</span>
<span class="oldenglish">
two
</span>
<span class="oldenglish">
kinds
</span>
<span class="oldenglish">
of
</span>
<span class="oldfrench">
Servants
</span>
<span class="oldenglish">
have
</span>
<span class="oldenglish">
thus
</span>
<span class="oldenglish">
much
</span>
<span class="english">
common
</span>
<span class="oldenglish">
to
</span>
<span class="oldnorse">
them
</span>
both,
<span class="oldenglish">
that
</span>
<span class="oldnorse">
their
</span>
<span class="english">
labour
</span>
<span class="oldenglish">
is
</span>
appointed
<span class="oldnorse">
them
</span>
<span class="oldenglish">
by
</span>
another, whether,
<span class="oldenglish">
as
</span>
a Slave,
<span class="oldenglish">
or
</span>
a
<span class="latin">
voluntary
</span>
Servant:
<span class="oldenglish">
And
</span>
<span class="oldenglish">
the
</span>
<span class="oldenglish">
word
</span>
Latris,
<span class="oldenglish">
is
</span>
<span class="oldenglish">
the
</span>
<span class="latin">
general
</span>
<span class="oldenglish">
name
</span>
<span class="oldenglish">
of
</span>
both,
<span class="oldfrench">
signifying
</span>
<span class="oldenglish">
him
</span>
<span class="oldenglish">
that
</span>
worketh
<span class="oldenglish">
for
</span>
another, whether,
<span class="oldenglish">
as
</span>
a Slave,
<span class="oldenglish">
or
</span>
a
<span class="latin">
voluntary
</span>
Servant:
<span class="oldenglish">
So
</span>
<span class="oldenglish">
that
</span>
Latreia signifieth generally
<span class="oldenglish">
all
</span>
Service;
<span class="oldenglish">
but
</span>
Douleia
<span class="oldenglish">
the
</span>
<span class="oldfrench">
service
</span>
<span class="oldenglish">
of
</span>
Bondmen onely,
<span class="oldenglish">
and
</span>
<span class="oldenglish">
the
</span>
condition
<span class="oldenglish">
of
</span>
Slavery:
<span class="oldenglish">
And
</span>
<span class="oldenglish">
both
</span>
<span class="oldenglish">
are
</span>
used
<span class="oldenglish">
in
</span>
<span class="latin">
Scripture
</span>
(to signifie
<span class="oldenglish">
our
</span>
<span class="oldfrench">
Service
</span>
<span class="oldenglish">
of
</span>
God) promiscuously. Douleia,
<span class="french">
because
</span>
<span class="oldenglish">
we
</span>
<span class="oldenglish">
are
</span>
<span class="oldenglish">
Gods
</span>
Slaves; Latreia,
<span class="french">
because
</span>
<span class="oldenglish">
wee
</span>
Serve him:
<span class="oldenglish">
and
</span>
<span class="oldenglish">
in
</span>
<span class="oldenglish">
all
</span>
<span class="oldenglish">
kinds
</span>
<span class="oldenglish">
of
</span>
<span class="oldfrench">
Service
</span>
<span class="oldenglish">
is
</span>
contained,
<span class="english">
not
</span>
<span class="oldenglish">
onely
</span>
Obedience,
<span class="oldenglish">
but
</span>
<span class="oldenglish">
also
</span>
Worship,
<span class="oldenglish">
that
</span>
is,
<span class="oldenglish">
such
</span>
actions, gestures,
<span class="oldenglish">
and
</span>
words,
<span class="oldenglish">
as
</span>
signifie Honor.
</body>
</html> | charlesreid1/wordswordswords | etymology/html/leviathan665.html | HTML | mit | 12,168 |
<!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_25) on Wed Jun 18 14:11:18 BST 2014 -->
<title>org.vertx.java.core.eventbus Class Hierarchy</title>
<meta name="date" content="2014-06-18">
<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="org.vertx.java.core.eventbus Class Hierarchy";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li>Class</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="../../../../../org/vertx/java/core/dns/package-tree.html">Prev</a></li>
<li><a href="../../../../../org/vertx/java/core/file/package-tree.html">Next</a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/vertx/java/core/eventbus/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 org.vertx.java.core.eventbus</h1>
<span class="strong">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.lang.Throwable (implements java.io.Serializable)
<ul>
<li type="circle">java.lang.Exception
<ul>
<li type="circle">java.lang.RuntimeException
<ul>
<li type="circle">org.vertx.java.core.<a href="../../../../../org/vertx/java/core/VertxException.html" title="class in org.vertx.java.core"><span class="strong">VertxException</span></a>
<ul>
<li type="circle">org.vertx.java.core.eventbus.<a href="../../../../../org/vertx/java/core/eventbus/ReplyException.html" title="class in org.vertx.java.core.eventbus"><span class="strong">ReplyException</span></a></li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<h2 title="Interface Hierarchy">Interface Hierarchy</h2>
<ul>
<li type="circle">org.vertx.java.core.eventbus.<a href="../../../../../org/vertx/java/core/eventbus/EventBus.html" title="interface in org.vertx.java.core.eventbus"><span class="strong">EventBus</span></a></li>
<li type="circle">org.vertx.java.core.eventbus.<a href="../../../../../org/vertx/java/core/eventbus/Message.html" title="interface in org.vertx.java.core.eventbus"><span class="strong">Message</span></a><T></li>
</ul>
<h2 title="Enum Hierarchy">Enum Hierarchy</h2>
<ul>
<li type="circle">java.lang.Object
<ul>
<li type="circle">java.lang.Enum<E> (implements java.lang.Comparable<T>, java.io.Serializable)
<ul>
<li type="circle">org.vertx.java.core.eventbus.<a href="../../../../../org/vertx/java/core/eventbus/ReplyFailure.html" title="enum in org.vertx.java.core.eventbus"><span class="strong">ReplyFailure</span></a></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li>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="../../../../../org/vertx/java/core/dns/package-tree.html">Prev</a></li>
<li><a href="../../../../../org/vertx/java/core/file/package-tree.html">Next</a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/vertx/java/core/eventbus/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>
| AVGP/vertx-messaging-sample | vertx/api-docs/java/api/org/vertx/java/core/eventbus/package-tree.html | HTML | mit | 5,784 |
<section class="markdown">
<h1>
Rate
<span class="subtitle">评分</span>
<a class="edit-button" href="https://github.com/ant-design/ant-design/edit/master/components/rate/index.zh-CN.md">
<i class="anticon anticon-edit"></i>
</a>
</h1>
<section class="markdown">
<p>
评分组件。
</p>
<h2 id="何时使用">
<span>
何时使用
</span>
<a href="#何时使用" class="anchor">#</a>
</h2>
<ul>
<li>
<p>
对评价进行展示。
</p>
</li>
<li>
<p>
对事物进行快速的评级操作。
</p>
</li>
</ul>
</section>
<h2>
<span>代码演示</span>
<i class="anticon anticon-appstore code-box-expand-trigger" title="展开全部代码"></i>
</h2>
</section>
<ant-row [gutter]="16">
<ant-col [span]="12">
<section class="code-box" id="components-rate-demo-basic">
<section class="code-box-demo">
<ant-rate [(ngModel)]="example1.value1"></ant-rate>
<div class="mute-text" style="margin-top: 20px">
<p>结果值:{{ example1 | json }}</p>
</div>
</section>
<section class="code-box-meta markdown">
<div class="code-box-title">
<a href="#components-rate-demo-basic">基本</a>
<a class="edit-button" href="https://github.com/ant-design/ant-design/edit/master/components/rate/demo/basic.md">
<i class="anticon anticon-edit"></i>
</a>
</div>
<div>
<p>
最简单的用法。
</p>
</div>
<span class="code-expand-icon">
<img alt="expand code" src="https://gw.alipayobjects.com/zos/rmsportal/wSAkBuJFbdxsosKKpqyq.svg" class="code-expand-icon-show">
<img alt="expand code" src="https://gw.alipayobjects.com/zos/rmsportal/OpROPHYqWmrMDBFMZtKF.svg" class="code-expand-icon-hide">
</span>
</section>
</section>
<section class="code-box" id="components-rate-demo-text">
<section class="code-box-demo">
<span>
<ant-rate [(ngModel)]="example2.value1"></ant-rate>
<span *ngIf="example2.value1" class="ant-rate-text">{{example2.value1}} stars</span>
</span>
<div class="mute-text" style="margin-top: 20px">
<p>结果值:{{ example2 | json }}</p>
</div>
</section>
<section class="code-box-meta markdown">
<div class="code-box-title">
<a href="#components-rate-demo-text">文案展现</a>
<a class="edit-button" href="https://github.com/ant-design/ant-design/edit/master/components/rate/demo/text.md">
<i class="anticon anticon-edit"></i>
</a>
</div>
<div>
<p>
给评分组件加上文案展示。
</p>
</div>
<span class="code-expand-icon">
<img alt="expand code" src="https://gw.alipayobjects.com/zos/rmsportal/wSAkBuJFbdxsosKKpqyq.svg" class="code-expand-icon-show">
<img alt="expand code" src="https://gw.alipayobjects.com/zos/rmsportal/OpROPHYqWmrMDBFMZtKF.svg" class="code-expand-icon-hide">
</span>
</section>
</section>
<section class="code-box" id="components-rate-demo-character">
<section class="code-box-demo">
<ant-rate [(ngModel)]="example3.value1">
<ng-template #character>
<ant-icon type="heart"></ant-icon>
</ng-template>
</ant-rate>
<br>
<ant-rate [(ngModel)]="example3.value2" [allowHalf]="true">
<ng-template #character>
<span style="font-size: 36px">A</span>
</ng-template>
</ant-rate>
<br>
<ant-rate [(ngModel)]="example3.value3">
<ng-template #character>好</ng-template>
</ant-rate>
<div class="mute-text" style="margin-top: 20px">
<p>结果值:{{ example3 | json }}</p>
</div>
</section>
<section class="code-box-meta markdown">
<div class="code-box-title">
<a href="#components-rate-demo-character">其他字符</a>
<a class="edit-button" href="https://github.com/ant-design/ant-design/edit/master/components/rate/demo/character.md">
<i class="anticon anticon-edit"></i>
</a>
</div>
<div>
<p>
可以将星星替换为其他字符,比如字母,数字,字体图标甚至中文。
</p>
</div>
<span class="code-expand-icon">
<img alt="expand code" src="https://gw.alipayobjects.com/zos/rmsportal/wSAkBuJFbdxsosKKpqyq.svg" class="code-expand-icon-show">
<img alt="expand code" src="https://gw.alipayobjects.com/zos/rmsportal/OpROPHYqWmrMDBFMZtKF.svg" class="code-expand-icon-hide">
</span>
</section>
</section>
</ant-col>
<ant-col [span]="12">
<section class="code-box" id="components-rate-demo-half">
<section class="code-box-demo">
<ant-rate [(ngModel)]="example4.value1" [allowHalf]="true"></ant-rate>
<div class="mute-text" style="margin-top: 20px">
<p>结果值:{{ example4 | json }}</p>
</div>
</section>
<section class="code-box-meta markdown">
<div class="code-box-title">
<a href="#components-rate-demo-half">半星</a>
<a class="edit-button" href="https://github.com/ant-design/ant-design/edit/master/components/rate/demo/half.md">
<i class="anticon anticon-edit"></i>
</a>
</div>
<div>
<p>
支持选中半星。
</p>
</div>
<span class="code-expand-icon">
<img alt="expand code" src="https://gw.alipayobjects.com/zos/rmsportal/wSAkBuJFbdxsosKKpqyq.svg" class="code-expand-icon-show">
<img alt="expand code" src="https://gw.alipayobjects.com/zos/rmsportal/OpROPHYqWmrMDBFMZtKF.svg" class="code-expand-icon-hide">
</span>
</section>
</section>
<section class="code-box" id="components-rate-demo-disabled">
<section class="code-box-demo">
<ant-rate [(ngModel)]="example5.value1" [disabled]="true"></ant-rate>
<div class="mute-text" style="margin-top: 20px">
<p>结果值:{{ example5 | json }}</p>
</div>
</section>
<section class="code-box-meta markdown">
<div class="code-box-title">
<a href="#components-rate-demo-disabled">只读</a>
<a class="edit-button" href="https://github.com/ant-design/ant-design/edit/master/components/rate/demo/disabled.md">
<i class="anticon anticon-edit"></i>
</a>
</div>
<div>
<p>
只读,无法进行鼠标交互。
</p>
</div>
<span class="code-expand-icon">
<img alt="expand code" src="https://gw.alipayobjects.com/zos/rmsportal/wSAkBuJFbdxsosKKpqyq.svg" class="code-expand-icon-show">
<img alt="expand code" src="https://gw.alipayobjects.com/zos/rmsportal/OpROPHYqWmrMDBFMZtKF.svg" class="code-expand-icon-hide">
</span>
</section>
</section>
</ant-col>
</ant-row>
<section class="markdown api-container">
<h2 id="API">
<span>
API
</span>
<a href="#API" class="anchor">#</a>
</h2>
<table>
<thead>
<tr>
<th>
属性
</th>
<th>
说明
</th>
<th>
类型
</th>
<th>
默认值
</th>
</tr>
</thead>
<tbody>
<tr>
<td>
count
</td>
<td>
star 总数
</td>
<td>
number
</td>
<td>
5
</td>
</tr>
<tr>
<td>
change
</td>
<td>
选择时的事件
</td>
<td>
Event(value: number)
</td>
<td>
-
</td>
</tr>
<tr>
<td>
hoverChange
</td>
<td>
鼠标经过时数值变化的事件
</td>
<td>
Event(value: number)
</td>
<td>
-
</td>
</tr>
<tr>
<td>
allowHalf
</td>
<td>
是否允许半选
</td>
<td>
boolean
</td>
<td>
false
</td>
</tr>
<tr>
<td>
disabled
</td>
<td>
只读,无法进行交互
</td>
<td>
boolean
</td>
<td>
false
</td>
</tr>
<tr>
<td>
character
</td>
<td>
自定义字符
</td>
<td>
ng-template
</td>
<td>
<code><ant-icon type="star"></ant-icon></code>
</td>
</tr>
</tbody>
</table>
</section>
| fbchen/fire-ant-example | src/pages/fire-ant/rate/example.html | HTML | mit | 11,244 |
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, minimum-scale=1, initial-scale=1, user-scalable=yes">
<title>x-pages</title>
<script src="../webcomponentsjs/webcomponents-lite.js"></script>
<link rel="import" href="../iron-component-page/iron-component-page.html">
</head>
<body>
<iron-component-page src="x-pages.html"></iron-component-page>
</body>
</html>
| emilbillberg/x-pages | index.html | HTML | mit | 450 |
<!DOCTYPE html>
<html lang="en">
<!--
Copyright 2021 David Stein
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
--><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> stein | thesis </title><!-- Begin Jekyll SEO tag v2.6.1 -->
<meta name="generator" content="Jekyll v3.8.5" />
<meta property="og:title" content="thesis" />
<meta name="author" content="David Stein" />
<meta property="og:locale" content="en_US" />
<meta name="description" content="stein’s web site" />
<meta property="og:description" content="stein’s web site" />
<link rel="canonical" href="https://davidbstein.com/thesis" />
<meta property="og:url" content="https://davidbstein.com/thesis" />
<meta property="og:site_name" content="stein" />
<script type="application/ld+json">
{"description":"stein’s web site","author":{"@type":"Person","name":"David Stein"},"@type":"WebPage","url":"https://davidbstein.com/thesis","headline":"thesis","@context":"https://schema.org"}</script>
<!-- End Jekyll SEO tag -->
<link rel="stylesheet" href="/assets/main.css"><link type="application/atom+xml" rel="alternate" href="https://davidbstein.com/feed.xml" title="stein" /></head>
<body><header id="site-header">
<div id="header-background" ></div>
<nav>
<div class="title" >
<a href="/" >stein</a>
</div>
<ul >
<li ><a href="/blog">blog</a></li>
<li ><a href="/about">about</a></li>
</ul></div>
</nav>
</header>
<div id="header-underlay"></div>
<script>
/*for source and licence see https://github.com/davidbstein/header-hider */
!function(){var i=function(){if(this.scrollY=0,this.old_scroll=window.onscroll,this.header=document.getElementsByTagName("header")[0],null==this.header)throw"in order to use the header hider you must have a <header>";this.header.style.transition="margin-top 0.2s ease-out 0s;",this.header_height=header.offsetHeight,this.hidden=!1,this.hide=function(){this.header.style.marginTop=-this.header_height+"px",this.hidden=!0}.bind(this),this.unhide=function(){this.header.style.marginTop=0,this.hidden=!1}.bind(this),this.unhide(),window.onscroll=function(){this.old_scroll&&this.old_scroll();var i=window.pageYOffset;i<64||i<this.scrollY?this.unhide():this.hide(),this.scrollY=i}.bind(this)};window.onload?window.onload=function(h){(void 0)(h),i()}:window.onload=i}();
</script>
<main aria-label="Content">
<div class="wrapper">
<article class="post">
<header class="post-header">
<h1 class="post-title">thesis</h1>
</header>
<div class="post-content">
<p>In 2011, after completing my coursework and two drafts of my thesis, I dropped out to join <a href="dropbox.com">Dropbox</a> before their <a href="https://techcrunch.com/2011/07/12/dropbox-raising-massive-round-at-a-5b-plus-valuation/" target="_blank">first major round of fundraising</a>.</p>
<p><a href="/static/thesis.pdf" target="_blank">Here</a> is a copy of the last draft of my master’s thesis. I made some minor edits in 2013, but have otherwise resisted the urge to fix the many problems with the document.</p>
</div>
</article>
</div>
</main>
<footer>Copyright (c) David Stein</footer>
</body>
</html>
| davidbstein/davidbstein.com | _site/docs/thesis.html | HTML | mit | 4,252 |
<div class="well well-lg">
<form class="form-inline clearfix">
<input type="hidden" name="pageNumber" value="1">
<label for="i18nInfo-code">编码:</label>
<input type="text" name="code" class="input-small" id="i18nInfo-code">
<label for="i18nInfo-name">名称:</label>
<input type="text" name="name" class="input-small" id="i18nInfo-name">
<div class="btn-group pull-right" role="group">
<button name="search" data-page="1" type="submit" class="btn btn-primary"><i class="icon-search icon-white"></i>搜索</button>
<button type="reset" class="btn btn-default"><i class="icon-refresh"></i>清空搜索条件</button>
<% if (obj.permission_impData) { %>
<button name="impData" type="button" class="btn btn-default"><i class="icon-arrow-down"></i>导入</button>
<% } %>
<% if (obj.permission_expData) { %>
<button name="expData" type="button" class="btn btn-default"><i class="icon-arrow-up"></i>导出</button>
<% } %>
</div>
</form>
</div>
<div class="panel panel-default">
<div class="panel-heading clearfix">
<div class="btn-group pull-right" role="group">
<% if (obj.permission_add) { %>
<button name="addData" type="button" class="btn btn-primary btn-mini"><i class="icon-ok icon-white"></i>新增</button>
<% } %>
<% if (obj.permission_modify) { %>
<button name="modifyData" type="button" class="btn btn-info btn-mini"><i class="icon-repeat icon-white"></i>修改</button>
<% } %>
<% if (obj.permission_delete) { %>
<button name="removeData" type="button" class="btn btn-danger btn-mini"><i class="icon-remove icon-white"></i>删除</button>
<% } %>
</div>
<b>国际化信息列表</b>
</div>
<div class="table-responsive"></div>
</div>
| yht-fand/cardone-platform-web | app/configuration/i18nInfo/index.tpl.html | HTML | mit | 1,953 |
<!DOCTYPE html><html><head><title>https://usmanakhtar.github.io/category/%E6%95%99%E7%A8%8B/</title><link rel="canonical" href="https://usmanakhtar.github.io/category/%E6%95%99%E7%A8%8B/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=https://usmanakhtar.github.io/category/%E6%95%99%E7%A8%8B/" /></head></html> | usmanakhtar/usmanakhtar.github.io | category/教程/page/1/index.html | HTML | mit | 370 |
<html><body>
<h4>Windows 10 x64 (19041.388)</h4><br>
<h2>_PCW_BUFFER</h2>
<font face="arial">Symbol nt!_PCW_BUFFER not found.<br>
</font></body></html> | epikcraw/ggool | public/Windows 10 x64 (19041.388)/_PCW_BUFFER.html | HTML | mit | 155 |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no">
<link rel="shortcut icon" href="/favicon.ico" />
<title>DevourPower</title>
<style>
html, body, #viewDiv {
padding: 0;
margin: 0;
height: 100%;
width: 100%;
}
</style>
<link rel="stylesheet" href="https://js.arcgis.com/4.2/esri/css/main.css">
<script src="https://js.arcgis.com/4.2/"></script>
<script
src="https://code.jquery.com/jquery-3.1.1.min.js"
integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8="
crossorigin="anonymous"></script>
<script>
'use strict';
require([
'esri/Map',
'esri/views/MapView',
'esri/Graphic',
'esri/geometry/Point',
'esri/PopupTemplate',
'esri/symbols/SimpleMarkerSymbol',
'dojo/domReady!'
], function(Map, MapView, Graphic, Point, PopupTemplate, SimpleMarkerSymbol) {
var map = new Map({
basemap: 'streets'
});
var view = new MapView({
container: 'viewDiv', // Reference to the scene div created in step 5
map: map, // Reference to the map object created before the scene
zoom: 16, // Sets the zoom level based on level of detail (LOD)
center: [-119.85, 34.41] // Sets the center point of view in lon/lat
});
const greenMarker = new SimpleMarkerSymbol({
color: [0, 255, 0],
outline: { // autocasts as new SimpleLineSymbol()
color: [0, 0, 0],
width: 2
}
});
const redMarker = new SimpleMarkerSymbol({
color: [255, 0, 0],
outline: { // autocasts as new SimpleLineSymbol()
color: [0, 0, 0],
width: 2
}
});
$.get('/sellers', function(data) {
const points = data.map(p => {
if(!p.inventory) p.inventory = [];
p.inventory.forEach(i => {
p.info[i.name] = `${i.quantity} ${i.unit}`;
});
return new Graphic({
geometry: new Point({
latitude: p.coords[0],
longitude: p.coords[1]
}),
symbol: (p.inventory.length === 0) ? redMarker : greenMarker,
attributes: p.info,
popupTemplate: new PopupTemplate({ // autocasts as new PopupTemplate()
title: '{Name}',
content: [
{
type: 'text',
text: `<a href="javascript:void(0);" onclick="window.open(\'https://www.google.com/maps/place/${p.coords[0]},${p.coords[1]}')">Open in Google Maps</a>`
}, {
type: 'fields',
fieldInfos: p.inventory.map(i => { return {fieldName: i.name}; }),
},
]
})
});
});
view.graphics.addMany(points);
});
});
</script>
</head>
<body>
<div id="viewDiv"></div>
</body>
</html> | willshiao/sbhacks-2017 | api/pages/map.html | HTML | mit | 2,723 |
<!DOCTYPE html>
<html lang="en">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>lora imoti</title>
<!-- Bootstrap Core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="css/modern-business.css" rel="stylesheet">
<!-- Custom Fonts -->
<link href="font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="css/pgwslideshow.css" rel="stylesheet">
<link href="css/pgwslideshow.min.css" rel="stylesheet">
<link href="css/pgwslideshow_light.css" rel="stylesheet">
<link href="css/pgwslideshow_light.min.css" rel="stylesheet">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
<body>
<!-- Navigation -->
<nav class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html">Lora imoti</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li>
<a href="about.html">About</a>
</li>
<li>
<a href="team.html">Team</a>
</li>
<li>
<a href="services.html">Services</a>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Portfolio <b class="caret"></b></a>
<ul class="dropdown-menu">
<li>
<a href="portfolio-1-col.html">1 Column Portfolio</a>
</li>
<li>
<a href="portfolio-2-col.html">2 Column Portfolio</a>
</li>
<li>
<a href="portfolio-3-col.html">3 Column Portfolio</a>
</li>
<li>
<a href="portfolio-4-col.html">4 Column Portfolio</a>
</li>
</ul>
</li>
<li>
<a href="search.php">Search</a>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Top <b class="caret"></b></a>
<ul class="dropdown-menu">
<li>
<a href="naem.html">Naem</a>
</li>
<li>
<a href="prodava.html">Prodava</a>
</li>
</ul>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Naem <b class="caret"></b></a>
<ul class="dropdown-menu">
<li>
<a href="ednostaen.html">Ednostaen</a>
</li>
<li>
<a href="dvustaen.html">Dvustaen</a>
</li>
<li>
<a href="tristaen.html">Tristaen</a>
</li>
<li>
<a href="mnogostaen.html">Mnogostaen</a>
</li>
<li>
<a href="mezonet.html">Mezonet</a>
</li>
<li>
<a href="Ofis.html">Ofis</a>
</li>
<li>
<a href="magazin.html">Magazin</a>
</li>
<li>
<a href="zavedenie.html">Zavedenie</a>
</li>
<li>
<a href="kashta.html">Kashta</a>
</li>
<li>
<a href="sklad.html">Sklad</a>
</li>
</ul>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Prodava <b class="caret"></b></a>
<ul class="dropdown-menu">
<li>
<a href="1_Ednostaen.html">Ednostaen</a>
</li>
<li>
<a href="2_Dvustaen.html">Dvustaen</a>
</li>
<li>
<a href="3_Tristaen.html">Tristaen</a>
</li>
<li>
<a href="4_Mnogostaen.html">Mnogostaen</a>
</li>
<li>
<a href="5_Mezonet.html">Mezonet</a>
</li>
<li>
<a href="6_Ofis.html">Ofis</a>
</li>
<li>
<a href="7_Magazin.html">Magazin</a>
</li>
<li>
<a href="8_Zavedenie.html">Zavedenie</a>
</li>
<li>
<a href="9_Kashta.html">Kashta</a>
</li>
<li>
<a href="10_Sklad.html">Sklad</a>
</li>
</ul>
</li>
<li>
<a href="contact.html">Contact</a>
</li>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container -->
</nav>
<!-- About Section -->
<div class="row">
<div class="col-lg-12">
<h1 class="page-header">Prodava kashta
</h1>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-8">
<ul class="pgwSlideshow">
<li><img src="img/kashta-luks.jpg" alt="kashta-luks"data-description="Golden Gate Bridge"></li>
<li><img src="img/spalnq.jpg" alt="spalnq" ></li>
<li><img src="img/prozorec.jpg" alt="ofis"></li>
<li><img src="img/ofis.jpg" alt=""></li>
<li><img src="img/1.jpg" alt="1"></li>
<li><img src="img/holluk.jpg" alt="holluk"></li>
<li><img src="img/banq.jpg" alt="banq"></li>
<li><img src="img/dvor.jpg" alt="dvor"></li>
<li><img src="img/staq.jpg" alt="staq"></li>
<li><img src="img/kuhnq.jpg" alt="kuhnq"></li>
<li>
<a href="http://en.wikipedia.org/wiki/Monaco" target="_blank">
<img src="img/gosti.jpg" alt="gosti">
</a>
</li>
</ul>
</div>
<div class="col-md-4">
<h2> Prodava kashta</h2>
<table class="table table-bordered">
<tr>
<td> KVARTAL</td>
<td> <strong>malchika</strong></td>
</tr>
<tr>
<td> KVADRATURA</td>
<td> <strong>34kv.m</strong></td>
</tr>
<tr>
<td> ETAJ</td>
<td> <strong>1-3</strong></td>
</tr>
<tr>
<td> STROITELSTVO</td>
<td> <strong>tuhla</strong> </td>
</tr>
<tr>
<td>TEC</td>
<td> <strong>da</strong> </td>
</tr>
<tr>
<td> CENA</td>
<td> <strong>20000euro</strong></td>
</tr>
<tr>
<td> GARAJ</td>
<td> <strong>ne</strong></td>
</tr>
<tr>
<td> ASANSIOR</td>
<td> <strong>da</strong></td>
</tr>
<tr>
<td> OBZAVEJDANE</td>
<td> <strong>da</strong></td>
</tr>
</table>
<div class="col-md-12">
<div class="social text-center">
<a href="https://www.facebook.com/seta.agopqn" target="_blank">
<i class="fa fa-facebook fa-3x" aria-hidden="true"></i></a>
<a href="mailto:seta___agopqn@abv.bg"> <i class="fa fa-envelope-o fa-3x" aria-hidden="true"></i></a>
<a href="skype:profile_name?chat"> <i class="fa fa-skype fa-3x" aria-hidden="true"></i></a>
<a href="tel:+6494461709"><i class="fa fa-mobile fa-3x" aria-hidden="true"></i>
0888/305108</a></div></div>
<div claa="col-md-12">
<a href><i class="fa fa-map-marker fa-3x" aria-hidden="true"></i>
<a target="_blank" jstcache="2" href="https://www.google.bg/maps/place/%D1%83%D0%BB.+%E2%80%9E%D0%93%D0%B5%D0%BD%D0%B5%D1%80%D0%B0%D0%BB+%D0%94%D0%B0%D0%BD%D0%B0%D0%B8%D0%BB+%D0%9D%D0%B8%D0%BA%D0%BE%D0%BB%D0%B0%D0%B5%D0%B2%E2%80%9C+114,+4002+%D0%9F%D0%BB%D0%BE%D0%B2%D0%B4%D0%B8%D0%B2/@42.1445458,24.7253963,17z/data=!3m1!4b1!4m5!3m4!1s0x14acd1ce354c6b21:0x4826a8c8643e9252!8m2!3d42.1445418!4d24.727585" jsaction="mouseup:defaultCard.largerMap" class="google-maps-link">Vij kartata</a>
</div></div></div>
<div class="row">
<div class="col-md-12">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Suspendisse neque dui, feugiat a tellus sed, molestie
mattis diam. Vestibulum varius elit id sem finibus, sed
ornare justo varius. In pulvinar lacus ac magna feugiat
aliquet. Duis ut velit sed eros fringilla laoreet nec eu
lacus. Sed enim massa, sagittis at luctus et, laoreet
aliquet mauris. Nulla accumsan mauris odio, consequat
porttitor neque varius in. Sed ut congue purus, at
molestie tellus. Quisque eu varius diam, a venenatis
leo. Aliquam et velit a velit aliquet congue et vitae
ex.Sed placerat a felis a tempor. Pellentesque habitant
morbi tristique senectus et netus et malesuada fames ac
turpis egestas. Ut dapibus mauris sed ultricies semper.
Aenean a risus at neque fringilla mollis. Ut in
fermentum enim.</p>
</div>
</div>
</div>
<!-- jQuery -->
<script src="js/jquery.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="js/bootstrap.min.js"></script>
<script src="js/pgwslideshow.min.js"></script>
<script src="js/pgwslideshow.js"></script>
<script>
$(document).ready(function () {
$('.pgwSlideshow').pgwSlideshow();
});
</script>
</body>
</html>
| setaagopqn/sait | pr-kashta-1.html | HTML | mit | 14,221 |
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="トップエスイー">
<link rel="shortcut icon" href="../images/logo.png" type="image/png">
<link rel="icon" href="../images/logo.png" type="image/png">
<title>トップ エスイー</title>
<link rel="stylesheet" href="../lib/css/bootstrap-sandstone.min.css" media="screen">
<link rel="stylesheet" href="../lib/css/style.css" media="screen">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="../lib/js/bootstrap.min.js"></script>
<script src="../lib/pagebuilder-r3.php"></script>
<script src="../lib/pagebuilder-r3.js"></script>
<script>
function toggleDetail(id) {
var link = document.getElementById("box" + id);
var table = document.getElementById("table" + id);
if (table.style.display == "none") {
table.style.display = "flex";
link.innerHTML = "閉じる";
} else {
table.style.display = "none";
link.innerHTML = "プロフィール";
}
}
</script>
<style>
.submenu-curriculum {
display: block;
}
.submenu-collaboration {
display: none;
}
.submenu-admission {
display: none;
}
IMG.teacher {
width: 120px;
margin: 0 20px 0 20px;
}
H3 {
margin: 18px 0 0 0;
padding: 0;
font-size: 16pt;
}
.contorollink {
margin: 0 0 0 22px;
padding: 0;
font-size: 12px;
}
.affiliation {
margin: 0 0 0 14px;
color: dimgray;
}
DIV.itemtable {
display: flex;
flex-wrap: nowrap;
justify-content: flex-start;
align-items: flex-start;
flex-direction: column;
}
DIV.listitem {
display: flex;
flex-wrap: nowrap;
justify-content: flex-start;
align-items: flex-start;
flex-direction: row;
}
DIV.listlabel {
min-width: 120px;
max-width: 120px;
text-align: right;
vertical-align: top;
font-size: 12pt;
color: #696969;
font-weight: bold;
}
DIV.listdata {
text-align: left;
vertical-align: top;
font-size: 12pt;
}
</style>
</head>
<body style="padding-top:0px;">
<div id="nonsupport" style="background-color:black">
<div style="text-align:center;color:yellow">
If you see this, (1)the page is generating now, or (2)your browser has any issues.
In case of (1), the page is going to show just for a while.
If you see this in a long period, it might be (2) and you must use any supported web browser with Javascript
enabled.
</div>
<div style="text-align:center;color:yellow">
この表示が見えている場合,(1)ページ生成中であるか,(2)Webブラウザーに問題があります.
(1)の場合はしらばく待つとページが表示されます.長時間表示されていれば(2)の可能性が高く,
その場合は対応ブラウザーを使用しJavaScriptを有効にした上でお使い下さい.
</div>
</div>
<section class="row" style="display:none;">
<div class="container" style="background-color:#fff">
<h2>講師一覧(2022年度)</h2>
<hr>
<!--<p><a href="https://sp.topse.jp/web_teachers28.html" target="_blank">こちらをクリック[別ウインドウに表示]</a>して表示される講師一覧よりご覧ください.-->
<!--<br/><br/><br/><br/><br/><br/>-->
<!--</p>-->
<div data-im-control="enclosure">
<div data-im-control="repeater">
<h3>
<span data-im="teacherlist@teacher_name" style="font-weight: bold;"></span>
<span class="affiliation" data-im="teacherlist@affiliation"></span>
</h3>
<div class="contorollink">
<a href="javascript:toggleDetail($)" id="box"
data-im="teacherlist@teacher_id@$href teacherlist@teacher_id@#id">プロフィール</a>
</div>
<div id="table" data-im="teacherlist@teacher_id@#id" style="display:none;">
<div class="itemtable">
<div class="listitem">
<div class="listlabel">担当講義:</div>
<div class="listdata" data-im="teacherlist@subjects"></div>
</div>
<div class="listitem">
<div class="listlabel">所属・役職:</div>
<div class="listdata">
<span data-im="teacherlist@affiliation"></span>
<span data-im="teacherlist@title"></span>
</div>
</div>
<div class="listitem">
<div class="listlabel">研究分野:</div>
<div class="listdata" data-im="teacherlist@focus"></div>
</div>
<div class="listitem">
<div class="listlabel">ひとこと:</div>
<div class="listdata" data-im="teacherlist@introduce"></div>
</div>
</div>
<div>
<img src="https://sp.topse.jp/images/"
data-im="teacherlist@photofile@#src" class="teacher"/>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="row">
</section>
</body>
</html>
| topse-grace/topse-website | ja/curriculum-teachers.html | HTML | mit | 6,246 |
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<a class="navbar-brand" href="#">Navbar</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavAltMarkup" aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
<div class="navbar-nav">
<a class="nav-item nav-link active" href="#">Home <span class="sr-only">(current)</span></a>
<a class="nav-item nav-link" href="#">Features</a>
<a class="nav-item nav-link" href="#">Pricing</a>
<a class="nav-item nav-link disabled" href="#">Disabled</a>
</div>
</div>
</nav> | SylumMastropaolo/2017WebProgramming | jquery-mockup/_nav.html | HTML | mit | 853 |
<!DOCTYPE html>
<html>
<head>
<title>Explosion Effect</title>
<style>
/*Simple reset*/
* {margin: 0; padding: 0;}
h1 {
text-align: center;
}
div {
background: #DAE4F0;
font: 20px Gill Sans MT, Gill Sans, My Gill Sans, sans-serif;
height: 150px;
width: 100%;
text-align: center;
}
</style>
</head>
<body>
<h1>Click on window to explode elements</h1>
<div id="content1">Click to explode 1</div>
<div id="content2">Click to explode 2</div>
<div id="content3">Click to explode 3</div>
<div id="content4">Click to explode 4</div>
<div id="content5">Click to explode 5</div>
<div id="content6">Click to explode 6</div>
<div id="content7">Click to explode 7</div>
<div id="content8">Click to explode 8</div>
<div id="content9">Click to explode 9</div>
<div id="content10">Click to explode 10</div>
<div id="content11">Click to explode 11</div>
<div id="content12">Click to explode 12</div>
<script src="jsExplosion.js"></script>
</body>
</html>
| nikeyes/JsEasterEggs | JsExplosion/demo.html | HTML | mit | 992 |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Tab for a Cause</title>
<style>
html, body {
margin: 0px;
padding: 0px;
border: 0px;
width: 100%;
height: 100%;
overflow: hidden;
background: none;
}
.tab-iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
margin: 0px;
padding: 0px;
border: none;
}
#user-background {
opacity: 0;
transition: opacity 0.8s ease-in;
box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 120px inset;
background-repeat: no-repeat;
background-position: center;
background-attachment: fixed;
background-size: cover;
position: absolute;
top: 0;
bottom: 0;
right: 0;
left: 0;
width: 100vw;
height: 100vh;
z-index: -100;
}
#background-tint {
opacity: 0;
transition: opacity 0.8s ease-in;
position: absolute;
top: 0;
bottom: 0;
right: 0;
left: 0;
width: 100vw;
height: 100vh;
z-index: -99;
}
</style>
</head>
<body>
<iframe class='tab-iframe' src='https://tab.gladly.io/newtab/'></iframe>
<div id='user-background'></div>
<div id='background-tint'></div>
<script type='text/javascript' src='./js/newtab.js'></script>
</body>
</html>
| gladly-team/tab-extensions | src/shared/iframe.html | HTML | mit | 1,482 |
<div class="example-container mat-elevation-z8">
<md-table #table [dataSource]="dataSource">
<!--- Note that these columns can be defined in any order.
The actual rendered columns are set as a property on the row definition" -->
<!-- Position Column -->
<ng-container mdColumnDef="position">
<md-header-cell *mdHeaderCellDef> No. </md-header-cell>
<md-cell *mdCellDef="let element"> {{element.position}} </md-cell>
</ng-container>
<!-- Name Column -->
<ng-container mdColumnDef="name">
<md-header-cell *mdHeaderCellDef> Name </md-header-cell>
<md-cell *mdCellDef="let element"> {{element.name}} </md-cell>
</ng-container>
<!-- Weight Column -->
<ng-container mdColumnDef="weight">
<md-header-cell *mdHeaderCellDef> Weight </md-header-cell>
<md-cell *mdCellDef="let element"> {{element.weight}} </md-cell>
</ng-container>
<!-- Color Column -->
<ng-container mdColumnDef="symbol">
<md-header-cell *mdHeaderCellDef> Symbol </md-header-cell>
<md-cell *mdCellDef="let element"> {{element.symbol}} </md-cell>
</ng-container>
<md-header-row *mdHeaderRowDef="displayedColumns"></md-header-row>
<md-row *mdRowDef="let row; columns: displayedColumns;"></md-row>
</md-table>
</div> | ProximoSrl/WebProjectTemplate | Frontend/src/app/search-result-list/search-result-list.component.html | HTML | mit | 1,298 |
<!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 Denmark for National Map in 2014
">
<meta name="keywords" content="Denmark, National Map, 2014, 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 Denmark for National Map in 2014"/>
<meta property="og:image" content="/static/images/favicon.ico"/>
<title>Denmark / National Map (2014) | 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/denmark/">Denmark</a></li>
<li class="active">National Map</li>
</ol>
<section id="data-header">
<div class="row">
<div class="col-md-6">
<h1>
<a href="/dataset/map/" title="See more data on National Map in the Open Data Index">National Map</a> / <a href="/place/2014/" title="See more Index data in 2014">2014</a> <span class="place-openness" data-score="100">100% open</span>
</h1>
<h3>
<a href="/place/denmark/" title="See more data on Denmark in the Open Data Index">Denmark</a>
<div class="open-badge"><img src="http://assets.okfn.org/images/ok_buttons/od_80x15_blue.png" /></div>
</h3>
<!--div class="col-md-12 place-rank statistics">
<span class="">Denmark is ranked #1 for this dataset</span>
</div>
<div class="row relative">
<div class="col-md-1 change"><i class="fa fa-minus"></i></div>
<div class="col-md-11">
Denmark's Index ranking for national map has no change from #1 in 2014
</div>
</div-->
<div class="row navigate">
<div class="col-md-12">
<h4 class="inline">See other years</h4>
<div class=" inline">
<a class="" href="/place/denmark/map/" title="Current">Current</a>
<a class="" href="/place/denmark/map/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/denmark/map/2014/&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/denmark/map/2014/" class="btn btn-default facebook" target="_blank">
<i class="fa fa-facebook"></i> Facebook </a>
<a href="https://plus.google.com/share?url=/place/denmark/map/2014/" 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=2014&filter_dataset=map&panel_tools=false&panel_share=false&embed_title=Denmark ; National Map ; 2014&map_place=dk" 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=2014&filter_dataset=map&panel_tools=false&panel_share=false&embed_title=Denmark ; National Map ; 2014&map_place=dk" 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>This data category requires a high level national map. To satisfy this category, the following minimum criteria must be met:</p>
<ul>
<li>Scale of 1:250,000 (1 cm = 2.5km).</li>
<li>Markings of national roads</li>
<li>National borders</li>
<li>Marking of streams, rivers, lakes, mountains.</li>
<li>Updated at least once a year.</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="yes" 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? Yes(<a href="http://download.kortforsyningen.dk/content/vilkaar-og-betingelser">Here</a>) </li>
<li class="yes" 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? Yes </li>
<li class="yes" 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? Yes (shape, tab, gdb)
</li>
<li class="yes" 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? Yes </li>
<li class="yes" 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? Yes </li>
<li class="yes" 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? Yes published by Danish Geodata Agency (Geodatastyrelsen)</a>) </li>
<li class="yes" 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? Yes </li>
<li class="yes" 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? Yes (<a href="http://download.kortforsyningen.dk/">Here</a>) </li>
<li class="yes" 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? Yes </li>
</ul>
</div>
<div class="col-md-6">
<h4><strong>Details</strong></h4>
<p>A map of Denmark at the scale 1:200.000 is provided here: <a href="http://download.kortforsyningen.dk/content/danmark-1200000">http://download.kortforsyningen.dk/content/danmark-1200000</a></p>
<h4><strong>Reviewer comments</strong></h4>
<p>Expert review: additional research included.</p>
</div>
</div>
</section>
<section id="place-contributors">
<div class="row">
<h2>Contributors</h2>
<div class="col-md-6">
<h4>Reviewers</h4>
<ul>
<li>Daniela Mattern</li>
</ul>
</div>
<div class="col-md-6">
<h4>Submitters</h4>
<ul>
<li>Daniela Mattern</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/denmark/map/2014/index.html | HTML | mit | 21,823 |
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Class template buffer_iterator</title>
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
<link rel="home" href="../../index.html" title="Chapter 1. Boost.Compute">
<link rel="up" href="../../boost_compute/reference.html#header.boost.compute.iterator.buffer_iterator_hpp" title="Header <boost/compute/iterator/buffer_iterator.hpp>">
<link rel="prev" href="opengl_texture.html" title="Class opengl_texture">
<link rel="next" href="make_buffer_iterator.html" title="Function template make_buffer_iterator">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
<table cellpadding="2" width="100%"><tr>
<td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../../boost.png"></td>
<td align="center"><a href="../../../../../../index.html">Home</a></td>
<td align="center"><a href="../../../../../../libs/libraries.htm">Libraries</a></td>
<td align="center"><a href="http://www.boost.org/users/people.html">People</a></td>
<td align="center"><a href="http://www.boost.org/users/faq.html">FAQ</a></td>
<td align="center"><a href="../../../../../../more/index.htm">More</a></td>
</tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="opengl_texture.html"><img src="../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../boost_compute/reference.html#header.boost.compute.iterator.buffer_iterator_hpp"><img src="../../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="make_buffer_iterator.html"><img src="../../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
<div class="refentry">
<a name="boost.compute.buffer_iterator"></a><div class="titlepage"></div>
<div class="refnamediv">
<h2><span class="refentrytitle">Class template buffer_iterator</span></h2>
<p>boost::compute::buffer_iterator — An iterator for values in a buffer. </p>
</div>
<h2 xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv-title">Synopsis</h2>
<div xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv"><pre class="synopsis"><span class="comment">// In header: <<a class="link" href="../../boost_compute/reference.html#header.boost.compute.iterator.buffer_iterator_hpp" title="Header <boost/compute/iterator/buffer_iterator.hpp>">boost/compute/iterator/buffer_iterator.hpp</a>>
</span><span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> T<span class="special">></span>
<span class="keyword">class</span> <a class="link" href="buffer_iterator.html" title="Class template buffer_iterator">buffer_iterator</a> <span class="special">{</span>
<span class="keyword">public</span><span class="special">:</span>
<span class="comment">// types</span>
<span class="keyword">typedef</span> <span class="emphasis"><em><span class="identifier">unspecified</span></em></span> <a name="boost.compute.buffer_iterator.super_type"></a><span class="identifier">super_type</span><span class="special">;</span>
<span class="keyword">typedef</span> <span class="identifier">super_type</span><span class="special">::</span><span class="identifier">reference</span> <a name="boost.compute.buffer_iterator.reference"></a><span class="identifier">reference</span><span class="special">;</span>
<span class="keyword">typedef</span> <span class="identifier">super_type</span><span class="special">::</span><span class="identifier">difference_type</span> <a name="boost.compute.buffer_iterator.difference_type"></a><span class="identifier">difference_type</span><span class="special">;</span>
<span class="comment">// <a class="link" href="buffer_iterator.html#boost.compute.buffer_iteratorconstruct-copy-destruct">construct/copy/destruct</a></span>
<a class="link" href="buffer_iterator.html#idm45822165543584-bb"><span class="identifier">buffer_iterator</span></a><span class="special">(</span><span class="special">)</span><span class="special">;</span>
<a class="link" href="buffer_iterator.html#idm45822165543296-bb"><span class="identifier">buffer_iterator</span></a><span class="special">(</span><span class="keyword">const</span> <span class="identifier">buffer</span> <span class="special">&</span><span class="special">,</span> <span class="identifier">size_t</span><span class="special">)</span><span class="special">;</span>
<a class="link" href="buffer_iterator.html#idm45822165541632-bb"><span class="identifier">buffer_iterator</span></a><span class="special">(</span><span class="keyword">const</span> <a class="link" href="buffer_iterator.html" title="Class template buffer_iterator">buffer_iterator</a><span class="special"><</span> <span class="identifier">T</span> <span class="special">></span> <span class="special">&</span><span class="special">)</span><span class="special">;</span>
<a class="link" href="buffer_iterator.html" title="Class template buffer_iterator">buffer_iterator</a><span class="special"><</span> <span class="identifier">T</span> <span class="special">></span> <span class="special">&</span> <a class="link" href="buffer_iterator.html#idm45822165540208-bb"><span class="keyword">operator</span><span class="special">=</span></a><span class="special">(</span><span class="keyword">const</span> <a class="link" href="buffer_iterator.html" title="Class template buffer_iterator">buffer_iterator</a><span class="special"><</span> <span class="identifier">T</span> <span class="special">></span> <span class="special">&</span><span class="special">)</span><span class="special">;</span>
<a class="link" href="buffer_iterator.html#idm45822165538208-bb"><span class="special">~</span><span class="identifier">buffer_iterator</span></a><span class="special">(</span><span class="special">)</span><span class="special">;</span>
<span class="comment">// <a class="link" href="buffer_iterator.html#idm45822165550576-bb">public member functions</a></span>
<span class="keyword">const</span> <span class="identifier">buffer</span> <span class="special">&</span> <a class="link" href="buffer_iterator.html#idm45822165550016-bb"><span class="identifier">get_buffer</span></a><span class="special">(</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span>
<span class="identifier">size_t</span> <a class="link" href="buffer_iterator.html#idm45822165548896-bb"><span class="identifier">get_index</span></a><span class="special">(</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span>
<span class="identifier">T</span> <a class="link" href="buffer_iterator.html#idm45822165547776-bb"><span class="identifier">read</span></a><span class="special">(</span><span class="identifier">command_queue</span> <span class="special">&</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span>
<span class="keyword">void</span> <a class="link" href="buffer_iterator.html#idm45822165545968-bb"><span class="identifier">write</span></a><span class="special">(</span><span class="keyword">const</span> <span class="identifier">T</span> <span class="special">&</span><span class="special">,</span> <span class="identifier">command_queue</span> <span class="special">&</span><span class="special">)</span><span class="special">;</span>
<span class="special">}</span><span class="special">;</span></pre></div>
<div class="refsect1">
<a name="idm46604973881888"></a><h2>Description</h2>
<p>The <a class="link" href="buffer_iterator.html" title="Class template buffer_iterator">buffer_iterator</a> class iterates over values in a memory buffer on a compute device. It is the most commonly used iterator in Boost.Compute and is used by the <a class="link" href="vector.html" title="Class template vector">vector<T></a> and <a class="link" href="array.html" title="Class template array">array<T, N></a> container classes.</p>
<p>Buffer iterators store a reference to a memory buffer along with an index into that memory buffer.</p>
<p>The <a class="link" href="buffer_iterator.html" title="Class template buffer_iterator">buffer_iterator</a> class allows for arbitrary OpenCL memory objects (including those created outside of Boost.Compute) to be used with the Boost.Compute algorithms (such as transform() and sort()). For example, to reverse the contents of an OpenCL memory buffer containing a set of integers:</p>
<pre class="programlisting"></pre>
<p> </p>
<p><span class="bold"><strong>See Also:</strong></span></p>
<p>buffer, make_buffer_iterator() </p>
<p>
</p>
<p>
</p>
<div class="refsect2">
<a name="idm46604973874848"></a><h3>
<a name="boost.compute.buffer_iteratorconstruct-copy-destruct"></a><code class="computeroutput">buffer_iterator</code>
public
construct/copy/destruct</h3>
<div class="orderedlist"><ol class="orderedlist" type="1">
<li class="listitem"><pre class="literallayout"><a name="idm45822165543584-bb"></a><span class="identifier">buffer_iterator</span><span class="special">(</span><span class="special">)</span><span class="special">;</span></pre></li>
<li class="listitem"><pre class="literallayout"><a name="idm45822165543296-bb"></a><span class="identifier">buffer_iterator</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">buffer</span> <span class="special">&</span> buffer<span class="special">,</span> <span class="identifier">size_t</span> index<span class="special">)</span><span class="special">;</span></pre></li>
<li class="listitem"><pre class="literallayout"><a name="idm45822165541632-bb"></a><span class="identifier">buffer_iterator</span><span class="special">(</span><span class="keyword">const</span> <a class="link" href="buffer_iterator.html" title="Class template buffer_iterator">buffer_iterator</a><span class="special"><</span> <span class="identifier">T</span> <span class="special">></span> <span class="special">&</span> other<span class="special">)</span><span class="special">;</span></pre></li>
<li class="listitem"><pre class="literallayout"><a class="link" href="buffer_iterator.html" title="Class template buffer_iterator">buffer_iterator</a><span class="special"><</span> <span class="identifier">T</span> <span class="special">></span> <span class="special">&</span> <a name="idm45822165540208-bb"></a><span class="keyword">operator</span><span class="special">=</span><span class="special">(</span><span class="keyword">const</span> <a class="link" href="buffer_iterator.html" title="Class template buffer_iterator">buffer_iterator</a><span class="special"><</span> <span class="identifier">T</span> <span class="special">></span> <span class="special">&</span> other<span class="special">)</span><span class="special">;</span></pre></li>
<li class="listitem"><pre class="literallayout"><a name="idm45822165538208-bb"></a><span class="special">~</span><span class="identifier">buffer_iterator</span><span class="special">(</span><span class="special">)</span><span class="special">;</span></pre></li>
</ol></div>
</div>
<div class="refsect2">
<a name="idm46604973838256"></a><h3>
<a name="idm45822165550576-bb"></a><code class="computeroutput">buffer_iterator</code> public member functions</h3>
<div class="orderedlist"><ol class="orderedlist" type="1">
<li class="listitem"><pre class="literallayout"><span class="keyword">const</span> <span class="identifier">buffer</span> <span class="special">&</span> <a name="idm45822165550016-bb"></a><span class="identifier">get_buffer</span><span class="special">(</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span></pre></li>
<li class="listitem"><pre class="literallayout"><span class="identifier">size_t</span> <a name="idm45822165548896-bb"></a><span class="identifier">get_index</span><span class="special">(</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span></pre></li>
<li class="listitem"><pre class="literallayout"><span class="identifier">T</span> <a name="idm45822165547776-bb"></a><span class="identifier">read</span><span class="special">(</span><span class="identifier">command_queue</span> <span class="special">&</span> queue<span class="special">)</span> <span class="keyword">const</span><span class="special">;</span></pre></li>
<li class="listitem"><pre class="literallayout"><span class="keyword">void</span> <a name="idm45822165545968-bb"></a><span class="identifier">write</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">T</span> <span class="special">&</span> value<span class="special">,</span> <span class="identifier">command_queue</span> <span class="special">&</span> queue<span class="special">)</span><span class="special">;</span></pre></li>
</ol></div>
</div>
</div>
</div>
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
<td align="left"></td>
<td align="right"><div class="copyright-footer">Copyright © 2013, 2014 Kyle Lutz<p>
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)
</p>
</div></td>
</tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="opengl_texture.html"><img src="../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../boost_compute/reference.html#header.boost.compute.iterator.buffer_iterator_hpp"><img src="../../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="make_buffer_iterator.html"><img src="../../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
</body>
</html>
| davehorton/drachtio-server | deps/boost_1_77_0/libs/compute/doc/html/boost/compute/buffer_iterator.html | HTML | mit | 14,324 |
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>test_each (ActionLinksTest)</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../.././rdoc-style.css" type="text/css" media="screen" />
</head>
<body class="standalone-code">
<pre><span class="ruby-comment cmt"># File vendor/plugins/active_scaffold/test/data_structures/action_links_test.rb, line 52</span>
<span class="ruby-keyword kw">def</span> <span class="ruby-identifier">test_each</span>
<span class="ruby-ivar">@links</span>.<span class="ruby-identifier">add</span> <span class="ruby-value str">'foo'</span>, <span class="ruby-identifier">:type</span> =<span class="ruby-operator">></span> <span class="ruby-identifier">:table</span>
<span class="ruby-ivar">@links</span>.<span class="ruby-identifier">add</span> <span class="ruby-value str">'bar'</span>, <span class="ruby-identifier">:type</span> =<span class="ruby-operator">></span> <span class="ruby-identifier">:record</span>
<span class="ruby-ivar">@links</span>.<span class="ruby-identifier">each</span> <span class="ruby-identifier">:table</span> <span class="ruby-keyword kw">do</span> <span class="ruby-operator">|</span><span class="ruby-identifier">link</span><span class="ruby-operator">|</span>
<span class="ruby-identifier">assert_equal</span> <span class="ruby-value str">'foo'</span>, <span class="ruby-identifier">link</span>.<span class="ruby-identifier">action</span>
<span class="ruby-keyword kw">end</span>
<span class="ruby-ivar">@links</span>.<span class="ruby-identifier">each</span> <span class="ruby-identifier">:record</span> <span class="ruby-keyword kw">do</span> <span class="ruby-operator">|</span><span class="ruby-identifier">link</span><span class="ruby-operator">|</span>
<span class="ruby-identifier">assert_equal</span> <span class="ruby-value str">'bar'</span>, <span class="ruby-identifier">link</span>.<span class="ruby-identifier">action</span>
<span class="ruby-keyword kw">end</span>
<span class="ruby-keyword kw">end</span></pre>
</body>
</html> | NESCent/max-bodysize-evol | doc/rdoc/classes/ActionLinksTest.src/M000012.html | HTML | mit | 2,265 |
<html><img border=0 src=85977-49-7.txt alt=85977-49-7.txt></img><body>
"x"
"1" "KAZIUS, J, MCGUIRE, R AND BURSI, R. DERIVATION AND VALIDATION OF TOXICOPHORES FOR MUTAGENICITY PREDICTION. J. MED. CHEM. 48: 312-320, 2005"
</body></html>
| andrewdefries/Ames_ToxBenchmark | 85977-49-7.txt.html | HTML | mit | 235 |
<!DOCTYPE html>
<html xmlns:msxsl="urn:schemas-microsoft-com:xslt">
<head>
<meta content="en-us" http-equiv="Content-Language" />
<meta content="text/html; charset=utf-16" http-equiv="Content-Type" />
<title _locid="PortabilityAnalysis0">.NET Portability Report</title>
<style>
/* Body style, for the entire document */
body {
background: #F3F3F4;
color: #1E1E1F;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
padding: 0;
margin: 0;
}
/* Header1 style, used for the main title */
h1 {
padding: 10px 0px 10px 10px;
font-size: 21pt;
background-color: #E2E2E2;
border-bottom: 1px #C1C1C2 solid;
color: #201F20;
margin: 0;
font-weight: normal;
}
/* Header2 style, used for "Overview" and other sections */
h2 {
font-size: 18pt;
font-weight: normal;
padding: 15px 0 5px 0;
margin: 0;
}
/* Header3 style, used for sub-sections, such as project name */
h3 {
font-weight: normal;
font-size: 15pt;
margin: 0;
padding: 15px 0 5px 0;
background-color: transparent;
}
h4 {
font-weight: normal;
font-size: 12pt;
margin: 0;
padding: 0 0 0 0;
background-color: transparent;
}
/* Color all hyperlinks one color */
a {
color: #1382CE;
}
/* Paragraph text (for longer informational messages) */
p {
font-size: 10pt;
}
/* Table styles */
table {
border-spacing: 0 0;
border-collapse: collapse;
font-size: 10pt;
}
table th {
background: #E7E7E8;
text-align: left;
text-decoration: none;
font-weight: normal;
padding: 3px 6px 3px 6px;
}
table td {
vertical-align: top;
padding: 3px 6px 5px 5px;
margin: 0px;
border: 1px solid #E7E7E8;
background: #F7F7F8;
}
.NoBreakingChanges {
color: darkgreen;
font-weight:bold;
}
.FewBreakingChanges {
color: orange;
font-weight:bold;
}
.ManyBreakingChanges {
color: red;
font-weight:bold;
}
.BreakDetails {
margin-left: 30px;
}
.CompatMessage {
font-style: italic;
font-size: 10pt;
}
.GoodMessage {
color: darkgreen;
}
/* Local link is a style for hyperlinks that link to file:/// content, there are lots so color them as 'normal' text until the user mouse overs */
.localLink {
color: #1E1E1F;
background: #EEEEED;
text-decoration: none;
}
.localLink:hover {
color: #1382CE;
background: #FFFF99;
text-decoration: none;
}
/* Center text, used in the over views cells that contain message level counts */
.textCentered {
text-align: center;
}
/* The message cells in message tables should take up all avaliable space */
.messageCell {
width: 100%;
}
/* Padding around the content after the h1 */
#content {
padding: 0px 12px 12px 12px;
}
/* The overview table expands to width, with a max width of 97% */
#overview table {
width: auto;
max-width: 75%;
}
/* The messages tables are always 97% width */
#messages table {
width: 97%;
}
/* All Icons */
.IconSuccessEncoded, .IconInfoEncoded, .IconWarningEncoded, .IconErrorEncoded {
min-width: 18px;
min-height: 18px;
background-repeat: no-repeat;
background-position: center;
}
/* Success icon encoded */
.IconSuccessEncoded {
/* Note: Do not delete the comment below. It is used to verify the correctness of the encoded image resource below before the product is released */
/* [---XsltValidateInternal-Base64EncodedImage:IconSuccess#Begin#background-image: url(data:image/png;base64,#Separator#);#End#] */
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABPElEQVR4Xp1Tv0vDUBi8FqeA4NpBcBLcWnQSApncOnTo4FSnjP0DsnXpH5CxiwbHDg4Zuj4oOEXiJgiC4FDcCkLWmIMc1Pfw+eMgQ77v3Xf3Pe51YKGqqisAEwCR1TIAsiAIblSo6xrdHeJR85Xle3mdmCQKb0PsfqyxxzM8K15HZADl/H5+sHpZwYfxyRjTs+kWwKBx8yoHd2mRiuzF8mkJniWH/13u3Fjrs/EdhsdDFHGB/DLXEJBDLh1MWPAhPo1BLB4WX5yQywHR+m3tVe/t97D52CB/ziG0nIgD/qDuYg8WuCcVZ2YGwlJ3YDugkpR/VNcAEx6GEKhERSr71FuO4YCM4XBdwKvecjIlkSnsO0Hyp/GxSeJAdzBKzpOtnPwyyiPdAZhpZptT04tU+zk7s8czeges//s5C5+CwqrR4/gw+AAAAABJRU5ErkJggg==);
}
/* Information icon encoded */
.IconInfoEncoded {
/* Note: Do not delete the comment below. It is used to verify the correctness of the encoded image resource below before the product is released */
/* [---XsltValidateInternal-Base64EncodedImage:IconInformation#Begin#background-image: url(data:image/png;base64,#Separator#);#End#] */
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABHElEQVR4Xs2TsUoDQRRF7wwoziokjZUKadInhdhukR9YP8DMX1hYW+QvdsXa/QHBbcXC7W0CamWTQnclFutceIQJwwaWNLlwm5k5d94M76mmaeCrrmsLYOocY12FcxZFUeozCqKqqgYA8uevv1H6VuPxcwlfk5N92KHBxfFeCSAxxswlYAW/Xr989x/mv9gkhtyMDhcAxgzRsp7flj8B/HF1RsMXq+NZMkopaHe7lbKxQUEIGbKsYNoGn969060hZBkQex/W8oRQwsQaW2o3Ago2SVcJUzAgY3N0lTCZZm+zPS8HB51gMmS1DEYyOz9acKO1D8JWTlafKIMxdhvlfdyT94Vv5h7P8Ky7nQzACmhvKq3zk3PjW9asz9D/1oigecsioooAAAAASUVORK5CYII=);
}
/* Warning icon encoded */
.IconWarningEncoded {
/* Note: Do not delete the comment below. It is used to verify the correctness of the encoded image resource below before the product is released */
/* [---XsltValidateInternal-Base64EncodedImage:IconWarning#Begin#background-image: url(data:image/png;base64,#Separator#);#End#] */
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAACXBIWXMAAA7EAAAOxAGVKw4bAAAAx0lEQVR4XpWSMQ7CMAxFf4xAyBMLCxMrO8dhaBcuwdCJS3RJBw7SA/QGTCxdWJgiQYWKXJWKIXHIlyw5lqr34tQgEOdcBsCOx5yZK3hCCKdYXneQkh4pEfqzLfu+wVDSyyzFoJjfz9NB+pAF+eizx2Vruts0k15mPgvS6GYvpVtQhB61IB/dk6AF6fS4Ben0uIX5odtFe8Q/eW1KvFeH4e8khT6+gm5B+t3juyDt7n0jpe+CANTd+oTUjN/U3yVaABnSUjFz/gFq44JaVSCXeQAAAABJRU5ErkJggg==);
}
/* Error icon encoded */
.IconErrorEncoded {
/* Note: Do not delete the comment below. It is used to verify the correctness of the encoded image resource below before the product is released */
/* [---XsltValidateInternal-Base64EncodedImage:IconError#Begin#background-image: url(data:image/png;base64,#Separator#);#End#] */
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABQElEQVR4XqWTvUoEQRCE6wYPZUA80AfwAQz23uCMjA7MDRQEIzPBVEyNTQUFIw00vcQTTMzuAh/AxEQQT8HF/3G/oGGnEUGuoNnd6qoZuqltyKEsyzVJq5I6rnUp6SjGeGhESikzzlc1eL7opfuVbrqbU1Zw9NCgtQMaZpY0eNnaaL2fHusvTK5vKu7sjSS1Y4y3QUA6K3e3Mau5UFDyMP7tYF9o8cAHZv68vipoIJg971PZIZ5HiwdvYGGvFVFHmGmZ2MxwmQYPXubPl9Up0tfoMQGetXd6mRbvhBw+boZ6WF7Mbv1+GsHRk0fQmPAH1GfmZirbCfDJ61tw3Px8/8pZsPAG4jlVhcPgZ7adwNWBB68lkRQWFiTgFlbnLY3DGGM7izIJIyT/jjIvEJw6fdJTc6krDzh6aMwMP9bvDH4ADSsa9uSWVJkAAAAASUVORK5CYII=);
}
</style>
</head>
<body>
<h1 _locid="PortabilityReport">.NET Portability Report</h1>
<div id="content">
<div id="submissionId" style="font-size:8pt;">
<p>
<i>
Submission Id
6c9ba2d2-ef6a-448b-bb9a-4509ed1ce475
</i>
</p>
</div>
<h2 _locid="SummaryTitle">
<a name="Portability Summary"></a>Portability Summary
</h2>
<div id="summary">
<table>
<tbody>
<tr>
<th>Assembly</th>
<th>ASP.NET 5,Version=v1.0</th>
<th>Windows,Version=v8.1</th>
<th>.NET Framework,Version=v4.6</th>
<th>Windows Phone,Version=v8.1</th>
</tr>
<tr>
<td><strong><a href="#AzureContrib.WindowsAzure.CloudDrive">AzureContrib.WindowsAzure.CloudDrive</a></strong></td>
<td class="text-center">99.46 %</td>
<td class="text-center">97.31 %</td>
<td class="text-center">100.00 %</td>
<td class="text-center">97.31 %</td>
</tr>
</tbody>
</table>
</div>
<div id="details">
<a name="AzureContrib.WindowsAzure.CloudDrive"><h3>AzureContrib.WindowsAzure.CloudDrive</h3></a>
<table>
<tbody>
<tr>
<th>Target type</th>
<th>ASP.NET 5,Version=v1.0</th>
<th>Windows,Version=v8.1</th>
<th>.NET Framework,Version=v4.6</th>
<th>Windows Phone,Version=v8.1</th>
<th>Recommended changes</th>
</tr>
<tr>
<td>System.IO.DirectoryInfo</td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">#ctor(System.String)</td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>System.IO.FileSystemInfo</td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">get_FullName</td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>System.Type</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td>.GetTypeInfo().Assembly</td>
</tr>
<tr>
<td style="padding-left:2em">get_Assembly</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td>.GetTypeInfo().Assembly</td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
</tbody>
</table>
<p>
<a href="#Portability Summary">Back to Summary</a>
</p>
</div>
</div>
</body>
</html> | kuhlenh/port-to-core | Reports/wi/windowsazure.storage.clouddrive.contrib.1.6.0.8/AzureContrib.WindowsAzure.CloudDrive-net35.html | HTML | mit | 14,183 |
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8"/>
<title>Package register</title>
<link rel="stylesheet" href="<?php echo base_url('application/views/manager/styles/style.css'); ?>" type="text/css"/>
<script src="<?php echo base_url('application/views/manager/scripts/libs/modernizr/modernizr.js'); ?>" type="text/javascript"></script>
<script src="<?php echo base_url('application/views/manager/scripts/config.js'); ?>" type="text/javascript"></script>
</head>
<body>
<header id="header">
<hgroup>
<h1 class="site_title">KentNeighboorhood</h1>
</hgroup>
</header> <!-- end of header bar -->
<section id="main" class="column main_shadow" >
<article class="module width_full">
<header>
<h3>package info</h3>
<ul class="tabs">
<li class="active"><a href="<?php echo site_url('manager/PackageController/pickuppackage');?>">pick up</a></li>
</ul>
</header>
<div class="tab_container">
<div id="tab1" class="tab_content">
<form method = "post" action="<?php echo site_url('manager/PackageController/validation');?>" name='register'>
<fieldset>
<table class="tablesorter" cellspacing="0">
<tbody>
<tr>
<td><label for="">username: </label><input type="text" name="username"/></td>
<td><label for="">carrier: </label><input type="text" name="carrier"/></td>
</tr>
<tr>
<td><label for="">tracking num: </label><input type="text" name="tracking_num"/></td>
<td><label for="">room: </label><input type="text" name="room"/></td>
</tr>
<tr>
<td><input type="submit" value="submit" class="button darkgray" /></td>
</tr>
</tbody>
</table>
</fieldset>
</form>
</div><!-- end of #tab1 -->
</div><!-- end of .tab_container -->
<div style="<?php echo $displayerror; ?>"><h4 class="alert_error"><?php echo $message; ?></h4></div>
<div style="<?php echo $displaysuccess; ?>"><h4 class="alert_success"><?php echo $message; ?></h4></div>
</article><!-- end of content manager article -->
</section>
</body>
</html>
| jli39/kentneighborhood | application/views/manager/package.html | HTML | mit | 2,596 |
---
layout: tag
title: Cloud Computing
description: Adventures with the cloud
header-img: "img/tags/cloud.jpg"
tag: CloudComputing
---
| teamyappl/teamyappl.github.io | blog/tags/CloudComputing.html | HTML | mit | 135 |
<section data-ng-controller="CatmenusController" ng-init="create();">
</section>
| jepz20/intranet | public/modules/catmenus/views/create-catmenu.client.view.html | HTML | mit | 81 |
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- 選舉資料查詢 -->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>中選會選舉資料庫網站</title>
<link rel="stylesheet" type="text/css" href="http://db.cec.gov.tw/votehist.css">
<script type="text/javascript">
function AddToFaves_hp() {
var is_4up = parseInt(navigator.appVersion);
var is_mac = navigator.userAgent.toLowerCase().indexOf("mac")!=-1;
var is_ie = navigator.userAgent.toLowerCase().indexOf("msie")!=-1;
var thePage = location.href;
if (thePage.lastIndexOf('#')!=-1)
thePage = thePage.substring(0,thePage.lastIndexOf('#'));
if (is_ie && is_4up && !is_mac)
window.external.AddFavorite(thePage,document.title);
else if (is_ie || document.images)
booker_hp = window.open(thePage,'booker_','menubar,width=325,height=100,left=140,top=60');
//booker_hp.focus();
}
</script>
</head>
<body class="frame">
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- 標題:選舉資料庫網站 -->
<div style="width: 100%; height: 56px; margin: 0px 0px 0px 0px; border-style: solid; border-width: 0px 0px 1px 0px; border-color: black;">
<div style="float: left;">
<img src="http://db.cec.gov.tw/images/main_title.gif" />
</div>
<div style="width: 100%; height: 48px;">
<div style="text-align: center;">
<img src="http://db.cec.gov.tw/images/small_ghost.gif" /> <span
style="height: 30px; font-size: 20px;"> <a href="http://www.cec.gov.tw"
style="text-decoration: none;">回中選會網站</a>
</span>
</div>
</div>
<div style="width: 100%; height: 8px; background-color: #fde501;">
</div>
</div>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- 頁籤 -->
<div
style="width: 100%; height: 29px; background-image: url('http://db.cec.gov.tw/images/tab_background.gif'); background-repeat: repeat-x;">
<div style="text-align: center;">
<a href="histMain.jsp"><img border="0" src="http://db.cec.gov.tw/images/tab_01.gif" /></a>
<a href="histCand.jsp"><img border="0" src="http://db.cec.gov.tw/images/tab_02.gif" /></a>
<!-- <a href=""><img border="0" src="images/tab_03.gif" /></a> -->
<!-- <a href=""><img border="0" src="images/tab_04.gif" /></a> -->
<a href="histQuery.jsp?voteCode=20120101T1A2&qryType=ctks&prvCode=06&cityCode=008&areaCode=02&deptCode=010&liCode=0210#"><img border="0" src="http://db.cec.gov.tw/images/tab_05.gif" onClick="AddToFaves_hp()" /></a>
<a href="mailto:info@cec.gov.tw;ytlin@cec.gov.tw"><img border="0" src="http://db.cec.gov.tw/images/tab_06.gif" /></a>
</div>
</div>
<div
style="width: 100%; height: 22px; background-image: url('http://db.cec.gov.tw/images/tab_separator.gif'); background-repeat: repeat-x;">
</div>
<div class="query">
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- 子頁面:查詢候選人得票數 -->
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- 標題 -->
<div class="titlebox">
<div class="title">
<div class="head">第 08 屆 立法委員選舉(區域) 候選人得票數</div>
<div class="date">投票日期:中華民國101年01月14日</div>
<div class="separator"></div>
</div>
</div>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- 查詢:候選人得票數,縣市多選區,如區域立委 -->
<link rel="stylesheet" type="text/css" href="http://db.cec.gov.tw/qryCtks.css" />
<!-- 投開票所表頭 -->
<table class="ctks" width="950" height="22" border=1 cellpadding="0" cellspacing="0" >
<tr class="title">
<td nowrap align="center">地區</td>
<td nowrap align="center">姓名</td>
<td nowrap align="center">號次</td>
<td nowrap align="center">得票數</td>
<td nowrap align="center">得票率</td>
</tr>
<!-- 投開票所內容 -->
<tr class="data">
<td nowrap rowspan=2 align=center>嘉義縣第02選區大林鎮溝背里第0270投開票所</td>
<td nowrap align="center">陳明文</td>
<td nowrap align="center">1</td>
<td nowrap align="right">413</td>
<td nowrap align="right"> 60.29%</td>
</tr>
<!-- 投開票所內容 -->
<tr class="data">
<td nowrap align="center">陳以真</td>
<td nowrap align="center">2</td>
<td nowrap align="right">272</td>
<td nowrap align="right"> 39.70%</td>
</tr>
</table>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<div style="width: 100%; height: 20px; margin: 30px 0px 0px 0px; text-align: center; ">
<span>
<img src="http://db.cec.gov.tw/images/leave_arrow_left.gif" />
</span>
<span style="margin: 0px 10px 0px 10px; ">
<a style="text-decoration: none; font-size: 15px; " href="histPrint">下載</a>
</span>
<span>
<img src="http://db.cec.gov.tw/images/leave_arrow_right.gif" />
</span>
<span style="margin-right: 100px;"> </span>
<span>
<img src="http://db.cec.gov.tw/images/leave_arrow_left.gif" />
</span>
<span style="margin: 0px 10px 0px 10px; ">
<a style="text-decoration: none; font-size: 15px; " href="histMain.jsp">離開</a>
</span>
<span>
<img src="http://db.cec.gov.tw/images/leave_arrow_right.gif" />
</span>
</div>
</div>
</body>
</html> | g0v/projectV | mirror/prvCode_07/cityCode_008-areaCode_02-deptCode_010/voteCode_20120101T1A2-qryType_ctks-prvCode_06-cityCode_008-areaCode_02-deptCode_010-liCode_0210.html | HTML | mit | 5,549 |
<span compile="customTemplate">
<span ng-repeat="button in buttons" ng-switch="button">
<ma-show-button ng-switch-when="show" entry="entry" entity="entity" size="xs"></ma-show-button>
<ma-edit-button ng-switch-when="edit" entry="entry" entity="entity" size="xs"></ma-edit-button>
<ma-delete-button ng-switch-when="delete" entry="entry" entity="entity" size="xs"></ma-delete-button>
<span ng-switch-default><span compile="button"></span></span>
</span>
</span>
| noteon/ng-admin | src/javascripts/ng-admin/Crud/list/ListActions.html | HTML | mit | 500 |
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Rewind.html - RDoc Documentation</title>
<link href="../fonts.css" rel="stylesheet">
<link href="../rdoc.css" rel="stylesheet">
<script type="text/javascript">
var rdoc_rel_prefix = "../";
</script>
<script src="../js/jquery.js"></script>
<script src="../js/navigation.js"></script>
<script src="../js/search_index.js"></script>
<script src="../js/search.js"></script>
<script src="../js/searcher.js"></script>
<script src="../js/darkfish.js"></script>
<body id="top" role="document" class="file">
<nav role="navigation">
<div id="project-navigation">
<div id="home-section" role="region" title="Quick navigation" class="nav-section">
<h2>
<a href="../index.html" rel="home">Home</a>
</h2>
<div id="table-of-contents-navigation">
<a href="../table_of_contents.html#pages">Pages</a>
<a href="../table_of_contents.html#classes">Classes</a>
<a href="../table_of_contents.html#methods">Methods</a>
</div>
</div>
<div id="search-section" role="search" class="project-section initially-hidden">
<form action="#" method="get" accept-charset="utf-8">
<div id="search-field-wrapper">
<input id="search-field" role="combobox" aria-label="Search"
aria-autocomplete="list" aria-controls="search-results"
type="text" name="search" placeholder="Search" spellcheck="false"
title="Type to search, Up and Down to navigate, Enter to load">
</div>
<ul id="search-results" aria-label="Search Results"
aria-busy="false" aria-expanded="false"
aria-atomic="false" class="initially-hidden"></ul>
</form>
</div>
</div>
<div id="project-metadata">
<div id="fileindex-section" class="nav-section">
<h3>Pages</h3>
<ul class="link-list">
<li><a href="../Gemfile.html">Gemfile</a>
<li><a href="../Gemfile_lock.html">Gemfile.lock</a>
<li><a href="../MIT-LICENSE.html">MIT-LICENSE</a>
<li><a href="../README_rdoc.html">README</a>
<li><a href="../Rakefile.html">Rakefile</a>
<li><a href="../doc/ActiveSupport_html.html">ActiveSupport.html</a>
<li><a href="../doc/ApplicationController_html.html">ApplicationController.html</a>
<li><a href="../doc/ApplicationHelper_html.html">ApplicationHelper.html</a>
<li><a href="../doc/Dummy_html.html">Dummy.html</a>
<li><a href="../doc/Dummy/Application_html.html">Application.html</a>
<li><a href="../doc/Gemfile_html.html">Gemfile.html</a>
<li><a href="../doc/Gemfile_lock_html.html">Gemfile_lock.html</a>
<li><a href="../doc/Logger_html.html">Logger.html</a>
<li><a href="../doc/MIT-LICENSE_html.html">MIT-LICENSE.html</a>
<li><a href="../doc/Object_html.html">Object.html</a>
<li><a href="../doc/README_rdoc_html.html">README_rdoc.html</a>
<li><a href="../doc/Rakefile_html.html">Rakefile.html</a>
<li><a href="../doc/Rewind_html.html">Rewind.html</a>
<li><a href="../doc/Rewind/Fixture_html.html">Fixture.html</a>
<li><a href="../doc/Rewind/FixtureTape_html.html">FixtureTape.html</a>
<li><a href="../doc/Rewind/Folder_html.html">Folder.html</a>
<li><a href="../doc/Rewind/IntegrationTest_html.html">IntegrationTest.html</a>
<li><a href="../doc/Rewind/Writer_html.html">Writer.html</a>
<li><a href="../doc/Rewind/Writer/Pretender_html.html">Pretender.html</a>
<li><a href="../doc/doc/ActiveSupport_html_html.html">ActiveSupport_html.html</a>
<li><a href="../doc/doc/ApplicationController_html_html.html">ApplicationController_html.html</a>
<li><a href="../doc/doc/ApplicationHelper_html_html.html">ApplicationHelper_html.html</a>
<li><a href="../doc/doc/Dummy/Application_html_html.html">Application_html.html</a>
<li><a href="../doc/doc/Dummy_html_html.html">Dummy_html.html</a>
<li><a href="../doc/doc/Gemfile_html_html.html">Gemfile_html.html</a>
<li><a href="../doc/doc/Gemfile_lock_html_html.html">Gemfile_lock_html.html</a>
<li><a href="../doc/doc/Logger_html_html.html">Logger_html.html</a>
<li><a href="../doc/doc/MIT-LICENSE_html_html.html">MIT-LICENSE_html.html</a>
<li><a href="../doc/doc/Object_html_html.html">Object_html.html</a>
<li><a href="../doc/doc/README_rdoc_html_html.html">README_rdoc_html.html</a>
<li><a href="../doc/doc/Rakefile_html_html.html">Rakefile_html.html</a>
<li><a href="../doc/doc/Rewind/FixtureTape_html_html.html">FixtureTape_html.html</a>
<li><a href="../doc/doc/Rewind/Fixture_html_html.html">Fixture_html.html</a>
<li><a href="../doc/doc/Rewind/Folder_html_html.html">Folder_html.html</a>
<li><a href="../doc/doc/Rewind/IntegrationTest_html_html.html">IntegrationTest_html.html</a>
<li><a href="../doc/doc/Rewind/Writer/Pretender_html_html.html">Pretender_html.html</a>
<li><a href="../doc/doc/Rewind/Writer_html_html.html">Writer_html.html</a>
<li><a href="../doc/doc/Rewind_html_html.html">Rewind_html.html</a>
<li><a href="../doc/doc/doc/ActiveSupport_html_html_html.html">ActiveSupport_html_html.html</a>
<li><a href="../doc/doc/doc/ApplicationController_html_html_html.html">ApplicationController_html_html.html</a>
<li><a href="../doc/doc/doc/ApplicationHelper_html_html_html.html">ApplicationHelper_html_html.html</a>
<li><a href="../doc/doc/doc/Dummy/Application_html_html_html.html">Application_html_html.html</a>
<li><a href="../doc/doc/doc/Dummy_html_html_html.html">Dummy_html_html.html</a>
<li><a href="../doc/doc/doc/Gemfile_html_html_html.html">Gemfile_html_html.html</a>
<li><a href="../doc/doc/doc/Gemfile_lock_html_html_html.html">Gemfile_lock_html_html.html</a>
<li><a href="../doc/doc/doc/Logger_html_html_html.html">Logger_html_html.html</a>
<li><a href="../doc/doc/doc/MIT-LICENSE_html_html_html.html">MIT-LICENSE_html_html.html</a>
<li><a href="../doc/doc/doc/Object_html_html_html.html">Object_html_html.html</a>
<li><a href="../doc/doc/doc/README_rdoc_html_html_html.html">README_rdoc_html_html.html</a>
<li><a href="../doc/doc/doc/Rakefile_html_html_html.html">Rakefile_html_html.html</a>
<li><a href="../doc/doc/doc/Rewind/FixtureTape_html_html_html.html">FixtureTape_html_html.html</a>
<li><a href="../doc/doc/doc/Rewind/Fixture_html_html_html.html">Fixture_html_html.html</a>
<li><a href="../doc/doc/doc/Rewind/Folder_html_html_html.html">Folder_html_html.html</a>
<li><a href="../doc/doc/doc/Rewind/IntegrationTest_html_html_html.html">IntegrationTest_html_html.html</a>
<li><a href="../doc/doc/doc/Rewind/Writer/Pretender_html_html_html.html">Pretender_html_html.html</a>
<li><a href="../doc/doc/doc/Rewind/Writer_html_html_html.html">Writer_html_html.html</a>
<li><a href="../doc/doc/doc/Rewind_html_html_html.html">Rewind_html_html.html</a>
<li><a href="../doc/doc/doc/fonts_css_html_html.html">fonts_css_html.html</a>
<li><a href="../doc/doc/doc/index_html_html_html.html">index_html_html.html</a>
<li><a href="../doc/doc/doc/js/darkfish_js_html_html.html">darkfish_js_html.html</a>
<li><a href="../doc/doc/doc/js/jquery_js_html_html.html">jquery_js_html.html</a>
<li><a href="../doc/doc/fonts_css_html.html">fonts_css.html</a>
<li><a href="../doc/doc/index_html_html.html">index_html.html</a>
<li><a href="../doc/doc/js/darkfish_js_html.html">darkfish_js.html</a>
<li><a href="../doc/doc/js/jquery_js_html.html">jquery_js.html</a>
<li><a href="../doc/doc/js/navigation_js_html.html">navigation_js.html</a>
<li><a href="../doc/doc/js/search_index_js_html.html">search_index_js.html</a>
<li><a href="../doc/doc/js/search_js_html.html">search_js.html</a>
<li><a href="../doc/doc/js/searcher_js_html.html">searcher_js.html</a>
<li><a href="../doc/doc/lib/tasks/rewind_tasks_rake_html_html.html">rewind_tasks_rake_html.html</a>
<li><a href="../doc/doc/rdoc_css_html.html">rdoc_css.html</a>
<li><a href="../doc/doc/rewind_gemspec_html_html.html">rewind_gemspec_html.html</a>
<li><a href="../doc/doc/table_of_contents_html_html.html">table_of_contents_html.html</a>
<li><a href="../doc/doc/test/dummy/README_rdoc_html_html.html">README_rdoc_html.html</a>
<li><a href="../doc/doc/test/dummy/Rakefile_html_html.html">Rakefile_html.html</a>
<li><a href="../doc/doc/test/dummy/app/assets/javascripts/application_js_html_html.html">application_js_html.html</a>
<li><a href="../doc/doc/test/dummy/app/assets/stylesheets/application_css_html_html.html">application_css_html.html</a>
<li><a href="../doc/doc/test/dummy/config_ru_html_html.html">config_ru_html.html</a>
<li><a href="../doc/doc/test/dummy/db/test_sqlite3_html_html.html">test_sqlite3_html.html</a>
<li><a href="../doc/doc/test/dummy/log/test_log_html_html.html">test_log_html.html</a>
<li><a href="../doc/doc/test/dummy/public/404_html_html_html.html">404_html_html.html</a>
<li><a href="../doc/doc/test/dummy/public/422_html_html_html.html">422_html_html.html</a>
<li><a href="../doc/doc/test/dummy/public/500_html_html_html.html">500_html_html.html</a>
<li><a href="../doc/doc/test/dummy/public/favicon_ico_html_html.html">favicon_ico_html.html</a>
<li><a href="../doc/fonts_css.html">fonts.css</a>
<li><a href="../doc/index_html.html">index.html</a>
<li><a href="../doc/js/darkfish_js.html">darkfish.js</a>
<li><a href="../doc/js/jquery_js.html">jquery.js</a>
<li><a href="../doc/js/navigation_js.html">navigation.js</a>
<li><a href="../doc/js/search_js.html">search.js</a>
<li><a href="../doc/js/search_index_js.html">search_index.js</a>
<li><a href="../doc/js/searcher_js.html">searcher.js</a>
<li><a href="../doc/lib/tasks/rewind_tasks_rake_html.html">rewind_tasks_rake.html</a>
<li><a href="../doc/rdoc_css.html">rdoc.css</a>
<li><a href="../doc/rewind_gemspec_html.html">rewind_gemspec.html</a>
<li><a href="../doc/table_of_contents_html.html">table_of_contents.html</a>
<li><a href="../doc/test/dummy/README_rdoc_html.html">README_rdoc.html</a>
<li><a href="../doc/test/dummy/Rakefile_html.html">Rakefile.html</a>
<li><a href="../doc/test/dummy/app/assets/javascripts/application_js_html.html">application_js.html</a>
<li><a href="../doc/test/dummy/app/assets/stylesheets/application_css_html.html">application_css.html</a>
<li><a href="../doc/test/dummy/config_ru_html.html">config_ru.html</a>
<li><a href="../doc/test/dummy/db/test_sqlite3_html.html">test_sqlite3.html</a>
<li><a href="../doc/test/dummy/log/test_log_html.html">test_log.html</a>
<li><a href="../doc/test/dummy/public/404_html_html.html">404_html.html</a>
<li><a href="../doc/test/dummy/public/422_html_html.html">422_html.html</a>
<li><a href="../doc/test/dummy/public/500_html_html.html">500_html.html</a>
<li><a href="../doc/test/dummy/public/favicon_ico_html.html">favicon_ico.html</a>
<li><a href="../lib/tasks/rewind_tasks_rake.html">rewind_tasks.rake</a>
<li><a href="../rewind_gemspec.html">rewind.gemspec</a>
<li><a href="../test/dummy/README_rdoc.html">README</a>
<li><a href="../test/dummy/Rakefile.html">Rakefile</a>
<li><a href="../test/dummy/app/assets/javascripts/application_js.html">application.js</a>
<li><a href="../test/dummy/app/assets/stylesheets/application_css.html">application.css</a>
<li><a href="../test/dummy/config_ru.html">config.ru</a>
<li><a href="../test/dummy/db/test_sqlite3.html">test.sqlite3</a>
<li><a href="../test/dummy/log/test_log.html">test.log</a>
<li><a href="../test/dummy/public/404_html.html">404.html</a>
<li><a href="../test/dummy/public/422_html.html">422.html</a>
<li><a href="../test/dummy/public/500_html.html">500.html</a>
<li><a href="../test/dummy/public/favicon_ico.html">favicon.ico</a>
</ul>
</div>
</div>
</nav>
<main role="main" aria-label="Page doc/Rewind.html">
<p><!DOCTYPE html></p>
<p><html> <head> <meta charset=“UTF-8”></p>
<p><title>module Rewind - RDoc Documentation</title></p>
<p><link href=“./fonts.css” rel=“stylesheet”> <link href=“./rdoc.css”
rel=“stylesheet”></p>
<p><script type=“text/javascript”></p>
<pre>var rdoc_rel_prefix = "./";</pre>
<p></script></p>
<p><script src=“./js/jquery.js”></script> <script
src=“./js/navigation.js”></script> <script
src=“./js/search_index.js”></script> <script
src=“./js/search.js”></script> <script
src=“./js/searcher.js”></script> <script
src=“./js/darkfish.js”></script></p>
<p><body id=“top” role=“document” class=“module”> <nav
role=“navigation”></p>
<pre><div id="project-navigation">
<div id="home-section" role="region" title="Quick navigation" class="nav-section">
<h2>
<a href="./index.html" rel="home">Home</a>
</h2>
<div id="table-of-contents-navigation">
<a href="./table_of_contents.html#pages">Pages</a>
<a href="./table_of_contents.html#classes">Classes</a>
<a href="./table_of_contents.html#methods">Methods</a>
</div></pre>
<p></div></p>
<pre> <div id="search-section" role="search" class="project-section initially-hidden">
<form action="#" method="get" accept-charset="utf-8">
<div id="search-field-wrapper">
<input id="search-field" role="combobox" aria-label="Search"
aria-autocomplete="list" aria-controls="search-results"
type="text" name="search" placeholder="Search" spellcheck="false"
title="Type to search, Up and Down to navigate, Enter to load">
</div>
<ul id="search-results" aria-label="Search Results"
aria-busy="false" aria-expanded="false"
aria-atomic="false" class="initially-hidden"></ul>
</form></pre>
<p></div></p>
<pre></div>
<div id="class-metadata">
</div></pre>
<p></nav></p>
<p><main role=“main” aria-labelledby=“module-Rewind”></p>
<pre class="ruby"><span class="ruby-operator"><</span><span class="ruby-identifier">h1</span> <span class="ruby-identifier">id</span>=<span class="ruby-string">"module-Rewind"</span> <span class="ruby-identifier">class</span>=<span class="ruby-string">"module"</span><span class="ruby-operator">></span>
<span class="ruby-keyword">module</span> <span class="ruby-constant">Rewind</span>
<span class="ruby-operator"><</span><span class="ruby-regexp">/h1>
<section class="description">
</se</span><span class="ruby-identifier">ction</span><span class="ruby-operator">></span>
<span class="ruby-operator"><</span><span class="ruby-identifier">section</span> <span class="ruby-identifier">id</span>=<span class="ruby-string">"5Buntitled-5D"</span> <span class="ruby-identifier">class</span>=<span class="ruby-string">"documentation-section"</span><span class="ruby-operator">></span>
<span class="ruby-operator"><</span><span class="ruby-identifier">section</span> <span class="ruby-identifier">class</span>=<span class="ruby-string">"constants-list"</span><span class="ruby-operator">></span>
<span class="ruby-operator"><</span><span class="ruby-identifier">header</span><span class="ruby-operator">></span>
<span class="ruby-operator"><</span><span class="ruby-identifier">h3</span><span class="ruby-operator">></span><span class="ruby-constant">Constants</span><span class="ruby-operator"><</span><span class="ruby-regexp">/h3>
</</span><span class="ruby-identifier">header</span><span class="ruby-operator">></span>
<span class="ruby-operator"><</span><span class="ruby-identifier">dl</span><span class="ruby-operator">></span>
<span class="ruby-operator"><</span><span class="ruby-identifier">dt</span> <span class="ruby-identifier">id</span>=<span class="ruby-string">"VERSION"</span><span class="ruby-operator">></span><span class="ruby-constant">VERSION</span>
<span class="ruby-operator"><</span><span class="ruby-identifier">dd</span><span class="ruby-operator">></span>
<span class="ruby-operator"><</span><span class="ruby-regexp">/dl>
</se</span><span class="ruby-identifier">ction</span><span class="ruby-operator">></span>
<span class="ruby-operator"><</span><span class="ruby-regexp">/section>
</span></pre>
<p></main></p>
<p><footer id=“validator-badges” role=“contentinfo”></p>
<pre><p><a href="http://validator.w3.org/check/referer">Validate</a>
<p>Generated by <a href="http://rdoc.rubyforge.org">RDoc</a> 4.1.1.
<p>Based on <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.</pre>
<p></footer></p>
</main>
<footer id="validator-badges" role="contentinfo">
<p><a href="http://validator.w3.org/check/referer">Validate</a>
<p>Generated by <a href="http://rdoc.rubyforge.org">RDoc</a> 4.1.1.
<p>Based on <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
</footer>
| fivetanley/rewind | doc/doc/Rewind_html.html | HTML | mit | 18,109 |
<!DOCTYPE html>
<!--[if IE 7 ]> <html itemscope itemtype="http://schema.org/NewsArticle" itemid="http://dev.iptc.org/rnews/sample_story.html" lang="en" class="ie ie7"> <![endif]-->
<!--[if IE 8 ]> <html itemscope itemtype="http://schema.org/NewsArticle" itemid="http://dev.iptc.org/rnews/sample_story.html" lang="en" class="ie ie8"> <![endif]-->
<!--[if IE 9 ]> <html itemscope itemtype="http://schema.org/NewsArticle" itemid="http://dev.iptc.org/rnews/sample_story.html" lang="en" class="ie ie9"> <![endif]-->
<!--[if (gt IE 9)|!(IE)]> <html itemscope itemtype="http://schema.org/NewsArticle" itemid="http://dev.iptc.org/rnews/sample_story.html" lang="en"> <![endif]-->
<head>
<script type="text/javascript">
var methode = {};
methode.freeviewCount = 1;
methode.freeviewCountIncremented = true;
methode.showPaywall = false;
methode.subscribed = false;
</script><!-- / -->
<title></title>
<!-- Methode uuid: "c4deee5c-af8b-11e3-9d7e-8f96485e7543" -->
<meta name="eomportal-instanceid" content="29"/>
<meta name="eomportal-id" content="193935"/>
<meta name="eomportal-loid" content="3.2.3098011443"/>
<meta name="eomportal-uuid" content="c4deee5c-af8b-11e3-9d7e-8f96485e7543"/>
<meta name="eomportal-lastUpdate" content="Wed Mar 19 13:55:02 EDT 2014"/>
<meta property="og:type" content="article"/>
<meta property="og:description" content=""/>
<meta property="og:title" content=" - The Boston Globe"/>
<meta property="og:site_name" content="BostonGlobe.com" />
<meta property="fb:admins" content="100001044693856,507486035" />
<meta property="fb:app_id" content="103933749691726" />
<meta property="article:publisher" content="https://www.facebook.com/globe" />
<!-- sDate Sun Aug 25 00:01:00 EDT 2013-->
<!-- eDate Mon Aug 26 23:59:00 EDT 2013-->
<!-- current date is Wed Mar 19 13:55:02 EDT 2014-->
<meta property="flashsale" id="flashsale" content="false" /><link rel="apple-touch-icon" href="//c.o0bg.com/rw/SysConfig/WebPortal/BostonGlobe/Framework/images/bookmark-114.png"/>
<link rel="shortcut icon" type="image/gif" href="/rw/SysConfig/WebPortal/BostonGlobe/Framework/images/favicon.ico" />
<!-- override sectionClass by workfolder-->
<!-- override section by workfolder-->
<!--[if gte IE 9 ]>
<meta name="application-name" content="Homepage"/>
<meta name="msapplication-tooltip" content="This is the tooltip"/>
<meta name="msapplication-starturl" content="/?comp=9"/>
<![endif]-->
<!--[if lte IE 8 ]>
<meta name="application-name" content="Boston Globe"/>
<meta name="msapplication-TileColor" content="#000000"/>
<meta name="msapplication-TileImage" content="25a75e8d-4542-40a4-80aa-253aea7efc28.png"/>
<link rel="stylesheet" media="print" href="$configurationURI/Framework/css/globe-ie-print.css" type="text/css" />
<![endif]-->
<meta property="twitter:account_id" content="95431448" />
<meta name="robots" content="noarchive" />
<meta name="content-type" content="text/html; charset=UTF-8" />
<meta name="description" content="" />
<meta name="keywords" content="" />
<meta name="news_keywords" content="" />
<meta property="og:url" content="https://www.bostonglobe.com/2014/03/19/test/fSkWW48UF4VyOP6kNOnVdI/story.html"/>
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="BostonGlobe">
<meta property="og:image" content="http://c.o0bg.com/rw/SysConfig/WebPortal/BostonGlobe/Framework/images/logo-bg-small-square.jpg" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"> <link rel="stylesheet" type="text/css" href="/css/globe-basic.css" id="basic-css">
<!--[if gte IE 6]><link href="/css/html5reset.css,globe-globals.css,globe-masthead.css,globe-nav.css,globe-nav-menus.css,globe-saved.css,globe-main.css,globe-footer.css,globe-print.css" rel="stylesheet"><![endif]-->
<!--[if !IE]><link href="/css/html5reset.css,globe-globals.css,globe-masthead.css,globe-nav.css,globe-nav-menus.css,globe-saved.css,globe-main.css,globe-footer.css,globe-print.css" rel="stylesheet" media="only all"><![endif]-->
<link rel="stylesheet" type="text/css" href="/css/globe-trialHeaders.css" id="trial-banner-css">
<script src="/js/lib/rwd-images.js,lib/respond.min.js,lib/modernizr.custom.min.js,globe-define.js,globe-controller.js"></script>
<script src="/js/lib/jquery.js,lib/magnific.js,globe-modal-login.js,globe-modal-meter.js?v=1.3"></script>
<link rel="stylesheet" type="text/css" media="all" href="/css/html5reset.css,globe-globals.css,globe-masthead.css,globe-nav.css,globe-nav-menus.css,globe-saved.css,globe-main.css,globe-footer.css,globe-trialHeaders.css,modal-login.css?v=1.3"/>
<link rel="stylesheet" type="text/css" media="print" href="/css/globe-print.css?v=1.3"/>
@@include('html/css.html')
<!-- webtype is igraphic section is adPageType other oas_sitepage -->
<!-- lowestRank: taxonomy: section: -->
<!-- mode: -->
<!-- section is empty using default value-->
<script>
var googletag = googletag || {};
googletag.cmd = googletag.cmd || [];
(function() {
var gads = document.createElement("script");
gads.async = true;
gads.type = "text/javascript";
var useSSL = "https:" == document.location.protocol;
gads.src = (useSSL ? "https:" : "http:") + "//www.googletagservices.com/tag/js/gpt.js";
var node = document.getElementsByTagName("script")[0];
node.parentNode.insertBefore(gads, node);
})();
</script>
<script>
globe.OAS.keyValuePairs = {
s1: 'bostonglobe.com',
s2: 'metro',
s3: '',
s4: '',
pgtype : 'other',
pageurl : '_2014_03_19_test_fSkWW48UF4VyOP6kNOnVdI_story_html',
freetrial: "n",
logstat: "n",
sub: "n",
meta: "",
weather: "",
temp: ""
}
globe.OAS.adUnit = 'bostonglobe.com/metro';
</script></head>
<body class="type-internal section-metro">
<div id="contain">
<!-- Page header -->
<header id="masthead">
<h2 class="logo-bg">
<a href="/"><img src="/rw/SysConfig/WebPortal/BostonGlobe/Framework/images/logo-bg.png" alt="The Boston Globe" /></a></h2>
<h1 class="section"><a href="/metro">Metro</a></h1>
<div class="bg-high-value">
<p><a class="bostoncom" href="http://www.boston.com/?p1=BGHeader_NonHP_BComLogo"><b>Boston.com</b></a></p>
<div class="bg-classifieds mini-menu">
<nav>
<p class="title">Classifieds<i>:</i></p>
<ul>
<li><a href="http://www.boston.com/cars/?p1=BGHeader_NonHP_Cars">Cars</a></li>
<li><a href="http://www.boston.com/jobs/?p1=BGHeader_NonHP_Jobs">Jobs</a></li>
<li class="last"><a href="http://www.boston.com/realestate/?p1=BGHeader_NonHP_RE">Real Estate</a></li>
</ul>
</nav>
</div><!-- /end .classifieds -->
</div><!-- /end .bg-high-value -->
<nav class="utils">
<p class="a11y-only no-border"><a class="top" href="/eom/SysConfig/WebPortal/BostonGlobe/Framework/regi/final-login.jsp?p1=BGHeader_LogIn" onClick="var s=s_gi('nytbostonglobecom');s.linkTrackVars='eVar27,events';s.linkTrackEvents='event15';s.eVar27='BG Header';s.events='event15';s.tl(this,'o','BG Header - Log In');">Log In</a></p>
<ul>
<li class="headerSubscribe no-border">Subscribe:</li>
<li class="headerSubscribe no-border"><a href="http://digitalaccess.bostonglobe.com/da/2/1?eglobe_rc=WW111946&globe_rc=WW111947&p1=BGHeader_DigitalSubscription" onClick="var s=s_gi('nytbostonglobecom');s.linkTrackVars='eVar25,events';s.linkTrackEvents='event13';s.eVar25='BG Header';s.events='event13';s.tl(this,'o','BG Header - Subscribe');">Digital</a>
<li class="headerSubscribe"><a href="http://homedelivery.bostonglobe.com/hd/control/order/zip/?rc=WW011964&p1=BGHeader_HomeDeliverySubscription" onClick="var s=s_gi('nytbostonglobecom');s.linkTrackVars='eVar25,events';s.linkTrackEvents='event13';s.eVar25='BG Header';s.events='event13';s.tl(this,'o','BG Header - Subscribe');">Home Delivery</a></li>
<li class="my-account logged-out"><a class="top" href="https://www.bostonglobe.com/eom/SysConfig/WebPortal/BostonGlobe/Framework/regi/final-login.jsp?p1=BGHeader_LogIn" onClick="var s=s_gi('nytbostonglobecom');s.linkTrackVars='eVar27,events';s.linkTrackEvents='event15';s.eVar27='BG Header';s.events='event15';s.tl(this,'o','BG Header - Log In');">Log In</a></li>
</ul>
</nav>
<div class="nav-primary">
<form action="/search" class="search bg-search-primary" method="post">
<fieldset>
<label for="q">
Search:
</label>
<div class="search-inputs">
<div>
<input type="text" class="search" name="search" id="q" placeholder="Search" />
<input type="submit" class="submit" value="Go" />
</div>
</div>
</fieldset>
</form><!-- /end form.search -->
<!-- root expanded -->
<nav class="sections" data-menu-content="/Fragment/SysConfig/WebPortal/BostonGlobe/Framework/ajaxsamples/global-nav-menus.jpt">
<h2 class="sections-heading">Sections</h2>
<ul>
<!--
-->
<li class="news" data-section="news">
<a href="/">News</a>
</li>
<!--
-->
<li class="metro active" data-section="metro">
<a href="/metro">Metro</a>
</li>
<!--
-->
<li class="arts" data-section="arts">
<a href="/arts">Arts</a>
</li>
<!--
-->
<li class="business" data-section="business">
<a href="/business">Business</a>
</li>
<!--
-->
<li class="sports" data-section="sports">
<a href="/sports">Sports</a>
</li>
<!--
-->
<li class="opinion" data-section="opinion">
<a href="/opinion">Opinion</a>
</li>
<!--
-->
<li class="lifestyle" data-section="lifestyle">
<a href="/lifestyle">Lifestyle</a>
</li>
<!--
-->
<li class="magazine" data-section="magazine">
<a href="/magazine">Magazine</a>
</li>
<!--
section: /metro, test2:/insiders
-->
<li class="insiders" data-section="insiders">
<a href="/insiders">Insiders</a>
</li>
<!--
-->
<li class="todayspaper" data-section="todayspaper">
<a href="/todayspaper">Today's Paper</a>
</li>
<li class="my-saved">
<a href="/mysaved"><span class="count"><span> </span></span> My Saved</a>
</li>
</ul>
<h2 class="todays-paper"><a href="/todayspaper">Today’s Paper</a></h2>
<h2 class="my-saved"><a href="/mysaved"><span class="count"><span> </span></span> My Saved</a></h2>
</nav>
</div>
<nav id="sectionnav-metro" class="section">
<ul>
<li class="" data-section="">
<a href="http://www.boston.com/bostonglobe/numbers/lottery.html">Lottery</a>
</li>
<li class="" data-section="">
<a href="/metro/obituaries">Obituaries</a>
</li>
<li class="" data-section="">
<a href="/metro/regionals/north">Globe North</a>
</li>
<li class="" data-section="">
<a href="/metro/regionals/south">Globe South</a>
</li>
<li class="" data-section="">
<a href="/metro/regionals/west">Globe West</a>
</li>
<li class="" data-section="">
<a href="/metro/specials/boston-marathon-explosions">Terror at the Marathon</a>
</li>
<li class="" data-section="">
<a href="/metro/specials/68blocks">68 Blocks</a>
</li>
</ul>
</nav>
</header>
<!-- Page header ends -->
<div id="main" role="main">
<!-- Left Navigation Section -->
<nav id="section-nav" class="section-nav " data-sectionname="">
<div class="ad ad" data-adname="SPONSOR1"></div><h1>
<b>In this section</b>
<i>:</i>
<a href="#"></a>
</h1>
</nav>
<!-- In Story Photo Section -->
<div class="article">
<!-- Headline Section -->
<div class="header">
<p class="hed-cat"></p>
<h1 class="main-hed">Mass. pedestrian crashes</h1>
<h2 class="subhed"></h2>
</div>
<!-- By Line Section -->
<div class="byline">
<!-- web pub date March 19, 2014 -->
March 19, 2014</p>
</div>
<div class="article-body">
@@include('html/graphic.html')
@@include('html/js.html')
</div>
<div class="aside">
<h2 class="title-tease">
<a href="/arts/music/2013/06/11/mozart-violin-and-viola-played-bemf/DXlufjot6mGxPzkzWxVweN/story.html">Mozart’s violin and viola star at Jordan Hall</a></h2>
<div class="article-body">
<p>The first mainstage concert of the Boston Early Music Festival was also the North American debut of Mozart’s own violin and viola. </p></div>
<p class="story-of">Story 1 of 20</p>
<p><a href="/arts/music/2013/06/11/mozart-violin-and-viola-played-bemf/DXlufjot6mGxPzkzWxVweN/story.html" class="more">Read full story</a></p>
</div>
<div class="aside">
<h2 class="title-tease">
<a href="/arts/2014/03/19/boston-area-nightlife/tqkE0VT4ZG5Faa86OX4iFJ/story.html">Boston-area nightlife</a></h2>
<div class="article-body">
<p>Nightlife in and around Boston:</p><p><span id="">DANCING WITH THE CARS</span> The cars and the dancing are at the Larz Anderson Auto Museum, which winds up its winter dance party series with a swing dancing event. Michele Cloutier from Dance in Boston will teach the moves at 7 p.m., you show them off on the dance floor from 8-11 p.m. Bring bucks for the cash bar, come with or sans partner, and arrive early for cocktails and the 6-7 p.m. museum tour. <span id="">March 21, 6-11 p.m. $15. Larz Anderson Auto Museum, 15 Newton St., Brookline. 617-522-6547, www.larzanderson.org</span>
</p><p><span id="">I LOVE 80’s PARTY</span> We hope some fashion trends (shoulder pads and jellies, for instance) never make a comeback, except at throwback parties like this one. Need some inspiration for playing dress-up? “Miami Vice,” Madonna, and Grace Jones are a few words to get you started. DJ Brek.One provides the tunes. <span id="">March 22, 10 p.m.-2 a.m. $15. Guilt, 275 Tremont St., Boston. 310-384-3789, ouijaentertainment.com/boston</span>
</p></div>
<p class="story-of">Story 2 of 20</p>
<p><a href="/arts/2014/03/19/boston-area-nightlife/tqkE0VT4ZG5Faa86OX4iFJ/story.html" class="more">Read full story</a></p>
</div>
<div class="aside">
<h2 class="title-tease">
<a href="/metro/regionals/west/2014/03/14/newton-school-budget-grapples-with-surge-student-numbers/LXGCiKMm8h5dHWIsads3KJ/story.html">Newton school budget tackles surge in students</a></h2>
<div class="article-body">
<p>Superintendent David Fleishman last week released his proposed $195 million budget for Newton’s school system. </p></div>
<p class="story-of">Story 3 of 20</p>
<p><a href="/metro/regionals/west/2014/03/14/newton-school-budget-grapples-with-surge-student-numbers/LXGCiKMm8h5dHWIsads3KJ/story.html" class="more">Read full story</a></p>
</div>
<div class="aside">
<h2 class="title-tease">
<a href="/metro/regionals/west/2014/03/14/hanscom-wins-important-defense-contract/9EmvTMKYdDGIBiIVHnZWPL/story.html">Hanscom lands defense contract for surveillance system </a></h2>
<div class="article-body">
<p>Hanscom Air Force Base won a little job security amid looming defense cuts after landing a critical contract. </p></div>
<p class="story-of">Story 4 of 20</p>
<p><a href="/metro/regionals/west/2014/03/14/hanscom-wins-important-defense-contract/9EmvTMKYdDGIBiIVHnZWPL/story.html" class="more">Read full story</a></p>
</div>
<div class="aside">
<h2 class="title-tease">
<a href="/metro/regionals/south/2014/03/15/group-supports-shift-youth-sports-antidote-bad-behavior-parents-curb-behavior-parents-youth-sporting-events/NQpnDhFzOamdJVJV2DpT3K/story.html">In Milton, a push for positive coaching
</a></h2>
<div class="article-body">
<p>A national movement that encourages parents to focus less on winning has been steadily gaining traction in the Boston suburbs.</p></div>
<p class="story-of">Story 5 of 20</p>
<p><a href="/metro/regionals/south/2014/03/15/group-supports-shift-youth-sports-antidote-bad-behavior-parents-curb-behavior-parents-youth-sporting-events/NQpnDhFzOamdJVJV2DpT3K/story.html" class="more">Read full story</a></p>
</div>
<div class="aside">
<h2 class="title-tease">
<a href="/metro/2014/03/18/taunton-battle-free-heroin-deadly-grip-goes-public/X9p3KgnSGOm4q1prtNnjEK/story.html">The battle to free Taunton from heroin’s deadly grip</a></h2>
<div class="article-body">
<p>The drumbeat of heroin overdoses, day after day, week after week, is exacting a psychic and physical toll on the old mill city of Taunton.</p></div>
<p class="story-of">Story 6 of 20</p>
<p><a href="/metro/2014/03/18/taunton-battle-free-heroin-deadly-grip-goes-public/X9p3KgnSGOm4q1prtNnjEK/story.html" class="more">Read full story</a></p>
</div>
<div class="aside">
<h2 class="title-tease">
<a href="/arts/theater-art/2014/03/18/gardner-museum-teams-with-google-for-virtual-tour-experience/1GMOwIbArjPgSgoR8bK1dO/story.html">Gardner Museum teams with Google for virtual tour </a></h2>
<div class="article-body">
<p>The Isabella Stewart Gardner Museum is the first New England museum to use Google’s Street View, allowing viewers to virtually navigate its galleries. </p></div>
<p class="story-of">Story 7 of 20</p>
<p><a href="/arts/theater-art/2014/03/18/gardner-museum-teams-with-google-for-virtual-tour-experience/1GMOwIbArjPgSgoR8bK1dO/story.html" class="more">Read full story</a></p>
</div>
<div class="aside">
<h2 class="title-tease">
<a href="/business/2014/03/18/bitcoin/5G7ygVFrSQFdyaAhXJpn1J/story.html">Mass. regulators warn about bitcoin</a></h2>
<div class="article-body">
<p>Officials issued a warning about the risks of virtual currencies after a second ATM-like kiosk opened in the Boston area.</p></div>
<p class="story-of">Story 8 of 20</p>
<p><a href="/business/2014/03/18/bitcoin/5G7ygVFrSQFdyaAhXJpn1J/story.html" class="more">Read full story</a></p>
</div>
<div class="aside">
<h2 class="title-tease">
<a href="/metro/2014/03/18/republicans-coalesce-behind-charlie-baker/xMo6CHc0b50eSxrH5tVFuO/story.html">GOP support for Charlie Baker runs deep</a></h2>
<div class="article-body">
<p>Rank-and-file Republicans from across the political spectrum are rallying behind the Mass. gubernatorial candidate.</p></div>
<p class="story-of">Story 9 of 20</p>
<p><a href="/metro/2014/03/18/republicans-coalesce-behind-charlie-baker/xMo6CHc0b50eSxrH5tVFuO/story.html" class="more">Read full story</a></p>
</div>
<div class="aside">
<h2 class="title-tease">
<a href="/lifestyle/food-dining/2014/03/18/munch-madness-who-will-win-the-boston-globe-annual-restaurant-tournament/xQoZY8poaWjr0fThjPyJwL/story.html">Who will win Munch Madness 2014? </a></h2>
<div class="article-body">
<p>Fresh blood battles it out in the Globe’s annual tournament for the best Boston-area restaurant. </p></div>
<p class="story-of">Story 10 of 20</p>
<p><a href="/lifestyle/food-dining/2014/03/18/munch-madness-who-will-win-the-boston-globe-annual-restaurant-tournament/xQoZY8poaWjr0fThjPyJwL/story.html" class="more">Read full story</a></p>
</div>
<div class="aside">
<h2 class="title-tease">
<a href="/opinion/2014/03/19/easy-demonize-dcr-but-mass-must-provide-resources-protect-children/HbuK3qg6BS9pQOG2CvTquK/story.html">Outrage at DCF misses the point</a></h2>
<div class="article-body">
<p>The Department of Children and Families is easy to demonize, but Mass. won’t supply resources needed to protect kids. </p></div>
<p class="story-of">Story 11 of 20</p>
<p><a href="/opinion/2014/03/19/easy-demonize-dcr-but-mass-must-provide-resources-protect-children/HbuK3qg6BS9pQOG2CvTquK/story.html" class="more">Read full story</a></p>
</div>
<div class="aside">
<h2 class="title-tease">
<a href="/metro/2014/03/18/russia-formally-reclaims-crimea-its-own/zlMwDVzEjfPFHydJo726VP/story.html">Russia reclaims Crimea as its own</a></h2>
<div class="article-body">
<p>‘‘In people’s hearts and minds, Crimea has always been an integral part of Russia,” Russian President Vladimir Putin said. </p></div>
<p class="story-of">Story 12 of 20</p>
<p><a href="/metro/2014/03/18/russia-formally-reclaims-crimea-its-own/zlMwDVzEjfPFHydJo726VP/story.html" class="more">Read full story</a></p>
</div>
<div class="aside">
<h2 class="title-tease">
<a href="/lifestyle/food-dining/2014/03/18/charlestown-restaurant-pier-offers-water-view-for-all-seasons/7DdkyeW8JPk8pvf2qN0HFN/story.html">Pier 6 offers a water view for all seasons</a></h2>
<div class="article-body">
<p>With a view like Charlestown’s Navy Yard, the food does not need to steal the show. </p></div>
<p class="story-of">Story 13 of 20</p>
<p><a href="/lifestyle/food-dining/2014/03/18/charlestown-restaurant-pier-offers-water-view-for-all-seasons/7DdkyeW8JPk8pvf2qN0HFN/story.html" class="more">Read full story</a></p>
</div>
<div class="aside">
<h2 class="title-tease">
<a href="/business/2014/03/18/boston-fan-pier-getting-new-high-rise/BgEnjxKs5gxmLTXeLydalL/story.html">Fan Pier getting new high-rise</a></h2>
<div class="article-body">
<p>The 17-story office building will join a series of large construction sites in South Boston’s Innovation District.</p></div>
<p class="story-of">Story 14 of 20</p>
<p><a href="/business/2014/03/18/boston-fan-pier-getting-new-high-rise/BgEnjxKs5gxmLTXeLydalL/story.html" class="more">Read full story</a></p>
</div>
<div class="aside">
<h2 class="title-tease">
<a href="/opinion/2014/03/19/time-wobbly-ukraine/xKDGjw0XycY1vhrTl0SoAN/story.html">Wobbly US strengthens Russia</a></h2>
<div class="article-body">
<p>From the Kremlin’s perspective, the bottom line is crystal-clear: American leadership in the world is weaker than it has been in decades. </p></div>
<p class="story-of">Story 15 of 20</p>
<p><a href="/opinion/2014/03/19/time-wobbly-ukraine/xKDGjw0XycY1vhrTl0SoAN/story.html" class="more">Read full story</a></p>
</div>
<div class="aside">
<h2 class="title-tease">
<a href="/metro/2014/03/18/scott-brown-jeanne-shaheen-offense-senate-race/NAVdBXi4gZFNwloQIVTbGP/story.html">Shaheen, Brown go on offense in N.H. Senate race</a></h2>
<div class="article-body">
<p>Senator Jeanne Shaheen and Scott Brown took potshots at each other as the Senate campaign in New Hampshire heats up. </p></div>
<p class="story-of">Story 16 of 20</p>
<p><a href="/metro/2014/03/18/scott-brown-jeanne-shaheen-offense-senate-race/NAVdBXi4gZFNwloQIVTbGP/story.html" class="more">Read full story</a></p>
</div>
<div class="aside">
<h2 class="title-tease">
<a href="/news/world/2014/03/18/west-looks-for-fresh-ways-curb-russia/xaNxCt2goNZskbTa1DlfRN/story.html">West looks for new ways to curb Russia</a></h2>
<div class="article-body">
<p>Vice President Joe Biden and European leaders unleashed a torrent of angry words against Russia’s “dark path.” </p></div>
<p class="story-of">Story 17 of 20</p>
<p><a href="/news/world/2014/03/18/west-looks-for-fresh-ways-curb-russia/xaNxCt2goNZskbTa1DlfRN/story.html" class="more">Read full story</a></p>
</div>
<div class="aside">
<h2 class="title-tease">
<a href="/news/nation/2014/03/18/nyc-fire-department-settles-discrimination-lawsuit/7tu2WrGfVM7z6tZxKJbdsJ/story.html">NYC fire department reaches bias settlement</a></h2>
<div class="article-body">
<p>About 1,500 minorities who took the entrance exams that were found to be biased will be eligible to receive back pay totaling $98 million. </p></div>
<p class="story-of">Story 18 of 20</p>
<p><a href="/news/nation/2014/03/18/nyc-fire-department-settles-discrimination-lawsuit/7tu2WrGfVM7z6tZxKJbdsJ/story.html" class="more">Read full story</a></p>
</div>
<div class="aside">
<h2 class="title-tease">
<a href="/lifestyle/food-dining/2014/03/18/author-wants-demystify-artisanal-cheeses/vvi0roKZlauEMCJuHhP6FN/story.html">Chester Hastings wants to demystify artisanal cheeses</a></h2>
<div class="article-body">
<p>The chef and cheesemonger’s latest “The Cheesemonger’s Seasons” pairs seasonal fruits and vegetables with cheese. </p></div>
<p class="story-of">Story 19 of 20</p>
<p><a href="/lifestyle/food-dining/2014/03/18/author-wants-demystify-artisanal-cheeses/vvi0roKZlauEMCJuHhP6FN/story.html" class="more">Read full story</a></p>
</div>
<div class="aside">
<h2 class="title-tease">
<a href="/business/2014/03/18/another-french-chef-takes-shot-boston/pmBjkZXKBczUMqC6pNa7mK/story.html">Daniel Boulud plans Boston restaurant</a></h2>
<div class="article-body">
<p>Boulud, a celebrated French chef, plans to open Bar Boulud at Boston’s Mandarin Oriental hotel in September.</p></div>
<p class="story-of">Story 20 of 20</p>
<p><a href="/business/2014/03/18/another-french-chef-takes-shot-boston/pmBjkZXKBczUMqC6pNa7mK/story.html" class="more">Read full story</a></p>
</div>
</div>
</div><!-- Page footer -->
<footer class="bg-footer">
<div class="lead">
<nav>
<h1>Learn more</h1>
<ul>
<li><a href="https://digitalaccess.bostonglobe.com/da/2/1?eglobe_rc=WW111927&globe_rc=WW111945">Subscribe</a></li>
<li><a href="/insiders">Boston Globe Insiders</a></li>
<li><a href="http://epaper.bostonglobe.com/">EPaper Edition</a></li>
<li><a href="http://nieonline.com/bostonglobe/">News in education</a></li>
</ul>
</nav>
</div>
<div class="sub">
<nav>
<h1>My Account</h1>
<ul>
<li><a href="https://www.bostonglobe.com/eom/SysConfig/WebPortal/BostonGlobe/Framework/regi/final-login.jsp">Log in</a></li>
<li><a href="/mysaved"><span class="count"><span> </span></span> My Saved List</a></li>
<li><a href="https://www.bostonglobe.com/eom/SysConfig/WebPortal/BostonGlobe/Framework/regi/mc-login.jsp?redirect=manage">Manage home delivery</a></li>
</ul>
</nav>
<nav class="even">
<h1>Contact</h1>
<ul>
<li><a href="https://bostonglobe.custhelp.com/app/home">Help</a></li>
<li><a href="https://bostonglobe.custhelp.com/app/answers/list">FAQs</a></li>
<li><a href="/tools/help/stafflist">Globe newsroom</a></li>
<li><a href="http://services.bostonglobe.com/advertiser/default.aspx">Advertise</a></li>
</ul>
</nav>
<nav class="opt">
<h1>Social</h1>
<ul>
<li><a href="https://www.facebook.com/globe">Facebook</a></li>
<li><a href="https://twitter.com/#!/BostonGlobe">Twitter</a></li>
<li><a href="https://plus.google.com/108227564341535363126/about">Google+</a></li>
</ul>
</nav>
<nav class="even last">
<h1>More</h1>
<ul>
<li><a href="https://secure.pqarchiver.com/boston-sub/no_default.html?ss=1&url=%2Fboston-sub%2Fadvancedsearch.html">Archives</a></li>
<li><a href="/tools/help/privacy">Privacy policy</a></li>
<li><a href="/tools/help/terms-service">Terms of service</a></li>
<li><a href="/tools/help/terms-purchase">Terms of purchase</a></li>
<li><a href="http://www.bostonglobe.com/2014/03/07/your-choices/dwLYdic9FdW82vCiUsS4eL/story.html">Your Ad Choices</a></li>
<li><a href="https://services.bostonglobe.com/aboutus/career/default.aspx?id=7098">Work here</a></li>
</ul>
</nav>
<p class="bg-copy">© 2014 Boston Globe Media Partners, LLC</p>
</div>
</footer>
<!-- Ellen Small Meter Modal -->
<div style="display:none;">
<!-- Start small meter popup - 5 articles -->
<div id="modal_5" class="meter-modal-block">
<div class="meter-modal-sub-panel clearfix-firefox">
<img src="/rw/SysConfig/WebPortal/BostonGlobe/Framework/images/White-B-Logo-non-transparent.jpg" alt="Boston Globe Logo" />
</div><!-- end sub-panel -->
<div class="meter-modal-close"><a href="#" class="meter-close">X</a></div>
<div class="meter-modal-main-panel">
<h2 class="meter-modal-text">You have read <span class="bold">5 of 10</span> free articles this month. </h2>
<h1 class="meter-modal-text"><a href="http://digitalaccess.bostonglobe.com/da/33/?eglobe_rc=WW113962" onclick="var s=s_gi('nytbostonglobecom');s.tl(this,'o','BG Meter Offer');">Continue reading</a> with unlimited access for just 99¢</h1>
<p class="meter-modal-text">Subscriber <a href="https://www.bostonglobe.com/eom/SysConfig/WebPortal/BostonGlobe/Framework/regi/final-login.jsp" onClick="var s=s_gi('nytbostonglobecom');s.tl(this,'o','BG Meter Login');">Log In</a></p>
</div><!-- end main-panel -->
</div><!-- end meter-popup -->
<!-- end small meter popup -->
<!-- Start small meter popup - 7 articles -->
<div id="modal_7" class="meter-modal-block">
<div class="meter-modal-sub-panel clearfix-firefox">
<img src="/rw/SysConfig/WebPortal/BostonGlobe/Framework/images/White-B-Logo-non-transparent.jpg" alt="Boston Globe Logo" />
</div><!-- end sub-panel -->
<div class="meter-modal-close"><a href="#" class="meter-close">X</a></div>
<div class="meter-modal-main-panel">
<h2 class="meter-modal-text">You have read <span class="bold">7 of 10</span> free articles this month. </h2>
<h1 class="meter-modal-text"><a href="http://digitalaccess.bostonglobe.com/da/33/?eglobe_rc=WW113966" onclick="var s=s_gi('nytbostonglobecom');s.tl(this,'o','BG Meter Offer');">Continue reading</a> with unlimited access for just 99¢</h1>
<p class="meter-modal-text">Subscriber <a href="https://www.bostonglobe.com/eom/SysConfig/WebPortal/BostonGlobe/Framework/regi/final-login.jsp" onClick="var s=s_gi('nytbostonglobecom');s.tl(this,'o','BG Meter Login');">Log In</a></p>
</div><!-- end main-panel -->
</div><!-- end meter-popup -->
<!-- end small meter popup -->
<!-- Start small meter popup - 9 articles -->
<div id="modal_9" class="meter-modal-block">
<div class="meter-modal-sub-panel">
<img src="/rw/SysConfig/WebPortal/BostonGlobe/Framework/images/White-B-Logo-non-transparent.jpg" alt="Boston Globe Logo" />
</div><!-- end sub-panel -->
<div class="meter-modal-close"><a href="#" class="meter-close">X</a></div>
<div class="meter-modal-main-panel clearfix-firefox">
<h2 class="meter-modal-text">You have read <span class="bold">9 of 10</span> free articles this month. </h2>
<h1 class="meter-modal-text"><a href="http://digitalaccess.bostonglobe.com/da/33/?eglobe_rc=WW113968" onclick="var s=s_gi('nytbostonglobecom');s.tl(this,'o','BG Meter Offer');">Continue reading</a> with unlimited access for just 99¢</h1>
<p class="meter-modal-text">Subscriber <a href="https://www.bostonglobe.com/eom/SysConfig/WebPortal/BostonGlobe/Framework/regi/final-login.jsp" onClick="var s=s_gi('nytbostonglobecom');s.tl(this,'o','BG Meter Login');">Log In</a></p>
</div><!-- end main-panel -->
</div><!-- end meter-popup -->
<!-- end small meter popup -->
<!-- Start small meter popup - 10 articles -->
<div id="modal_10" class="meter-modal-block">
<div class="meter-modal-sub-panel">
<img src="/rw/SysConfig/WebPortal/BostonGlobe/Framework/images/White-B-Logo-non-transparent.jpg" alt="Boston Globe Logo" />
</div><!-- end sub-panel -->
<div class="meter-modal-close"><a href="#" class="meter-close">X</a></div>
<div class="meter-modal-main-panel clearfix-firefox">
<h2 class="meter-modal-text">This is your last free article this month. </h2>
<h1 class="meter-modal-text"><a href="http://digitalaccess.bostonglobe.com/da/33/?eglobe_rc=WW113969" onclick="var s=s_gi('nytbostonglobecom');s.tl(this,'o','BG Meter Offer');">Continue reading</a> with unlimited access for just 99¢</h1>
<p class="meter-modal-text">Subscriber <a href="https://www.bostonglobe.com/eom/SysConfig/WebPortal/BostonGlobe/Framework/regi/final-login.jsp" onClick="var s=s_gi('nytbostonglobecom');s.tl(this,'o','BG Meter Login');">Log In</a></p>
</div><!-- end main-panel -->
</div><!-- end meter-popup -->
<!-- end small meter popup -->
</div> <div class="modal wrapper">
<form id="modal-login" action="/Login" method="post" class="mfp-hide white-popup-block modal-login login-form" accept-charset="utf-8" data-init-psswrd>
<h3>Subscriber Login</h3>
<div id="modal-login-errors" class='errors hidden'>
<div class="errorlist js-gen-error" id="form-error">
<div class="error-image"></div>
<div class="regi-error error-positioning">
The login information you entered does not match an account in our records.
<div style="clear:both"></div>
To activate FREE access as a home delivery subscriber <a href="https://services.bostonglobe.com/registration/globesub/welcome.aspx">start here.</a>
<div style="clear:both"></div>
If you don't have a subscription, you can view our <a href="https://services.bostonglobe.com/order/secure/bg/mec.aspx?reason=WW101557&map=YYYYYYY&zip=&product=eGlobe">digital offers here.</a>
</div>
</div>
</div>
<fieldset style="border:0;">
<p>
<label class="modal-login">
E-mail address:
</label>
<input type="email" class="login" name="username" id="username" required>
</p>
<p>
<label class="modal-login">
Password:
</label>
<input type="password" class="login" name="password" id="password" data-psswrd-toggle required>
</p>
<span class="remember-checkbox">
<input type="checkbox" name="remember" checked id="rememberme" value="" class="remember">
<label for="rememberme" class="remember">Keep me logged in</label>
</span>
<p class="calls-to-action">
<input type="submit" value="Log in" id="mc-login-submit" class="bg-button modal-login" data-auth-analytics='{"linkTrackVars": "eVar27,events", "linkTrackEvents": "event15", "eVar27": "BG Login Page", "events": "event15", "linkName": "BG Login - Log In"}'>
<a href='/eom/SysConfig/WebPortal/BostonGlobe/Framework/regi/mc-forgot-password-step1.jsp' class="get-password">Forgot your password?</a>
</p>
</fieldset>
<p>Home delivery subscribers get free access. <a href="https://services.bostonglobe.com/registration/globesub/welcome.aspx?p1=BGC_LoginPage_StartHere" data-auth-analytics='' onClick="var s=s_gi('nytbostonglobecom');s.tl(this,'o','BG Modal Link Account');">Link Account</a>
<p>Customer Service Number: 1.888.MY.GLOBE</p>
<hr>
<h4>Exclusive free trial offer</h4>
<p>Receive free unlimited access to BostonGlobe.com for the next two weeks! <a href="https://digitalaccess.bostonglobe.com/da/54/?s_campaign=BGFreeTrial:2Week:ModalLogin">Get access</a>
</p></fieldset>
<!-- Form redirects -->
<input type="hidden" name="redirect" value="https://www.bostonglobe.com/eom/SysConfig/WebPortal/BostonGlobe/Framework/regi/login-success.jpt" />
<input type="hidden" name="onerror" value="https://www.bostonglobe.com/eom/SysConfig/WebPortal/BostonGlobe/Framework/regi/login-error.jpt" />
</form>
<form id="forgot" class="mfp-hide white-popup-block modal-login login-form">
<div class="modal-content-box">
<h3>Forgot Password</h3>
<div id="forgot-modal-errors" class='errors hidden'>
<div class="errorlist js-gen-error" id="form-error">
<div class="error-image"></div>
<div class="regi-error error-positioning" >
<h4>E-mail address not found, please try again or contact customer service at 1-888-MYGLOBE</h4>
</div>
</div>
</div>
<div id="forgot-modal-success" class='errors hidden'>
<div class="errorlist js-gen-error" id="form-error">
<div class="regi-error error-positioning">
<h4>Please check your e-mail for a message from BostonGlobe.com with the subject line "BostonGlobe.com password request." Click the link in the e-mail to choose a new password for BostonGlobe.com, and note that your new password will also be used for your Boston.com membership.</h4>
</div>
</div>
</div>
<p>Enter your e-mail address below. We’ll send you an e-mail with a link to reset your password.</p>
<p>
<label class="modal-login">E-mail Address</label>
<input type="text" class="login" id="regi_email" required>
<input type="submit" value="Reset" id="mc-password-submit" class="bg-button modal-login" data-auth-analytics='' onClick="var s=s_gi('nytbostonglobecom');s.tl(this,'o','Reset password modal');">
<a class="popup-with-form get-password" href="#modal-login">Return to login</a>
</p>
</div>
<!-- Form redirects -->
<input type="hidden" name="redirect" value="https://www.bostonglobe.com/eom/SysConfig/WebPortal/BostonGlobe/Framework/regi/login-success.jpt" />
<input type="hidden" name="onerror" value="https://www.bostonglobe.com/eom/SysConfig/WebPortal/BostonGlobe/Framework/regi/login-error.jpt" />
</form>
</div>
<script src="/js/lib/psswrd.js"></script>
<div id="meter-limit-met-popup" class="mfp-hide white-popup-block paywall-square-meter">
<div class="paywall-sub-section">
<h1>You've reached the limit of 10 free articles a month</h1>
<p class="paywall-mobile-link">Continue reading by subscribing to BostonGlobe.com for <a href="http://digitalaccess.bostonglobe.com/da/33/?eglobe_rc=WW113971" alt="mobile" onClick="var s=s_gi('nytbostonglobecom');s.tl(this,'o','BG Fullpage Paywall Offer');">just 99¢</a>.</p>
<p class="paywall-desktop-link">Continue reading by subscribing to BostonGlobe.com for <a href="http://digitalaccess.bostonglobe.com/da/33/?eglobe_rc=WW113971" alt="desktop" onClick="var s=s_gi('nytbostonglobecom');s.tl(this,'o','BG Modal Paywall Offer');">just 99¢</a>.</p>
</div>
<div class="paywall-main-section">
<div class="paywall-left-main">
<h2>Stay informed with unlimited access to Boston’s trusted news source.</h2>
<ul>
<li>High-quality journalism from the region’s largest newsroom</li>
<li>Convenient access across all of your devices</li>
<li>Today’s Headlines daily newsletter</li>
<li>Subscriber-only access to exclusive offers, events, contests, eBooks, and more</li>
<li class="bold">Less than $1 a week</li>
</ul>
</div>
<div class="paywall-right-main">
<div class="paywall-main-device-img">
<img src="/rw/SysConfig/WebPortal/BostonGlobe/Framework/images/Device-LockUp-non-transparent.jpg">
</div>
</div>
<div class="paywall-clearfix"></div>
</div> <!-- end paywall main section -->
<footer class="paywall-footer">
<a class="paywall-desktop-link" href="http://digitalaccess.bostonglobe.com/da/33/?eglobe_rc=WW113972" alt="desktop" onClick="var s=s_gi('nytbostonglobecom');s.tl(this,'o','BG Modal Paywall Get Access');"><button class="paywall-full-access-button">GET FULL ACCESS NOW</button></a>
<a class="paywall-mobile-link" href="http://digitalaccess.bostonglobe.com/da/33/?eglobe_rc=WW113972" alt="mobile" onClick="var s=s_gi('nytbostonglobecom');s.tl(this,'o','BG Fullpage Paywall Get Access');"><button class="paywall-full-access-button">GET FULL ACCESS NOW</button></a>
<div class="paywall-logo-img">
<img src="/rw/SysConfig/WebPortal/BostonGlobe/Framework/images/Globe-Logo-non-transparent.jpg">
</div>
<p class="paywall-desktop-link">Subscriber <a href="https://www.bostonglobe.com/eom/SysConfig/WebPortal/BostonGlobe/Framework/regi/final-login.jsp" alt="desktop" onClick="var s=s_gi('nytbostonglobecom');s.tl(this,'o','BG Modal Paywall Login');">Log In</a></p>
<p class="paywall-mobile-link">Subscriber <a href="https://www.bostonglobe.com/eom/SysConfig/WebPortal/BostonGlobe/Framework/regi/final-login.jsp" alt="mobile" onClick="var s=s_gi('nytbostonglobecom');s.tl(this,'o','BG Fullpage Paywall Login');">Log In</a></p>
</footer>
<div class="paywall-clearfix"></div>
<div class="paywall-main-device-img-bottom">
<img src="/rw/SysConfig/WebPortal/BostonGlobe/Framework/images/Device-LockUp-Mobile-non-transparent.jpg">
</div>
</div>
<!-- end Chris paywall modal -->
<div class="ad ad-slot-c" data-adname="EXTRA"></div><!-- Tracking -->
<!-- stubView3 = -->
<!-- Webtype is igraphic -->
<!-- sectionpath -->
<script>
var sPageName = ' | | Infographic';
var sChannel = '';
var sProp1 = '';
var sProp6 = 'Infographic';
if ( methode.showPaywall ) {
sChannel = 'Member Center';
sProp1 = 'Member Center | BGC Registration';
if ( $(window).width() <= 768 ) {
// assume mobile
sPageName = 'Member Center | BGC Registration | Fullpage Paywall Challenge';
sProp6 = 'BGC Registration Page - Fullpage';
} else {
// assume desktop
sPageName = 'Member Center | BGC Registration | Modal Paywall Challenge';
sProp6 = 'BGC Registration Page - Modal';
}
}
globe.extend(globe.analytics.omniture, {
'pageType' : '',
'pageName' : sPageName,
'channel' : sChannel,
'prop1' : sProp1,
'prop6' : sProp6,
'prop35' : 'logged out',
'eVar20' : 'logged out',
'prop42' : 'Metered',
'eVar42' : 'Metered',
'eVar41' : 'BostonGlobe.com',
'prop41' : 'BostonGlobe.com',
'WT omnituretracking.tag' : 'igraphic'
});
</script>
<noscript>
<img src="http://newyorktimes.112.2o7.net/b/ss/nytbostonglobecom/1/H.23.3--NS/0?pageName=News%20%7C%20BGC%20Homepage&ch=News&c1=News%20%7C%20BGC%20Homepage&c6=BGC%20Homepage&c41=BostonGlobe.com&v41=BostonGlobe.com" height="1" width="1" border="0" alt="" />
</noscript>
</div>
<script src='http://127.0.0.1:35728/livereload.js'></script>
</body>
</html> | BostonGlobe/07-30-2014-pedestrians | parts/standalone.html | HTML | mit | 44,101 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="Jim Robinson" name="author">
<link href=img/favicon.ico rel="shortcut icon">
<title>igv.js</title>
<!-- IGV JS-->
<script src="../dist/igv.min.js"></script>
</head>
<body>
<div id="myDiv" style="padding-top: 50px;padding-bottom: 20px; height: auto">
</div>
<script type="text/javascript">
document.addEventListener("DOMContentLoaded", function () {
var igvDiv = document.getElementById("myDiv");
var options = {
locus: '1:67,655,272-67,684,468',
flanking: 1000,
genome: "hg19",
// Define 2 "region of interest" sets, the first is global, the second specific to the track
roi: [
{
name: 'ROI set 1',
url: 'https://s3.amazonaws.com/igv.org.test/data/roi/roi_bed_1.bed',
indexed: false,
color: "rgba(68, 134, 247, 0.25)"
}
],
tracks: [
{
name: 'Some features',
url: 'https://s3.amazonaws.com/igv.org.test/data/roi/some_features.bed',
indexed: false,
roi: [{
name: 'ROI set 2',
url: 'https://s3.amazonaws.com/igv.org.test/data/roi/roi_bed_2.bed',
indexed: false,
color: "rgba(0, 150, 50, 0.25)"
}]
}
]
};
igv.createBrowser(igvDiv, options)
.then(function (browser) {
console.log("Created IGV browser");
})
})
</script>
</body>
</html>
| igvteam/igv.js | examples/roi.html | HTML | mit | 1,776 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>atbr: 10 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.9.1 / atbr - 8.9.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
atbr
<small>
8.9.0
<span class="label label-success">10 m 10 s 🏆</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-01-31 22:04:34 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-01-31 22:04:34 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 2 Virtual package relying on perl
coq 8.9.1 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.3 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "palmskog@gmail.com"
homepage: "https://github.com/coq-community/atbr"
dev-repo: "git+https://github.com/coq-community/atbr.git"
bug-reports: "https://github.com/coq-community/atbr/issues"
license: "LGPL-3.0-or-later"
synopsis: "A Coq tactic for deciding Kleene algebras"
description: """
This library provides algebraic tools for working with binary relations.
The main tactic provided is a reflexive tactic for solving (in)equations
in an arbitrary Kleene algebra. The decision procedure goes through
standard finite automata constructions.
Note that the initial authors consider this library to be superseded
by the Relation Algebra library, which is based on derivatives
rather than automata: https://github.com/damien-pous/relation-algebra
"""
build: [make "-j%{jobs}%"]
install: [make "install"]
depends: [
"ocaml"
"coq" {>= "8.9" & < "8.10~"}
]
tags: [
"category:Miscellaneous/Coq Extensions"
"category:Computer Science/Decision Procedures and Certified Algorithms/Decision procedures"
"keyword:Kleene algebra"
"keyword:finite automata"
"keyword:semiring"
"keyword:matrices"
"keyword:decision procedure"
"keyword:reflexive tactic"
"logpath:ATBR"
"date:2019-05-22"
]
authors: [
"Thomas Braibant"
"Damien Pous"
]
url {
src: "https://github.com/coq-community/atbr/archive/v8.9.0.tar.gz"
checksum: "sha256=ff1172623317ed67e9b058b7edec44df350de9a2858a3baadfb1685d411decbf"
}
</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-atbr.8.9.0 coq.8.9.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-atbr.8.9.0 coq.8.9.1</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>13 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-atbr.8.9.0 coq.8.9.1</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>10 m 10 s</dd>
</dl>
<h2>Installation size</h2>
<p>Total: 13 M</p>
<ul>
<li>2 M <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/DKA_StateSetSets.vo</code></li>
<li>1 M <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/DKA_Definitions.vo</code></li>
<li>795 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/Numbers.vo</code></li>
<li>701 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/SemiRing.vo</code></li>
<li>673 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/DisjointSets.vo</code></li>
<li>389 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/DKA_Construction.vo</code></li>
<li>362 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/Model_RegExp.vo</code></li>
<li>303 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/MxSemiRing.vo</code></li>
<li>299 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/DKA_Determinisation.vo</code></li>
<li>293 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/MxSemiLattice.vo</code></li>
<li>262 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/MyFSetProperties.vo</code></li>
<li>239 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/DKA_DFA_Equiv.vo</code></li>
<li>234 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/MxGraph.vo</code></li>
<li>199 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/DKA_Epsilon.vo</code></li>
<li>196 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/StrictKleeneAlgebra.vo</code></li>
<li>189 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/DKA_Construction.glob</code></li>
<li>166 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/MxKleeneAlgebra.vo</code></li>
<li>162 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/Examples.vo</code></li>
<li>161 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/ChurchRosser.vo</code></li>
<li>157 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/DKA_DFA_Language.vo</code></li>
<li>155 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/DKA_Merge.vo</code></li>
<li>147 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/DKA_Merge.glob</code></li>
<li>146 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/DecideKleeneAlgebra.vo</code></li>
<li>145 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/ChurchRosser_Points_vs_Algebraic.vo</code></li>
<li>144 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/MyFMapProperties.vo</code></li>
<li>143 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/DKA_CheckLabels.vo</code></li>
<li>141 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/DisjointSets.glob</code></li>
<li>137 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/MyFSets.vo</code></li>
<li>131 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/ATBR_Matrices.vo</code></li>
<li>131 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/ATBR.vo</code></li>
<li>119 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/SemiLattice.vo</code></li>
<li>118 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/DKA_DFA_Equiv.glob</code></li>
<li>114 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/DKA_Epsilon.glob</code></li>
<li>108 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/StrictStarForm.vo</code></li>
<li>107 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/KleeneAlgebra.vo</code></li>
<li>107 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/Model_Languages.vo</code></li>
<li>103 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/Classes.vo</code></li>
<li>101 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/reification_plugin.cmxs</code></li>
<li>99 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/Functors.vo</code></li>
<li>99 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/MxFunctors.vo</code></li>
<li>94 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/SemiRing.glob</code></li>
<li>92 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/Converse.vo</code></li>
<li>92 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/DKA_Determinisation.glob</code></li>
<li>91 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/Model_Relations.vo</code></li>
<li>90 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/Model_StdRelations.vo</code></li>
<li>84 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/Model_MinPlus.vo</code></li>
<li>82 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/Model_RegExp.glob</code></li>
<li>79 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/Monoid.vo</code></li>
<li>68 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/DKA_DFA_Language.glob</code></li>
<li>64 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/MxKleeneAlgebra.glob</code></li>
<li>63 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/BoolView.vo</code></li>
<li>62 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/Utils_WF.vo</code></li>
<li>54 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/Numbers.glob</code></li>
<li>53 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/Reification.vo</code></li>
<li>49 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/MyFSetProperties.glob</code></li>
<li>46 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/SemiLattice.glob</code></li>
<li>43 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/Graph.vo</code></li>
<li>42 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/MxSemiRing.glob</code></li>
<li>40 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/DKA_StateSetSets.glob</code></li>
<li>36 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/DKA_Construction.v</code></li>
<li>34 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/DisjointSets.v</code></li>
<li>32 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/MxGraph.glob</code></li>
<li>31 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/SemiRing.v</code></li>
<li>31 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/Monoid.glob</code></li>
<li>31 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/Common.vo</code></li>
<li>31 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/MxSemiLattice.glob</code></li>
<li>31 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/Force.vo</code></li>
<li>30 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/DKA_Definitions.glob</code></li>
<li>28 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/KleeneAlgebra.glob</code></li>
<li>27 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/StrictStarForm.glob</code></li>
<li>26 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/Utils_WF.glob</code></li>
<li>26 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/Model_RegExp.v</code></li>
<li>25 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/Classes.glob</code></li>
<li>24 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/DKA_Determinisation.v</code></li>
<li>22 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/Examples.glob</code></li>
<li>22 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/DKA_DFA_Equiv.v</code></li>
<li>21 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/StrictKleeneAlgebra.glob</code></li>
<li>21 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/MyFSets.glob</code></li>
<li>18 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/DKA_Epsilon.v</code></li>
<li>18 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/Numbers.v</code></li>
<li>17 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/ChurchRosser.glob</code></li>
<li>16 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/BoolView.glob</code></li>
<li>15 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/reification_plugin.cmi</code></li>
<li>15 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/Model_Languages.glob</code></li>
<li>14 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/MxKleeneAlgebra.v</code></li>
<li>14 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/DKA_StateSetSets.v</code></li>
<li>14 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/SemiLattice.v</code></li>
<li>13 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/DecideKleeneAlgebra.glob</code></li>
<li>13 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/Graph.glob</code></li>
<li>12 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/MyFSetProperties.v</code></li>
<li>12 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/Reification.glob</code></li>
<li>12 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/ChurchRosser_Points_vs_Algebraic.glob</code></li>
<li>11 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/Converse.glob</code></li>
<li>11 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/DKA_CheckLabels.glob</code></li>
<li>11 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/Model_Relations.glob</code></li>
<li>11 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/Functors.glob</code></li>
<li>10 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/MxSemiRing.v</code></li>
<li>10 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/DKA_DFA_Language.v</code></li>
<li>10 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/reification_plugin.cmx</code></li>
<li>10 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/DKA_Merge.v</code></li>
<li>10 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/MxGraph.v</code></li>
<li>10 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/Monoid.v</code></li>
<li>10 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/MxFunctors.glob</code></li>
<li>9 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/Utils_WF.v</code></li>
<li>9 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/DKA_Definitions.v</code></li>
<li>9 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/BoolView.v</code></li>
<li>9 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/Examples.v</code></li>
<li>9 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/StrictStarForm.v</code></li>
<li>9 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/Model_StdRelations.glob</code></li>
<li>8 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/Model_MinPlus.glob</code></li>
<li>8 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/KleeneAlgebra.v</code></li>
<li>8 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/StrictKleeneAlgebra.v</code></li>
<li>8 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/MyFSets.v</code></li>
<li>7 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/Classes.v</code></li>
<li>7 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/DecideKleeneAlgebra.v</code></li>
<li>7 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/MyFMapProperties.glob</code></li>
<li>7 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/Force.glob</code></li>
<li>6 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/reification_plugin.cmxa</code></li>
<li>6 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/Model_Languages.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/DKA_CheckLabels.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/MxSemiLattice.v</code></li>
<li>5 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/Model_Relations.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/Model_MinPlus.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/Graph.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/Model_StdRelations.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/Converse.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/ChurchRosser_Points_vs_Algebraic.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/ChurchRosser.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/MxFunctors.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/Common.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/Reification.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/Functors.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/MyFMapProperties.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/Force.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/Common.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/ATBR.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/ATBR_Matrices.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/ATBR.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/ATBR/ATBR_Matrices.glob</code></li>
</ul>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq-atbr.8.9.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.08.1-2.0.5/released/8.9.1/atbr/8.9.0.html | HTML | mit | 23,023 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>propcalc: 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 / propcalc - 8.5.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
propcalc
<small>
8.5.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-03-08 23:52:51 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-03-08 23:52:51 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
conf-gmp 4 Virtual package relying on a GMP lib system installation
coq 8.13.0 Formal proof management system
num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.12.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.12.1 Official release 4.12.1
ocaml-config 2 OCaml Switch Configuration
ocaml-options-vanilla 1 Ensure that OCaml is compiled with no special options enabled
ocamlfind 1.9.3 A library manager for OCaml
zarith 1.12 Implements arithmetic and logical operations over arbitrary-precision integers
# opam file:
opam-version: "2.0"
maintainer: "matej.kosik@inria.fr"
homepage: "https://github.com/coq-contribs/abp"
license: "BSD"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/PropCalc"]
depends: [
"ocaml"
"coq" {>= "8.5" & < "8.6~"}
]
tags: [ "keyword:propositional calculus" "keyword:classical logic" "keyword:completeness" "keyword:natural deduction" "keyword:sequent calculus" "keyword:cut elimination" "category:Mathematics/Logic/Foundations" ]
authors: [ "Floris van Doorn <fpvdoorn@gmail.com>" ]
bug-reports: "https://github.com/coq-contribs/propcalc/issues"
dev-repo: "git+https://github.com/coq-contribs/propcalc.git"
synopsis: "Propositional Calculus"
description: """
Formalization of basic theorems about classical propositional logic. The main theorems are (1) the soundness and completeness of natural deduction calculus, (2) the equivalence between natural deduction calculus, Hilbert systems and sequent calculus and (3) cut elimination for sequent calculus.
Keywords: propositional calculus, classical logic, completeness, natural deduction, sequent calculus, cut elimination."""
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/propcalc/archive/v8.5.0.tar.gz"
checksum: "md5=2043cc3cb1336535a92fc3a26379d50d"
}
</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-propcalc.8.5.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-propcalc -> coq < 8.6~ -> ocaml < 4.06.0
base of this switch (use `--unlock-base' to force)
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-propcalc.8.5.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
| coq-bench/coq-bench.github.io | clean/Linux-x86_64-4.12.1-2.0.8/released/8.13.0/propcalc/8.5.0.html | HTML | mit | 7,478 |
<!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="./47596c146f6dd3d1cbb98c8c62cddf38e06f22d5518e9896e05247c1a4caba17.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/9d546de252c88300a36312e1480ce04800561df2a96244915c414fbcddc27e34.html | HTML | mit | 550 |
<!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>2. Lexical analysis — Python 3.3.6 documentation</title>
<link rel="stylesheet" href="../_static/pydoctheme.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
VERSION: '3.3.6',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
};
</script>
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
<script type="text/javascript" src="../_static/sidebar.js"></script>
<link rel="search" type="application/opensearchdescription+xml"
title="Search within Python 3.3.6 documentation"
href="../_static/opensearch.xml"/>
<link rel="author" title="About these documents" href="../about.html" />
<link rel="copyright" title="Copyright" href="../copyright.html" />
<link rel="top" title="Python 3.3.6 documentation" href="../index.html" />
<link rel="up" title="The Python Language Reference" href="index.html" />
<link rel="next" title="3. Data model" href="datamodel.html" />
<link rel="prev" title="1. Introduction" href="introduction.html" />
<link rel="shortcut icon" type="image/png" href="../_static/py.png" />
<script type="text/javascript" src="../_static/copybutton.js"></script>
</head>
<body>
<div class="related">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a href="../genindex.html" title="General Index"
accesskey="I">index</a></li>
<li class="right" >
<a href="../py-modindex.html" title="Python Module Index"
>modules</a> |</li>
<li class="right" >
<a href="datamodel.html" title="3. Data model"
accesskey="N">next</a> |</li>
<li class="right" >
<a href="introduction.html" title="1. Introduction"
accesskey="P">previous</a> |</li>
<li><img src="../_static/py.png" alt=""
style="vertical-align: middle; margin-top: -1px"/></li>
<li><a href="http://www.python.org/">Python</a> »</li>
<li>
<a href="../index.html">3.3.6 Documentation</a> »
</li>
<li><a href="index.html" accesskey="U">The Python Language Reference</a> »</li>
</ul>
</div>
<div class="document">
<div class="documentwrapper">
<div class="bodywrapper">
<div class="body">
<div class="section" id="lexical-analysis">
<span id="lexical"></span><h1>2. Lexical analysis<a class="headerlink" href="#lexical-analysis" title="Permalink to this headline">¶</a></h1>
<p id="index-0">A Python program is read by a <em>parser</em>. Input to the parser is a stream of
<em>tokens</em>, generated by the <em>lexical analyzer</em>. This chapter describes how the
lexical analyzer breaks a file into tokens.</p>
<p>Python reads program text as Unicode code points; the encoding of a source file
can be given by an encoding declaration and defaults to UTF-8, see <span class="target" id="index-1"></span><a class="pep reference external" href="http://www.python.org/dev/peps/pep-3120"><strong>PEP 3120</strong></a>
for details. If the source file cannot be decoded, a <a class="reference internal" href="../library/exceptions.html#SyntaxError" title="SyntaxError"><tt class="xref py py-exc docutils literal"><span class="pre">SyntaxError</span></tt></a> is
raised.</p>
<div class="section" id="line-structure">
<span id="id1"></span><h2>2.1. Line structure<a class="headerlink" href="#line-structure" title="Permalink to this headline">¶</a></h2>
<p id="index-2">A Python program is divided into a number of <em>logical lines</em>.</p>
<div class="section" id="logical-lines">
<span id="id2"></span><h3>2.1.1. Logical lines<a class="headerlink" href="#logical-lines" title="Permalink to this headline">¶</a></h3>
<p id="index-3">The end of a logical line is represented by the token NEWLINE. Statements
cannot cross logical line boundaries except where NEWLINE is allowed by the
syntax (e.g., between statements in compound statements). A logical line is
constructed from one or more <em>physical lines</em> by following the explicit or
implicit <em>line joining</em> rules.</p>
</div>
<div class="section" id="physical-lines">
<span id="id3"></span><h3>2.1.2. Physical lines<a class="headerlink" href="#physical-lines" title="Permalink to this headline">¶</a></h3>
<p>A physical line is a sequence of characters terminated by an end-of-line
sequence. In source files, any of the standard platform line termination
sequences can be used - the Unix form using ASCII LF (linefeed), the Windows
form using the ASCII sequence CR LF (return followed by linefeed), or the old
Macintosh form using the ASCII CR (return) character. All of these forms can be
used equally, regardless of platform.</p>
<p>When embedding Python, source code strings should be passed to Python APIs using
the standard C conventions for newline characters (the <tt class="docutils literal"><span class="pre">\n</span></tt> character,
representing ASCII LF, is the line terminator).</p>
</div>
<div class="section" id="comments">
<span id="id4"></span><h3>2.1.3. Comments<a class="headerlink" href="#comments" title="Permalink to this headline">¶</a></h3>
<p id="index-4">A comment starts with a hash character (<tt class="docutils literal"><span class="pre">#</span></tt>) that is not part of a string
literal, and ends at the end of the physical line. A comment signifies the end
of the logical line unless the implicit line joining rules are invoked. Comments
are ignored by the syntax; they are not tokens.</p>
</div>
<div class="section" id="encoding-declarations">
<span id="encodings"></span><h3>2.1.4. Encoding declarations<a class="headerlink" href="#encoding-declarations" title="Permalink to this headline">¶</a></h3>
<p id="index-5">If a comment in the first or second line of the Python script matches the
regular expression <tt class="docutils literal"><span class="pre">coding[=:]\s*([-\w.]+)</span></tt>, this comment is processed as an
encoding declaration; the first group of this expression names the encoding of
the source code file. The recommended forms of this expression are</p>
<div class="highlight-python3"><div class="highlight"><pre><span class="c"># -*- coding: <encoding-name> -*-</span>
</pre></div>
</div>
<p>which is recognized also by GNU Emacs, and</p>
<div class="highlight-python3"><div class="highlight"><pre><span class="c"># vim:fileencoding=<encoding-name></span>
</pre></div>
</div>
<p>which is recognized by Bram Moolenaar’s VIM.</p>
<p>If no encoding declaration is found, the default encoding is UTF-8. In
addition, if the first bytes of the file are the UTF-8 byte-order mark
(<tt class="docutils literal"><span class="pre">b'\xef\xbb\xbf'</span></tt>), the declared file encoding is UTF-8 (this is supported,
among others, by Microsoft’s <strong class="program">notepad</strong>).</p>
<p>If an encoding is declared, the encoding name must be recognized by Python. The
encoding is used for all lexical analysis, including string literals, comments
and identifiers. The encoding declaration must appear on a line of its own.</p>
</div>
<div class="section" id="explicit-line-joining">
<span id="explicit-joining"></span><h3>2.1.5. Explicit line joining<a class="headerlink" href="#explicit-line-joining" title="Permalink to this headline">¶</a></h3>
<p id="index-6">Two or more physical lines may be joined into logical lines using backslash
characters (<tt class="docutils literal"><span class="pre">\</span></tt>), as follows: when a physical line ends in a backslash that is
not part of a string literal or comment, it is joined with the following forming
a single logical line, deleting the backslash and the following end-of-line
character. For example:</p>
<div class="highlight-python3"><div class="highlight"><pre><span class="k">if</span> <span class="mi">1900</span> <span class="o"><</span> <span class="n">year</span> <span class="o"><</span> <span class="mi">2100</span> <span class="ow">and</span> <span class="mi">1</span> <span class="o"><=</span> <span class="n">month</span> <span class="o"><=</span> <span class="mi">12</span> \
<span class="ow">and</span> <span class="mi">1</span> <span class="o"><=</span> <span class="n">day</span> <span class="o"><=</span> <span class="mi">31</span> <span class="ow">and</span> <span class="mi">0</span> <span class="o"><=</span> <span class="n">hour</span> <span class="o"><</span> <span class="mi">24</span> \
<span class="ow">and</span> <span class="mi">0</span> <span class="o"><=</span> <span class="n">minute</span> <span class="o"><</span> <span class="mi">60</span> <span class="ow">and</span> <span class="mi">0</span> <span class="o"><=</span> <span class="n">second</span> <span class="o"><</span> <span class="mi">60</span><span class="p">:</span> <span class="c"># Looks like a valid date</span>
<span class="k">return</span> <span class="mi">1</span>
</pre></div>
</div>
<p>A line ending in a backslash cannot carry a comment. A backslash does not
continue a comment. A backslash does not continue a token except for string
literals (i.e., tokens other than string literals cannot be split across
physical lines using a backslash). A backslash is illegal elsewhere on a line
outside a string literal.</p>
</div>
<div class="section" id="implicit-line-joining">
<span id="implicit-joining"></span><h3>2.1.6. Implicit line joining<a class="headerlink" href="#implicit-line-joining" title="Permalink to this headline">¶</a></h3>
<p>Expressions in parentheses, square brackets or curly braces can be split over
more than one physical line without using backslashes. For example:</p>
<div class="highlight-python3"><div class="highlight"><pre><span class="n">month_names</span> <span class="o">=</span> <span class="p">[</span><span class="s">'Januari'</span><span class="p">,</span> <span class="s">'Februari'</span><span class="p">,</span> <span class="s">'Maart'</span><span class="p">,</span> <span class="c"># These are the</span>
<span class="s">'April'</span><span class="p">,</span> <span class="s">'Mei'</span><span class="p">,</span> <span class="s">'Juni'</span><span class="p">,</span> <span class="c"># Dutch names</span>
<span class="s">'Juli'</span><span class="p">,</span> <span class="s">'Augustus'</span><span class="p">,</span> <span class="s">'September'</span><span class="p">,</span> <span class="c"># for the months</span>
<span class="s">'Oktober'</span><span class="p">,</span> <span class="s">'November'</span><span class="p">,</span> <span class="s">'December'</span><span class="p">]</span> <span class="c"># of the year</span>
</pre></div>
</div>
<p>Implicitly continued lines can carry comments. The indentation of the
continuation lines is not important. Blank continuation lines are allowed.
There is no NEWLINE token between implicit continuation lines. Implicitly
continued lines can also occur within triple-quoted strings (see below); in that
case they cannot carry comments.</p>
</div>
<div class="section" id="blank-lines">
<span id="id5"></span><h3>2.1.7. Blank lines<a class="headerlink" href="#blank-lines" title="Permalink to this headline">¶</a></h3>
<p id="index-7">A logical line that contains only spaces, tabs, formfeeds and possibly a
comment, is ignored (i.e., no NEWLINE token is generated). During interactive
input of statements, handling of a blank line may differ depending on the
implementation of the read-eval-print loop. In the standard interactive
interpreter, an entirely blank logical line (i.e. one containing not even
whitespace or a comment) terminates a multi-line statement.</p>
</div>
<div class="section" id="indentation">
<span id="id6"></span><h3>2.1.8. Indentation<a class="headerlink" href="#indentation" title="Permalink to this headline">¶</a></h3>
<p id="index-8">Leading whitespace (spaces and tabs) at the beginning of a logical line is used
to compute the indentation level of the line, which in turn is used to determine
the grouping of statements.</p>
<p>Tabs are replaced (from left to right) by one to eight spaces such that the
total number of characters up to and including the replacement is a multiple of
eight (this is intended to be the same rule as used by Unix). The total number
of spaces preceding the first non-blank character then determines the line’s
indentation. Indentation cannot be split over multiple physical lines using
backslashes; the whitespace up to the first backslash determines the
indentation.</p>
<p>Indentation is rejected as inconsistent if a source file mixes tabs and spaces
in a way that makes the meaning dependent on the worth of a tab in spaces; a
<a class="reference internal" href="../library/exceptions.html#TabError" title="TabError"><tt class="xref py py-exc docutils literal"><span class="pre">TabError</span></tt></a> is raised in that case.</p>
<p><strong>Cross-platform compatibility note:</strong> because of the nature of text editors on
non-UNIX platforms, it is unwise to use a mixture of spaces and tabs for the
indentation in a single source file. It should also be noted that different
platforms may explicitly limit the maximum indentation level.</p>
<p>A formfeed character may be present at the start of the line; it will be ignored
for the indentation calculations above. Formfeed characters occurring elsewhere
in the leading whitespace have an undefined effect (for instance, they may reset
the space count to zero).</p>
<p id="index-9">The indentation levels of consecutive lines are used to generate INDENT and
DEDENT tokens, using a stack, as follows.</p>
<p>Before the first line of the file is read, a single zero is pushed on the stack;
this will never be popped off again. The numbers pushed on the stack will
always be strictly increasing from bottom to top. At the beginning of each
logical line, the line’s indentation level is compared to the top of the stack.
If it is equal, nothing happens. If it is larger, it is pushed on the stack, and
one INDENT token is generated. If it is smaller, it <em>must</em> be one of the
numbers occurring on the stack; all numbers on the stack that are larger are
popped off, and for each number popped off a DEDENT token is generated. At the
end of the file, a DEDENT token is generated for each number remaining on the
stack that is larger than zero.</p>
<p>Here is an example of a correctly (though confusingly) indented piece of Python
code:</p>
<div class="highlight-python3"><div class="highlight"><pre><span class="k">def</span> <span class="nf">perm</span><span class="p">(</span><span class="n">l</span><span class="p">):</span>
<span class="c"># Compute the list of all permutations of l</span>
<span class="k">if</span> <span class="nb">len</span><span class="p">(</span><span class="n">l</span><span class="p">)</span> <span class="o"><=</span> <span class="mi">1</span><span class="p">:</span>
<span class="k">return</span> <span class="p">[</span><span class="n">l</span><span class="p">]</span>
<span class="n">r</span> <span class="o">=</span> <span class="p">[]</span>
<span class="k">for</span> <span class="n">i</span> <span class="ow">in</span> <span class="nb">range</span><span class="p">(</span><span class="nb">len</span><span class="p">(</span><span class="n">l</span><span class="p">)):</span>
<span class="n">s</span> <span class="o">=</span> <span class="n">l</span><span class="p">[:</span><span class="n">i</span><span class="p">]</span> <span class="o">+</span> <span class="n">l</span><span class="p">[</span><span class="n">i</span><span class="o">+</span><span class="mi">1</span><span class="p">:]</span>
<span class="n">p</span> <span class="o">=</span> <span class="n">perm</span><span class="p">(</span><span class="n">s</span><span class="p">)</span>
<span class="k">for</span> <span class="n">x</span> <span class="ow">in</span> <span class="n">p</span><span class="p">:</span>
<span class="n">r</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="n">l</span><span class="p">[</span><span class="n">i</span><span class="p">:</span><span class="n">i</span><span class="o">+</span><span class="mi">1</span><span class="p">]</span> <span class="o">+</span> <span class="n">x</span><span class="p">)</span>
<span class="k">return</span> <span class="n">r</span>
</pre></div>
</div>
<p>The following example shows various indentation errors:</p>
<div class="highlight-python3"><div class="highlight"><pre> <span class="k">def</span> <span class="nf">perm</span><span class="p">(</span><span class="n">l</span><span class="p">):</span> <span class="c"># error: first line indented</span>
<span class="k">for</span> <span class="n">i</span> <span class="ow">in</span> <span class="nb">range</span><span class="p">(</span><span class="nb">len</span><span class="p">(</span><span class="n">l</span><span class="p">)):</span> <span class="c"># error: not indented</span>
<span class="n">s</span> <span class="o">=</span> <span class="n">l</span><span class="p">[:</span><span class="n">i</span><span class="p">]</span> <span class="o">+</span> <span class="n">l</span><span class="p">[</span><span class="n">i</span><span class="o">+</span><span class="mi">1</span><span class="p">:]</span>
<span class="n">p</span> <span class="o">=</span> <span class="n">perm</span><span class="p">(</span><span class="n">l</span><span class="p">[:</span><span class="n">i</span><span class="p">]</span> <span class="o">+</span> <span class="n">l</span><span class="p">[</span><span class="n">i</span><span class="o">+</span><span class="mi">1</span><span class="p">:])</span> <span class="c"># error: unexpected indent</span>
<span class="k">for</span> <span class="n">x</span> <span class="ow">in</span> <span class="n">p</span><span class="p">:</span>
<span class="n">r</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="n">l</span><span class="p">[</span><span class="n">i</span><span class="p">:</span><span class="n">i</span><span class="o">+</span><span class="mi">1</span><span class="p">]</span> <span class="o">+</span> <span class="n">x</span><span class="p">)</span>
<span class="k">return</span> <span class="n">r</span> <span class="c"># error: inconsistent dedent</span>
</pre></div>
</div>
<p>(Actually, the first three errors are detected by the parser; only the last
error is found by the lexical analyzer — the indentation of <tt class="docutils literal"><span class="pre">return</span> <span class="pre">r</span></tt> does
not match a level popped off the stack.)</p>
</div>
<div class="section" id="whitespace-between-tokens">
<span id="whitespace"></span><h3>2.1.9. Whitespace between tokens<a class="headerlink" href="#whitespace-between-tokens" title="Permalink to this headline">¶</a></h3>
<p>Except at the beginning of a logical line or in string literals, the whitespace
characters space, tab and formfeed can be used interchangeably to separate
tokens. Whitespace is needed between two tokens only if their concatenation
could otherwise be interpreted as a different token (e.g., ab is one token, but
a b is two tokens).</p>
</div>
</div>
<div class="section" id="other-tokens">
<span id="id7"></span><h2>2.2. Other tokens<a class="headerlink" href="#other-tokens" title="Permalink to this headline">¶</a></h2>
<p>Besides NEWLINE, INDENT and DEDENT, the following categories of tokens exist:
<em>identifiers</em>, <em>keywords</em>, <em>literals</em>, <em>operators</em>, and <em>delimiters</em>. Whitespace
characters (other than line terminators, discussed earlier) are not tokens, but
serve to delimit tokens. Where ambiguity exists, a token comprises the longest
possible string that forms a legal token, when read from left to right.</p>
</div>
<div class="section" id="identifiers">
<span id="identifiers-and-keywords"></span><h2>2.3. Identifiers and keywords<a class="headerlink" href="#identifiers" title="Permalink to this headline">¶</a></h2>
<p id="index-10">Identifiers (also referred to as <em>names</em>) are described by the following lexical
definitions.</p>
<p>The syntax of identifiers in Python is based on the Unicode standard annex
UAX-31, with elaboration and changes as defined below; see also <span class="target" id="index-11"></span><a class="pep reference external" href="http://www.python.org/dev/peps/pep-3131"><strong>PEP 3131</strong></a> for
further details.</p>
<p>Within the ASCII range (U+0001..U+007F), the valid characters for identifiers
are the same as in Python 2.x: the uppercase and lowercase letters <tt class="docutils literal"><span class="pre">A</span></tt> through
<tt class="docutils literal"><span class="pre">Z</span></tt>, the underscore <tt class="docutils literal"><span class="pre">_</span></tt> and, except for the first character, the digits
<tt class="docutils literal"><span class="pre">0</span></tt> through <tt class="docutils literal"><span class="pre">9</span></tt>.</p>
<p>Python 3.0 introduces additional characters from outside the ASCII range (see
<span class="target" id="index-12"></span><a class="pep reference external" href="http://www.python.org/dev/peps/pep-3131"><strong>PEP 3131</strong></a>). For these characters, the classification uses the version of the
Unicode Character Database as included in the <a class="reference internal" href="../library/unicodedata.html#module-unicodedata" title="unicodedata: Access the Unicode Database."><tt class="xref py py-mod docutils literal"><span class="pre">unicodedata</span></tt></a> module.</p>
<p>Identifiers are unlimited in length. Case is significant.</p>
<pre>
<strong id="grammar-token-identifier">identifier </strong> ::= <a class="reference internal" href="#grammar-token-xid_start"><tt class="xref docutils literal"><span class="pre">xid_start</span></tt></a> <a class="reference internal" href="#grammar-token-xid_continue"><tt class="xref docutils literal"><span class="pre">xid_continue</span></tt></a>*
<strong id="grammar-token-id_start">id_start </strong> ::= <all characters in general categories Lu, Ll, Lt, Lm, Lo, Nl, the underscore, and characters with the Other_ID_Start property>
<strong id="grammar-token-id_continue">id_continue </strong> ::= <all characters in <a class="reference internal" href="#grammar-token-id_start"><tt class="xref docutils literal"><span class="pre">id_start</span></tt></a>, plus characters in the categories Mn, Mc, Nd, Pc and others with the Other_ID_Continue property>
<strong id="grammar-token-xid_start">xid_start </strong> ::= <all characters in <a class="reference internal" href="#grammar-token-id_start"><tt class="xref docutils literal"><span class="pre">id_start</span></tt></a> whose NFKC normalization is in "id_start xid_continue*">
<strong id="grammar-token-xid_continue">xid_continue</strong> ::= <all characters in <a class="reference internal" href="#grammar-token-id_continue"><tt class="xref docutils literal"><span class="pre">id_continue</span></tt></a> whose NFKC normalization is in "id_continue*">
</pre>
<p>The Unicode category codes mentioned above stand for:</p>
<ul class="simple">
<li><em>Lu</em> - uppercase letters</li>
<li><em>Ll</em> - lowercase letters</li>
<li><em>Lt</em> - titlecase letters</li>
<li><em>Lm</em> - modifier letters</li>
<li><em>Lo</em> - other letters</li>
<li><em>Nl</em> - letter numbers</li>
<li><em>Mn</em> - nonspacing marks</li>
<li><em>Mc</em> - spacing combining marks</li>
<li><em>Nd</em> - decimal numbers</li>
<li><em>Pc</em> - connector punctuations</li>
<li><em>Other_ID_Start</em> - explicit list of characters in <a class="reference external" href="http://unicode.org/Public/UNIDATA/PropList.txt">PropList.txt</a> to support backwards compatibility</li>
<li><em>Other_ID_Continue</em> - likewise</li>
</ul>
<p>All identifiers are converted into the normal form NFKC while parsing; comparison
of identifiers is based on NFKC.</p>
<p>A non-normative HTML file listing all valid identifier characters for Unicode
4.1 can be found at
<a class="reference external" href="http://www.dcl.hpi.uni-potsdam.de/home/loewis/table-3131.html">http://www.dcl.hpi.uni-potsdam.de/home/loewis/table-3131.html</a>.</p>
<div class="section" id="keywords">
<span id="id8"></span><h3>2.3.1. Keywords<a class="headerlink" href="#keywords" title="Permalink to this headline">¶</a></h3>
<p id="index-13">The following identifiers are used as reserved words, or <em>keywords</em> of the
language, and cannot be used as ordinary identifiers. They must be spelled
exactly as written here:</p>
<div class="highlight-text"><div class="highlight"><pre>False class finally is return
None continue for lambda try
True def from nonlocal while
and del global not with
as elif if or yield
assert else import pass
break except in raise
</pre></div>
</div>
</div>
<div class="section" id="reserved-classes-of-identifiers">
<span id="id-classes"></span><h3>2.3.2. Reserved classes of identifiers<a class="headerlink" href="#reserved-classes-of-identifiers" title="Permalink to this headline">¶</a></h3>
<p>Certain classes of identifiers (besides keywords) have special meanings. These
classes are identified by the patterns of leading and trailing underscore
characters:</p>
<dl class="docutils">
<dt><tt class="docutils literal"><span class="pre">_*</span></tt></dt>
<dd><p class="first">Not imported by <tt class="docutils literal"><span class="pre">from</span> <span class="pre">module</span> <span class="pre">import</span> <span class="pre">*</span></tt>. The special identifier <tt class="docutils literal"><span class="pre">_</span></tt> is used
in the interactive interpreter to store the result of the last evaluation; it is
stored in the <a class="reference internal" href="../library/builtins.html#module-builtins" title="builtins: The module that provides the built-in namespace."><tt class="xref py py-mod docutils literal"><span class="pre">builtins</span></tt></a> module. When not in interactive mode, <tt class="docutils literal"><span class="pre">_</span></tt>
has no special meaning and is not defined. See section <a class="reference internal" href="simple_stmts.html#import"><em>The import statement</em></a>.</p>
<div class="last admonition note">
<p class="first admonition-title">Note</p>
<p class="last">The name <tt class="docutils literal"><span class="pre">_</span></tt> is often used in conjunction with internationalization;
refer to the documentation for the <a class="reference internal" href="../library/gettext.html#module-gettext" title="gettext: Multilingual internationalization services."><tt class="xref py py-mod docutils literal"><span class="pre">gettext</span></tt></a> module for more
information on this convention.</p>
</div>
</dd>
<dt><tt class="docutils literal"><span class="pre">__*__</span></tt></dt>
<dd>System-defined names. These names are defined by the interpreter and its
implementation (including the standard library). Current system names are
discussed in the <a class="reference internal" href="datamodel.html#specialnames"><em>Special method names</em></a> section and elsewhere. More will likely
be defined in future versions of Python. <em>Any</em> use of <tt class="docutils literal"><span class="pre">__*__</span></tt> names, in
any context, that does not follow explicitly documented use, is subject to
breakage without warning.</dd>
<dt><tt class="docutils literal"><span class="pre">__*</span></tt></dt>
<dd>Class-private names. Names in this category, when used within the context of a
class definition, are re-written to use a mangled form to help avoid name
clashes between “private” attributes of base and derived classes. See section
<a class="reference internal" href="expressions.html#atom-identifiers"><em>Identifiers (Names)</em></a>.</dd>
</dl>
</div>
</div>
<div class="section" id="literals">
<span id="id9"></span><h2>2.4. Literals<a class="headerlink" href="#literals" title="Permalink to this headline">¶</a></h2>
<p id="index-14">Literals are notations for constant values of some built-in types.</p>
<div class="section" id="string-and-bytes-literals">
<span id="strings"></span><h3>2.4.1. String and Bytes literals<a class="headerlink" href="#string-and-bytes-literals" title="Permalink to this headline">¶</a></h3>
<p id="index-15">String literals are described by the following lexical definitions:</p>
<pre>
<strong id="grammar-token-stringliteral">stringliteral </strong> ::= [<a class="reference internal" href="#grammar-token-stringprefix"><tt class="xref docutils literal"><span class="pre">stringprefix</span></tt></a>](<a class="reference internal" href="#grammar-token-shortstring"><tt class="xref docutils literal"><span class="pre">shortstring</span></tt></a> | <a class="reference internal" href="#grammar-token-longstring"><tt class="xref docutils literal"><span class="pre">longstring</span></tt></a>)
<strong id="grammar-token-stringprefix">stringprefix </strong> ::= "r" | "u" | "R" | "U"
<strong id="grammar-token-shortstring">shortstring </strong> ::= "'" <a class="reference internal" href="#grammar-token-shortstringitem"><tt class="xref docutils literal"><span class="pre">shortstringitem</span></tt></a>* "'" | '"' <a class="reference internal" href="#grammar-token-shortstringitem"><tt class="xref docutils literal"><span class="pre">shortstringitem</span></tt></a>* '"'
<strong id="grammar-token-longstring">longstring </strong> ::= "'''" <a class="reference internal" href="#grammar-token-longstringitem"><tt class="xref docutils literal"><span class="pre">longstringitem</span></tt></a>* "'''" | '"""' <a class="reference internal" href="#grammar-token-longstringitem"><tt class="xref docutils literal"><span class="pre">longstringitem</span></tt></a>* '"""'
<strong id="grammar-token-shortstringitem">shortstringitem</strong> ::= <a class="reference internal" href="#grammar-token-shortstringchar"><tt class="xref docutils literal"><span class="pre">shortstringchar</span></tt></a> | <a class="reference internal" href="#grammar-token-stringescapeseq"><tt class="xref docutils literal"><span class="pre">stringescapeseq</span></tt></a>
<strong id="grammar-token-longstringitem">longstringitem </strong> ::= <a class="reference internal" href="#grammar-token-longstringchar"><tt class="xref docutils literal"><span class="pre">longstringchar</span></tt></a> | <a class="reference internal" href="#grammar-token-stringescapeseq"><tt class="xref docutils literal"><span class="pre">stringescapeseq</span></tt></a>
<strong id="grammar-token-shortstringchar">shortstringchar</strong> ::= <any source character except "\" or newline or the quote>
<strong id="grammar-token-longstringchar">longstringchar </strong> ::= <any source character except "\">
<strong id="grammar-token-stringescapeseq">stringescapeseq</strong> ::= "\" <any source character>
</pre>
<pre>
<strong id="grammar-token-bytesliteral">bytesliteral </strong> ::= <a class="reference internal" href="#grammar-token-bytesprefix"><tt class="xref docutils literal"><span class="pre">bytesprefix</span></tt></a>(<a class="reference internal" href="#grammar-token-shortbytes"><tt class="xref docutils literal"><span class="pre">shortbytes</span></tt></a> | <a class="reference internal" href="#grammar-token-longbytes"><tt class="xref docutils literal"><span class="pre">longbytes</span></tt></a>)
<strong id="grammar-token-bytesprefix">bytesprefix </strong> ::= "b" | "B" | "br" | "Br" | "bR" | "BR" | "rb" | "rB" | "Rb" | "RB"
<strong id="grammar-token-shortbytes">shortbytes </strong> ::= "'" <a class="reference internal" href="#grammar-token-shortbytesitem"><tt class="xref docutils literal"><span class="pre">shortbytesitem</span></tt></a>* "'" | '"' <a class="reference internal" href="#grammar-token-shortbytesitem"><tt class="xref docutils literal"><span class="pre">shortbytesitem</span></tt></a>* '"'
<strong id="grammar-token-longbytes">longbytes </strong> ::= "'''" <a class="reference internal" href="#grammar-token-longbytesitem"><tt class="xref docutils literal"><span class="pre">longbytesitem</span></tt></a>* "'''" | '"""' <a class="reference internal" href="#grammar-token-longbytesitem"><tt class="xref docutils literal"><span class="pre">longbytesitem</span></tt></a>* '"""'
<strong id="grammar-token-shortbytesitem">shortbytesitem</strong> ::= <a class="reference internal" href="#grammar-token-shortbyteschar"><tt class="xref docutils literal"><span class="pre">shortbyteschar</span></tt></a> | <a class="reference internal" href="#grammar-token-bytesescapeseq"><tt class="xref docutils literal"><span class="pre">bytesescapeseq</span></tt></a>
<strong id="grammar-token-longbytesitem">longbytesitem </strong> ::= <a class="reference internal" href="#grammar-token-longbyteschar"><tt class="xref docutils literal"><span class="pre">longbyteschar</span></tt></a> | <a class="reference internal" href="#grammar-token-bytesescapeseq"><tt class="xref docutils literal"><span class="pre">bytesescapeseq</span></tt></a>
<strong id="grammar-token-shortbyteschar">shortbyteschar</strong> ::= <any ASCII character except "\" or newline or the quote>
<strong id="grammar-token-longbyteschar">longbyteschar </strong> ::= <any ASCII character except "\">
<strong id="grammar-token-bytesescapeseq">bytesescapeseq</strong> ::= "\" <any ASCII character>
</pre>
<p>One syntactic restriction not indicated by these productions is that whitespace
is not allowed between the <a class="reference internal" href="#grammar-token-stringprefix"><tt class="xref std std-token docutils literal"><span class="pre">stringprefix</span></tt></a> or <a class="reference internal" href="#grammar-token-bytesprefix"><tt class="xref std std-token docutils literal"><span class="pre">bytesprefix</span></tt></a> and the
rest of the literal. The source character set is defined by the encoding
declaration; it is UTF-8 if no encoding declaration is given in the source file;
see section <a class="reference internal" href="#encodings"><em>Encoding declarations</em></a>.</p>
<p id="index-16">In plain English: Both types of literals can be enclosed in matching single quotes
(<tt class="docutils literal"><span class="pre">'</span></tt>) or double quotes (<tt class="docutils literal"><span class="pre">"</span></tt>). They can also be enclosed in matching groups
of three single or double quotes (these are generally referred to as
<em>triple-quoted strings</em>). The backslash (<tt class="docutils literal"><span class="pre">\</span></tt>) character is used to escape
characters that otherwise have a special meaning, such as newline, backslash
itself, or the quote character.</p>
<p>Bytes literals are always prefixed with <tt class="docutils literal"><span class="pre">'b'</span></tt> or <tt class="docutils literal"><span class="pre">'B'</span></tt>; they produce an
instance of the <a class="reference internal" href="../library/functions.html#bytes" title="bytes"><tt class="xref py py-class docutils literal"><span class="pre">bytes</span></tt></a> type instead of the <a class="reference internal" href="../library/stdtypes.html#str" title="str"><tt class="xref py py-class docutils literal"><span class="pre">str</span></tt></a> type. They
may only contain ASCII characters; bytes with a numeric value of 128 or greater
must be expressed with escapes.</p>
<p>As of Python 3.3 it is possible again to prefix unicode strings with a
<tt class="docutils literal"><span class="pre">u</span></tt> prefix to simplify maintenance of dual 2.x and 3.x codebases.</p>
<p>Both string and bytes literals may optionally be prefixed with a letter <tt class="docutils literal"><span class="pre">'r'</span></tt>
or <tt class="docutils literal"><span class="pre">'R'</span></tt>; such strings are called <em class="dfn">raw strings</em> and treat backslashes as
literal characters. As a result, in string literals, <tt class="docutils literal"><span class="pre">'\U'</span></tt> and <tt class="docutils literal"><span class="pre">'\u'</span></tt>
escapes in raw strings are not treated specially. Given that Python 2.x’s raw
unicode literals behave differently than Python 3.x’s the <tt class="docutils literal"><span class="pre">'ur'</span></tt> syntax
is not supported.</p>
<blockquote>
<div><div class="versionadded">
<p><span class="versionmodified">New in version 3.3: </span>The <tt class="docutils literal"><span class="pre">'rb'</span></tt> prefix of raw bytes literals has been added as a synonym
of <tt class="docutils literal"><span class="pre">'br'</span></tt>.</p>
</div>
<div class="versionadded">
<p><span class="versionmodified">New in version 3.3: </span>Support for the unicode legacy literal (<tt class="docutils literal"><span class="pre">u'value'</span></tt>) was reintroduced
to simplify the maintenance of dual Python 2.x and 3.x codebases.
See <span class="target" id="index-17"></span><a class="pep reference external" href="http://www.python.org/dev/peps/pep-0414"><strong>PEP 414</strong></a> for more information.</p>
</div>
</div></blockquote>
<p>In triple-quoted strings, unescaped newlines and quotes are allowed (and are
retained), except that three unescaped quotes in a row terminate the string. (A
“quote” is the character used to open the string, i.e. either <tt class="docutils literal"><span class="pre">'</span></tt> or <tt class="docutils literal"><span class="pre">"</span></tt>.)</p>
<p id="index-18">Unless an <tt class="docutils literal"><span class="pre">'r'</span></tt> or <tt class="docutils literal"><span class="pre">'R'</span></tt> prefix is present, escape sequences in strings are
interpreted according to rules similar to those used by Standard C. The
recognized escape sequences are:</p>
<table border="1" class="docutils">
<colgroup>
<col width="30%" />
<col width="58%" />
<col width="12%" />
</colgroup>
<thead valign="bottom">
<tr class="row-odd"><th class="head">Escape Sequence</th>
<th class="head">Meaning</th>
<th class="head">Notes</th>
</tr>
</thead>
<tbody valign="top">
<tr class="row-even"><td><tt class="docutils literal"><span class="pre">\newline</span></tt></td>
<td>Backslash and newline ignored</td>
<td> </td>
</tr>
<tr class="row-odd"><td><tt class="docutils literal"><span class="pre">\\</span></tt></td>
<td>Backslash (<tt class="docutils literal"><span class="pre">\</span></tt>)</td>
<td> </td>
</tr>
<tr class="row-even"><td><tt class="docutils literal"><span class="pre">\'</span></tt></td>
<td>Single quote (<tt class="docutils literal"><span class="pre">'</span></tt>)</td>
<td> </td>
</tr>
<tr class="row-odd"><td><tt class="docutils literal"><span class="pre">\"</span></tt></td>
<td>Double quote (<tt class="docutils literal"><span class="pre">"</span></tt>)</td>
<td> </td>
</tr>
<tr class="row-even"><td><tt class="docutils literal"><span class="pre">\a</span></tt></td>
<td>ASCII Bell (BEL)</td>
<td> </td>
</tr>
<tr class="row-odd"><td><tt class="docutils literal"><span class="pre">\b</span></tt></td>
<td>ASCII Backspace (BS)</td>
<td> </td>
</tr>
<tr class="row-even"><td><tt class="docutils literal"><span class="pre">\f</span></tt></td>
<td>ASCII Formfeed (FF)</td>
<td> </td>
</tr>
<tr class="row-odd"><td><tt class="docutils literal"><span class="pre">\n</span></tt></td>
<td>ASCII Linefeed (LF)</td>
<td> </td>
</tr>
<tr class="row-even"><td><tt class="docutils literal"><span class="pre">\r</span></tt></td>
<td>ASCII Carriage Return (CR)</td>
<td> </td>
</tr>
<tr class="row-odd"><td><tt class="docutils literal"><span class="pre">\t</span></tt></td>
<td>ASCII Horizontal Tab (TAB)</td>
<td> </td>
</tr>
<tr class="row-even"><td><tt class="docutils literal"><span class="pre">\v</span></tt></td>
<td>ASCII Vertical Tab (VT)</td>
<td> </td>
</tr>
<tr class="row-odd"><td><tt class="docutils literal"><span class="pre">\ooo</span></tt></td>
<td>Character with octal value
<em>ooo</em></td>
<td>(1,3)</td>
</tr>
<tr class="row-even"><td><tt class="docutils literal"><span class="pre">\xhh</span></tt></td>
<td>Character with hex value <em>hh</em></td>
<td>(2,3)</td>
</tr>
</tbody>
</table>
<p>Escape sequences only recognized in string literals are:</p>
<table border="1" class="docutils">
<colgroup>
<col width="30%" />
<col width="58%" />
<col width="12%" />
</colgroup>
<thead valign="bottom">
<tr class="row-odd"><th class="head">Escape Sequence</th>
<th class="head">Meaning</th>
<th class="head">Notes</th>
</tr>
</thead>
<tbody valign="top">
<tr class="row-even"><td><tt class="docutils literal"><span class="pre">\N{name}</span></tt></td>
<td>Character named <em>name</em> in the
Unicode database</td>
<td>(4)</td>
</tr>
<tr class="row-odd"><td><tt class="docutils literal"><span class="pre">\uxxxx</span></tt></td>
<td>Character with 16-bit hex value
<em>xxxx</em></td>
<td>(5)</td>
</tr>
<tr class="row-even"><td><tt class="docutils literal"><span class="pre">\Uxxxxxxxx</span></tt></td>
<td>Character with 32-bit hex value
<em>xxxxxxxx</em></td>
<td>(6)</td>
</tr>
</tbody>
</table>
<p>Notes:</p>
<ol class="arabic">
<li><p class="first">As in Standard C, up to three octal digits are accepted.</p>
</li>
<li><p class="first">Unlike in Standard C, exactly two hex digits are required.</p>
</li>
<li><p class="first">In a bytes literal, hexadecimal and octal escapes denote the byte with the
given value. In a string literal, these escapes denote a Unicode character
with the given value.</p>
</li>
<li><div class="first versionchanged">
<p><span class="versionmodified">Changed in version 3.3: </span>Support for name aliases <a class="footnote-reference" href="#id13" id="id10">[1]</a> has been added.</p>
</div>
</li>
<li><p class="first">Individual code units which form parts of a surrogate pair can be encoded using
this escape sequence. Exactly four hex digits are required.</p>
</li>
<li><p class="first">Any Unicode character can be encoded this way. Exactly eight hex digits
are required.</p>
</li>
</ol>
<p id="index-19">Unlike Standard C, all unrecognized escape sequences are left in the string
unchanged, i.e., <em>the backslash is left in the string</em>. (This behavior is
useful when debugging: if an escape sequence is mistyped, the resulting output
is more easily recognized as broken.) It is also important to note that the
escape sequences only recognized in string literals fall into the category of
unrecognized escapes for bytes literals.</p>
<p>Even in a raw string, string quotes can be escaped with a backslash, but the
backslash remains in the string; for example, <tt class="docutils literal"><span class="pre">r"\""</span></tt> is a valid string
literal consisting of two characters: a backslash and a double quote; <tt class="docutils literal"><span class="pre">r"\"</span></tt>
is not a valid string literal (even a raw string cannot end in an odd number of
backslashes). Specifically, <em>a raw string cannot end in a single backslash</em>
(since the backslash would escape the following quote character). Note also
that a single backslash followed by a newline is interpreted as those two
characters as part of the string, <em>not</em> as a line continuation.</p>
</div>
<div class="section" id="string-literal-concatenation">
<span id="string-catenation"></span><h3>2.4.2. String literal concatenation<a class="headerlink" href="#string-literal-concatenation" title="Permalink to this headline">¶</a></h3>
<p>Multiple adjacent string or bytes literals (delimited by whitespace), possibly
using different quoting conventions, are allowed, and their meaning is the same
as their concatenation. Thus, <tt class="docutils literal"><span class="pre">"hello"</span> <span class="pre">'world'</span></tt> is equivalent to
<tt class="docutils literal"><span class="pre">"helloworld"</span></tt>. This feature can be used to reduce the number of backslashes
needed, to split long strings conveniently across long lines, or even to add
comments to parts of strings, for example:</p>
<div class="highlight-python3"><div class="highlight"><pre><span class="n">re</span><span class="o">.</span><span class="n">compile</span><span class="p">(</span><span class="s">"[A-Za-z_]"</span> <span class="c"># letter or underscore</span>
<span class="s">"[A-Za-z0-9_]*"</span> <span class="c"># letter, digit or underscore</span>
<span class="p">)</span>
</pre></div>
</div>
<p>Note that this feature is defined at the syntactical level, but implemented at
compile time. The ‘+’ operator must be used to concatenate string expressions
at run time. Also note that literal concatenation can use different quoting
styles for each component (even mixing raw strings and triple quoted strings).</p>
</div>
<div class="section" id="numeric-literals">
<span id="numbers"></span><h3>2.4.3. Numeric literals<a class="headerlink" href="#numeric-literals" title="Permalink to this headline">¶</a></h3>
<p id="index-20">There are three types of numeric literals: integers, floating point numbers, and
imaginary numbers. There are no complex literals (complex numbers can be formed
by adding a real number and an imaginary number).</p>
<p>Note that numeric literals do not include a sign; a phrase like <tt class="docutils literal"><span class="pre">-1</span></tt> is
actually an expression composed of the unary operator ‘<tt class="docutils literal"><span class="pre">-</span></tt>‘ and the literal
<tt class="docutils literal"><span class="pre">1</span></tt>.</p>
</div>
<div class="section" id="integer-literals">
<span id="integers"></span><h3>2.4.4. Integer literals<a class="headerlink" href="#integer-literals" title="Permalink to this headline">¶</a></h3>
<p>Integer literals are described by the following lexical definitions:</p>
<pre>
<strong id="grammar-token-integer">integer </strong> ::= <a class="reference internal" href="#grammar-token-decimalinteger"><tt class="xref docutils literal"><span class="pre">decimalinteger</span></tt></a> | <a class="reference internal" href="#grammar-token-octinteger"><tt class="xref docutils literal"><span class="pre">octinteger</span></tt></a> | <a class="reference internal" href="#grammar-token-hexinteger"><tt class="xref docutils literal"><span class="pre">hexinteger</span></tt></a> | <a class="reference internal" href="#grammar-token-bininteger"><tt class="xref docutils literal"><span class="pre">bininteger</span></tt></a>
<strong id="grammar-token-decimalinteger">decimalinteger</strong> ::= <a class="reference internal" href="#grammar-token-nonzerodigit"><tt class="xref docutils literal"><span class="pre">nonzerodigit</span></tt></a> <a class="reference internal" href="#grammar-token-digit"><tt class="xref docutils literal"><span class="pre">digit</span></tt></a>* | "0"+
<strong id="grammar-token-nonzerodigit">nonzerodigit </strong> ::= "1"..."9"
<strong id="grammar-token-digit">digit </strong> ::= "0"..."9"
<strong id="grammar-token-octinteger">octinteger </strong> ::= "0" ("o" | "O") <a class="reference internal" href="#grammar-token-octdigit"><tt class="xref docutils literal"><span class="pre">octdigit</span></tt></a>+
<strong id="grammar-token-hexinteger">hexinteger </strong> ::= "0" ("x" | "X") <a class="reference internal" href="#grammar-token-hexdigit"><tt class="xref docutils literal"><span class="pre">hexdigit</span></tt></a>+
<strong id="grammar-token-bininteger">bininteger </strong> ::= "0" ("b" | "B") <a class="reference internal" href="#grammar-token-bindigit"><tt class="xref docutils literal"><span class="pre">bindigit</span></tt></a>+
<strong id="grammar-token-octdigit">octdigit </strong> ::= "0"..."7"
<strong id="grammar-token-hexdigit">hexdigit </strong> ::= <a class="reference internal" href="#grammar-token-digit"><tt class="xref docutils literal"><span class="pre">digit</span></tt></a> | "a"..."f" | "A"..."F"
<strong id="grammar-token-bindigit">bindigit </strong> ::= "0" | "1"
</pre>
<p>There is no limit for the length of integer literals apart from what can be
stored in available memory.</p>
<p>Note that leading zeros in a non-zero decimal number are not allowed. This is
for disambiguation with C-style octal literals, which Python used before version
3.0.</p>
<p>Some examples of integer literals:</p>
<div class="highlight-python3"><div class="highlight"><pre><span class="mi">7</span> <span class="mi">2147483647</span> <span class="mo">0o177</span> <span class="m-Bin">0b100110111</span>
<span class="mi">3</span> <span class="mi">79228162514264337593543950336</span> <span class="mo">0o377</span> <span class="mh">0x100000000</span>
<span class="mi">79228162514264337593543950336</span> <span class="mh">0xdeadbeef</span>
</pre></div>
</div>
</div>
<div class="section" id="floating-point-literals">
<span id="floating"></span><h3>2.4.5. Floating point literals<a class="headerlink" href="#floating-point-literals" title="Permalink to this headline">¶</a></h3>
<p>Floating point literals are described by the following lexical definitions:</p>
<pre>
<strong id="grammar-token-floatnumber">floatnumber </strong> ::= <a class="reference internal" href="#grammar-token-pointfloat"><tt class="xref docutils literal"><span class="pre">pointfloat</span></tt></a> | <a class="reference internal" href="#grammar-token-exponentfloat"><tt class="xref docutils literal"><span class="pre">exponentfloat</span></tt></a>
<strong id="grammar-token-pointfloat">pointfloat </strong> ::= [<a class="reference internal" href="#grammar-token-intpart"><tt class="xref docutils literal"><span class="pre">intpart</span></tt></a>] <a class="reference internal" href="#grammar-token-fraction"><tt class="xref docutils literal"><span class="pre">fraction</span></tt></a> | <a class="reference internal" href="#grammar-token-intpart"><tt class="xref docutils literal"><span class="pre">intpart</span></tt></a> "."
<strong id="grammar-token-exponentfloat">exponentfloat</strong> ::= (<a class="reference internal" href="#grammar-token-intpart"><tt class="xref docutils literal"><span class="pre">intpart</span></tt></a> | <a class="reference internal" href="#grammar-token-pointfloat"><tt class="xref docutils literal"><span class="pre">pointfloat</span></tt></a>) <a class="reference internal" href="#grammar-token-exponent"><tt class="xref docutils literal"><span class="pre">exponent</span></tt></a>
<strong id="grammar-token-intpart">intpart </strong> ::= <a class="reference internal" href="#grammar-token-digit"><tt class="xref docutils literal"><span class="pre">digit</span></tt></a>+
<strong id="grammar-token-fraction">fraction </strong> ::= "." <a class="reference internal" href="#grammar-token-digit"><tt class="xref docutils literal"><span class="pre">digit</span></tt></a>+
<strong id="grammar-token-exponent">exponent </strong> ::= ("e" | "E") ["+" | "-"] <a class="reference internal" href="#grammar-token-digit"><tt class="xref docutils literal"><span class="pre">digit</span></tt></a>+
</pre>
<p>Note that the integer and exponent parts are always interpreted using radix 10.
For example, <tt class="docutils literal"><span class="pre">077e010</span></tt> is legal, and denotes the same number as <tt class="docutils literal"><span class="pre">77e10</span></tt>. The
allowed range of floating point literals is implementation-dependent. Some
examples of floating point literals:</p>
<div class="highlight-python3"><div class="highlight"><pre><span class="mf">3.14</span> <span class="mf">10.</span> <span class="o">.</span><span class="mi">001</span> <span class="mi">1</span><span class="n">e100</span> <span class="mf">3.14e-10</span> <span class="mi">0</span><span class="n">e0</span>
</pre></div>
</div>
<p>Note that numeric literals do not include a sign; a phrase like <tt class="docutils literal"><span class="pre">-1</span></tt> is
actually an expression composed of the unary operator <tt class="docutils literal"><span class="pre">-</span></tt> and the literal
<tt class="docutils literal"><span class="pre">1</span></tt>.</p>
</div>
<div class="section" id="imaginary-literals">
<span id="imaginary"></span><h3>2.4.6. Imaginary literals<a class="headerlink" href="#imaginary-literals" title="Permalink to this headline">¶</a></h3>
<p>Imaginary literals are described by the following lexical definitions:</p>
<pre>
<strong id="grammar-token-imagnumber">imagnumber</strong> ::= (<a class="reference internal" href="#grammar-token-floatnumber"><tt class="xref docutils literal"><span class="pre">floatnumber</span></tt></a> | <a class="reference internal" href="#grammar-token-intpart"><tt class="xref docutils literal"><span class="pre">intpart</span></tt></a>) ("j" | "J")
</pre>
<p>An imaginary literal yields a complex number with a real part of 0.0. Complex
numbers are represented as a pair of floating point numbers and have the same
restrictions on their range. To create a complex number with a nonzero real
part, add a floating point number to it, e.g., <tt class="docutils literal"><span class="pre">(3+4j)</span></tt>. Some examples of
imaginary literals:</p>
<div class="highlight-python3"><div class="highlight"><pre><span class="mf">3.14</span><span class="n">j</span> <span class="mf">10.</span><span class="n">j</span> <span class="mi">10</span><span class="n">j</span> <span class="o">.</span><span class="mi">001</span><span class="n">j</span> <span class="mi">1</span><span class="n">e100j</span> <span class="mf">3.14e-10</span><span class="n">j</span>
</pre></div>
</div>
</div>
</div>
<div class="section" id="operators">
<span id="id11"></span><h2>2.5. Operators<a class="headerlink" href="#operators" title="Permalink to this headline">¶</a></h2>
<p id="index-21">The following tokens are operators:</p>
<div class="highlight-python3"><div class="highlight"><pre><span class="o">+</span> <span class="o">-</span> <span class="o">*</span> <span class="o">**</span> <span class="o">/</span> <span class="o">//</span> <span class="o">%</span>
<span class="o"><<</span> <span class="o">>></span> <span class="o">&</span> <span class="o">|</span> <span class="o">^</span> <span class="o">~</span>
<span class="o"><</span> <span class="o">></span> <span class="o"><=</span> <span class="o">>=</span> <span class="o">==</span> <span class="o">!=</span>
</pre></div>
</div>
</div>
<div class="section" id="delimiters">
<span id="id12"></span><h2>2.6. Delimiters<a class="headerlink" href="#delimiters" title="Permalink to this headline">¶</a></h2>
<p id="index-22">The following tokens serve as delimiters in the grammar:</p>
<div class="highlight-python3"><pre>( ) [ ] { }
, : . ; @ = ->
+= -= *= /= //= %=
&= |= ^= >>= <<= **=</pre>
</div>
<p>The period can also occur in floating-point and imaginary literals. A sequence
of three periods has a special meaning as an ellipsis literal. The second half
of the list, the augmented assignment operators, serve lexically as delimiters,
but also perform an operation.</p>
<p>The following printing ASCII characters have special meaning as part of other
tokens or are otherwise significant to the lexical analyzer:</p>
<div class="highlight-python3"><div class="highlight"><pre><span class="s">' " # </span><span class="se">\</span>
</pre></div>
</div>
<p>The following printing ASCII characters are not used in Python. Their
occurrence outside string literals and comments is an unconditional error:</p>
<div class="highlight-python3"><pre>$ ? `</pre>
</div>
<p class="rubric">Footnotes</p>
<table class="docutils footnote" frame="void" id="id13" rules="none">
<colgroup><col class="label" /><col /></colgroup>
<tbody valign="top">
<tr><td class="label"><a class="fn-backref" href="#id10">[1]</a></td><td><a class="reference external" href="http://www.unicode.org/Public/6.1.0/ucd/NameAliases.txt">http://www.unicode.org/Public/6.1.0/ucd/NameAliases.txt</a></td></tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
<div class="sphinxsidebar">
<div class="sphinxsidebarwrapper">
<h3><a href="../contents.html">Table Of Contents</a></h3>
<ul>
<li><a class="reference internal" href="#">2. Lexical analysis</a><ul>
<li><a class="reference internal" href="#line-structure">2.1. Line structure</a><ul>
<li><a class="reference internal" href="#logical-lines">2.1.1. Logical lines</a></li>
<li><a class="reference internal" href="#physical-lines">2.1.2. Physical lines</a></li>
<li><a class="reference internal" href="#comments">2.1.3. Comments</a></li>
<li><a class="reference internal" href="#encoding-declarations">2.1.4. Encoding declarations</a></li>
<li><a class="reference internal" href="#explicit-line-joining">2.1.5. Explicit line joining</a></li>
<li><a class="reference internal" href="#implicit-line-joining">2.1.6. Implicit line joining</a></li>
<li><a class="reference internal" href="#blank-lines">2.1.7. Blank lines</a></li>
<li><a class="reference internal" href="#indentation">2.1.8. Indentation</a></li>
<li><a class="reference internal" href="#whitespace-between-tokens">2.1.9. Whitespace between tokens</a></li>
</ul>
</li>
<li><a class="reference internal" href="#other-tokens">2.2. Other tokens</a></li>
<li><a class="reference internal" href="#identifiers">2.3. Identifiers and keywords</a><ul>
<li><a class="reference internal" href="#keywords">2.3.1. Keywords</a></li>
<li><a class="reference internal" href="#reserved-classes-of-identifiers">2.3.2. Reserved classes of identifiers</a></li>
</ul>
</li>
<li><a class="reference internal" href="#literals">2.4. Literals</a><ul>
<li><a class="reference internal" href="#string-and-bytes-literals">2.4.1. String and Bytes literals</a></li>
<li><a class="reference internal" href="#string-literal-concatenation">2.4.2. String literal concatenation</a></li>
<li><a class="reference internal" href="#numeric-literals">2.4.3. Numeric literals</a></li>
<li><a class="reference internal" href="#integer-literals">2.4.4. Integer literals</a></li>
<li><a class="reference internal" href="#floating-point-literals">2.4.5. Floating point literals</a></li>
<li><a class="reference internal" href="#imaginary-literals">2.4.6. Imaginary literals</a></li>
</ul>
</li>
<li><a class="reference internal" href="#operators">2.5. Operators</a></li>
<li><a class="reference internal" href="#delimiters">2.6. Delimiters</a></li>
</ul>
</li>
</ul>
<h4>Previous topic</h4>
<p class="topless"><a href="introduction.html"
title="previous chapter">1. Introduction</a></p>
<h4>Next topic</h4>
<p class="topless"><a href="datamodel.html"
title="next chapter">3. Data model</a></p>
<h3>This Page</h3>
<ul class="this-page-menu">
<li><a href="../bugs.html">Report a Bug</a></li>
<li><a href="../_sources/reference/lexical_analysis.txt"
rel="nofollow">Show Source</a></li>
</ul>
<div id="searchbox" style="display: none">
<h3>Quick search</h3>
<form class="search" action="../search.html" method="get">
<input type="text" name="q" />
<input type="submit" value="Go" />
<input type="hidden" name="check_keywords" value="yes" />
<input type="hidden" name="area" value="default" />
</form>
<p class="searchtip" style="font-size: 90%">
Enter search terms or a module, class or function name.
</p>
</div>
<script type="text/javascript">$('#searchbox').show(0);</script>
</div>
</div>
<div class="clearer"></div>
</div>
<div class="related">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a href="../genindex.html" title="General Index"
>index</a></li>
<li class="right" >
<a href="../py-modindex.html" title="Python Module Index"
>modules</a> |</li>
<li class="right" >
<a href="datamodel.html" title="3. Data model"
>next</a> |</li>
<li class="right" >
<a href="introduction.html" title="1. Introduction"
>previous</a> |</li>
<li><img src="../_static/py.png" alt=""
style="vertical-align: middle; margin-top: -1px"/></li>
<li><a href="http://www.python.org/">Python</a> »</li>
<li>
<a href="../index.html">3.3.6 Documentation</a> »
</li>
<li><a href="index.html" >The Python Language Reference</a> »</li>
</ul>
</div>
<div class="footer">
© <a href="../copyright.html">Copyright</a> 1990-2014, Python Software Foundation.
<br />
The Python Software Foundation is a non-profit corporation.
<a href="http://www.python.org/psf/donations/">Please donate.</a>
<br />
Last updated on Oct 12, 2014.
<a href="../bugs.html">Found a bug</a>?
<br />
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.2.
</div>
</body>
</html> | martrik/HPCodeWarsSamples | Documentation/python-3.3.6-docs-html/reference/lexical_analysis.html | HTML | mit | 63,271 |
<!-- from https://developer.mozilla.org/en-US/docs/Web/HTML/Element/table -->
<p>Table with colgroup and col</p>
<table>
<colgroup>
<col style="background-color: #0f0">
<col span="2">
</colgroup>
<tr>
<th>Lime</th>
<th>Lemon</th>
<th>Orange</th>
</tr>
<tr>
<td>Green</td>
<td>Yellow</td>
<td>Orange</td>
</tr>
</table>
| breakdance/breakdance | test/fixtures/table-with-colgroup-and-col.html | HTML | mit | 364 |
<h1>{{ object.title }}</h1>
| bitmazk/cmsplugin-video-gallery | video_gallery/templates/video_gallery/movie_detail.html | HTML | mit | 28 |
{% extends "_layout.html" %}
{% block title %}Posts{% endblock title %}
{% block content %}
<article>
<h1>All Posts</h1>
{% for post in posts %}
{% with show_text=False %}
{% include "_list.html" %}
{% endwith %}
{% endfor %}
</article>
{% endblock content %}
| Siecje/htmd | htmd/templates/all_posts.html | HTML | mit | 287 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Ruby Co-operative</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<link rel="alternate" type="application/rss+xml" title="RSS" href="http://feeds.feedburner.com/rubycoop" />
<link href="/stylesheets/application.css" rel="stylesheet" type="text/css" />
</head>
<body>
<a href="http://github.com/dovadi/rubycoop"><img style="position: absolute; top: 0; right: 0; border: 0;" src="http://s3.amazonaws.com/github/ribbons/forkme_right_red_aa0000.png" alt="Fork me on GitHub" /></a>
<div id="container">
<div id="header">
<h1><span><a href="/">Ruby Co-op</a></span></h1>
<h2>"Interdependent Ruby programmers."</h2>
</div>
<div id="page">
<div id="content">
<div id="static">
<h2><a href="">
Workflow
</a></h2>
<p><strong>Acquisition:</strong></p>
<blockquote>
<ul>
<li>By member.</li>
<li>By the Co-op (=board).</li>
</ul>
</blockquote>
<p><strong>What provision do I get if my lead is accepted as a assignment by the co-op?</strong></p>
<blockquote>
<p>5 percent of the revenu generated by the assignment in the first year.</p>
</blockquote>
<p><strong>Initial estimation and planning:</strong></p>
<blockquote>
<p>Planning poker?</p>
</blockquote>
<p><strong>Proposal:</strong></p>
<blockquote>
<p>Who is writing the formal proposal for the customer?</p>
</blockquote>
<p><strong>Coreteam (assignment):</strong></p>
<blockquote>
<p>Minimal of two members.</p>
</blockquote>
<p>How is a coreteam assembled?</p>
<p><strong>Contributions:</strong></p>
<p>How does an individual member contribute to a project?</p>
<blockquote>
<ul>
<li>By (cucumber) feature?</li>
<li>By specification (RSpec/Shoulda/Testunit)?</li>
</ul>
</blockquote>
<p>When and how is the contribution of a member accepted?</p>
<blockquote>
<p>By a member of the coreteam.</p>
</blockquote>
<p>How much does the member get paid for its contribution?</p>
<blockquote>
<p>Standard tarif per hour multiplied by the storypoints (see <a href='http://blog.mountaingoatsoftware.com/how-do-story-points-relate-to-hours'>HOW DO STORY POINTS RELATE TO HOURS?</a>).</p>
</blockquote>
<p><strong>Tooling:</strong></p>
<blockquote>
<ul>
<li>Github for the central (remote) repository.</li>
<li>Lighthouse as the ticketing system.</li>
<li>Pivotal tracker for planning and estimation.</li>
<li>Campfire or Talkerapp (?) for the groupchat.</li>
<li>Skype for group conversations.</li>
<li>iChat for pair programming sessions.</li>
</ul>
</blockquote>
</ul>
</div>
</div> <!--content -->
<div id="sidebar">
<div class="sidebar-node">
<h3>
<a href="http://feeds.feedburner.com/dovadi"><img src="/images/feed.png" /></a>
<a href="http://feeds.feedburner.com/rubycoop"> RSS feed</a>
</h3>
</div>
<br style="clear:both;" />
<div class="sidebar-node">
<h3>Join the discussion</h3>
<ul>
<li><a href="http://github.com/dovadi/rubycoop" title="Github">Fork and submit on Github</a></li>
<li><a href="http://groups.google.nl/group/ruby-co-op" title="Google Group">Google group</a></li>
<li><a href="https://dovadi.lighthouseapp.com/projects/53142-ruby-co-op/overview" title="Lighthouse">Lighthouse</a></li>
<li><a href="http://rubycoop.talkerapp.com/r/4f39e9" title="Chat on Talkerapp">Chat on Talkerapp</a></li>
<li><a href="http://twitter.com/rubycoop_org" title="Twitter">Twitter</a></li>
</ul>
</div>
<div class="sidebar-node">
<h3>Proposal</h3>
<ul>
<li><a href="/definitions.html" title="Definitions">Definitions</a></li>
<li><a href="/objectives.html" title="Objectives">Objectives</a></li>
<li><a href="/rights.html" title="Rights">Rights</a></li>
<li><a href="/responsibilities.html" title="Responsibilities">Responsibilities</a></li>
<li><a href="/obligations.html" title="Obligations">Obligations</a></li>
<li><a href="/financials.html" title="Financials">Financials</a></li>
<li><a href="/board.html" title="Board">Board</a></li>
<li><a href="/workflow.html" title="Workflow">Workflow</a></li>
<li><a href="/examples.html" title="Examples">Examples</a></li>
</ul>
</div>
<br style="clear:both;" />
<div class="sidebar-node">
<h3>Contact</h3>
<ul>
<li>Frank Oxener</li>
<li>Agile Dovadi B.V</li>
<li>Achterom 4</li>
<li>1791 AL Den Burg</li>
<li>Netherlands</li>
<li>+31 (0)6 494 16 406</li>
<li>frank-at-rubycoop.org</li>
</ul>
</div>
<br style="clear:both;" />
</div><!--sidebar-->
<div id="footer">
<hr />
<a href="http://github.com/dovadi/rubycoop">Managed by Github</a>
|
<a href="http://github.com/mojombo/jekyll">Generated by Jekyll</a>
|
<a href="http://quotedprintable.com/pages/scribbish">Styled with Scribbish</a>
|
<a href="http://dovadi.com">Initiated by Agile Dovadi BV</a>
</div><!--footer-->
</div><!--page-->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-410122-10']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<script type="text/javascript">
//<![CDATA[
(function() {
var links = document.getElementsByTagName('a');
var query = '?';
for(var i = 0; i < links.length; i++) {
if(links[i].href.indexOf('#disqus_thread') >= 0) {
query += 'url' + i + '=' + encodeURIComponent(links[i].href) + '&';
}
}
document.write('<script charset="utf-8" type="text/javascript" src="http://disqus.com/forums/rubycoop/get_num_replies.js' + query + '"></' + 'script>');
})();
//]]>
</script>
</body>
</html> | dovadi/rubycoop | _site/workflow.html | HTML | mit | 6,756 |
<html>
<head>
<link rel="stylesheet" type="text/css" href="stylesheets/reset.css" />
<link href='http://fonts.googleapis.com/css?family=Krona+One' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Alegreya+Sans:500' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="stylesheets/blog-template2.css" />
<title>Duke Greene is Doing Dev Bootcamp</title>
</head>
<body>
<div id="wrapper" class="clearfix">
<a href="http://dukegreene.github.io"><header>
<h1>DUKE GREENE IS BLOGGING DEV BOOTCAMP</h1>
</header></a>
</div>
<div id="wrapper" class="clearfix">
<section id="links">
<a href="https://www.facebook.com/dukegreene"><img src="images/facebook.gif" /></a>
<a href="https://www.twitter.com/dukegreene"><img src="images/twitter-circle-black-512.png" style="width: 76%"/></a>
<a href="https://www.github.com/dukegreene"><img src="images/github.gif" /></a>
<a href="https://dukegreene.wordpress.com"><img src="images/wp-icon.png" /></a>
<a href="https://www.linkedin.com/pub/duke-greene/94/774/4ab"><img src="images/linkedin-Icon-BW.png" /></a>
<a href="http://punksuhate.bandcamp.com/track/full-circle"><img src="images/playicon.gif" /></a>
</section>
<section id="blogs">
<h1 style="margin: auto">Looping in Ruby</h1><br/>
<p>Computers are dumb, but they're diligent. It's why I love them. Sure, I might have to be really precise when I give an instruction, but if I need that thing done 3000 times in a row, I'll be glad I told the computer exactly how. When I tell a computer to do something over and over, I'm working with loops. Ruby has several ways to loop, and each one is a little different. Let's discuss a few.</p><br>
<p>First, we have the condition-dependent while and until loops. While sets a condition and runs the loop as long as the condition is true. Until sets a condition and runs as long as that condition is false (i.e. *until* it is true, which is when the loop stops. While and until work well in situations where you don't want to move on without making sure a certaing thing gets done. You could run a game's turns through a while loop that ran as long as no player had won yet. Here's how we'd use while and until to count to ten:</p><br>
<img src="http://i.imgur.com/TSGxe8p.png" /><br><br>
<img src="http://i.imgur.com/9fspCBA.png" /><br><br>
<p>The times loop is considerably less nuanced: It simply runs a block as many times as specified. You can run this loop with a number or by inserting a variable that corresponds to a number. This could be useful if you need to get something done a number of times, but that number depended on the result of another variable or calculation. Here's one way we could count to ten with times:</p><br>
<img src="http://i.imgur.com/8YKD8m0.png" /><br><br>
<p>With the each loop, we get a little more versatility. Each can iterate across an array or hash and do the same thing to each item in it. Each loops as many times as there are items in the object being acted upon. When starting an each loop, you assign a variable name to stand in for each item worked with. This is great for sorting or reorganizing data. To illustrate, let's count to ten again:</p><br>
<img src="http://i.imgur.com/0X39e7x.png" /><br><br>
<p>Lastly, let's look at the for loop. For sets a range and then executes the loop for each item in that range. It's very straightforward and able to call on variables like the other loops. This might be good for running through data once of reach of a set of years, like (1985..2014). Let's see it in action for (1..10):</p><br>
<img src="http://i.imgur.com/CQEYlc2.png" /><br><br>
<p>Just like with anything else in Ruby, the best way to get your mind around loops is to play with them in IRB and see what they can and can't do. Just remember that it is totally possible to write loops that never end (like a while loop with a condition that will neer be false), and you should press Ctrl - C if you get stuck in one of those to interrupt the program. Good luck, and happy coding!</p>
</section>
</div>
</body>
</html> | dukegreene/dukegreene.github.io | unit1_projects/week4_technical_blog.html | HTML | mit | 4,144 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<!--
# This html template file is part of the
# mkaestatic static website generator.
#
# Author: Michael Borinsky
# Github: https://github.com/michibo/mkaestatic
# License: MIT
# Copyright 2016-2022
-->
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no, target-densityDpi=device-dpi" />
<meta name="description" content="" />
<meta name="author" content="" />
<meta name="keywords" content="" />
<title>mkaestatic - Example</title>
<link rel="stylesheet" href="static/style.css" />
</head>
<body>
<div class="layout"><div>
<header>
<span class="logo"><a href=index.html>mkaestatic</a></span>
<input id="nav" type="checkbox">
<label for="nav"></label>
<nav>
<ul>
<li><a href="contact.html">Contact</a></li>
<li><a href="example.html">Example</a></li>
<li><a href="readme.html">readme</a></li>
</ul>
</nav>
</header>
<div class="content">
<h1 class="content-subhead">Example</h1>
<p>Here is an design sketch of the H4 chronometer by John Harrison</p>
<p><img src="static/Harrison_H4_clock_design.jpg" alt="" /></p>
<p>In markdown it is easy to include images or hyperlinks. For instance you can go back to the <a href="readme.html">mkaestatic manual</a> or read get some <a href="contact.html">contact information</a>.</p>
</div>
</div></div>
</body>
</html> | michibo/mkaestatic | example.html | HTML | mit | 1,994 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>mathcomp-field: 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 / mathcomp-field - 1.6.1</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
mathcomp-field
<small>
1.6.1
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-02-19 04:09:34 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-02-19 04:09:34 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 2 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.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
# opam file:
opam-version: "2.0"
name: "coq-mathcomp-field"
version: "1.6.1"
maintainer: "Mathematical Components <mathcomp-dev@sympa.inria.fr>"
homepage: "http://ssr.msr-inria.inria.fr/"
bug-reports: "Mathematical Components <mathcomp-dev@sympa.inria.fr>"
license: "CeCILL-B"
build: [ make "-C" "mathcomp/field" "-j" "%{jobs}%" ]
install: [ make "-C" "mathcomp/field" "install" ]
remove: [ "sh" "-c" "rm -rf '%{lib}%/coq/user-contrib/mathcomp/field'" ]
depends: [
"ocaml"
"coq-mathcomp-solvable" {= "1.6.1"}
]
tags: [ "keyword:algebra" "keyword:field" "keyword:small scale reflection" "keyword:mathematical components" "keyword:odd order theorem" ]
authors: [ "Jeremy Avigad <>" "Andrea Asperti <>" "Stephane Le Roux <>" "Yves Bertot <>" "Laurence Rideau <>" "Enrico Tassi <>" "Ioana Pasca <>" "Georges Gonthier <>" "Sidi Ould Biha <>" "Cyril Cohen <>" "Francois Garillot <>" "Alexey Solovyev <>" "Russell O'Connor <>" "Laurent Théry <>" "Assia Mahboubi <>" ]
synopsis: "Mathematical Components Library on Fields"
description: """
This library contains definitions and theorems about field extensions,
galois theory, algebraic numbers, cyclotomic polynomials..."""
url {
src: "http://github.com/math-comp/math-comp/archive/mathcomp-1.6.1.tar.gz"
checksum: "md5=10d8a17134ddb509b4afa8d3243ee1a0"
}
</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-field.1.6.1 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-mathcomp-field -> coq-mathcomp-solvable = 1.6.1 -> coq-mathcomp-algebra = 1.6.1 -> coq-mathcomp-fingroup = 1.6.1 -> coq-mathcomp-ssreflect = 1.6.1 -> coq < 8.7~ -> 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-mathcomp-field.1.6.1</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.7.1+1/mathcomp-field/1.6.1.html | HTML | mit | 7,907 |
<!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="./b2fa2215d97299df9f8a63ed16dfca59256075f9bc32b6376f6bb94e51256002.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/e44813ddbca6102c0e0c883b65e8bad5f8187059b4957f35b9736b508a25ec10.html | HTML | mit | 550 |
<!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>report测试页面</title>
</head>
<body>
<a href="javascript:void(0)" id="trigger" report-tdw="uin=624005743&ts=ts&opername=opername&&&obj=1&|uin=648909575&ts=ts&opername=opername1&&&obj=2&" style="border:solid 1px #000;">
<span report-tdw="uin=917547653&ts=ts&opername=div&&&obj=3&">点我,有属性</span>
</a>
<p></p>
<a href="http://cgi.ke.qq.com/report/index2.html" title="跳转去子域名测试页面2cookie上报"> 跳转去子域名测试页面2cookie上报</a>
<p></p>
<a href="index2.html" title="跳转去测试页面2cookie上报"> 跳转去测试页面2cookie上报</a>
<script type="text/javascript" src="http://1.url.cn/jslib/jquery/1.9.1/jquery.min.js"></script>
<script src="../src/lib/json2.js"></script>
<script src="../src/lib/report.js"></script>
<script src="../src/lib/report.attr.js"></script>
<script src="../src/lib/util.cookie.js"></script>
<script src="../src/lib/util.bom.js"></script>
<script src="../src/lib/report.cookie.init.js"></script>
<script src="../src/lib/report.cookie.js"></script>
<script>
report.tdw({
uin : 624005743,
ts:'ts',
opername:'opername',
obj:1
} , true)
/*console.log(report.getReportAttr('#trigger',true, {ttttttttt:1}));
console.log($('#trigger').attr('report-close'));
console.log(report.getReportAttr('#trigger', {sssssss:1}));
console.log($('#trigger').attr('report-close'));
*/
</script>
</body>
</html>
| herbertliu/report | test/index.html | HTML | mit | 1,667 |
---
layout: post
title: Massenuploader für Fast Gallery
tags:
- Drupal
- drupal
- fast gallery
- review
- upload
status: publish
type: post
published: true
meta:
_edit_last: '1'
_wp_old_slug: massenuploader-für-fast-gallery
better-related-: ''
dsq_thread_id: '289935059'
---
So, Ferien sind vorbei und ich konnte mal wieder ein paar freie Minuten finden, um ein wenig am Fast Gallery zu programmieren. Der Fileupload nur per FTP kann manchmal ein bisschen nervig sein, besonders, wenn man gerade nicht zuhause ist und keinen FTP Client zur Hand hat. Zudem ist er für weniger erfahreren Benutzer nicht sehr Bedienerfreundlich.
Daher habe ich mich mal an die Arbeit gemacht und den <a href="http://jumploader.com/index.html">JumpLoader</a> integriert (<a href="http://jumploader.com/screenshots.html">Screenshots</a>). Ein richtig cooles Teil. Zwar kämpfe ich noch ein wenig mit einer open_basedir() Restriction beim Fileupload, aber da werde ich hoffentlich auch noch drum kommen.
Falls jemand hier Erfahrung mit Fileupload hat, kann er sich gerne bei mir melden. Es ist wahrscheinlich keine grosse Sache, aber sie muss halt gemacht werden. In der Dev Version ist bereits der aktuellste Code drin.
| rapsli/rapsli.github.io | _posts/2009/2009-01-05-massenuploader-fur-fast-gallery.html | HTML | mit | 1,211 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>matrices: 26 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.5.1 / matrices - 8.5.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
matrices
<small>
8.5.0
<span class="label label-success">26 s 🏆</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-02-02 22:20:31 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-02-02 22:20:31 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 2 Virtual package relying on perl
coq 8.5.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
# opam file:
opam-version: "2.0"
maintainer: "matej.kosik@inria.fr"
homepage: "https://github.com/coq-contribs/matrices"
license: "LGPL 2"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/Matrices"]
depends: [
"ocaml"
"coq" {>= "8.5" & < "8.6~"}
]
tags: [
"keyword:matrices"
"keyword:vectors"
"keyword:linear algebra"
"keyword:Coq modules"
"category:Mathematics/Algebra"
"date:2003-03"
]
authors: [ "Nicolas Magaud <>" ]
bug-reports: "https://github.com/coq-contribs/matrices/issues"
dev-repo: "git+https://github.com/coq-contribs/matrices.git"
synopsis: "Ring properties for square matrices "
description: """
This contribution contains an operational formalization of square matrices.
(m,n)-Matrices are represented as vectors of length n. Each vector
(a row) is itself a vector whose length is m.
Vectors are actually implemented as dependent lists.
We define basic operations for this datatype (addition, product, neutral
elements O_n and I_n). We then prove the ring properties for these
operations. The development uses Coq modules to specify the interface
(the ring structure properties) as a signature.
This development deals with dependent types and partial functions.
Most of the functions are defined by dependent case analysis
and some functions such as getting a column require
the use of preconditions (to check whether we are within the
bounds of the matrix)."""
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/matrices/archive/v8.5.0.tar.gz"
checksum: "md5=29685b178fbf91fddc6198940b186c27"
}
</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-matrices.8.5.0 coq.8.5.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-matrices.8.5.0 coq.8.5.1</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>13 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-matrices.8.5.0 coq.8.5.1</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>26 s</dd>
</dl>
<h2>Installation size</h2>
<p>Total: 706 K</p>
<ul>
<li>143 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/Matrices/matrices.glob</code></li>
<li>137 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/Matrices/matrices.vo</code></li>
<li>120 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/Matrices/vectors.vo</code></li>
<li>78 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/Matrices/operators.vo</code></li>
<li>71 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/Matrices/vectors.glob</code></li>
<li>70 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/Matrices/operators.glob</code></li>
<li>29 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/Matrices/carrier.vo</code></li>
<li>27 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/Matrices/matrices.v</code></li>
<li>15 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/Matrices/vectors.v</code></li>
<li>14 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/Matrices/operators.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/Matrices/carrier.glob</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/Matrices/carrier.v</code></li>
</ul>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq-matrices.8.5.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.03.0-2.0.5/released/8.5.1/matrices/8.5.0.html | HTML | mit | 8,754 |
<!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>
Kirkpatrick's Inc. -
Complete profile - Canadian Company Capabilities - Industries and Business - Industry Canada
</title>
<!-- Title ends / Fin du titre -->
<!-- Meta-data begins / Début des métadonnées -->
<meta charset="utf-8" />
<meta name="dcterms.language" title="ISO639-2" content="eng" />
<meta name="dcterms.title" content="" />
<meta name="description" content="" />
<meta name="dcterms.description" content="" />
<meta name="dcterms.type" content="report, data set" />
<meta name="dcterms.subject" content="businesses, industry" />
<meta name="dcterms.subject" content="businesses, industry" />
<meta name="dcterms.issued" title="W3CDTF" content="" />
<meta name="dcterms.modified" title="W3CDTF" content="" />
<meta name="keywords" content="" />
<meta name="dcterms.creator" content="" />
<meta name="author" content="" />
<meta name="dcterms.created" title="W3CDTF" content="" />
<meta name="dcterms.publisher" content="" />
<meta name="dcterms.audience" title="icaudience" content="" />
<meta name="dcterms.spatial" title="ISO3166-1" content="" />
<meta name="dcterms.spatial" title="gcgeonames" content="" />
<meta name="dcterms.format" content="HTML" />
<meta name="dcterms.identifier" title="ICsiteProduct" content="536" />
<!-- EPI-11240 -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- MCG-202 -->
<meta content="width=device-width,initial-scale=1" name="viewport">
<!-- EPI-11567 -->
<meta name = "format-detection" content = "telephone=no">
<!-- EPI-12603 -->
<meta name="robots" content="noarchive">
<!-- EPI-11190 - Webtrends -->
<script>
var startTime = new Date();
startTime = startTime.getTime();
</script>
<!--[if gte IE 9 | !IE ]><!-->
<link href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/favicon.ico" rel="icon" type="image/x-icon">
<link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/wet-boew.min.css">
<!--<![endif]-->
<link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/theme.min.css">
<!--[if lt IE 9]>
<link href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/favicon.ico" rel="shortcut icon" />
<link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/ie8-wet-boew.min.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/ie8-wet-boew.min.js"></script>
<![endif]-->
<!--[if lte IE 9]>
<![endif]-->
<noscript><link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/noscript.min.css" /></noscript>
<!-- Google Tag Manager DO NOT REMOVE OR MODIFY - NE PAS SUPPRIMER OU MODIFIER -->
<script>dataLayer1 = [];</script>
<!-- End Google Tag Manager -->
<!-- EPI-11235 -->
<link rel="stylesheet" href="/eic/home.nsf/css/add_WET_4-0_Canada_Apps.css">
<link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet">
<link href="/app/ccc/srch/css/print.css" media="print" rel="stylesheet" type="text/css" />
</head>
<body class="home" vocab="http://schema.org/" typeof="WebPage">
<!-- EPIC HEADER BEGIN -->
<!-- Google Tag Manager DO NOT REMOVE OR MODIFY - NE PAS SUPPRIMER OU MODIFIER -->
<noscript><iframe title="Google Tag Manager" src="//www.googletagmanager.com/ns.html?id=GTM-TLGQ9K" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer1'?'&l='+l:'';j.async=true;j.src='//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);})(window,document,'script','dataLayer1','GTM-TLGQ9K');</script>
<!-- End Google Tag Manager -->
<!-- EPI-12801 -->
<span typeof="Organization"><meta property="legalName" content="Department_of_Industry"></span>
<ul id="wb-tphp">
<li class="wb-slc">
<a class="wb-sl" href="#wb-cont">Skip to main content</a>
</li>
<li class="wb-slc visible-sm visible-md visible-lg">
<a class="wb-sl" href="#wb-info">Skip to "About this site"</a>
</li>
</ul>
<header role="banner">
<div id="wb-bnr" class="container">
<section id="wb-lng" class="visible-md visible-lg text-right">
<h2 class="wb-inv">Language selection</h2>
<div class="row">
<div class="col-md-12">
<ul class="list-inline mrgn-bttm-0">
<li><a href="nvgt.do?V_TOKEN=1492296847746&V_SEARCH.docsCount=3&V_DOCUMENT.docRank=25647&V_SEARCH.docsStart=25646&V_SEARCH.command=navigate&V_SEARCH.resultsJSP=/prfl.do&lang=fra&redirectUrl=/app/scr/imbs/ccc/rgstrtn/rgstr.sec?_flId?_flxKy=e1s1&estblmntNo=234567041301&profileId=61&_evId=bck&lang=eng&V_SEARCH.showStricts=false&prtl=1&_flId?_flId?_flxKy=e1s1" title="Français" lang="fr">Français</a></li>
</ul>
</div>
</div>
</section>
<div class="row">
<div class="brand col-xs-8 col-sm-9 col-md-6">
<a href="http://www.canada.ca/en/index.html"><object type="image/svg+xml" tabindex="-1" data="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/sig-blk-en.svg"></object><span class="wb-inv"> Government of Canada</span></a>
</div>
<section class="wb-mb-links col-xs-4 col-sm-3 visible-sm visible-xs" id="wb-glb-mn">
<h2>Search and menus</h2>
<ul class="list-inline text-right chvrn">
<li><a href="#mb-pnl" title="Search and menus" aria-controls="mb-pnl" class="overlay-lnk" role="button"><span class="glyphicon glyphicon-search"><span class="glyphicon glyphicon-th-list"><span class="wb-inv">Search and menus</span></span></span></a></li>
</ul>
<div id="mb-pnl"></div>
</section>
<!-- Site Search Removed -->
</div>
</div>
<nav role="navigation" id="wb-sm" class="wb-menu visible-md visible-lg" data-trgt="mb-pnl" data-ajax-fetch="//cdn.canada.ca/gcweb-cdn-dev/sitemenu/sitemenu-en.html" typeof="SiteNavigationElement">
<h2 class="wb-inv">Topics menu</h2>
<div class="container nvbar">
<div class="row">
<ul class="list-inline menu">
<li><a href="https://www.canada.ca/en/services/jobs.html">Jobs</a></li>
<li><a href="http://www.cic.gc.ca/english/index.asp">Immigration</a></li>
<li><a href="https://travel.gc.ca/">Travel</a></li>
<li><a href="https://www.canada.ca/en/services/business.html">Business</a></li>
<li><a href="https://www.canada.ca/en/services/benefits.html">Benefits</a></li>
<li><a href="http://healthycanadians.gc.ca/index-eng.php">Health</a></li>
<li><a href="https://www.canada.ca/en/services/taxes.html">Taxes</a></li>
<li><a href="https://www.canada.ca/en/services.html">More services</a></li>
</ul>
</div>
</div>
</nav>
<!-- EPIC BODY BEGIN -->
<nav role="navigation" id="wb-bc" class="" property="breadcrumb">
<h2 class="wb-inv">You are here:</h2>
<div class="container">
<div class="row">
<ol class="breadcrumb">
<li><a href="/eic/site/icgc.nsf/eng/home" title="Home">Home</a></li>
<li><a href="/eic/site/icgc.nsf/eng/h_07063.html" title="Industries and Business">Industries and Business</a></li>
<li><a href="/eic/site/ccc-rec.nsf/tpl-eng/../eng/home" >Canadian Company Capabilities</a></li>
</ol>
</div>
</div>
</nav>
</header>
<main id="wb-cont" role="main" property="mainContentOfPage" class="container">
<!-- End Header -->
<!-- Begin Body -->
<!-- Begin Body Title -->
<!-- End Body Title -->
<!-- Begin Body Head -->
<!-- End Body Head -->
<!-- Begin Body Content -->
<br>
<!-- Complete Profile -->
<!-- Company Information above tabbed area-->
<input id="showMore" type="hidden" value='more'/>
<input id="showLess" type="hidden" value='less'/>
<h1 id="wb-cont">
Company profile - Canadian Company Capabilities
</h1>
<div class="profileInfo hidden-print">
<ul class="list-inline">
<li><a href="cccSrch.do?lang=eng&profileId=&prtl=1&key.hitsPerPage=25&searchPage=%252Fapp%252Fccc%252Fsrch%252FcccBscSrch.do%253Flang%253Deng%2526amp%253Bprtl%253D1%2526amp%253Btagid%253D&V_SEARCH.scopeCategory=CCC.Root&V_SEARCH.depth=1&V_SEARCH.showStricts=false&V_SEARCH.sortSpec=title+asc&rstBtn.x=" class="btn btn-link">New Search</a> |</li>
<li><form name="searchForm" method="post" action="/app/ccc/srch/bscSrch.do">
<input type="hidden" name="lang" value="eng" />
<input type="hidden" name="profileId" value="" />
<input type="hidden" name="prtl" value="1" />
<input type="hidden" name="searchPage" value="%2Fapp%2Fccc%2Fsrch%2FcccBscSrch.do%3Flang%3Deng%26amp%3Bprtl%3D1%26amp%3Btagid%3D" />
<input type="hidden" name="V_SEARCH.scopeCategory" value="CCC.Root" />
<input type="hidden" name="V_SEARCH.depth" value="1" />
<input type="hidden" name="V_SEARCH.showStricts" value="false" />
<input id="repeatSearchBtn" class="btn btn-link" type="submit" value="Return to search results" />
</form></li>
<li>| <a href="nvgt.do?V_SEARCH.docsStart=25645&V_DOCUMENT.docRank=25646&V_SEARCH.docsCount=3&lang=eng&prtl=1&sbPrtl=&profile=cmpltPrfl&V_TOKEN=1492296878639&V_SEARCH.command=navigate&V_SEARCH.resultsJSP=%2fprfl.do&estblmntNo=123456166264&profileId=&key.newSearchLabel=">Previous Company</a></li>
<li>| <a href="nvgt.do?V_SEARCH.docsStart=25647&V_DOCUMENT.docRank=25648&V_SEARCH.docsCount=3&lang=eng&prtl=1&sbPrtl=&profile=cmpltPrfl&V_TOKEN=1492296878639&V_SEARCH.command=navigate&V_SEARCH.resultsJSP=%2fprfl.do&estblmntNo=123456044267&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>
Kirkpatrick's Inc.
</h2>
<div class="row">
<div class="col-md-5">
<h2 class="h5 mrgn-bttm-0">Legal/Operating Name:</h2>
<p>Kirkpatrick's Inc.</p>
<h2 class="h5 mrgn-bttm-0">Alternate Name:</h2>
<p class="mrgn-bttm-0">KIRKPATRICK'S LEATHER PRODUCTS</p>
<div class="mrgn-tp-md"></div>
<p class="mrgn-bttm-0" ><a href="http://www.kpatricks.com"
target="_blank" title="Website URL">http://www.kpatricks.com</a></p>
<p><a href="mailto:info@kpatricks.com" title="info@kpatricks.com">info@kpatricks.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">
35 Mill St N<br/>
PORT HOPE,
Ontario<br/>
L1A 2T1
<br/>
</address>
<h2 class="h5 mrgn-bttm-0">Location Address:</h2>
<address class="mrgn-bttm-md">
35 Mill St N<br/>
PORT HOPE,
Ontario<br/>
L1A 2T1
<br/>
</address>
<p class="mrgn-bttm-0"><abbr title="Telephone">Tel.</abbr>:
(905) 885-1883
</p>
<p class="mrgn-bttm-0"><abbr title="Telephone">Tel.</abbr>:
(888) 522-1881</p>
<p class="mrgn-bttm-lg"><abbr title="Facsimile">Fax</abbr>:
(905) 885-1850</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> Complete police leather equipment line, plus industrial &
<br>commercial leather cases<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>
NANCY
JONES
</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">
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">
(905) 475-2206
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Facsimile:
</strong>
</div>
<div class="col-md-7">
(905) 475-9890
</div>
</div>
<div class="row mrgn-tp-lg">
<div class="col-md-3">
<strong>
BRIAN W.
LINDSAY
</strong></div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Title:
</strong>
</div>
<div class="col-md-7">
Data Provider <br>
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Telephone:
</strong>
</div>
<div class="col-md-7">
(905) 475-2206
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Facsimile:
</strong>
</div>
<div class="col-md-7">
(905) 475-9890
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
kpatrick@pathcom.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>
Year Established:
</strong>
</div>
<div class="col-md-7">
1881
</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">
316990 - Other Leather and Allied Product Manufacturing
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Primary Business Activity:
</strong>
</div>
<div class="col-md-7">
Manufacturer / Processor / Producer
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Total Sales ($CDN):
</strong>
</div>
<div class="col-md-7">
$100,000 to $199,999
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Export Sales ($CDN):
</strong>
</div>
<div class="col-md-7">
$1 to $99,999
</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>
Product Name:
</strong>
</div>
<div class="col-md-9">
WALLETS, LEATHER <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
BELTS, APPAREL, LEATHER <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
APPAREL ACCESSORIES NES <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
SUITCASES AND TRAVELLING BAGS NES <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
BELTS, CARTRIDGE <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
HOLSTERS, FIREARM <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
FIREARMS, ACCESSORIES, NES <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
MOTORCYCLE LEGGINGS <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-12">
Traditional leather police motorcycle leggings.<br>
<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
Leather Products <br>
</div>
</div>
</section>
<p class="mrgn-tp-lg text-right small hidden-print">
<a href="#wb-cont">top of page</a>
</p>
<!-- Technology Profile -->
<!-- Market Profile -->
<h3 class="page-header">
Market profile
</h3>
<section class="container-fluid">
<h4>
Geographic markets:
</h4>
<h5>
Export experience:
</h5>
<ul>
<li>United States</li>
</ul>
<h5>
Actively pursuing:
</h5>
<ul>
<li>Albania</li>
<li>Algeria</li>
<li>Austria</li>
<li>Belgium</li>
<li>Bulgaria</li>
<li>Czech Republic</li>
<li>Denmark</li>
<li>Finland</li>
<li>France</li>
<li>Germany</li>
<li>Gibraltar</li>
<li>Greece</li>
<li>Hungary</li>
<li>Iceland</li>
<li>Ireland</li>
<li>Italy</li>
<li>Japan</li>
<li>Luxembourg</li>
<li>Malta</li>
<li>Montenegro</li>
<li>Netherlands</li>
<li>Norway</li>
<li>Poland</li>
<li>Portugal</li>
<li>Romania</li>
<li>Russian Federation</li>
<li>Serbia</li>
<li>Spain</li>
<li>Sweden</li>
<li>Switzerland</li>
<li>United Kingdom</li>
</ul>
</section>
<p class="mrgn-tp-lg text-right small hidden-print">
<a href="#wb-cont">top of page</a>
</p>
<!-- Sector Information -->
<details class="mrgn-tp-md mrgn-bttm-md">
<summary>
Third-Party Information Liability Disclaimer
</summary>
<p>
Some of the information on this Web page has been provided by external sources. The Government of Canada is not responsible for the accuracy, reliability or currency of the information supplied by external sources. Users wishing to rely upon this information should consult directly with the source of the information. Content provided by external sources is not subject to official languages, privacy and accessibility requirements.
</p>
</details>
</details>
<details id="details-panel2">
<summary>
Contacts
</summary>
<h2 class="wb-invisible">
Contact information
</h2>
<!-- Contact Information -->
<section class="container-fluid">
<div class="row mrgn-tp-lg">
<div class="col-md-3">
<strong>
NANCY
JONES
</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">
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">
(905) 475-2206
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Facsimile:
</strong>
</div>
<div class="col-md-7">
(905) 475-9890
</div>
</div>
<div class="row mrgn-tp-lg">
<div class="col-md-3">
<strong>
BRIAN W.
LINDSAY
</strong></div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Title:
</strong>
</div>
<div class="col-md-7">
Data Provider <br>
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Telephone:
</strong>
</div>
<div class="col-md-7">
(905) 475-2206
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Facsimile:
</strong>
</div>
<div class="col-md-7">
(905) 475-9890
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
kpatrick@pathcom.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>
Year Established:
</strong>
</div>
<div class="col-md-7">
1881
</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">
316990 - Other Leather and Allied Product Manufacturing
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Primary Business Activity:
</strong>
</div>
<div class="col-md-7">
Manufacturer / Processor / Producer
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Total Sales ($CDN):
</strong>
</div>
<div class="col-md-7">
$100,000 to $199,999
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Export Sales ($CDN):
</strong>
</div>
<div class="col-md-7">
$1 to $99,999
</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>
Product Name:
</strong>
</div>
<div class="col-md-9">
WALLETS, LEATHER <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
BELTS, APPAREL, LEATHER <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
APPAREL ACCESSORIES NES <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
SUITCASES AND TRAVELLING BAGS NES <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
BELTS, CARTRIDGE <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
HOLSTERS, FIREARM <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
FIREARMS, ACCESSORIES, NES <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
MOTORCYCLE LEGGINGS <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-12">
Traditional leather police motorcycle leggings.<br>
<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
Leather Products <br>
</div>
</div>
</section>
</details>
<details id="details-panel6">
<summary>
Market
</summary>
<h2 class="wb-invisible">
Market profile
</h2>
<section class="container-fluid">
<h4>
Geographic markets:
</h4>
<h5>
Export experience:
</h5>
<ul>
<li>United States</li>
</ul>
<h5>
Actively pursuing:
</h5>
<ul>
<li>Albania</li>
<li>Algeria</li>
<li>Austria</li>
<li>Belgium</li>
<li>Bulgaria</li>
<li>Czech Republic</li>
<li>Denmark</li>
<li>Finland</li>
<li>France</li>
<li>Germany</li>
<li>Gibraltar</li>
<li>Greece</li>
<li>Hungary</li>
<li>Iceland</li>
<li>Ireland</li>
<li>Italy</li>
<li>Japan</li>
<li>Luxembourg</li>
<li>Malta</li>
<li>Montenegro</li>
<li>Netherlands</li>
<li>Norway</li>
<li>Poland</li>
<li>Portugal</li>
<li>Romania</li>
<li>Russian Federation</li>
<li>Serbia</li>
<li>Spain</li>
<li>Sweden</li>
<li>Switzerland</li>
<li>United Kingdom</li>
</ul>
</section>
</details>
</div>
</div>
<div class="row">
<div class="col-md-12 text-right">
Last Update Date 2017-03-10
</div>
</div>
<!--
- Artifact ID: CBW - IMBS - CCC Search WAR
- Group ID: ca.gc.ic.strategis.imbs.ccc.search
- Version: 3.26
- Built-By: bamboo
- Build Timestamp: 2017-03-02T21:29:28Z
-->
<!-- End Body Content -->
<!-- Begin Body Foot -->
<!-- End Body Foot -->
<!-- END MAIN TABLE -->
<!-- End body -->
<!-- Begin footer -->
<div class="row pagedetails">
<div class="col-sm-5 col-xs-12 datemod">
<dl id="wb-dtmd">
<dt class=" hidden-print">Date Modified:</dt>
<dd class=" hidden-print">
<span><time>2017-03-02</time></span>
</dd>
</dl>
</div>
<div class="clear visible-xs"></div>
<div class="col-sm-4 col-xs-6">
</div>
<div class="col-sm-3 col-xs-6 text-right">
</div>
<div class="clear visible-xs"></div>
</div>
</main>
<footer role="contentinfo" id="wb-info">
<nav role="navigation" class="container wb-navcurr">
<h2 class="wb-inv">About government</h2>
<!-- EPIC FOOTER BEGIN -->
<!-- EPI-11638 Contact us -->
<ul class="list-unstyled colcount-sm-2 colcount-md-3">
<li><a href="http://www.ic.gc.ca/eic/site/icgc.nsf/eng/h_07026.html#pageid=E048-H00000&from=Industries">Contact us</a></li>
<li><a href="https://www.canada.ca/en/government/dept.html">Departments and agencies</a></li>
<li><a href="https://www.canada.ca/en/government/publicservice.html">Public service and military</a></li>
<li><a href="https://www.canada.ca/en/news.html">News</a></li>
<li><a href="https://www.canada.ca/en/government/system/laws.html">Treaties, laws and regulations</a></li>
<li><a href="https://www.canada.ca/en/transparency/reporting.html">Government-wide reporting</a></li>
<li><a href="http://pm.gc.ca/eng">Prime Minister</a></li>
<li><a href="https://www.canada.ca/en/government/system.html">How government works</a></li>
<li><a href="http://open.canada.ca/en/">Open government</a></li>
</ul>
</nav>
<div class="brand">
<div class="container">
<div class="row">
<nav class="col-md-10 ftr-urlt-lnk">
<h2 class="wb-inv">About this site</h2>
<ul>
<li><a href="https://www.canada.ca/en/social.html">Social media</a></li>
<li><a href="https://www.canada.ca/en/mobile.html">Mobile applications</a></li>
<li><a href="http://www1.canada.ca/en/newsite.html">About Canada.ca</a></li>
<li><a href="http://www.ic.gc.ca/eic/site/icgc.nsf/eng/h_07033.html">Terms and conditions</a></li>
<li><a href="http://www.ic.gc.ca/eic/site/icgc.nsf/eng/h_07033.html#p1">Privacy</a></li>
</ul>
</nav>
<div class="col-xs-6 visible-sm visible-xs tofpg">
<a href="#wb-cont">Top of Page <span class="glyphicon glyphicon-chevron-up"></span></a>
</div>
<div class="col-xs-6 col-md-2 text-right">
<object type="image/svg+xml" tabindex="-1" role="img" data="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/wmms-blk.svg" aria-label="Symbol of the Government of Canada"></object>
</div>
</div>
</div>
</div>
</footer>
<!--[if gte IE 9 | !IE ]><!-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/wet-boew.min.js"></script>
<!--<![endif]-->
<!--[if lt IE 9]>
<script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/ie8-wet-boew2.min.js"></script>
<![endif]-->
<script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/theme.min.js"></script>
<!-- EPI-10519 -->
<span class="wb-sessto"
data-wb-sessto='{"inactivity": 1800000, "reactionTime": 180000, "sessionalive": 1800000, "logouturl": "/app/ccc/srch/cccSrch.do?lang=eng&prtl=1"}'></span>
<script src="/eic/home.nsf/js/jQuery.externalOpensInNewWindow.js"></script>
<!-- EPI-11190 - Webtrends -->
<script src="/eic/home.nsf/js/webtrends.js"></script>
<script>var endTime = new Date();</script>
<noscript>
<div><img alt="" id="DCSIMG" width="1" height="1" src="//wt-sdc.ic.gc.ca/dcs6v67hwe0ei7wsv8g9fv50d_3k6i/njs.gif?dcsuri=/nojavascript&WT.js=No&WT.tv=9.4.0&dcssip=www.ic.gc.ca"/></div>
</noscript>
<!-- /Webtrends -->
<!-- JS deps -->
<script src="/eic/home.nsf/js/jquery.imagesloaded.js"></script>
<!-- EPI-11262 - Util JS -->
<script src="/eic/home.nsf/js/_WET_4-0_utils_canada.min.js"></script>
<!-- EPI-11383 -->
<script src="/eic/home.nsf/js/jQuery.icValidationErrors.js"></script>
<span style="display:none;" id='app-info' data-project-groupid='' data-project-artifactid='' data-project-version='' data-project-build-timestamp='' data-issue-tracking='' data-scm-sha1='' data-scm-sha1-abbrev='' data-scm-branch='' data-scm-commit-date=''></span>
</body></html>
<!-- End Footer -->
<!--
- Artifact ID: CBW - IMBS - CCC Search WAR
- Group ID: ca.gc.ic.strategis.imbs.ccc.search
- Version: 3.26
- Built-By: bamboo
- Build Timestamp: 2017-03-02T21:29:28Z
-->
| GoC-Spending/data-corporations | html/123456117016.html | HTML | mit | 69,277 |
<!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>
Staples Calgary N.E. -
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=1492321126715&V_SEARCH.docsCount=3&V_DOCUMENT.docRank=43753&V_SEARCH.docsStart=43752&V_SEARCH.command=navigate&V_SEARCH.resultsJSP=/prfl.do&lang=fra&redirectUrl=/app/scr/imbs/ccc/rgstrtn/rgstr.sec?_flId?_flxKy=e1s1&estblmntNo=234567041301&profileId=61&_evId=bck&lang=eng&V_SEARCH.showStricts=false&prtl=1&_flId?_flId?_flxKy=e1s1" title="Français" lang="fr">Français</a></li>
</ul>
</div>
</div>
</section>
<div class="row">
<div class="brand col-xs-8 col-sm-9 col-md-6">
<a href="http://www.canada.ca/en/index.html"><object type="image/svg+xml" tabindex="-1" data="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/sig-blk-en.svg"></object><span class="wb-inv"> Government of Canada</span></a>
</div>
<section class="wb-mb-links col-xs-4 col-sm-3 visible-sm visible-xs" id="wb-glb-mn">
<h2>Search and menus</h2>
<ul class="list-inline text-right chvrn">
<li><a href="#mb-pnl" title="Search and menus" aria-controls="mb-pnl" class="overlay-lnk" role="button"><span class="glyphicon glyphicon-search"><span class="glyphicon glyphicon-th-list"><span class="wb-inv">Search and menus</span></span></span></a></li>
</ul>
<div id="mb-pnl"></div>
</section>
<!-- Site Search Removed -->
</div>
</div>
<nav role="navigation" id="wb-sm" class="wb-menu visible-md visible-lg" data-trgt="mb-pnl" data-ajax-fetch="//cdn.canada.ca/gcweb-cdn-dev/sitemenu/sitemenu-en.html" typeof="SiteNavigationElement">
<h2 class="wb-inv">Topics menu</h2>
<div class="container nvbar">
<div class="row">
<ul class="list-inline menu">
<li><a href="https://www.canada.ca/en/services/jobs.html">Jobs</a></li>
<li><a href="http://www.cic.gc.ca/english/index.asp">Immigration</a></li>
<li><a href="https://travel.gc.ca/">Travel</a></li>
<li><a href="https://www.canada.ca/en/services/business.html">Business</a></li>
<li><a href="https://www.canada.ca/en/services/benefits.html">Benefits</a></li>
<li><a href="http://healthycanadians.gc.ca/index-eng.php">Health</a></li>
<li><a href="https://www.canada.ca/en/services/taxes.html">Taxes</a></li>
<li><a href="https://www.canada.ca/en/services.html">More services</a></li>
</ul>
</div>
</div>
</nav>
<!-- EPIC BODY BEGIN -->
<nav role="navigation" id="wb-bc" class="" property="breadcrumb">
<h2 class="wb-inv">You are here:</h2>
<div class="container">
<div class="row">
<ol class="breadcrumb">
<li><a href="/eic/site/icgc.nsf/eng/home" title="Home">Home</a></li>
<li><a href="/eic/site/icgc.nsf/eng/h_07063.html" title="Industries and Business">Industries and Business</a></li>
<li><a href="/eic/site/ccc-rec.nsf/tpl-eng/../eng/home" >Canadian Company Capabilities</a></li>
</ol>
</div>
</div>
</nav>
</header>
<main id="wb-cont" role="main" property="mainContentOfPage" class="container">
<!-- End Header -->
<!-- Begin Body -->
<!-- Begin Body Title -->
<!-- End Body Title -->
<!-- Begin Body Head -->
<!-- End Body Head -->
<!-- Begin Body Content -->
<br>
<!-- Complete Profile -->
<!-- Company Information above tabbed area-->
<input id="showMore" type="hidden" value='more'/>
<input id="showLess" type="hidden" value='less'/>
<h1 id="wb-cont">
Company profile - Canadian Company Capabilities
</h1>
<div class="profileInfo hidden-print">
<ul class="list-inline">
<li><a href="cccSrch.do?lang=eng&profileId=&prtl=1&key.hitsPerPage=25&searchPage=%252Fapp%252Fccc%252Fsrch%252FcccBscSrch.do%253Flang%253Deng%2526amp%253Bprtl%253D1%2526amp%253Btagid%253D&V_SEARCH.scopeCategory=CCC.Root&V_SEARCH.depth=1&V_SEARCH.showStricts=false&V_SEARCH.sortSpec=title+asc&rstBtn.x=" class="btn btn-link">New Search</a> |</li>
<li><form name="searchForm" method="post" action="/app/ccc/srch/bscSrch.do">
<input type="hidden" name="lang" value="eng" />
<input type="hidden" name="profileId" value="" />
<input type="hidden" name="prtl" value="1" />
<input type="hidden" name="searchPage" value="%2Fapp%2Fccc%2Fsrch%2FcccBscSrch.do%3Flang%3Deng%26amp%3Bprtl%3D1%26amp%3Btagid%3D" />
<input type="hidden" name="V_SEARCH.scopeCategory" value="CCC.Root" />
<input type="hidden" name="V_SEARCH.depth" value="1" />
<input type="hidden" name="V_SEARCH.showStricts" value="false" />
<input id="repeatSearchBtn" class="btn btn-link" type="submit" value="Return to search results" />
</form></li>
<li>| <a href="nvgt.do?V_SEARCH.docsStart=43751&V_DOCUMENT.docRank=43752&V_SEARCH.docsCount=3&lang=eng&prtl=1&sbPrtl=&profile=cmpltPrfl&V_TOKEN=1492321132979&V_SEARCH.command=navigate&V_SEARCH.resultsJSP=%2fprfl.do&estblmntNo=234567158569&profileId=&key.newSearchLabel=">Previous Company</a></li>
<li>| <a href="nvgt.do?V_SEARCH.docsStart=43753&V_DOCUMENT.docRank=43754&V_SEARCH.docsCount=3&lang=eng&prtl=1&sbPrtl=&profile=cmpltPrfl&V_TOKEN=1492321132979&V_SEARCH.command=navigate&V_SEARCH.resultsJSP=%2fprfl.do&estblmntNo=234567158998&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>
Staples Calgary N.E.
</h2>
<div class="row">
<div class="col-md-5">
<h2 class="h5 mrgn-bttm-0">Legal/Operating Name:</h2>
<p>Staples Calgary N.E.</p>
<div class="mrgn-tp-md"></div>
<p class="mrgn-bttm-0" ><a href="http://storelocator.staples.ca/stores/en_CA/AB/Calgary/50"
target="_blank" title="Website URL">http://storelocator.staples.ca/stores/en_CA/AB/Calgary/50</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">
3030 32nd Ave NE<br/>
CALGARY,
Alberta<br/>
T1Y 7A9
<br/>
</address>
<h2 class="h5 mrgn-bttm-0">Location Address:</h2>
<address class="mrgn-bttm-md">
3030 32nd Ave NE<br/>
CALGARY,
Alberta<br/>
T1Y 7A9
<br/>
</address>
<p class="mrgn-bttm-0"><abbr title="Telephone">Tel.</abbr>:
(403) 735-6336
</p>
<p class="mrgn-bttm-lg"><abbr title="Facsimile">Fax</abbr>:
(403) 735-6340</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=234567158994&graphFileName=STBD+Logo.jpg&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> Office Equipment Supplier; Office Furniture Store<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>
Jacques
Gobielle
</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-->
General Manager
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Telephone:
</strong>
</div>
<div class="col-md-7">
(403) 735-6336
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Facsimile:
</strong>
</div>
<div class="col-md-7">
(403) 735-6340
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
staplesca@sparkmail.ca
</div>
</div>
</section>
<p class="mrgn-tp-lg text-right small hidden-print">
<a href="#wb-cont">top of page</a>
</p>
<!-- Company Description -->
<h3 class="page-header">
Company description
</h3>
<section class="container-fluid">
<div class="row">
<div class="col-md-5">
<strong>
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">
453210 - Office Supplies and Stationery Stores
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Alternate Industries (NAICS):
</strong>
</div>
<div class="col-md-7">
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">
Office Furniture<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
Office Equipment<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
Stationery Store<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>
Jacques
Gobielle
</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-->
General Manager
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Telephone:
</strong>
</div>
<div class="col-md-7">
(403) 735-6336
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Facsimile:
</strong>
</div>
<div class="col-md-7">
(403) 735-6340
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
staplesca@sparkmail.ca
</div>
</div>
</section>
</details>
<details id="details-panel3">
<summary>
Description
</summary>
<h2 class="wb-invisible">
Company description
</h2>
<section class="container-fluid">
<div class="row">
<div class="col-md-5">
<strong>
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">
453210 - Office Supplies and Stationery Stores
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Alternate Industries (NAICS):
</strong>
</div>
<div class="col-md-7">
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">
Office Furniture<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
Office Equipment<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
Stationery Store<br>
</div>
</div>
</section>
</details>
</div>
</div>
<div class="row">
<div class="col-md-12 text-right">
Last Update Date 2015-11-02
</div>
</div>
<!--
- Artifact ID: CBW - IMBS - CCC Search WAR
- Group ID: ca.gc.ic.strategis.imbs.ccc.search
- Version: 3.26
- Built-By: bamboo
- Build Timestamp: 2017-03-02T21:29:28Z
-->
<!-- End Body Content -->
<!-- Begin Body Foot -->
<!-- End Body Foot -->
<!-- END MAIN TABLE -->
<!-- End body -->
<!-- Begin footer -->
<div class="row pagedetails">
<div class="col-sm-5 col-xs-12 datemod">
<dl id="wb-dtmd">
<dt class=" hidden-print">Date Modified:</dt>
<dd class=" hidden-print">
<span><time>2017-03-02</time></span>
</dd>
</dl>
</div>
<div class="clear visible-xs"></div>
<div class="col-sm-4 col-xs-6">
</div>
<div class="col-sm-3 col-xs-6 text-right">
</div>
<div class="clear visible-xs"></div>
</div>
</main>
<footer role="contentinfo" id="wb-info">
<nav role="navigation" class="container wb-navcurr">
<h2 class="wb-inv">About government</h2>
<!-- EPIC FOOTER BEGIN -->
<!-- EPI-11638 Contact us -->
<ul class="list-unstyled colcount-sm-2 colcount-md-3">
<li><a href="http://www.ic.gc.ca/eic/site/icgc.nsf/eng/h_07026.html#pageid=E048-H00000&from=Industries">Contact us</a></li>
<li><a href="https://www.canada.ca/en/government/dept.html">Departments and agencies</a></li>
<li><a href="https://www.canada.ca/en/government/publicservice.html">Public service and military</a></li>
<li><a href="https://www.canada.ca/en/news.html">News</a></li>
<li><a href="https://www.canada.ca/en/government/system/laws.html">Treaties, laws and regulations</a></li>
<li><a href="https://www.canada.ca/en/transparency/reporting.html">Government-wide reporting</a></li>
<li><a href="http://pm.gc.ca/eng">Prime Minister</a></li>
<li><a href="https://www.canada.ca/en/government/system.html">How government works</a></li>
<li><a href="http://open.canada.ca/en/">Open government</a></li>
</ul>
</nav>
<div class="brand">
<div class="container">
<div class="row">
<nav class="col-md-10 ftr-urlt-lnk">
<h2 class="wb-inv">About this site</h2>
<ul>
<li><a href="https://www.canada.ca/en/social.html">Social media</a></li>
<li><a href="https://www.canada.ca/en/mobile.html">Mobile applications</a></li>
<li><a href="http://www1.canada.ca/en/newsite.html">About Canada.ca</a></li>
<li><a href="http://www.ic.gc.ca/eic/site/icgc.nsf/eng/h_07033.html">Terms and conditions</a></li>
<li><a href="http://www.ic.gc.ca/eic/site/icgc.nsf/eng/h_07033.html#p1">Privacy</a></li>
</ul>
</nav>
<div class="col-xs-6 visible-sm visible-xs tofpg">
<a href="#wb-cont">Top of Page <span class="glyphicon glyphicon-chevron-up"></span></a>
</div>
<div class="col-xs-6 col-md-2 text-right">
<object type="image/svg+xml" tabindex="-1" role="img" data="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/wmms-blk.svg" aria-label="Symbol of the Government of Canada"></object>
</div>
</div>
</div>
</div>
</footer>
<!--[if gte IE 9 | !IE ]><!-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/wet-boew.min.js"></script>
<!--<![endif]-->
<!--[if lt IE 9]>
<script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/ie8-wet-boew2.min.js"></script>
<![endif]-->
<script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/theme.min.js"></script>
<!-- EPI-10519 -->
<span class="wb-sessto"
data-wb-sessto='{"inactivity": 1800000, "reactionTime": 180000, "sessionalive": 1800000, "logouturl": "/app/ccc/srch/cccSrch.do?lang=eng&prtl=1"}'></span>
<script src="/eic/home.nsf/js/jQuery.externalOpensInNewWindow.js"></script>
<!-- EPI-11190 - Webtrends -->
<script src="/eic/home.nsf/js/webtrends.js"></script>
<script>var endTime = new Date();</script>
<noscript>
<div><img alt="" id="DCSIMG" width="1" height="1" src="//wt-sdc.ic.gc.ca/dcs6v67hwe0ei7wsv8g9fv50d_3k6i/njs.gif?dcsuri=/nojavascript&WT.js=No&WT.tv=9.4.0&dcssip=www.ic.gc.ca"/></div>
</noscript>
<!-- /Webtrends -->
<!-- JS deps -->
<script src="/eic/home.nsf/js/jquery.imagesloaded.js"></script>
<!-- EPI-11262 - Util JS -->
<script src="/eic/home.nsf/js/_WET_4-0_utils_canada.min.js"></script>
<!-- EPI-11383 -->
<script src="/eic/home.nsf/js/jQuery.icValidationErrors.js"></script>
<span style="display:none;" id='app-info' data-project-groupid='' data-project-artifactid='' data-project-version='' data-project-build-timestamp='' data-issue-tracking='' data-scm-sha1='' data-scm-sha1-abbrev='' data-scm-branch='' data-scm-commit-date=''></span>
</body></html>
<!-- End Footer -->
<!--
- Artifact ID: CBW - IMBS - CCC Search WAR
- Group ID: ca.gc.ic.strategis.imbs.ccc.search
- Version: 3.26
- Built-By: bamboo
- Build Timestamp: 2017-03-02T21:29:28Z
-->
| GoC-Spending/data-corporations | html/234567158994.html | HTML | mit | 38,000 |
<!DOCTYPE html><body>
<div class="syndicate">
<div class="mSyndicate">
<h1>Testing</h1>
<div class="module noBorder">
<div class="inner">
<div class="subColumns">
<div class="subc"><img alt="Image of a doctor speaking with patients" class="lefty stroke" height="270" src="/hiv/images/web/basics_testing_docoffice_300x270.jpg" width="300"/>
Getting an HIV test is the only way to know if you have HIV. This section answers some of the most common questions related to HIV testing, including the types of tests available, where to get one, and what to expect when you go to get tested.
</div>
</div>
</div>
</div>
<div class="module double-rule cdc-accordion non-clipboard">
<div class="inner">
<div class="accordion" id="accordion">
<h4>Should I get tested for HIV?</h4>
<div>
<p>CDC recommends that health care providers test everyone between the ages of 13 and 64 at least once as part of routine health care. One in six people in the United States who have HIV do not know they are infected.</p>
<p>HIV is spread through unprotected sex and drug-injecting behaviors (plus mother to child), so people who engage in these behaviors should get tested more often. If you answer yes to any of the following questions, you should definitely get an HIV test: </p>
<ul class="bulleted-links">
<li>Have you had <strong>unprotected</strong> sex (sex without a condom)âanal, vaginal, or oralâwith men who have sex with men or with multiple partners since your last HIV test? </li>
<li>Have you injected drugs (including steroids, hormones, or silicone) and shared equipment (or <em>works</em>, such as needles and syringes) with others? </li>
<li>Have you exchanged sex for drugs or money? </li>
<li> Have you been diagnosed with or sought treatment for a <a class="noLinking" href="http://www.cdc.gov/std/healthcomm/fact_sheets.htm" style="display:inline">sexually transmitted infection </a>(STI), like syphilis?</li>
<li>
Have you been diagnosed with or sought treatment for hepatitis or tuberculosis (TB)?</li>
<li>Have you had <strong>unprotected</strong> sex with someone who could answer yes to any of the above questions or someone whose history you don’t know? </li>
</ul>
<p>If you continue having unsafe sex or sharing injection drug equipment, you should get tested at least once a year. Sexually active gay and bisexual men may benefit from more frequent testing (e.g., every 3 to 6 months).</p>
<p>You should also get tested if</p>
<ul class="bulleted-links">
<li>You have been sexually assaulted.</li>
<li>You are a woman who is planning to get pregnant or who is pregnant. </li>
</ul>
</div>
<!--END OF SECTION-->
<!--BEGINNING OF ACCORDIAN SECTION/ TAB-->
<h4>How can testing help me?</h4>
<div>
<div class="inner">
<div class="subc">
<p>Getting tested can give you some important information and can help keep youâand othersâsafe. For example,</p>
<ul class="bulleted-links">
<li>Knowing your HIV status can give you peace of mindâand testing is the <strong>only way</strong> you can know your HIV status for sure.</li>
<li>When you and your partner know each other’s HIV status, you can make informed decisions about your sexual behaviors and how to stay safe.</li>
<li>If you are pregnant, or planning to get pregnant, knowing your status can help protect your baby from becoming infected.</li>
<li>If you find out you are HIV-positive, you can start taking medicine for your HIV. Getting treated for HIV improves your health, prolongs your life, and greatly lowers your chance of spreading HIV to others.</li>
<li>If you know you are HIV-positive, you can take steps to protect your sex partners from becoming infected.</li>
</ul>
</div>
</div>
</div>
<!--END OF SECTION-->
<!--BEGINNING OF ACCORDIAN SECTION/ TAB-->
<h4>I don’t believe I am at high risk. Why should I get tested?</h4>
<div class="inner">
<p>Some people who test positive for HIV were not aware of their risk. That’s why CDC recommends that providers in all health care settings make HIV testing a routine part of medical care for patients aged 13 to 64, unless the patient declines (opts out). This practice would get more people tested and help reduce the stigma around testing.</p>
<p> Even if you have been in a long-term relationship with one person, you should find out for sure whether you or your partner has HIV. If you are both HIV-negative and you both stay faithful (monogamous) and do not have other risks for HIV infection, then you probably won’t need another HIV test unless your situation changes.</p>
</div>
<!--END OF SECTION-->
<!--BEGINNING OF ACCORDIAN SECTION/ TAB-->
<h4>I am pregnant. Why should I get tested?</h4>
<div class="inner">
<p>HIV testing during each pregnancy is important because, if your result is positive, treatment can improve your health and greatly lower the chance that you will pass HIV to your infant before, during, or after birth. The treatment is most effective for preventing HIV transmission to babies when started as early as possible during pregnancy. However, there are still great health benefits to beginning preventive treatment even during labor or shortly after the baby is born.<br/>
<br/>
CDC recommends that health care providers screen all pregnant women for HIV, talk to them about HIV or give them written materials, and, for women with risk factors, provide referrals to prevention counseling.</p>
<p> Screening all pregnant women for HIV, and giving them the right medical care, helped decrease the number of babies born with HIV from a high of 1,650 in 1991 to 127 in 2011.</p>
</div>
<!--END OF SECTION-->
<!--BEGINNING OF ACCORDIAN SECTION/ TAB-->
<h4>When should I get tested?</h4>
<div class="inner">
<p>The immune system usually takes 2 to 8 weeks to make antibodies against HIV (the average is 25 days). Although most HIV tests look for these antibodies, some look for the virus itself. The period after infection but before the test becomes positive is called the <em>window period</em>. <br/>
Deciding when to get tested therefore depends on when you may have been exposed and which test is used. See "What kind of tests are available and how do they work?" below.</p>
<p> A few people will have a longer window period, so if you get a negative test result in the first 3 months after possible exposure, you should get a repeat test after 3 months. Ninety-seven percent of people will develop antibodies in the first 3 months after they are infected. In very rare cases, it can take up to 6 months to develop antibodies to HIV.</p>
<p> Between the time you were possibly exposed and when you receive your test results: </p>
<ul class="bulleted-links">
<li>Don’t have sexâor always use a condom if you do.</li>
<li>Don’t inject drugsâor always use clean equipment and don’t share needles or other equipment (<em>works</em>).</li>
</ul>
</div>
<!--END OF SECTION-->
<!--BEGINNING OF ACCORDIAN SECTION/ TAB-->
<h4>Where can I get tested?</h4>
<div class="inner">
<p>You can ask your health care provider for an HIV test. Many medical clinics, substance abuse programs, community health centers, and hospitals offer them, too. You can also</p>
<ul class="bulleted-links">
<li>Visit <a class="noLinking" href="http://www.hivtest.org" style="display:inline">National HIV and STD Testing Resources</a> and enter your ZIP code.</li>
<li>Text your ZIP code to KNOWIT (566948), and you will receive a text back with a testing site near you.</li>
<li>Call 800-CDC-INFO (800-232-4636) to ask for free testing sites in your area.</li>
<li>Contact your <a class="noLinking" href="http://www.naccho.org/about/lhd/" style="display:inline">local health department</a>.</li>
<li>Get a home testing kit (the Home Access HIV-1 Test System or the OraQuick In-Home HIV Test) from a drugstore.</li>
</ul>
</div>
<!--END OF SECTION-->
<!--BEGINNING OF ACCORDIAN SECTION/ TAB-->
<h4>What kinds of tests are available, and how do they work?</h4>
<div class="inner">
<p>The most common HIV test is the <strong>antibody screening test (<em>immunoassay</em>)</strong>, which tests for the antibodies that your body makes against HIV. The immunoassay may be conducted in a lab or as a rapid test at the testing site. It may be performed on blood or oral fluid (not saliva). </p>
<p>Because the level of antibody in oral fluid is lower than it is in blood, blood tests tend to find infection sooner after exposure than do oral fluid tests. In addition, most blood-based lab tests find infection sooner after exposure than rapid HIV tests. Newer immunoassay tests can find HIV as soon as 3 weeks after exposure to the virus. Several lab tests now in use can detect both antibodies and antigen (part of the virus itself), so find recent infection earlier than tests that detect only antibodies.</p>
<p> The <strong>rapid test</strong> is an immunoassay used for screening, and it produces quick results, in 20 minutes or less. Rapid tests use blood or oral fluid to look for antibodies to HIV. If an immunoassay (lab test or rapid test) is conducted during the <em>window period</em> Â (i.e., the period after exposure but before the test can find antibodies), the test may not find antibodies and may give a false-negative result. All immunoassays that are positive need a follow-up test to confirm the result. </p>
<p><strong>Follow-up diagnostic testing</strong> is performed if the first immunoassay result is positive. Follow-up  tests include; an antibody <em>differentiation test</em>, which distinguishes HIV-1 from HIV-2; an <em>HIV-1 nucleic acid test</em>, which looks for virus directly, or the <em>Western blot</em> or indirect <em>immunofluorescence </em>assay, which detect antibodies.</p>
<p>Immunoassays are generally very accurate, but follow-up testing allows you and your health care provider to be sure the diagnosis is right. If your first test is a rapid test, and it is positive, you will be directed to a medical setting to get follow-up testing. If your first test is a lab test, and it is positive, the lab will conduct follow-up testing, usually on the same blood specimen as the first test. </p>
<p>False-positive tests are rare. If tests are conducted during the window period, they can give a false-negative result. </p>
<p>Currently there are only two home HIV tests: OraQuick In-home HIV test and the Home Access HIV-1 Test System. If you buy your home test online make sure the HIV test is FDA-approved. </p>
<p> The OraQuick In-Home HIV Test provides rapid results in the home. The testing procedure involves swabbing your mouth for an oral fluid sample and using a kit to test it. Results are available in 20 minutes. If you test positive, you will need a follow-up test. The manufacturer provides confidential counseling and referral to follow-up testing sites. Because the level of antibody in oral fluid is lower than it is in blood, oral fluid tests find infection later after exposure than do blood tests. Up to 1 in 12 people may test false-negative with these tests.</p>
<p>The Home HIV Access HIV-1 Test System is a home collection kit, which involves pricking your finger to collect a blood sample, sending the sample to a licensed laboratory, then calling in for results a few days later. If the test is positive, a follow-up test is performed right away. This test is anonymous. The manufacturer provides confidential counseling and referral to treatment. The tests conducted on the sample collected at home find infection later than most lab-based tests offered by providers.</p>
<p><strong>RNA tests</strong> detect the virus directly (instead of the antibodies to HIV) and thus can detect HIV at about 10 days after infectionâas soon as it appears in the bloodstream, before antibodies develop. These tests cost more than antibody tests and are generally not used as a screening test, although your doctor may order one as a follow-up test, after a positive antibody test, or as part of a clinical workup. </p>
</div>
<!--END OF SECTION-->
<!--BEGINNING OF ACCORDIAN SECTION/ TAB-->
<h4>What should I expect when I go in for an HIV test?</h4>
<div class="inner">
<p>When it’s time to take the test, a health care provider will take your sample (blood or oral fluid) and you may be able to wait for the results (if it’s a rapid HIV test). If the test comes back negative, and you haven’t had an exposure for 3 months, Â you can be confident you’re not infected with HIV. </p>
<p>If your test comes back positive, you will need to get a follow-up test, which the testing site will arrange. </p>
<p>Your health care provider or counselor may talk with you about your risk factors, answer questions about your general health, and discuss next steps with you, especially if your result is positive. </p>
<p>See "Will other people know my test result? " below.</p>
</div>
<!--END OF SECTION-->
<!--BEGINNING OF ACCORDIAN SECTION/ TAB-->
<h4>What does a negative test result mean?</h4>
<div class="inner">
<p>A negative result does not necessarily mean that you don't have HIV. That's because of the window periodâthe period after you may have been exposed to HIV but before a test can detect it. The window period depends on the kind of test that was used on your blood or oral fluid. For antibody tests, if you get a negative result within 3 months of your most recent possible exposure, you need to get tested again at the 3-month mark. For RNA tests or antibody/antigen tests, that timeframe may be shorter. Ask your health care provider if and when you need to be retested with a negative test result. And meanwhile, practice abstinence or mutual monogamy with a trusted partner, use condoms every time you have sex (and for every sex actâanal, oral, or vaginal), and don't share needles and other drug equipment (works).</p>
</div>
<!--END OF SECTION-->
<!--BEGINNING OF ACCORDIAN SECTION/ TAB-->
<h4>If I have a negative result, does that mean that my partner is HIV-negative also?</h4>
<div class="inner">
<p>No. Your HIV test result reveals only your HIV status. HIV is not necessarily transmitted every time you have sex. Therefore, taking an HIV test is not a way to find out if your partner is infected. Ask your partner if he or she has been tested for HIV and about his or her risk behaviors, both now and in the past. Consider getting tested together, often referred to as couples testing. </p>
</div>
<!--END OF SECTION-->
<!--BEGINNING OF ACCORDIAN SECTION/ TAB-->
<h4>What does a positive result mean?</h4>
<div class="inner">
<p>If you had a rapid screening test, the testing site will arrange a follow-up test to make sure the screening test result was correct. If your blood was tested in a lab, the lab will conduct a follow-up test on the same sample. If the follow-up test is also positive, it means you are HIV-positive.</p>
<p>The sooner you take steps to protect your health, the better. Early treatment with antiretroviral drugs and a healthy lifestyle can help you stay well. Prompt medical care prevents the onset of <a class="noLinking" href="/hiv/basics/whatishiv.html" style="display:inline">AIDS</a> and some life-threatening conditions. </p>
<p>Here are some important steps you can take right away to protect your health:<br/>
</p>
<ul class="bulleted-links">
<li><strong>See a licensed health care provider, even if you don’t feel sick.</strong> Your <a class="noLinking" href="http://www.naccho.org/about/lhd/" style="display:inline">local health department</a> can help you find a health care provider who has experience treating HIV. There are medicines to treat HIV infection and help you stay healthy. It’s never too early to start treatment. Current guidelines recommend treatment with antiretroviral therapy (ART) for all people with HIV, including those with early infection.</li>
<li>Get screened for other sexually transmitted infections (STIs). STIs can cause serious health problems, even when they don’t cause symptoms. Using a condom during all sexual contact (anal, vaginal, or oral) can help prevent many STIs.</li>
<li>Have a TB (tuberculosis) test. You may be infected with TB and not know it. Undetected TB can cause serious illness, but it can be successfully treated if caught early. </li>
<li>Get help if you smoke cigarettes, drink too much alcohol, or use illegal drugs (such as methamphetamine), which can weaken your immune system. Find <a class="noLinking" href="http://findtreatment.samhsa.gov/TreatmentLocator/faces/quickSearch.jspx" style="display:inline">substance abuse treatment facilities</a> near you. </li>
</ul>
<p>Â To avoid giving HIV to anyone else, </p>
<ul class="bulleted-links">
<li>Tell your partner or partners about your HIV status before you have any type of sexual contact with them (anal, vaginal, or oral).</li>
<li>Use latex condoms and/or dental dams with every sexual contact. If either partner is allergic to latex, plastic (polyurethane) condoms for either the male or female can be used. </li>
<li>Don’t share needles, syringes, or other drug paraphernalia with anyone. </li>
<li>Stay on ART to keep your virus under control and greatly reduce your ability to spread HIV to others.</li>
<li>If your steady partner is HIV-negative, discuss whether he or she should consider <a class="noLinking" href="/hiv/prevention/research/prep/index.html" style="display:inline">pre-exposure prophylaxis (PrEP)</a>âmedications to <em>prevent</em> HIV. </li>
</ul>
</div>
<!--END OF SECTION-->
<!--BEGINNING OF ACCORDIAN SECTION/ TAB-->
<h4>If I test positive for HIV, does that mean I have AIDS?</h4>
<div class="inner">
<p>No. Being HIV-positive does not mean you have AIDS. AIDS is the most advanced stage of HIV disease. Proper treatment can keep you from developing AIDS.</p>
<p>See <a class="noLinking" href="/hiv/basics/index.html" style="display:inline">Basic Information About HIV and AIDS</a> for more information.</p>
</div>
<!--END OF SECTION-->
<!--BEGINNING OF ACCORDIAN SECTION/ TAB-->
<h4>Will other people know my test result?</h4>
<div class="inner">
Your test results are protected by state and federal privacy laws. They can only be released with your permission. Whether anyone can know about your test results or your HIV status depends on what kind of test you take: confidential or anonymous. Some states only offer confidential testing. <p></p>
<ul class="bulleted-links">
<li><strong>Confidential testing</strong> means that your name and other identifying information will be attached to your test results. The results will go in your medical record and may be shared with your health care providers and your health insurance company. Otherwise, the results are protected by state and federal privacy laws.</li>
<li><strong>Anonymous testing</strong> means that nothing ties your test results to you. When you take an anonymous HIV test, you get a unique identifier that allows you to get your test results. </li>
</ul>
<p>With confidential testing, if you test positive for HIV or another STI, the test result and your name will be reported to the state or local health department to help public health officials get better estimates of the rates of HIV in the state. The state health department will then <strong>remove all personal information</strong> about you (name, address, etc.) and share the remaining non-identifying information with CDC. CDC does not share this information with anyone else, including insurance companies.</p>
<p> For more information, see <a class="noLinking" href="http://aids.gov/hiv-aids-basics/just-diagnosed-with-hiv-aids/your-legal-rights/civil-rights/index.html" style="display:inline">AIDS.govâs questions about Civil Rights, Legal Disclosure, Insurance, and the Workplace</a></p>
</div>
<!--END OF SECTION-->
<!--BEGINNING OF ACCORDIAN SECTION/ TAB-->
<h4>Should I share my positive test result with others?</h4>
<div class="inner">
<p>Whether you share, or <em>disclose</em>, your status to others is your decision.</p>
<p><strong>Partners</strong><br/>
If you test positive for HIV, your sex or drug-using partners may also be infected. It’s important that they know they have been exposed so that they can be tested too. </p>
<p>You can tell them yourselfâbut if you’re nervous about disclosing your test result, or you have been threatened or injured by your partner, you can ask your doctor or the local health department to tell them that they might have been exposed to HIV. Health departments do not reveal your name to your partners. They will only tell your partners that they have been exposed to HIV and should get tested.</p>
<p>Most states have laws that require you to tell your sexual partners if you are HIV-positive <strong>before</strong> you have sex (anal, vaginal, or oral) or share drugs. You can be charged with a crime in some states if you don’t tellâeven if your partner doesn’t become infected.</p>
<p><strong>Family and friends</strong><br/>
In most cases, your family and friends will not know your test results or HIV status unless you tell them yourself. While telling your family that you have HIV may seem hard, you should know that disclosure actually has many benefitsâstudies have shown that people who disclose their HIV status respond better to treatment than those who don’t.</p>
<p> If you are under 18, however, some states allow your health care provider to tell your parent(s) that you received services for sexually transmitted infections, including HIV, if they think doing so is in your best interest. For more information, see the Guttmacher Institute’s <a class="noLinking" href="http://www.guttmacher.org/statecenter/spibs/spib_MASS.pdf" style="display:inline">State Policies in Brief: Minors’ Access to STI Services</a>.</p>
<p><strong>Employers</strong><br/>
In most cases, your employer will not know your HIV status unless you tell. But your employer does have a right to ask if you have any health conditions that would affect your ability to do your job or pose a serious risk to others. (An example might be a health care professional, like a surgeon, who does procedures where there is a risk of blood or other body fluids being exchanged.)</p>
<p>If you have health insurance through your employer, the insurance company cannot <strong>legally</strong> tell your employer that you have HIV. But it is possible that your employer could find out if the insurance company provides detailed information to your employer about the benefits it pays or the costs of insurance.</p>
<p>All people with HIV are covered under the Americans with Disabilities Act. This means that your employer cannot discriminate against you because of your HIV status as long as you can do your job. For more information, see AIDS.gov’s <a class="noLinking" href="http://aids.gov/hiv-aids-basics/diagnosed-with-hiv-aids/your-legal-rights/civil-rights/" style="display:inline">Civil Rights</a>.</p>
</div>
<!--END OF SECTION-->
<!--BEGINNING OF ACCORDIAN SECTION/ TAB-->
<h4>Who will pay for my HIV test?</h4>
<div class="inner">
<p>HIV screening is covered by health insurance without a co-pay, as required by the Affordable Care Act. If you do not have medical insurance, there are places where you can get an HIV test at a reduced cost or for free. See "Where can I get tested?" above for more information.</p>
</div>
<!--END OF SECTION-->
<!--BEGINNING OF ACCORDIAN SECTION/ TAB-->
<h4>Who will pay for my treatment if I am HIV-positive?</h4>
<div class="inner">
<p> If you have insurance, your insurer may pay for treatment. If you do not have insurance, or your insurer will not pay for treatment, government programs, such as Medicaid, Medicare, Ryan White Care Act treatment centers, and community health centers may be able to help if you meet their rules for eligibility (usually low income and/or disability). CDC is working with its federal partners to make sure that all people who need treatment can get it. Your health care provider or local public health department can direct you to HIV treatment programs. </p>
<p> See <a class="noLinking" href="http://www.aids.gov/federal-resources/policies/health-care-reform/" style="display:inline">The Affordable Care Act Helps People Living With HIV/AIDS</a> for more information.</p>
</div>
</div>
</div>
</div>
<!-- end syndication -->
</div>
</div>
</body></html>
| thomasnat1/DataScience2014CDC | scraped/hiv$basics$testing.html.html | HTML | mit | 26,808 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="pl">
<head>
<!-- Generated by javadoc (1.8.0_121) on Wed Jun 14 19:19:17 CEST 2017 -->
<title>Uses of Class task.timer.view.ManagerTabAddProjectController</title>
<meta name="date" content="2017-06-14">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class task.timer.view.ManagerTabAddProjectController";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../task/timer/view/ManagerTabAddProjectController.html" title="class in task.timer.view">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?task/timer/view/class-use/ManagerTabAddProjectController.html" target="_top">Frames</a></li>
<li><a href="ManagerTabAddProjectController.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 task.timer.view.ManagerTabAddProjectController" class="title">Uses of Class<br>task.timer.view.ManagerTabAddProjectController</h2>
</div>
<div class="classUseContainer">No usage of task.timer.view.ManagerTabAddProjectController</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../task/timer/view/ManagerTabAddProjectController.html" title="class in task.timer.view">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?task/timer/view/class-use/ManagerTabAddProjectController.html" target="_top">Frames</a></li>
<li><a href="ManagerTabAddProjectController.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>
| ultcyber/prk | doc/task/timer/view/class-use/ManagerTabAddProjectController.html | HTML | mit | 4,564 |
<div class="row">
<div class=" col-sm-6 col-md-6 col-lg-4">
<div class="panel panel-default">
<div class="panel-body">
<div class="col-xs-6">
<h6>
Balance:
</h6>
<h1>
$200
</h1>
</div>
<div class="col-xs-6">
<div class="col-xs-12">
<button type="button" class="btn btn-link">Link</button>
</div>
<div class="col-xs-12">
<button type="button" class="btn btn-primary">Primary</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<table class="table table-hover">
<thead>
<tr>
<th>{{::tController.translation.Transactions.Panel.Table.Method}}</th>
<th>{{::tController.translation.Transactions.Panel.Table.Date}}</th>
<th>{{::tController.translation.Transactions.Panel.Table.Cash}}</th>
</tr>
</thead>
<tbody>
<tr ng-repeat-start="transaction in tController.transactions track by $index" ng-click="tController.expandTransaction($index)">
<td>{{transaction.getMethod()}}</td>
<td>{{transaction.getFormattedDate() | date:"dd/MM/yy"}}</td>
<td>
<span ng-if="transaction.getDirection()" class="glyphicon glyphicon glyphicon-plus positive" aria-hidden="true"></span>
<span ng-if="!transaction.getDirection()" class="glyphicon glyphicon glyphicon-minus negative" aria-hidden="true"></span>
{{transaction.getFormattedCash()}}
</td>
</tr>
<tr ng-repeat-end>
<td colspan="4" ng-if="tController.expandedTransactions[$index]">
<ng-transaction ng-model="transaction"></ng-transaction>
</td>
</tr>
</tbody>
</table>
</div>
</div>
| machopixel/hawk | js/webapp/Templates/myaccount_transactions.html | HTML | mit | 2,247 |
<!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>Dendrotriton factsheet on ARKive - Dendrotriton kekchiorum</title>
<link rel="canonical" href="http://www.arkive.org/dendrotriton/dendrotriton-kekchiorum/" />
<link rel="stylesheet" type="text/css" media="screen,print" href="/rcss/factsheet.css" />
<link rel="icon" href="/favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
</head>
<body> <!-- onload="window.print()">-->
<div id="container">
<div id="header"><a href="/"><img src="/rimg/factsheet/header_left.png" alt="" border="0" /><img src="/rimg/factsheet/header_logo.png" alt="" border="0" /><img src="/rimg/factsheet/header_right.png" alt="" border="0" /></a></div>
<div id="content">
<h1>Dendrotriton (<i>Dendrotriton kekchiorum</i>)</h1>
<img alt="" src="/media/63/63094F8B-5E29-4907-8ED9-D370CBE100A6/Presentation.Large/Dendrotriton-kekchiorum.jpg"/>
<table cellspacing="0" cellpadding="0" id="factList">
<tbody>
<tr class="kingdom"><th align="left">Kingdom</th><td align="left">Animalia</td></tr>
<tr class="phylum"><th align="left">Phylum</th><td align="left">Chordata</td></tr>
<tr class="class"><th align="left">Class</th><td align="left">Amphibia</td></tr>
<tr class="order"><th align="left">Order</th><td align="left">Caudata</td></tr>
<tr class="family"><th align="left">Family</th><td align="left">Plethodontidae</td></tr>
<tr class="genus"><th align="left">Genus</th><td align="left"><em>Dendrotriton (1)</em></td></tr>
</tbody>
</table>
<h2><img src="/rimg/factsheet/Status.png" class="heading" /></h2><p class="Status"><p><em>Dendrotriton kekchiorum</em> is classified as Endangered (EN) on the IUCN Red List (1).</p></p><h2><img src="/rimg/factsheet/Description.png" class="heading" /></h2><p class="Description"><p>Information on <em>Dendrotriton kekchiorum</em> is currently being researched and written and will appear here shortly.</p></p><h2><img src="/rimg/factsheet/Authentication.png" class="heading" /></h2><p class="AuthenticatioModel"><p>This information is awaiting authentication by a species expert, and will be updated as soon as possible. If you are able to help please contact: <br/><a href="mailto:arkive@wildscreen.org.uk">arkive@wildscreen.org.uk</a></p></p><h2><img src="/rimg/factsheet/References.png" class="heading" /></h2>
<ol id="references">
<li id="ref1">
<a id="reference_1" name="reference_1"></a>
IUCN Red List (April, 2012) <br/><a href="http://www.iucnredlist.org" target="_blank">http://www.iucnredlist.org</a></li>
</ol>
</div>
</div>
</body>
</html>
| andrewedstrom/cs638project | raw_data/arkive-endangered-html/dendrotriton-kekchiorum.html | HTML | mit | 2,883 |
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<!-- template designed by Marco Von Ballmoos -->
<title></title>
<link rel="stylesheet" href="media/stylesheet.css" />
<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>
</head>
<body>
<a name="top"></a>
<h2>Full index</h2>
<h3>Package indexes</h3>
<ul>
<li><a href="elementindex_core.html">core</a></li>
</ul>
<br />
<div class="index-letter-menu">
<a class="index-letter" href="elementindex.html#a">a</a>
<a class="index-letter" href="elementindex.html#b">b</a>
<a class="index-letter" href="elementindex.html#c">c</a>
<a class="index-letter" href="elementindex.html#d">d</a>
<a class="index-letter" href="elementindex.html#e">e</a>
<a class="index-letter" href="elementindex.html#g">g</a>
<a class="index-letter" href="elementindex.html#h">h</a>
<a class="index-letter" href="elementindex.html#j">j</a>
<a class="index-letter" href="elementindex.html#l">l</a>
<a class="index-letter" href="elementindex.html#m">m</a>
<a class="index-letter" href="elementindex.html#n">n</a>
<a class="index-letter" href="elementindex.html#o">o</a>
<a class="index-letter" href="elementindex.html#p">p</a>
<a class="index-letter" href="elementindex.html#q">q</a>
<a class="index-letter" href="elementindex.html#r">r</a>
<a class="index-letter" href="elementindex.html#s">s</a>
<a class="index-letter" href="elementindex.html#v">v</a>
<a class="index-letter" href="elementindex.html#x">x</a>
</div>
<a name="a"></a>
<div class="index-letter-section">
<div style="float: left" class="index-letter-title">a</div>
<div style="float: right"><a href="#top">top</a></div>
<div style="clear: both"></div>
</div>
<dl>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
<span class="method-title">add_keyword</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/GeSHi.html#methodadd_keyword">GeSHi::add_keyword()</a> in geshi.php</div>
<div class="index-item-description">Adds a keyword to a keyword group for highlighting</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
<span class="method-title">add_keyword_group</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/GeSHi.html#methodadd_keyword_group">GeSHi::add_keyword_group()</a> in geshi.php</div>
<div class="index-item-description">Creates a new keyword group</div>
</dd>
<dt class="field">
<img src="media/images/Page.png" alt="Page" title="Page" /></title>
<span class="include-title">actionscript.php</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/_geshi_actionscript_php.html">actionscript.php</a> in actionscript.php</div>
</dd>
<dt class="field">
<img src="media/images/Page.png" alt="Page" title="Page" /></title>
<span class="include-title">ada.php</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/_geshi_ada_php.html">ada.php</a> in ada.php</div>
</dd>
<dt class="field">
<img src="media/images/Page.png" alt="Page" title="Page" /></title>
<span class="include-title">apache.php</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/_geshi_apache_php.html">apache.php</a> in apache.php</div>
</dd>
<dt class="field">
<img src="media/images/Page.png" alt="Page" title="Page" /></title>
<span class="include-title">asm.php</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/_geshi_asm_php.html">asm.php</a> in asm.php</div>
</dd>
<dt class="field">
<img src="media/images/Page.png" alt="Page" title="Page" /></title>
<span class="include-title">asp.php</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/_geshi_asp_php.html">asp.php</a> in asp.php</div>
</dd>
</dl>
<a name="b"></a>
<div class="index-letter-section">
<div style="float: left" class="index-letter-title">b</div>
<div style="float: right"><a href="#top">top</a></div>
<div style="clear: both"></div>
</div>
<dl>
<dt class="field">
<img src="media/images/Page.png" alt="Page" title="Page" /></title>
<span class="include-title">bash.php</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/_geshi_bash_php.html">bash.php</a> in bash.php</div>
</dd>
</dl>
<a name="c"></a>
<div class="index-letter-section">
<div style="float: left" class="index-letter-title">c</div>
<div style="float: right"><a href="#top">top</a></div>
<div style="clear: both"></div>
</div>
<dl>
<dt class="field">
<img src="media/images/Page.png" alt="Page" title="Page" /></title>
<span class="include-title">caddcl.php</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/_geshi_caddcl_php.html">caddcl.php</a> in caddcl.php</div>
</dd>
<dt class="field">
<img src="media/images/Page.png" alt="Page" title="Page" /></title>
<span class="include-title">cadlisp.php</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/_geshi_cadlisp_php.html">cadlisp.php</a> in cadlisp.php</div>
</dd>
<dt class="field">
<img src="media/images/Page.png" alt="Page" title="Page" /></title>
<span class="include-title">cpp.php</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/_geshi_cpp_php.html">cpp.php</a> in cpp.php</div>
</dd>
<dt class="field">
<img src="media/images/Page.png" alt="Page" title="Page" /></title>
<span class="include-title">csharp.php</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/_geshi_csharp_php.html">csharp.php</a> in csharp.php</div>
</dd>
<dt class="field">
<img src="media/images/Page.png" alt="Page" title="Page" /></title>
<span class="include-title">css.php</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/_geshi_css_php.html">css.php</a> in css.php</div>
</dd>
<dt class="field">
<img src="media/images/Page.png" alt="Page" title="Page" /></title>
<span class="include-title">c_mac.php</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/_geshi_c_mac_php.html">c_mac.php</a> in c_mac.php</div>
</dd>
<dt class="field">
<img src="media/images/Page.png" alt="Page" title="Page" /></title>
<span class="include-title">c.php</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/_geshi_c_php.html">c.php</a> in c.php</div>
</dd>
</dl>
<a name="d"></a>
<div class="index-letter-section">
<div style="float: left" class="index-letter-title">d</div>
<div style="float: right"><a href="#top">top</a></div>
<div style="clear: both"></div>
</div>
<dl>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
<span class="method-title">disable_highlighting</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/GeSHi.html#methoddisable_highlighting">GeSHi::disable_highlighting()</a> in geshi.php</div>
<div class="index-item-description">Disables all highlighting</div>
</dd>
<dt class="field">
<img src="media/images/Page.png" alt="Page" title="Page" /></title>
<span class="include-title">delphi.php</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/_geshi_delphi_php.html">delphi.php</a> in delphi.php</div>
</dd>
<dt class="field">
<img src="media/images/Page.png" alt="Page" title="Page" /></title>
<span class="include-title">diff.php</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/_geshi_diff_php.html">diff.php</a> in diff.php</div>
</dd>
<dt class="field">
<img src="media/images/Page.png" alt="Page" title="Page" /></title>
<span class="include-title">d.php</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/_geshi_d_php.html">d.php</a> in d.php</div>
</dd>
</dl>
<a name="e"></a>
<div class="index-letter-section">
<div style="float: left" class="index-letter-title">e</div>
<div style="float: right"><a href="#top">top</a></div>
<div style="clear: both"></div>
</div>
<dl>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
<span class="method-title">enable_classes</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/GeSHi.html#methodenable_classes">GeSHi::enable_classes()</a> in geshi.php</div>
<div class="index-item-description">Sets whether CSS classes should be used to highlight the source. Default is off, calling this method with no arguments will turn it on</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
<span class="method-title">enable_highlighting</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/GeSHi.html#methodenable_highlighting">GeSHi::enable_highlighting()</a> in geshi.php</div>
<div class="index-item-description">Enables all highlighting</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
<span class="method-title">enable_ids</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/GeSHi.html#methodenable_ids">GeSHi::enable_ids()</a> in geshi.php</div>
<div class="index-item-description">Whether CSS IDs should be added to each line</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
<span class="method-title">enable_important_blocks</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/GeSHi.html#methodenable_important_blocks">GeSHi::enable_important_blocks()</a> in geshi.php</div>
<div class="index-item-description">Sets whether context-important blocks are highlighted</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
<span class="method-title">enable_line_numbers</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/GeSHi.html#methodenable_line_numbers">GeSHi::enable_line_numbers()</a> in geshi.php</div>
<div class="index-item-description">Sets whether line numbers should be displayed.</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
<span class="method-title">enable_strict_mode</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/GeSHi.html#methodenable_strict_mode">GeSHi::enable_strict_mode()</a> in geshi.php</div>
<div class="index-item-description">Enables/disables strict highlighting. Default is off, calling this method without parameters will turn it on. See documentation for more details on strict mode and where to use it.</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
<span class="method-title">error</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/GeSHi.html#methoderror">GeSHi::error()</a> in geshi.php</div>
<div class="index-item-description">Returns an error message associated with the last GeSHi operation, or false if no error has occured</div>
</dd>
</dl>
<a name="g"></a>
<div class="index-letter-section">
<div style="float: left" class="index-letter-title">g</div>
<div style="float: right"><a href="#top">top</a></div>
<div style="clear: both"></div>
</div>
<dl>
<dt class="field">
<img src="media/images/Class.png" alt="Class" title="Class" /></title>
GeSHi
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/GeSHi.html">GeSHi</a> in geshi.php</div>
<div class="index-item-description">The GeSHi Class.</div>
</dd>
<dt class="field">
<img src="media/images/Constructor.png" alt="Method" title="Method" /></title>
<span class="method-title">GeSHi</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/GeSHi.html#methodGeSHi">GeSHi::GeSHi()</a> in geshi.php</div>
<div class="index-item-description">Creates a new GeSHi object, with source and language</div>
</dd>
<dt class="field">
<img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
<span class="const-title">GESHI_ACTIVE</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/_geshi_php.html#defineGESHI_ACTIVE">GESHI_ACTIVE</a> in geshi.php</div>
<div class="index-item-description">Links in the source in the :active state</div>
</dd>
<dt class="field">
<img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
<span class="const-title">GESHI_CAPS_LOWER</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/_geshi_php.html#defineGESHI_CAPS_LOWER">GESHI_CAPS_LOWER</a> in geshi.php</div>
<div class="index-item-description">Leave keywords found as the case that they are</div>
</dd>
<dt class="field">
<img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
<span class="const-title">GESHI_CAPS_NO_CHANGE</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/_geshi_php.html#defineGESHI_CAPS_NO_CHANGE">GESHI_CAPS_NO_CHANGE</a> in geshi.php</div>
<div class="index-item-description">Lowercase keywords found</div>
</dd>
<dt class="field">
<img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
<span class="const-title">GESHI_CAPS_UPPER</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/_geshi_php.html#defineGESHI_CAPS_UPPER">GESHI_CAPS_UPPER</a> in geshi.php</div>
<div class="index-item-description">Uppercase keywords found</div>
</dd>
<dt class="field">
<img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
<span class="const-title">GESHI_DIR_SEPARATOR</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/_geshi_php.html#defineGESHI_DIR_SEPARATOR">GESHI_DIR_SEPARATOR</a> in geshi.php</div>
<div class="index-item-description">Set the correct directory separator</div>
</dd>
<dt class="field">
<img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
<span class="const-title">GESHI_END_IMPORTANT</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/_geshi_php.html#defineGESHI_END_IMPORTANT">GESHI_END_IMPORTANT</a> in geshi.php</div>
<div class="index-item-description">The ender for important parts of the source</div>
</dd>
<dt class="field">
<img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
<span class="const-title">GESHI_FANCY_LINE_NUMBERS</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/_geshi_php.html#defineGESHI_FANCY_LINE_NUMBERS">GESHI_FANCY_LINE_NUMBERS</a> in geshi.php</div>
<div class="index-item-description">Use fancy line numbers when building the result</div>
</dd>
<dt class="field">
<img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
<span class="const-title">GESHI_HEADER_DIV</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/_geshi_php.html#defineGESHI_HEADER_DIV">GESHI_HEADER_DIV</a> in geshi.php</div>
<div class="index-item-description">Use a <div> to surround the source</div>
</dd>
<dt class="field">
<img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
<span class="const-title">GESHI_HEADER_PRE</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/_geshi_php.html#defineGESHI_HEADER_PRE">GESHI_HEADER_PRE</a> in geshi.php</div>
<div class="index-item-description">Use a</div>
</dd>
<dt class="field">
<img src="media/images/Function.png" alt="Function" title="Function" /></title>
<span class="method-title">geshi_highlight</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/_geshi_php.html#functiongeshi_highlight">geshi_highlight()</a> in geshi.php</div>
<div class="index-item-description">Easy way to highlight stuff. Behaves just like highlight_string</div>
</dd>
<dt class="field">
<img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
<span class="const-title">GESHI_HOVER</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/_geshi_php.html#defineGESHI_HOVER">GESHI_HOVER</a> in geshi.php</div>
<div class="index-item-description">Links in the source in the :hover state</div>
</dd>
<dt class="field">
<img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
<span class="const-title">GESHI_LANG_ROOT</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/_geshi_php.html#defineGESHI_LANG_ROOT">GESHI_LANG_ROOT</a> in geshi.php</div>
<div class="index-item-description">The language file directory for GeSHi</div>
</dd>
<dt class="field">
<img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
<span class="const-title">GESHI_LINK</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/_geshi_php.html#defineGESHI_LINK">GESHI_LINK</a> in geshi.php</div>
<div class="index-item-description">Links in the source in the :link state</div>
</dd>
<dt class="field">
<img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
<span class="const-title">GESHI_NORMAL_LINE_NUMBERS</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/_geshi_php.html#defineGESHI_NORMAL_LINE_NUMBERS">GESHI_NORMAL_LINE_NUMBERS</a> in geshi.php</div>
<div class="index-item-description">Use normal line numbers when building the result</div>
</dd>
<dt class="field">
<img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
<span class="const-title">GESHI_NO_LINE_NUMBERS</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/_geshi_php.html#defineGESHI_NO_LINE_NUMBERS">GESHI_NO_LINE_NUMBERS</a> in geshi.php</div>
<div class="index-item-description">Use no line numbers when building the result</div>
</dd>
<dt class="field">
<img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
<span class="const-title">GESHI_OUTPUT_HTML</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/_geshi_php.html#defineGESHI_OUTPUT_HTML">GESHI_OUTPUT_HTML</a> in geshi.php</div>
<div class="index-item-description">For the future (though this may never be realised)</div>
</dd>
<dt class="field">
<img src="media/images/Page.png" alt="Page" title="Page" /></title>
<span class="include-title">geshi.php</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/_geshi_php.html">geshi.php</a> in geshi.php</div>
</dd>
<dt class="field">
<img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
<span class="const-title">GESHI_ROOT</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/_geshi_php.html#defineGESHI_ROOT">GESHI_ROOT</a> in geshi.php</div>
<div class="index-item-description">The root directory for GeSHi</div>
</dd>
<dt class="field">
<img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
<span class="const-title">GESHI_START_IMPORTANT</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/_geshi_php.html#defineGESHI_START_IMPORTANT">GESHI_START_IMPORTANT</a> in geshi.php</div>
<div class="index-item-description">The starter for important parts of the source</div>
</dd>
<dt class="field">
<img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
<span class="const-title">GESHI_VERSION</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/_geshi_php.html#defineGESHI_VERSION">GESHI_VERSION</a> in geshi.php</div>
<div class="index-item-description">The version of this GeSHi file</div>
</dd>
<dt class="field">
<img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
<span class="const-title">GESHI_VISITED</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/_geshi_php.html#defineGESHI_VISITED">GESHI_VISITED</a> in geshi.php</div>
<div class="index-item-description">Links in the source in the :visited state</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
<span class="method-title">get_language_name</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/GeSHi.html#methodget_language_name">GeSHi::get_language_name()</a> in geshi.php</div>
<div class="index-item-description">Gets a human-readable language name (thanks to Simon Patterson for the idea :))</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
<span class="method-title">get_language_name_from_extension</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/GeSHi.html#methodget_language_name_from_extension">GeSHi::get_language_name_from_extension()</a> in geshi.php</div>
<div class="index-item-description">Given a file extension, this method returns either a valid geshi language name, or the empty string if it couldn't be found</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
<span class="method-title">get_stylesheet</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/GeSHi.html#methodget_stylesheet">GeSHi::get_stylesheet()</a> in geshi.php</div>
<div class="index-item-description">Returns a stylesheet for the highlighted code. If $economy mode is true, we only return the stylesheet declarations that matter for this code block instead of the whole thing</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
<span class="method-title">get_time</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/GeSHi.html#methodget_time">GeSHi::get_time()</a> in geshi.php</div>
<div class="index-item-description">Gets the time taken to parse the code</div>
</dd>
</dl>
<a name="h"></a>
<div class="index-letter-section">
<div style="float: left" class="index-letter-title">h</div>
<div style="float: right"><a href="#top">top</a></div>
<div style="clear: both"></div>
</div>
<dl>
<dt class="field">
<img src="media/images/Page.png" alt="Page" title="Page" /></title>
<span class="include-title">html4strict.php</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/_geshi_html4strict_php.html">html4strict.php</a> in html4strict.php</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
<span class="method-title">highlight_lines_extra</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/GeSHi.html#methodhighlight_lines_extra">GeSHi::highlight_lines_extra()</a> in geshi.php</div>
<div class="index-item-description">Specifies which lines to highlight extra</div>
</dd>
</dl>
<a name="j"></a>
<div class="index-letter-section">
<div style="float: left" class="index-letter-title">j</div>
<div style="float: right"><a href="#top">top</a></div>
<div style="clear: both"></div>
</div>
<dl>
<dt class="field">
<img src="media/images/Page.png" alt="Page" title="Page" /></title>
<span class="include-title">javascript.php</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/_geshi_javascript_php.html">javascript.php</a> in javascript.php</div>
</dd>
<dt class="field">
<img src="media/images/Page.png" alt="Page" title="Page" /></title>
<span class="include-title">java.php</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/_geshi_java_php.html">java.php</a> in java.php</div>
</dd>
</dl>
<a name="l"></a>
<div class="index-letter-section">
<div style="float: left" class="index-letter-title">l</div>
<div style="float: right"><a href="#top">top</a></div>
<div style="clear: both"></div>
</div>
<dl>
<dt class="field">
<img src="media/images/Page.png" alt="Page" title="Page" /></title>
<span class="include-title">lisp.php</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/_geshi_lisp_php.html">lisp.php</a> in lisp.php</div>
</dd>
<dt class="field">
<img src="media/images/Page.png" alt="Page" title="Page" /></title>
<span class="include-title">lua.php</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/_geshi_lua_php.html">lua.php</a> in lua.php</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
<span class="method-title">load_from_file</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/GeSHi.html#methodload_from_file">GeSHi::load_from_file()</a> in geshi.php</div>
<div class="index-item-description">Given a file name, this method loads its contents in, and attempts</div>
</dd>
</dl>
<a name="m"></a>
<div class="index-letter-section">
<div style="float: left" class="index-letter-title">m</div>
<div style="float: right"><a href="#top">top</a></div>
<div style="clear: both"></div>
</div>
<dl>
<dt class="field">
<img src="media/images/Page.png" alt="Page" title="Page" /></title>
<span class="include-title">matlab.php</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/_geshi_matlab_php.html">matlab.php</a> in matlab.php</div>
</dd>
<dt class="field">
<img src="media/images/Page.png" alt="Page" title="Page" /></title>
<span class="include-title">mpasm.php</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/_geshi_mpasm_php.html">mpasm.php</a> in mpasm.php</div>
</dd>
</dl>
<a name="n"></a>
<div class="index-letter-section">
<div style="float: left" class="index-letter-title">n</div>
<div style="float: right"><a href="#top">top</a></div>
<div style="clear: both"></div>
</div>
<dl>
<dt class="field">
<img src="media/images/Page.png" alt="Page" title="Page" /></title>
<span class="include-title">nsis.php</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/_geshi_nsis_php.html">nsis.php</a> in nsis.php</div>
</dd>
</dl>
<a name="o"></a>
<div class="index-letter-section">
<div style="float: left" class="index-letter-title">o</div>
<div style="float: right"><a href="#top">top</a></div>
<div style="clear: both"></div>
</div>
<dl>
<dt class="field">
<img src="media/images/Page.png" alt="Page" title="Page" /></title>
<span class="include-title">objc.php</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/_geshi_objc_php.html">objc.php</a> in objc.php</div>
</dd>
<dt class="field">
<img src="media/images/Page.png" alt="Page" title="Page" /></title>
<span class="include-title">oobas.php</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/_geshi_oobas_php.html">oobas.php</a> in oobas.php</div>
</dd>
<dt class="field">
<img src="media/images/Page.png" alt="Page" title="Page" /></title>
<span class="include-title">oracle8.php</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/_geshi_oracle8_php.html">oracle8.php</a> in oracle8.php</div>
</dd>
</dl>
<a name="p"></a>
<div class="index-letter-section">
<div style="float: left" class="index-letter-title">p</div>
<div style="float: right"><a href="#top">top</a></div>
<div style="clear: both"></div>
</div>
<dl>
<dt class="field">
<img src="media/images/Page.png" alt="Page" title="Page" /></title>
<span class="include-title">pascal.php</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/_geshi_pascal_php.html">pascal.php</a> in pascal.php</div>
</dd>
<dt class="field">
<img src="media/images/Page.png" alt="Page" title="Page" /></title>
<span class="include-title">perl.php</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/_geshi_perl_php.html">perl.php</a> in perl.php</div>
</dd>
<dt class="field">
<img src="media/images/Page.png" alt="Page" title="Page" /></title>
<span class="include-title">php-brief.php</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/_geshi_php-brief_php.html">php-brief.php</a> in php-brief.php</div>
</dd>
<dt class="field">
<img src="media/images/Page.png" alt="Page" title="Page" /></title>
<span class="include-title">php.php</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/_geshi_php_php.html">php.php</a> in php.php</div>
</dd>
<dt class="field">
<img src="media/images/Page.png" alt="Page" title="Page" /></title>
<span class="include-title">python.php</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/_geshi_python_php.html">python.php</a> in python.php</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
<span class="method-title">parse_code</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/GeSHi.html#methodparse_code">GeSHi::parse_code()</a> in geshi.php</div>
<div class="index-item-description">Returns the code in $this->source, highlighted and surrounded by the nessecary HTML.</div>
</dd>
</dl>
<a name="q"></a>
<div class="index-letter-section">
<div style="float: left" class="index-letter-title">q</div>
<div style="float: right"><a href="#top">top</a></div>
<div style="clear: both"></div>
</div>
<dl>
<dt class="field">
<img src="media/images/Page.png" alt="Page" title="Page" /></title>
<span class="include-title">qbasic.php</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/_geshi_qbasic_php.html">qbasic.php</a> in qbasic.php</div>
</dd>
</dl>
<a name="r"></a>
<div class="index-letter-section">
<div style="float: left" class="index-letter-title">r</div>
<div style="float: right"><a href="#top">top</a></div>
<div style="clear: both"></div>
</div>
<dl>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
<span class="method-title">remove_keyword</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/GeSHi.html#methodremove_keyword">GeSHi::remove_keyword()</a> in geshi.php</div>
<div class="index-item-description">Removes a keyword from a keyword group</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
<span class="method-title">remove_keyword_group</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/GeSHi.html#methodremove_keyword_group">GeSHi::remove_keyword_group()</a> in geshi.php</div>
<div class="index-item-description">Removes a keyword group</div>
</dd>
</dl>
<a name="s"></a>
<div class="index-letter-section">
<div style="float: left" class="index-letter-title">s</div>
<div style="float: right"><a href="#top">top</a></div>
<div style="clear: both"></div>
</div>
<dl>
<dt class="field">
<img src="media/images/Page.png" alt="Page" title="Page" /></title>
<span class="include-title">smarty.php</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/_geshi_smarty_php.html">smarty.php</a> in smarty.php</div>
</dd>
<dt class="field">
<img src="media/images/Page.png" alt="Page" title="Page" /></title>
<span class="include-title">sql.php</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/_geshi_sql_php.html">sql.php</a> in sql.php</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
<span class="method-title">set_brackets_highlighting</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/GeSHi.html#methodset_brackets_highlighting">GeSHi::set_brackets_highlighting()</a> in geshi.php</div>
<div class="index-item-description">Turns highlighting on/off for brackets</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
<span class="method-title">set_brackets_style</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/GeSHi.html#methodset_brackets_style">GeSHi::set_brackets_style()</a> in geshi.php</div>
<div class="index-item-description">Sets the styles for brackets. If $preserve_defaults is true, then styles are merged with the default styles, with the user defined styles having priority</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
<span class="method-title">set_case_keywords</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/GeSHi.html#methodset_case_keywords">GeSHi::set_case_keywords()</a> in geshi.php</div>
<div class="index-item-description">Sets the case that keywords should use when found. Use the constants:</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
<span class="method-title">set_case_sensitivity</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/GeSHi.html#methodset_case_sensitivity">GeSHi::set_case_sensitivity()</a> in geshi.php</div>
<div class="index-item-description">Sets whether a set of keywords are checked for in a case sensitive manner</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
<span class="method-title">set_code_style</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/GeSHi.html#methodset_code_style">GeSHi::set_code_style()</a> in geshi.php</div>
<div class="index-item-description">Sets the style for the actual code. This should be a string</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
<span class="method-title">set_comments_highlighting</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/GeSHi.html#methodset_comments_highlighting">GeSHi::set_comments_highlighting()</a> in geshi.php</div>
<div class="index-item-description">Turns highlighting on/off for comment groups</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
<span class="method-title">set_comments_style</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/GeSHi.html#methodset_comments_style">GeSHi::set_comments_style()</a> in geshi.php</div>
<div class="index-item-description">Sets the styles for comment groups. If $preserve_defaults is true, then styles are merged with the default styles, with the user defined styles having priority</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
<span class="method-title">set_encoding</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/GeSHi.html#methodset_encoding">GeSHi::set_encoding()</a> in geshi.php</div>
<div class="index-item-description">Sets the encoding used for htmlspecialchars(), for international support.</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
<span class="method-title">set_escape_characters_highlighting</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/GeSHi.html#methodset_escape_characters_highlighting">GeSHi::set_escape_characters_highlighting()</a> in geshi.php</div>
<div class="index-item-description">Turns highlighting on/off for escaped characters</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
<span class="method-title">set_escape_characters_style</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/GeSHi.html#methodset_escape_characters_style">GeSHi::set_escape_characters_style()</a> in geshi.php</div>
<div class="index-item-description">Sets the styles for escaped characters. If $preserve_defaults is true, then styles are merged with the default styles, with the user defined styles having priority</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
<span class="method-title">set_footer_content</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/GeSHi.html#methodset_footer_content">GeSHi::set_footer_content()</a> in geshi.php</div>
<div class="index-item-description">Sets the content of the footer block</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
<span class="method-title">set_footer_content_style</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/GeSHi.html#methodset_footer_content_style">GeSHi::set_footer_content_style()</a> in geshi.php</div>
<div class="index-item-description">Sets the style for the footer content</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
<span class="method-title">set_header_content</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/GeSHi.html#methodset_header_content">GeSHi::set_header_content()</a> in geshi.php</div>
<div class="index-item-description">Sets the content of the header block</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
<span class="method-title">set_header_content_style</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/GeSHi.html#methodset_header_content_style">GeSHi::set_header_content_style()</a> in geshi.php</div>
<div class="index-item-description">Sets the style for the header content</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
<span class="method-title">set_header_type</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/GeSHi.html#methodset_header_type">GeSHi::set_header_type()</a> in geshi.php</div>
<div class="index-item-description">Sets the type of header to be used.</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
<span class="method-title">set_highlight_lines_extra_style</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/GeSHi.html#methodset_highlight_lines_extra_style">GeSHi::set_highlight_lines_extra_style()</a> in geshi.php</div>
<div class="index-item-description">Sets the style for extra-highlighted lines</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
<span class="method-title">set_important_styles</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/GeSHi.html#methodset_important_styles">GeSHi::set_important_styles()</a> in geshi.php</div>
<div class="index-item-description">Sets styles for important parts of the code</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
<span class="method-title">set_keyword_group_highlighting</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/GeSHi.html#methodset_keyword_group_highlighting">GeSHi::set_keyword_group_highlighting()</a> in geshi.php</div>
<div class="index-item-description">Turns highlighting on/off for a keyword group</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
<span class="method-title">set_keyword_group_style</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/GeSHi.html#methodset_keyword_group_style">GeSHi::set_keyword_group_style()</a> in geshi.php</div>
<div class="index-item-description">Sets the style for a keyword group. If $preserve_defaults is true, then styles are merged with the default styles, with the user defined styles having priority</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
<span class="method-title">set_language</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/GeSHi.html#methodset_language">GeSHi::set_language()</a> in geshi.php</div>
<div class="index-item-description">Sets the language for this object</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
<span class="method-title">set_language_path</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/GeSHi.html#methodset_language_path">GeSHi::set_language_path()</a> in geshi.php</div>
<div class="index-item-description">Sets the path to the directory containing the language files. Note that this path is relative to the directory of the script that included geshi.php, NOT geshi.php itself.</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
<span class="method-title">set_line_style</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/GeSHi.html#methodset_line_style">GeSHi::set_line_style()</a> in geshi.php</div>
<div class="index-item-description">Sets the styles for the line numbers.</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
<span class="method-title">set_link_styles</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/GeSHi.html#methodset_link_styles">GeSHi::set_link_styles()</a> in geshi.php</div>
<div class="index-item-description">Sets styles for links in code</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
<span class="method-title">set_link_target</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/GeSHi.html#methodset_link_target">GeSHi::set_link_target()</a> in geshi.php</div>
<div class="index-item-description">Sets the target for links in code</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
<span class="method-title">set_methods_highlighting</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/GeSHi.html#methodset_methods_highlighting">GeSHi::set_methods_highlighting()</a> in geshi.php</div>
<div class="index-item-description">Turns highlighting on/off for methods</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
<span class="method-title">set_methods_style</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/GeSHi.html#methodset_methods_style">GeSHi::set_methods_style()</a> in geshi.php</div>
<div class="index-item-description">Sets the styles for methods. $key is a number that references the</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
<span class="method-title">set_numbers_highlighting</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/GeSHi.html#methodset_numbers_highlighting">GeSHi::set_numbers_highlighting()</a> in geshi.php</div>
<div class="index-item-description">Turns highlighting on/off for numbers</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
<span class="method-title">set_numbers_style</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/GeSHi.html#methodset_numbers_style">GeSHi::set_numbers_style()</a> in geshi.php</div>
<div class="index-item-description">Sets the styles for numbers. If $preserve_defaults is true, then styles are merged with the default styles, with the user defined styles having priority</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
<span class="method-title">set_overall_class</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/GeSHi.html#methodset_overall_class">GeSHi::set_overall_class()</a> in geshi.php</div>
<div class="index-item-description">Sets the overall classname for this block of code. This class can then be used in a stylesheet to style this object's output</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
<span class="method-title">set_overall_id</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/GeSHi.html#methodset_overall_id">GeSHi::set_overall_id()</a> in geshi.php</div>
<div class="index-item-description">Sets the overall id for this block of code. This id can then be used in a stylesheet to style this object's output</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
<span class="method-title">set_overall_style</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/GeSHi.html#methodset_overall_style">GeSHi::set_overall_style()</a> in geshi.php</div>
<div class="index-item-description">Sets the styles for the code that will be outputted when this object is parsed. The style should be a string of valid stylesheet declarations</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
<span class="method-title">set_regexps_highlighting</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/GeSHi.html#methodset_regexps_highlighting">GeSHi::set_regexps_highlighting()</a> in geshi.php</div>
<div class="index-item-description">Turns highlighting on/off for regexps</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
<span class="method-title">set_regexps_style</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/GeSHi.html#methodset_regexps_style">GeSHi::set_regexps_style()</a> in geshi.php</div>
<div class="index-item-description">Sets the styles for regexps. If $preserve_defaults is true, then styles are merged with the default styles, with the user defined styles having priority</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
<span class="method-title">set_source</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/GeSHi.html#methodset_source">GeSHi::set_source()</a> in geshi.php</div>
<div class="index-item-description">Sets the source code for this object</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
<span class="method-title">set_strings_highlighting</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/GeSHi.html#methodset_strings_highlighting">GeSHi::set_strings_highlighting()</a> in geshi.php</div>
<div class="index-item-description">Turns highlighting on/off for strings</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
<span class="method-title">set_strings_style</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/GeSHi.html#methodset_strings_style">GeSHi::set_strings_style()</a> in geshi.php</div>
<div class="index-item-description">Sets the styles for strings. If $preserve_defaults is true, then styles are merged with the default styles, with the user defined styles having priority</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
<span class="method-title">set_symbols_highlighting</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/GeSHi.html#methodset_symbols_highlighting">GeSHi::set_symbols_highlighting()</a> in geshi.php</div>
<div class="index-item-description">Turns highlighting on/off for symbols</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
<span class="method-title">set_symbols_style</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/GeSHi.html#methodset_symbols_style">GeSHi::set_symbols_style()</a> in geshi.php</div>
<div class="index-item-description">Sets the styles for symbols. If $preserve_defaults is true, then styles are merged with the default styles, with the user defined styles having priority</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
<span class="method-title">set_tab_width</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/GeSHi.html#methodset_tab_width">GeSHi::set_tab_width()</a> in geshi.php</div>
<div class="index-item-description">Sets how many spaces a tab is substituted for</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
<span class="method-title">set_url_for_keyword_group</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/GeSHi.html#methodset_url_for_keyword_group">GeSHi::set_url_for_keyword_group()</a> in geshi.php</div>
<div class="index-item-description">Sets the base URL to be used for keywords</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
<span class="method-title">start_line_numbers_at</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/GeSHi.html#methodstart_line_numbers_at">GeSHi::start_line_numbers_at()</a> in geshi.php</div>
<div class="index-item-description">Sets what number line numbers should start at. Should be a positive integer, and will be converted to one.</div>
</dd>
</dl>
<a name="v"></a>
<div class="index-letter-section">
<div style="float: left" class="index-letter-title">v</div>
<div style="float: right"><a href="#top">top</a></div>
<div style="clear: both"></div>
</div>
<dl>
<dt class="field">
<img src="media/images/Page.png" alt="Page" title="Page" /></title>
<span class="include-title">vbnet.php</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/_geshi_vbnet_php.html">vbnet.php</a> in vbnet.php</div>
</dd>
<dt class="field">
<img src="media/images/Page.png" alt="Page" title="Page" /></title>
<span class="include-title">vb.php</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/_geshi_vb_php.html">vb.php</a> in vb.php</div>
</dd>
<dt class="field">
<img src="media/images/Page.png" alt="Page" title="Page" /></title>
<span class="include-title">vhdl.php</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/_geshi_vhdl_php.html">vhdl.php</a> in vhdl.php</div>
</dd>
<dt class="field">
<img src="media/images/Page.png" alt="Page" title="Page" /></title>
<span class="include-title">visualfoxpro.php</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/_geshi_visualfoxpro_php.html">visualfoxpro.php</a> in visualfoxpro.php</div>
</dd>
</dl>
<a name="x"></a>
<div class="index-letter-section">
<div style="float: left" class="index-letter-title">x</div>
<div style="float: right"><a href="#top">top</a></div>
<div style="clear: both"></div>
</div>
<dl>
<dt class="field">
<img src="media/images/Page.png" alt="Page" title="Page" /></title>
<span class="include-title">xml.php</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="core/_geshi_xml_php.html">xml.php</a> in xml.php</div>
</dd>
</dl>
<div class="index-letter-menu">
<a class="index-letter" href="elementindex.html#a">a</a>
<a class="index-letter" href="elementindex.html#b">b</a>
<a class="index-letter" href="elementindex.html#c">c</a>
<a class="index-letter" href="elementindex.html#d">d</a>
<a class="index-letter" href="elementindex.html#e">e</a>
<a class="index-letter" href="elementindex.html#g">g</a>
<a class="index-letter" href="elementindex.html#h">h</a>
<a class="index-letter" href="elementindex.html#j">j</a>
<a class="index-letter" href="elementindex.html#l">l</a>
<a class="index-letter" href="elementindex.html#m">m</a>
<a class="index-letter" href="elementindex.html#n">n</a>
<a class="index-letter" href="elementindex.html#o">o</a>
<a class="index-letter" href="elementindex.html#p">p</a>
<a class="index-letter" href="elementindex.html#q">q</a>
<a class="index-letter" href="elementindex.html#r">r</a>
<a class="index-letter" href="elementindex.html#s">s</a>
<a class="index-letter" href="elementindex.html#v">v</a>
<a class="index-letter" href="elementindex.html#x">x</a>
</div>
</body>
</html> | Quantisan/WholeCell | knowledgebase/lib/geshi/filter/geshi/docs/api/elementindex.html | HTML | mit | 57,162 |
<!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>DOM API</title>
<link rel="stylesheet" href="../css/example.css">
</head>
<body>
<section id='first'>
<h1>First Example: Pokemon List</h1>
<div id='nb_pokemon'>0</div>
<div></div>
</section>
<section id='second'>
<h1>Second Example: Change color</h1>
<div>
<div id='red'>Switch to Red</div>
<div id='blue'>Switch to Blue</div>
<div id='green'>Switch to Green</div>
</div>
</section>
<section id='third'>
<h1>Third Example: Change Size</h1>
<div>
<div id='start_size'>Start</div>
<div id='stop_size'>Stop</div>
</div>
<div id='daddy'>Who's your daddy ?</div>
</section>
<section id='fourth'>
<h1>Fourth Example: Track Mouse</h1>
<div>Start tracking mouse</div>
<div id='info-mouse'></div>
</section>
<section id='fifth'>
<h1>Fifth Example: Keyboard</h1>
<div>Start moving</div>
<div id='square' style="top:0px;left:0px"></div>
</section>
</body>
<script type="text/javascript" src="first.js"></script>
<script type="text/javascript" src="second.js"></script>
<script type="text/javascript" src="third.js"></script>
<script type="text/javascript" src="fourth.js"></script>
<script type="text/javascript" src="fifth.js"></script>
<script type="text/javascript">
// WRITE CODE HERE
</script>
</html>
| iOiurson/JS_ECV_5D | examples/domAPI.html | HTML | mit | 1,803 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Game Menu</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="../normalize.css/normalize-8.0.1.css">
<style type="text/css">
html, body {
font-family: Verdana, sans-serif;
font-size: 16px;
line-height: 1.5;
}
html {
overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
font-family: "Segoe UI", Arial, sans-serif;
font-weight: 400;
line-height: 1.5;
}
body {
padding: 0.01em 0;
background-color: #1D1E22;
color: #FFFFFF;
text-align: center;
}
::selection {
background-color: #FFFFFF!important;
color: #000000!important;
}
#menuwrapper {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
width: 200px;
height: 360px;
margin: auto;
/* background-color: #000000; */
}
#menuwrapper > button {
line-height: 1.5;
border: none;
display: block;
width: 100%;
padding: 6px 16px;
vertical-align: middle;
overflow: hidden;
text-decoration: none;
color: inherit;
background-color: #000000;
text-align: center;
cursor: pointer;
white-space: nowrap;
border-radius: 16px;
}
#menuwrapper > button {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
#menuwrapper > button:hover {
color: inherit !important;
background-color: inherit !important;
letter-spacing: 4px !important;
}
</style>
</head>
<body>
<div id="menuwrapper">
<button>Continue</button>
<button>New game</button>
<button>Continue</button>
<button>Learn to play</button>
<button>Options</button>
<button>Settings</button>
<button>Leader board</button>
<button>About</button>
<button>Credits</button>
<button>Quit</button>
</div>
<script type="text/javascript" src="../roundlib/roundlib-01.js"></script>
<script type="text/javascript" src="../es-abstract/es-abstract-01.js"></script>
<script type="text/javascript">
</script>
</body>
</html>
| yesasha/yesasha.github.io | gamemenu/gamemenu-02.html | HTML | mit | 2,040 |
<!DOCTYPE html>
<html lang="en"><meta charset="utf-8" />
<title>2016 - Reflections</title>
<meta name="description" content="Default Page Description" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="http://blog.shiv.me/css/latex.css" />
<link rel="stylesheet" href="http://blog.shiv.me/css/main.css" />
<script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script>
<meta name="generator" content="Hugo 0.75.1" /><body>
<header>
<nav class="navbar">
<div class="nav">
<ul class="nav-links">
</ul>
</div>
</nav>
<div class="intro-header">
<div class="container">
<div class="tags-heading">
<h1>2016</h1>
</div>
</div>
</div>
</header>
<div id="content">
<div class="container" role="main">
<div class="posts-list">
<article class="post-preview">
<a href="http://blog.shiv.me/2016/12/31/2016-year-end-recap/">
<h2 class="post-title">2016 year-end recap</h2>
</a>
<div class="postmeta">
<span class="meta-post">
<i class="fa fa-calendar-alt"></i>Dec 31, 2016
</span>
</div>
<div class="post-entry">
<p>Don’t smoke (Stay quit!!) : Doing great! There is no desire to smoke. After being a smoker for over a decade, I was very glad to quit, and stay quit. The way I quit this time was quite cliched. I went to Vegas, smoked incessantly for 3 days, and stopped at the end of the trip – cold turkey. Never went back to it, and quite frankly disgusted by the thought of smoking now.</p>
<a href="http://blog.shiv.me/2016/12/31/2016-year-end-recap/" class="post-read-more">Read More</a>
</div>
</article>
<article class="post-preview">
<a href="http://blog.shiv.me/2016/01/31/jan-goal-update/">
<h2 class="post-title">A month flies by</h2>
</a>
<div class="postmeta">
<span class="meta-post">
<i class="fa fa-calendar-alt"></i>Jan 31, 2016
<br><i class="fa fa-folder-open"></i>
<a href="http://blog.shiv.me//categories/goals/">goals</a>
</span>
</div>
<div class="post-entry">
<p>It has not been a great start. It, however, has been a busy one.
Don’t smoke (Stay quit!!) : Going strong! The urge to smoke still surfaces on occasion. I have, however, been able to avoid every time. I must admit that it gets easier, but it always take a bit of an effort.m
Say yes more often: Doing ok. I have caught myself a couple of times. Still needs work</p>
<a href="http://blog.shiv.me/2016/01/31/jan-goal-update/" class="post-read-more">Read More</a>
</div>
</article>
<article class="post-preview">
<a href="http://blog.shiv.me/2016/01/05/goals-for-2016/">
<h2 class="post-title">Goals for 2016</h2>
</a>
<div class="postmeta">
<span class="meta-post">
<i class="fa fa-calendar-alt"></i>Jan 5, 2016
<br><i class="fa fa-folder-open"></i>
<a href="http://blog.shiv.me//categories/goals/">goals</a>
</span>
</div>
<div class="post-entry">
</div>
</article>
</div>
</div>
</div><footer>
<div class="container">
<p class="credits copyright">
<p class="credits theme-by">
Powered By <a href="https://gohugo.io">Hugo</a> / Theme <a href="https://github.com/7ma7X/HugoTeX">HugoTeX</a>
<br>
<a href="http://blog.shiv.me/about">Shiva Velmurugan</a>
©
2016
</p>
</div>
</footer></body>
</html>
| shiva/shiva.github.io | tags/2016/index.html | HTML | mit | 3,709 |
<p>
planet-show works!
</p>
| sheplu/LiveDemo | ORSYS/basicdemo/src/app/planet/planet-show/planet-show.component.html | HTML | mit | 30 |
<!DOCTYPE html><html>
<head>
<meta name="fb:app_id" content="177460312388993" >
<meta name="og:url" content="http://www.melbournefringe.com.au/fringe-festival/browse/soul-bank" >
<meta name="og:title" content="Melbourne Fringe | Soul Bank" >
<meta name="og:description" content="A free variety showcase/shit fight/slapdash comedy party co-hosted by sketch and stand up legends Alasdair Tremblay-Birchall and Pat Burtscher (Soul Bank). Featuring an excellent lineup of Melbourne Fringe's weirdest comedians, clowns and characters doing some of the stupidest things they can..." >
<meta name="og:image" content="http://www.melbournefringe.com.au/thumbnails/228x95/53.jpg" >
<meta name="description" content="A free variety showcase/shit fight/slapdash comedy party co-hosted by sketch and stand up legends Alasdair Tremblay-Birchall and Pat Burtscher (Soul Bank). Featuring an excellent lineup of Melbourne Fringe's weirdest comedians, clowns and characters doing some of the stupidest things they can..." >
<meta name="keywords" content="Melbourne Fringe, Melbourne, 2013, cabaret, circus, comedy, dance, movement, film, music, performance, special events, spoken words, visual arts." >
<meta name="author" content="Monkii New Media http://www.monkii.com" >
<title>Fringe Festival | Soul Bank | Melbourne Fringe</title>
<link href="http://www.melbournefringe.com.au/js/shadowbox/shadowbox_version1373257135.css" media="screen" rel="stylesheet" type="text/css" >
<link href="http://www.melbournefringe.com.au/js/jquery/colorbox/colorbox_version1373257133.css" media="screen" rel="stylesheet" type="text/css" >
<link href="http://www.melbournefringe.com.au/rss/news/" rel="alternate" type="application/rss+xml" title="Melbourne Fringe News" >
<link href="http://www.melbournefringe.com.au/css/main_version1376466332.css" media="screen" rel="stylesheet" type="text/css" >
<!--[if lt IE 7]> <link href="http://www.melbournefringe.com.au/css/ie6_version1373257235.css" media="" rel="stylesheet" type="text/css" ><![endif]-->
<!--[if IE]> <link href="http://www.melbournefringe.com.au/css/ie_version1373257237.css" media="" rel="stylesheet" type="text/css" ><![endif]-->
<link href="http://www.melbournefringe.com.au/favicon.ico" rel="icon" >
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript">
//<!--
jQuery.noConflict(); //-->
</script>
<script type="text/javascript">
//<!--
var BASE = "http://www.melbournefringe.com.au/"; //-->
</script>
<script type="text/javascript" src="http://www.melbournefringe.com.au/js/monkii/monkii_version1375430315.js"></script>
<script type="text/javascript">
//<!--
if(typeof setBase == 'function') setBase('http://www.melbournefringe.com.au/'); //-->
</script>
<script type="text/javascript">
//<!--
var p="http",d="static";if(document.location.protocol=="https:"){p+="s";d="engine";}var z=document.createElement("script");z.type="text/javascript";z.async=true;z.src=p+"://"+d+".adzerk.net/ados.js";var s=document.getElementsByTagName("script")[0];s.parentNode.insertBefore(z,s); //-->
</script>
<script type="text/javascript">
//<!--
var ados = ados || {};
ados.run = ados.run || [];
ados.run.push(function() {
ados_add_placement(3420, 18018, "azk1", 210).setZone(46304);
ados_add_placement(3420, 18018, "azk2", 210).setZone(46304);
ados_add_placement(3420, 18018, "azk3", 210).setZone(46304);
ados_load();
}); //-->
</script>
<script type="text/javascript" src="http://www.melbournefringe.com.au/js/jquery/jquery.bxSlider.min_version1373257133.js"></script>
<script type="text/javascript" src="http://use.typekit.net/ghk7huc.js"></script>
<script type="text/javascript">
//<!--
try{Typekit.load();}catch(e){} //-->
</script>
<script type="text/javascript" src="http://www.melbournefringe.com.au/js/jquery/colorbox/jquery.colorbox.js"></script>
<script type="text/javascript" src="http://www.melbournefringe.com.au/js/common_version1375422729.js"></script>
<script type="text/javascript" src="http://www.melbournefringe.com.au/js/shadowbox/shadowbox_version1373257135.js"></script>
<script type="text/javascript">
//<!--
(function(d){
var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
if (d.getElementById(id)) {return;}
js = d.createElement('script'); js.id = id; js.async = true;
js.src = "//connect.facebook.net/en_US/all.js";
ref.parentNode.insertBefore(js, ref);
}(document));
window.fbAsyncInit = function() {
FB.init({
appId : 177460312388993, // App ID
channelUrl : 'http://www.melbournefringe.com.au/channel.html',
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true // parse XFBML
});
FB.Event.subscribe('auth.login', function () {
window.location = 'http://www.melbournefringe.com.au/auth/login?forward=%2Ffringe-festival%2Fshow%2Fsoul-bank%2F';
});
}; //-->
</script>
<script type="text/javascript">
//<!--
Shadowbox.init(); //-->
</script>
</head>
<body class="page-show"><div id="fb-root"></div><div id="topbg">
<div id="playlist-add-alert">Successfully added</div>
<a href="http://www.melbournefringe.com.au/itinerary/view" id="itinerary-link">My Itinerary<span class='number'>0</span></a>
<div id="bottombg">
<div id="header">
<div class="inner">
<ul id="menu">
<li class="levelhome itemhome">
<a href="http://www.melbournefringe.com.au/">Home</a>
</li>
<li class="level0 item0 active active0">
<a href="http://www.melbournefringe.com.au/fringe-festival" rel="0"><span>Festival</span></a>
<ul>
<li class="level1 ">
<a href="http://www.melbournefringe.com.au/fringe-festival">Browse 2013 Program</a>
</li>
<li class="level1 ">
<a href="http://www.melbournefringe.com.au/fringe-festival/the-fringe-hub">@ the Fringe Hub</a>
</li>
<li class="level1 ">
<a href="http://www.melbournefringe.com.au/fringe-festival/the-fringe-club">@ the Fringe Club</a>
</li>
<li class="level1 ">
<a href="http://www.melbournefringe.com.au/fringe-festival/digital-creatures">Digital Creatures</a>
</li>
<li class="level1 ">
<a href="http://www.melbournefringe.com.au/fringe-festival/digital-gardens">Digital Gardens</a>
</li>
<li class="level1 ">
<a href="http://fringefurniture.melbournefringe.com.au/">Fringe Furniture</a>
</li>
<li class="level1 last">
<a href="http://www.melbournefringe.com.au/fringe-festival/2013-award-winners">2013 Award Winners</a>
</li>
</ul>
</li>
<li class="level0 item1 ">
<a href="http://www.melbournefringe.com.au/visitor-info" rel="1"><span>Visitor info</span></a>
<ul>
<li class="level1 ">
<a href="http://www.melbournefringe.com.au/visitor-info/how-to-book-tickets">How to book tickets</a>
</li>
<li class="level1 ">
<a href="http://www.melbournefringe.com.au/visitor-info/accessibility">Accessibility</a>
</li>
<li class="level1 last">
<a href="http://www.melbournefringe.com.au/visitor-info/faqs">FAQs</a>
</li>
</ul>
</li>
<li class="level0 item2 ">
<a href="http://www.melbournefringe.com.au/for-artists" rel="2"><span>For artists</span></a>
<ul>
<li class="level1 ">
<a href="http://www.melbournefringe.com.au/for-artists/how-to-take-part">How To Take Part</a>
</li>
<li class="level1 ">
<a href="http://www.melbournefringe.com.au/for-artists/artist-development-1">Artist Development</a>
</li>
<li class="level1 ">
<a href="http://www.melbournefringe.com.au/for-artists/artist-resources">Artist Resources</a>
</li>
<li class="level1 ">
<a href="http://www.melbournefringe.com.au/for-artists/tour-ready">Tour Ready</a>
</li>
<li class="level1 ">
<a href="http://www.melbournefringe.com.au/for-artists/producer-mentorship-program">Producer Mentorship Program</a>
</li>
<li class="level1 last">
<a href="http://www.melbournefringe.com.au/for-artists/awards">Awards</a>
</li>
</ul>
</li>
<li class="level0 item3 ">
<a href="http://www.melbournefringe.com.au/fringe-festival/gallery" rel="3"><span>Festival Buzz</span></a>
<ul>
<li class="level1 ">
<a href="http://www.melbournefringe.com.au/fringe-festival/gallery">Galleries</a>
</li>
<li class="level1 ">
<a href="http://www.melbournefringe.com.au/gallery/videos">Videos</a>
</li>
<li class="level1 ">
<a href="http://www.melbournefringe.com.au/gallery/melbourne-fringe-on-tour">Melbourne Fringe On Tour</a>
</li>
<li class="level1 last">
<a href="http://www.melbournefringe.com.au/news-and-media/media-releases">Media Releases</a>
</li>
</ul>
</li>
<li class="level0 item4 ">
<a href="http://www.melbournefringe.com.au/about-us" rel="4"><span>About us</span></a>
<ul>
<li class="level1 ">
<a href="http://www.melbournefringe.com.au/about-us/about-melbourne-fringe">About Melbourne Fringe</a>
</li>
<li class="level1 ">
<a href="http://www.melbournefringe.com.au/about-us/staff-and-board">Staff and Board</a>
</li>
<li class="level1 ">
<a href="http://www.melbournefringe.com.au/about-us/jobs">Jobs</a>
</li>
<li class="level1 last">
<a href="http://www.melbournefringe.com.au/general/contact-us">Contact Us</a>
</li>
</ul>
</li>
<li class="level0 item5 ">
<a href="http://www.melbournefringe.com.au/supporters" rel="5"><span>Supporters</span></a>
<ul>
<li class="level1 ">
<a href="http://www.melbournefringe.com.au/supporters/partners">Partners</a>
</li>
<li class="level1 ">
<a href="http://www.melbournefringe.com.au/supporters/membership">Membership</a>
</li>
<li class="level1 ">
<a href="http://www.melbournefringe.com.au/supporters/becoming-a-partner">Becoming A Partner</a>
</li>
<li class="level1 ">
<a href="http://www.melbournefringe.com.au/supporters/private-giving">Private Giving</a>
</li>
<li class="level1 last">
<a href="http://www.melbournefringe.com.au/supporters/volunteers">Volunteers</a>
</li>
</ul>
</li>
</ul>
<div class="nav-cart">
<a href="http://tix.melbournefringe.com.au/cartView.asp">Cart</a>
</div>
<div class='admin notlogged'>
<a href="http://www.melbournefringe.com.au/auth/login?forward=%2Ffringe-festival%2Fshow%2Fsoul-bank%2F" class="login">Login</a>
<!--
<span class="separator"></span>
<a href="http://tix.melbournefringe.com.au/cartView.asp" class="my-tickets">My Tickets</a>
-->
</div>
<div class="clr"></div>
</div>
<img id="itinerary-link-image-preloader" alt='hidden preloader' style="display:none;"/>
</div>
<div id="wrapper">
<div id="messages">
</div>
<div class="clr"></div>
<div id="logo-wrap">
<a href="http://www.melbournefringe.com.au/" id="logo-fringe" class="home cleartext">Melbourne Fringe Festival 2013</a>
<span id="hdg-festival-dates">18 September to 6 October 2013</span>
</div>
<div id="columns">
<div id="fatleft" class="content">
<div class="blocks">
<div class="block">
<div class="show">
<div id="feature-panel">
<h1><span>Soul Bank</span></h1>
<div class="label">
with Birchall and Burtscher and Very Special Guests </div>
<div class="img-wrap">
<img src="http://www.melbournefringe.com.au/thumbnails/show/720/53.jpg" width="720" height="300" alt="Soul Bank" />
</div>
</div>
<div class="innercols">
<div class="innerleft show-details">
<h4 class="label-center" style="position:relative;">September/October<span id="ticketLdr" style="position:absolute; height:32px; width:32px; left:184px; top:-14px;"></span></h4>
<table cellpadding="0" cellspacing="0" width="100%" class="calendar borderbottom">
<thead>
<tr>
<th class="weekend">S</th>
<th class="weekday">M</th>
<th class="weekday">T</th>
<th class="weekday">W</th>
<th class="weekday">T</th>
<th class="weekday">F</th>
<th class="weekend">S</th>
</tr>
</thead>
<tbody>
<tr class="even">
<td> </td>
<td> </td>
<td> </td>
<td><span class="calendar-day festival-date">18</span>
</td>
<td><span class="calendar-day festival-date show-active">19</span>
</td>
<td><span class="calendar-day festival-date show-active">20</span>
</td>
<td><span class="calendar-day festival-date show-active">21</span>
</td>
</tr><tr class="odd">
<td><span class="calendar-day festival-date">22</span>
</td>
<td><span class="calendar-day festival-date">23</span>
</td>
<td><span class="calendar-day festival-date">24</span>
</td>
<td><span class="calendar-day festival-date">25</span>
</td>
<td><span class="calendar-day festival-date show-active">26</span>
</td>
<td><span class="calendar-day festival-date show-active">27</span>
</td>
<td><span class="calendar-day festival-date show-active">28</span>
</td>
</tr><tr class="even">
<td><span class="calendar-day festival-date">29</span>
</td>
<td><span class="calendar-day festival-date">30</span>
</td>
<td><span class="calendar-day festival-date">1</span>
</td>
<td><span class="calendar-day festival-date">2</span>
</td>
<td><span class="calendar-day festival-date show-active">3</span>
</td>
<td><span class="calendar-day festival-date show-active">4</span>
</td>
<td><span class="calendar-day festival-date show-active">5</span>
</td>
</tr><tr class="odd">
<td><span class="calendar-day festival-date">6</span>
</td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr> </tbody>
<tfoot>
<tr>
<td colspan="3" class="cal-soldout"><span></span>Sold out</td>
<td colspan="4" class="cal-cancelled"><span></span>Cancelled</td>
</tr>
</tfoot>
</table>
<h4>Time</h4>
<p>9.30pm (60min)</p>
<h4>Tickets</h4>
<p>This show is free</p>
<div class="show-collapsable" style='display:none;'>
<h4>Venue</h4>
<h5>The Tuxedo Cat - The Puffer Fish B</h5>
<p>17 - 23 Wills St<br />Melbourne</p>
<p>
<a class='location-link cBoxElement ajax shadowbox' href="http://www.melbournefringe.com.au/venue/map/the-tuxedo-cat-the-puffer-fish-b/?modal=true"
rel="shadowbox;height=500;width=600">Location Map</a>
</p>
<p>
<img src="http://www.melbournefringe.com.au/img/icon-drink.gif" alt="Drinks Available" /> </p>
<h4>Transport</h4>
<p>Flagstaff Station</p>
<p>Tram: 24, 30, 35<br />Stop: 4</p>
<h4>Category</h4>
<p>Comedy</p>
</div>
<a href="#" class="show-collapsable-toggle"><span></span>Show location info</a>
</div>
<div class="innerright">
<div class="category-location">
<div class="category-bubble">
<div class='bubble'>
<span class='comedy'></span>
</div>
<a href="http://www.melbournefringe.com.au/fringe-festival/browse/comedy">
Comedy </a>
</div>
<div class="venue-bubbles">
<div class="venue-bubble">
<div class="bubble"></div>
<p><a href="http://www.melbournefringe.com.au/venue/map/the-tuxedo-cat-the-puffer-fish-b/?modal=true"
rel="shadowbox;height=500;width=600">The Tuxedo Cat - The Puffer Fish B</a> </p>
</div>
</div>
</div>
<div class="showinfo">
<p>A free variety showcase/shit fight/slapdash comedy party co-hosted by sketch and stand up legends Alasdair Tremblay-Birchall and Pat Burtscher (<em>Soul Bank</em>). Featuring an excellent lineup of Melbourne Fringe's weirdest comedians, clowns and characters doing some of the stupidest things they can think of, <em>Soul Bank</em>'s late night variety show is high-risk, low-cost and medium-excellent. No two nights are the same!</p>
<p><strong>Hosted by</strong> Alasdair Tremblay-Birchall and Pat Burtscher</p>
<div class='show-social-media'>
<div class="fb-like" data-send="false" data-layout="button_count" data-width="60" data-show-faces="false"></div>
<a href="https://twitter.com/share" class="twitter-share-button" data-count="none">Tweet</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
</div>
</div>
</div>
<div class="clr"> </div>
</div>
</div>
<div class="full-width">
<div class="fatrow recommendations"><h2><span>People going to this show are also seeing...</span></h2>
<div class="fatcols suggestions">
<div class="fatrow">
<div class="fatcol">
<div class="imagewrap">
<a href="http://www.melbournefringe.com.au/fringe-festival/show/sitcom-theme-song-singalong-and-trivia/" class="image">
<img src="http://www.melbournefringe.com.au/thumbnails/show/228x95/240.jpg" alt="Image of Sitcom Theme Song Singalong (and Trivia)" width="228" height="95" />
</a>
<div class="categoryHanger cleartext comedy">18th September</div>
</div>
<div class='suggestion-mask' data-href="http://www.melbournefringe.com.au/fringe-festival/show/sitcom-theme-song-singalong-and-trivia/" style="display:none;">
<a href="http://www.melbournefringe.com.au/fringe-festival/show/sitcom-theme-song-singalong-and-trivia/" class='mask'></a>
<span class='title'>Add To Playlist</span>
<a class='plus ajax cboxElement show-dialog-actions' href="http://www.melbournefringe.com.au/itinerary/modal/?sid=240&format=html"></a>
</div>
<h4><a href="http://www.melbournefringe.com.au/fringe-festival/show/sitcom-theme-song-singalong-and-trivia/">Sitcom Theme Song Singalong (and Trivia)</a></h4>
<h5>Sitcom Theme Songs! And Trivia about that!</h5>
</div>
<div class="fatcol">
<div class="imagewrap">
<a href="http://www.melbournefringe.com.au/fringe-festival/show/break-battle-and-roll/" class="image">
<img src="http://www.melbournefringe.com.au/thumbnails/show/228x95/312.jpg" alt="Image of Break, Battle and Roll" width="228" height="95" />
</a>
<div class="categoryHanger cleartext specialevents">26th September</div>
</div>
<div class='suggestion-mask' data-href="http://www.melbournefringe.com.au/fringe-festival/show/break-battle-and-roll/" style="display:none;">
<a href="http://www.melbournefringe.com.au/fringe-festival/show/break-battle-and-roll/" class='mask'></a>
<span class='title'>Add To Playlist</span>
<a class='plus ajax cboxElement show-dialog-actions' href="http://www.melbournefringe.com.au/itinerary/modal/?sid=312&format=html"></a>
</div>
<h4><a href="http://www.melbournefringe.com.au/fringe-festival/show/break-battle-and-roll/">Break, Battle and Roll</a></h4>
</div>
<div class="fatcol fatender">
<div class="imagewrap">
<a href="http://www.melbournefringe.com.au/fringe-festival/show/suitcase-rummage/" class="image">
<img src="http://www.melbournefringe.com.au/thumbnails/show/228x95/462.jpg" alt="Image of Suitcase Rummage" width="228" height="95" />
</a>
<div class="categoryHanger cleartext specialevents">29th September</div>
</div>
<div class='suggestion-mask' data-href="http://www.melbournefringe.com.au/fringe-festival/show/suitcase-rummage/" style="display:none;">
<a href="http://www.melbournefringe.com.au/fringe-festival/show/suitcase-rummage/" class='mask'></a>
<span class='title'>Add To Playlist</span>
<a class='plus ajax cboxElement show-dialog-actions' href="http://www.melbournefringe.com.au/itinerary/modal/?sid=462&format=html"></a>
</div>
<h4><a href="http://www.melbournefringe.com.au/fringe-festival/show/suitcase-rummage/">Suitcase Rummage</a></h4>
<h5>Sales from your suitcase!</h5>
</div>
<div class="clr"></div></div>
</div>
</div><div class="fatrow recommendations recommend-genre"><h2><span>You might also enjoy</span></h2>
<div class="fatcols suggestions">
<div class="fatrow">
<div class="fatcol">
<div class="imagewrap">
<a href="http://www.melbournefringe.com.au/fringe-festival/show/helene-murray-and-a-bunch-of-comedy-characters/" class="image">
<img src="http://www.melbournefringe.com.au/thumbnails/show/228x95/281.jpg" alt="Image of Helene Murray and A Bunch of Comedy Characters" width="228" height="95" />
</a>
<div class="categoryHanger cleartext comedy">Comedy</div>
</div>
<div class='suggestion-mask' data-href="http://www.melbournefringe.com.au/fringe-festival/show/helene-murray-and-a-bunch-of-comedy-characters/" style="display:none;">
<a href="http://www.melbournefringe.com.au/fringe-festival/show/helene-murray-and-a-bunch-of-comedy-characters/" class='mask'></a>
<span class='title'>Add To Playlist</span>
<a class='plus ajax cboxElement show-dialog-actions' href="http://www.melbournefringe.com.au/itinerary/modal/?sid=281&format=html"></a>
</div>
<h4><a href="http://www.melbournefringe.com.au/fringe-festival/show/helene-murray-and-a-bunch-of-comedy-characters/">Helene Murray and A Bunch of Comedy Characters</a></h4>
<h5>A different kind of Q&A!</h5>
</div>
<div class="fatcol">
<div class="imagewrap">
<a href="http://www.melbournefringe.com.au/fringe-festival/show/khaled-kalafalla-encore/" class="image">
<img src="http://www.melbournefringe.com.au/thumbnails/show/228x95/463.jpg" alt="Image of Khaled Kalafalla: Encore" width="228" height="95" />
</a>
<div class="categoryHanger cleartext comedy">Comedy</div>
</div>
<div class='suggestion-mask' data-href="http://www.melbournefringe.com.au/fringe-festival/show/khaled-kalafalla-encore/" style="display:none;">
<a href="http://www.melbournefringe.com.au/fringe-festival/show/khaled-kalafalla-encore/" class='mask'></a>
<span class='title'>Add To Playlist</span>
<a class='plus ajax cboxElement show-dialog-actions' href="http://www.melbournefringe.com.au/itinerary/modal/?sid=463&format=html"></a>
</div>
<h4><a href="http://www.melbournefringe.com.au/fringe-festival/show/khaled-kalafalla-encore/">Khaled Kalafalla: Encore</a></h4>
</div>
<div class="fatcol fatender">
<div class="imagewrap">
<a href="http://www.melbournefringe.com.au/fringe-festival/show/raiders-of-the-temple-of-doom-s-last-crusade/" class="image">
<img src="http://www.melbournefringe.com.au/thumbnails/show/228x95/160.jpg" alt="Image of Raiders of the Temple of Doom's Last Crusade" width="228" height="95" />
</a>
<div class="categoryHanger cleartext comedy">Comedy</div>
</div>
<div class='suggestion-mask' data-href="http://www.melbournefringe.com.au/fringe-festival/show/raiders-of-the-temple-of-doom-s-last-crusade/" style="display:none;">
<a href="http://www.melbournefringe.com.au/fringe-festival/show/raiders-of-the-temple-of-doom-s-last-crusade/" class='mask'></a>
<span class='title'>Add To Playlist</span>
<a class='plus ajax cboxElement show-dialog-actions' href="http://www.melbournefringe.com.au/itinerary/modal/?sid=160&format=html"></a>
</div>
<h4><a href="http://www.melbournefringe.com.au/fringe-festival/show/raiders-of-the-temple-of-doom-s-last-crusade/">Raiders of the Temple of Doom's Last Crusade</a></h4>
<h5>1 man performs 3 Indiana Jones movies in 1 hour</h5>
</div>
<div class="clr"></div></div>
<div class="fatrow">
<div class="fatcol">
<div class="imagewrap">
<a href="http://www.melbournefringe.com.au/fringe-festival/show/nob-happy-sock/" class="image">
<img src="http://www.melbournefringe.com.au/thumbnails/show/228x95/197.jpg" alt="Image of Nob Happy Sock" width="228" height="95" />
</a>
<div class="categoryHanger cleartext comedy">Comedy</div>
</div>
<div class='suggestion-mask' data-href="http://www.melbournefringe.com.au/fringe-festival/show/nob-happy-sock/" style="display:none;">
<a href="http://www.melbournefringe.com.au/fringe-festival/show/nob-happy-sock/" class='mask'></a>
<span class='title'>Add To Playlist</span>
<a class='plus ajax cboxElement show-dialog-actions' href="http://www.melbournefringe.com.au/itinerary/modal/?sid=197&format=html"></a>
</div>
<h4><a href="http://www.melbournefringe.com.au/fringe-festival/show/nob-happy-sock/">Nob Happy Sock</a></h4>
<h5>A comedy about life, death, and fridge magnets.</h5>
</div>
<div class="fatcol">
<div class="imagewrap">
<a href="http://www.melbournefringe.com.au/fringe-festival/show/we-ll-always-have-paris/" class="image">
<img src="http://www.melbournefringe.com.au/thumbnails/show/228x95/210.jpg" alt="Image of We'll Always Have Paris" width="228" height="95" />
</a>
<div class="categoryHanger cleartext comedy">Comedy</div>
</div>
<div class='suggestion-mask' data-href="http://www.melbournefringe.com.au/fringe-festival/show/we-ll-always-have-paris/" style="display:none;">
<a href="http://www.melbournefringe.com.au/fringe-festival/show/we-ll-always-have-paris/" class='mask'></a>
<span class='title'>Add To Playlist</span>
<a class='plus ajax cboxElement show-dialog-actions' href="http://www.melbournefringe.com.au/itinerary/modal/?sid=210&format=html"></a>
</div>
<h4><a href="http://www.melbournefringe.com.au/fringe-festival/show/we-ll-always-have-paris/">We'll Always Have Paris</a></h4>
<h5>A pastiche of Parisian history on the banks of the Yarra</h5>
</div>
<div class="fatcol fatender">
<div class="imagewrap">
<a href="http://www.melbournefringe.com.au/fringe-festival/show/string-theory/" class="image">
<img src="http://www.melbournefringe.com.au/thumbnails/show/228x95/364.jpg" alt="Image of String Theory" width="228" height="95" />
</a>
<div class="categoryHanger cleartext comedy">Comedy</div>
</div>
<div class='suggestion-mask' data-href="http://www.melbournefringe.com.au/fringe-festival/show/string-theory/" style="display:none;">
<a href="http://www.melbournefringe.com.au/fringe-festival/show/string-theory/" class='mask'></a>
<span class='title'>Add To Playlist</span>
<a class='plus ajax cboxElement show-dialog-actions' href="http://www.melbournefringe.com.au/itinerary/modal/?sid=364&format=html"></a>
</div>
<h4><a href="http://www.melbournefringe.com.au/fringe-festival/show/string-theory/">String Theory</a></h4>
<h5>Some things are connected (by bits of string)</h5>
</div>
<div class="clr"></div></div>
</div>
</div><div class="fatrow recommendations recommend-venue"><h2><span>More shows in this area</span></h2>
<div class="fatcols suggestions">
<div class="fatrow">
<div class="fatcol">
<div class="imagewrap">
<a href="http://www.melbournefringe.com.au/fringe-festival/show/safety-first/" class="image">
<img src="http://www.melbournefringe.com.au/thumbnails/show/228x95/76.jpg" alt="Image of Safety First" width="228" height="95" />
</a>
<div class="categoryHanger cleartext comedy">Comedy</div>
</div>
<div class='suggestion-mask' data-href="http://www.melbournefringe.com.au/fringe-festival/show/safety-first/" style="display:none;">
<a href="http://www.melbournefringe.com.au/fringe-festival/show/safety-first/" class='mask'></a>
<span class='title'>Add To Playlist</span>
<a class='plus ajax cboxElement show-dialog-actions' href="http://www.melbournefringe.com.au/itinerary/modal/?sid=76&format=html"></a>
</div>
<h4><a href="http://www.melbournefringe.com.au/fringe-festival/show/safety-first/">Safety First</a></h4>
<h5>A parody of work place training.</h5>
</div>
<div class="fatcol">
<div class="imagewrap">
<a href="http://www.melbournefringe.com.au/fringe-festival/show/here-comes-your-man/" class="image">
<img src="http://www.melbournefringe.com.au/thumbnails/show/228x95/206.jpg" alt="Image of Here Comes Your Man" width="228" height="95" />
</a>
<div class="categoryHanger cleartext cabaret">Cabaret</div>
</div>
<div class='suggestion-mask' data-href="http://www.melbournefringe.com.au/fringe-festival/show/here-comes-your-man/" style="display:none;">
<a href="http://www.melbournefringe.com.au/fringe-festival/show/here-comes-your-man/" class='mask'></a>
<span class='title'>Add To Playlist</span>
<a class='plus ajax cboxElement show-dialog-actions' href="http://www.melbournefringe.com.au/itinerary/modal/?sid=206&format=html"></a>
</div>
<h4><a href="http://www.melbournefringe.com.au/fringe-festival/show/here-comes-your-man/">Here Comes Your Man</a></h4>
<h5>A Cabaret for the Contract Killer</h5>
</div>
<div class="clr"></div></div>
</div>
</div> </div>
</div>
<div class="clr"> </div>
</div>
</div>
<div id="right" class="narrow">
<div class="blocks social-media">
<ul class="social">
<li class="facebook">
<a class="cleartext fill" target="_blank" title="Fringe on Facebook" href="http://www.facebook.com/pages/Melbourne-Fringe/86253631372?ref=ts">Facebook</a>
</li>
<li class="twitter">
<a class="cleartext fill" target="_blank" title="Fringe on Twitter" href="http://twitter.com/melbournefringe/">Twitter</a>
</li>
<li class="youtube">
<a class="cleartext fill" target="_blank" title="Fringe on YouTube" href="https://www.youtube.com/user/MelbFringeFestival">YouTube</a>
</li>
<li class="instagram">
<a class="cleartext fill" target="_blank" title="Fringe on Instagram" href="http://instagram.com/melbfringe/">Instagram</a>
</li>
<li class="pintrest">
<a class="cleartext fill" target="_blank" title="Fringe on Pintrest" href="http://pinterest.com/melbfringe/">Pintrest</a>
</li>
</ul>
</div>
<div class="blocks sidebar">
<div class="box-round box box-grey how-to-book-box">
<h1 class='headline how-to-book cleartext'>How to book</h1>
<div id="add-to-itin-panel">
<a href="http://www.melbournefringe.com.au/itinerary/modal/?sid=53&format=html" class='ajax cboxElement show-dialog-actions button primary' id="add-to-playlist">Add to Playlist</a>
<ul class="ticks">
<li>Build your itinerary</li>
<li>Share with your friends</li>
</ul>
</div>
<div class="separator"><span>or</span></div>
<a href="http://www.melbournefringe.com.au/ajax/book-show?sid=53&format=html" id='buy-tickets' class="ajax cboxElement show-dialog-actions button primary orange">Buy tickets now</a>
</div>
<div id='facebook-widget' class="box">
<div class="inner">
<div class="no-fb">
<p>Find out which shows<br/>your friends are seeing:</p>
<a href="http://www.melbournefringe.com.au/auth/login?forward=%2F" class="facebook-login cleartext">Login with Facebook</a>
</div>
</div>
</div>
<div id="ad-holder" class="box">
<h3>Ads</h3>
<div class="adzerk-wrap">
<div id="azk1"></div>
</div>
<div class="adzerk-wrap">
<div id="azk2"></div>
</div>
<div class="adzerk-wrap">
<div id="azk3"></div>
</div>
</div>
</div>
</div>
<div class="clr"> </div>
</div>
</div>
<div id="footer">
<div class="inner">
<div class="cta">
<div class="slice slice1">
<a href="http://www.melbournefringe.com.au/" title="Home" class="logo cleartext">Melbourne Fringe Festival 2013</a>
</div>
<div class="slice slice2">
<div class="content">
<h3>Be the first in the know</h3>
<p>Sign up to the festival eNews</p>
<div class="email-wrapper">
<form method="post" action="http://email.monkii.com/t/r/s/jrhddr/">
<input type="email" class="email-input" name="cm-jrhddr-jrhddr" id="jrhddr-jrhddr" placeholder="Enter email address" />
<input type='submit' class='submit cleartext' value="submit" />
</form>
</div>
</div>
</div>
<div class="slice slice3">
<div class="content">
<h3>Book tickets on your mobile</h3>
<p>Download the Melbourne Fringe App</p>
<ul class="app">
<li class="ios">
<a class="cleartext fill" target="_blank" href="http://itunes.apple.com/au/app/melbourne-fringe-festival/id550920340?mt=8" title="Download">Available on the App Store</a>
</li>
<li class="play">
<a class="cleartext fill" target="_blank" href="https://play.google.com/store/apps/details?id=com.ferve.fringe12" title="Download">Available on the Google Play</a>
</li>
</ul>
</div>
</div>
<div class="slice slice4">
<div class="content">
<h3>Fringe Furniture</h3>
<p>View last year’s showcase</p>
<a class="visit" target="_blank" href="http://fringefurniture.melbournefringe.com.au/" title="Fringe Furniture">Visit the site</a>
</div>
</div>
</div>
<ul id="footermenu">
<li>Copyright © 2013 Melbourne Fringe</li>
<li><a href="http://www.melbournefringe.com.au/terms-and-conditions/">Terms</a></li>
<li><a href="http://www.melbournefringe.com.au/sitemap/">Sitemap</a></li>
<li><a href="http://www.melbournefringe.com.au/contact-us/">Contact Us</a></li>
<li><a href="http://www.melbournefringe.com.au/for-artists/artist-logins">Artist Login</a></li>
<li>Branding by <a href="http://www.sweetdesign.com.au/" rel="external">Sweet Creative</a></li>
<li>Web Development Melbourne - Monkii</li>
<li>Ticketing by <a href="http://www.ferve.com.au/" rel="external">Ferve Tickets</a></li>
</ul>
</div>
</div>
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-958891-4");
pageTracker._trackPageview();
} catch(err) {}</script>
</div>
</div><script type="text/javascript">
//<!--
setTimeout(function(){var a=document.createElement("script");
var b=document.getElementsByTagName("script")[0];
a.src=document.location.protocol+"//dnn506yrbagrg.cloudfront.net/pages/scripts/0013/3291.js?"+Math.floor(new Date().getTime()/3600000);
a.async=true;a.type="text/javascript";b.parentNode.insertBefore(a,b)}, 1); //-->
</script>
</body>
</html>
| thewheat/melbourne-fringe-festival | downloader/source/pages/e28_3.html | HTML | mit | 36,819 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>demos: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.5.2 / demos - 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>
demos
<small>
8.10.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-01-22 05:26:13 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-01-22 05:26:13 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.5.2 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
# opam file:
opam-version: "2.0"
maintainer: "Hugo.Herbelin@inria.fr"
homepage: "https://github.com/coq-contribs/demos"
license: "LGPL 2.1"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/Demos"]
depends: [
"ocaml"
"coq" {>= "8.10" & < "8.11~"}
]
tags: [
"keyword: sorting"
"keyword: Cases"
"keyword: Tauto"
"keyword: AutoRewrite"
"keyword: Prolog"
"category: Miscellaneous/Coq Use Examples"
]
authors: [
"Coq group"
]
bug-reports: "https://github.com/coq-contribs/demos/issues"
dev-repo: "git+https://github.com/coq-contribs/demos.git"
synopsis: "Demos of some Coq tools appeared in version V6.0"
description: """
Example of sorting algorithms defined using the Cases
(pattern-matching) construction. Demo of the decision tactic Tauto for
intuitionistic propositional calculus. Demo of the AutoRewrite tactic. Demo of
the Prolog tactic applied to the compilation of miniML programs."""
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/demos/archive/v8.10.0.tar.gz"
checksum: "md5=c41462e54b6780eada13c3b37ae0bd7f"
}
</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-demos.8.10.0 coq.8.5.2</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.5.2).
The following dependencies couldn't be met:
- coq-demos -> coq >= 8.10 -> ocaml >= 4.05.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-demos.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.03.0-2.0.5/released/8.5.2/demos/8.10.0.html | HTML | mit | 7,070 |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Jasmine Spec Runner v2.4.0</title>
<link rel="shortcut icon" type="image/png" href="lib/jasmine_favicon.png">
<link rel="stylesheet" href="lib/jasmine.css">
<script src="lib/jasmine.js"></script>
<script src="lib/jasmine-html.js"></script>
<script src="lib/boot.js"></script>
<script src="lib/angular.min.js"></script>
<script src="lib/angular-mocks.js"></script>
<!-- include source files here... -->
<script src="app/js/app.js"></script>
<!-- <script src="src/Song.js"></script> -->
<!-- include spec files here... -->
<!-- <script src="spec/SpecHelper.js"></script> -->
<script src="spec/ContactSpec.js"></script>
</head>
<body>
</body>
</html>
| jagjyotsingh/Contact-Manager | SpecRunner.html | HTML | mit | 743 |
<!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_33) on Wed Aug 27 10:22:55 CEST 2014 -->
<TITLE>
PhoneState
</TITLE>
<META NAME="date" CONTENT="2014-08-27">
<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="PhoneState";
}
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<HR>
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/PhoneState.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../com/gsma/android/oneapi/utilsLogo/JsonUtils.html" title="class in com.gsma.android.oneapi.utilsLogo"><B>PREV CLASS</B></A>
<A HREF="../../../../../com/gsma/android/oneapi/utilsLogo/PhoneUtils.html" title="class in com.gsma.android.oneapi.utilsLogo"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../index.html?com/gsma/android/oneapi/utilsLogo/PhoneState.html" target="_top"><B>FRAMES</B></A>
<A HREF="PhoneState.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: NESTED | FIELD | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<!-- ======== START OF CLASS DATA ======== -->
<H2>
<FONT SIZE="-1">
com.gsma.android.oneapi.utilsLogo</FONT>
<BR>
Class PhoneState</H2>
<PRE>
java.lang.Object
<IMG SRC="../../../../../resources/inherit.gif" ALT="extended by "><B>com.gsma.android.oneapi.utilsLogo.PhoneState</B>
</PRE>
<HR>
<DL>
<DT><PRE>public class <B>PhoneState</B><DT>extends java.lang.Object</DL>
</PRE>
<P>
Helper functions for phone state management.
<P>
<P>
<HR>
<P>
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<A NAME="constructor_summary"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Constructor Summary</B></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><B><A HREF="../../../../../com/gsma/android/oneapi/utilsLogo/PhoneState.html#PhoneState(java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, boolean, boolean, boolean, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, int, int)">PhoneState</A></B>(java.lang.String msisdn,
java.lang.String simOperator,
java.lang.String networkOperator,
java.lang.String mcc,
java.lang.String mnc,
boolean connected,
boolean usingMobileData,
boolean roaming,
java.lang.String simSerialNumber,
java.lang.String subscriberId,
java.lang.String deviceId,
java.lang.String simOperatorName,
java.lang.String simCountryIso,
int networkType,
int simState)</CODE>
<BR>
Convert information which can be obtained from the Android OS into
PhoneState information necessary for discovery.</TD>
</TR>
</TABLE>
<!-- ========== METHOD SUMMARY =========== -->
<A NAME="method_summary"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Method Summary</B></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/gsma/android/oneapi/utilsLogo/PhoneState.html#getDeviceId()">getDeviceId</A></B>()</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/gsma/android/oneapi/utilsLogo/PhoneState.html#getMcc()">getMcc</A></B>()</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/gsma/android/oneapi/utilsLogo/PhoneState.html#getMnc()">getMnc</A></B>()</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/gsma/android/oneapi/utilsLogo/PhoneState.html#getMsisdn()">getMsisdn</A></B>()</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/gsma/android/oneapi/utilsLogo/PhoneState.html#getNetworkOperator()">getNetworkOperator</A></B>()</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/gsma/android/oneapi/utilsLogo/PhoneState.html#getNetworkType()">getNetworkType</A></B>()</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/gsma/android/oneapi/utilsLogo/PhoneState.html#getNetworkTypeValue()">getNetworkTypeValue</A></B>()</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/gsma/android/oneapi/utilsLogo/PhoneState.html#getSimCountryIso()">getSimCountryIso</A></B>()</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/gsma/android/oneapi/utilsLogo/PhoneState.html#getSimOperator()">getSimOperator</A></B>()</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/gsma/android/oneapi/utilsLogo/PhoneState.html#getSimOperatorName()">getSimOperatorName</A></B>()</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/gsma/android/oneapi/utilsLogo/PhoneState.html#getSimSerialNumber()">getSimSerialNumber</A></B>()</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/gsma/android/oneapi/utilsLogo/PhoneState.html#getSimState()">getSimState</A></B>()</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/gsma/android/oneapi/utilsLogo/PhoneState.html#getSubscriberId()">getSubscriberId</A></B>()</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/gsma/android/oneapi/utilsLogo/PhoneState.html#isConnected()">isConnected</A></B>()</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/gsma/android/oneapi/utilsLogo/PhoneState.html#isRoaming()">isRoaming</A></B>()</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/gsma/android/oneapi/utilsLogo/PhoneState.html#isUsingMobileData()">isUsingMobileData</A></B>()</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/gsma/android/oneapi/utilsLogo/PhoneState.html#setConnected(boolean)">setConnected</A></B>(boolean connected)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/gsma/android/oneapi/utilsLogo/PhoneState.html#setDeviceId(java.lang.String)">setDeviceId</A></B>(java.lang.String deviceId)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/gsma/android/oneapi/utilsLogo/PhoneState.html#setMcc(java.lang.String)">setMcc</A></B>(java.lang.String mcc)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/gsma/android/oneapi/utilsLogo/PhoneState.html#setMnc(java.lang.String)">setMnc</A></B>(java.lang.String mnc)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/gsma/android/oneapi/utilsLogo/PhoneState.html#setMsisdn(java.lang.String)">setMsisdn</A></B>(java.lang.String msisdn)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/gsma/android/oneapi/utilsLogo/PhoneState.html#setNetworkOperator(java.lang.String)">setNetworkOperator</A></B>(java.lang.String networkOperator)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/gsma/android/oneapi/utilsLogo/PhoneState.html#setNetworkType(int)">setNetworkType</A></B>(int networkType)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/gsma/android/oneapi/utilsLogo/PhoneState.html#setRoaming(boolean)">setRoaming</A></B>(boolean roaming)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/gsma/android/oneapi/utilsLogo/PhoneState.html#setSimCountryIso(java.lang.String)">setSimCountryIso</A></B>(java.lang.String simCountryIso)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/gsma/android/oneapi/utilsLogo/PhoneState.html#setSimOperator(java.lang.String)">setSimOperator</A></B>(java.lang.String simOperator)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/gsma/android/oneapi/utilsLogo/PhoneState.html#setSimOperatorName(java.lang.String)">setSimOperatorName</A></B>(java.lang.String simOperatorName)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/gsma/android/oneapi/utilsLogo/PhoneState.html#setSimSerialNumber(java.lang.String)">setSimSerialNumber</A></B>(java.lang.String simSerialNumber)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/gsma/android/oneapi/utilsLogo/PhoneState.html#setSimState(int)">setSimState</A></B>(int simState)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/gsma/android/oneapi/utilsLogo/PhoneState.html#setSubscriberId(java.lang.String)">setSubscriberId</A></B>(java.lang.String subscriberId)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/gsma/android/oneapi/utilsLogo/PhoneState.html#setUsingMobileData(boolean)">setUsingMobileData</A></B>(boolean usingMobileData)</CODE>
<BR>
</TD>
</TR>
</TABLE>
<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left"><B>Methods inherited from class java.lang.Object</B></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE>equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</CODE></TD>
</TR>
</TABLE>
<P>
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<A NAME="constructor_detail"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
<B>Constructor Detail</B></FONT></TH>
</TR>
</TABLE>
<A NAME="PhoneState(java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, boolean, boolean, boolean, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, int, int)"><!-- --></A><H3>
PhoneState</H3>
<PRE>
public <B>PhoneState</B>(java.lang.String msisdn,
java.lang.String simOperator,
java.lang.String networkOperator,
java.lang.String mcc,
java.lang.String mnc,
boolean connected,
boolean usingMobileData,
boolean roaming,
java.lang.String simSerialNumber,
java.lang.String subscriberId,
java.lang.String deviceId,
java.lang.String simOperatorName,
java.lang.String simCountryIso,
int networkType,
int simState)</PRE>
<DL>
<DD>Convert information which can be obtained from the Android OS into
PhoneState information necessary for discovery.
<P>
<DL>
<DT><B>Parameters:</B><DD><CODE>msisdn</CODE> - <DD><CODE>simOperator</CODE> - <DD><CODE>networkOperator</CODE> - <DD><CODE>mcc</CODE> - <DD><CODE>mnc</CODE> - <DD><CODE>connected</CODE> - <DD><CODE>usingMobileData</CODE> - <DD><CODE>roaming</CODE> - <DD><CODE>simSerialNumber</CODE> - <DD><CODE>subscriberId</CODE> - <DD><CODE>deviceId</CODE> - <DD><CODE>simOperatorName</CODE> - <DD><CODE>simCountryIso</CODE> - <DD><CODE>networkType</CODE> - <DD><CODE>simState</CODE> - </DL>
</DL>
<!-- ============ METHOD DETAIL ========== -->
<A NAME="method_detail"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
<B>Method Detail</B></FONT></TH>
</TR>
</TABLE>
<A NAME="getMsisdn()"><!-- --></A><H3>
getMsisdn</H3>
<PRE>
public java.lang.String <B>getMsisdn</B>()</PRE>
<DL>
<DD><DL>
<DT><B>Returns:</B><DD>String</DL>
</DD>
</DL>
<HR>
<A NAME="setMsisdn(java.lang.String)"><!-- --></A><H3>
setMsisdn</H3>
<PRE>
public void <B>setMsisdn</B>(java.lang.String msisdn)</PRE>
<DL>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>msisdn</CODE> - the msisdn to set</DL>
</DD>
</DL>
<HR>
<A NAME="getSimOperator()"><!-- --></A><H3>
getSimOperator</H3>
<PRE>
public java.lang.String <B>getSimOperator</B>()</PRE>
<DL>
<DD><DL>
<DT><B>Returns:</B><DD>String</DL>
</DD>
</DL>
<HR>
<A NAME="setSimOperator(java.lang.String)"><!-- --></A><H3>
setSimOperator</H3>
<PRE>
public void <B>setSimOperator</B>(java.lang.String simOperator)</PRE>
<DL>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>simOperator</CODE> - the simOperator to set</DL>
</DD>
</DL>
<HR>
<A NAME="getNetworkOperator()"><!-- --></A><H3>
getNetworkOperator</H3>
<PRE>
public java.lang.String <B>getNetworkOperator</B>()</PRE>
<DL>
<DD><DL>
<DT><B>Returns:</B><DD>String</DL>
</DD>
</DL>
<HR>
<A NAME="setNetworkOperator(java.lang.String)"><!-- --></A><H3>
setNetworkOperator</H3>
<PRE>
public void <B>setNetworkOperator</B>(java.lang.String networkOperator)</PRE>
<DL>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>networkOperator</CODE> - the networkOperator to set</DL>
</DD>
</DL>
<HR>
<A NAME="getMcc()"><!-- --></A><H3>
getMcc</H3>
<PRE>
public java.lang.String <B>getMcc</B>()</PRE>
<DL>
<DD><DL>
<DT><B>Returns:</B><DD>String</DL>
</DD>
</DL>
<HR>
<A NAME="setMcc(java.lang.String)"><!-- --></A><H3>
setMcc</H3>
<PRE>
public void <B>setMcc</B>(java.lang.String mcc)</PRE>
<DL>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>mcc</CODE> - the mcc to set</DL>
</DD>
</DL>
<HR>
<A NAME="getMnc()"><!-- --></A><H3>
getMnc</H3>
<PRE>
public java.lang.String <B>getMnc</B>()</PRE>
<DL>
<DD><DL>
<DT><B>Returns:</B><DD>String</DL>
</DD>
</DL>
<HR>
<A NAME="setMnc(java.lang.String)"><!-- --></A><H3>
setMnc</H3>
<PRE>
public void <B>setMnc</B>(java.lang.String mnc)</PRE>
<DL>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>mnc</CODE> - the mnc to set</DL>
</DD>
</DL>
<HR>
<A NAME="isConnected()"><!-- --></A><H3>
isConnected</H3>
<PRE>
public boolean <B>isConnected</B>()</PRE>
<DL>
<DD><DL>
<DT><B>Returns:</B><DD>boolean</DL>
</DD>
</DL>
<HR>
<A NAME="setConnected(boolean)"><!-- --></A><H3>
setConnected</H3>
<PRE>
public void <B>setConnected</B>(boolean connected)</PRE>
<DL>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>connected</CODE> - the connected to set</DL>
</DD>
</DL>
<HR>
<A NAME="isUsingMobileData()"><!-- --></A><H3>
isUsingMobileData</H3>
<PRE>
public boolean <B>isUsingMobileData</B>()</PRE>
<DL>
<DD><DL>
<DT><B>Returns:</B><DD>boolean</DL>
</DD>
</DL>
<HR>
<A NAME="setUsingMobileData(boolean)"><!-- --></A><H3>
setUsingMobileData</H3>
<PRE>
public void <B>setUsingMobileData</B>(boolean usingMobileData)</PRE>
<DL>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>usingMobileData</CODE> - the usingMobileData to set</DL>
</DD>
</DL>
<HR>
<A NAME="isRoaming()"><!-- --></A><H3>
isRoaming</H3>
<PRE>
public boolean <B>isRoaming</B>()</PRE>
<DL>
<DD><DL>
<DT><B>Returns:</B><DD>boolean</DL>
</DD>
</DL>
<HR>
<A NAME="setRoaming(boolean)"><!-- --></A><H3>
setRoaming</H3>
<PRE>
public void <B>setRoaming</B>(boolean roaming)</PRE>
<DL>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>roaming</CODE> - the roaming to set</DL>
</DD>
</DL>
<HR>
<A NAME="getSimSerialNumber()"><!-- --></A><H3>
getSimSerialNumber</H3>
<PRE>
public java.lang.String <B>getSimSerialNumber</B>()</PRE>
<DL>
<DD><DL>
<DT><B>Returns:</B><DD>String</DL>
</DD>
</DL>
<HR>
<A NAME="setSimSerialNumber(java.lang.String)"><!-- --></A><H3>
setSimSerialNumber</H3>
<PRE>
public void <B>setSimSerialNumber</B>(java.lang.String simSerialNumber)</PRE>
<DL>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>simSerialNumber</CODE> - the simSerialNumber to set</DL>
</DD>
</DL>
<HR>
<A NAME="getSubscriberId()"><!-- --></A><H3>
getSubscriberId</H3>
<PRE>
public java.lang.String <B>getSubscriberId</B>()</PRE>
<DL>
<DD><DL>
<DT><B>Returns:</B><DD>String</DL>
</DD>
</DL>
<HR>
<A NAME="setSubscriberId(java.lang.String)"><!-- --></A><H3>
setSubscriberId</H3>
<PRE>
public void <B>setSubscriberId</B>(java.lang.String subscriberId)</PRE>
<DL>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>subscriberId</CODE> - the subscriberId to set</DL>
</DD>
</DL>
<HR>
<A NAME="getDeviceId()"><!-- --></A><H3>
getDeviceId</H3>
<PRE>
public java.lang.String <B>getDeviceId</B>()</PRE>
<DL>
<DD><DL>
<DT><B>Returns:</B><DD>String</DL>
</DD>
</DL>
<HR>
<A NAME="setDeviceId(java.lang.String)"><!-- --></A><H3>
setDeviceId</H3>
<PRE>
public void <B>setDeviceId</B>(java.lang.String deviceId)</PRE>
<DL>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>deviceId</CODE> - the deviceId to set</DL>
</DD>
</DL>
<HR>
<A NAME="getSimOperatorName()"><!-- --></A><H3>
getSimOperatorName</H3>
<PRE>
public java.lang.String <B>getSimOperatorName</B>()</PRE>
<DL>
<DD><DL>
<DT><B>Returns:</B><DD>String</DL>
</DD>
</DL>
<HR>
<A NAME="setSimOperatorName(java.lang.String)"><!-- --></A><H3>
setSimOperatorName</H3>
<PRE>
public void <B>setSimOperatorName</B>(java.lang.String simOperatorName)</PRE>
<DL>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>simOperatorName</CODE> - the simOperatorName to set</DL>
</DD>
</DL>
<HR>
<A NAME="getSimCountryIso()"><!-- --></A><H3>
getSimCountryIso</H3>
<PRE>
public java.lang.String <B>getSimCountryIso</B>()</PRE>
<DL>
<DD><DL>
<DT><B>Returns:</B><DD>String</DL>
</DD>
</DL>
<HR>
<A NAME="setSimCountryIso(java.lang.String)"><!-- --></A><H3>
setSimCountryIso</H3>
<PRE>
public void <B>setSimCountryIso</B>(java.lang.String simCountryIso)</PRE>
<DL>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>simCountryIso</CODE> - the simCountryIso to set</DL>
</DD>
</DL>
<HR>
<A NAME="getNetworkType()"><!-- --></A><H3>
getNetworkType</H3>
<PRE>
public int <B>getNetworkType</B>()</PRE>
<DL>
<DD><DL>
<DT><B>Returns:</B><DD>int</DL>
</DD>
</DL>
<HR>
<A NAME="getNetworkTypeValue()"><!-- --></A><H3>
getNetworkTypeValue</H3>
<PRE>
public java.lang.String <B>getNetworkTypeValue</B>()</PRE>
<DL>
<DD><DL>
<DT><B>Returns:</B><DD>String</DL>
</DD>
</DL>
<HR>
<A NAME="setNetworkType(int)"><!-- --></A><H3>
setNetworkType</H3>
<PRE>
public void <B>setNetworkType</B>(int networkType)</PRE>
<DL>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>networkType</CODE> - the networkType to set</DL>
</DD>
</DL>
<HR>
<A NAME="getSimState()"><!-- --></A><H3>
getSimState</H3>
<PRE>
public int <B>getSimState</B>()</PRE>
<DL>
<DD><DL>
<DT><B>Returns:</B><DD>int</DL>
</DD>
</DL>
<HR>
<A NAME="setSimState(int)"><!-- --></A><H3>
setSimState</H3>
<PRE>
public void <B>setSimState</B>(int simState)</PRE>
<DL>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>simState</CODE> - the simState to set</DL>
</DD>
</DL>
<!-- ========= END OF CLASS DATA ========= -->
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/PhoneState.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../com/gsma/android/oneapi/utilsLogo/JsonUtils.html" title="class in com.gsma.android.oneapi.utilsLogo"><B>PREV CLASS</B></A>
<A HREF="../../../../../com/gsma/android/oneapi/utilsLogo/PhoneUtils.html" title="class in com.gsma.android.oneapi.utilsLogo"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../index.html?com/gsma/android/oneapi/utilsLogo/PhoneState.html" target="_top"><B>FRAMES</B></A>
<A HREF="PhoneState.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: NESTED | FIELD | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
</BODY>
</HTML>
| GSMADeveloper/MobileConnectSDKTestApp | SDKdoc/doc.oneapi.logo/com/gsma/android/oneapi/utilsLogo/PhoneState.html | HTML | mit | 30,644 |
{% extends "base.html" %}
{% import "bootstrap/wtf.html" as wtf %}
{% import "_macros.html" as macros %}
{% block title %}Flasky{% endblock %}
{% block page_content %}
<div class="page-header">
<h1>你好, {% if current_user.is_authenticated %}{{ current_user.username }}{% else %}陌生人{% endif %}!</h1>
</div>
<div>
{% if current_user.can(Permission.WRITE_ARTICLES) %}
{{ wtf.quick_form(form) }}
{% endif %}
</div>
<div class="post-tabs">
<ul class="nav nav-tabs">
<li{% if not show_followed %} class="active"{% endif %}><a href="{{ url_for('.show_all') }}">All</a></li>
{% if current_user.is_authenticated %}
<li{% if show_followed %} class="active"{% endif %}><a href="{{ url_for('.show_followed') }}">Followers</a></li>
{% endif %}
</ul>
{% include '_posts.html' %}
</div>
{% if pagination %}
<div class="pagination">
{{ macros.pagination_widget(pagination, '.index') }}
</div>
{% endif %}
{% endblock %}
{% block scripts %}
{{ super() }}
{{ pagedown.include_pagedown() }}
{% endblock %}
| ShawnPengxy/Flask-madeBlog | app/templates/index.html | HTML | mit | 1,063 |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="format-detection" content="telephone=no">
<title>发现(市值管理方案定制)</title>
<meta name="description" content="">
<meta name="keywords" content="">
<link href="css/communal.css" rel="stylesheet">
<script src="js/communal.js"></script>
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<header>
<div class="login-header">
<i class="iconfont">
<a href="found.html"></a>
</i>
<div class="login-choose">市值管理方案定制</div>
</div>
</header>
<article class="management-matter">
<div class="management-stocks"><b>市值管理方案定制</b></div>
<div class="management-appear">根据上市公司及股东的特殊需求,量体裁衣进行市值管理方案定制。</div>
<div class="underweight-block clearfix">
<div class="underweight-img fl">
<a href="quiz.html?str=management">
<img src="img/9.png" alt="">
</a>
</div>
<div class="underweight-imgs fl">
<a href="service.html?str=management">
<img src="img/10.png" alt="">
</a>
</div>
</div>
</article>
</body>
</html> | jinrong-team/jinrong | financialAPP/management.html | HTML | mit | 1,663 |
---
title: Colors
---
<style>
.white-color {
background-color: black;
}
</style>
{{#each colors}}
<h2 class="{{this}}-color">.{{this}}-color</h2>
{{/each}}
| joshmedeski/foundation-sites-extended | panini/pages/color.html | HTML | mit | 163 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.9.1"/>
<title>utf8rewind: Modules</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<script type="text/javascript">
$(document).ready(function() { init_search(); });
</script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td style="padding-left: 0.5em;">
<div id="projectname">utf8rewind
 <span id="projectnumber">1.3.0</span>
</div>
<div id="projectbrief">System library for processing UTF-8 encoded text</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.9.1 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "search",false,'Search');
</script>
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Overview</span></a></li>
<li><a href="utf8rewind_8h.html"><span>Interface</span></a></li>
<li><a href="examples.html"><span>Examples</span></a></li>
<li class="current"><a href="modules.html"><span>Modules</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
<li>
<div id="MSearchBox" class="MSearchBoxInactive">
<span class="left">
<img id="MSearchSelect" src="search/mag_sel.png"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
<input type="text" id="MSearchField" value="Search" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
</span><span class="right">
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
</span>
</div>
</li>
</ul>
</div>
</div><!-- top -->
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div class="header">
<div class="headertitle">
<div class="title">Modules</div> </div>
</div><!--header-->
<div class="contents">
<div class="textblock">Here is a list of all modules:</div><div class="directory">
<table class="directory">
<tr id="row_0_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><a class="el" href="group__version.html" target="_self">Version information</a></td><td class="desc"></td></tr>
</table>
</div><!-- directory -->
</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.9.1
</small></address>
</body>
</html>
| tkelman/utf8rewind | documentation/html/modules.html | HTML | mit | 3,996 |
<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> ㄒ|<sup class="subfont">ˋ</sup></td></tr>
<tr><th class="ztd1"><b>漢語拼音 </b></th><td class="ztd2"><font class="english_word">féng chǎng yóu xì</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%22CW0000000933%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%22CW0000000933%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%22CW0000000933%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> ㄒ|<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">féng chǎng zuò xì</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/4000-4999/4882-34.html | HTML | mit | 2,349 |
<table width="90%" border="0"><tr><td><script>function openfile(url) {fullwin = window.open(url, "fulltext", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes");}</script><div class="flayoutclass"><div class="flayoutclass_first"><table class="tableoutfmt2"><tr><th class="std1"><b>條目 </b></th><td class="std2">窮大失居</td></tr>
<tr><th class="std1"><b>注音 </b></th><td class="std2">ㄑㄩㄥ<sup class="subfont">ˊ</sup> ㄉㄚ<sup class="subfont">ˋ</sup> ㄕ ㄐㄩ</td></tr>
<tr><th class="std1"><b>漢語拼音 </b></th><td class="std2"><font class="english_word">qióng dà shī jū</font></td></tr>
<tr><th class="std1"><b>釋義 </b></th><td class="std2">居大位者容易因驕矜而失其所居之處。語本易經˙序卦:<img src=/cydic/dicword/fa40.gif border=0 alt=* class=fontimg valign=center>窮大者必失其居,故受之以旅;旅而無所容,故受之以巽。<img src=/cydic/dicword/fa41.gif border=0 alt=* class=fontimg valign=center>後用來指多而不適用之意。清˙魏源˙國朝古文類鈔敘:<img src=/cydic/dicword/fa40.gif border=0 alt=* class=fontimg valign=center>誠能以昭代之典章文字讀六經,而又能以六經讀昭代之典章文字,其于是編也,又何窮大失居之有?<img src=/cydic/dicword/fa41.gif border=0 alt=* class=fontimg valign=center></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/22000-22999/22537-22.html | HTML | mit | 1,704 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>higman-nw: 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 / higman-nw - 8.5.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
higman-nw
<small>
8.5.0
<span class="label label-info">Not compatible</span>
</small>
</h1>
<p><em><script>document.write(moment("2020-03-11 05:33:27 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2020-03-11 05:33:27 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.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: "matej.kosik@inria.fr"
homepage: "https://github.com/coq-contribs/higman-nw"
license: "LGPL 2"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/HigmanNW"]
depends: [
"ocaml"
"coq" {>= "8.5" & < "8.6~"}
]
tags: [ "keyword:a translation" "keyword:higman's lemma" "keyword:impredicativity" "keyword:system f" "keyword:extraction" "category:Mathematics/Combinatorics and Graph Theory" "category:Miscellaneous/Extracted Programs/Combinatorics" ]
authors: [ "Hugo Herbelin <>" ]
bug-reports: "https://github.com/coq-contribs/higman-nw/issues"
dev-repo: "git+https://github.com/coq-contribs/higman-nw.git"
synopsis: "A program from an A-translated impredicative proof of Higman's Lemma"
description: """
The file Higman.v formalizes an A-translated version of
Nash-Williams impredicative and classical proof of Higman's lemma
for a two-letter alphabet.
A constructive and impredicative program can be extracted from the proof."""
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/higman-nw/archive/v8.5.0.tar.gz"
checksum: "md5=9929b301e66933897c31c515a03a5c8f"
}
</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-higman-nw.8.5.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-higman-nw -> coq < 8.6~ -> ocaml < 4.06.0
base of this switch (use `--unlock-base' to force)
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-higman-nw.8.5.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.1/higman-nw/8.5.0.html | HTML | mit | 7,150 |
<div id="rankingsContent">
<div class="page-header">
<h2>GCA Rankings</h2>
</div>
<div id="rankingsList" data-ng-controller="rankingCtrl">
<div class="row">
<div data-sb-table
data-table-name="rankings"
data-model-service="rankingService"
data-message-empty="No rankings found"
data-column-info="columnInfo"
data-export-info="exportInfo"
data-search-fields="searchInfo"
data-per-page="100"
data-sort-field="rank"
data-sort-direction="asc">
</div>
</div>
</div>
</div> | link1900/Agra-Ranker | client/views/rankings.html | HTML | mit | 684 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>descente-infinie: 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.2 / descente-infinie - 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>
descente-infinie
<small>
8.8.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2021-11-22 00:16:09 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-11-22 00:16:09 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.2 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
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/descente-infinie"
license: "GPL"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/DescenteInfinie"]
depends: [
"ocaml"
"coq" {>= "8.8" & < "8.9~"}
]
tags: [
"keyword: Induction"
"keyword: infinite descent"
"category: Miscellaneous/Coq Extensions"
"date: 2010-02"
]
authors: [ "Razvan Voicu <razvan@comp.nus.edu.sg> [http://www.comp.nus.edu.sg/~razvan/]" "Li Mengran <limengra@comp.nus.edu.sg> [http://www.comp.nus.edu.sg/~limengra]" ]
bug-reports: "https://github.com/coq-contribs/descente-infinie/issues"
dev-repo: "git+https://github.com/coq-contribs/descente-infinie.git"
synopsis: "The Descente Infinie Tactic"
description:
"This is a tactic plugin for coq. The tactic helps to prove inductive lemmas by fixpoint functions. A manual for the tactic can be found on its homepage listed above."
flags: light-uninstall
url {
src:
"https://github.com/coq-contribs/descente-infinie/archive/v8.8.0.tar.gz"
checksum: "md5=1fe00330839cf3e5ce6d1fff3d00e6ed"
}
</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-descente-infinie.8.8.0 coq.8.13.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.13.2).
The following dependencies couldn't be met:
- coq-descente-infinie -> 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-descente-infinie.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.13.2/descente-infinie/8.8.0.html | HTML | mit | 7,295 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.