path stringlengths 5 312 | repo_name stringlengths 5 116 | content stringlengths 2 1.04M |
|---|---|---|
index.html | bowser0000/keepyourcoins | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Keep Your Coins!</title>
<link rel="stylesheet" href="stylesheets/style.css">
<script src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
<script src="scripts/chance.js"></script>
<script src="scripts/game.js"></script>
<script src="scripts/controller.js"></script>
</head>
<body></body>
</html>
|
addons/ewei_shopv2/plugin/sns/template/web/category/index.html | Broomspun/shanque | {template '_header'}
<div class="page-heading">
<span class='pull-right'>
{ifp 'sns.category.add'}
<a class="btn btn-primary btn-sm" href="{php echo webUrl('sns/category/add')}">添加新分类</a>
{/if}
</span>
<h2>版块分类</h2>
</div>
{if count($list)>0}
<form action="" method="post">
<table class="table table-hover table-responsive">
<thead class="navbar-inner">
<tr>
<th style="width:50px;">ID</th>
<th style='width:80px'>显示顺序</th>
<th>标题</th>
<th>状态</th>
<th >操作</th>
</tr>
</thead>
<tbody id="sort">
{loop $list $row}
<tr>
<td>{$row['id']}</td>
<td>
{ifp 'sns.category.edit'}
<a href='javascript:;' data-toggle='ajaxEdit' data-href="{php echo webUrl('sns/category/displayorder',array('id'=>$row['id']))}" >{$row['displayorder']}</a>
{else}
{$row['displayorder']}
{/if}
</td>
<td><img src='{php echo tomedia($row['thumb'])}' style='width:30px;height:30px;padding:1px;border:1px solid #ccc' /> {$row['name']}</td>
<td>
<span class='label {if $row['enabled']==1}label-success{else}label-default{/if}'
{ifp 'sns.category.edit'}
data-toggle='ajaxSwitch'
data-switch-value='{$row['enabled']}'
data-switch-value0='0|隐藏|label label-default|{php echo webUrl('sns/category/enabled',array('enabled'=>1,'id'=>$row['id']))}'
data-switch-value1='1|显示|label label-success|{php echo webUrl('sns/category/enabled',array('enabled'=>0,'id'=>$row['id']))}'
{/if}
>
{if $row['enabled']==1}显示{else}隐藏{/if}</span>
</td>
<td style="text-align:left;">
{ifp 'sns.category.view|sns.category.edit'}
<a href="{php echo webUrl('sns/category/edit', array('id' => $row['id']))}" class="btn btn-default btn-sm" title="{ifp 'sns.category.edit'}修改{else}查看{/if}">
<i class="fa fa-edit"></i> {ifp 'sns.category.edit'}修改{else}查看{/if}
</a>
{/if}
{ifp 'sns.category.delete'}
<a data-toggle='ajaxRemove' href="{php echo webUrl('sns/category/delete', array('id' => $row['id']))}"class="btn btn-default btn-sm" data-confirm="确认删除此分类?" title="删除"><i class="fa fa-trash"></i> 删除</a>
{/if}
</td>
</tr>
{/loop}
</tbody>
</table>
{$pager}
{else}
<div class='panel panel-default'>
<div class='panel-body' style='text-align: center;padding:30px;'>
暂时没有任何版块分类
</div>
{/if}
</form>
{template '_footer'}
|
src/css/_modals.css | tangrams/tangram-play | /* MODALS */
.modal {
display: block; /* Default display mode */
width: 400px;
padding: 30px;
font-family: var(--font-family);
font-weight: 200;
font-size: 1rem;
text-align: center;
color: var(--ui-component-text-color);
background-color: var(--ui-base-color);
box-shadow: var(--ui-modal-shadow), var(--ui-emboss-shadow);
z-index: var(--z01-modal);
pointer-events: auto;
border: 1px solid var(--ui-border-color);
border-radius: 2px;
}
/*
For error modals we want the message to be user-selectable so it can be
copy-pasted elsewhere.
*/
.modal:not(.error-modal) {
user-select: none;
cursor: default;
}
.modal-alt {
text-align: left;
.modal-buttons {
justify-content: flex-end;
}
}
.modal-text {
display: inline-block;
margin: 0;
padding: 0;
line-height: 1.4;
a {
text-decoration: underline;
}
}
.modal-content {
margin-top: 20px;
}
/* used in save-to modals */
.modal-content p {
margin-top: 1em;
}
.modal-well {
border: var(--ui-border);
box-shadow: var(--ui-well-shadow);
}
.modal-buttons {
width: 100%;
margin-top: 24px;
display: flex;
flex-flow: row nowrap;
justify-content: center;
}
.loading-spinner {
margin-right: 30px;
line-height: 40px;
color: var(--ui-subtext-color);
opacity: 0;
visibility: hidden;
&.loading-spinner-on {
opacity: 1;
visibility: visible;
}
.bt-spinner {
margin-right: 0.25em;
}
}
.open-url-modal {
width: 600px;
}
.modal-about-text {
margin-left: 40px;
margin-right: 40px;
p {
font-size: 12px;
margin-top: 16px;
margin-bottom: 0;
/* Reset text selection state so that text is copy-pastable */
user-select: auto;
cursor: auto;
}
}
.save-to-cloud-modal {
width: 600px;
}
.save-to-cloud-success-modal {
/* Overrides for this modal.
TODO: Consider refactoring modal so we don't need any of this */
/* Inputs */
.saved-scene-copy-btn {
margin-left: 2px;
width: 40px;
height: 34px;
}
}
.save-existing-to-cloud-modal {
width: 500px;
/* re-using this CSS from OpenFromCloudModal */
.open-scene-option {
padding: 0;
cursor: auto;
user-select: auto;
}
.open-scene-option:hover {
background-color: transparent;
}
}
.modal {
position: relative;
}
|
201601react/卞功磊/public/test.html | zhufengreact/homework | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
区别新产出index
</body>
</html> |
client/components/styles/style.css | CrewBuilder/crew-builder | /* APPLICATION */
@mixin clearfix() {
&::after {
display: block;
content: "";
clear: both;
}
}
html {
position: relative;
min-height: 100%;
background-color: #f6f8f8;
min-width: 320px;
}
body {
margin-bottom: 30px;
}
.outlineBox {
-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
background-color: #fff;
}
.cover-background {
background-color: #fff;
}
.footer {
position: absolute;
bottom: 0;
width: 100%;
height: 30px;
line-height: 30px;
border-top: 1px solid #d8d8d8;
background-color: #f8f8f8;
text-align: center;
}
/* FADE TRANSITION */
.fadeIn-container {
-webkit-animation: fadein .4s ease-in 1 forwards;
animation: fadein .4s ease-in 1 forwards;
opacity: 0;
}
.component-container {
background-color: #f6f8f8;
}
@-webkit-keyframes fadein {
to {
opacity: 1;
}
}
@keyframes fadein {
to {
opacity: 1;
}
}
/* LANDING PAGE */
.landing-container {
background: #21A4DA;
background: -webkit-linear-gradient(left top, #21A4DA, #E6F4F7);
background: -o-linear-gradient(bottom right, #21A4DA, #E6F4F7);
background: -webkit-gradient(linear, left top, right bottom, from(#21A4DA), to(#E6F4F7));
background: -webkit-linear-gradient(top left, #21A4DA, #E6F4F7);
background: -o-linear-gradient(top left, #21A4DA, #E6F4F7);
background: linear-gradient(to bottom right, #21A4DA, #E6F4F7);
border: none;
}
.vertical-center {
text-align: center;
}
.jumbotron {
margin-bottom: 0;
border-bottom: 1px solid #d8d8d8;
}
.jumbotron-heading {
color: #222;
}
.carousel-container {
overflow: hidden;
}
.carousel-container>div{
background-color: #f6f8f8;
}
.carousel-img {
margin: 0 auto;
height: 400px;
background-color: #f6f8f8;
-webkit-filter: brightness(50%);
filter: brightness(50%);
}
.carousel-inner>.item>img {
height: 400px;
}
.caption-landing {
height: 85%;
}
.caption-text {
color: #E6F4F7;
letter-spacing: 2px;
font-weight: 700;
text-align: center;
padding: 30px;
margin-left: 20%;
margin-right: 20%;
background-color: rgba(0, 0, 0, 0.7);
}
/* NAVBAR */
.navbar-logo {
width: 120px;
}
#dropdown {
padding: 10px 0 0 15px;
}
.dropdown-menu {
border-right: 5px solid #f9f9f9;
}
.dropdown-menu>li>a {
color: #222;
padding-right: 25px;
text-align: right;
}
.dropdown-menu>li>a:hover {
background-color: #f9f9f9;
}
.navbar-browse-button {
margin-left: 10px;
padding-left: 10px;
padding-right: 10px;
}
.navigation {
@include clearfix;
}
/* DASHBOARD */
.dashboard-container {
@include clearfix;
min-height: 500px;
}
.col-lg-9 {
padding-left: 0;
padding-right: 0;
}
/* SIDEBAR */
.sidebar-container {
@include clearfix;
min-height: 500px;
}
.sidebar-heading {
padding: 15px 15px 15px 10px;
margin: 0;
background-color: #eeeeee;
font-weight: 700;
color: #595959;
border-bottom: 5px solid #e7e7e7;
}
.sidebar-empty-crews-msg {
padding: 15px 15px 15px 10px;
}
.nav>li>a:hover {
background: #f9f9f9;
}
/* SEARCH RESULTS */
.image-shadow {
-webkit-box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
-webkit-transition: all 0.3s cubic-bezier(.25,.8,.25,1);
-o-transition: all 0.3s cubic-bezier(.25,.8,.25,1);
transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}
.image-shadow:hover {
-webkit-box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}
.media, .media-body {
overflow: visible;
}
.search-crew-list {
margin-bottom: 15px;
}
.hr-break {
margin-left: 25%;
margin-right: 25%;
border-width: 3px;
}
.pagination {
margin: 5px 0;
}
.search-results-heading {
color: #8e8e8e;
}
/* CREATE CREW */
.create-crew-form {
padding: 15px;
}
.create-crew-description {
min-height: 200px;
}
/* SOCIAL MEDIA */
.social-button-container {
display:-webkit-box;
display:-ms-flexbox;
display:flex;
-webkit-box-orient:horizontal;
-webkit-box-direction:normal;
-ms-flex-direction:row;
flex-direction:row;
}
.social-button {
@include clearfix;
padding-left: 5px;
}
.social-share-button:hover:not(:active) {
opacity: 0.75;
}
/* CREW */
.crew-image {
max-width: 200px;
}
.panel-heading {
padding: 1px 1px;
}
.panel-title a {
padding: 10px 15px;
display: inline-block;
text-decoration: none;
cursor: pointer;
width: 100%;
}
.panel-title a:hover {
background-color: #dcdcdc;
}
.small-list-item-text {
color: #9a9a9a;
}
.task-status-labels {
margin-left: 10px;
display: inline-block;
}
.alert-leave-crew {
text-align: center;
}
/* MEMBER REQUESTS */
.member-request-text {
display: inline-block;
padding-left: 10px;
}
.member-request-confirm-buttons {
display: inline-block;
}
/* DASHBOARD INSTRUCTIONS */
.instructions-container {
margin-top: 50px;
}
.instructions-img-title {
width: 100%;
}
.instructions-text {
color: #222;
font-weight: 700;
text-shadow: 1px 1px #fff;
}
/* SCREEN RESPONSIVENESS */
@media (max-width: 918px) {
.crew-image {
max-width: 150px;
}
li.list-group-item {
text-align: center;
}
.member-request-text {
padding-left: 0;
}
}
@media (max-width: 768px) {
.vertical-center:before {
display: none;
}
.carousel-inner>.item>img {
height: 360px;
}
.caption-text {
margin-left: 10%;
margin-right: 10%;
}
.navbar-search-form {
padding-bottom: 10px;
}
.col-lg-9 {
padding-left: 15px;
padding-right: 15px;
}
.container-fluid {
padding-left: 0;
padding-right: 0;
}
.dashboard-container {
min-height: 200px;
padding-left: 0;
padding-right: 0;
}
.sidebar-container {
min-height: 50px;
width: 100%;
}
.search-results-heading {
text-align: center;
}
.crew-image {
max-width: 150px;
}
}
@media (max-width: 440px) {
.caption-text {
margin-left: 1%;
margin-right: 1%;
}
.crew-image {
max-width: 100px;
}
}
|
html/fileio.html | dreal-deps/ezoptionparser | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title></title>
<meta http-equiv="content-type" content="text/html; charset=latin1">
<style type="text/css">
td.linenos { background-color: #f0f0f0; padding-right: 10px; }
span.lineno { background-color: #f0f0f0; padding: 0 5px 0 5px; }
pre { line-height: 125%; }
body .hll { background-color: #ffffcc }
body { background: #f0f3f3; }
body .c { color: #0099FF; font-style: italic } /* Comment */
body .err { color: #AA0000; background-color: #FFAAAA } /* Error */
body .k { color: #006699; font-weight: bold } /* Keyword */
body .o { color: #555555 } /* Operator */
body .cm { color: #0099FF; font-style: italic } /* Comment.Multiline */
body .cp { color: #009999 } /* Comment.Preproc */
body .c1 { color: #0099FF; font-style: italic } /* Comment.Single */
body .cs { color: #0099FF; font-weight: bold; font-style: italic } /* Comment.Special */
body .gd { background-color: #FFCCCC; border: 1px solid #CC0000 } /* Generic.Deleted */
body .ge { font-style: italic } /* Generic.Emph */
body .gr { color: #FF0000 } /* Generic.Error */
body .gh { color: #003300; font-weight: bold } /* Generic.Heading */
body .gi { background-color: #CCFFCC; border: 1px solid #00CC00 } /* Generic.Inserted */
body .go { color: #AAAAAA } /* Generic.Output */
body .gp { color: #000099; font-weight: bold } /* Generic.Prompt */
body .gs { font-weight: bold } /* Generic.Strong */
body .gu { color: #003300; font-weight: bold } /* Generic.Subheading */
body .gt { color: #99CC66 } /* Generic.Traceback */
body .kc { color: #006699; font-weight: bold } /* Keyword.Constant */
body .kd { color: #006699; font-weight: bold } /* Keyword.Declaration */
body .kn { color: #006699; font-weight: bold } /* Keyword.Namespace */
body .kp { color: #006699 } /* Keyword.Pseudo */
body .kr { color: #006699; font-weight: bold } /* Keyword.Reserved */
body .kt { color: #007788; font-weight: bold } /* Keyword.Type */
body .m { color: #FF6600 } /* Literal.Number */
body .s { color: #CC3300 } /* Literal.String */
body .na { color: #330099 } /* Name.Attribute */
body .nb { color: #336666 } /* Name.Builtin */
body .nc { color: #00AA88; font-weight: bold } /* Name.Class */
body .no { color: #336600 } /* Name.Constant */
body .nd { color: #9999FF } /* Name.Decorator */
body .ni { color: #999999; font-weight: bold } /* Name.Entity */
body .ne { color: #CC0000; font-weight: bold } /* Name.Exception */
body .nf { color: #CC00FF } /* Name.Function */
body .nl { color: #9999FF } /* Name.Label */
body .nn { color: #00CCFF; font-weight: bold } /* Name.Namespace */
body .nt { color: #330099; font-weight: bold } /* Name.Tag */
body .nv { color: #003333 } /* Name.Variable */
body .ow { color: #000000; font-weight: bold } /* Operator.Word */
body .w { color: #bbbbbb } /* Text.Whitespace */
body .mf { color: #FF6600 } /* Literal.Number.Float */
body .mh { color: #FF6600 } /* Literal.Number.Hex */
body .mi { color: #FF6600 } /* Literal.Number.Integer */
body .mo { color: #FF6600 } /* Literal.Number.Oct */
body .sb { color: #CC3300 } /* Literal.String.Backtick */
body .sc { color: #CC3300 } /* Literal.String.Char */
body .sd { color: #CC3300; font-style: italic } /* Literal.String.Doc */
body .s2 { color: #CC3300 } /* Literal.String.Double */
body .se { color: #CC3300; font-weight: bold } /* Literal.String.Escape */
body .sh { color: #CC3300 } /* Literal.String.Heredoc */
body .si { color: #AA0000 } /* Literal.String.Interpol */
body .sx { color: #CC3300 } /* Literal.String.Other */
body .sr { color: #33AAAA } /* Literal.String.Regex */
body .s1 { color: #CC3300 } /* Literal.String.Single */
body .ss { color: #FFCC33 } /* Literal.String.Symbol */
body .bp { color: #336666 } /* Name.Builtin.Pseudo */
body .vc { color: #003333 } /* Name.Variable.Class */
body .vg { color: #003333 } /* Name.Variable.Global */
body .vi { color: #003333 } /* Name.Variable.Instance */
body .il { color: #FF6600 } /* Literal.Number.Integer.Long */
</style>
</head>
<body>
<h2></h2>
<table class="highlighttable"><tr><td class="linenos"><div class="linenodiv"><pre> 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101</pre></div></td><td class="code"><div class="highlight"><pre><span class="cm">/*</span>
<span class="cm">20110505 rsz Created.</span>
<span class="cm">*/</span>
<span class="cp">#include <stdio.h></span>
<span class="cp">#include "ezOptionParser.hpp"</span>
<span class="k">using</span> <span class="k">namespace</span> <span class="n">ez</span><span class="p">;</span>
<span class="kt">int</span> <span class="nf">main</span><span class="p">(</span><span class="kt">int</span> <span class="n">argc</span><span class="p">,</span> <span class="k">const</span> <span class="kt">char</span> <span class="o">*</span> <span class="n">argv</span><span class="p">[])</span> <span class="p">{</span>
<span class="n">ezOptionParser</span> <span class="n">opt</span><span class="p">;</span>
<span class="n">opt</span><span class="p">.</span><span class="n">overview</span> <span class="o">=</span> <span class="s">"Demo of file import and export."</span><span class="p">;</span>
<span class="n">opt</span><span class="p">.</span><span class="n">syntax</span> <span class="o">=</span> <span class="s">"fileio [OPTIONS]"</span><span class="p">;</span>
<span class="n">opt</span><span class="p">.</span><span class="n">example</span> <span class="o">=</span> <span class="s">"fileio -i in1.txt -i in2.txt -o out.txt</span><span class="se">\n\n</span><span class="s">"</span><span class="p">;</span>
<span class="n">opt</span><span class="p">.</span><span class="n">add</span><span class="p">(</span>
<span class="s">""</span><span class="p">,</span> <span class="c1">// Default.</span>
<span class="mi">0</span><span class="p">,</span> <span class="c1">// Required?</span>
<span class="mi">0</span><span class="p">,</span> <span class="c1">// Number of args expected.</span>
<span class="mi">0</span><span class="p">,</span> <span class="c1">// Delimiter if expecting multiple args.</span>
<span class="s">"Print this usage message."</span><span class="p">,</span> <span class="c1">// Help description.</span>
<span class="s">"-h"</span><span class="p">,</span> <span class="c1">// Flag token. </span>
<span class="s">"-help"</span><span class="p">,</span> <span class="c1">// Flag token.</span>
<span class="s">"--help"</span><span class="p">,</span> <span class="c1">// Flag token.</span>
<span class="s">"--usage"</span> <span class="c1">// Flag token.</span>
<span class="p">);</span>
<span class="n">opt</span><span class="p">.</span><span class="n">add</span><span class="p">(</span>
<span class="s">""</span><span class="p">,</span> <span class="c1">// Default.</span>
<span class="mi">0</span><span class="p">,</span> <span class="c1">// Required?</span>
<span class="mi">1</span><span class="p">,</span> <span class="c1">// Number of args expected.</span>
<span class="mi">0</span><span class="p">,</span> <span class="c1">// Delimiter if expecting multiple args.</span>
<span class="s">"Test string input."</span><span class="p">,</span> <span class="c1">// Help description.</span>
<span class="s">"-s"</span><span class="p">,</span> <span class="c1">// Flag token. </span>
<span class="s">"-str"</span><span class="p">,</span> <span class="c1">// Flag token.</span>
<span class="s">"--string"</span> <span class="c1">// Flag token.</span>
<span class="p">);</span>
<span class="n">opt</span><span class="p">.</span><span class="n">add</span><span class="p">(</span>
<span class="s">"in.txt"</span><span class="p">,</span> <span class="c1">// Default.</span>
<span class="mi">0</span><span class="p">,</span> <span class="c1">// Required?</span>
<span class="mi">1</span><span class="p">,</span> <span class="c1">// Number of args expected.</span>
<span class="mi">0</span><span class="p">,</span> <span class="c1">// Delimiter if expecting multiple args.</span>
<span class="s">"File to import arguments."</span><span class="p">,</span> <span class="c1">// Help description.</span>
<span class="s">"-i"</span><span class="p">,</span> <span class="c1">// Flag token. </span>
<span class="s">"--import"</span> <span class="c1">// Flag token.</span>
<span class="p">);</span>
<span class="n">opt</span><span class="p">.</span><span class="n">add</span><span class="p">(</span>
<span class="s">"out.txt"</span><span class="p">,</span> <span class="c1">// Default.</span>
<span class="mi">0</span><span class="p">,</span> <span class="c1">// Required?</span>
<span class="mi">1</span><span class="p">,</span> <span class="c1">// Number of args expected.</span>
<span class="mi">0</span><span class="p">,</span> <span class="c1">// Delimiter if expecting multiple args.</span>
<span class="s">"File to export arguments."</span><span class="p">,</span> <span class="c1">// Help description.</span>
<span class="s">"-o"</span><span class="p">,</span> <span class="c1">// Flag token. </span>
<span class="s">"--export"</span> <span class="c1">// Flag token.</span>
<span class="p">);</span>
<span class="n">opt</span><span class="p">.</span><span class="n">parse</span><span class="p">(</span><span class="n">argc</span><span class="p">,</span> <span class="n">argv</span><span class="p">);</span>
<span class="n">std</span><span class="o">::</span><span class="n">string</span> <span class="n">usage</span><span class="p">;</span>
<span class="n">std</span><span class="o">::</span><span class="n">vector</span><span class="o"><</span><span class="n">std</span><span class="o">::</span><span class="n">string</span><span class="o">></span> <span class="n">badOptions</span><span class="p">;</span>
<span class="k">if</span><span class="p">(</span><span class="o">!</span><span class="n">opt</span><span class="p">.</span><span class="n">gotExpected</span><span class="p">(</span><span class="n">badOptions</span><span class="p">))</span> <span class="p">{</span>
<span class="k">for</span><span class="p">(</span><span class="kt">int</span> <span class="n">i</span><span class="o">=</span><span class="mi">0</span><span class="p">;</span> <span class="n">i</span> <span class="o"><</span> <span class="n">badOptions</span><span class="p">.</span><span class="n">size</span><span class="p">();</span> <span class="o">++</span><span class="n">i</span><span class="p">)</span>
<span class="n">std</span><span class="o">::</span><span class="n">cerr</span> <span class="o"><<</span> <span class="s">"ERROR: Got unexpected number of arguments for option "</span> <span class="o"><<</span> <span class="n">badOptions</span><span class="p">[</span><span class="n">i</span><span class="p">]</span> <span class="o"><<</span> <span class="s">".</span><span class="se">\n\n</span><span class="s">"</span><span class="p">;</span>
<span class="n">opt</span><span class="p">.</span><span class="n">getUsage</span><span class="p">(</span><span class="n">usage</span><span class="p">);</span>
<span class="n">std</span><span class="o">::</span><span class="n">cout</span> <span class="o"><<</span> <span class="n">usage</span><span class="p">;</span>
<span class="k">return</span> <span class="mi">1</span><span class="p">;</span>
<span class="p">}</span>
<span class="k">if</span> <span class="p">(</span><span class="n">opt</span><span class="p">.</span><span class="n">isSet</span><span class="p">(</span><span class="s">"-h"</span><span class="p">))</span> <span class="p">{</span>
<span class="n">opt</span><span class="p">.</span><span class="n">getUsage</span><span class="p">(</span><span class="n">usage</span><span class="p">);</span>
<span class="n">std</span><span class="o">::</span><span class="n">cout</span> <span class="o"><<</span> <span class="n">usage</span><span class="p">;</span>
<span class="k">return</span> <span class="mi">1</span><span class="p">;</span>
<span class="p">}</span>
<span class="k">if</span> <span class="p">(</span><span class="n">opt</span><span class="p">.</span><span class="n">isSet</span><span class="p">(</span><span class="s">"-i"</span><span class="p">))</span> <span class="p">{</span>
<span class="c1">// Import one or more files that use # as comment char.</span>
<span class="n">std</span><span class="o">::</span><span class="n">vector</span><span class="o"><</span> <span class="n">std</span><span class="o">::</span><span class="n">vector</span><span class="o"><</span><span class="n">std</span><span class="o">::</span><span class="n">string</span><span class="o">></span> <span class="o">></span> <span class="n">files</span><span class="p">;</span>
<span class="n">opt</span><span class="p">.</span><span class="n">get</span><span class="p">(</span><span class="s">"-i"</span><span class="p">)</span><span class="o">-></span><span class="n">getMultiStrings</span><span class="p">(</span><span class="n">files</span><span class="p">);</span>
<span class="k">for</span><span class="p">(</span><span class="kt">int</span> <span class="n">j</span><span class="o">=</span><span class="mi">0</span><span class="p">;</span> <span class="n">j</span> <span class="o"><</span> <span class="n">files</span><span class="p">.</span><span class="n">size</span><span class="p">();</span> <span class="o">++</span><span class="n">j</span><span class="p">)</span>
<span class="k">if</span> <span class="p">(</span><span class="o">!</span> <span class="n">opt</span><span class="p">.</span><span class="n">importFile</span><span class="p">(</span><span class="n">files</span><span class="p">[</span><span class="n">j</span><span class="p">][</span><span class="mi">0</span><span class="p">].</span><span class="n">c_str</span><span class="p">(),</span> <span class="sc">'#'</span><span class="p">))</span>
<span class="n">std</span><span class="o">::</span><span class="n">cerr</span> <span class="o"><<</span> <span class="s">"ERROR: Failed to open file "</span> <span class="o"><<</span> <span class="n">files</span><span class="p">[</span><span class="n">j</span><span class="p">][</span><span class="mi">0</span><span class="p">]</span> <span class="o"><<</span> <span class="n">std</span><span class="o">::</span><span class="n">endl</span><span class="p">;</span>
<span class="p">}</span>
<span class="k">if</span> <span class="p">(</span><span class="n">opt</span><span class="p">.</span><span class="n">isSet</span><span class="p">(</span><span class="s">"-o"</span><span class="p">))</span> <span class="p">{</span>
<span class="n">std</span><span class="o">::</span><span class="n">string</span> <span class="n">file</span><span class="p">;</span>
<span class="n">opt</span><span class="p">.</span><span class="n">get</span><span class="p">(</span><span class="s">"-o"</span><span class="p">)</span><span class="o">-></span><span class="n">getString</span><span class="p">(</span><span class="n">file</span><span class="p">);</span>
<span class="c1">// Exports all options if second param is true; unset options will just use their default values.</span>
<span class="n">opt</span><span class="p">.</span><span class="n">exportFile</span><span class="p">(</span><span class="n">file</span><span class="p">.</span><span class="n">c_str</span><span class="p">(),</span> <span class="nb">true</span><span class="p">);</span>
<span class="p">}</span>
<span class="n">std</span><span class="o">::</span><span class="n">string</span> <span class="n">pretty</span><span class="p">;</span>
<span class="n">opt</span><span class="p">.</span><span class="n">prettyPrint</span><span class="p">(</span><span class="n">pretty</span><span class="p">);</span>
<span class="n">std</span><span class="o">::</span><span class="n">cout</span> <span class="o"><<</span> <span class="n">pretty</span><span class="p">;</span>
<span class="k">return</span> <span class="mi">0</span><span class="p">;</span>
<span class="p">}</span>
</pre></div>
</td></tr></table></body>
</html>
|
app/chip/anime-chip.component.css | seajosh/crapsbot | :host {
position: absolute;
flex: 1;
display: flex;
justify-content: center;
align-items: center;
min-width: 3em;
min-height: 3em;
color: rgba(0, 0, 0, .6);
background-color: yellow;
border-style: dashed;
border-color: red;
border-width: 6px;
border-radius: 50%;
box-shadow: 2px 1px 2px 1px rgba(0, 0, 0, .2);
cursor: pointer;
overflow: visible;
}
:host.one {
background-color: white;
border-color: orange;
}
:host.five {
border-color: navy;
background-color: aqua;
}
:host.twentyfive {
border-color: #555;
background-color: black;
}
#value {
display: flex;
min-width: 2em;
min-height: 2em;
justify-content: center;
align-items: center;
border-style: double;
border-color: rgba(0, 0, 0, .15);
border-width: 5px;
border-radius: 50%;
/*font-family: Ultra, sans-serif;*/
/*font-family: Cinzel Decorative, sans-serif;*/
font-size: 1.6em;
font-weight: 700;
background-color: #fff;
}
#value::before {
content: '$';
}
:host.one #value::before {
content: '1';
}
:host.five #value::before {
content: '5';
}
:host.twentyfive #value::before {
content: '25';
}
/*@import 'chip.component.css';*/
|
clean/Linux-x86_64-4.10.1-2.0.6/released/8.11.2/paco/2.0.2.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>paco: Not compatible</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.11.2 / paco - 2.0.2</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
paco
<small>
2.0.2
<span class="label label-info">Not compatible</span>
</small>
</h1>
<p><em><script>document.write(moment("2021-03-31 05:27:10 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-03-31 05:27:10 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
coq 8.11.2 Formal proof management system
num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.10.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.10.1 Official release 4.10.1
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "paco@sf.snu.ac.kr"
version: "2.0.2"
homepage: "https://github.com/snu-sf/paco/"
dev-repo: "git+https://github.com/snu-sf/paco.git"
bug-reports: "https://github.com/snu-sf/paco/issues/"
authors: [
"Chung-Kil Hur <gil.hur@sf.snu.ac.kr>"
"Georg Neis <neis@mpi-sws.org>"
"Derek Dreyer <dreyer@mpi-sws.org>"
"Viktor Vafeiadis <viktor@mpi-sws.org>"
]
license: "BSD-3"
build: [
[make "-C" "src" "all" "-j%{jobs}%"]
]
install: [
[make "-C" "src" "-f" "Makefile.coq" "install"]
]
remove: ["rm" "-r" "-f" "%{lib}%/coq/user-contrib/Paco"]
depends: [
"ocaml"
"coq" {>= "8.6" & < "8.10"}
]
synopsis: "Coq library implementing parameterized coinduction"
tags: [
"date:2018-02-11"
"category:Computer Science/Programming Languages/Formal Definitions and Theory"
"category:Mathematics/Logic"
"keyword:co-induction"
"keyword:simulation"
"keyword:parameterized greatest fixed point"
]
flags: light-uninstall
url {
src: "https://github.com/snu-sf/paco/archive/v2.0.2.tar.gz"
checksum: "md5=ae2dfe204429bfa1f46a842c5b962199"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-paco.2.0.2 coq.8.11.2</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.11.2).
The following dependencies couldn't be met:
- coq-paco -> coq < 8.10 -> ocaml < 4.10
base of this switch (use `--unlock-base' to force)
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-paco.2.0.2</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>
|
node_modules/npm/html/doc/misc/npm-config.html | lokeshchdhry/AndroidToolsUpdate-node | <!doctype html>
<html>
<title>npm-config</title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="../../static/style.css">
<link rel="canonical" href="https://www.npmjs.org/doc/misc/npm-config.html">
<script async=true src="../../static/toc.js"></script>
<body>
<div id="wrapper">
<h1><a href="../misc/npm-config.html">npm-config</a></h1> <p>More than you probably want to know about npm configuration</p>
<h2 id="description">DESCRIPTION</h2>
<p>npm gets its configuration values from the following sources, sorted by priority:</p>
<h3 id="command-line-flags">Command Line Flags</h3>
<p>Putting <code>--foo bar</code> on the command line sets the <code>foo</code> configuration
parameter to <code>"bar"</code>. A <code>--</code> argument tells the cli parser to stop
reading flags. A <code>--flag</code> parameter that is at the <em>end</em> of the
command will be given the value of <code>true</code>.</p>
<h3 id="environment-variables">Environment Variables</h3>
<p>Any environment variables that start with <code>npm_config_</code> will be
interpreted as a configuration parameter. For example, putting
<code>npm_config_foo=bar</code> in your environment will set the <code>foo</code>
configuration parameter to <code>bar</code>. Any environment configurations that
are not given a value will be given the value of <code>true</code>. Config
values are case-insensitive, so <code>NPM_CONFIG_FOO=bar</code> will work the
same. However, please note that inside <a href="/misc/scripts">npm-scripts</a>
npm will set it's own environment variables and Node will prefer
those lowercase versions over any uppercase ones that you might set.
For details see <a href="https://github.com/npm/npm/issues/14528">this issue</a>.</p>
<h3 id="npmrc-files">npmrc Files</h3>
<p>The four relevant files are:</p>
<ul>
<li>per-project configuration file (<code>/path/to/my/project/.npmrc</code>)</li>
<li>per-user configuration file (defaults to <code>$HOME/.npmrc</code>; configurable via CLI
option <code>--userconfig</code> or environment variable <code>$NPM_CONF_USERCONFIG</code>)</li>
<li>global configuration file (defaults to <code>$PREFIX/etc/npmrc</code>; configurable via
CLI option <code>--globalconfig</code> or environment variable <code>$NPM_CONF_GLOBALCONFIG</code>)</li>
<li>npm's built-in configuration file (<code>/path/to/npm/npmrc</code>)</li>
</ul>
<p>See <a href="../files/npmrc.html">npmrc(5)</a> for more details.</p>
<h3 id="default-configs">Default Configs</h3>
<p>Run <code>npm config ls -l</code> to see a set of configuration parameters that are
internal to npm, and are defaults if nothing else is specified.</p>
<h2 id="shorthands-and-other-cli-niceties">Shorthands and Other CLI Niceties</h2>
<p>The following shorthands are parsed on the command-line:</p>
<ul>
<li><code>-v</code>: <code>--version</code></li>
<li><code>-h</code>, <code>-?</code>, <code>--help</code>, <code>-H</code>: <code>--usage</code></li>
<li><code>-s</code>, <code>--silent</code>: <code>--loglevel silent</code></li>
<li><code>-q</code>, <code>--quiet</code>: <code>--loglevel warn</code></li>
<li><code>-d</code>: <code>--loglevel info</code></li>
<li><code>-dd</code>, <code>--verbose</code>: <code>--loglevel verbose</code></li>
<li><code>-ddd</code>: <code>--loglevel silly</code></li>
<li><code>-g</code>: <code>--global</code></li>
<li><code>-C</code>: <code>--prefix</code></li>
<li><code>-l</code>: <code>--long</code></li>
<li><code>-m</code>: <code>--message</code></li>
<li><code>-p</code>, <code>--porcelain</code>: <code>--parseable</code></li>
<li><code>-reg</code>: <code>--registry</code></li>
<li><code>-f</code>: <code>--force</code></li>
<li><code>-desc</code>: <code>--description</code></li>
<li><code>-S</code>: <code>--save</code></li>
<li><code>-D</code>: <code>--save-dev</code></li>
<li><code>-O</code>: <code>--save-optional</code></li>
<li><code>-B</code>: <code>--save-bundle</code></li>
<li><code>-E</code>: <code>--save-exact</code></li>
<li><code>-y</code>: <code>--yes</code></li>
<li><code>-n</code>: <code>--yes false</code></li>
<li><code>ll</code> and <code>la</code> commands: <code>ls --long</code></li>
</ul>
<p>If the specified configuration param resolves unambiguously to a known
configuration parameter, then it is expanded to that configuration
parameter. For example:</p>
<pre><code>npm ls --par
# same as:
npm ls --parseable
</code></pre><p>If multiple single-character shorthands are strung together, and the
resulting combination is unambiguously not some other configuration
param, then it is expanded to its various component pieces. For
example:</p>
<pre><code>npm ls -gpld
# same as:
npm ls --global --parseable --long --loglevel info
</code></pre><h2 id="per-package-config-settings">Per-Package Config Settings</h2>
<p>When running scripts (see <code><a href="../misc/npm-scripts.html">npm-scripts(7)</a></code>) the package.json "config"
keys are overwritten in the environment if there is a config param of
<code><name>[@<version>]:<key></code>. For example, if the package.json has
this:</p>
<pre><code>{ "name" : "foo"
, "config" : { "port" : "8080" }
, "scripts" : { "start" : "node server.js" } }
</code></pre><p>and the server.js is this:</p>
<pre><code>http.createServer(...).listen(process.env.npm_package_config_port)
</code></pre><p>then the user could change the behavior by doing:</p>
<pre><code>npm config set foo:port 80
</code></pre><p>See <a href="../files/package.json.html">package.json(5)</a> for more information.</p>
<h2 id="config-settings">Config Settings</h2>
<h3 id="access">access</h3>
<ul>
<li>Default: <code>restricted</code></li>
<li>Type: Access</li>
</ul>
<p>When publishing scoped packages, the access level defaults to <code>restricted</code>. If
you want your scoped package to be publicly viewable (and installable) set
<code>--access=public</code>. The only valid values for <code>access</code> are <code>public</code> and
<code>restricted</code>. Unscoped packages <em>always</em> have an access level of <code>public</code>.</p>
<h3 id="always-auth">always-auth</h3>
<ul>
<li>Default: false</li>
<li>Type: Boolean</li>
</ul>
<p>Force npm to always require authentication when accessing the registry,
even for <code>GET</code> requests.</p>
<h3 id="also">also</h3>
<ul>
<li>Default: null</li>
<li>Type: String</li>
</ul>
<p>When "dev" or "development" and running local <code>npm shrinkwrap</code>,
<code>npm outdated</code>, or <code>npm update</code>, is an alias for <code>--dev</code>.</p>
<h3 id="auth-type">auth-type</h3>
<ul>
<li>Default: <code>'legacy'</code></li>
<li>Type: <code>'legacy'</code>, <code>'sso'</code>, <code>'saml'</code>, <code>'oauth'</code></li>
</ul>
<p>What authentication strategy to use with <code>adduser</code>/<code>login</code>.</p>
<h3 id="bin-links">bin-links</h3>
<ul>
<li>Default: <code>true</code></li>
<li>Type: Boolean</li>
</ul>
<p>Tells npm to create symlinks (or <code>.cmd</code> shims on Windows) for package
executables.</p>
<p>Set to false to have it not do this. This can be used to work around
the fact that some file systems don't support symlinks, even on
ostensibly Unix systems.</p>
<h3 id="browser">browser</h3>
<ul>
<li>Default: OS X: <code>"open"</code>, Windows: <code>"start"</code>, Others: <code>"xdg-open"</code></li>
<li>Type: String</li>
</ul>
<p>The browser that is called by the <code>npm docs</code> command to open websites.</p>
<h3 id="ca">ca</h3>
<ul>
<li>Default: The npm CA certificate</li>
<li>Type: String, Array or null</li>
</ul>
<p>The Certificate Authority signing certificate that is trusted for SSL
connections to the registry. Values should be in PEM format with newlines
replaced by the string "\n". For example:</p>
<pre><code>ca="-----BEGIN CERTIFICATE-----\nXXXX\nXXXX\n-----END CERTIFICATE-----"
</code></pre><p>Set to <code>null</code> to only allow "known" registrars, or to a specific CA cert
to trust only that specific signing authority.</p>
<p>Multiple CAs can be trusted by specifying an array of certificates:</p>
<pre><code>ca[]="..."
ca[]="..."
</code></pre><p>See also the <code>strict-ssl</code> config.</p>
<h3 id="cafile">cafile</h3>
<ul>
<li>Default: <code>null</code></li>
<li>Type: path</li>
</ul>
<p>A path to a file containing one or multiple Certificate Authority signing
certificates. Similar to the <code>ca</code> setting, but allows for multiple CA's, as
well as for the CA information to be stored in a file on disk.</p>
<h3 id="cache">cache</h3>
<ul>
<li>Default: Windows: <code>%AppData%\npm-cache</code>, Posix: <code>~/.npm</code></li>
<li>Type: path</li>
</ul>
<p>The location of npm's cache directory. See <code><a href="../cli/npm-cache.html">npm-cache(1)</a></code></p>
<h3 id="cache-lock-stale">cache-lock-stale</h3>
<ul>
<li>Default: 60000 (1 minute)</li>
<li>Type: Number</li>
</ul>
<p>The number of ms before cache folder lockfiles are considered stale.</p>
<h3 id="cache-lock-retries">cache-lock-retries</h3>
<ul>
<li>Default: 10</li>
<li>Type: Number</li>
</ul>
<p>Number of times to retry to acquire a lock on cache folder lockfiles.</p>
<h3 id="cache-lock-wait">cache-lock-wait</h3>
<ul>
<li>Default: 10000 (10 seconds)</li>
<li>Type: Number</li>
</ul>
<p>Number of ms to wait for cache lock files to expire.</p>
<h3 id="cache-max">cache-max</h3>
<ul>
<li>Default: Infinity</li>
<li>Type: Number</li>
</ul>
<p>The maximum time (in seconds) to keep items in the registry cache before
re-checking against the registry.</p>
<p>Note that no purging is done unless the <code>npm cache clean</code> command is
explicitly used, and that only GET requests use the cache.</p>
<h3 id="cache-min">cache-min</h3>
<ul>
<li>Default: 10</li>
<li>Type: Number</li>
</ul>
<p>The minimum time (in seconds) to keep items in the registry cache before
re-checking against the registry.</p>
<p>Note that no purging is done unless the <code>npm cache clean</code> command is
explicitly used, and that only GET requests use the cache.</p>
<h3 id="cert">cert</h3>
<ul>
<li>Default: <code>null</code></li>
<li>Type: String</li>
</ul>
<p>A client certificate to pass when accessing the registry. Values should be in
PEM format with newlines replaced by the string "\n". For example:</p>
<pre><code>cert="-----BEGIN CERTIFICATE-----\nXXXX\nXXXX\n-----END CERTIFICATE-----"
</code></pre><p>It is <em>not</em> the path to a certificate file (and there is no "certfile" option).</p>
<h3 id="color">color</h3>
<ul>
<li>Default: true</li>
<li>Type: Boolean or <code>"always"</code></li>
</ul>
<p>If false, never shows colors. If <code>"always"</code> then always shows colors.
If true, then only prints color codes for tty file descriptors.</p>
<h3 id="depth">depth</h3>
<ul>
<li>Default: Infinity</li>
<li>Type: Number</li>
</ul>
<p>The depth to go when recursing directories for <code>npm ls</code>,
<code>npm cache ls</code>, and <code>npm outdated</code>.</p>
<p>For <code>npm outdated</code>, a setting of <code>Infinity</code> will be treated as <code>0</code>
since that gives more useful information. To show the outdated status
of all packages and dependents, use a large integer value,
e.g., <code>npm outdated --depth 9999</code></p>
<h3 id="description">description</h3>
<ul>
<li>Default: true</li>
<li>Type: Boolean</li>
</ul>
<p>Show the description in <code>npm search</code></p>
<h3 id="dev">dev</h3>
<ul>
<li>Default: false</li>
<li>Type: Boolean</li>
</ul>
<p>Install <code>dev-dependencies</code> along with packages.</p>
<h3 id="dry-run">dry-run</h3>
<ul>
<li>Default: false</li>
<li>Type: Boolean</li>
</ul>
<p>Indicates that you don't want npm to make any changes and that it should
only report what it would have done. This can be passed into any of the
commands that modify your local installation, eg, <code>install</code>, <code>update</code>,
<code>dedupe</code>, <code>uninstall</code>. This is NOT currently honored by network related
commands, eg <code>dist-tags</code>, <code>owner</code>, <code>publish</code>, etc.</p>
<h3 id="editor">editor</h3>
<ul>
<li>Default: <code>EDITOR</code> environment variable if set, or <code>"vi"</code> on Posix,
or <code>"notepad"</code> on Windows.</li>
<li>Type: path</li>
</ul>
<p>The command to run for <code>npm edit</code> or <code>npm config edit</code>.</p>
<h3 id="engine-strict">engine-strict</h3>
<ul>
<li>Default: false</li>
<li>Type: Boolean</li>
</ul>
<p>If set to true, then npm will stubbornly refuse to install (or even
consider installing) any package that claims to not be compatible with
the current Node.js version.</p>
<h3 id="force">force</h3>
<ul>
<li>Default: false</li>
<li>Type: Boolean</li>
</ul>
<p>Makes various commands more forceful.</p>
<ul>
<li>lifecycle script failure does not block progress.</li>
<li>publishing clobbers previously published versions.</li>
<li>skips cache when requesting from the registry.</li>
<li>prevents checks against clobbering non-npm files.</li>
</ul>
<h3 id="fetch-retries">fetch-retries</h3>
<ul>
<li>Default: 2</li>
<li>Type: Number</li>
</ul>
<p>The "retries" config for the <code>retry</code> module to use when fetching
packages from the registry.</p>
<h3 id="fetch-retry-factor">fetch-retry-factor</h3>
<ul>
<li>Default: 10</li>
<li>Type: Number</li>
</ul>
<p>The "factor" config for the <code>retry</code> module to use when fetching
packages.</p>
<h3 id="fetch-retry-mintimeout">fetch-retry-mintimeout</h3>
<ul>
<li>Default: 10000 (10 seconds)</li>
<li>Type: Number</li>
</ul>
<p>The "minTimeout" config for the <code>retry</code> module to use when fetching
packages.</p>
<h3 id="fetch-retry-maxtimeout">fetch-retry-maxtimeout</h3>
<ul>
<li>Default: 60000 (1 minute)</li>
<li>Type: Number</li>
</ul>
<p>The "maxTimeout" config for the <code>retry</code> module to use when fetching
packages.</p>
<h3 id="git">git</h3>
<ul>
<li>Default: <code>"git"</code></li>
<li>Type: String</li>
</ul>
<p>The command to use for git commands. If git is installed on the
computer, but is not in the <code>PATH</code>, then set this to the full path to
the git binary.</p>
<h3 id="git-tag-version">git-tag-version</h3>
<ul>
<li>Default: <code>true</code></li>
<li>Type: Boolean</li>
</ul>
<p>Tag the commit when using the <code>npm version</code> command.</p>
<h3 id="global">global</h3>
<ul>
<li>Default: false</li>
<li>Type: Boolean</li>
</ul>
<p>Operates in "global" mode, so that packages are installed into the
<code>prefix</code> folder instead of the current working directory. See
<code><a href="../files/npm-folders.html">npm-folders(5)</a></code> for more on the differences in behavior.</p>
<ul>
<li>packages are installed into the <code>{prefix}/lib/node_modules</code> folder, instead of the
current working directory.</li>
<li>bin files are linked to <code>{prefix}/bin</code></li>
<li>man pages are linked to <code>{prefix}/share/man</code></li>
</ul>
<h3 id="globalconfig">globalconfig</h3>
<ul>
<li>Default: {prefix}/etc/npmrc</li>
<li>Type: path</li>
</ul>
<p>The config file to read for global config options.</p>
<h3 id="global-style">global-style</h3>
<ul>
<li>Default: false</li>
<li>Type: Boolean</li>
</ul>
<p>Causes npm to install the package into your local <code>node_modules</code> folder with
the same layout it uses with the global <code>node_modules</code> folder. Only your
direct dependencies will show in <code>node_modules</code> and everything they depend
on will be flattened in their <code>node_modules</code> folders. This obviously will
eliminate some deduping. If used with <code>legacy-bundling</code>, <code>legacy-bundling</code> will be
preferred.</p>
<h3 id="group">group</h3>
<ul>
<li>Default: GID of the current process</li>
<li>Type: String or Number</li>
</ul>
<p>The group to use when running package scripts in global mode as the root
user.</p>
<h3 id="heading">heading</h3>
<ul>
<li>Default: <code>"npm"</code></li>
<li>Type: String</li>
</ul>
<p>The string that starts all the debugging log output.</p>
<h3 id="https-proxy">https-proxy</h3>
<ul>
<li>Default: null</li>
<li>Type: url</li>
</ul>
<p>A proxy to use for outgoing https requests. If the <code>HTTPS_PROXY</code> or
<code>https_proxy</code> or <code>HTTP_PROXY</code> or <code>http_proxy</code> environment variables are set,
proxy settings will be honored by the underlying <code>request</code> library.</p>
<h3 id="if-present">if-present</h3>
<ul>
<li>Default: false</li>
<li>Type: Boolean</li>
</ul>
<p>If true, npm will not exit with an error code when <code>run-script</code> is invoked for
a script that isn't defined in the <code>scripts</code> section of <code>package.json</code>. This
option can be used when it's desirable to optionally run a script when it's
present and fail if the script fails. This is useful, for example, when running
scripts that may only apply for some builds in an otherwise generic CI setup.</p>
<h3 id="ignore-scripts">ignore-scripts</h3>
<ul>
<li>Default: false</li>
<li>Type: Boolean</li>
</ul>
<p>If true, npm does not run scripts specified in package.json files.</p>
<h3 id="init-module">init-module</h3>
<ul>
<li>Default: ~/.npm-init.js</li>
<li>Type: path</li>
</ul>
<p>A module that will be loaded by the <code>npm init</code> command. See the
documentation for the
<a href="https://github.com/isaacs/init-package-json">init-package-json</a> module
for more information, or <a href="../cli/npm-init.html">npm-init(1)</a>.</p>
<h3 id="init-author-name">init-author-name</h3>
<ul>
<li>Default: ""</li>
<li>Type: String</li>
</ul>
<p>The value <code>npm init</code> should use by default for the package author's name.</p>
<h3 id="init-author-email">init-author-email</h3>
<ul>
<li>Default: ""</li>
<li>Type: String</li>
</ul>
<p>The value <code>npm init</code> should use by default for the package author's email.</p>
<h3 id="init-author-url">init-author-url</h3>
<ul>
<li>Default: ""</li>
<li>Type: String</li>
</ul>
<p>The value <code>npm init</code> should use by default for the package author's homepage.</p>
<h3 id="init-license">init-license</h3>
<ul>
<li>Default: "ISC"</li>
<li>Type: String</li>
</ul>
<p>The value <code>npm init</code> should use by default for the package license.</p>
<h3 id="init-version">init-version</h3>
<ul>
<li>Default: "1.0.0"</li>
<li>Type: semver</li>
</ul>
<p>The value that <code>npm init</code> should use by default for the package
version number, if not already set in package.json.</p>
<h3 id="json">json</h3>
<ul>
<li>Default: false</li>
<li>Type: Boolean</li>
</ul>
<p>Whether or not to output JSON data, rather than the normal output.</p>
<p>This feature is currently experimental, and the output data structures for many
commands is either not implemented in JSON yet, or subject to change. Only the
output from <code>npm ls --json</code> and <code>npm search --json</code> are currently valid.</p>
<h3 id="key">key</h3>
<ul>
<li>Default: <code>null</code></li>
<li>Type: String</li>
</ul>
<p>A client key to pass when accessing the registry. Values should be in PEM
format with newlines replaced by the string "\n". For example:</p>
<pre><code>key="-----BEGIN PRIVATE KEY-----\nXXXX\nXXXX\n-----END PRIVATE KEY-----"
</code></pre><p>It is <em>not</em> the path to a key file (and there is no "keyfile" option).</p>
<h3 id="legacy-bundling">legacy-bundling</h3>
<ul>
<li>Default: false</li>
<li>Type: Boolean</li>
</ul>
<p>Causes npm to install the package such that versions of npm prior to 1.4,
such as the one included with node 0.8, can install the package. This
eliminates all automatic deduping. If used with <code>global-style</code> this option
will be preferred.</p>
<h3 id="link">link</h3>
<ul>
<li>Default: false</li>
<li>Type: Boolean</li>
</ul>
<p>If true, then local installs will link if there is a suitable globally
installed package.</p>
<p>Note that this means that local installs can cause things to be
installed into the global space at the same time. The link is only done
if one of the two conditions are met:</p>
<ul>
<li>The package is not already installed globally, or</li>
<li>the globally installed version is identical to the version that is
being installed locally.</li>
</ul>
<h3 id="local-address">local-address</h3>
<ul>
<li>Default: undefined</li>
<li>Type: IP Address</li>
</ul>
<p>The IP address of the local interface to use when making connections
to the npm registry. Must be IPv4 in versions of Node prior to 0.12.</p>
<h3 id="loglevel">loglevel</h3>
<ul>
<li>Default: "warn"</li>
<li>Type: String</li>
<li>Values: "silent", "error", "warn", "http", "info", "verbose", "silly"</li>
</ul>
<p>What level of logs to report. On failure, <em>all</em> logs are written to
<code>npm-debug.log</code> in the current working directory.</p>
<p>Any logs of a higher level than the setting are shown.
The default is "warn", which shows warn and error output.</p>
<h3 id="logstream">logstream</h3>
<ul>
<li>Default: process.stderr</li>
<li>Type: Stream</li>
</ul>
<p>This is the stream that is passed to the
<a href="https://github.com/npm/npmlog">npmlog</a> module at run time.</p>
<p>It cannot be set from the command line, but if you are using npm
programmatically, you may wish to send logs to somewhere other than
stderr.</p>
<p>If the <code>color</code> config is set to true, then this stream will receive
colored output if it is a TTY.</p>
<h3 id="logs-max">logs-max</h3>
<ul>
<li>Default: 10</li>
<li>Type: Number</li>
</ul>
<p>The maximum number of log files to store.</p>
<h3 id="long">long</h3>
<ul>
<li>Default: false</li>
<li>Type: Boolean</li>
</ul>
<p>Show extended information in <code>npm ls</code> and <code>npm search</code>.</p>
<h3 id="maxsockets">maxsockets</h3>
<ul>
<li>Default: 50</li>
<li>Type: Number</li>
</ul>
<p>The maximum number of connections to use per origin (protocol/host/port
combination). Passed to the <code>http</code> <code>Agent</code> used to make the request.</p>
<h3 id="message">message</h3>
<ul>
<li>Default: "%s"</li>
<li>Type: String</li>
</ul>
<p>Commit message which is used by <code>npm version</code> when creating version commit.</p>
<p>Any "%s" in the message will be replaced with the version number.</p>
<h3 id="metrics-registry">metrics-registry</h3>
<ul>
<li>Default: The value of <code>registry</code> (which defaults to "<a href="https://registry.npmjs.org/">https://registry.npmjs.org/</a>")</li>
<li>Type: String</li>
</ul>
<p>The registry you want to send cli metrics to if <code>send-metrics</code> is true.</p>
<h3 id="node-version">node-version</h3>
<ul>
<li>Default: process.version</li>
<li>Type: semver or false</li>
</ul>
<p>The node version to use when checking a package's <code>engines</code> map.</p>
<h3 id="onload-script">onload-script</h3>
<ul>
<li>Default: false</li>
<li>Type: path</li>
</ul>
<p>A node module to <code>require()</code> when npm loads. Useful for programmatic
usage.</p>
<h3 id="only">only</h3>
<ul>
<li>Default: null</li>
<li>Type: String</li>
</ul>
<p>When "dev" or "development" and running local <code>npm install</code> without any
arguments, only devDependencies (and their dependencies) are installed.</p>
<p>When "dev" or "development" and running local <code>npm ls</code>, <code>npm outdated</code>, or
<code>npm update</code>, is an alias for <code>--dev</code>.</p>
<p>When "prod" or "production" and running local <code>npm install</code> without any
arguments, only non-devDependencies (and their dependencies) are
installed.</p>
<p>When "prod" or "production" and running local <code>npm ls</code>, <code>npm outdated</code>, or
<code>npm update</code>, is an alias for <code>--production</code>.</p>
<h3 id="optional">optional</h3>
<ul>
<li>Default: true</li>
<li>Type: Boolean</li>
</ul>
<p>Attempt to install packages in the <code>optionalDependencies</code> object. Note
that if these packages fail to install, the overall installation
process is not aborted.</p>
<h3 id="parseable">parseable</h3>
<ul>
<li>Default: false</li>
<li>Type: Boolean</li>
</ul>
<p>Output parseable results from commands that write to
standard output. For <code>npm search</code>, this will be tab-separated table format.</p>
<h3 id="prefix">prefix</h3>
<ul>
<li>Default: see <a href="../files/npm-folders.html">npm-folders(5)</a></li>
<li>Type: path</li>
</ul>
<p>The location to install global items. If set on the command line, then
it forces non-global commands to run in the specified folder.</p>
<h3 id="production">production</h3>
<ul>
<li>Default: false</li>
<li>Type: Boolean</li>
</ul>
<p>Set to true to run in "production" mode.</p>
<ol>
<li>devDependencies are not installed at the topmost level when running
local <code>npm install</code> without any arguments.</li>
<li>Set the NODE_ENV="production" for lifecycle scripts.</li>
</ol>
<h3 id="progress">progress</h3>
<ul>
<li>Default: true, unless TRAVIS or CI env vars set.</li>
<li>Type: Boolean</li>
</ul>
<p>When set to <code>true</code>, npm will display a progress bar during time intensive
operations, if <code>process.stderr</code> is a TTY.</p>
<p>Set to <code>false</code> to suppress the progress bar.</p>
<h3 id="proprietary-attribs">proprietary-attribs</h3>
<ul>
<li>Default: true</li>
<li>Type: Boolean</li>
</ul>
<p>Whether or not to include proprietary extended attributes in the
tarballs created by npm.</p>
<p>Unless you are expecting to unpack package tarballs with something other
than npm -- particularly a very outdated tar implementation -- leave
this as true.</p>
<h3 id="proxy">proxy</h3>
<ul>
<li>Default: null</li>
<li>Type: url</li>
</ul>
<p>A proxy to use for outgoing http requests. If the <code>HTTP_PROXY</code> or
<code>http_proxy</code> environment variables are set, proxy settings will be
honored by the underlying <code>request</code> library.</p>
<h3 id="rebuild-bundle">rebuild-bundle</h3>
<ul>
<li>Default: true</li>
<li>Type: Boolean</li>
</ul>
<p>Rebuild bundled dependencies after installation.</p>
<h3 id="registry">registry</h3>
<ul>
<li>Default: <a href="https://registry.npmjs.org/">https://registry.npmjs.org/</a></li>
<li>Type: url</li>
</ul>
<p>The base URL of the npm package registry.</p>
<h3 id="rollback">rollback</h3>
<ul>
<li>Default: true</li>
<li>Type: Boolean</li>
</ul>
<p>Remove failed installs.</p>
<h3 id="save">save</h3>
<ul>
<li>Default: false</li>
<li>Type: Boolean</li>
</ul>
<p>Save installed packages to a package.json file as dependencies.</p>
<p>When used with the <code>npm rm</code> command, it removes it from the <code>dependencies</code>
object.</p>
<p>Only works if there is already a package.json file present.</p>
<h3 id="save-bundle">save-bundle</h3>
<ul>
<li>Default: false</li>
<li>Type: Boolean</li>
</ul>
<p>If a package would be saved at install time by the use of <code>--save</code>,
<code>--save-dev</code>, or <code>--save-optional</code>, then also put it in the
<code>bundleDependencies</code> list.</p>
<p>When used with the <code>npm rm</code> command, it removes it from the
bundledDependencies list.</p>
<h3 id="save-dev">save-dev</h3>
<ul>
<li>Default: false</li>
<li>Type: Boolean</li>
</ul>
<p>Save installed packages to a package.json file as <code>devDependencies</code>.</p>
<p>When used with the <code>npm rm</code> command, it removes it from the
<code>devDependencies</code> object.</p>
<p>Only works if there is already a package.json file present.</p>
<h3 id="save-exact">save-exact</h3>
<ul>
<li>Default: false</li>
<li>Type: Boolean</li>
</ul>
<p>Dependencies saved to package.json using <code>--save</code>, <code>--save-dev</code> or
<code>--save-optional</code> will be configured with an exact version rather than
using npm's default semver range operator.</p>
<h3 id="save-optional">save-optional</h3>
<ul>
<li>Default: false</li>
<li>Type: Boolean</li>
</ul>
<p>Save installed packages to a package.json file as
optionalDependencies.</p>
<p>When used with the <code>npm rm</code> command, it removes it from the
<code>devDependencies</code> object.</p>
<p>Only works if there is already a package.json file present.</p>
<h3 id="save-prefix">save-prefix</h3>
<ul>
<li>Default: '^'</li>
<li>Type: String</li>
</ul>
<p>Configure how versions of packages installed to a package.json file via
<code>--save</code> or <code>--save-dev</code> get prefixed.</p>
<p>For example if a package has version <code>1.2.3</code>, by default its version is
set to <code>^1.2.3</code> which allows minor upgrades for that package, but after
<code>npm config set save-prefix='~'</code> it would be set to <code>~1.2.3</code> which only allows
patch upgrades.</p>
<h3 id="scope">scope</h3>
<ul>
<li>Default: the scope of the current project, if any, or ""</li>
<li>Type: String</li>
</ul>
<p>Associate an operation with a scope for a scoped registry. Useful when logging
in to a private registry for the first time:
<code>npm login --scope=@organization --registry=registry.organization.com</code>, which
will cause <code>@organization</code> to be mapped to the registry for future installation
of packages specified according to the pattern <code>@organization/package</code>.</p>
<h3 id="scripts-prepend-node-path">scripts-prepend-node-path</h3>
<ul>
<li>Default: "warn-only"</li>
<li>Type: Boolean, <code>"auto"</code> or <code>"warn-only"</code></li>
</ul>
<p>If set to <code>true</code>, add the directory in which the current <code>node</code> executable
resides to the <code>PATH</code> environment variable when running scripts,
even if that means that <code>npm</code> will invoke a different <code>node</code> executable than
the one which it is running.</p>
<p>If set to <code>false</code>, never modify <code>PATH</code> with that.</p>
<p>If set to <code>"warn-only"</code>, never modify <code>PATH</code> but print a warning if <code>npm</code> thinks
that you may want to run it with <code>true</code>, e.g. because the <code>node</code> executable
in the <code>PATH</code> is not the one <code>npm</code> was invoked with.</p>
<p>If set to <code>auto</code>, only add that directory to the <code>PATH</code> environment variable
if the <code>node</code> executable with which <code>npm</code> was invoked and the one that is found
first on the <code>PATH</code> are different.</p>
<h3 id="searchexclude">searchexclude</h3>
<ul>
<li>Default: ""</li>
<li>Type: String</li>
</ul>
<p>Space-separated options that limit the results from search.</p>
<h3 id="searchopts">searchopts</h3>
<ul>
<li>Default: ""</li>
<li>Type: String</li>
</ul>
<p>Space-separated options that are always passed to search.</p>
<h3 id="searchlimit">searchlimit</h3>
<ul>
<li>Default: 20</li>
<li>Type: Number</li>
</ul>
<p>Number of items to limit search results to. Will not apply at all to legacy
searches.</p>
<h3 id="searchstaleness">searchstaleness</h3>
<ul>
<li>Default: 900 (15 minutes)</li>
<li>Type: Number</li>
</ul>
<p>The age of the cache, in seconds, before another registry request is made if
using legacy search endpoint.</p>
<h3 id="send-metrics">send-metrics</h3>
<ul>
<li>Default: false</li>
<li>Type: Boolean</li>
</ul>
<p>If true, success/failure metrics will be reported to the registry stored in
<code>metrics-registry</code>. These requests contain the number of successful and
failing runs of the npm CLI and the time period overwhich those counts were
gathered. No identifying information is included in these requests.</p>
<h3 id="shell">shell</h3>
<ul>
<li>Default: SHELL environment variable, or "bash" on Posix, or "cmd" on
Windows</li>
<li>Type: path</li>
</ul>
<p>The shell to run for the <code>npm explore</code> command.</p>
<h3 id="shrinkwrap">shrinkwrap</h3>
<ul>
<li>Default: true</li>
<li>Type: Boolean</li>
</ul>
<p>If set to false, then ignore <code>npm-shrinkwrap.json</code> files when
installing.</p>
<h3 id="sign-git-tag">sign-git-tag</h3>
<ul>
<li>Default: false</li>
<li>Type: Boolean</li>
</ul>
<p>If set to true, then the <code>npm version</code> command will tag the version
using <code>-s</code> to add a signature.</p>
<p>Note that git requires you to have set up GPG keys in your git configs
for this to work properly.</p>
<h3 id="sso-poll-frequency">sso-poll-frequency</h3>
<ul>
<li>Default: 500</li>
<li>Type: Number</li>
</ul>
<p>When used with SSO-enabled <code>auth-type</code>s, configures how regularly the registry
should be polled while the user is completing authentication.</p>
<h3 id="sso-type">sso-type</h3>
<ul>
<li>Default: 'oauth'</li>
<li>Type: 'oauth', 'saml', or null</li>
</ul>
<p>If <code>--auth-type=sso</code>, the type of SSO type to use.</p>
<h3 id="strict-ssl">strict-ssl</h3>
<ul>
<li>Default: true</li>
<li>Type: Boolean</li>
</ul>
<p>Whether or not to do SSL key validation when making requests to the
registry via https.</p>
<p>See also the <code>ca</code> config.</p>
<h3 id="tag">tag</h3>
<ul>
<li>Default: latest</li>
<li>Type: String</li>
</ul>
<p>If you ask npm to install a package and don't tell it a specific version, then
it will install the specified tag.</p>
<p>Also the tag that is added to the package@version specified by the <code>npm
tag</code> command, if no explicit tag is given.</p>
<h3 id="tag-version-prefix">tag-version-prefix</h3>
<ul>
<li>Default: <code>"v"</code></li>
<li>Type: String</li>
</ul>
<p>If set, alters the prefix used when tagging a new version when performing a
version increment using <code>npm-version</code>. To remove the prefix altogether, set it
to the empty string: <code>""</code>.</p>
<p>Because other tools may rely on the convention that npm version tags look like
<code>v1.0.0</code>, <em>only use this property if it is absolutely necessary</em>. In
particular, use care when overriding this setting for public packages.</p>
<h3 id="tmp">tmp</h3>
<ul>
<li>Default: TMPDIR environment variable, or "/tmp"</li>
<li>Type: path</li>
</ul>
<p>Where to store temporary files and folders. All temp files are deleted
on success, but left behind on failure for forensic purposes.</p>
<h3 id="unicode">unicode</h3>
<ul>
<li>Default: false on windows, true on mac/unix systems with a unicode locale</li>
<li>Type: Boolean</li>
</ul>
<p>When set to true, npm uses unicode characters in the tree output. When
false, it uses ascii characters to draw trees.</p>
<h3 id="unsafe-perm">unsafe-perm</h3>
<ul>
<li>Default: false if running as root, true otherwise</li>
<li>Type: Boolean</li>
</ul>
<p>Set to true to suppress the UID/GID switching when running package
scripts. If set explicitly to false, then installing as a non-root user
will fail.</p>
<h3 id="usage">usage</h3>
<ul>
<li>Default: false</li>
<li>Type: Boolean</li>
</ul>
<p>Set to show short usage output (like the -H output)
instead of complete help when doing <code><a href="../cli/npm-help.html">npm-help(1)</a></code>.</p>
<h3 id="user">user</h3>
<ul>
<li>Default: "nobody"</li>
<li>Type: String or Number</li>
</ul>
<p>The UID to set to when running package scripts as root.</p>
<h3 id="userconfig">userconfig</h3>
<ul>
<li>Default: ~/.npmrc</li>
<li>Type: path</li>
</ul>
<p>The location of user-level configuration settings.</p>
<h3 id="umask">umask</h3>
<ul>
<li>Default: 022</li>
<li>Type: Octal numeric string in range 0000..0777 (0..511)</li>
</ul>
<p>The "umask" value to use when setting the file creation mode on files
and folders.</p>
<p>Folders and executables are given a mode which is <code>0777</code> masked against
this value. Other files are given a mode which is <code>0666</code> masked against
this value. Thus, the defaults are <code>0755</code> and <code>0644</code> respectively.</p>
<h3 id="user-agent">user-agent</h3>
<ul>
<li>Default: node/{process.version} {process.platform} {process.arch}</li>
<li>Type: String</li>
</ul>
<p>Sets a User-Agent to the request header</p>
<h3 id="version">version</h3>
<ul>
<li>Default: false</li>
<li>Type: boolean</li>
</ul>
<p>If true, output the npm version and exit successfully.</p>
<p>Only relevant when specified explicitly on the command line.</p>
<h3 id="versions">versions</h3>
<ul>
<li>Default: false</li>
<li>Type: boolean</li>
</ul>
<p>If true, output the npm version as well as node's <code>process.versions</code> map, and
exit successfully.</p>
<p>Only relevant when specified explicitly on the command line.</p>
<h3 id="viewer">viewer</h3>
<ul>
<li>Default: "man" on Posix, "browser" on Windows</li>
<li>Type: path</li>
</ul>
<p>The program to use to view help content.</p>
<p>Set to <code>"browser"</code> to view html help content in the default web browser.</p>
<h2 id="see-also">SEE ALSO</h2>
<ul>
<li><a href="../cli/npm-config.html">npm-config(1)</a></li>
<li><a href="../files/npmrc.html">npmrc(5)</a></li>
<li><a href="../misc/npm-scripts.html">npm-scripts(7)</a></li>
<li><a href="../files/npm-folders.html">npm-folders(5)</a></li>
<li><a href="../cli/npm.html">npm(1)</a></li>
</ul>
</div>
<table border=0 cellspacing=0 cellpadding=0 id=npmlogo>
<tr><td style="width:180px;height:10px;background:rgb(237,127,127)" colspan=18> </td></tr>
<tr><td rowspan=4 style="width:10px;height:10px;background:rgb(237,127,127)"> </td><td style="width:40px;height:10px;background:#fff" colspan=4> </td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=4> </td><td style="width:40px;height:10px;background:#fff" colspan=4> </td><td rowspan=4 style="width:10px;height:10px;background:rgb(237,127,127)"> </td><td colspan=6 style="width:60px;height:10px;background:#fff"> </td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=4> </td></tr>
<tr><td colspan=2 style="width:20px;height:30px;background:#fff" rowspan=3> </td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=3> </td><td style="width:10px;height:10px;background:#fff" rowspan=3> </td><td style="width:20px;height:10px;background:#fff" rowspan=4 colspan=2> </td><td style="width:10px;height:20px;background:rgb(237,127,127)" rowspan=2> </td><td style="width:10px;height:10px;background:#fff" rowspan=3> </td><td style="width:20px;height:10px;background:#fff" rowspan=3 colspan=2> </td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=3> </td><td style="width:10px;height:10px;background:#fff" rowspan=3> </td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=3> </td></tr>
<tr><td style="width:10px;height:10px;background:#fff" rowspan=2> </td></tr>
<tr><td style="width:10px;height:10px;background:#fff"> </td></tr>
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
</table>
<p id="footer">npm-config — npm@4.5.0</p>
|
src/Viteloge/CoreBundle/Resources/descriptions/97413.html | donaldinou/frontend | <div class="commune_descr limited">
<p>
Saint-Leu est
une commune localisée dans le département de La Réunion en La Réunion. On dénombrait 28 969 habitants en 2008.</p>
<p>À Saint-Leu, la valorisation moyenne à l'achat d'un appartement s'évalue à 3 333 € du m² en vente. Le prix moyen d'une maison à l'achat se situe à 4 879 € du m². À la location la valorisation moyenne se situe à 14,21 € du m² mensuel.</p>
<p>À proximité de Saint-Leu sont situées les communes de
<a href="{{VLROOT}}/immobilier/soisy-sous-montmorency_95598/">Soisy-sous-Montmorency</a> située à 2 km, 17 483 habitants,
<a href="{{VLROOT}}/immobilier/plessis-bouchard_95491/">Le Plessis-Bouchard</a> localisée à 2 km, 7 666 habitants,
<a href="{{VLROOT}}/immobilier/saint-gratien_95555/">Saint-Gratien</a> située à 2 km, 21 436 habitants,
<a href="{{VLROOT}}/immobilier/eaubonne_95203/">Eaubonne</a> à 1 km, 23 640 habitants,
<a href="{{VLROOT}}/immobilier/saint-leu-la-foret_95563/">Saint-Leu-la-Forêt</a> localisée à 2 km, 14 586 habitants,
<a href="{{VLROOT}}/immobilier/montlignon_95426/">Montlignon</a> localisée à 2 km, 2 505 habitants,
entre autres. De plus, Saint-Leu est située à seulement 16 km de <a href="{{VLROOT}}/immobilier/paris_75056/">Paris</a>.</p>
<p>Le parc d'habitations, à Saint-Leu, se décomposait en 2011 en 1 915 appartements et 10 621 maisons soit
un marché relativement équilibré.</p>
<p>À Saint-Leu le salaire médian par mois par personne est situé à environ 2 282 € net. C'est supérieur à la moyenne nationale.</p>
<p>Saint-Leu est localisé à seulement 9 km de Saint-Denis, les étudiants qui aurons besoin de se loger à pas cher pourront envisager de prendre un appartement à Saint-Leu. Saint-Leu est aussi un bon investissement locatif a cause de sa proximité de Saint-Denis et de ses Universités. Il sera facile de trouver un appartement à vendre. </p>
<p>La ville offre de multiples aménagements, elle dispose, entre autres, de deux bassins de natation, deux terrains de tennis, onze terrains de sport et trois boucles de randonnée.</p>
<p>
La ville dispose en ce qui concerne la formation de trois collèges et un lycée.
Concernant ceux d'entre nous ayant moins de 6 ans, la localité est pourvue pour le bien être de sa population de huit maternelles et treize écoles primaires.
Saint-Leu est équipée des équipements facilitant une éducation de qualité.
Si vous avez un projet immobilier à Saint-Leu, vous devrez impérativement évaluer la notoriété des écoles de la communes</p>
</div>
|
619-25-0.txt.html | andrewdefries/Ames_ToxBenchmark | <html><img border=0 src=619-25-0.txt alt=619-25-0.txt></img><body>
"x"
"1" "JUNEJA,TR, BALA,A, KUMAR,P AND GUPTA,RL, MUTAGENICITY OF NITROBENZYLDERIVATIVES: POTENTIAL BIOREDUCTIVE ANTICANCER AGENTS, MUTAT. RES.348(3):137-145, 1995"
</body></html>
|
mirror/prvCode_07/cityCode_009-areaCode_01-deptCode_002/voteCode_20120101T1A2-qryType_ctks-prvCode_06-cityCode_009-areaCode_01-deptCode_002-liCode_0022.html | g0v/projectV |
<!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=009&areaCode=01&deptCode=002&liCode=0022#"><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=4 align=center>屏東縣第01選區高樹鄉菜寮村第0029投開票所</td>
<td nowrap align="center">陳俊豪</td>
<td nowrap align="center">1</td>
<td nowrap align="right">0</td>
<td nowrap align="right"> 0.00%</td>
</tr>
<!-- 投開票所內容 -->
<tr class="data">
<td nowrap align="center">蘇震清</td>
<td nowrap align="center">2</td>
<td nowrap align="right">415</td>
<td nowrap align="right"> 70.21%</td>
</tr>
<!-- 投開票所內容 -->
<tr class="data">
<td nowrap align="center">吳亮慶</td>
<td nowrap align="center">3</td>
<td nowrap align="right">90</td>
<td nowrap align="right"> 15.22%</td>
</tr>
<!-- 投開票所內容 -->
<tr class="data">
<td nowrap align="center">羅志明</td>
<td nowrap align="center">4</td>
<td nowrap align="right">86</td>
<td nowrap align="right"> 14.55%</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> |
TAIHAO2019/pub/SmallGame/AsFastAsYouCan2/15e894ce59fe61f90eaee05a159ec415ffd357707c51afed47d4e416b8a43386.html | simonmysun/praxis | <!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="./a588defd209c0e0b62df2cfaf96d13b6c122ffe95b8af700e806382d5d1ac676.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> |
blog.html | sauravchandra/sauravchandra.github.io | ---
title: Blog
layout: blog
permalink: /blog/
---
<div id="blog-post-display-container">
{% for post in site.posts %}
<div>
<div id="blog-post-main-image"><img src="../images/{{ post.banner }}"/></div>
<h1 id="blog-post-title"><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h1>
<div style="font-size:14px;">
Posted on {{ post.date | date: "%B %e, %Y" }} | {{post.categories}}
</div>
<div>
{{ post.excerpt }}
</div>
</div>
<hr>
{% endfor %}
</div>
{% include footer.html %}
|
clean/Linux-x86_64-4.03.0-2.0.5/released/8.7.1+2/markov/8.8.0.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>markov: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.7.1+2 / markov - 8.8.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
markov
<small>
8.8.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-01-27 01:18:40 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-01-27 01:18:40 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+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
ocamlfind 1.9.2 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "Hugo.Herbelin@inria.fr"
homepage: "https://github.com/coq-contribs/markov"
license: "GNU Lesser Public License"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/Markov"]
depends: [
"ocaml"
"coq" {>= "8.8" & < "8.9~"}
]
tags: [
"keyword: probability"
"keyword: Markov"
"keyword: Lebesgue integral"
"keyword: sigma algebras"
"keyword: measurability"
"keyword: Borel"
"category: Mathematics/Real Calculus and Topology"
"date: 2008-01-5"
]
authors: [ "Robert Kam <rkam2001@hotmail.com> [none]" ]
bug-reports: "https://github.com/coq-contribs/markov/issues"
dev-repo: "git+https://github.com/coq-contribs/markov.git"
synopsis: "Markov's inequality"
description:
"A proof of Markov's inequality, restricted to probability spaces, based on the Wikipedia proof. Defines Lebesgue integral and associated concepts such as measurability, measure functions, and sigma algebras. Extended real numbers did not need to be defined because we are working in a probability space with measure 1. Nonconstructive; uses classic, Extensionality_Ensembles, axiomatized real numbers from Coq standard library."
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/markov/archive/v8.8.0.tar.gz"
checksum: "md5=9d723716490b0b2fdd98ddf0c99146a8"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-markov.8.8.0 coq.8.7.1+2</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.7.1+2).
The following dependencies couldn't be met:
- coq-markov -> coq >= 8.8 -> ocaml >= 4.05.0
base of this switch (use `--unlock-base' to force)
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-markov.8.8.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
picasso/static/css/theme.css | TejasM/picasso | @charset "utf-8";
/* Table of contents - Starhotel: Main Theme CSS by Slashdown
====================================================
*/
/* Basic Styles
-------------------------------------------------- */
/* Headings */
/* Fonts */
/* Margins */
/* Form */
/* Buttons */
/* Image Hover Zoom */
/* Grid */
/* Top Header
-------------------------------------------------- */
/* Items */
/* Language dropdown */
/* Social icons */
/* Retina logo */
/* Header
-------------------------------------------------- */
/* Base Navigation */
/* Logo */
/* Navbar */
/* Dropdown */
/* Shrink Navigation */
/* Nav Yamm3 Megamenu */
/* Reservation Form
-------------------------------------------------- */
/* Vertical */
/* Price */
/* Horizontal */
/* Icons */
/* Button */
/* Guests */
/* Datepicker*/
/* Error Message */
/* Rooms
-------------------------------------------------- */
/* Room Thumbnails */
/* Room List */
/* USP's
-------------------------------------------------- */
/* Circle */
/* Icon */
/* Blog
-------------------------------------------------- */
/* Article */
/* Meta */
/* Content */
/* Blog Author */
/* Blog Comments */
/* Aside
-------------------------------------------------- */
/* Headings */
/* Widgets */
/* Widget: Tags */
/* Widget: List Styles */
/* Widget: Latest News */
/* Pages
-------------------------------------------------- */
/* 404 Error page*/
/* Fontawesome Page */
/* Gallery */
/* Bootstrap Components
-------------------------------------------------- */
/* Image styles */
/* Nav Tabs */
/* Nav Pills */
/* Call To Action */
/* Breadcrumb */
/* Popover */
/* Table */
/* Panel */
/* Pagination */
/* Badge */
/* Blockquote */
/* Alerts */
/* Footer
-------------------------------------------------- */
/* Base */
/* Footer Bottom */
/* Plugin Styles
-------------------------------------------------- */
/* Datepicker */
/* Sticky */
/* Owl Gallery */
/* Owl Reviews */
/* Owl Slider */
/* Parallax */
/* Revolution Slider */
/* Waypoints */
/* Go-Top Button */
/* Isotope */
/* Gmap */
/* Basic Styles
-------------------------------------------------- */
body {
overflow-x: hidden;
}
html, html a {
-webkit-font-smoothing: antialiased !important;
}
/* Headings */
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 600;
line-height: 1.1;
color: #5e5e5e;
}
h1, .h1 {
font-size: 36px;
}
h2, .h2 {
font-size: 24px;
}
h3, .h3 {
font-size: 18px;
}
h4, .h4 {
font-size: 14px;
}
h5, .h5 {
font-size: 12px;
}
h6, .h6 {
font-size: 10px;
}
.lined-heading {
position: relative;
margin-top: 0;
margin-bottom: 50px;
text-align: center;
display: block;
}
h1.lined-heading:before, h2.lined-heading:before, h3.lined-heading:before, h4.lined-heading:before, h5.lined-heading:before, h6.lined-heading:before {
position: absolute;
top: 50%;
z-index: 1;
display: block;
width: 100%;
height: 1px;
border-top: 2px solid #ccc;
content: "";
}
h1.lined-heading span, h2.lined-heading span, h3.lined-heading span, h4.lined-heading span, h5.lined-heading span, h6.lined-heading span {
position: relative;
z-index: 1;
padding: 0 20px;
background: #fff;
display: inline-block;
}
h1 i, h2 i, h3 i, h4 i h5 i {
padding-right: 15px;
}
/* Fonts */
body ,.ui-widget, .revolution-starhotel {
font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
font-size: 13px;
}
a {
text-decoration: none;
-webkit-transition: color 0.2s ease-in;
-moz-transition: color 0.2s ease-in;
-ms-transition: color 0.2s ease-in;
-o-transition: color 0.2s ease-in;
transition: color 0.2s ease-in;
}
a:hover, a:focus {
color: #000;
text-decoration: none;
-webkit-transition: color 0.2s ease-in;
-moz-transition: color 0.2s ease-in;
-ms-transition: color 0.2s ease-in;
-o-transition: color 0.2s ease-in;
transition: color 0.2s ease-in;
}
a:focus {
outline: thin dotted;
outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px;
}
/* Link hover color */
a:hover, a:focus, .box-icon a:hover, .usp a:hover i {
color: #5e5e5e;
}
/* Margins */
.mt20 {
margin-top: 20px;
}
.mt30 {
margin-top: 30px;
}
.mt50 {
margin-top: 50px;
}
.mt100 {
margin-top: 100px;
}
.mt150 {
margin-top: 150px;
}
.mt200 {
margin-top: 200px;
}
/* Form */
label {
color: #5e5e5e;
}
.form-control {
color: #333333;
}
.form-control option {
color: #5e5e5e;
}
.form-control option:disabled {
color: #bfbfbf;
}
.form-control:focus {
border: 1px solid #cccccc;
outline: 0;
-webkit-box-shadow: none;
box-shadow: none;
}
.form-control:-moz-placeholder {
color: #bfbfbf;
}
.form-control::-moz-placeholder {
color: #bfbfbf;
opacity: 1;
}
.form-control:-ms-input-placeholder {
color: #bfbfbf;
}
.form-control::-webkit-input-placeholder {
color: #bfbfbf;
}
/* Buttons */
.btn {
background: -moz-linear-gradient(top, rgba(255,255,255,0.38) 0%, rgba(255,255,255,0) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255,255,255,0.38)), color-stop(100%, rgba(255,255,255,0))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, rgba(255,255,255,0.38) 0%, rgba(255,255,255,0) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, rgba(255,255,255,0.38) 0%, rgba(255,255,255,0) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, rgba(255,255,255,0.38) 0%, rgba(255,255,255,0) 100%); /* IE10+ */
background: linear-gradient(to bottom, rgba(255,255,255,0.38) 0%, rgba(255,255,255,0) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#61ffffff', endColorstr='#00ffffff', GradientType=0 ); /* IE6-9 */
color: #ffffff;
-webkit-box-shadow: inset 0 1px 0 0 rgba(255,255,255,0.3);
box-shadow: inset 0 1px 0 0 rgba(255,255,255,0.3);
-webkit-transition: all 0.1s ease-in;
-moz-transition: all 0.1s ease-in;
-ms-transition: all 0.1s ease-in;
-o-transition: all 0.1s ease-in;
transition: all 0.1s ease-in;
text-transform: uppercase;
font-weight: bold;
}
.btn-lg {
padding: 13px 18px;
font-size: 14px;
}
.btn-default {
text-shadow: 0 -1px 0 #fff;
background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(0,0,0,0.06) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255,255,255,0)), color-stop(100%, rgba(0,0,0,0.06))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(0,0,0,0.06) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(0,0,0,0.06) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(0,0,0,0.06) 100%); /* IE10+ */
background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(0,0,0,0.06) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#0f000000', GradientType=0 ); /* IE6-9 */
background-color: #fff;
border-color: #d2d2d2;
}
.btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default.active, .open .dropdown-toggle.btn-default {
text-shadow: 0 -1px 0 #fff;
background-color: #fff;
border-color: #d2d2d2;
-webkit-box-shadow: inset 5px 5px 100px 100px #FFFFFF;
box-shadow: inset 5px 5px 100px 100px #FFFFFF;
}
.btn-purple {
background-color: #e331bf;
border-color: #b90a96;
text-shadow: 0 -1px 0 #c026a1;
}
.btn-purple:hover, .btn-purple:focus, .btn-purple:active, .btn-purple.active, .open .dropdown-toggle.btn-purple {
background-color: #f449d2;
border-color: #cf0ba7;
color: #fff;
}
.btn-black {
background: -moz-linear-gradient(top, rgba(255,255,255,0.33) 0%, rgba(255,255,255,0.13) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255,255,255,0.33)), color-stop(100%, rgba(255,255,255,0.13))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, rgba(255,255,255,0.33) 0%, rgba(255,255,255,0.13) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, rgba(255,255,255,0.33) 0%, rgba(255,255,255,0.13) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, rgba(255,255,255,0.33) 0%, rgba(255,255,255,0.13) 100%); /* IE10+ */
background: linear-gradient(to bottom, rgba(255,255,255,0.33) 0%, rgba(255,255,255,0.13) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#54ffffff', endColorstr='#21ffffff', GradientType=0 ); /* IE6-9 */
background-color: #000;
border-color: #000;
text-shadow: 0 -1px 0 #000;
}
.btn-black:hover, .btn-black:focus, .btn-black:active, .btn-black.active, .open .dropdown-toggle.btn-black {
background-color: #333;
border-color: #000;
color: #fff;
}
.btn-success {
background-color: #7ec923;
border-color: #09c817;
text-shadow: 0 -1px 0 #408c1f;
}
.btn-success:hover, .btn-success:focus, .btn-success:active, .btn-success.active, .open .dropdown-toggle.btn-success {
background-color: #86E215;
border-color: #75c529;
}
.btn-info {
background-color: #057ad4;
border-color: #057ad4;
text-shadow: 0 -1px 0 #1f659a;
}
.btn-info:hover, .btn-info:focus, .btn-info:active, .btn-info.active, .open .dropdown-toggle.btn-info {
background-color: #36a6eb;
border-color: #2a8de9;
}
.btn-warning {
background-color: #dc7b13;
border-color: #d48405;
text-shadow: 0 -1px 0 #d29128;
}
.btn-warning:hover, .btn-warning:focus, .btn-warning:active, .btn-warning.active, .open .dropdown-toggle.btn-warning {
background-color: #eab037;
border-color: #d48405;
}
.btn-danger {
background-color: #c20808;
border-color: #ba3535;
text-shadow: 0 -1px 0 #760202;
}
.btn-danger:hover, .btn-danger:focus, .btn-danger:active, .btn-danger.active, .open .dropdown-toggle.btn-danger {
background-color: #e51f1f;
border-color: #ba3535;
}
section.buttons .btn{
margin: 0 10px 10px 0;
}
/* Image Hover Zoom */
a.mask {
text-decoration: none;
overflow: hidden;
display: block;
}
img.zoom-img {
width: 100%;
position: relative;
padding: 0;
}
img.zoom-img {
-webkit-transform: scale(1, 1);
-webkit-transition-timing-function: ease-out;
-webkit-transition-duration: 250ms;
-moz-transform: scale(1, 1);
-moz-transition-timing-function: ease-out;
-moz-transition-duration: 250ms;
box-shadow: 0px 0px 0px 0px #000; /*Firefox opacity flickr bug fix */
}
img.zoom-img:hover {
-webkit-transform: scale(1.15);
-webkit-transition-timing-function: ease-out;
-webkit-transition-duration: 750ms;
-moz-transform: scale(1.15);
-moz-transition-timing-function: ease-out;
-moz-transition-duration: 750ms;
overflow: hidden;
opacity: 0.7;
}
/* Grid */
.boxed {
max-width: 1170px;
margin: 0 auto;
background: #fff;
box-shadow: 0px 0px 8px 1px rgba(0, 0, 0, 0.2);
}
/* Background options */
.pattern-1 {
background:url(../images/patterns/xv.png) center center repeat;
}
.pattern-2 {
background:url(../images/patterns/purty_wood.png) center center repeat;
}
.pattern-3 {
background:url(../images/patterns/hexellence.png) center center repeat;
}
.pattern-4 {
background:url(../images/patterns/brushed_alu.png) center center repeat;
}
.pattern-5 {
background:url(../images/patterns/grid_noise.png) center center repeat;
}
.pattern-6 {
background:url(../images/patterns/diamond_upholstery.png) center center repeat;
}
.pattern-7 {
background:url(../images/patterns/escheresque.png) center center repeat;
}
.pattern-8 {
background:url(../images/patterns/knitting250px.png) center center repeat;
}
.pattern-9 {
background:url(../images/patterns/bo_play_pattern.png) center center repeat;
}
.background-color-1 {
background: #D8F1FE;
}
.background-color-2 {
background: #DC9CDC;
}
.background-color-3 {
background: #94CA86;
}
.background-color-4 {
background: #CCCCCC;
}
.background-color-5 {
background: #F0E1FF;
}
#background-image {
position: fixed;
top: 0;
left: 0;
z-index: -1;
width: 100%;
height: 100%;
}
/* Top Header
-------------------------------------------------- */
/* Items */
#top-header, #top-header a {
background: #272727;
color: #939393;
font-size: 11px;
}
#top-header a:hover, #top-header .th-text .th-item .btn-group .btn-default:hover {
color: #fff;
text-decoration: none;
}
#top-header i {
font-size: 14px;
padding-right: 5px;
}
#top-header .th-text {
padding: 10px 0;
font-size: 11px;
}
#top-header .th-text .th-item {
margin: 0;
padding: 0;
}
#top-header .th-text .th-item {
display: inline-block;
padding: 0 10px;
line-height: 10px;
border-right: 1px solid #3c3c3c;
}
#top-header .th-text .th-item:first-child {
padding-left: 0;
}
#top-header .th-text .th-item:last-child {
border-right: none;
}
/* Language Dropdown */
#top-header .th-text .th-item .btn-group {
z-index: 9999;
margin-top: -6px;
}
#top-header .th-text .th-item .btn-group .btn-default {
color: inherit;
background-color: transparent;
border: none;
-webkit-transition: all 0.2s ease-in;
-moz-transition: all 0.2s ease-in;
-ms-transition: all 0.2s ease-in;
-o-transition: all 0.2s ease-in;
transition: all 0.2s ease-in;
text-transform: uppercase;
font-size: 11px;
background: none; /* FF3.6+ */
filter: none; /* IE6-9 */
-webkit-box-shadow: none;
box-shadow: none;
text-shadow: none;
font-weight: normal;
}
#top-header .th-text .th-item .btn-group:hover {
color: #fff;
}
#top-header .th-text .th-item .btn-group ul.dropdown-menu {
font-size: 11px;
background-color: #272727;
padding: 0;
line-height: 20px;
border: none;
border-radius: 0px;
-webkit-box-shadow: none;
box-shadow: none;
margin-top: 12px;
}
#top-header .th-text .th-item .btn-group .btn-default span.caret {
margin-left: 5px;
margin-top: -4px;
}
#top-header .th-text .th-item .btn-group ul.dropdown-menu > li > a {
padding: 10px 20px;
color: #939393;
text-transform: uppercase;
-webkit-transition: all 0.1s ease-in;
-moz-transition: all 0.1s ease-in;
-ms-transition: all 0.1s ease-in;
-o-transition: all 0.1s ease-in;
transition: all 0.1s ease-in;
}
#top-header .th-text .th-item .btn-group ul.dropdown-menu > li > a:hover {
color: #fff;
}
/* Social Icons */
#top-header .th-text .th-item .social-icons i {
padding-right: 20px;
}
/* Retina Logo */
header #logo #retina-logo {
display: none;
}
/* Header
-------------------------------------------------- */
header {
background: #fff;
border-top: 2px solid;
}
/* Base Navigation */
header nav {
float: left;
margin: 0 0 0 20px;
}
.navbar {
border: none;
-webkit-box-shadow: 0 3px 3px 0 rgba(0,0,0,0.1);
box-shadow: 0 3px 3px 0 rgba(0,0,0,0.1);
-webkit-border-radius: 0 0 0 0;
border-radius: 0 0 0 0;
z-index: 9997;
}
.navbar-default {
background-color: #fff;
}
.navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus {
color: #5e5e5e;
background-color: transparent;
}
.navbar-default .navbar-text {
color: #5e5e5e;
}
.navbar-default .navbar-nav > li > a {
color: #5e5e5e;
}
.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
background-color: transparent;
}
.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
background-color: transparent;
}
.navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disabled > a:hover, .navbar-default .navbar-nav > .disabled > a:focus {
color: #5e5e5e;
background-color: transparent;
}
.navbar-default .navbar-collapse, .navbar-default .navbar-form {
border-color: #e7e7e7;
}
.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
background-color: #fff;
}
.navbar-nav .dropdown-menu {
border-top: 2px solid;
font-size: 13px;
}
.navbar-default .navbar-nav .dropdown-menu > li > a {
color: #5e5e5e;
}
.navbar-default .navbar-nav .dropdown-menu > .active > a, .navbar-default .navbar-nav .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .dropdown-menu > .active > a:focus {
color: #ffffff;
text-decoration: none;
background-color: #428bca;
outline: 0;
}
.navbar-default .navbar-nav .dropdown-menu > .disabled > a, .navbar-default .navbar-nav .dropdown-menu > .disabled > a:hover, .navbar-default .navbar-nav .dropdown-menu > .disabled > a:focus {
color: #999999;
}
@media (min-width: 768px) {
/* Logo */
header #logo {
float: left;
padding: 20px 60px 20px 0;
border-right: 1px solid #e1e1e1;
max-width: 100%;
}
/* Navbar */
.navbar {
position: relative;
min-height: 50px;
margin-bottom: 0;
}
.navbar-brand {
float: left;
padding: 0;
font-size: 18px;
line-height: 20px;
}
.navbar > .container .navbar-brand {
margin-left: 0;
}
/* Dropdown */
.navbar-nav > li > a {
padding: 32px 20px;
}
.navbar-nav > li:first-child {
padding-left: 40px;
}
.navbar-nav .caret {
display: inline-block;
width: 0;
height: 0;
margin-left: 5px;
vertical-align: middle;
border-top: 4px solid;
border-right: 4px solid transparent;
border-left: 4px solid transparent;
}
.navbar-nav .dropdown {
position: relative;
}
.navbar-nav .dropdown-toggle:focus {
outline: 0;
}
.navbar-nav .dropdown-menu {
position: absolute;
top: 100%;
left: 0;
display: none;
float: left;
min-width: 160px;
padding: 0;
margin: 0;
font-size: 13px;
list-style: none;
background-color: #ffffff;
background-color: rgba(255, 255, 255, 0.95);
color: rgba(255, 255, 255, 0.95);
border-right: none;
border-bottom: 1px solid #fff;
border-left: none;
border-radius: 0px;
-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
background-clip: padding-box;
}
.navbar-nav > li > .dropdown-menu {
margin-top: -1px;
}
.navbar-nav .dropdown-menu.pull-right {
right: 0;
left: auto;
}
.navbar-nav .dropdown-menu .divider {
height: 1px;
margin: 9px 0;
overflow: hidden;
background-color: #e5e5e5;
}
.navbar-nav .dropdown-menu > li > a {
display: block;
padding: 10px 20px;
clear: both;
font-weight: normal;
line-height: 1.428571429;
white-space: nowrap;
-webkit-transition: all ease-in .1s;
-moz-transition: all ease .1s;
-ms-transition: all ease .1s;
-o-transition: all ease .1s;
transition: all ease-in .1s;
border-bottom: 1px solid #e1e1e1;
background-color: transparant;
border-right: 1px solid #fff;
border-left: 1px solid #fff;
}
.navbar-nav .dropdown-menu > li:last-child > a {
border-bottom: 0px;
}
.navbar-nav .dropdown-menu > li > a:hover, .navbar-nav .dropdown-menu > li > a:focus {
text-decoration: none;
background-color: #fff;
-webkit-transition: all ease-out .1s;
-moz-transition: all ease .1s;
-ms-transition: all ease .1s;
-o-transition: all ease .1s;
transition: all ease-out .1s;
}
.navbar-nav .dropdown-menu > .disabled > a:hover, .navbar-nav .dropdown-menu > .disabled > a:focus {
text-decoration: none;
cursor: not-allowed;
background-color: transparent;
background-image: none;
filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}
.navbar-nav .open > .dropdown-menu {
display: block;
}
.navbar-nav .open > .dropdown-menu, #top-header .open > .dropdown-menu {
animation-name: fadeIn;
animation-duration: 0.4s;
animation-iteration-count: 1;
animation-timing-function: ease-out;
-webkit-animation-name: fadeIn;
-webkit-animation-duration: 0.4s;
-webkit-animation-iteration-count: 1;
-webkit-animation-timing-function: ease-out;
-moz-animation-name: fadeIn;
-moz-animation-duration: 0.4s;
-moz-animation-iteration-count: 1;
-moz-animation-timing-function: ease-out;
}
/* Shrink Navigation */
.navbar.shrink .navbar {
height: 64px;
-webkit-transition: all linear 0.3s;
-moz-transition: all linear 0.3s;
-o-transition: all linear 0.3s;
transition: all linear 0.3s;
}
.navbar.schrink .navbar-default {
background-color: rgba(255, 255, 255, 0.95);
}
.navbar #logo {
width: 100%;
}
.navbar.shrink #logo {
-webkit-transition: all linear 0.3s;
-moz-transition: all linear 0.3s;
-o-transition: all linear 0.3s;
transition: all linear 0.3s;
padding: 10px 60px 10px 0;
}
.navbar.shrink .navbar-nav > li > a {
padding-top: 22px;
padding-bottom: 22px;
-webkit-transition: all linear 0.3s;
-moz-transition: all linear 0.3s;
-o-transition: all linear 0.3s;
transition: all linear 0.3s;
}
}
/* Nav Yamm3 Megamenu */
.yamm .nav, .yamm .collapse, .yamm .dropup, .yamm .dropdown {
position: static;
}
.yamm .container {
position: relative;
}
.yamm .dropdown-menu {
left: auto;
}
.yamm .nav.navbar-right .dropdown-menu {
left: auto;
right: 0;
}
.yamm .yamm-content {
padding: 0 30px 20px 30px;
}
.yamm .dropdown.yamm-fw .dropdown-menu {
left: 0;
right: 0;
}
.yamm a{
color: #5e5e5e;
}
.list-unstyled, .list-unstyled ul {
min-width: 120px;
color: #5e5e5e;
}
/* Reservation Form
-------------------------------------------------- */
#reservation-form {
}
/* Vertical */
#reservation-form .reservation-horizontal, #reservation-form .reservation-vertical, #contact-form .contact-vertical {
-webkit-border-radius: 5px 5px 5px 5px;
border-radius: 5px 5px 5px 5px;
border: 1px solid #ebebeb;
-webkit-box-shadow: 0 3px 0 0 rgba(0,0,0,0.12);
box-shadow: 0 3px 0 0 rgba(0,0,0,0.12);
padding: 30px 30px;
z-index: 9999;
background-color: #fff;
}
#reservation-form .reservation-vertical h2 {
margin-top: 0;
margin-bottom: 12px;
}
#reservation-form .reservation-vertical h4 {
display: inline-block;
margin-top: 0;
margin-bottom: 0;
}
/* Price */
#reservation-form .price {
padding: 10px 25px;
font-weight: bold;
text-align: center;
margin-bottom: 12px;
font-size: 18px;
display: block;
border: 1px dashed #ebebeb;
}
#reservation-form .price h4 {
color: #333;
padding-right: 5px;
}
#reservation-form .price span {
color: #979797;
font-weight: normal;
padding-left: 5px;
font-size: 11px;
}
/* Horizontal */
#reservation-form .reservation-horizontal .col-sm-1, #reservation-form .reservation-horizontal .col-sm-2, #reservation-form .reservation-horizontal .col-sm-3 {
padding-left: 10px;
padding-right: 10px;
margin: 0;
}
#reservation-form .form-inline select.form-control {
width: 100% !important;
}
#reservation-form .form-inline .form-group {
width: 100%;
}
/* Icons */
#reservation-form .popover-icon i {
color: #9f9f9f;
font-size: 18px;
}
#reservation-form .fa.infield {
position: absolute;
float: right;
right: 57px;
margin-top: 35px;
font-size: 14px;
}
#reservation-form .form-inline .fa.infield {
position: absolute;
float: right;
right: 20px;
font-size: 14px;
top: 0;
width: 14px;
}
/* Button */
#reservation-form .col-sm-2 button {
margin-top: 25px;
}
/* Guests */
#reservation-form .guests-select {
z-index: 100;
cursor: pointer;
}
#reservation-form .guests-select .guests {
margin-top: -261px;
width: 200px;
height: auto;
-webkit-border-radius: 5px 5px 5px 5px;
border-radius: 5px 5px 5px 5px;
border: 1px solid #ebebeb;
-webkit-box-shadow: 0 3px 0 0 rgba(0,0,0,0.12);
box-shadow: 0 3px 0 0 rgba(0,0,0,0.12);
z-index: 500;
background-color: #fff;
position: absolute;
padding: 20px;
cursor: default !important;
display: none;
animation-name: fadeIn;
animation-duration: 0.2s;
animation-iteration-count: 1;
animation-timing-function: ease-out;
-webkit-animation-name: fadeIn;
-webkit-animation-duration: 0.2s;
-webkit-animation-iteration-count: 1;
-webkit-animation-timing-function: ease-out;
-moz-animation-name: fadeIn;
-moz-animation-duration: 0.2s;
-moz-animation-iteration-count: 1;
-moz-animation-timing-function: ease-out;
}
#reservation-form .form-inline .guests-select .form-group {
padding-bottom: 15px;
}
/* Datepicker*/
#reservation-form .hasDatepicker {
cursor: pointer;
}
/* Error Message */
.error_message {
color: #F00;
}
/* Rooms
-------------------------------------------------- */
/* Room Thumbnails */
.room-thumb {
width: 356px;
height: 283px;
float: left;
overflow: hidden;
position: relative;
border: 1px solid #ebebeb;
-webkit-box-shadow: 0 2px 0 0 #e0e0e0;
box-shadow: 0 2px 0 0 #e0e0e0;
-webkit-backface-visibility: hidden;
-webkit-perspective: 5000;
}
.room-thumb .mask {
width: 356px;
height: 281px;
position: absolute;
overflow: hidden;
top: 0;
left: 0
}
.room-thumb img {
display: block;
position: relative;
width: 100%;
border-bottom: 1px solid #ebebeb;
}
.room-thumb .main {
border-bottom: 1px solid #ebebeb;
height: 55px;
}
.room-thumb .main h5 {
font-size: 14px;
font-weight: bold;
position: relative;
padding: 5px 0 0 20px;
display: inline-block;
}
.room-thumb .main .price {
display: inline;
float: right;
font-size: 18px;
font-weight: bold;
height: 55px;
padding: 6px 25px;
border-top: none;
border-right: 1px solid #ebebeb;
border-bottom: 1px solid #ebebeb;
border-left: 1px solid #ebebeb;
-webkit-backface-visibility: hidden;
-webkit-perspective: 1000;
}
.room-thumb .main .price span {
display: block;
color: #979797;
font-size: 11px;
font-weight: normal;
text-align: center;
}
.room-thumb .content {
position: relative;
padding: 20px;
text-align: left;
}
.room-thumb .content button {
margin-top: 5px;
}
.room-thumb .content p span {
font-weight: bold;
display: block;
}
.room-thumb .content i {
padding-right: 5px;
}
.room-thumb img {
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
.room-thumb .mask {
background-color: #fff;
-webkit-transform: translateY(228px);
-moz-transform: translateY(228px);
-o-transform: translateY(228px);
-ms-transform: translateY(228px);
transform: translateY(228px);
-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
filter: alpha(opacity=100);
opacity: 1;
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
.room-thumb:hover .mask {
-webkit-transform: translateY(0px);
-moz-transform: translateY(0px);
-o-transform: translateY(0px);
-ms-transform: translateY(0px);
transform: translateY(0px);
}
.room-thumb:hover img {
-webkit-transform: translateY(-228px);
-moz-transform: translateY(-228px);
-o-transform: translateY(-228px);
-ms-transform: translateY(-228px);
transform: translateY(-228px);
}
/* Room List */
.room-list {
margin-top: -60px;
margin-bottom: -60px;
}
.room-list .room-thumb {
margin-bottom: 60px;
}
/* USP's
-------------------------------------------------- */
.usp {
text-align: center;
}
/* Circle */
.box-icon .circle {
-webkit-border-radius: 60px;
-moz-border-radius: 60px;
border-radius: 60px;
padding: 30px;
display: table;
margin: 0 auto;
background-color: #fff;
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
display: inline-block;
position: relative;
float: left;
border: 1px solid;
}
.usp .box-icon .circle {
float: none;
}
.box-icon .circle:hover i {
color: #fff;
animation-name: swing;
animation-duration: 1s;
animation-iteration-count: 1;
animation-timing-function: ease-out;
text-decoration: none;
-webkit-animation-name: swing;
-webkit-animation-duration: 1s;
-webkit-animation-iteration-count: 1;
-webkit-animation-timing-function: ease-out;
-moz-animation-name: swing;
-moz-animation-duration: 1s;
-moz-animation-iteration-count: 1;
-moz-animation-timing-function: ease-out;
}
/* Icon */
.box-icon i {
width: 20px;
height: 10px;
text-align: center;
vertical-align: middle;
-webkit-transition: all 0.6s ease-in-out;
-moz-transition: all 0.6s ease-in-out;
-o-transition: all 0.6s ease-in-out;
-ms-transition: all 0.6s ease-in-out;
transition: all 0.6s ease-in-out;
}
.usp a {
font-weight: bold;
margin-bottom: 20px;
display: block;
}
.box-icon a i {
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
/* Blog
-------------------------------------------------- */
/* Article */
.blog article {
border-bottom: 2px solid #ccc;
padding: 0 0 50px 0;
margin-bottom: 50px;
}
/* Meta */
article .meta {
z-index: 1;
}
article .meta-date {
display: inline-block;
color: #fff;
position: absolute;
font-size: 18px;
font-weight: bold;
z-index: 9;
padding: 6px 16px;
margin: 20px 0 0 0;
-webkit-border-radius: 30px 30px 30px 30px;
border-radius: 30px 30px 30px 30px;
height: 50px;
width: 50px;
line-height: 17px;
text-align: center;
}
article .meta-date span {
display: block;
font-size: 11px;
font-weight: normal;
}
article .meta-author, .meta-category, .meta-comments {
font-size: 12px;
padding: 0px 0 10px 0;
display: inline-block;
color: #979797;
margin-right: 20px;
}
/* Content */
article h2 {
margin-bottom: 5px;
}
article i {
padding: 0 10px 0 0;
}
article p.intro {
padding-bottom: 10px;
}
article iframe {
width: 100%;
border: none;
}
article .video-format {
padding-bottom: 56.25%;
overflow: hidden;
width: 100%;
position:relative;
}
article .video-format iframe{
width: 100%;
height: 100%;
top: 0;
left: 0;
position: absolute;
}
/* Blog Author */
.blog-author {
padding-bottom: 10px;
border-bottom: 1px solid #e9e9e9;
margin-top: -50px;
}
.blog-author img {
float: left;
margin: 13px 17px 15px 0;
border: 1px solid;
}
.blog-author p {
margin: 18px 0 0 0;
}
/* Blog Comments */
.comment {
margin: 20px 0 0 0;
padding-bottom: 20px;
}
.comment p {
margin: 0;
padding: 0 20px 0 20px;
}
.comment .avatar {
display: block;
float: left;
padding: 18px;
}
.comment .avatar img{
border: 1px solid;
}
.comment-text .author {
position: relative;
padding: 15px 0 0 0;
}
.comment-text .author .name {
float: left;
font-weight: bold;
}
.comment-text .author .name:after {
padding: 0 5px 0 5px;
color: #ddd;
content: '|';
font-weight: normal;
}
.comment .reply-button {
position: relative;
z-index: 10;
float: right;
padding: 5px 10px 5px 10px;
color: #fff;
cursor: pointer;
-webkit-transition: all 0.1s ease-in-out;
-moz-transition: all 0.1s ease-in-out;
-ms-transition: all 0.1s ease-in-out;
-o-transition: all 0.1s ease-in-out;
transition: all 0.1s ease-in-out;
}
.reply {
position: relative;
margin-left: 40px;
}
.comment .reply-button:hover {
background-color: #000;
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
.reply-line {
float: left;
margin-left: 20px;
width: 20px;
height: 65px;
border-bottom: solid 1px #ddd;
border-left: solid 1px #ddd;
}
.send-comment {
margin-top: 40px;
}
/* Aside
-------------------------------------------------- */
/* Headings */
aside h3:first-of-type {
margin-top: 0;
}
aside h3 {
padding: 0 0 10px 0;
border-bottom: 1px solid;
}
/* Widget */
aside .widget {
margin-bottom: 50px;
}
/* Widget: Tags */
aside .widget .tags {
padding-top: 5px;
}
aside .widget .tags a {
position: relative;
display: inline-block;
margin: 8px 5px 0 0;
padding: 2px 6px;
color: #fff;
text-decoration: none;
cursor: pointer;
-webkit-transition: all .3s ease;
-moz-transition: all .3s ease;
-ms-transition: all .3s ease;
-o-transition: all .3s ease;
transition: all .3s ease;
}
aside .widget .tags a:hover {
background-color: #000;
}
/* Widget: List Styles */
aside .widget ul {
margin-top: -10px;
list-style-type: none;
}
aside .widget ul a {
display: list-item;
padding-top: 12px;
padding-bottom: 12px;
color: #272727;
text-decoration: none;
}
aside .widget ul.arrow li a:before {
margin-right: 10px;
content: "»";
vertical-align: text-bottom;
font-size: 12px;
}
aside .widget ul a:hover {
position: relative;
}
aside .widget ul li {
margin-bottom: 0;
border-bottom: 1px solid #e9e9e9;
}
aside .widget ul li .badge {
margin-left: 10px;
-webkit-transition: all .3s ease;
-moz-transition: all .3s ease;
-ms-transition: all .3s ease;
-o-transition: all .3s ease;
transition: all .3s ease;
}
/* Widget: Latest News */
aside .widget .news-thumb {
float: left;
}
aside .widget .news-thumb img {
border: 3px solid #ccc;
margin-right: 12px;
-webkit-transition: all .3s ease;
-moz-transition: all .3s ease;
-ms-transition: all .3s ease;
-o-transition: all .3s ease;
transition: all .3s ease;
}
aside .widget .news-thumb img:hover {
opacity: 0.7;
}
aside .widget .news-content h4 {
padding-top: 2px;
}
aside .widget .news-content a {
padding: 0;
}
aside .widget .news-content span a {
color: #ccc;
font-size: 12px;
}
/* Pages
-------------------------------------------------- */
/* 404 Error page*/
.error-404 {
text-align: center;
}
.error-404 h2 {
color: #f5f5f5;
text-align: center;
font-size: 200px;
padding: 30px 0 30px;
}
/* Fontawesome Page */
.fontawesome-icon-list {
position: relative;
padding-top: 20px;
}
.fontawesome-icon-list ul li {
display: inline-block;
float: left;
margin: 0;
width: 270px;
}
.fontawesome-icon-list ul li .fa {
font-size: 20px;
width: 20px;
margin: 0 10px 40px 0;
}
/* Gallery */
.gallery a {
text-decoration: none;
overflow: hidden;
display: block;
}
.gallery a i, .gallery-slider a i {
width: 35px;
height: 35px;
position: absolute;
top: 80%;
left: 50%;
display: block;
margin: -22px 0 0 -22px;
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
border-radius: 20px;
padding: 10px;
color: #fff;
text-align: center;
text-decoration: none;
opacity: 0;
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
.gallery a:hover i, .gallery-slider a:hover i {
top: 45%;
opacity: 1;
transform: translateY(20);
}
.gallery a:hover i, .gallery-slider a:hover i {
opacity: 1;
-webkit-transition: all 0.5s ease-in-out;
-moz-transition: all 0.5s ease-in-out;
-ms-transition: all 0.5s ease-in-out;
-o-transition: all 0.5s ease-in-out;
transition: all 0.5s ease-in-out;
}
/* Bootstrap Components
-------------------------------------------------- */
/* Image styles */
.img-thumbnail {
border: 1px solid #ebebeb;
-webkit-border-radius: 5px 5px 5px 5px;
border-radius: 5px 5px 5px 5px;
}
/* Nav Tabs */
.nav-tabs {
border-bottom: 1px solid #ebebeb;
}
.nav-tabs > li {
float: left;
margin-bottom: -1px;
}
.nav-tabs > li > a {
margin-right: 2px;
line-height: 1.428571429;
border: 1px solid transparent;
border-radius: 4px 4px 0 0;
font-weight: 600;
padding: 15px 20px;
-webkit-transition: all 0.2s ease;
-moz-transition: all 0.2s ease;
-ms-transition: all 0.2s ease;
-o-transition: all 0.2s ease;
transition: all 0.2s ease;
}
.nav-tabs > li > a:hover {
border: 1px solid #ebebeb;
background: #fff;
}
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
color: #555555;
cursor: default;
background-color: #ffffff;
border: 1px solid #ebebeb;
border-bottom-color: transparent;
}
.tab-content {
padding: 20px;
}
/* Nav Pills */
.nav-pills {
margin-top: 30px;
padding: 10px;
}
.nav-pills > li > a {
color: #5e5e5e;
-webkit-transition: all 0.2s ease;
-moz-transition: all 0.2s ease;
-ms-transition: all 0.2s ease;
-o-transition: all 0.2s ease;
transition: all 0.2s ease;
}
/* Call To Action */
#call-to-action {
position: relative;
height: 100%;
margin-bottom: -100px;
}
#call-to-action h1, #call-to-action h2, #call-to-action h3, #call-to-action h4, #call-to-action h5, #call-to-action h6 {
color: #fff;
}
#call-to-action h2 {
margin: 43px 0;
}
#call-to-action .btn {
margin: 35px 0;
}
/* Breadcrumb */
.breadcrumb {
padding: 0;
margin: 30px 0 20px 0;
list-style: none;
background-color: transparent;
}
.breadcrumb > li + li:before {
padding: 0 5px;
color: #bdbdbd;
content: "/\00a0";
}
.breadcrumb > li a {
color: #fff;
padding: 3px 5px;
text-decoration: underline;
}
.breadcrumb > .active {
color: #fff;
}
/* Popover */
.popover-icon {
display: inline-block;
margin-left: 5px;
cursor: pointer;
}
.popover {
font-size: 12px;
color: #5e5e5e;
}
/* Table */
.table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td {
border-top: 1px solid #ebebeb;
}
table i {
padding-right: 5px;
}
/* Panel */
.panel-default {
border: 1px solid #ebebeb;
}
.panel-default > .panel-heading {
border-bottom: 1px solid #ebebeb;
}
/* Pagination */
.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
z-index: 2;
color: #ffffff;
cursor: default;
border-color: #ccc;
}
/* Badge */
.badge {
background: #ccc;
}
/* Blockquote */
blockquote {
margin: 30px 0;
}
blockquote span {
color: #ccc;
}
/* Alerts */
.alert-success {
color: #408c1f;
background-color: #f1ffe0;
border-color: #c2e5b3;
}
.alert-info {
color: #1f659a;
background-color: #d0efff;
border-color: #a4d3f6;
}
.alert-warning {
color: #d29128;
background-color: #fff4e0;
border-color: #f3dfb6;
}
.alert-danger {
color: #bd2323;
background-color: #fadfdf;
border-color: #f1b7c1;
}
/* Footer
-------------------------------------------------- */
/* Base */
footer {
color: #c1c1c1;
background: #3c3c3c;
font-size: 12px;
padding: 50px 0 0 0;
}
footer a {
color: #c1c1c1;
}
footer a:hover, footer a:focus {
color: #fff;
}
footer h4 {
font-size: 14px;
color: #898989;
text-transform: uppercase;
margin: 0 0 30px 0;
}
footer ul {
list-style: none;
padding: 0;
}
footer ul li {
border-bottom: 1px solid #898989;
padding: 10px 0;
}
footer ul li:first-child {
padding-top: 0;
}
footer ul li:last-child {
border-bottom: none;
}
footer .form-control {
border: 1px solid #5b5b5b;
background-color: transparent;
font-size: 12px;
-webkit-box-shadow: inset 0 1px 3px 0 rgba(0,0,0,0.3);
box-shadow: inset 0 1px 3px 0 rgba(0,0,0,0.3);
}
footer .btn-black{
color: #d1d1d1;
}
/* Footer Bottom */
footer .footer-bottom {
background: #272727;
padding: 30px 0;
margin-top: 50px;
line-height: 14px;
}
footer .footer-bottom ul {
list-style: none;
padding: 0;
margin: 0;
}
footer .footer-bottom ul li {
border: none;
padding: 0 10px 0 0;
display: inline-block;
}
footer .footer-bottom ul li:first-child {
padding-top: 0;
}
/* Plugin Styles
-------------------------------------------------- */
/* Datepicker */
#ui-datepicker-div {
padding: 20px !important;
}
#ui-datepicker-div, .ui-datepicker-title {
color: #5e5e5e !important;
}
.ui-widget-content {
-webkit-border-radius: 5px 5px 5px 5px !important;
border-radius: 5px 5px 5px 5px !important;
border: 1px solid #ebebeb !important;
-webkit-box-shadow: 0 3px 0 0 rgba(0,0,0,0.12);
box-shadow: 0 3px 0 0 rgba(0,0,0,0.12);
background-color: #fff;
margin-top: -3px;
}
.ui-widget-header {
background: none !important;
border-top: none !important;
border-right: none !important;
border-bottom: 2px solid !important;
border-left: none !important;
}
.ui-datepicker-header {
-webkit-border-radius: 0 0 0 0 !important;
border-radius: 0 0 0 0 !important;
}
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
background: none !important;
border: 1px solid #e1e1e1 !important;
}
.ui-datepicker table {
margin: 0 !important;
}
.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus {
background: none !important
}
.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight, .ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus, .ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active {
border: 1px solid !important;
}
/* Sticky */
.navbar {
width: 100%;
}
/* Owl Gallery */
#owl-gallery {
padding-top: 1px;
padding-bottom: 1px;
background: #fff;
border-top: 1px solid;
border-bottom: 1px solid;
}
#owl-gallery .item {
margin: 0;
}
#owl-gallery .item img {
display: block;
width: 100%;
height: auto;
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
#owl-gallery .item img:hover {
opacity: 0.5;
}
/* Owl Reviews */
#owl-reviews {
padding: 0 70px;
}
#owl-reviews img {
margin-bottom: 20px;
border: 1px solid;
}
#owl-reviews .text-balloon {
display: inline-block;
border: 1px solid #ebebeb;
padding: 15px;
-webkit-border-radius: 5px 5px 5px 5px;
border-radius: 5px 5px 5px 5px;
-webkit-box-shadow: 0 3px 0 0 rgba(0,0,0,0.12);
box-shadow: 0 3px 0 0 rgba(0,0,0,0.12);
margin: 0 10px 10px 8px;
}
#owl-reviews .text-balloon:before {
content: ' ';
position: absolute;
width: 0;
height: 0;
left: 14px;
top: 30px;
border-top: 7px solid;
border-bottom: 7px solid;
border-right: 10px solid;
border-color: #fff #ebebeb transparent transparent;
}
#owl-reviews .text-balloon:after {
content: ' ';
position: absolute;
width: 0;
height: 0;
left: 16px;
top: 30px;
border-top: 6px solid;
border-bottom: 6px solid;
border-right: 10px solid;
border-color: transparent #fff transparent transparent;
}
#owl-reviews .text-balloon span {
display: block;
padding-top: 5px;
}
.standard-slider .owl-theme .owl-controls .owl-buttons div {
border: 1px solid;
}
.testimonials .owl-theme .owl-controls .owl-buttons div, .standard-slider .owl-theme .owl-controls .owl-buttons div {
-webkit-border-radius: 60px;
-moz-border-radius: 60px;
border-radius: 60px;
padding: 10px;
display: inline-block;
margin: 0 auto;
background-color: #fff;
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
filter: Alpha(Opacity=100);/*IE7 fix*/
opacity: 1;
border: 1px solid;
}
.testimonials .owl-theme .owl-controls .owl-buttons div i, .standard-slider .owl-theme .owl-controls .owl-buttons div i {
width: 35px;
height: 35px;
text-align: center;
}
.testimonials .owl-theme .owl-controls .owl-buttons div:hover i, .standard-slider .owl-theme .owl-controls .owl-buttons div:hover i {
color: #fff;
}
.testimonials .owl-theme .owl-controls .owl-buttons div.owl-prev {
position: absolute;
top: 35%;
left: 0;
}
.testimonials .owl-theme .owl-controls .owl-buttons div.owl-next {
position: absolute;
top: 35%;
right: 20px;
}
.testimonials .owl-theme .owl-controls .owl-buttons div.owl-prev:hover i, .standard-slider .owl-theme .owl-controls .owl-buttons div.owl-prev:hover i {
animation-name: fadeOutLeft;
animation-duration: 1s;
animation-iteration-count: infinite;
animation-timing-function: ease-in-out;
-webkit-animation-name: fadeOutLeft;
-webkit-animation-duration: 1s;
-webkit-animation-iteration-count: infinite;
-webkit-animation-timing-function: ease-in-out;
-moz-animation-name: fadeOutLeft;
-moz-animation-duration: 1s;
-moz-animation-iteration-count: infinite;
-moz-animation-timing-function: ease-in-out;
}
.testimonials .owl-theme .owl-controls .owl-buttons div.owl-next:hover i, .standard-slider .owl-theme .owl-controls .owl-buttons div.owl-next:hover i {
animation-name: fadeOutRight;
animation-duration: 1s;
animation-iteration-count: infinite;
animation-timing-function: ease-in-out;
-webkit-animation-name: fadeOutRight;
-webkit-animation-duration: 1s;
-webkit-animation-iteration-count: infinite;
-webkit-animation-timing-function: ease-in-out;
-moz-animation-name: fadeOutRight;
-moz-animation-duration: 1s;
-moz-animation-iteration-count: infinite;
-moz-animation-timing-function: ease-in-out;
}
.testimonials .owl-theme .owl-controls .owl-buttons div.owl-prev i, .standard-slider .owl-theme .owl-controls .owl-buttons div.owl-prev i {
padding-right: 3px;
padding-right: 0;
}
.testimonials .owl-theme .owl-controls .owl-buttons div.owl-next i, .standard-slider .owl-theme .owl-controls .owl-buttons div.owl-next i {
padding-left: 3px;
padding-right: 0;
}
/* Owl Slider */
.standard-slider.room-slider #owl-standard {
-webkit-box-shadow: 0 3px 0 0 rgba(0,0,0,0.12);
box-shadow: 0 3px 0 0 rgba(0,0,0,0.12);
-webkit-border-radius: 5px 5px 5px 5px;
border-radius: 5px 5px 5px 5px;
}
.standard-slider.room-slider, .standard-slider.room-slider img {
-webkit-border-radius: 5px 5px 5px 5px;
border-radius: 5px 5px 5px 5px;
}
.standard-slider .owl-theme .owl-controls .owl-buttons div{
border: 1px solid;
}
.standard-slider .owl-theme .owl-controls .owl-buttons div.owl-prev {
position: absolute;
top: 40%;
left: 20px;
}
.standard-slider .owl-theme .owl-controls .owl-buttons div.owl-next {
position: absolute;
top: 40%;
right: 20px;
}
/* Parallax */
.parallax-effect {
padding-top: 1px;
padding-bottom: 1px;
background: #fff;
border-top: 1px solid;
border-bottom: 1px solid;
width: 100%;
position: relative;
}
.parallax-effect h1, .parallax-effect h2, .parallax-effect h3, .parallax-effect h4, .parallax-effect h5, .parallax-effect h6 {
color: #fff;
}
.parallax-effect #parallax-image {
color: #fff;
height: 300px;
margin: 0;
padding: 0;
width: 100%;
background-position: center center;
-webkit-background-size: cover;
background-size: cover;
}
.parallax-effect .color-overlay {
position: relative;
height: 100%;
}
.parallax-effect .content {
padding: 50px 0 0 0;
}
.parallax-effect .content h3 {
font-size: 36px;
margin-bottom: 20px;
}
.parallax-effect .content p {
font-size: 24px;
}
.parallax-effect .content button {
margin-top: 50px;
}
.parallax-effect #parallax-pagetitle {
margin-top: -1px;
color: #fff;
height: 140px;
padding: 0;
width: 100%;
background-position: center center;
-webkit-background-size: cover;
background-size: cover;
}
/* Revolution Slider */
.revolution-slider {
padding-bottom: 1px;
background: #fff;
margin-top: 0;
border-bottom: 1px solid;
}
.revolution-slider .bannercontainer {
width: 100%;
position: relative;
padding: 0;
background: #272727;
}
.revolution-slider .banner {
width: 100%;
position: relative;
z-index: 0;
}
.revolution-slider .tp-caption.revolution-starhotel.bigtext {
position: absolute;
color: #fff;
text-shadow: none;
font-weight: 600;
font-size: 45px;
line-height: 55px;
font-family: "Open Sans";
margin: 0px;
border-width: 0px;
border-style: none;
white-space: nowrap;
padding: 0px 4px;
padding-top: 1px;
text-shadow: 0px 3px 3px rgba(0,0,0, 0.3);
}
.revolution-slider .tp-caption.revolution-starhotel.bigtext span {
letter-spacing: -3px;
}
.revolution-slider .tp-caption.revolution-starhotel.bigtext span i {
font-size: 0.5em;
vertical-align: middle;
}
.revolution-slider .tp-caption.revolution-starhotel.smalltext {
position: absolute;
color: #fff;
text-shadow: none;
font-weight: normal;
font-size: 30px;
line-height: 30px;
font-family: "Open Sans";
margin: 0px;
border-width: 0px;
border-style: none;
white-space: nowrap;
padding: 0px 4px;
padding-top: 1px;
text-shadow: 0px 3px 3px rgba(0,0,0, 0.3);
}
/* Waypoints */
.appear {
opacity: 0;
}
.animated {
opacity: 1;
}
/* Go-Top Button */
#go-top {
position: fixed;
float: right;
right: 44px;
bottom: 44px;
z-index: 9999;
display: none;
cursor: pointer;
-webkit-border-radius: 60px;
-moz-border-radius: 60px;
border-radius: 60px;
padding: 10px;
background-color: #fff;
opacity: 0.75;
border: 1px solid;
}
#go-top:hover {
border-color: #fff;
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
#go-top i {
width: 27px;
text-align: center;
}
#go-top:hover i {
color: #fff;
}
#go-top:hover i {
animation-name: fadeOutUp;
animation-duration: 1s;
animation-iteration-count: infinite;
animation-timing-function: ease-in-out;
-webkit-animation-name: fadeOutUp;
-webkit-animation-duration: 1s;
-webkit-animation-iteration-count: infinite;
-webkit-animation-timing-function: ease-in-out;
-moz-animation-name: fadeOutUp;
-moz-animation-duration: 1s;
-moz-animation-iteration-count: infinite;
-moz-animation-timing-function: ease-in-out;
}
/* Isotope */
/* Isotope Filtering */
.isotope-item {
z-index: 2;
}
.isotope-hidden.isotope-item {
pointer-events: none;
z-index: 1;
}
/* Isotope CSS3 transitions */
.isotope, .isotope .isotope-item {
-webkit-transition-duration: 0.8s;
-moz-transition-duration: 0.8s;
-ms-transition-duration: 0.8s;
-o-transition-duration: 0.8s;
transition-duration: 0.8s;
}
.isotope {
-webkit-transition-property: height, width;
-moz-transition-property: height, width;
-ms-transition-property: height, width;
-o-transition-property: height, width;
transition-property: height, width;
}
.isotope .isotope-item {
-webkit-transition-property: -webkit-transform, opacity;
-moz-transition-property: -moz-transform, opacity;
-ms-transition-property: -ms-transform, opacity;
-o-transition-property: -o-transform, opacity;
transition-property: transform, opacity;
}
/* Disabling Isotope CSS3 transitions */
.isotope.no-transition, .isotope.no-transition .isotope-item, .isotope .isotope-item.no-transition {
-webkit-transition-duration: 0s;
-moz-transition-duration: 0s;
-ms-transition-duration: 0s;
-o-transition-duration: 0s;
transition-duration: 0s;
}
.isotope-item {
z-index: 2;
margin: 0 -1px;
}
.isotope-hidden.isotope-item {
pointer-events: none;
z-index: 1;
}
/* Gmap */
#map {
width: 100%;
height: 300px;
overflow: visible !important;
border: 1px solid;
margin-top: -1px;
}
#map img {
max-width: none !important;
} |
_posts/tumblr/2013-11-13-come-to-introduction-to-elasticsearch-at-gilt-on.html | gilt/tech-blog | ---
redirect_to:
- http://tech.hbc.com/2013-11-13-come-to-introduction-to-elasticsearch-at-gilt-on.html
layout:: post
title: Come to "Introduction to Elasticsearch" at Gilt on Nov. 18!
date: '2013-11-13T13:29:00-05:00'
tags:
- NYC Search Discovery and Analytics
- Lucene
- Solr
- search
- gilt
- gilttech
- meetups
- Otis Gospodnetić
- Mahout
- Nutch
- Open Relevance
- Apache
- open source
- Radu Gheorghe
- Elasticsearch
tumblr_url: http://tech.gilt.com/post/66887625991/come-to-introduction-to-elasticsearch-at-gilt-on
---
<p><img src="http://media.tumblr.com/8a4f2ea5a6f4ae70506fded28ea9303f/tumblr_inline_mw7sr0Fmqk1s17bu5.png"/></p>
<p></p>
<p>Interested in Lucene/Solr, Elasticsearch and other search tools? Then come to Gilt’s Manhattan office on Monday, Nov. 18 for “Introduction to ElasticSearch,” the next event organized by the <strong><a href="http://www.meetup.com/NYC-Search-and-Discovery/" target="_blank">NYC Search, Discovery & Analytics</a></strong> meetup group. Hosted by Otis Gospodnetić–founder of Sematext and a committer to Apache’s Lucene, Solr, Mahout, Nutch and Open Relevance projects–the meetup group is for anyone who is interested in search, discovery, analytics and related fields: information gathering, extraction, and retrieval, natural language processing, text analytics, data mining, sentiment detection, named entity recognition, and visualizations.</p>
<p>Monday’s featured presenter is Sematext Software Engineer Radu Gheorghe, who will discuss what <span>Elasticsearch is and how it can act as your NoSQL data-store while providing quick, flexible and scalable search (for example, indexing logs or storing your product information so customers can search on them). Radu’s presentation includes a demo that meetup attendees can join.<br/></span></p>
<p><span>There are a few spots left for the meetup, so <strong><a href="http://www.meetup.com/NYC-Search-and-Discovery/events/69084842/" target="_blank">RSVP here ASAP</a></strong>! Gilt will provide food and drinks. <br/></span></p>
|
MCFly/Umbraco/Views/components/users/change-password.html | TimGeyssens/MCFly | <div>
<div class="alert alert-success text-center" ng-hide="!vm.passwordValues.generatedPassword">
<small>Password has been reset to:</small>
<br />
<strong>{{vm.passwordValues.generatedPassword}}</strong>
</div>
<div ng-switch="vm.changing">
<div ng-switch-when="false">
<a href="" ng-click="vm.doChange()" class="btn btn-small">
<localize key="general_changePassword">Change password</localize>
</a>
</div>
<div ng-switch-when="true">
<ng-form name="changePasswordForm">
<umb-control-group alias="resetPassword" label="@user_resetPassword" ng-show="vm.config.enableReset">
<input type="checkbox" ng-model="vm.passwordValues.reset"
name="resetPassword"
val-server-field="resetPassword"
no-dirty-check
ng-change="vm.showReset = !vm.showReset" />
<span ng-messages="changePasswordForm.resetPassword.$error" show-validation-on-submit>
<span class="help-inline" ng-message="valServerField">{{changePasswordForm.resetPassword.errorMsg}}</span>
</span>
</umb-control-group>
<!-- we need to show the old pass field when the provider cannot retrieve the password -->
<umb-control-group alias="oldPassword" label="@user_oldPassword" ng-if="vm.showOldPass()" required="true">
<input type="password" name="oldPassword" ng-model="vm.passwordValues.oldPassword"
class="input-block-level umb-textstring textstring"
required
val-server-field="oldPassword"
no-dirty-check />
<span ng-messages="changePasswordForm.oldPassword.$error" show-validation-on-submit>
<span class="help-inline" ng-message="required">Required</span>
<span class="help-inline" ng-message="valServerField">{{changePasswordForm.oldPassword.errorMsg}}</span>
</span>
</umb-control-group>
<umb-control-group alias="password" label="@user_newPassword" ng-if="!vm.showReset" required="true">
<input type="password" name="password" ng-model="vm.passwordValues.newPassword"
class="input-block-level umb-textstring textstring"
required
val-server-field="password"
ng-minlength="{{vm.config.minPasswordLength}}"
no-dirty-check />
<span ng-messages="changePasswordForm.password.$error" show-validation-on-submit>
<span class="help-inline" ng-message="required">Required</span>
<span class="help-inline" ng-message="minlength">Minimum {{vm.config.minPasswordLength}} characters</span>
<span class="help-inline" ng-message="valServerField">{{changePasswordForm.password.errorMsg}}</span>
</span>
</umb-control-group>
<umb-control-group alias="confirmPassword" label="@user_confirmNewPassword" ng-if="!vm.showReset" required="true">
<input type="password" name="confirmPassword" ng-model="vm.passwordValues.confirm"
class="input-block-level umb-textstring textstring"
val-compare="password"
no-dirty-check />
<span ng-messages="changePasswordForm.confirmPassword.$error" show-validation-on-submit>
<span class="help-inline" ng-message="valCompare"><localize key="user_passwordMismatch">The confirmed password doesn't match the new password!</localize></span>
</span>
</umb-control-group>
<a href="" ng-click="vm.cancelChange()" ng-show="vm.showCancelBtn()" class="btn btn-small">
<localize key="general_cancel">Cancel</localize>
</a>
</ng-form>
</div>
</div>
</div>
|
yelpvis/static/yelpvis/css/parallelspaces.css | intuinno/vistalk | div#movieCanvas {
width:40%;
margin:0;
padding-bottom:1%
}
div#userCanvas {
display:inline-block;
width:40%;
margin:0px 0px 0px 30px;
padding: 0;
}
div#legend {
display:inline-block;
padding: 0px 0px 0px 0px;
margin:0;
background-color:white;
width:200px;
}
div#movieTitle {
display:inline;
margin:0px 10px 0px 100px;
}
div#wordTitle {
display:inline;
margin:0px 10px 0px 200px;
}
div.smallLeft {
margin:10px 60px 10px 0px;
}
div.smallRight {
margin:10px 0px 10px 60px;
}
div.searchBox {
display: inline-block;
margin:0;
padding:0;
width:200px;
}
div.smallRightTogether {
float:right;
margin:10px 0px 10px 60px;
}
div.smallCenterTogether {
float:right;
margin:0px auto;
}
div.SpaceTitle {
height:65px;
}
#states { fill: none; stroke: #555555; stroke-width: 0.5px; }
.selectedCircle {
opacity: 0.5;
/*stroke-width: 5;*/
stroke-opacity: 0.5;
}
svg .star {
/*stroke-width: 5;*/
stroke-opacity: 0.5;
opacity:0.5;
}
#VisDocksvg {
padding: 0px;
}
#VisDocksvg {
padding: 0px;
fill:black;
}
svg {
font: 10px sans-serif;
padding: 0px;
width: 100%;
}
.axis
.frame {
shape-rendering: crispEdges;
}
.axis line {
fill:none;
stroke: black;
shape-rendering: crispEdges;
}
.axis line {
stroke: #ddd;
}
.axis path {
fill: none;
stroke:black;
}
.frame {
fill: none;
strole: #aaa;
}
.extent {
fill:#000;
fill-opacity: .125;
stroke: #fff;
}
path {
opacity: 0.5;
stroke:black;
}
.deok {
margin: 10px 60px 10px 60px;
}
#VisDocksvg {
padding: 0px;
}
.VisDocksvg {
padding: 0px;
}
/*-facebook and twitter connect-*/
/*------------------------- Footer ------------------------*/
.footer {
}
.footer .connect {
clear:both;
float:left;
margin:0 0 45px;
overflow:hidden;
padding:34px 0 0;
}
.footer .connect a#twitter {
background:url(../images/icons.png) no-repeat;
color:#8d8d8d;
display:block;
float:left;
font-size:12px;
height:21px;
letter-spacing:.05em;
line-height:24px;
margin:0 28px 0 0;
padding:0 0 0 35px;
text-decoration:none;
}
.footer .connect a#twitter:hover {
background:url(../images/icons.png) no-repeat 0 -22px;
}
.footer .connect a#facebook {
background:url(../images/icons.png) no-repeat 0 -44px;
color:#8d8d8d;
display:block;
float:left;
font-size:12px;
height:21px;
letter-spacing:.05em;
line-height:24px;
padding:0 0 0 17px;
text-decoration:none;
margin:0 28px 0 0;
}
.footer .connect a#facebook:hover {
background:url(../images/icons.png) no-repeat 0 -66px;
}
.footer .connect a#googleplus:hover {
background:url(../images/icons.png) no-repeat 0 -110px;
}
.footer p.footnote {
color:#8d8d8d;
float:right;
font-size:12px;
letter-spacing:.05em;
line-height:20px;
margin:36px 0 0;
}
|
app/index.html | leopic/cmpClienteWeb | <!DOCTYPE html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Cliente REST</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="bower_components/html5-boilerplate/css/normalize.css">
<link rel="stylesheet" href="bower_components/html5-boilerplate/css/main.css">
<link rel="stylesheet" href="app.css">
<script src="bower_components/html5-boilerplate/js/vendor/modernizr-2.6.2.min.js"></script>
</head>
<body ng-app="CarrosApp">
<div class="container" ng-controller="MainCtrl">
<h1>Un carro</h1>
<pre>{{carro}}</pre>
<h1>Todos los carros</h1>
<ul>
<li ng-repeat="unCarro in carros"><pre>{{unCarro}}</pre></li>
</ul>
</div>
<script src="bower_components/angular/angular.js"></script>
<script src="bower_components/angular-route/angular-route.js"></script>
<script src="app.js"></script>
<script src="controllers.js"></script>
<script src="services.js"></script>
</body>
</html>
|
api/class-PHPParser_Node_Expr_AssignDiv.html | Tecnocreaciones/VzlaGovernmentTemplateDeveloperSeed | <!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="ApiGen 2.8.0" />
<title>Class PHPParser_Node_Expr_AssignDiv | seip</title>
<script type="text/javascript" src="resources/combined.js?784181472"></script>
<script type="text/javascript" src="elementlist.js?3927760630"></script>
<link rel="stylesheet" type="text/css" media="all" href="resources/style.css?3505392360" />
</head>
<body>
<div id="left">
<div id="menu">
<a href="index.html" title="Overview"><span>Overview</span></a>
<div id="groups">
<h3>Namespaces</h3>
<ul>
<li><a href="namespace-Acme.html">Acme<span></span></a>
<ul>
<li><a href="namespace-Acme.DemoBundle.html">DemoBundle<span></span></a>
<ul>
<li><a href="namespace-Acme.DemoBundle.Command.html">Command</a>
</li>
<li><a href="namespace-Acme.DemoBundle.Controller.html">Controller</a>
</li>
<li><a href="namespace-Acme.DemoBundle.DependencyInjection.html">DependencyInjection</a>
</li>
<li><a href="namespace-Acme.DemoBundle.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Acme.DemoBundle.Form.html">Form</a>
</li>
<li><a href="namespace-Acme.DemoBundle.Proxy.html">Proxy<span></span></a>
<ul>
<li><a href="namespace-Acme.DemoBundle.Proxy.__CG__.html">__CG__<span></span></a>
<ul>
<li><a href="namespace-Acme.DemoBundle.Proxy.__CG__.Symfony.html">Symfony<span></span></a>
<ul>
<li><a href="namespace-Acme.DemoBundle.Proxy.__CG__.Symfony.Component.html">Component<span></span></a>
<ul>
<li><a href="namespace-Acme.DemoBundle.Proxy.__CG__.Symfony.Component.Security.html">Security<span></span></a>
<ul>
<li><a href="namespace-Acme.DemoBundle.Proxy.__CG__.Symfony.Component.Security.Acl.html">Acl<span></span></a>
<ul>
<li><a href="namespace-Acme.DemoBundle.Proxy.__CG__.Symfony.Component.Security.Acl.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Acme.DemoBundle.Proxy.__CG__.Symfony.Component.Security.Acl.Tests.Domain.html">Domain</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Acme.DemoBundle.Proxy.__CG__.Symfony.Component.Security.Core.html">Core<span></span></a>
<ul>
<li><a href="namespace-Acme.DemoBundle.Proxy.__CG__.Symfony.Component.Security.Core.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Acme.DemoBundle.Proxy.__CG__.Symfony.Component.Security.Core.Tests.Util.html">Util</a>
</li>
</ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li>
<li><a href="namespace-Acme.DemoBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Acme.DemoBundle.Tests.Controller.html">Controller</a>
</li>
</ul></li>
<li><a href="namespace-Acme.DemoBundle.Twig.html">Twig<span></span></a>
<ul>
<li><a href="namespace-Acme.DemoBundle.Twig.Extension.html">Extension</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-Alpha.html">Alpha</a>
</li>
<li><a href="namespace-Apc.html">Apc<span></span></a>
<ul>
<li><a href="namespace-Apc.NamespaceCollision.html">NamespaceCollision<span></span></a>
<ul>
<li><a href="namespace-Apc.NamespaceCollision.A.html">A<span></span></a>
<ul>
<li><a href="namespace-Apc.NamespaceCollision.A.B.html">B</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Apc.Namespaced.html">Namespaced</a>
</li>
</ul></li>
<li><a href="namespace-Assetic.html">Assetic<span></span></a>
<ul>
<li><a href="namespace-Assetic.Asset.html">Asset<span></span></a>
<ul>
<li><a href="namespace-Assetic.Asset.Iterator.html">Iterator</a>
</li>
</ul></li>
<li><a href="namespace-Assetic.Cache.html">Cache</a>
</li>
<li><a href="namespace-Assetic.Exception.html">Exception</a>
</li>
<li><a href="namespace-Assetic.Extension.html">Extension<span></span></a>
<ul>
<li><a href="namespace-Assetic.Extension.Twig.html">Twig</a>
</li>
</ul></li>
<li><a href="namespace-Assetic.Factory.html">Factory<span></span></a>
<ul>
<li><a href="namespace-Assetic.Factory.Loader.html">Loader</a>
</li>
<li><a href="namespace-Assetic.Factory.Resource.html">Resource</a>
</li>
<li><a href="namespace-Assetic.Factory.Worker.html">Worker</a>
</li>
</ul></li>
<li><a href="namespace-Assetic.Filter.html">Filter<span></span></a>
<ul>
<li><a href="namespace-Assetic.Filter.GoogleClosure.html">GoogleClosure</a>
</li>
<li><a href="namespace-Assetic.Filter.Sass.html">Sass</a>
</li>
<li><a href="namespace-Assetic.Filter.Yui.html">Yui</a>
</li>
</ul></li>
<li><a href="namespace-Assetic.Util.html">Util</a>
</li>
</ul></li>
<li><a href="namespace-Bazinga.html">Bazinga<span></span></a>
<ul>
<li><a href="namespace-Bazinga.Bundle.html">Bundle<span></span></a>
<ul>
<li><a href="namespace-Bazinga.Bundle.JsTranslationBundle.html">JsTranslationBundle<span></span></a>
<ul>
<li><a href="namespace-Bazinga.Bundle.JsTranslationBundle.Command.html">Command</a>
</li>
<li><a href="namespace-Bazinga.Bundle.JsTranslationBundle.Controller.html">Controller</a>
</li>
<li><a href="namespace-Bazinga.Bundle.JsTranslationBundle.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Bazinga.Bundle.JsTranslationBundle.DependencyInjection.Compiler.html">Compiler</a>
</li>
</ul></li>
<li><a href="namespace-Bazinga.Bundle.JsTranslationBundle.Dumper.html">Dumper</a>
</li>
<li><a href="namespace-Bazinga.Bundle.JsTranslationBundle.Finder.html">Finder</a>
</li>
<li><a href="namespace-Bazinga.Bundle.JsTranslationBundle.Tests.html">Tests</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Bazinga.JsTranslationBundle.html">JsTranslationBundle<span></span></a>
<ul>
<li><a href="namespace-Bazinga.JsTranslationBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Bazinga.JsTranslationBundle.Tests.Controller.html">Controller</a>
</li>
<li><a href="namespace-Bazinga.JsTranslationBundle.Tests.Finder.html">Finder</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-Beta.html">Beta</a>
</li>
<li><a href="namespace-Blameable.html">Blameable<span></span></a>
<ul>
<li><a href="namespace-Blameable.Fixture.html">Fixture<span></span></a>
<ul>
<li><a href="namespace-Blameable.Fixture.Document.html">Document</a>
</li>
<li><a href="namespace-Blameable.Fixture.Entity.html">Entity</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-ClassesWithParents.html">ClassesWithParents</a>
</li>
<li><a href="namespace-ClassLoaderTest.html">ClassLoaderTest</a>
</li>
<li><a href="namespace-ClassMap.html">ClassMap</a>
</li>
<li><a href="namespace-Composer.html">Composer<span></span></a>
<ul>
<li><a href="namespace-Composer.Autoload.html">Autoload</a>
</li>
</ul></li>
<li><a href="namespace-Container14.html">Container14</a>
</li>
<li><a href="namespace-Doctrine.html">Doctrine<span></span></a>
<ul>
<li><a href="namespace-Doctrine.Bundle.html">Bundle<span></span></a>
<ul>
<li><a href="namespace-Doctrine.Bundle.DoctrineBundle.html">DoctrineBundle<span></span></a>
<ul>
<li><a href="namespace-Doctrine.Bundle.DoctrineBundle.Command.html">Command<span></span></a>
<ul>
<li><a href="namespace-Doctrine.Bundle.DoctrineBundle.Command.Proxy.html">Proxy</a>
</li>
</ul></li>
<li><a href="namespace-Doctrine.Bundle.DoctrineBundle.Controller.html">Controller</a>
</li>
<li><a href="namespace-Doctrine.Bundle.DoctrineBundle.DataCollector.html">DataCollector</a>
</li>
<li><a href="namespace-Doctrine.Bundle.DoctrineBundle.DependencyInjection.html">DependencyInjection</a>
</li>
<li><a href="namespace-Doctrine.Bundle.DoctrineBundle.Mapping.html">Mapping</a>
</li>
<li><a href="namespace-Doctrine.Bundle.DoctrineBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Doctrine.Bundle.DoctrineBundle.Tests.DependencyInjection.html">DependencyInjection</a>
</li>
</ul></li>
<li><a href="namespace-Doctrine.Bundle.DoctrineBundle.Twig.html">Twig</a>
</li>
</ul></li>
<li><a href="namespace-Doctrine.Bundle.FixturesBundle.html">FixturesBundle<span></span></a>
<ul>
<li><a href="namespace-Doctrine.Bundle.FixturesBundle.Command.html">Command</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Doctrine.Common.html">Common<span></span></a>
<ul>
<li><a href="namespace-Doctrine.Common.Annotations.html">Annotations<span></span></a>
<ul>
<li><a href="namespace-Doctrine.Common.Annotations.Annotation.html">Annotation</a>
</li>
</ul></li>
<li><a href="namespace-Doctrine.Common.Cache.html">Cache</a>
</li>
<li><a href="namespace-Doctrine.Common.Collections.html">Collections<span></span></a>
<ul>
<li><a href="namespace-Doctrine.Common.Collections.Expr.html">Expr</a>
</li>
</ul></li>
<li><a href="namespace-Doctrine.Common.DataFixtures.html">DataFixtures<span></span></a>
<ul>
<li><a href="namespace-Doctrine.Common.DataFixtures.Event.html">Event<span></span></a>
<ul>
<li><a href="namespace-Doctrine.Common.DataFixtures.Event.Listener.html">Listener</a>
</li>
</ul></li>
<li><a href="namespace-Doctrine.Common.DataFixtures.Exception.html">Exception</a>
</li>
<li><a href="namespace-Doctrine.Common.DataFixtures.Executor.html">Executor</a>
</li>
<li><a href="namespace-Doctrine.Common.DataFixtures.Purger.html">Purger</a>
</li>
</ul></li>
<li><a href="namespace-Doctrine.Common.Inflector.html">Inflector</a>
</li>
<li><a href="namespace-Doctrine.Common.Lexer.html">Lexer</a>
</li>
<li><a href="namespace-Doctrine.Common.Persistence.html">Persistence<span></span></a>
<ul>
<li><a href="namespace-Doctrine.Common.Persistence.Event.html">Event</a>
</li>
<li><a href="namespace-Doctrine.Common.Persistence.Mapping.html">Mapping<span></span></a>
<ul>
<li><a href="namespace-Doctrine.Common.Persistence.Mapping.Driver.html">Driver</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Doctrine.Common.Proxy.html">Proxy<span></span></a>
<ul>
<li><a href="namespace-Doctrine.Common.Proxy.Exception.html">Exception</a>
</li>
</ul></li>
<li><a href="namespace-Doctrine.Common.Reflection.html">Reflection</a>
</li>
<li><a href="namespace-Doctrine.Common.Util.html">Util</a>
</li>
</ul></li>
<li><a href="namespace-Doctrine.DBAL.html">DBAL<span></span></a>
<ul>
<li><a href="namespace-Doctrine.DBAL.Cache.html">Cache</a>
</li>
<li><a href="namespace-Doctrine.DBAL.Connections.html">Connections</a>
</li>
<li><a href="namespace-Doctrine.DBAL.Driver.html">Driver<span></span></a>
<ul>
<li><a href="namespace-Doctrine.DBAL.Driver.DrizzlePDOMySql.html">DrizzlePDOMySql</a>
</li>
<li><a href="namespace-Doctrine.DBAL.Driver.IBMDB2.html">IBMDB2</a>
</li>
<li><a href="namespace-Doctrine.DBAL.Driver.Mysqli.html">Mysqli</a>
</li>
<li><a href="namespace-Doctrine.DBAL.Driver.OCI8.html">OCI8</a>
</li>
<li><a href="namespace-Doctrine.DBAL.Driver.PDOIbm.html">PDOIbm</a>
</li>
<li><a href="namespace-Doctrine.DBAL.Driver.PDOMySql.html">PDOMySql</a>
</li>
<li><a href="namespace-Doctrine.DBAL.Driver.PDOOracle.html">PDOOracle</a>
</li>
<li><a href="namespace-Doctrine.DBAL.Driver.PDOPgSql.html">PDOPgSql</a>
</li>
<li><a href="namespace-Doctrine.DBAL.Driver.PDOSqlite.html">PDOSqlite</a>
</li>
<li><a href="namespace-Doctrine.DBAL.Driver.PDOSqlsrv.html">PDOSqlsrv</a>
</li>
<li><a href="namespace-Doctrine.DBAL.Driver.SQLSrv.html">SQLSrv</a>
</li>
</ul></li>
<li><a href="namespace-Doctrine.DBAL.Event.html">Event<span></span></a>
<ul>
<li><a href="namespace-Doctrine.DBAL.Event.Listeners.html">Listeners</a>
</li>
</ul></li>
<li><a href="namespace-Doctrine.DBAL.Id.html">Id</a>
</li>
<li><a href="namespace-Doctrine.DBAL.Logging.html">Logging</a>
</li>
<li><a href="namespace-Doctrine.DBAL.Platforms.html">Platforms<span></span></a>
<ul>
<li><a href="namespace-Doctrine.DBAL.Platforms.Keywords.html">Keywords</a>
</li>
</ul></li>
<li><a href="namespace-Doctrine.DBAL.Portability.html">Portability</a>
</li>
<li><a href="namespace-Doctrine.DBAL.Query.html">Query<span></span></a>
<ul>
<li><a href="namespace-Doctrine.DBAL.Query.Expression.html">Expression</a>
</li>
</ul></li>
<li><a href="namespace-Doctrine.DBAL.Schema.html">Schema<span></span></a>
<ul>
<li><a href="namespace-Doctrine.DBAL.Schema.Synchronizer.html">Synchronizer</a>
</li>
<li><a href="namespace-Doctrine.DBAL.Schema.Visitor.html">Visitor</a>
</li>
</ul></li>
<li><a href="namespace-Doctrine.DBAL.Sharding.html">Sharding<span></span></a>
<ul>
<li><a href="namespace-Doctrine.DBAL.Sharding.ShardChoser.html">ShardChoser</a>
</li>
<li><a href="namespace-Doctrine.DBAL.Sharding.SQLAzure.html">SQLAzure<span></span></a>
<ul>
<li><a href="namespace-Doctrine.DBAL.Sharding.SQLAzure.Schema.html">Schema</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Doctrine.DBAL.Tools.html">Tools<span></span></a>
<ul>
<li><a href="namespace-Doctrine.DBAL.Tools.Console.html">Console<span></span></a>
<ul>
<li><a href="namespace-Doctrine.DBAL.Tools.Console.Command.html">Command</a>
</li>
<li><a href="namespace-Doctrine.DBAL.Tools.Console.Helper.html">Helper</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Doctrine.DBAL.Types.html">Types</a>
</li>
</ul></li>
<li><a href="namespace-Doctrine.ORM.html">ORM<span></span></a>
<ul>
<li><a href="namespace-Doctrine.ORM.Decorator.html">Decorator</a>
</li>
<li><a href="namespace-Doctrine.ORM.Event.html">Event</a>
</li>
<li><a href="namespace-Doctrine.ORM.Id.html">Id</a>
</li>
<li><a href="namespace-Doctrine.ORM.Internal.html">Internal<span></span></a>
<ul>
<li><a href="namespace-Doctrine.ORM.Internal.Hydration.html">Hydration</a>
</li>
</ul></li>
<li><a href="namespace-Doctrine.ORM.Mapping.html">Mapping<span></span></a>
<ul>
<li><a href="namespace-Doctrine.ORM.Mapping.Builder.html">Builder</a>
</li>
<li><a href="namespace-Doctrine.ORM.Mapping.Driver.html">Driver</a>
</li>
</ul></li>
<li><a href="namespace-Doctrine.ORM.Persisters.html">Persisters</a>
</li>
<li><a href="namespace-Doctrine.ORM.Proxy.html">Proxy</a>
</li>
<li><a href="namespace-Doctrine.ORM.Query.html">Query<span></span></a>
<ul>
<li><a href="namespace-Doctrine.ORM.Query.AST.html">AST<span></span></a>
<ul>
<li><a href="namespace-Doctrine.ORM.Query.AST.Functions.html">Functions</a>
</li>
</ul></li>
<li><a href="namespace-Doctrine.ORM.Query.Exec.html">Exec</a>
</li>
<li><a href="namespace-Doctrine.ORM.Query.Expr.html">Expr</a>
</li>
<li><a href="namespace-Doctrine.ORM.Query.Filter.html">Filter</a>
</li>
</ul></li>
<li><a href="namespace-Doctrine.ORM.Repository.html">Repository</a>
</li>
<li><a href="namespace-Doctrine.ORM.Tools.html">Tools<span></span></a>
<ul>
<li><a href="namespace-Doctrine.ORM.Tools.Console.html">Console<span></span></a>
<ul>
<li><a href="namespace-Doctrine.ORM.Tools.Console.Command.html">Command<span></span></a>
<ul>
<li><a href="namespace-Doctrine.ORM.Tools.Console.Command.ClearCache.html">ClearCache</a>
</li>
<li><a href="namespace-Doctrine.ORM.Tools.Console.Command.SchemaTool.html">SchemaTool</a>
</li>
</ul></li>
<li><a href="namespace-Doctrine.ORM.Tools.Console.Helper.html">Helper</a>
</li>
</ul></li>
<li><a href="namespace-Doctrine.ORM.Tools.Event.html">Event</a>
</li>
<li><a href="namespace-Doctrine.ORM.Tools.Export.html">Export<span></span></a>
<ul>
<li><a href="namespace-Doctrine.ORM.Tools.Export.Driver.html">Driver</a>
</li>
</ul></li>
<li><a href="namespace-Doctrine.ORM.Tools.Pagination.html">Pagination</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Doctrine.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Doctrine.Tests.Common.html">Common<span></span></a>
<ul>
<li><a href="namespace-Doctrine.Tests.Common.Annotations.html">Annotations<span></span></a>
<ul>
<li><a href="namespace-Doctrine.Tests.Common.Annotations.Bar.html">Bar</a>
</li>
<li><a href="namespace-Doctrine.Tests.Common.Annotations.Fixtures.html">Fixtures<span></span></a>
<ul>
<li><a href="namespace-Doctrine.Tests.Common.Annotations.Fixtures.Annotation.html">Annotation</a>
</li>
</ul></li>
<li><a href="namespace-Doctrine.Tests.Common.Annotations.Foo.html">Foo</a>
</li>
<li><a href="namespace-Doctrine.Tests.Common.Annotations.FooBar.html">FooBar</a>
</li>
<li><a href="namespace-Doctrine.Tests.Common.Annotations.Ticket.html">Ticket<span></span></a>
<ul>
<li><a href="namespace-Doctrine.Tests.Common.Annotations.Ticket.Doctrine.html">Doctrine<span></span></a>
<ul>
<li><a href="namespace-Doctrine.Tests.Common.Annotations.Ticket.Doctrine.ORM.html">ORM<span></span></a>
<ul>
<li><a href="namespace-Doctrine.Tests.Common.Annotations.Ticket.Doctrine.ORM.Mapping.html">Mapping</a>
</li>
</ul></li></ul></li></ul></li></ul></li>
<li><a href="namespace-Doctrine.Tests.Common.Cache.html">Cache</a>
</li>
<li><a href="namespace-Doctrine.Tests.Common.Collections.html">Collections</a>
</li>
<li><a href="namespace-Doctrine.Tests.Common.DataFixtures.html">DataFixtures<span></span></a>
<ul>
<li><a href="namespace-Doctrine.Tests.Common.DataFixtures.Executor.html">Executor</a>
</li>
<li><a href="namespace-Doctrine.Tests.Common.DataFixtures.TestEntity.html">TestEntity</a>
</li>
<li><a href="namespace-Doctrine.Tests.Common.DataFixtures.TestFixtures.html">TestFixtures</a>
</li>
</ul></li>
<li><a href="namespace-Doctrine.Tests.Common.Inflector.html">Inflector</a>
</li>
<li><a href="namespace-Doctrine.Tests.Common.Persistence.html">Persistence<span></span></a>
<ul>
<li><a href="namespace-Doctrine.Tests.Common.Persistence.Mapping.html">Mapping</a>
</li>
</ul></li>
<li><a href="namespace-Doctrine.Tests.Common.Proxy.html">Proxy</a>
</li>
<li><a href="namespace-Doctrine.Tests.Common.Reflection.html">Reflection<span></span></a>
<ul>
<li><a href="namespace-Doctrine.Tests.Common.Reflection.Dummies.html">Dummies</a>
</li>
</ul></li>
<li><a href="namespace-Doctrine.Tests.Common.Util.html">Util</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-Entity.html">Entity<span></span></a>
<ul>
<li><a href="namespace-Entity.Repository.html">Repository</a>
</li>
</ul></li>
<li><a href="namespace-Fixtures.html">Fixtures<span></span></a>
<ul>
<li><a href="namespace-Fixtures.Bundles.html">Bundles<span></span></a>
<ul>
<li><a href="namespace-Fixtures.Bundles.AnnotationsBundle.html">AnnotationsBundle<span></span></a>
<ul>
<li><a href="namespace-Fixtures.Bundles.AnnotationsBundle.Entity.html">Entity</a>
</li>
</ul></li>
<li><a href="namespace-Fixtures.Bundles.Vendor.html">Vendor<span></span></a>
<ul>
<li><a href="namespace-Fixtures.Bundles.Vendor.AnnotationsBundle.html">AnnotationsBundle<span></span></a>
<ul>
<li><a href="namespace-Fixtures.Bundles.Vendor.AnnotationsBundle.Entity.html">Entity</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Fixtures.Bundles.XmlBundle.html">XmlBundle<span></span></a>
<ul>
<li><a href="namespace-Fixtures.Bundles.XmlBundle.Entity.html">Entity</a>
</li>
</ul></li>
<li><a href="namespace-Fixtures.Bundles.YamlBundle.html">YamlBundle<span></span></a>
<ul>
<li><a href="namespace-Fixtures.Bundles.YamlBundle.Entity.html">Entity</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-Foo.html">Foo<span></span></a>
<ul>
<li><a href="namespace-Foo.Bar.html">Bar</a>
</li>
</ul></li>
<li><a href="namespace-FOS.html">FOS<span></span></a>
<ul>
<li><a href="namespace-FOS.RestBundle.html">RestBundle<span></span></a>
<ul>
<li><a href="namespace-FOS.RestBundle.Controller.html">Controller<span></span></a>
<ul>
<li><a href="namespace-FOS.RestBundle.Controller.Annotations.html">Annotations</a>
</li>
</ul></li>
<li><a href="namespace-FOS.RestBundle.Decoder.html">Decoder</a>
</li>
<li><a href="namespace-FOS.RestBundle.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-FOS.RestBundle.DependencyInjection.Compiler.html">Compiler</a>
</li>
</ul></li>
<li><a href="namespace-FOS.RestBundle.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-FOS.RestBundle.Examples.html">Examples</a>
</li>
<li><a href="namespace-FOS.RestBundle.Form.html">Form<span></span></a>
<ul>
<li><a href="namespace-FOS.RestBundle.Form.Extension.html">Extension</a>
</li>
</ul></li>
<li><a href="namespace-FOS.RestBundle.Normalizer.html">Normalizer<span></span></a>
<ul>
<li><a href="namespace-FOS.RestBundle.Normalizer.Exception.html">Exception</a>
</li>
</ul></li>
<li><a href="namespace-FOS.RestBundle.Request.html">Request</a>
</li>
<li><a href="namespace-FOS.RestBundle.Response.html">Response<span></span></a>
<ul>
<li><a href="namespace-FOS.RestBundle.Response.AllowedMethodsLoader.html">AllowedMethodsLoader</a>
</li>
</ul></li>
<li><a href="namespace-FOS.RestBundle.Routing.html">Routing<span></span></a>
<ul>
<li><a href="namespace-FOS.RestBundle.Routing.Loader.html">Loader<span></span></a>
<ul>
<li><a href="namespace-FOS.RestBundle.Routing.Loader.Reader.html">Reader</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-FOS.RestBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-FOS.RestBundle.Tests.Controller.html">Controller<span></span></a>
<ul>
<li><a href="namespace-FOS.RestBundle.Tests.Controller.Annotations.html">Annotations</a>
</li>
</ul></li>
<li><a href="namespace-FOS.RestBundle.Tests.Decoder.html">Decoder</a>
</li>
<li><a href="namespace-FOS.RestBundle.Tests.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-FOS.RestBundle.Tests.DependencyInjection.Compiler.html">Compiler</a>
</li>
</ul></li>
<li><a href="namespace-FOS.RestBundle.Tests.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-FOS.RestBundle.Tests.Fixtures.html">Fixtures<span></span></a>
<ul>
<li><a href="namespace-FOS.RestBundle.Tests.Fixtures.Controller.html">Controller</a>
</li>
</ul></li>
<li><a href="namespace-FOS.RestBundle.Tests.Normalizer.html">Normalizer</a>
</li>
<li><a href="namespace-FOS.RestBundle.Tests.Request.html">Request</a>
</li>
<li><a href="namespace-FOS.RestBundle.Tests.Routing.html">Routing<span></span></a>
<ul>
<li><a href="namespace-FOS.RestBundle.Tests.Routing.Loader.html">Loader</a>
</li>
</ul></li>
<li><a href="namespace-FOS.RestBundle.Tests.Util.html">Util</a>
</li>
<li><a href="namespace-FOS.RestBundle.Tests.View.html">View</a>
</li>
</ul></li>
<li><a href="namespace-FOS.RestBundle.Util.html">Util<span></span></a>
<ul>
<li><a href="namespace-FOS.RestBundle.Util.Inflector.html">Inflector</a>
</li>
</ul></li>
<li><a href="namespace-FOS.RestBundle.View.html">View</a>
</li>
</ul></li>
<li><a href="namespace-FOS.UserBundle.html">UserBundle<span></span></a>
<ul>
<li><a href="namespace-FOS.UserBundle.Command.html">Command</a>
</li>
<li><a href="namespace-FOS.UserBundle.Controller.html">Controller</a>
</li>
<li><a href="namespace-FOS.UserBundle.CouchDocument.html">CouchDocument</a>
</li>
<li><a href="namespace-FOS.UserBundle.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-FOS.UserBundle.DependencyInjection.Compiler.html">Compiler</a>
</li>
</ul></li>
<li><a href="namespace-FOS.UserBundle.Doctrine.html">Doctrine</a>
</li>
<li><a href="namespace-FOS.UserBundle.Document.html">Document</a>
</li>
<li><a href="namespace-FOS.UserBundle.Entity.html">Entity</a>
</li>
<li><a href="namespace-FOS.UserBundle.Form.html">Form<span></span></a>
<ul>
<li><a href="namespace-FOS.UserBundle.Form.DataTransformer.html">DataTransformer</a>
</li>
<li><a href="namespace-FOS.UserBundle.Form.Handler.html">Handler</a>
</li>
<li><a href="namespace-FOS.UserBundle.Form.Model.html">Model</a>
</li>
<li><a href="namespace-FOS.UserBundle.Form.Type.html">Type</a>
</li>
</ul></li>
<li><a href="namespace-FOS.UserBundle.Mailer.html">Mailer</a>
</li>
<li><a href="namespace-FOS.UserBundle.Model.html">Model</a>
</li>
<li><a href="namespace-FOS.UserBundle.Propel.html">Propel</a>
</li>
<li><a href="namespace-FOS.UserBundle.Security.html">Security</a>
</li>
<li><a href="namespace-FOS.UserBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-FOS.UserBundle.Tests.DependencyInjection.html">DependencyInjection</a>
</li>
<li><a href="namespace-FOS.UserBundle.Tests.Doctrine.html">Doctrine</a>
</li>
<li><a href="namespace-FOS.UserBundle.Tests.Model.html">Model</a>
</li>
<li><a href="namespace-FOS.UserBundle.Tests.Security.html">Security</a>
</li>
<li><a href="namespace-FOS.UserBundle.Tests.Util.html">Util</a>
</li>
</ul></li>
<li><a href="namespace-FOS.UserBundle.Util.html">Util</a>
</li>
<li><a href="namespace-FOS.UserBundle.Validator.html">Validator</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Gedmo.html">Gedmo<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Blameable.html">Blameable<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Blameable.Mapping.html">Mapping<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Blameable.Mapping.Driver.html">Driver</a>
</li>
<li><a href="namespace-Gedmo.Blameable.Mapping.Event.html">Event<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Blameable.Mapping.Event.Adapter.html">Adapter</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Gedmo.Blameable.Traits.html">Traits</a>
</li>
</ul></li>
<li><a href="namespace-Gedmo.Exception.html">Exception</a>
</li>
<li><a href="namespace-Gedmo.IpTraceable.html">IpTraceable<span></span></a>
<ul>
<li><a href="namespace-Gedmo.IpTraceable.Mapping.html">Mapping<span></span></a>
<ul>
<li><a href="namespace-Gedmo.IpTraceable.Mapping.Driver.html">Driver</a>
</li>
<li><a href="namespace-Gedmo.IpTraceable.Mapping.Event.html">Event<span></span></a>
<ul>
<li><a href="namespace-Gedmo.IpTraceable.Mapping.Event.Adapter.html">Adapter</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Gedmo.IpTraceable.Traits.html">Traits</a>
</li>
</ul></li>
<li><a href="namespace-Gedmo.Loggable.html">Loggable<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Loggable.Document.html">Document<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Loggable.Document.MappedSuperclass.html">MappedSuperclass</a>
</li>
<li><a href="namespace-Gedmo.Loggable.Document.Repository.html">Repository</a>
</li>
</ul></li>
<li><a href="namespace-Gedmo.Loggable.Entity.html">Entity<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Loggable.Entity.MappedSuperclass.html">MappedSuperclass</a>
</li>
<li><a href="namespace-Gedmo.Loggable.Entity.Repository.html">Repository</a>
</li>
</ul></li>
<li><a href="namespace-Gedmo.Loggable.Mapping.html">Mapping<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Loggable.Mapping.Driver.html">Driver</a>
</li>
<li><a href="namespace-Gedmo.Loggable.Mapping.Event.html">Event<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Loggable.Mapping.Event.Adapter.html">Adapter</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-Gedmo.Mapping.html">Mapping<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Mapping.Annotation.html">Annotation</a>
</li>
<li><a href="namespace-Gedmo.Mapping.Driver.html">Driver</a>
</li>
<li><a href="namespace-Gedmo.Mapping.Event.html">Event<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Mapping.Event.Adapter.html">Adapter</a>
</li>
</ul></li>
<li><a href="namespace-Gedmo.Mapping.Mock.html">Mock<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Mapping.Mock.Extension.html">Extension<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Mapping.Mock.Extension.Encoder.html">Encoder<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Mapping.Mock.Extension.Encoder.Mapping.html">Mapping<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Mapping.Mock.Extension.Encoder.Mapping.Driver.html">Driver</a>
</li>
<li><a href="namespace-Gedmo.Mapping.Mock.Extension.Encoder.Mapping.Event.html">Event<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Mapping.Mock.Extension.Encoder.Mapping.Event.Adapter.html">Adapter</a>
</li>
</ul></li></ul></li></ul></li></ul></li>
<li><a href="namespace-Gedmo.Mapping.Mock.Mapping.html">Mapping<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Mapping.Mock.Mapping.Event.html">Event<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Mapping.Mock.Mapping.Event.Adapter.html">Adapter</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-Gedmo.Mapping.Xml.html">Xml</a>
</li>
</ul></li>
<li><a href="namespace-Gedmo.ReferenceIntegrity.html">ReferenceIntegrity<span></span></a>
<ul>
<li><a href="namespace-Gedmo.ReferenceIntegrity.Mapping.html">Mapping<span></span></a>
<ul>
<li><a href="namespace-Gedmo.ReferenceIntegrity.Mapping.Driver.html">Driver</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Gedmo.References.html">References<span></span></a>
<ul>
<li><a href="namespace-Gedmo.References.Mapping.html">Mapping<span></span></a>
<ul>
<li><a href="namespace-Gedmo.References.Mapping.Driver.html">Driver</a>
</li>
<li><a href="namespace-Gedmo.References.Mapping.Event.html">Event<span></span></a>
<ul>
<li><a href="namespace-Gedmo.References.Mapping.Event.Adapter.html">Adapter</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-Gedmo.Sluggable.html">Sluggable<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Sluggable.Handler.html">Handler</a>
</li>
<li><a href="namespace-Gedmo.Sluggable.Mapping.html">Mapping<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Sluggable.Mapping.Driver.html">Driver</a>
</li>
<li><a href="namespace-Gedmo.Sluggable.Mapping.Event.html">Event<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Sluggable.Mapping.Event.Adapter.html">Adapter</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Gedmo.Sluggable.Util.html">Util</a>
</li>
</ul></li>
<li><a href="namespace-Gedmo.SoftDeleteable.html">SoftDeleteable<span></span></a>
<ul>
<li><a href="namespace-Gedmo.SoftDeleteable.Filter.html">Filter<span></span></a>
<ul>
<li><a href="namespace-Gedmo.SoftDeleteable.Filter.ODM.html">ODM</a>
</li>
</ul></li>
<li><a href="namespace-Gedmo.SoftDeleteable.Mapping.html">Mapping<span></span></a>
<ul>
<li><a href="namespace-Gedmo.SoftDeleteable.Mapping.Driver.html">Driver</a>
</li>
<li><a href="namespace-Gedmo.SoftDeleteable.Mapping.Event.html">Event<span></span></a>
<ul>
<li><a href="namespace-Gedmo.SoftDeleteable.Mapping.Event.Adapter.html">Adapter</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Gedmo.SoftDeleteable.Query.html">Query<span></span></a>
<ul>
<li><a href="namespace-Gedmo.SoftDeleteable.Query.TreeWalker.html">TreeWalker<span></span></a>
<ul>
<li><a href="namespace-Gedmo.SoftDeleteable.Query.TreeWalker.Exec.html">Exec</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Gedmo.SoftDeleteable.Traits.html">Traits</a>
</li>
</ul></li>
<li><a href="namespace-Gedmo.Sortable.html">Sortable<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Sortable.Entity.html">Entity<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Sortable.Entity.Repository.html">Repository</a>
</li>
</ul></li>
<li><a href="namespace-Gedmo.Sortable.Mapping.html">Mapping<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Sortable.Mapping.Driver.html">Driver</a>
</li>
<li><a href="namespace-Gedmo.Sortable.Mapping.Event.html">Event<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Sortable.Mapping.Event.Adapter.html">Adapter</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-Gedmo.Timestampable.html">Timestampable<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Timestampable.Mapping.html">Mapping<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Timestampable.Mapping.Driver.html">Driver</a>
</li>
<li><a href="namespace-Gedmo.Timestampable.Mapping.Event.html">Event<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Timestampable.Mapping.Event.Adapter.html">Adapter</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Gedmo.Timestampable.Traits.html">Traits</a>
</li>
</ul></li>
<li><a href="namespace-Gedmo.Tool.html">Tool<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Tool.Logging.html">Logging<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Tool.Logging.DBAL.html">DBAL</a>
</li>
</ul></li>
<li><a href="namespace-Gedmo.Tool.Wrapper.html">Wrapper</a>
</li>
</ul></li>
<li><a href="namespace-Gedmo.Translatable.html">Translatable<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Translatable.Document.html">Document<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Translatable.Document.MappedSuperclass.html">MappedSuperclass</a>
</li>
<li><a href="namespace-Gedmo.Translatable.Document.Repository.html">Repository</a>
</li>
</ul></li>
<li><a href="namespace-Gedmo.Translatable.Entity.html">Entity<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Translatable.Entity.MappedSuperclass.html">MappedSuperclass</a>
</li>
<li><a href="namespace-Gedmo.Translatable.Entity.Repository.html">Repository</a>
</li>
</ul></li>
<li><a href="namespace-Gedmo.Translatable.Hydrator.html">Hydrator<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Translatable.Hydrator.ORM.html">ORM</a>
</li>
</ul></li>
<li><a href="namespace-Gedmo.Translatable.Mapping.html">Mapping<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Translatable.Mapping.Driver.html">Driver</a>
</li>
<li><a href="namespace-Gedmo.Translatable.Mapping.Event.html">Event<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Translatable.Mapping.Event.Adapter.html">Adapter</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Gedmo.Translatable.Query.html">Query<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Translatable.Query.TreeWalker.html">TreeWalker</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Gedmo.Translator.html">Translator<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Translator.Document.html">Document</a>
</li>
<li><a href="namespace-Gedmo.Translator.Entity.html">Entity</a>
</li>
</ul></li>
<li><a href="namespace-Gedmo.Tree.html">Tree<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Tree.Document.html">Document<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Tree.Document.MongoDB.html">MongoDB<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Tree.Document.MongoDB.Repository.html">Repository</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Gedmo.Tree.Entity.html">Entity<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Tree.Entity.MappedSuperclass.html">MappedSuperclass</a>
</li>
<li><a href="namespace-Gedmo.Tree.Entity.Repository.html">Repository</a>
</li>
</ul></li>
<li><a href="namespace-Gedmo.Tree.Mapping.html">Mapping<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Tree.Mapping.Driver.html">Driver</a>
</li>
<li><a href="namespace-Gedmo.Tree.Mapping.Event.html">Event<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Tree.Mapping.Event.Adapter.html">Adapter</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Gedmo.Tree.Strategy.html">Strategy<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Tree.Strategy.ODM.html">ODM<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Tree.Strategy.ODM.MongoDB.html">MongoDB</a>
</li>
</ul></li>
<li><a href="namespace-Gedmo.Tree.Strategy.ORM.html">ORM</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Gedmo.Uploadable.html">Uploadable<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Uploadable.Event.html">Event</a>
</li>
<li><a href="namespace-Gedmo.Uploadable.FileInfo.html">FileInfo</a>
</li>
<li><a href="namespace-Gedmo.Uploadable.FilenameGenerator.html">FilenameGenerator</a>
</li>
<li><a href="namespace-Gedmo.Uploadable.Mapping.html">Mapping<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Uploadable.Mapping.Driver.html">Driver</a>
</li>
</ul></li>
<li><a href="namespace-Gedmo.Uploadable.MimeType.html">MimeType</a>
</li>
<li><a href="namespace-Gedmo.Uploadable.Stub.html">Stub</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Incenteev.html">Incenteev<span></span></a>
<ul>
<li><a href="namespace-Incenteev.ParameterHandler.html">ParameterHandler<span></span></a>
<ul>
<li><a href="namespace-Incenteev.ParameterHandler.Tests.html">Tests</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-IpTraceable.html">IpTraceable<span></span></a>
<ul>
<li><a href="namespace-IpTraceable.Fixture.html">Fixture<span></span></a>
<ul>
<li><a href="namespace-IpTraceable.Fixture.Document.html">Document</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-JMS.html">JMS<span></span></a>
<ul>
<li><a href="namespace-JMS.Parser.html">Parser<span></span></a>
<ul>
<li><a href="namespace-JMS.Parser.Tests.html">Tests</a>
</li>
</ul></li>
<li><a href="namespace-JMS.Serializer.html">Serializer<span></span></a>
<ul>
<li><a href="namespace-JMS.Serializer.Annotation.html">Annotation</a>
</li>
<li><a href="namespace-JMS.Serializer.Builder.html">Builder</a>
</li>
<li><a href="namespace-JMS.Serializer.Construction.html">Construction</a>
</li>
<li><a href="namespace-JMS.Serializer.EventDispatcher.html">EventDispatcher<span></span></a>
<ul>
<li><a href="namespace-JMS.Serializer.EventDispatcher.Subscriber.html">Subscriber</a>
</li>
</ul></li>
<li><a href="namespace-JMS.Serializer.Exception.html">Exception</a>
</li>
<li><a href="namespace-JMS.Serializer.Exclusion.html">Exclusion</a>
</li>
<li><a href="namespace-JMS.Serializer.Handler.html">Handler</a>
</li>
<li><a href="namespace-JMS.Serializer.Metadata.html">Metadata<span></span></a>
<ul>
<li><a href="namespace-JMS.Serializer.Metadata.Driver.html">Driver</a>
</li>
</ul></li>
<li><a href="namespace-JMS.Serializer.Naming.html">Naming</a>
</li>
<li><a href="namespace-JMS.Serializer.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-JMS.Serializer.Tests.Exclusion.html">Exclusion</a>
</li>
<li><a href="namespace-JMS.Serializer.Tests.Fixtures.html">Fixtures<span></span></a>
<ul>
<li><a href="namespace-JMS.Serializer.Tests.Fixtures.Discriminator.html">Discriminator</a>
</li>
<li><a href="namespace-JMS.Serializer.Tests.Fixtures.Doctrine.html">Doctrine</a>
</li>
<li><a href="namespace-JMS.Serializer.Tests.Fixtures.DoctrinePHPCR.html">DoctrinePHPCR</a>
</li>
</ul></li>
<li><a href="namespace-JMS.Serializer.Tests.Handler.html">Handler</a>
</li>
<li><a href="namespace-JMS.Serializer.Tests.Metadata.html">Metadata<span></span></a>
<ul>
<li><a href="namespace-JMS.Serializer.Tests.Metadata.Driver.html">Driver</a>
</li>
</ul></li>
<li><a href="namespace-JMS.Serializer.Tests.Serializer.html">Serializer<span></span></a>
<ul>
<li><a href="namespace-JMS.Serializer.Tests.Serializer.EventDispatcher.html">EventDispatcher<span></span></a>
<ul>
<li><a href="namespace-JMS.Serializer.Tests.Serializer.EventDispatcher.Subscriber.html">Subscriber</a>
</li>
</ul></li>
<li><a href="namespace-JMS.Serializer.Tests.Serializer.Naming.html">Naming</a>
</li>
</ul></li>
<li><a href="namespace-JMS.Serializer.Tests.Twig.html">Twig</a>
</li>
</ul></li>
<li><a href="namespace-JMS.Serializer.Twig.html">Twig</a>
</li>
<li><a href="namespace-JMS.Serializer.Util.html">Util</a>
</li>
</ul></li>
<li><a href="namespace-JMS.SerializerBundle.html">SerializerBundle<span></span></a>
<ul>
<li><a href="namespace-JMS.SerializerBundle.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-JMS.SerializerBundle.DependencyInjection.Compiler.html">Compiler</a>
</li>
</ul></li>
<li><a href="namespace-JMS.SerializerBundle.Serializer.html">Serializer</a>
</li>
<li><a href="namespace-JMS.SerializerBundle.Templating.html">Templating</a>
</li>
<li><a href="namespace-JMS.SerializerBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-JMS.SerializerBundle.Tests.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-JMS.SerializerBundle.Tests.DependencyInjection.Fixture.html">Fixture</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-JMS.TranslationBundle.html">TranslationBundle<span></span></a>
<ul>
<li><a href="namespace-JMS.TranslationBundle.Annotation.html">Annotation</a>
</li>
<li><a href="namespace-JMS.TranslationBundle.Command.html">Command</a>
</li>
<li><a href="namespace-JMS.TranslationBundle.Controller.html">Controller</a>
</li>
<li><a href="namespace-JMS.TranslationBundle.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-JMS.TranslationBundle.DependencyInjection.Compiler.html">Compiler</a>
</li>
</ul></li>
<li><a href="namespace-JMS.TranslationBundle.Exception.html">Exception</a>
</li>
<li><a href="namespace-JMS.TranslationBundle.Logger.html">Logger</a>
</li>
<li><a href="namespace-JMS.TranslationBundle.Model.html">Model</a>
</li>
<li><a href="namespace-JMS.TranslationBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-JMS.TranslationBundle.Tests.Functional.html">Functional<span></span></a>
<ul>
<li><a href="namespace-JMS.TranslationBundle.Tests.Functional.TestBundle.html">TestBundle<span></span></a>
<ul>
<li><a href="namespace-JMS.TranslationBundle.Tests.Functional.TestBundle.Controller.html">Controller</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-JMS.TranslationBundle.Tests.Model.html">Model</a>
</li>
<li><a href="namespace-JMS.TranslationBundle.Tests.Translation.html">Translation<span></span></a>
<ul>
<li><a href="namespace-JMS.TranslationBundle.Tests.Translation.Comparison.html">Comparison</a>
</li>
<li><a href="namespace-JMS.TranslationBundle.Tests.Translation.Dumper.html">Dumper</a>
</li>
<li><a href="namespace-JMS.TranslationBundle.Tests.Translation.Extractor.html">Extractor<span></span></a>
<ul>
<li><a href="namespace-JMS.TranslationBundle.Tests.Translation.Extractor.File.html">File<span></span></a>
<ul>
<li><a href="namespace-JMS.TranslationBundle.Tests.Translation.Extractor.File.Fixture.html">Fixture</a>
</li>
</ul></li>
<li><a href="namespace-JMS.TranslationBundle.Tests.Translation.Extractor.Fixture.html">Fixture<span></span></a>
<ul>
<li><a href="namespace-JMS.TranslationBundle.Tests.Translation.Extractor.Fixture.SimpleTest.html">SimpleTest<span></span></a>
<ul>
<li><a href="namespace-JMS.TranslationBundle.Tests.Translation.Extractor.Fixture.SimpleTest.Controller.html">Controller</a>
</li>
<li><a href="namespace-JMS.TranslationBundle.Tests.Translation.Extractor.Fixture.SimpleTest.Form.html">Form</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-JMS.TranslationBundle.Tests.Translation.Loader.html">Loader<span></span></a>
<ul>
<li><a href="namespace-JMS.TranslationBundle.Tests.Translation.Loader.Symfony.html">Symfony</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-JMS.TranslationBundle.Tests.Twig.html">Twig</a>
</li>
</ul></li>
<li><a href="namespace-JMS.TranslationBundle.Translation.html">Translation<span></span></a>
<ul>
<li><a href="namespace-JMS.TranslationBundle.Translation.Comparison.html">Comparison</a>
</li>
<li><a href="namespace-JMS.TranslationBundle.Translation.Dumper.html">Dumper</a>
</li>
<li><a href="namespace-JMS.TranslationBundle.Translation.Extractor.html">Extractor<span></span></a>
<ul>
<li><a href="namespace-JMS.TranslationBundle.Translation.Extractor.File.html">File</a>
</li>
</ul></li>
<li><a href="namespace-JMS.TranslationBundle.Translation.Loader.html">Loader<span></span></a>
<ul>
<li><a href="namespace-JMS.TranslationBundle.Translation.Loader.Symfony.html">Symfony</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-JMS.TranslationBundle.Twig.html">Twig</a>
</li>
<li><a href="namespace-JMS.TranslationBundle.Util.html">Util</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Knp.html">Knp<span></span></a>
<ul>
<li><a href="namespace-Knp.Bundle.html">Bundle<span></span></a>
<ul>
<li><a href="namespace-Knp.Bundle.MenuBundle.html">MenuBundle<span></span></a>
<ul>
<li><a href="namespace-Knp.Bundle.MenuBundle.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Knp.Bundle.MenuBundle.DependencyInjection.Compiler.html">Compiler</a>
</li>
</ul></li>
<li><a href="namespace-Knp.Bundle.MenuBundle.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Knp.Bundle.MenuBundle.Provider.html">Provider</a>
</li>
<li><a href="namespace-Knp.Bundle.MenuBundle.Renderer.html">Renderer</a>
</li>
<li><a href="namespace-Knp.Bundle.MenuBundle.Templating.html">Templating<span></span></a>
<ul>
<li><a href="namespace-Knp.Bundle.MenuBundle.Templating.Helper.html">Helper</a>
</li>
</ul></li>
<li><a href="namespace-Knp.Bundle.MenuBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Knp.Bundle.MenuBundle.Tests.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Knp.Bundle.MenuBundle.Tests.DependencyInjection.Compiler.html">Compiler</a>
</li>
</ul></li>
<li><a href="namespace-Knp.Bundle.MenuBundle.Tests.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Knp.Bundle.MenuBundle.Tests.Provider.html">Provider</a>
</li>
<li><a href="namespace-Knp.Bundle.MenuBundle.Tests.Renderer.html">Renderer</a>
</li>
<li><a href="namespace-Knp.Bundle.MenuBundle.Tests.Stubs.html">Stubs<span></span></a>
<ul>
<li><a href="namespace-Knp.Bundle.MenuBundle.Tests.Stubs.Child.html">Child<span></span></a>
<ul>
<li><a href="namespace-Knp.Bundle.MenuBundle.Tests.Stubs.Child.Menu.html">Menu</a>
</li>
</ul></li>
<li><a href="namespace-Knp.Bundle.MenuBundle.Tests.Stubs.Menu.html">Menu</a>
</li>
</ul></li>
<li><a href="namespace-Knp.Bundle.MenuBundle.Tests.Templating.html">Templating</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-Knp.Menu.html">Menu<span></span></a>
<ul>
<li><a href="namespace-Knp.Menu.Factory.html">Factory</a>
</li>
<li><a href="namespace-Knp.Menu.Integration.html">Integration<span></span></a>
<ul>
<li><a href="namespace-Knp.Menu.Integration.Silex.html">Silex</a>
</li>
<li><a href="namespace-Knp.Menu.Integration.Symfony.html">Symfony</a>
</li>
</ul></li>
<li><a href="namespace-Knp.Menu.Iterator.html">Iterator</a>
</li>
<li><a href="namespace-Knp.Menu.Loader.html">Loader</a>
</li>
<li><a href="namespace-Knp.Menu.Matcher.html">Matcher<span></span></a>
<ul>
<li><a href="namespace-Knp.Menu.Matcher.Voter.html">Voter</a>
</li>
</ul></li>
<li><a href="namespace-Knp.Menu.Provider.html">Provider</a>
</li>
<li><a href="namespace-Knp.Menu.Renderer.html">Renderer</a>
</li>
<li><a href="namespace-Knp.Menu.Silex.html">Silex<span></span></a>
<ul>
<li><a href="namespace-Knp.Menu.Silex.Voter.html">Voter</a>
</li>
</ul></li>
<li><a href="namespace-Knp.Menu.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Knp.Menu.Tests.Factory.html">Factory</a>
</li>
<li><a href="namespace-Knp.Menu.Tests.Integration.html">Integration<span></span></a>
<ul>
<li><a href="namespace-Knp.Menu.Tests.Integration.Silex.html">Silex</a>
</li>
</ul></li>
<li><a href="namespace-Knp.Menu.Tests.Iterator.html">Iterator</a>
</li>
<li><a href="namespace-Knp.Menu.Tests.Loader.html">Loader</a>
</li>
<li><a href="namespace-Knp.Menu.Tests.Matcher.html">Matcher<span></span></a>
<ul>
<li><a href="namespace-Knp.Menu.Tests.Matcher.Voter.html">Voter</a>
</li>
</ul></li>
<li><a href="namespace-Knp.Menu.Tests.Provider.html">Provider</a>
</li>
<li><a href="namespace-Knp.Menu.Tests.Renderer.html">Renderer</a>
</li>
<li><a href="namespace-Knp.Menu.Tests.Silex.html">Silex</a>
</li>
<li><a href="namespace-Knp.Menu.Tests.Twig.html">Twig</a>
</li>
<li><a href="namespace-Knp.Menu.Tests.Util.html">Util</a>
</li>
</ul></li>
<li><a href="namespace-Knp.Menu.Twig.html">Twig</a>
</li>
<li><a href="namespace-Knp.Menu.Util.html">Util</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Loggable.html">Loggable<span></span></a>
<ul>
<li><a href="namespace-Loggable.Fixture.html">Fixture<span></span></a>
<ul>
<li><a href="namespace-Loggable.Fixture.Document.html">Document<span></span></a>
<ul>
<li><a href="namespace-Loggable.Fixture.Document.Log.html">Log</a>
</li>
</ul></li>
<li><a href="namespace-Loggable.Fixture.Entity.html">Entity<span></span></a>
<ul>
<li><a href="namespace-Loggable.Fixture.Entity.Log.html">Log</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-Lunetics.html">Lunetics<span></span></a>
<ul>
<li><a href="namespace-Lunetics.LocaleBundle.html">LocaleBundle<span></span></a>
<ul>
<li><a href="namespace-Lunetics.LocaleBundle.Controller.html">Controller</a>
</li>
<li><a href="namespace-Lunetics.LocaleBundle.Cookie.html">Cookie</a>
</li>
<li><a href="namespace-Lunetics.LocaleBundle.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Lunetics.LocaleBundle.DependencyInjection.Compiler.html">Compiler</a>
</li>
</ul></li>
<li><a href="namespace-Lunetics.LocaleBundle.Event.html">Event</a>
</li>
<li><a href="namespace-Lunetics.LocaleBundle.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Lunetics.LocaleBundle.Form.html">Form<span></span></a>
<ul>
<li><a href="namespace-Lunetics.LocaleBundle.Form.Extension.html">Extension<span></span></a>
<ul>
<li><a href="namespace-Lunetics.LocaleBundle.Form.Extension.ChoiceList.html">ChoiceList</a>
</li>
<li><a href="namespace-Lunetics.LocaleBundle.Form.Extension.Type.html">Type</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Lunetics.LocaleBundle.LocaleGuesser.html">LocaleGuesser</a>
</li>
<li><a href="namespace-Lunetics.LocaleBundle.LocaleInformation.html">LocaleInformation</a>
</li>
<li><a href="namespace-Lunetics.LocaleBundle.Matcher.html">Matcher</a>
</li>
<li><a href="namespace-Lunetics.LocaleBundle.Session.html">Session</a>
</li>
<li><a href="namespace-Lunetics.LocaleBundle.Switcher.html">Switcher</a>
</li>
<li><a href="namespace-Lunetics.LocaleBundle.Templating.html">Templating<span></span></a>
<ul>
<li><a href="namespace-Lunetics.LocaleBundle.Templating.Helper.html">Helper</a>
</li>
</ul></li>
<li><a href="namespace-Lunetics.LocaleBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Lunetics.LocaleBundle.Tests.Controller.html">Controller</a>
</li>
<li><a href="namespace-Lunetics.LocaleBundle.Tests.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Lunetics.LocaleBundle.Tests.DependencyInjection.Compiler.html">Compiler</a>
</li>
</ul></li>
<li><a href="namespace-Lunetics.LocaleBundle.Tests.Event.html">Event</a>
</li>
<li><a href="namespace-Lunetics.LocaleBundle.Tests.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Lunetics.LocaleBundle.Tests.Form.html">Form<span></span></a>
<ul>
<li><a href="namespace-Lunetics.LocaleBundle.Tests.Form.Extension.html">Extension<span></span></a>
<ul>
<li><a href="namespace-Lunetics.LocaleBundle.Tests.Form.Extension.ChoiceList.html">ChoiceList</a>
</li>
<li><a href="namespace-Lunetics.LocaleBundle.Tests.Form.Extension.Type.html">Type</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Lunetics.LocaleBundle.Tests.LocaleGuesser.html">LocaleGuesser</a>
</li>
<li><a href="namespace-Lunetics.LocaleBundle.Tests.LocaleInformation.html">LocaleInformation</a>
</li>
<li><a href="namespace-Lunetics.LocaleBundle.Tests.Templating.html">Templating<span></span></a>
<ul>
<li><a href="namespace-Lunetics.LocaleBundle.Tests.Templating.Helper.html">Helper</a>
</li>
</ul></li>
<li><a href="namespace-Lunetics.LocaleBundle.Tests.Twig.html">Twig<span></span></a>
<ul>
<li><a href="namespace-Lunetics.LocaleBundle.Tests.Twig.Extension.html">Extension</a>
</li>
</ul></li>
<li><a href="namespace-Lunetics.LocaleBundle.Tests.Validator.html">Validator</a>
</li>
</ul></li>
<li><a href="namespace-Lunetics.LocaleBundle.Twig.html">Twig<span></span></a>
<ul>
<li><a href="namespace-Lunetics.LocaleBundle.Twig.Extension.html">Extension</a>
</li>
</ul></li>
<li><a href="namespace-Lunetics.LocaleBundle.Validator.html">Validator</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Mapping.html">Mapping<span></span></a>
<ul>
<li><a href="namespace-Mapping.Fixture.html">Fixture<span></span></a>
<ul>
<li><a href="namespace-Mapping.Fixture.Compatibility.html">Compatibility</a>
</li>
<li><a href="namespace-Mapping.Fixture.Document.html">Document</a>
</li>
<li><a href="namespace-Mapping.Fixture.Unmapped.html">Unmapped</a>
</li>
<li><a href="namespace-Mapping.Fixture.Xml.html">Xml</a>
</li>
<li><a href="namespace-Mapping.Fixture.Yaml.html">Yaml</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Metadata.html">Metadata<span></span></a>
<ul>
<li><a href="namespace-Metadata.Cache.html">Cache</a>
</li>
<li><a href="namespace-Metadata.Driver.html">Driver</a>
</li>
<li><a href="namespace-Metadata.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Metadata.Tests.Cache.html">Cache</a>
</li>
<li><a href="namespace-Metadata.Tests.Driver.html">Driver<span></span></a>
<ul>
<li><a href="namespace-Metadata.Tests.Driver.Fixture.html">Fixture<span></span></a>
<ul>
<li><a href="namespace-Metadata.Tests.Driver.Fixture.A.html">A</a>
</li>
<li><a href="namespace-Metadata.Tests.Driver.Fixture.B.html">B</a>
</li>
<li><a href="namespace-Metadata.Tests.Driver.Fixture.C.html">C<span></span></a>
<ul>
<li><a href="namespace-Metadata.Tests.Driver.Fixture.C.SubDir.html">SubDir</a>
</li>
</ul></li>
<li><a href="namespace-Metadata.Tests.Driver.Fixture.T.html">T</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Metadata.Tests.Fixtures.html">Fixtures<span></span></a>
<ul>
<li><a href="namespace-Metadata.Tests.Fixtures.ComplexHierarchy.html">ComplexHierarchy</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-Monolog.html">Monolog<span></span></a>
<ul>
<li><a href="namespace-Monolog.Formatter.html">Formatter</a>
</li>
<li><a href="namespace-Monolog.Handler.html">Handler<span></span></a>
<ul>
<li><a href="namespace-Monolog.Handler.FingersCrossed.html">FingersCrossed</a>
</li>
<li><a href="namespace-Monolog.Handler.SyslogUdp.html">SyslogUdp</a>
</li>
</ul></li>
<li><a href="namespace-Monolog.Processor.html">Processor</a>
</li>
</ul></li>
<li><a href="namespace-MyProject.html">MyProject<span></span></a>
<ul>
<li><a href="namespace-MyProject.Proxies.html">Proxies<span></span></a>
<ul>
<li><a href="namespace-MyProject.Proxies.__CG__.html">__CG__<span></span></a>
<ul>
<li><a href="namespace-MyProject.Proxies.__CG__.Doctrine.html">Doctrine<span></span></a>
<ul>
<li><a href="namespace-MyProject.Proxies.__CG__.Doctrine.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-MyProject.Proxies.__CG__.Doctrine.Tests.Common.html">Common<span></span></a>
<ul>
<li><a href="namespace-MyProject.Proxies.__CG__.Doctrine.Tests.Common.Util.html">Util</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-MyProject.Proxies.__CG__.OtherProject.html">OtherProject<span></span></a>
<ul>
<li><a href="namespace-MyProject.Proxies.__CG__.OtherProject.Proxies.html">Proxies<span></span></a>
<ul>
<li><a href="namespace-MyProject.Proxies.__CG__.OtherProject.Proxies.__CG__.html">__CG__<span></span></a>
<ul>
<li><a href="namespace-MyProject.Proxies.__CG__.OtherProject.Proxies.__CG__.Doctrine.html">Doctrine<span></span></a>
<ul>
<li><a href="namespace-MyProject.Proxies.__CG__.OtherProject.Proxies.__CG__.Doctrine.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-MyProject.Proxies.__CG__.OtherProject.Proxies.__CG__.Doctrine.Tests.Common.html">Common<span></span></a>
<ul>
<li><a href="namespace-MyProject.Proxies.__CG__.OtherProject.Proxies.__CG__.Doctrine.Tests.Common.Util.html">Util</a>
</li>
</ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li>
<li><a href="namespace-NamespaceCollision.html">NamespaceCollision<span></span></a>
<ul>
<li><a href="namespace-NamespaceCollision.A.html">A<span></span></a>
<ul>
<li><a href="namespace-NamespaceCollision.A.B.html">B</a>
</li>
</ul></li>
<li><a href="namespace-NamespaceCollision.C.html">C<span></span></a>
<ul>
<li><a href="namespace-NamespaceCollision.C.B.html">B</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Namespaced.html">Namespaced</a>
</li>
<li><a href="namespace-Namespaced2.html">Namespaced2</a>
</li>
<li><a href="namespace-Negotiation.html">Negotiation<span></span></a>
<ul>
<li><a href="namespace-Negotiation.Tests.html">Tests</a>
</li>
</ul></li>
<li class="active"><a href="namespace-None.html">None</a>
</li>
<li><a href="namespace-Pequiven.html">Pequiven<span></span></a>
<ul>
<li><a href="namespace-Pequiven.SEIPBundle.html">SEIPBundle<span></span></a>
<ul>
<li><a href="namespace-Pequiven.SEIPBundle.Controller.html">Controller</a>
</li>
<li><a href="namespace-Pequiven.SEIPBundle.DataFixtures.html">DataFixtures</a>
</li>
<li><a href="namespace-Pequiven.SEIPBundle.DependencyInjection.html">DependencyInjection</a>
</li>
<li><a href="namespace-Pequiven.SEIPBundle.Entity.html">Entity</a>
</li>
<li><a href="namespace-Pequiven.SEIPBundle.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Pequiven.SEIPBundle.Form.html">Form<span></span></a>
<ul>
<li><a href="namespace-Pequiven.SEIPBundle.Form.Type.html">Type</a>
</li>
</ul></li>
<li><a href="namespace-Pequiven.SEIPBundle.Menu.html">Menu<span></span></a>
<ul>
<li><a href="namespace-Pequiven.SEIPBundle.Menu.Template.html">Template<span></span></a>
<ul>
<li><a href="namespace-Pequiven.SEIPBundle.Menu.Template.Developer.html">Developer</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Pequiven.SEIPBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Pequiven.SEIPBundle.Tests.Controller.html">Controller</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-PHP.html">PHP</a>
</li>
<li><a href="namespace-PhpCollection.html">PhpCollection<span></span></a>
<ul>
<li><a href="namespace-PhpCollection.Tests.html">Tests</a>
</li>
</ul></li>
<li><a href="namespace-PhpOption.html">PhpOption<span></span></a>
<ul>
<li><a href="namespace-PhpOption.Tests.html">Tests</a>
</li>
</ul></li>
<li><a href="namespace-Proxies.html">Proxies<span></span></a>
<ul>
<li><a href="namespace-Proxies.__CG__.html">__CG__<span></span></a>
<ul>
<li><a href="namespace-Proxies.__CG__.Pequiven.html">Pequiven<span></span></a>
<ul>
<li><a href="namespace-Proxies.__CG__.Pequiven.SEIPBundle.html">SEIPBundle<span></span></a>
<ul>
<li><a href="namespace-Proxies.__CG__.Pequiven.SEIPBundle.Entity.html">Entity</a>
</li>
</ul></li></ul></li></ul></li></ul></li>
<li><a href="namespace-Psr.html">Psr<span></span></a>
<ul>
<li><a href="namespace-Psr.Log.html">Log<span></span></a>
<ul>
<li><a href="namespace-Psr.Log.Test.html">Test</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-ReferenceIntegrity.html">ReferenceIntegrity<span></span></a>
<ul>
<li><a href="namespace-ReferenceIntegrity.Fixture.html">Fixture<span></span></a>
<ul>
<li><a href="namespace-ReferenceIntegrity.Fixture.Document.html">Document<span></span></a>
<ul>
<li><a href="namespace-ReferenceIntegrity.Fixture.Document.ManyNullify.html">ManyNullify</a>
</li>
<li><a href="namespace-ReferenceIntegrity.Fixture.Document.ManyRestrict.html">ManyRestrict</a>
</li>
<li><a href="namespace-ReferenceIntegrity.Fixture.Document.OneNullify.html">OneNullify</a>
</li>
<li><a href="namespace-ReferenceIntegrity.Fixture.Document.OneRestrict.html">OneRestrict</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-References.html">References<span></span></a>
<ul>
<li><a href="namespace-References.Fixture.html">Fixture<span></span></a>
<ul>
<li><a href="namespace-References.Fixture.ODM.html">ODM<span></span></a>
<ul>
<li><a href="namespace-References.Fixture.ODM.MongoDB.html">MongoDB</a>
</li>
</ul></li>
<li><a href="namespace-References.Fixture.ORM.html">ORM</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Sensio.html">Sensio<span></span></a>
<ul>
<li><a href="namespace-Sensio.Bundle.html">Bundle<span></span></a>
<ul>
<li><a href="namespace-Sensio.Bundle.DistributionBundle.html">DistributionBundle<span></span></a>
<ul>
<li><a href="namespace-Sensio.Bundle.DistributionBundle.Composer.html">Composer</a>
</li>
<li><a href="namespace-Sensio.Bundle.DistributionBundle.Configurator.html">Configurator<span></span></a>
<ul>
<li><a href="namespace-Sensio.Bundle.DistributionBundle.Configurator.Form.html">Form</a>
</li>
<li><a href="namespace-Sensio.Bundle.DistributionBundle.Configurator.Step.html">Step</a>
</li>
</ul></li>
<li><a href="namespace-Sensio.Bundle.DistributionBundle.Controller.html">Controller</a>
</li>
<li><a href="namespace-Sensio.Bundle.DistributionBundle.DependencyInjection.html">DependencyInjection</a>
</li>
</ul></li>
<li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.html">FrameworkExtraBundle<span></span></a>
<ul>
<li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Configuration.html">Configuration</a>
</li>
<li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.DependencyInjection.Compiler.html">Compiler</a>
</li>
</ul></li>
<li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Request.html">Request<span></span></a>
<ul>
<li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Request.ParamConverter.html">ParamConverter</a>
</li>
</ul></li>
<li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Routing.html">Routing</a>
</li>
<li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Security.html">Security</a>
</li>
<li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Templating.html">Templating</a>
</li>
<li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Tests.Configuration.html">Configuration</a>
</li>
<li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Tests.EventListener.html">EventListener<span></span></a>
<ul>
<li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Tests.EventListener.Fixture.html">Fixture</a>
</li>
</ul></li>
<li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Tests.Request.html">Request<span></span></a>
<ul>
<li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Tests.Request.ParamConverter.html">ParamConverter</a>
</li>
</ul></li>
<li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Tests.Routing.html">Routing</a>
</li>
<li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Tests.Templating.html">Templating<span></span></a>
<ul>
<li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Tests.Templating.Fixture.html">Fixture<span></span></a>
<ul>
<li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Tests.Templating.Fixture.BarBundle.html">BarBundle<span></span></a>
<ul>
<li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Tests.Templating.Fixture.BarBundle.Controller.html">Controller</a>
</li>
</ul></li>
<li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Tests.Templating.Fixture.FooBarBundle.html">FooBarBundle<span></span></a>
<ul>
<li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Tests.Templating.Fixture.FooBarBundle.Controller.html">Controller</a>
</li>
</ul></li>
<li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Tests.Templating.Fixture.FooBundle.html">FooBundle<span></span></a>
<ul>
<li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Tests.Templating.Fixture.FooBundle.Controller.html">Controller</a>
</li>
</ul></li></ul></li></ul></li></ul></li></ul></li>
<li><a href="namespace-Sensio.Bundle.GeneratorBundle.html">GeneratorBundle<span></span></a>
<ul>
<li><a href="namespace-Sensio.Bundle.GeneratorBundle.Command.html">Command<span></span></a>
<ul>
<li><a href="namespace-Sensio.Bundle.GeneratorBundle.Command.Helper.html">Helper</a>
</li>
</ul></li>
<li><a href="namespace-Sensio.Bundle.GeneratorBundle.Generator.html">Generator</a>
</li>
<li><a href="namespace-Sensio.Bundle.GeneratorBundle.Manipulator.html">Manipulator</a>
</li>
<li><a href="namespace-Sensio.Bundle.GeneratorBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Sensio.Bundle.GeneratorBundle.Tests.Command.html">Command</a>
</li>
<li><a href="namespace-Sensio.Bundle.GeneratorBundle.Tests.Generator.html">Generator</a>
</li>
</ul></li></ul></li></ul></li></ul></li>
<li><a href="namespace-Sluggable.html">Sluggable<span></span></a>
<ul>
<li><a href="namespace-Sluggable.Fixture.html">Fixture<span></span></a>
<ul>
<li><a href="namespace-Sluggable.Fixture.Doctrine.html">Doctrine</a>
</li>
<li><a href="namespace-Sluggable.Fixture.Document.html">Document<span></span></a>
<ul>
<li><a href="namespace-Sluggable.Fixture.Document.Handler.html">Handler</a>
</li>
</ul></li>
<li><a href="namespace-Sluggable.Fixture.Handler.html">Handler<span></span></a>
<ul>
<li><a href="namespace-Sluggable.Fixture.Handler.People.html">People</a>
</li>
</ul></li>
<li><a href="namespace-Sluggable.Fixture.Inheritance.html">Inheritance</a>
</li>
<li><a href="namespace-Sluggable.Fixture.Inheritance2.html">Inheritance2</a>
</li>
<li><a href="namespace-Sluggable.Fixture.Issue104.html">Issue104</a>
</li>
<li><a href="namespace-Sluggable.Fixture.Issue116.html">Issue116</a>
</li>
<li><a href="namespace-Sluggable.Fixture.Issue131.html">Issue131</a>
</li>
<li><a href="namespace-Sluggable.Fixture.Issue449.html">Issue449</a>
</li>
<li><a href="namespace-Sluggable.Fixture.Issue633.html">Issue633</a>
</li>
<li><a href="namespace-Sluggable.Fixture.Issue827.html">Issue827</a>
</li>
<li><a href="namespace-Sluggable.Fixture.Issue939.html">Issue939</a>
</li>
<li><a href="namespace-Sluggable.Fixture.MappedSuperclass.html">MappedSuperclass</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-SoftDeleteable.html">SoftDeleteable<span></span></a>
<ul>
<li><a href="namespace-SoftDeleteable.Fixture.html">Fixture<span></span></a>
<ul>
<li><a href="namespace-SoftDeleteable.Fixture.Document.html">Document</a>
</li>
<li><a href="namespace-SoftDeleteable.Fixture.Entity.html">Entity</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Sortable.html">Sortable<span></span></a>
<ul>
<li><a href="namespace-Sortable.Fixture.html">Fixture<span></span></a>
<ul>
<li><a href="namespace-Sortable.Fixture.Transport.html">Transport</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Stof.html">Stof<span></span></a>
<ul>
<li><a href="namespace-Stof.DoctrineExtensionsBundle.html">DoctrineExtensionsBundle<span></span></a>
<ul>
<li><a href="namespace-Stof.DoctrineExtensionsBundle.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Stof.DoctrineExtensionsBundle.DependencyInjection.Compiler.html">Compiler</a>
</li>
</ul></li>
<li><a href="namespace-Stof.DoctrineExtensionsBundle.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Stof.DoctrineExtensionsBundle.Uploadable.html">Uploadable</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.html">Symfony<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.html">Bridge<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Doctrine.html">Doctrine<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Doctrine.CacheWarmer.html">CacheWarmer</a>
</li>
<li><a href="namespace-Symfony.Bridge.Doctrine.DataCollector.html">DataCollector</a>
</li>
<li><a href="namespace-Symfony.Bridge.Doctrine.DataFixtures.html">DataFixtures</a>
</li>
<li><a href="namespace-Symfony.Bridge.Doctrine.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Doctrine.DependencyInjection.CompilerPass.html">CompilerPass</a>
</li>
<li><a href="namespace-Symfony.Bridge.Doctrine.DependencyInjection.Security.html">Security<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Doctrine.DependencyInjection.Security.UserProvider.html">UserProvider</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Bridge.Doctrine.ExpressionLanguage.html">ExpressionLanguage</a>
</li>
<li><a href="namespace-Symfony.Bridge.Doctrine.Form.html">Form<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Doctrine.Form.ChoiceList.html">ChoiceList</a>
</li>
<li><a href="namespace-Symfony.Bridge.Doctrine.Form.DataTransformer.html">DataTransformer</a>
</li>
<li><a href="namespace-Symfony.Bridge.Doctrine.Form.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Symfony.Bridge.Doctrine.Form.Type.html">Type</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bridge.Doctrine.HttpFoundation.html">HttpFoundation</a>
</li>
<li><a href="namespace-Symfony.Bridge.Doctrine.Logger.html">Logger</a>
</li>
<li><a href="namespace-Symfony.Bridge.Doctrine.Security.html">Security<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Doctrine.Security.RememberMe.html">RememberMe</a>
</li>
<li><a href="namespace-Symfony.Bridge.Doctrine.Security.User.html">User</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bridge.Doctrine.Test.html">Test</a>
</li>
<li><a href="namespace-Symfony.Bridge.Doctrine.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Doctrine.Tests.DataCollector.html">DataCollector</a>
</li>
<li><a href="namespace-Symfony.Bridge.Doctrine.Tests.DataFixtures.html">DataFixtures</a>
</li>
<li><a href="namespace-Symfony.Bridge.Doctrine.Tests.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Doctrine.Tests.DependencyInjection.CompilerPass.html">CompilerPass</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bridge.Doctrine.Tests.ExpressionLanguage.html">ExpressionLanguage</a>
</li>
<li><a href="namespace-Symfony.Bridge.Doctrine.Tests.Fixtures.html">Fixtures</a>
</li>
<li><a href="namespace-Symfony.Bridge.Doctrine.Tests.Form.html">Form<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Doctrine.Tests.Form.ChoiceList.html">ChoiceList</a>
</li>
<li><a href="namespace-Symfony.Bridge.Doctrine.Tests.Form.DataTransformer.html">DataTransformer</a>
</li>
<li><a href="namespace-Symfony.Bridge.Doctrine.Tests.Form.Type.html">Type</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bridge.Doctrine.Tests.HttpFoundation.html">HttpFoundation</a>
</li>
<li><a href="namespace-Symfony.Bridge.Doctrine.Tests.Logger.html">Logger</a>
</li>
<li><a href="namespace-Symfony.Bridge.Doctrine.Tests.Security.html">Security<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Doctrine.Tests.Security.User.html">User</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bridge.Doctrine.Tests.Validator.html">Validator<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Doctrine.Tests.Validator.Constraints.html">Constraints</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Bridge.Doctrine.Validator.html">Validator<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Doctrine.Validator.Constraints.html">Constraints</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Bridge.Monolog.html">Monolog<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Monolog.Formatter.html">Formatter</a>
</li>
<li><a href="namespace-Symfony.Bridge.Monolog.Handler.html">Handler</a>
</li>
<li><a href="namespace-Symfony.Bridge.Monolog.Processor.html">Processor</a>
</li>
<li><a href="namespace-Symfony.Bridge.Monolog.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Monolog.Tests.Handler.html">Handler</a>
</li>
<li><a href="namespace-Symfony.Bridge.Monolog.Tests.Processor.html">Processor</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Bridge.Propel1.html">Propel1<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Propel1.DataCollector.html">DataCollector</a>
</li>
<li><a href="namespace-Symfony.Bridge.Propel1.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Propel1.DependencyInjection.Security.html">Security<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Propel1.DependencyInjection.Security.UserProvider.html">UserProvider</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Bridge.Propel1.Form.html">Form<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Propel1.Form.ChoiceList.html">ChoiceList</a>
</li>
<li><a href="namespace-Symfony.Bridge.Propel1.Form.DataTransformer.html">DataTransformer</a>
</li>
<li><a href="namespace-Symfony.Bridge.Propel1.Form.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Symfony.Bridge.Propel1.Form.Type.html">Type</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bridge.Propel1.Logger.html">Logger</a>
</li>
<li><a href="namespace-Symfony.Bridge.Propel1.Security.html">Security<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Propel1.Security.User.html">User</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bridge.Propel1.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Propel1.Tests.DataCollector.html">DataCollector</a>
</li>
<li><a href="namespace-Symfony.Bridge.Propel1.Tests.Fixtures.html">Fixtures</a>
</li>
<li><a href="namespace-Symfony.Bridge.Propel1.Tests.Form.html">Form<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Propel1.Tests.Form.ChoiceList.html">ChoiceList</a>
</li>
<li><a href="namespace-Symfony.Bridge.Propel1.Tests.Form.DataTransformer.html">DataTransformer</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-Symfony.Bridge.ProxyManager.html">ProxyManager<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.ProxyManager.LazyProxy.html">LazyProxy<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.ProxyManager.LazyProxy.Instantiator.html">Instantiator</a>
</li>
<li><a href="namespace-Symfony.Bridge.ProxyManager.LazyProxy.PhpDumper.html">PhpDumper</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bridge.ProxyManager.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.ProxyManager.Tests.LazyProxy.html">LazyProxy<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.ProxyManager.Tests.LazyProxy.Dumper.html">Dumper</a>
</li>
<li><a href="namespace-Symfony.Bridge.ProxyManager.Tests.LazyProxy.Instantiator.html">Instantiator</a>
</li>
<li><a href="namespace-Symfony.Bridge.ProxyManager.Tests.LazyProxy.PhpDumper.html">PhpDumper</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-Symfony.Bridge.Twig.html">Twig<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Twig.Extension.html">Extension</a>
</li>
<li><a href="namespace-Symfony.Bridge.Twig.Form.html">Form</a>
</li>
<li><a href="namespace-Symfony.Bridge.Twig.Node.html">Node</a>
</li>
<li><a href="namespace-Symfony.Bridge.Twig.NodeVisitor.html">NodeVisitor</a>
</li>
<li><a href="namespace-Symfony.Bridge.Twig.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Twig.Tests.Extension.html">Extension<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Twig.Tests.Extension.Fixtures.html">Fixtures</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bridge.Twig.Tests.Node.html">Node</a>
</li>
<li><a href="namespace-Symfony.Bridge.Twig.Tests.NodeVisitor.html">NodeVisitor</a>
</li>
<li><a href="namespace-Symfony.Bridge.Twig.Tests.TokenParser.html">TokenParser</a>
</li>
<li><a href="namespace-Symfony.Bridge.Twig.Tests.Translation.html">Translation</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bridge.Twig.TokenParser.html">TokenParser</a>
</li>
<li><a href="namespace-Symfony.Bridge.Twig.Translation.html">Translation</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Bundle.html">Bundle<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.html">AsseticBundle<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.CacheWarmer.html">CacheWarmer</a>
</li>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Command.html">Command</a>
</li>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Config.html">Config</a>
</li>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Controller.html">Controller</a>
</li>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.DependencyInjection.Compiler.html">Compiler</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Factory.html">Factory<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Factory.Loader.html">Loader</a>
</li>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Factory.Resource.html">Resource</a>
</li>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Factory.Worker.html">Worker</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Routing.html">Routing</a>
</li>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Templating.html">Templating</a>
</li>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Tests.CacheWarmer.html">CacheWarmer</a>
</li>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Tests.Command.html">Command</a>
</li>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Tests.Controller.html">Controller</a>
</li>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Tests.DependencyInjection.html">DependencyInjection</a>
</li>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Tests.Factory.html">Factory<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Tests.Factory.Resource.html">Resource</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Tests.Templating.html">Templating</a>
</li>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Tests.TestBundle.html">TestBundle</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Twig.html">Twig</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.html">FrameworkBundle<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.CacheWarmer.html">CacheWarmer</a>
</li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Command.html">Command</a>
</li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Console.html">Console<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Console.Descriptor.html">Descriptor</a>
</li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Console.Helper.html">Helper</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Controller.html">Controller</a>
</li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.DataCollector.html">DataCollector</a>
</li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.DependencyInjection.Compiler.html">Compiler</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Fragment.html">Fragment</a>
</li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.HttpCache.html">HttpCache</a>
</li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Routing.html">Routing</a>
</li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Templating.html">Templating<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Templating.Asset.html">Asset</a>
</li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Templating.Helper.html">Helper</a>
</li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Templating.Loader.html">Loader</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Test.html">Test</a>
</li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.CacheWarmer.html">CacheWarmer</a>
</li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Console.html">Console<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Console.Descriptor.html">Descriptor</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Controller.html">Controller</a>
</li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.DependencyInjection.Compiler.html">Compiler</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Fixtures.html">Fixtures<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Fixtures.BaseBundle.html">BaseBundle</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Fragment.html">Fragment</a>
</li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Functional.html">Functional<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Functional.app.html">app</a>
</li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Functional.Bundle.html">Bundle<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Functional.Bundle.TestBundle.html">TestBundle<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Functional.Bundle.TestBundle.Controller.html">Controller</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Routing.html">Routing</a>
</li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Templating.html">Templating<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Templating.Helper.html">Helper<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Templating.Helper.Fixtures.html">Fixtures</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Templating.Loader.html">Loader</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Translation.html">Translation</a>
</li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Validator.html">Validator</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Translation.html">Translation</a>
</li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Validator.html">Validator</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.MonologBundle.html">MonologBundle<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.MonologBundle.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.MonologBundle.DependencyInjection.Compiler.html">Compiler</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.MonologBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.MonologBundle.Tests.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.MonologBundle.Tests.DependencyInjection.Compiler.html">Compiler</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.html">SecurityBundle<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Command.html">Command</a>
</li>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.DataCollector.html">DataCollector</a>
</li>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.DependencyInjection.Compiler.html">Compiler</a>
</li>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.DependencyInjection.Security.html">Security<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.DependencyInjection.Security.Factory.html">Factory</a>
</li>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.DependencyInjection.Security.UserProvider.html">UserProvider</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Security.html">Security</a>
</li>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Templating.html">Templating<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Templating.Helper.html">Helper</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Tests.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Tests.DependencyInjection.Security.html">Security<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Tests.DependencyInjection.Security.Factory.html">Factory</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Tests.Functional.html">Functional<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Tests.Functional.app.html">app</a>
</li>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Tests.Functional.Bundle.html">Bundle<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Tests.Functional.Bundle.CsrfFormLoginBundle.html">CsrfFormLoginBundle<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Tests.Functional.Bundle.CsrfFormLoginBundle.Controller.html">Controller</a>
</li>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Tests.Functional.Bundle.CsrfFormLoginBundle.Form.html">Form</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Tests.Functional.Bundle.FormLoginBundle.html">FormLoginBundle<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Tests.Functional.Bundle.FormLoginBundle.Controller.html">Controller</a>
</li>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Tests.Functional.Bundle.FormLoginBundle.DependencyInjection.html">DependencyInjection</a>
</li>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Tests.Functional.Bundle.FormLoginBundle.Security.html">Security</a>
</li>
</ul></li></ul></li></ul></li></ul></li>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Twig.html">Twig<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Twig.Extension.html">Extension</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Bundle.SwiftmailerBundle.html">SwiftmailerBundle<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.SwiftmailerBundle.Command.html">Command</a>
</li>
<li><a href="namespace-Symfony.Bundle.SwiftmailerBundle.DataCollector.html">DataCollector</a>
</li>
<li><a href="namespace-Symfony.Bundle.SwiftmailerBundle.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.SwiftmailerBundle.DependencyInjection.Compiler.html">Compiler</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.SwiftmailerBundle.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Symfony.Bundle.SwiftmailerBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.SwiftmailerBundle.Tests.DependencyInjection.html">DependencyInjection</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Bundle.TwigBundle.html">TwigBundle<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.TwigBundle.CacheWarmer.html">CacheWarmer</a>
</li>
<li><a href="namespace-Symfony.Bundle.TwigBundle.Command.html">Command</a>
</li>
<li><a href="namespace-Symfony.Bundle.TwigBundle.Controller.html">Controller</a>
</li>
<li><a href="namespace-Symfony.Bundle.TwigBundle.Debug.html">Debug</a>
</li>
<li><a href="namespace-Symfony.Bundle.TwigBundle.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.TwigBundle.DependencyInjection.Compiler.html">Compiler</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.TwigBundle.Extension.html">Extension</a>
</li>
<li><a href="namespace-Symfony.Bundle.TwigBundle.Loader.html">Loader</a>
</li>
<li><a href="namespace-Symfony.Bundle.TwigBundle.Node.html">Node</a>
</li>
<li><a href="namespace-Symfony.Bundle.TwigBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.TwigBundle.Tests.Controller.html">Controller</a>
</li>
<li><a href="namespace-Symfony.Bundle.TwigBundle.Tests.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.TwigBundle.Tests.DependencyInjection.Compiler.html">Compiler</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.TwigBundle.Tests.Loader.html">Loader</a>
</li>
<li><a href="namespace-Symfony.Bundle.TwigBundle.Tests.TokenParser.html">TokenParser</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.TwigBundle.TokenParser.html">TokenParser</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.WebProfilerBundle.html">WebProfilerBundle<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.WebProfilerBundle.Controller.html">Controller</a>
</li>
<li><a href="namespace-Symfony.Bundle.WebProfilerBundle.DependencyInjection.html">DependencyInjection</a>
</li>
<li><a href="namespace-Symfony.Bundle.WebProfilerBundle.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Symfony.Bundle.WebProfilerBundle.Profiler.html">Profiler</a>
</li>
<li><a href="namespace-Symfony.Bundle.WebProfilerBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.WebProfilerBundle.Tests.Controller.html">Controller</a>
</li>
<li><a href="namespace-Symfony.Bundle.WebProfilerBundle.Tests.DependencyInjection.html">DependencyInjection</a>
</li>
<li><a href="namespace-Symfony.Bundle.WebProfilerBundle.Tests.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Symfony.Bundle.WebProfilerBundle.Tests.Profiler.html">Profiler</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-Symfony.Component.html">Component<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.BrowserKit.html">BrowserKit<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.BrowserKit.Tests.html">Tests</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.ClassLoader.html">ClassLoader<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.ClassLoader.Tests.html">Tests</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Config.html">Config<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Config.Definition.html">Definition<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Config.Definition.Builder.html">Builder</a>
</li>
<li><a href="namespace-Symfony.Component.Config.Definition.Dumper.html">Dumper</a>
</li>
<li><a href="namespace-Symfony.Component.Config.Definition.Exception.html">Exception</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Config.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.Config.Loader.html">Loader</a>
</li>
<li><a href="namespace-Symfony.Component.Config.Resource.html">Resource</a>
</li>
<li><a href="namespace-Symfony.Component.Config.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Config.Tests.Definition.html">Definition<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Config.Tests.Definition.Builder.html">Builder</a>
</li>
<li><a href="namespace-Symfony.Component.Config.Tests.Definition.Dumper.html">Dumper</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Config.Tests.Fixtures.html">Fixtures<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Config.Tests.Fixtures.Configuration.html">Configuration</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Config.Tests.Loader.html">Loader</a>
</li>
<li><a href="namespace-Symfony.Component.Config.Tests.Resource.html">Resource</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Config.Util.html">Util</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Console.html">Console<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Console.Command.html">Command</a>
</li>
<li><a href="namespace-Symfony.Component.Console.Descriptor.html">Descriptor</a>
</li>
<li><a href="namespace-Symfony.Component.Console.Event.html">Event</a>
</li>
<li><a href="namespace-Symfony.Component.Console.Formatter.html">Formatter</a>
</li>
<li><a href="namespace-Symfony.Component.Console.Helper.html">Helper</a>
</li>
<li><a href="namespace-Symfony.Component.Console.Input.html">Input</a>
</li>
<li><a href="namespace-Symfony.Component.Console.Output.html">Output</a>
</li>
<li><a href="namespace-Symfony.Component.Console.Tester.html">Tester</a>
</li>
<li><a href="namespace-Symfony.Component.Console.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Console.Tests.Command.html">Command</a>
</li>
<li><a href="namespace-Symfony.Component.Console.Tests.Descriptor.html">Descriptor</a>
</li>
<li><a href="namespace-Symfony.Component.Console.Tests.Fixtures.html">Fixtures</a>
</li>
<li><a href="namespace-Symfony.Component.Console.Tests.Formatter.html">Formatter</a>
</li>
<li><a href="namespace-Symfony.Component.Console.Tests.Helper.html">Helper</a>
</li>
<li><a href="namespace-Symfony.Component.Console.Tests.Input.html">Input</a>
</li>
<li><a href="namespace-Symfony.Component.Console.Tests.Output.html">Output</a>
</li>
<li><a href="namespace-Symfony.Component.Console.Tests.Tester.html">Tester</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Component.CssSelector.html">CssSelector<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.CssSelector.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.CssSelector.Node.html">Node</a>
</li>
<li><a href="namespace-Symfony.Component.CssSelector.Parser.html">Parser<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.CssSelector.Parser.Handler.html">Handler</a>
</li>
<li><a href="namespace-Symfony.Component.CssSelector.Parser.Shortcut.html">Shortcut</a>
</li>
<li><a href="namespace-Symfony.Component.CssSelector.Parser.Tokenizer.html">Tokenizer</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.CssSelector.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.CssSelector.Tests.Node.html">Node</a>
</li>
<li><a href="namespace-Symfony.Component.CssSelector.Tests.Parser.html">Parser<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.CssSelector.Tests.Parser.Handler.html">Handler</a>
</li>
<li><a href="namespace-Symfony.Component.CssSelector.Tests.Parser.Shortcut.html">Shortcut</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.CssSelector.Tests.XPath.html">XPath</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.CssSelector.XPath.html">XPath<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.CssSelector.XPath.Extension.html">Extension</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Component.Debug.html">Debug<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Debug.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.Debug.FatalErrorHandler.html">FatalErrorHandler</a>
</li>
<li><a href="namespace-Symfony.Component.Debug.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Debug.Tests.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.Debug.Tests.FatalErrorHandler.html">FatalErrorHandler</a>
</li>
<li><a href="namespace-Symfony.Component.Debug.Tests.Fixtures.html">Fixtures</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Component.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.DependencyInjection.Compiler.html">Compiler</a>
</li>
<li><a href="namespace-Symfony.Component.DependencyInjection.Dump.html">Dump</a>
</li>
<li><a href="namespace-Symfony.Component.DependencyInjection.Dumper.html">Dumper</a>
</li>
<li><a href="namespace-Symfony.Component.DependencyInjection.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.DependencyInjection.Extension.html">Extension</a>
</li>
<li><a href="namespace-Symfony.Component.DependencyInjection.LazyProxy.html">LazyProxy<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.DependencyInjection.LazyProxy.Instantiator.html">Instantiator</a>
</li>
<li><a href="namespace-Symfony.Component.DependencyInjection.LazyProxy.PhpDumper.html">PhpDumper</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.DependencyInjection.Loader.html">Loader</a>
</li>
<li><a href="namespace-Symfony.Component.DependencyInjection.ParameterBag.html">ParameterBag</a>
</li>
<li><a href="namespace-Symfony.Component.DependencyInjection.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.DependencyInjection.Tests.Compiler.html">Compiler</a>
</li>
<li><a href="namespace-Symfony.Component.DependencyInjection.Tests.Dumper.html">Dumper</a>
</li>
<li><a href="namespace-Symfony.Component.DependencyInjection.Tests.Extension.html">Extension</a>
</li>
<li><a href="namespace-Symfony.Component.DependencyInjection.Tests.LazyProxy.html">LazyProxy<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.DependencyInjection.Tests.LazyProxy.Instantiator.html">Instantiator</a>
</li>
<li><a href="namespace-Symfony.Component.DependencyInjection.Tests.LazyProxy.PhpDumper.html">PhpDumper</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.DependencyInjection.Tests.Loader.html">Loader</a>
</li>
<li><a href="namespace-Symfony.Component.DependencyInjection.Tests.ParameterBag.html">ParameterBag</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Component.DomCrawler.html">DomCrawler<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.DomCrawler.Field.html">Field</a>
</li>
<li><a href="namespace-Symfony.Component.DomCrawler.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.DomCrawler.Tests.Field.html">Field</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Component.EventDispatcher.html">EventDispatcher<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.EventDispatcher.Debug.html">Debug</a>
</li>
<li><a href="namespace-Symfony.Component.EventDispatcher.Tests.html">Tests</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.ExpressionLanguage.html">ExpressionLanguage<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.ExpressionLanguage.Node.html">Node</a>
</li>
<li><a href="namespace-Symfony.Component.ExpressionLanguage.ParserCache.html">ParserCache</a>
</li>
<li><a href="namespace-Symfony.Component.ExpressionLanguage.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.ExpressionLanguage.Tests.Node.html">Node</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Component.Filesystem.html">Filesystem<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Filesystem.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.Filesystem.Tests.html">Tests</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Finder.html">Finder<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Finder.Adapter.html">Adapter</a>
</li>
<li><a href="namespace-Symfony.Component.Finder.Comparator.html">Comparator</a>
</li>
<li><a href="namespace-Symfony.Component.Finder.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.Finder.Expression.html">Expression</a>
</li>
<li><a href="namespace-Symfony.Component.Finder.Iterator.html">Iterator</a>
</li>
<li><a href="namespace-Symfony.Component.Finder.Shell.html">Shell</a>
</li>
<li><a href="namespace-Symfony.Component.Finder.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Finder.Tests.Comparator.html">Comparator</a>
</li>
<li><a href="namespace-Symfony.Component.Finder.Tests.Expression.html">Expression</a>
</li>
<li><a href="namespace-Symfony.Component.Finder.Tests.FakeAdapter.html">FakeAdapter</a>
</li>
<li><a href="namespace-Symfony.Component.Finder.Tests.Iterator.html">Iterator</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Component.Form.html">Form<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Form.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Extension.html">Extension<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Form.Extension.Core.html">Core<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Form.Extension.Core.ChoiceList.html">ChoiceList</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Extension.Core.DataMapper.html">DataMapper</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Extension.Core.DataTransformer.html">DataTransformer</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Extension.Core.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Extension.Core.Type.html">Type</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Extension.Core.View.html">View</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Form.Extension.Csrf.html">Csrf<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Form.Extension.Csrf.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Extension.Csrf.Type.html">Type</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Form.Extension.DataCollector.html">DataCollector<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Form.Extension.DataCollector.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Extension.DataCollector.Proxy.html">Proxy</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Extension.DataCollector.Type.html">Type</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Form.Extension.DependencyInjection.html">DependencyInjection</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Extension.HttpFoundation.html">HttpFoundation<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Form.Extension.HttpFoundation.Type.html">Type</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Form.Extension.Templating.html">Templating</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Extension.Validator.html">Validator<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Form.Extension.Validator.Constraints.html">Constraints</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Extension.Validator.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Extension.Validator.Type.html">Type</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Extension.Validator.Util.html">Util</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Extension.Validator.ViolationMapper.html">ViolationMapper</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Component.Form.Guess.html">Guess</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Test.html">Test</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.html">Extension<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.Core.html">Core<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.Core.ChoiceList.html">ChoiceList</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.Core.DataMapper.html">DataMapper</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.Core.DataTransformer.html">DataTransformer</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.Core.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.Core.Type.html">Type</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.Csrf.html">Csrf<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.Csrf.CsrfProvider.html">CsrfProvider</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.Csrf.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.Csrf.Type.html">Type</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.DataCollector.html">DataCollector<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.DataCollector.Type.html">Type</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.HttpFoundation.html">HttpFoundation<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.HttpFoundation.EventListener.html">EventListener</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.Validator.html">Validator<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.Validator.Constraints.html">Constraints</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.Validator.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.Validator.Type.html">Type</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.Validator.Util.html">Util</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.Validator.ViolationMapper.html">ViolationMapper</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Component.Form.Tests.Fixtures.html">Fixtures</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Tests.Guess.html">Guess</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Tests.Util.html">Util</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Form.Util.html">Util</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.HttpFoundation.html">HttpFoundation<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.HttpFoundation.File.html">File<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.HttpFoundation.File.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.HttpFoundation.File.MimeType.html">MimeType</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.HttpFoundation.Session.html">Session<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.HttpFoundation.Session.Attribute.html">Attribute</a>
</li>
<li><a href="namespace-Symfony.Component.HttpFoundation.Session.Flash.html">Flash</a>
</li>
<li><a href="namespace-Symfony.Component.HttpFoundation.Session.Storage.html">Storage<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.HttpFoundation.Session.Storage.Handler.html">Handler</a>
</li>
<li><a href="namespace-Symfony.Component.HttpFoundation.Session.Storage.Proxy.html">Proxy</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Component.HttpFoundation.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.HttpFoundation.Tests.File.html">File<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.HttpFoundation.Tests.File.MimeType.html">MimeType</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.HttpFoundation.Tests.Session.html">Session<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.HttpFoundation.Tests.Session.Attribute.html">Attribute</a>
</li>
<li><a href="namespace-Symfony.Component.HttpFoundation.Tests.Session.Flash.html">Flash</a>
</li>
<li><a href="namespace-Symfony.Component.HttpFoundation.Tests.Session.Storage.html">Storage<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.HttpFoundation.Tests.Session.Storage.Handler.html">Handler</a>
</li>
<li><a href="namespace-Symfony.Component.HttpFoundation.Tests.Session.Storage.Proxy.html">Proxy</a>
</li>
</ul></li></ul></li></ul></li></ul></li>
<li><a href="namespace-Symfony.Component.HttpKernel.html">HttpKernel<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.HttpKernel.Bundle.html">Bundle</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.CacheClearer.html">CacheClearer</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.CacheWarmer.html">CacheWarmer</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Config.html">Config</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Controller.html">Controller</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.DataCollector.html">DataCollector<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.HttpKernel.DataCollector.Util.html">Util</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.HttpKernel.Debug.html">Debug</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.DependencyInjection.html">DependencyInjection</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Event.html">Event</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Fragment.html">Fragment</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.HttpCache.html">HttpCache</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Log.html">Log</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Profiler.html">Profiler</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.Bundle.html">Bundle</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.CacheClearer.html">CacheClearer</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.CacheWarmer.html">CacheWarmer</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.Config.html">Config</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.Controller.html">Controller</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.DataCollector.html">DataCollector</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.Debug.html">Debug</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.DependencyInjection.html">DependencyInjection</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.Fixtures.html">Fixtures<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.Fixtures.ExtensionAbsentBundle.html">ExtensionAbsentBundle</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.Fixtures.ExtensionLoadedBundle.html">ExtensionLoadedBundle<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.Fixtures.ExtensionLoadedBundle.DependencyInjection.html">DependencyInjection</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.Fixtures.ExtensionPresentBundle.html">ExtensionPresentBundle<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.Fixtures.ExtensionPresentBundle.Command.html">Command</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.Fixtures.ExtensionPresentBundle.DependencyInjection.html">DependencyInjection</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.Fragment.html">Fragment</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.HttpCache.html">HttpCache</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.Profiler.html">Profiler<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.Profiler.Mock.html">Mock</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-Symfony.Component.Icu.html">Icu<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Icu.Tests.html">Tests</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Intl.html">Intl<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Intl.Collator.html">Collator</a>
</li>
<li><a href="namespace-Symfony.Component.Intl.DateFormatter.html">DateFormatter<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Intl.DateFormatter.DateFormat.html">DateFormat</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Intl.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.Intl.Globals.html">Globals</a>
</li>
<li><a href="namespace-Symfony.Component.Intl.Locale.html">Locale</a>
</li>
<li><a href="namespace-Symfony.Component.Intl.NumberFormatter.html">NumberFormatter</a>
</li>
<li><a href="namespace-Symfony.Component.Intl.ResourceBundle.html">ResourceBundle<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Intl.ResourceBundle.Compiler.html">Compiler</a>
</li>
<li><a href="namespace-Symfony.Component.Intl.ResourceBundle.Reader.html">Reader</a>
</li>
<li><a href="namespace-Symfony.Component.Intl.ResourceBundle.Transformer.html">Transformer<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Intl.ResourceBundle.Transformer.Rule.html">Rule</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Intl.ResourceBundle.Util.html">Util</a>
</li>
<li><a href="namespace-Symfony.Component.Intl.ResourceBundle.Writer.html">Writer</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Intl.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Intl.Tests.Collator.html">Collator<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Intl.Tests.Collator.Verification.html">Verification</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Intl.Tests.DateFormatter.html">DateFormatter<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Intl.Tests.DateFormatter.Verification.html">Verification</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Intl.Tests.Globals.html">Globals<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Intl.Tests.Globals.Verification.html">Verification</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Intl.Tests.Locale.html">Locale<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Intl.Tests.Locale.Verification.html">Verification</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Intl.Tests.NumberFormatter.html">NumberFormatter<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Intl.Tests.NumberFormatter.Verification.html">Verification</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Intl.Tests.ResourceBundle.html">ResourceBundle<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Intl.Tests.ResourceBundle.Reader.html">Reader</a>
</li>
<li><a href="namespace-Symfony.Component.Intl.Tests.ResourceBundle.Util.html">Util</a>
</li>
<li><a href="namespace-Symfony.Component.Intl.Tests.ResourceBundle.Writer.html">Writer</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Intl.Tests.Util.html">Util</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Intl.Util.html">Util</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Locale.html">Locale<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Locale.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Locale.Tests.Stub.html">Stub</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Component.OptionsResolver.html">OptionsResolver<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.OptionsResolver.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.OptionsResolver.Tests.html">Tests</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Process.html">Process<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Process.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.Process.Tests.html">Tests</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.PropertyAccess.html">PropertyAccess<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.PropertyAccess.Exception.html">Exception</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Routing.html">Routing<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Routing.Annotation.html">Annotation</a>
</li>
<li><a href="namespace-Symfony.Component.Routing.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.Routing.Generator.html">Generator<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Routing.Generator.Dumper.html">Dumper</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Routing.Loader.html">Loader</a>
</li>
<li><a href="namespace-Symfony.Component.Routing.Matcher.html">Matcher<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Routing.Matcher.Dumper.html">Dumper</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Routing.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Routing.Tests.Annotation.html">Annotation</a>
</li>
<li><a href="namespace-Symfony.Component.Routing.Tests.Fixtures.html">Fixtures<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Routing.Tests.Fixtures.AnnotatedClasses.html">AnnotatedClasses</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Routing.Tests.Generator.html">Generator<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Routing.Tests.Generator.Dumper.html">Dumper</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Routing.Tests.Loader.html">Loader</a>
</li>
<li><a href="namespace-Symfony.Component.Routing.Tests.Matcher.html">Matcher<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Routing.Tests.Matcher.Dumper.html">Dumper</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-Symfony.Component.Security.html">Security<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Security.Acl.html">Acl<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Security.Acl.Dbal.html">Dbal</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Acl.Domain.html">Domain</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Acl.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Acl.Model.html">Model</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Acl.Permission.html">Permission</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Acl.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Security.Acl.Tests.Dbal.html">Dbal</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Acl.Tests.Domain.html">Domain</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Acl.Tests.Permission.html">Permission</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Acl.Tests.Voter.html">Voter</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Security.Acl.Voter.html">Voter</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Security.Core.html">Core<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Security.Core.Authentication.html">Authentication<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Security.Core.Authentication.Provider.html">Provider</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Core.Authentication.RememberMe.html">RememberMe</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Core.Authentication.Token.html">Token</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Security.Core.Authorization.html">Authorization<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Security.Core.Authorization.Voter.html">Voter</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Security.Core.Encoder.html">Encoder</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Core.Event.html">Event</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Core.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Core.Role.html">Role</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Core.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Security.Core.Tests.Authentication.html">Authentication<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Security.Core.Tests.Authentication.Provider.html">Provider</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Core.Tests.Authentication.RememberMe.html">RememberMe</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Core.Tests.Authentication.Token.html">Token</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Security.Core.Tests.Authorization.html">Authorization<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Security.Core.Tests.Authorization.Voter.html">Voter</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Security.Core.Tests.Encoder.html">Encoder</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Core.Tests.Role.html">Role</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Core.Tests.User.html">User</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Core.Tests.Util.html">Util</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Core.Tests.Validator.html">Validator<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Security.Core.Tests.Validator.Constraints.html">Constraints</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Component.Security.Core.User.html">User</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Core.Util.html">Util</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Core.Validator.html">Validator<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Security.Core.Validator.Constraints.html">Constraints</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Component.Security.Csrf.html">Csrf<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Security.Csrf.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Csrf.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Security.Csrf.Tests.TokenGenerator.html">TokenGenerator</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Csrf.Tests.TokenStorage.html">TokenStorage</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Security.Csrf.TokenGenerator.html">TokenGenerator</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Csrf.TokenStorage.html">TokenStorage</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Security.Http.html">Http<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Security.Http.Authentication.html">Authentication</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Http.Authorization.html">Authorization</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Http.EntryPoint.html">EntryPoint</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Http.Event.html">Event</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Http.Firewall.html">Firewall</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Http.Logout.html">Logout</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Http.RememberMe.html">RememberMe</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Http.Session.html">Session</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Http.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Security.Http.Tests.Authentication.html">Authentication</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Http.Tests.EntryPoint.html">EntryPoint</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Http.Tests.Firewall.html">Firewall</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Http.Tests.Logout.html">Logout</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Http.Tests.RememberMe.html">RememberMe</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Http.Tests.Session.html">Session</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Component.Security.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Security.Tests.Core.html">Core<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Security.Tests.Core.Authentication.html">Authentication<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Security.Tests.Core.Authentication.Token.html">Token</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Security.Tests.Core.User.html">User</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Security.Tests.Http.html">Http<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Security.Tests.Http.Firewall.html">Firewall</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-Symfony.Component.Serializer.html">Serializer<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Serializer.Encoder.html">Encoder</a>
</li>
<li><a href="namespace-Symfony.Component.Serializer.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.Serializer.Normalizer.html">Normalizer</a>
</li>
<li><a href="namespace-Symfony.Component.Serializer.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Serializer.Tests.Encoder.html">Encoder</a>
</li>
<li><a href="namespace-Symfony.Component.Serializer.Tests.Fixtures.html">Fixtures</a>
</li>
<li><a href="namespace-Symfony.Component.Serializer.Tests.Normalizer.html">Normalizer</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Component.Stopwatch.html">Stopwatch</a>
</li>
<li><a href="namespace-Symfony.Component.Templating.html">Templating<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Templating.Asset.html">Asset</a>
</li>
<li><a href="namespace-Symfony.Component.Templating.Helper.html">Helper</a>
</li>
<li><a href="namespace-Symfony.Component.Templating.Loader.html">Loader</a>
</li>
<li><a href="namespace-Symfony.Component.Templating.Storage.html">Storage</a>
</li>
<li><a href="namespace-Symfony.Component.Templating.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Templating.Tests.Fixtures.html">Fixtures</a>
</li>
<li><a href="namespace-Symfony.Component.Templating.Tests.Helper.html">Helper</a>
</li>
<li><a href="namespace-Symfony.Component.Templating.Tests.Loader.html">Loader</a>
</li>
<li><a href="namespace-Symfony.Component.Templating.Tests.Storage.html">Storage</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Component.Translation.html">Translation<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Translation.Catalogue.html">Catalogue</a>
</li>
<li><a href="namespace-Symfony.Component.Translation.Dumper.html">Dumper</a>
</li>
<li><a href="namespace-Symfony.Component.Translation.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.Translation.Extractor.html">Extractor</a>
</li>
<li><a href="namespace-Symfony.Component.Translation.Loader.html">Loader</a>
</li>
<li><a href="namespace-Symfony.Component.Translation.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Translation.Tests.Catalogue.html">Catalogue</a>
</li>
<li><a href="namespace-Symfony.Component.Translation.Tests.Dumper.html">Dumper</a>
</li>
<li><a href="namespace-Symfony.Component.Translation.Tests.Loader.html">Loader</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Translation.Writer.html">Writer</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Validator.html">Validator<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Validator.Constraints.html">Constraints</a>
</li>
<li><a href="namespace-Symfony.Component.Validator.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.Validator.Mapping.html">Mapping<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Validator.Mapping.Cache.html">Cache</a>
</li>
<li><a href="namespace-Symfony.Component.Validator.Mapping.Loader.html">Loader</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Validator.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Validator.Tests.Constraints.html">Constraints</a>
</li>
<li><a href="namespace-Symfony.Component.Validator.Tests.Fixtures.html">Fixtures</a>
</li>
<li><a href="namespace-Symfony.Component.Validator.Tests.Mapping.html">Mapping<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Validator.Tests.Mapping.Cache.html">Cache</a>
</li>
<li><a href="namespace-Symfony.Component.Validator.Tests.Mapping.Loader.html">Loader</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-Symfony.Component.Yaml.html">Yaml<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Yaml.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.Yaml.Tests.html">Tests</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-Tecnocreaciones.html">Tecnocreaciones<span></span></a>
<ul>
<li><a href="namespace-Tecnocreaciones.Bundle.html">Bundle<span></span></a>
<ul>
<li><a href="namespace-Tecnocreaciones.Bundle.AjaxFOSUserBundle.html">AjaxFOSUserBundle<span></span></a>
<ul>
<li><a href="namespace-Tecnocreaciones.Bundle.AjaxFOSUserBundle.Controller.html">Controller</a>
</li>
<li><a href="namespace-Tecnocreaciones.Bundle.AjaxFOSUserBundle.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Tecnocreaciones.Bundle.AjaxFOSUserBundle.DependencyInjection.Compiler.html">Compiler</a>
</li>
</ul></li>
<li><a href="namespace-Tecnocreaciones.Bundle.AjaxFOSUserBundle.Event.html">Event</a>
</li>
<li><a href="namespace-Tecnocreaciones.Bundle.AjaxFOSUserBundle.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Tecnocreaciones.Bundle.AjaxFOSUserBundle.Handler.html">Handler</a>
</li>
<li><a href="namespace-Tecnocreaciones.Bundle.AjaxFOSUserBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Tecnocreaciones.Bundle.AjaxFOSUserBundle.Tests.Controller.html">Controller</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Tecnocreaciones.Bundle.InstallBundle.html">InstallBundle<span></span></a>
<ul>
<li><a href="namespace-Tecnocreaciones.Bundle.InstallBundle.Command.html">Command</a>
</li>
<li><a href="namespace-Tecnocreaciones.Bundle.InstallBundle.DependencyInjection.html">DependencyInjection</a>
</li>
<li><a href="namespace-Tecnocreaciones.Bundle.InstallBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Tecnocreaciones.Bundle.InstallBundle.Tests.Controller.html">Controller</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Tecnocreaciones.Bundle.TemplateBundle.html">TemplateBundle<span></span></a>
<ul>
<li><a href="namespace-Tecnocreaciones.Bundle.TemplateBundle.Controller.html">Controller</a>
</li>
<li><a href="namespace-Tecnocreaciones.Bundle.TemplateBundle.DependencyInjection.html">DependencyInjection</a>
</li>
<li><a href="namespace-Tecnocreaciones.Bundle.TemplateBundle.Menu.html">Menu<span></span></a>
<ul>
<li><a href="namespace-Tecnocreaciones.Bundle.TemplateBundle.Menu.Template.html">Template<span></span></a>
<ul>
<li><a href="namespace-Tecnocreaciones.Bundle.TemplateBundle.Menu.Template.Developer.html">Developer</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Tecnocreaciones.Bundle.TemplateBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Tecnocreaciones.Bundle.TemplateBundle.Tests.Controller.html">Controller</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-Tecnocreaciones.Vzla.html">Vzla<span></span></a>
<ul>
<li><a href="namespace-Tecnocreaciones.Vzla.GovernmentBundle.html">GovernmentBundle<span></span></a>
<ul>
<li><a href="namespace-Tecnocreaciones.Vzla.GovernmentBundle.DependencyInjection.html">DependencyInjection</a>
</li>
<li><a href="namespace-Tecnocreaciones.Vzla.GovernmentBundle.Form.html">Form<span></span></a>
<ul>
<li><a href="namespace-Tecnocreaciones.Vzla.GovernmentBundle.Form.Type.html">Type</a>
</li>
</ul></li>
<li><a href="namespace-Tecnocreaciones.Vzla.GovernmentBundle.Menu.html">Menu<span></span></a>
<ul>
<li><a href="namespace-Tecnocreaciones.Vzla.GovernmentBundle.Menu.Template.html">Template<span></span></a>
<ul>
<li><a href="namespace-Tecnocreaciones.Vzla.GovernmentBundle.Menu.Template.Developer.html">Developer</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Tecnocreaciones.Vzla.GovernmentBundle.Model.html">Model</a>
</li>
<li><a href="namespace-Tecnocreaciones.Vzla.GovernmentBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Tecnocreaciones.Vzla.GovernmentBundle.Tests.Controller.html">Controller</a>
</li>
</ul></li>
<li><a href="namespace-Tecnocreaciones.Vzla.GovernmentBundle.Twig.html">Twig<span></span></a>
<ul>
<li><a href="namespace-Tecnocreaciones.Vzla.GovernmentBundle.Twig.Extension.html">Extension</a>
</li>
</ul></li></ul></li></ul></li></ul></li>
<li><a href="namespace-TestBundle.html">TestBundle<span></span></a>
<ul>
<li><a href="namespace-TestBundle.Fabpot.html">Fabpot<span></span></a>
<ul>
<li><a href="namespace-TestBundle.Fabpot.FooBundle.html">FooBundle<span></span></a>
<ul>
<li><a href="namespace-TestBundle.Fabpot.FooBundle.Controller.html">Controller</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-TestBundle.FooBundle.html">FooBundle<span></span></a>
<ul>
<li><a href="namespace-TestBundle.FooBundle.Controller.html">Controller<span></span></a>
<ul>
<li><a href="namespace-TestBundle.FooBundle.Controller.Sub.html">Sub</a>
</li>
<li><a href="namespace-TestBundle.FooBundle.Controller.Test.html">Test</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-TestBundle.Sensio.html">Sensio<span></span></a>
<ul>
<li><a href="namespace-TestBundle.Sensio.Cms.html">Cms<span></span></a>
<ul>
<li><a href="namespace-TestBundle.Sensio.Cms.FooBundle.html">FooBundle<span></span></a>
<ul>
<li><a href="namespace-TestBundle.Sensio.Cms.FooBundle.Controller.html">Controller</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-TestBundle.Sensio.FooBundle.html">FooBundle<span></span></a>
<ul>
<li><a href="namespace-TestBundle.Sensio.FooBundle.Controller.html">Controller</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-TestFixtures.html">TestFixtures</a>
</li>
<li><a href="namespace-Timestampable.html">Timestampable<span></span></a>
<ul>
<li><a href="namespace-Timestampable.Fixture.html">Fixture<span></span></a>
<ul>
<li><a href="namespace-Timestampable.Fixture.Document.html">Document</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Tool.html">Tool</a>
</li>
<li><a href="namespace-Translatable.html">Translatable<span></span></a>
<ul>
<li><a href="namespace-Translatable.Fixture.html">Fixture<span></span></a>
<ul>
<li><a href="namespace-Translatable.Fixture.Document.html">Document<span></span></a>
<ul>
<li><a href="namespace-Translatable.Fixture.Document.Personal.html">Personal</a>
</li>
</ul></li>
<li><a href="namespace-Translatable.Fixture.Issue114.html">Issue114</a>
</li>
<li><a href="namespace-Translatable.Fixture.Issue138.html">Issue138</a>
</li>
<li><a href="namespace-Translatable.Fixture.Issue165.html">Issue165</a>
</li>
<li><a href="namespace-Translatable.Fixture.Issue173.html">Issue173</a>
</li>
<li><a href="namespace-Translatable.Fixture.Issue75.html">Issue75</a>
</li>
<li><a href="namespace-Translatable.Fixture.Issue922.html">Issue922</a>
</li>
<li><a href="namespace-Translatable.Fixture.Personal.html">Personal</a>
</li>
<li><a href="namespace-Translatable.Fixture.Template.html">Template</a>
</li>
<li><a href="namespace-Translatable.Fixture.Type.html">Type</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Translator.html">Translator<span></span></a>
<ul>
<li><a href="namespace-Translator.Fixture.html">Fixture</a>
</li>
</ul></li>
<li><a href="namespace-Tree.html">Tree<span></span></a>
<ul>
<li><a href="namespace-Tree.Fixture.html">Fixture<span></span></a>
<ul>
<li><a href="namespace-Tree.Fixture.Closure.html">Closure</a>
</li>
<li><a href="namespace-Tree.Fixture.Document.html">Document</a>
</li>
<li><a href="namespace-Tree.Fixture.Genealogy.html">Genealogy</a>
</li>
<li><a href="namespace-Tree.Fixture.Mock.html">Mock</a>
</li>
<li><a href="namespace-Tree.Fixture.Repository.html">Repository</a>
</li>
<li><a href="namespace-Tree.Fixture.Transport.html">Transport</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Uploadable.html">Uploadable<span></span></a>
<ul>
<li><a href="namespace-Uploadable.Fixture.html">Fixture<span></span></a>
<ul>
<li><a href="namespace-Uploadable.Fixture.Entity.html">Entity</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Wrapper.html">Wrapper<span></span></a>
<ul>
<li><a href="namespace-Wrapper.Fixture.html">Fixture<span></span></a>
<ul>
<li><a href="namespace-Wrapper.Fixture.Document.html">Document</a>
</li>
<li><a href="namespace-Wrapper.Fixture.Entity.html">Entity</a>
</li>
</ul></li></ul></li>
</ul>
</div>
<hr />
<div id="elements">
<h3>Classes</h3>
<ul>
<li><a href="class-__TwigTemplate_00b8c35e1b811d4109207629d6fdb362766f23f491a4fd5c59a37f1fb8f48dc9.html">__TwigTemplate_00b8c35e1b811d4109207629d6fdb362766f23f491a4fd5c59a37f1fb8f48dc9</a></li>
<li><a href="class-__TwigTemplate_04826f36455cdd836fcf916212479af00bf815b16f2da0b433568b6e74e8a7f8.html">__TwigTemplate_04826f36455cdd836fcf916212479af00bf815b16f2da0b433568b6e74e8a7f8</a></li>
<li><a href="class-__TwigTemplate_06d0ee80ec0b3808c1e3e0f1eaa37e1d289207151d03ac155c0a1dd398095374.html">__TwigTemplate_06d0ee80ec0b3808c1e3e0f1eaa37e1d289207151d03ac155c0a1dd398095374</a></li>
<li><a href="class-__TwigTemplate_0a5cb064c2df4002c40156d805574ef26ba7d2ad34cf6d9014bba65611b067a6.html">__TwigTemplate_0a5cb064c2df4002c40156d805574ef26ba7d2ad34cf6d9014bba65611b067a6</a></li>
<li><a href="class-__TwigTemplate_1a8a008b17c0fc9c4422e86d910812f108bd02d41aa99f65e9ff456478be878b.html">__TwigTemplate_1a8a008b17c0fc9c4422e86d910812f108bd02d41aa99f65e9ff456478be878b</a></li>
<li><a href="class-__TwigTemplate_202729613bb4cece82b86ed5dd3d663ba2a9076fd59b1e4b7fc54001cdab459d.html">__TwigTemplate_202729613bb4cece82b86ed5dd3d663ba2a9076fd59b1e4b7fc54001cdab459d</a></li>
<li><a href="class-__TwigTemplate_29c0a8c596d230ebb62508e15121e200b3b4058486c69bd5b367a3a56121cbf2.html">__TwigTemplate_29c0a8c596d230ebb62508e15121e200b3b4058486c69bd5b367a3a56121cbf2</a></li>
<li><a href="class-__TwigTemplate_2a099ea45a9ad2e6d0eee195f2735febd86cd8affd00a96ba76bd32d8a955d08.html">__TwigTemplate_2a099ea45a9ad2e6d0eee195f2735febd86cd8affd00a96ba76bd32d8a955d08</a></li>
<li><a href="class-__TwigTemplate_2a4c8cde5314b830e4b164890ef03c39c758e99642a9c8201bd1fc3f7d1a3eaa.html">__TwigTemplate_2a4c8cde5314b830e4b164890ef03c39c758e99642a9c8201bd1fc3f7d1a3eaa</a></li>
<li><a href="class-__TwigTemplate_2d5aae8fb78887d6f844cd993be184486cb1b994c388c404df271e16c8cb2367.html">__TwigTemplate_2d5aae8fb78887d6f844cd993be184486cb1b994c388c404df271e16c8cb2367</a></li>
<li><a href="class-__TwigTemplate_31cd92c171baa7d0248a9cd9f9e261c1b6314c904a1dc620f457019568b667ec.html">__TwigTemplate_31cd92c171baa7d0248a9cd9f9e261c1b6314c904a1dc620f457019568b667ec</a></li>
<li><a href="class-__TwigTemplate_3901f068736805ff95817e3dee15700d38edbfea54eafc57e69390d3f1617b07.html">__TwigTemplate_3901f068736805ff95817e3dee15700d38edbfea54eafc57e69390d3f1617b07</a></li>
<li><a href="class-__TwigTemplate_3a96ddc2f3670a7dc8540da0c1fb9142c80d9ad3a0585516781591cbdd1e4653.html">__TwigTemplate_3a96ddc2f3670a7dc8540da0c1fb9142c80d9ad3a0585516781591cbdd1e4653</a></li>
<li><a href="class-__TwigTemplate_3f1f823165090043b92db2a6ca9df83619c7d59c4912c1d96b41cc9454b7bd2d.html">__TwigTemplate_3f1f823165090043b92db2a6ca9df83619c7d59c4912c1d96b41cc9454b7bd2d</a></li>
<li><a href="class-__TwigTemplate_4c167004982bc3df85847d214f75bbc7292e4978f21ea4b1ffc1ad8b6e7e7984.html">__TwigTemplate_4c167004982bc3df85847d214f75bbc7292e4978f21ea4b1ffc1ad8b6e7e7984</a></li>
<li><a href="class-__TwigTemplate_604afce2825734b3056b8de33aa319469eb461e57c7786efaa45f9d5fe31b240.html">__TwigTemplate_604afce2825734b3056b8de33aa319469eb461e57c7786efaa45f9d5fe31b240</a></li>
<li><a href="class-__TwigTemplate_636a60d0cdd51b68216b1320bcecca81c25647b15505a663e580c10cd84b76dc.html">__TwigTemplate_636a60d0cdd51b68216b1320bcecca81c25647b15505a663e580c10cd84b76dc</a></li>
<li><a href="class-__TwigTemplate_8bc76e67c9947536ac6616053c3be481b20559af35aea962141c218a05caaf6e.html">__TwigTemplate_8bc76e67c9947536ac6616053c3be481b20559af35aea962141c218a05caaf6e</a></li>
<li><a href="class-__TwigTemplate_91b414fec9f45029f129daf405120cd8b967f19506a83f384a47a335538bff9e.html">__TwigTemplate_91b414fec9f45029f129daf405120cd8b967f19506a83f384a47a335538bff9e</a></li>
<li><a href="class-__TwigTemplate_95aa645d8d73e1fbcf1c7477cabea0b7bbcd8422672fba89e28d265a741a5b3c.html">__TwigTemplate_95aa645d8d73e1fbcf1c7477cabea0b7bbcd8422672fba89e28d265a741a5b3c</a></li>
<li><a href="class-__TwigTemplate_989bd4a7b4ebb13402f9c0a50fde899d5f007f29b7054e9dd7d2d9c0bf0a136a.html">__TwigTemplate_989bd4a7b4ebb13402f9c0a50fde899d5f007f29b7054e9dd7d2d9c0bf0a136a</a></li>
<li><a href="class-__TwigTemplate_a410038cc2fcd4907573af4d31c3dcc965a4705d5a3208b490b7d2de6b9627f2.html">__TwigTemplate_a410038cc2fcd4907573af4d31c3dcc965a4705d5a3208b490b7d2de6b9627f2</a></li>
<li><a href="class-__TwigTemplate_a74b060d7938d768fb96db7bc562ec6ee9b485f77863e804b953617dbb47bfa2.html">__TwigTemplate_a74b060d7938d768fb96db7bc562ec6ee9b485f77863e804b953617dbb47bfa2</a></li>
<li><a href="class-__TwigTemplate_a916361653e96c17b141cd5c653193ba6d90dc0c5e30e7b5bf6b4935950dcc84.html">__TwigTemplate_a916361653e96c17b141cd5c653193ba6d90dc0c5e30e7b5bf6b4935950dcc84</a></li>
<li><a href="class-__TwigTemplate_b26078a39a793a5fbf1e0ea4e5f2b5c992eeff9084daa4d41fa4a223d8626fd5.html">__TwigTemplate_b26078a39a793a5fbf1e0ea4e5f2b5c992eeff9084daa4d41fa4a223d8626fd5</a></li>
<li><a href="class-__TwigTemplate_c8a82704bc18d1d46f834f4c7f44a5ba1845f03d12493a079aaa71d07639ad1b.html">__TwigTemplate_c8a82704bc18d1d46f834f4c7f44a5ba1845f03d12493a079aaa71d07639ad1b</a></li>
<li><a href="class-__TwigTemplate_d10ad0ccd6acca94798b1e5b6c0b7819d9995ac12903aefe2e6cb31426ee9229.html">__TwigTemplate_d10ad0ccd6acca94798b1e5b6c0b7819d9995ac12903aefe2e6cb31426ee9229</a></li>
<li><a href="class-__TwigTemplate_d1e7209e4c287f430cadbd9b1224ac49d1270bb77de31915b13f21946aa3d20e.html">__TwigTemplate_d1e7209e4c287f430cadbd9b1224ac49d1270bb77de31915b13f21946aa3d20e</a></li>
<li><a href="class-__TwigTemplate_e0ac72a70ebf75407bc2ac50c0a78903d231bd5e13976b1e5ee6b9748aeb6b31.html">__TwigTemplate_e0ac72a70ebf75407bc2ac50c0a78903d231bd5e13976b1e5ee6b9748aeb6b31</a></li>
<li><a href="class-__TwigTemplate_e9ee17bef176138cb417be8ebcc53983dc84340437a5882193e8f517c89d8fe9.html">__TwigTemplate_e9ee17bef176138cb417be8ebcc53983dc84340437a5882193e8f517c89d8fe9</a></li>
<li><a href="class-__TwigTemplate_ea599c5759ceafa0e628d7284df403f1308bdaec0b36dd66a6b3286b85708caa.html">__TwigTemplate_ea599c5759ceafa0e628d7284df403f1308bdaec0b36dd66a6b3286b85708caa</a></li>
<li><a href="class-__TwigTemplate_f766859866dd5347b27aa52008175f094affac8352ae3b3708ff210bce09636c.html">__TwigTemplate_f766859866dd5347b27aa52008175f094affac8352ae3b3708ff210bce09636c</a></li>
<li><a href="class-__TwigTemplate_f969bef44cf57d0abff0d16c791c71eb7ef39c10a148e8c749e7d24b6f23a6ac.html">__TwigTemplate_f969bef44cf57d0abff0d16c791c71eb7ef39c10a148e8c749e7d24b6f23a6ac</a></li>
<li><a href="class-A.html">A</a></li>
<li><a href="class-AnnotationsTestsFixturesNonNamespacedClass.html">AnnotationsTestsFixturesNonNamespacedClass</a></li>
<li><a href="class-Apc_Pearlike_Bar.html">Apc_Pearlike_Bar</a></li>
<li><a href="class-Apc_Pearlike_Baz.html">Apc_Pearlike_Baz</a></li>
<li><a href="class-Apc_Pearlike_Foo.html">Apc_Pearlike_Foo</a></li>
<li><a href="class-Apc_Pearlike_FooBar.html">Apc_Pearlike_FooBar</a></li>
<li><a href="class-ApcPrefixCollision_A_B_Bar.html">ApcPrefixCollision_A_B_Bar</a></li>
<li><a href="class-ApcPrefixCollision_A_B_Foo.html">ApcPrefixCollision_A_B_Foo</a></li>
<li><a href="class-ApcPrefixCollision_A_Bar.html">ApcPrefixCollision_A_Bar</a></li>
<li><a href="class-ApcPrefixCollision_A_Foo.html">ApcPrefixCollision_A_Foo</a></li>
<li><a href="class-Api.html">Api</a></li>
<li><a href="class-AppCache.html">AppCache</a></li>
<li><a href="class-appDevDebugProjectContainer.html">appDevDebugProjectContainer</a></li>
<li><a href="class-appDevUrlGenerator.html">appDevUrlGenerator</a></li>
<li><a href="class-appDevUrlMatcher.html">appDevUrlMatcher</a></li>
<li><a href="class-AppKernel.html">AppKernel</a></li>
<li><a href="class-BarBucCommand.html">BarBucCommand</a></li>
<li><a href="class-BarClass.html" class="invalid">BarClass</a></li>
<li><a href="class-BarClassFactory.html">BarClassFactory</a></li>
<li><a href="class-BarUserClass.html">BarUserClass</a></li>
<li><a href="class-BazClass.html">BazClass</a></li>
<li><a href="class-CExtDisablingNodeVisitor.html">CExtDisablingNodeVisitor</a></li>
<li><a href="class-CFoo.html">CFoo</a></li>
<li><a href="class-ClassLoaderTest_ClassA.html">ClassLoaderTest_ClassA</a></li>
<li><a href="class-ClassLoaderTest_ClassB.html">ClassLoaderTest_ClassB</a></li>
<li><a href="class-ClassLoaderTest_ClassC.html">ClassLoaderTest_ClassC</a></li>
<li><a href="class-Collator.html">Collator</a></li>
<li><a href="class-ComposerAutoloaderInit23420dfe124bdae2daff5e7dca930408.html">ComposerAutoloaderInit23420dfe124bdae2daff5e7dca930408</a></li>
<li><a href="class-CTBar.html">CTBar</a></li>
<li><a href="class-CTFoo.html">CTFoo</a></li>
<li><a href="class-CustomDriver.html">CustomDriver</a></li>
<li><a href="class-CustomDriverTest.html">CustomDriverTest</a></li>
<li><a href="class-D.html">D</a></li>
<li><a href="class-Entity.html">Entity</a></li>
<li><a href="class-EsmtpTransportFixture.html">EsmtpTransportFixture</a></li>
<li><a href="class-Foo.html">Foo</a></li>
<li><a href="class-Foo1Command.html">Foo1Command</a></li>
<li><a href="class-Foo2Command.html">Foo2Command</a></li>
<li><a href="class-Foo3Command.html">Foo3Command</a></li>
<li><a href="class-Foo4Command.html">Foo4Command</a></li>
<li><a href="class-Foo5Command.html">Foo5Command</a></li>
<li><a href="class-FoobarCommand.html">FoobarCommand</a></li>
<li><a href="class-FooClass.html" class="invalid">FooClass</a></li>
<li><a href="class-FooCommand.html">FooCommand</a></li>
<li><a href="class-FooObject.html">FooObject</a></li>
<li><a href="class-ForcedMetadataTest.html">ForcedMetadataTest</a></li>
<li><a href="class-GlobalNamespacesPerFileWithClassAsFirst.html">GlobalNamespacesPerFileWithClassAsFirst</a></li>
<li><a href="class-GlobalNamespacesPerFileWithClassAsLast.html">GlobalNamespacesPerFileWithClassAsLast</a></li>
<li><a href="class-grammarTest.html">grammarTest</a></li>
<li><a href="class-IdenticalBinaryConstraint.html">IdenticalBinaryConstraint</a></li>
<li><a href="class-IntlDateFormatter.html">IntlDateFormatter</a></li>
<li><a href="class-JsonpCallbackValidator.html">JsonpCallbackValidator</a></li>
<li><a href="class-JsonpCallbackValidatorTest.html">JsonpCallbackValidatorTest</a></li>
<li><a href="class-LazyServiceProjectServiceContainer.html">LazyServiceProjectServiceContainer</a></li>
<li><a href="class-Locale.html">Locale</a></li>
<li><a href="class-MimeEntityFixture.html">MimeEntityFixture</a></li>
<li><a href="class-NumberFormatter.html">NumberFormatter</a></li>
<li><a href="class-One.html">One</a></li>
<li><a href="class-Pearlike2_Bar.html">Pearlike2_Bar</a></li>
<li><a href="class-Pearlike2_Baz.html">Pearlike2_Baz</a></li>
<li><a href="class-Pearlike2_Foo.html">Pearlike2_Foo</a></li>
<li><a href="class-Pearlike2_FooBar.html">Pearlike2_FooBar</a></li>
<li><a href="class-Pearlike_Bar.html">Pearlike_Bar</a></li>
<li><a href="class-Pearlike_Baz.html">Pearlike_Baz</a></li>
<li><a href="class-Pearlike_Foo.html">Pearlike_Foo</a></li>
<li><a href="class-Pearlike_FooBar.html">Pearlike_FooBar</a></li>
<li><a href="class-Pearlike_WithComments.html">Pearlike_WithComments</a></li>
<li><a href="class-PhpIniRequirement.html" class="invalid">PhpIniRequirement</a></li>
<li><a href="class-PHPParser_Autoloader.html">PHPParser_Autoloader</a></li>
<li><a href="class-PHPParser_Builder_Class.html">PHPParser_Builder_Class</a></li>
<li><a href="class-PHPParser_Builder_Function.html">PHPParser_Builder_Function</a></li>
<li><a href="class-PHPParser_Builder_Interface.html">PHPParser_Builder_Interface</a></li>
<li><a href="class-PHPParser_Builder_Method.html">PHPParser_Builder_Method</a></li>
<li><a href="class-PHPParser_Builder_Param.html">PHPParser_Builder_Param</a></li>
<li><a href="class-PHPParser_Builder_Property.html">PHPParser_Builder_Property</a></li>
<li><a href="class-PHPParser_BuilderAbstract.html">PHPParser_BuilderAbstract</a></li>
<li><a href="class-PHPParser_BuilderFactory.html">PHPParser_BuilderFactory</a></li>
<li><a href="class-PHPParser_Comment.html">PHPParser_Comment</a></li>
<li><a href="class-PHPParser_Comment_Doc.html">PHPParser_Comment_Doc</a></li>
<li><a href="class-PHPParser_Lexer.html">PHPParser_Lexer</a></li>
<li><a href="class-PHPParser_Lexer_Emulative.html">PHPParser_Lexer_Emulative</a></li>
<li><a href="class-PHPParser_Node_Arg.html">PHPParser_Node_Arg</a></li>
<li><a href="class-PHPParser_Node_Const.html">PHPParser_Node_Const</a></li>
<li><a href="class-PHPParser_Node_Expr.html">PHPParser_Node_Expr</a></li>
<li><a href="class-PHPParser_Node_Expr_Array.html">PHPParser_Node_Expr_Array</a></li>
<li><a href="class-PHPParser_Node_Expr_ArrayDimFetch.html">PHPParser_Node_Expr_ArrayDimFetch</a></li>
<li><a href="class-PHPParser_Node_Expr_ArrayItem.html">PHPParser_Node_Expr_ArrayItem</a></li>
<li><a href="class-PHPParser_Node_Expr_Assign.html">PHPParser_Node_Expr_Assign</a></li>
<li><a href="class-PHPParser_Node_Expr_AssignBitwiseAnd.html">PHPParser_Node_Expr_AssignBitwiseAnd</a></li>
<li><a href="class-PHPParser_Node_Expr_AssignBitwiseOr.html">PHPParser_Node_Expr_AssignBitwiseOr</a></li>
<li><a href="class-PHPParser_Node_Expr_AssignBitwiseXor.html">PHPParser_Node_Expr_AssignBitwiseXor</a></li>
<li><a href="class-PHPParser_Node_Expr_AssignConcat.html">PHPParser_Node_Expr_AssignConcat</a></li>
<li class="active"><a href="class-PHPParser_Node_Expr_AssignDiv.html">PHPParser_Node_Expr_AssignDiv</a></li>
<li><a href="class-PHPParser_Node_Expr_AssignMinus.html">PHPParser_Node_Expr_AssignMinus</a></li>
<li><a href="class-PHPParser_Node_Expr_AssignMod.html">PHPParser_Node_Expr_AssignMod</a></li>
<li><a href="class-PHPParser_Node_Expr_AssignMul.html">PHPParser_Node_Expr_AssignMul</a></li>
<li><a href="class-PHPParser_Node_Expr_AssignPlus.html">PHPParser_Node_Expr_AssignPlus</a></li>
<li><a href="class-PHPParser_Node_Expr_AssignRef.html">PHPParser_Node_Expr_AssignRef</a></li>
<li><a href="class-PHPParser_Node_Expr_AssignShiftLeft.html">PHPParser_Node_Expr_AssignShiftLeft</a></li>
<li><a href="class-PHPParser_Node_Expr_AssignShiftRight.html">PHPParser_Node_Expr_AssignShiftRight</a></li>
<li><a href="class-PHPParser_Node_Expr_BitwiseAnd.html">PHPParser_Node_Expr_BitwiseAnd</a></li>
<li><a href="class-PHPParser_Node_Expr_BitwiseNot.html">PHPParser_Node_Expr_BitwiseNot</a></li>
<li><a href="class-PHPParser_Node_Expr_BitwiseOr.html">PHPParser_Node_Expr_BitwiseOr</a></li>
<li><a href="class-PHPParser_Node_Expr_BitwiseXor.html">PHPParser_Node_Expr_BitwiseXor</a></li>
<li><a href="class-PHPParser_Node_Expr_BooleanAnd.html">PHPParser_Node_Expr_BooleanAnd</a></li>
<li><a href="class-PHPParser_Node_Expr_BooleanNot.html">PHPParser_Node_Expr_BooleanNot</a></li>
<li><a href="class-PHPParser_Node_Expr_BooleanOr.html">PHPParser_Node_Expr_BooleanOr</a></li>
<li><a href="class-PHPParser_Node_Expr_Cast.html">PHPParser_Node_Expr_Cast</a></li>
<li><a href="class-PHPParser_Node_Expr_Cast_Array.html">PHPParser_Node_Expr_Cast_Array</a></li>
<li><a href="class-PHPParser_Node_Expr_Cast_Bool.html">PHPParser_Node_Expr_Cast_Bool</a></li>
<li><a href="class-PHPParser_Node_Expr_Cast_Double.html">PHPParser_Node_Expr_Cast_Double</a></li>
<li><a href="class-PHPParser_Node_Expr_Cast_Int.html">PHPParser_Node_Expr_Cast_Int</a></li>
<li><a href="class-PHPParser_Node_Expr_Cast_Object.html">PHPParser_Node_Expr_Cast_Object</a></li>
<li><a href="class-PHPParser_Node_Expr_Cast_String.html">PHPParser_Node_Expr_Cast_String</a></li>
<li><a href="class-PHPParser_Node_Expr_Cast_Unset.html">PHPParser_Node_Expr_Cast_Unset</a></li>
<li><a href="class-PHPParser_Node_Expr_ClassConstFetch.html">PHPParser_Node_Expr_ClassConstFetch</a></li>
<li><a href="class-PHPParser_Node_Expr_Clone.html">PHPParser_Node_Expr_Clone</a></li>
<li><a href="class-PHPParser_Node_Expr_Closure.html">PHPParser_Node_Expr_Closure</a></li>
<li><a href="class-PHPParser_Node_Expr_ClosureUse.html">PHPParser_Node_Expr_ClosureUse</a></li>
<li><a href="class-PHPParser_Node_Expr_Concat.html">PHPParser_Node_Expr_Concat</a></li>
<li><a href="class-PHPParser_Node_Expr_ConstFetch.html">PHPParser_Node_Expr_ConstFetch</a></li>
<li><a href="class-PHPParser_Node_Expr_Div.html">PHPParser_Node_Expr_Div</a></li>
<li><a href="class-PHPParser_Node_Expr_Empty.html">PHPParser_Node_Expr_Empty</a></li>
<li><a href="class-PHPParser_Node_Expr_Equal.html">PHPParser_Node_Expr_Equal</a></li>
<li><a href="class-PHPParser_Node_Expr_ErrorSuppress.html">PHPParser_Node_Expr_ErrorSuppress</a></li>
<li><a href="class-PHPParser_Node_Expr_Eval.html">PHPParser_Node_Expr_Eval</a></li>
<li><a href="class-PHPParser_Node_Expr_Exit.html">PHPParser_Node_Expr_Exit</a></li>
<li><a href="class-PHPParser_Node_Expr_FuncCall.html">PHPParser_Node_Expr_FuncCall</a></li>
<li><a href="class-PHPParser_Node_Expr_Greater.html">PHPParser_Node_Expr_Greater</a></li>
<li><a href="class-PHPParser_Node_Expr_GreaterOrEqual.html">PHPParser_Node_Expr_GreaterOrEqual</a></li>
<li><a href="class-PHPParser_Node_Expr_Identical.html">PHPParser_Node_Expr_Identical</a></li>
<li><a href="class-PHPParser_Node_Expr_Include.html">PHPParser_Node_Expr_Include</a></li>
<li><a href="class-PHPParser_Node_Expr_Instanceof.html">PHPParser_Node_Expr_Instanceof</a></li>
<li><a href="class-PHPParser_Node_Expr_Isset.html">PHPParser_Node_Expr_Isset</a></li>
<li><a href="class-PHPParser_Node_Expr_List.html">PHPParser_Node_Expr_List</a></li>
<li><a href="class-PHPParser_Node_Expr_LogicalAnd.html">PHPParser_Node_Expr_LogicalAnd</a></li>
<li><a href="class-PHPParser_Node_Expr_LogicalOr.html">PHPParser_Node_Expr_LogicalOr</a></li>
<li><a href="class-PHPParser_Node_Expr_LogicalXor.html">PHPParser_Node_Expr_LogicalXor</a></li>
<li><a href="class-PHPParser_Node_Expr_MethodCall.html">PHPParser_Node_Expr_MethodCall</a></li>
<li><a href="class-PHPParser_Node_Expr_Minus.html">PHPParser_Node_Expr_Minus</a></li>
<li><a href="class-PHPParser_Node_Expr_Mod.html">PHPParser_Node_Expr_Mod</a></li>
<li><a href="class-PHPParser_Node_Expr_Mul.html">PHPParser_Node_Expr_Mul</a></li>
<li><a href="class-PHPParser_Node_Expr_New.html">PHPParser_Node_Expr_New</a></li>
<li><a href="class-PHPParser_Node_Expr_NotEqual.html">PHPParser_Node_Expr_NotEqual</a></li>
<li><a href="class-PHPParser_Node_Expr_NotIdentical.html">PHPParser_Node_Expr_NotIdentical</a></li>
<li><a href="class-PHPParser_Node_Expr_Plus.html">PHPParser_Node_Expr_Plus</a></li>
<li><a href="class-PHPParser_Node_Expr_PostDec.html">PHPParser_Node_Expr_PostDec</a></li>
<li><a href="class-PHPParser_Node_Expr_PostInc.html">PHPParser_Node_Expr_PostInc</a></li>
<li><a href="class-PHPParser_Node_Expr_PreDec.html">PHPParser_Node_Expr_PreDec</a></li>
<li><a href="class-PHPParser_Node_Expr_PreInc.html">PHPParser_Node_Expr_PreInc</a></li>
<li><a href="class-PHPParser_Node_Expr_Print.html">PHPParser_Node_Expr_Print</a></li>
<li><a href="class-PHPParser_Node_Expr_PropertyFetch.html">PHPParser_Node_Expr_PropertyFetch</a></li>
<li><a href="class-PHPParser_Node_Expr_ShellExec.html">PHPParser_Node_Expr_ShellExec</a></li>
<li><a href="class-PHPParser_Node_Expr_ShiftLeft.html">PHPParser_Node_Expr_ShiftLeft</a></li>
<li><a href="class-PHPParser_Node_Expr_ShiftRight.html">PHPParser_Node_Expr_ShiftRight</a></li>
<li><a href="class-PHPParser_Node_Expr_Smaller.html">PHPParser_Node_Expr_Smaller</a></li>
<li><a href="class-PHPParser_Node_Expr_SmallerOrEqual.html">PHPParser_Node_Expr_SmallerOrEqual</a></li>
<li><a href="class-PHPParser_Node_Expr_StaticCall.html">PHPParser_Node_Expr_StaticCall</a></li>
<li><a href="class-PHPParser_Node_Expr_StaticPropertyFetch.html">PHPParser_Node_Expr_StaticPropertyFetch</a></li>
<li><a href="class-PHPParser_Node_Expr_Ternary.html">PHPParser_Node_Expr_Ternary</a></li>
<li><a href="class-PHPParser_Node_Expr_UnaryMinus.html">PHPParser_Node_Expr_UnaryMinus</a></li>
<li><a href="class-PHPParser_Node_Expr_UnaryPlus.html">PHPParser_Node_Expr_UnaryPlus</a></li>
<li><a href="class-PHPParser_Node_Expr_Variable.html">PHPParser_Node_Expr_Variable</a></li>
<li><a href="class-PHPParser_Node_Expr_Yield.html">PHPParser_Node_Expr_Yield</a></li>
<li><a href="class-PHPParser_Node_Name.html">PHPParser_Node_Name</a></li>
<li><a href="class-PHPParser_Node_Name_FullyQualified.html">PHPParser_Node_Name_FullyQualified</a></li>
<li><a href="class-PHPParser_Node_Name_Relative.html">PHPParser_Node_Name_Relative</a></li>
<li><a href="class-PHPParser_Node_Param.html">PHPParser_Node_Param</a></li>
<li><a href="class-PHPParser_Node_Scalar.html">PHPParser_Node_Scalar</a></li>
<li><a href="class-PHPParser_Node_Scalar_ClassConst.html">PHPParser_Node_Scalar_ClassConst</a></li>
<li><a href="class-PHPParser_Node_Scalar_DirConst.html">PHPParser_Node_Scalar_DirConst</a></li>
<li><a href="class-PHPParser_Node_Scalar_DNumber.html">PHPParser_Node_Scalar_DNumber</a></li>
<li><a href="class-PHPParser_Node_Scalar_Encapsed.html">PHPParser_Node_Scalar_Encapsed</a></li>
<li><a href="class-PHPParser_Node_Scalar_FileConst.html">PHPParser_Node_Scalar_FileConst</a></li>
<li><a href="class-PHPParser_Node_Scalar_FuncConst.html">PHPParser_Node_Scalar_FuncConst</a></li>
<li><a href="class-PHPParser_Node_Scalar_LineConst.html">PHPParser_Node_Scalar_LineConst</a></li>
<li><a href="class-PHPParser_Node_Scalar_LNumber.html">PHPParser_Node_Scalar_LNumber</a></li>
<li><a href="class-PHPParser_Node_Scalar_MethodConst.html">PHPParser_Node_Scalar_MethodConst</a></li>
<li><a href="class-PHPParser_Node_Scalar_NSConst.html">PHPParser_Node_Scalar_NSConst</a></li>
<li><a href="class-PHPParser_Node_Scalar_String.html">PHPParser_Node_Scalar_String</a></li>
<li><a href="class-PHPParser_Node_Scalar_TraitConst.html">PHPParser_Node_Scalar_TraitConst</a></li>
<li><a href="class-PHPParser_Node_Stmt.html">PHPParser_Node_Stmt</a></li>
<li><a href="class-PHPParser_Node_Stmt_Break.html">PHPParser_Node_Stmt_Break</a></li>
<li><a href="class-PHPParser_Node_Stmt_Case.html">PHPParser_Node_Stmt_Case</a></li>
<li><a href="class-PHPParser_Node_Stmt_Catch.html">PHPParser_Node_Stmt_Catch</a></li>
<li><a href="class-PHPParser_Node_Stmt_Class.html">PHPParser_Node_Stmt_Class</a></li>
<li><a href="class-PHPParser_Node_Stmt_ClassConst.html">PHPParser_Node_Stmt_ClassConst</a></li>
<li><a href="class-PHPParser_Node_Stmt_ClassMethod.html">PHPParser_Node_Stmt_ClassMethod</a></li>
<li><a href="class-PHPParser_Node_Stmt_Const.html">PHPParser_Node_Stmt_Const</a></li>
<li><a href="class-PHPParser_Node_Stmt_Continue.html">PHPParser_Node_Stmt_Continue</a></li>
<li><a href="class-PHPParser_Node_Stmt_Declare.html">PHPParser_Node_Stmt_Declare</a></li>
<li><a href="class-PHPParser_Node_Stmt_DeclareDeclare.html">PHPParser_Node_Stmt_DeclareDeclare</a></li>
<li><a href="class-PHPParser_Node_Stmt_Do.html">PHPParser_Node_Stmt_Do</a></li>
<li><a href="class-PHPParser_Node_Stmt_Echo.html">PHPParser_Node_Stmt_Echo</a></li>
<li><a href="class-PHPParser_Node_Stmt_Else.html">PHPParser_Node_Stmt_Else</a></li>
<li><a href="class-PHPParser_Node_Stmt_ElseIf.html">PHPParser_Node_Stmt_ElseIf</a></li>
<li><a href="class-PHPParser_Node_Stmt_For.html">PHPParser_Node_Stmt_For</a></li>
<li><a href="class-PHPParser_Node_Stmt_Foreach.html">PHPParser_Node_Stmt_Foreach</a></li>
<li><a href="class-PHPParser_Node_Stmt_Function.html">PHPParser_Node_Stmt_Function</a></li>
<li><a href="class-PHPParser_Node_Stmt_Global.html">PHPParser_Node_Stmt_Global</a></li>
<li><a href="class-PHPParser_Node_Stmt_Goto.html">PHPParser_Node_Stmt_Goto</a></li>
<li><a href="class-PHPParser_Node_Stmt_HaltCompiler.html">PHPParser_Node_Stmt_HaltCompiler</a></li>
<li><a href="class-PHPParser_Node_Stmt_If.html">PHPParser_Node_Stmt_If</a></li>
<li><a href="class-PHPParser_Node_Stmt_InlineHTML.html">PHPParser_Node_Stmt_InlineHTML</a></li>
<li><a href="class-PHPParser_Node_Stmt_Interface.html">PHPParser_Node_Stmt_Interface</a></li>
<li><a href="class-PHPParser_Node_Stmt_Label.html">PHPParser_Node_Stmt_Label</a></li>
<li><a href="class-PHPParser_Node_Stmt_Namespace.html">PHPParser_Node_Stmt_Namespace</a></li>
<li><a href="class-PHPParser_Node_Stmt_Property.html">PHPParser_Node_Stmt_Property</a></li>
<li><a href="class-PHPParser_Node_Stmt_PropertyProperty.html">PHPParser_Node_Stmt_PropertyProperty</a></li>
<li><a href="class-PHPParser_Node_Stmt_Return.html">PHPParser_Node_Stmt_Return</a></li>
<li><a href="class-PHPParser_Node_Stmt_Static.html">PHPParser_Node_Stmt_Static</a></li>
<li><a href="class-PHPParser_Node_Stmt_StaticVar.html">PHPParser_Node_Stmt_StaticVar</a></li>
<li><a href="class-PHPParser_Node_Stmt_Switch.html">PHPParser_Node_Stmt_Switch</a></li>
<li><a href="class-PHPParser_Node_Stmt_Throw.html">PHPParser_Node_Stmt_Throw</a></li>
<li><a href="class-PHPParser_Node_Stmt_Trait.html">PHPParser_Node_Stmt_Trait</a></li>
<li><a href="class-PHPParser_Node_Stmt_TraitUse.html">PHPParser_Node_Stmt_TraitUse</a></li>
<li><a href="class-PHPParser_Node_Stmt_TraitUseAdaptation.html">PHPParser_Node_Stmt_TraitUseAdaptation</a></li>
<li><a href="class-PHPParser_Node_Stmt_TraitUseAdaptation_Alias.html">PHPParser_Node_Stmt_TraitUseAdaptation_Alias</a></li>
<li><a href="class-PHPParser_Node_Stmt_TraitUseAdaptation_Precedence.html">PHPParser_Node_Stmt_TraitUseAdaptation_Precedence</a></li>
<li><a href="class-PHPParser_Node_Stmt_TryCatch.html">PHPParser_Node_Stmt_TryCatch</a></li>
<li><a href="class-PHPParser_Node_Stmt_Unset.html">PHPParser_Node_Stmt_Unset</a></li>
<li><a href="class-PHPParser_Node_Stmt_Use.html">PHPParser_Node_Stmt_Use</a></li>
<li><a href="class-PHPParser_Node_Stmt_UseUse.html">PHPParser_Node_Stmt_UseUse</a></li>
<li><a href="class-PHPParser_Node_Stmt_While.html">PHPParser_Node_Stmt_While</a></li>
<li><a href="class-PHPParser_NodeAbstract.html">PHPParser_NodeAbstract</a></li>
<li><a href="class-PHPParser_NodeDumper.html">PHPParser_NodeDumper</a></li>
<li><a href="class-PHPParser_NodeTraverser.html">PHPParser_NodeTraverser</a></li>
<li><a href="class-PHPParser_NodeVisitor_NameResolver.html">PHPParser_NodeVisitor_NameResolver</a></li>
<li><a href="class-PHPParser_NodeVisitorAbstract.html">PHPParser_NodeVisitorAbstract</a></li>
<li><a href="class-PHPParser_Parser.html">PHPParser_Parser</a></li>
<li><a href="class-PHPParser_PrettyPrinter_Default.html">PHPParser_PrettyPrinter_Default</a></li>
<li><a href="class-PHPParser_PrettyPrinterAbstract.html">PHPParser_PrettyPrinterAbstract</a></li>
<li><a href="class-PHPParser_Serializer_XML.html">PHPParser_Serializer_XML</a></li>
<li><a href="class-PHPParser_Template.html">PHPParser_Template</a></li>
<li><a href="class-PHPParser_TemplateLoader.html">PHPParser_TemplateLoader</a></li>
<li><a href="class-PHPParser_Tests_Builder_ClassTest.html">PHPParser_Tests_Builder_ClassTest</a></li>
<li><a href="class-PHPParser_Tests_Builder_FunctionTest.html">PHPParser_Tests_Builder_FunctionTest</a></li>
<li><a href="class-PHPParser_Tests_Builder_InterfaceTest.html">PHPParser_Tests_Builder_InterfaceTest</a></li>
<li><a href="class-PHPParser_Tests_Builder_MethodTest.html">PHPParser_Tests_Builder_MethodTest</a></li>
<li><a href="class-PHPParser_Tests_Builder_ParamTest.html">PHPParser_Tests_Builder_ParamTest</a></li>
<li><a href="class-PHPParser_Tests_Builder_PropertyTest.html">PHPParser_Tests_Builder_PropertyTest</a></li>
<li><a href="class-PHPParser_Tests_BuilderFactoryTest.html">PHPParser_Tests_BuilderFactoryTest</a></li>
<li><a href="class-PHPParser_Tests_CodeTestAbstract.html">PHPParser_Tests_CodeTestAbstract</a></li>
<li><a href="class-PHPParser_Tests_CommentTest.html">PHPParser_Tests_CommentTest</a></li>
<li><a href="class-PHPParser_Tests_ErrorTest.html">PHPParser_Tests_ErrorTest</a></li>
<li><a href="class-PHPParser_Tests_Lexer_EmulativeTest.html">PHPParser_Tests_Lexer_EmulativeTest</a></li>
<li><a href="class-PHPParser_Tests_LexerTest.html">PHPParser_Tests_LexerTest</a></li>
<li><a href="class-PHPParser_Tests_Node_NameTest.html">PHPParser_Tests_Node_NameTest</a></li>
<li><a href="class-PHPParser_Tests_Node_Scalar_StringTest.html">PHPParser_Tests_Node_Scalar_StringTest</a></li>
<li><a href="class-PHPParser_Tests_Node_Stmt_ClassMethodTest.html">PHPParser_Tests_Node_Stmt_ClassMethodTest</a></li>
<li><a href="class-PHPParser_Tests_Node_Stmt_ClassTest.html">PHPParser_Tests_Node_Stmt_ClassTest</a></li>
<li><a href="class-PHPParser_Tests_Node_Stmt_PropertyTest.html">PHPParser_Tests_Node_Stmt_PropertyTest</a></li>
<li><a href="class-PHPParser_Tests_NodeAbstractTest.html">PHPParser_Tests_NodeAbstractTest</a></li>
<li><a href="class-PHPParser_Tests_NodeDumperTest.html">PHPParser_Tests_NodeDumperTest</a></li>
<li><a href="class-PHPParser_Tests_NodeTraverserTest.html">PHPParser_Tests_NodeTraverserTest</a></li>
<li><a href="class-PHPParser_Tests_NodeVisitor_NameResolverTest.html">PHPParser_Tests_NodeVisitor_NameResolverTest</a></li>
<li><a href="class-PHPParser_Tests_ParserTest.html">PHPParser_Tests_ParserTest</a></li>
<li><a href="class-PHPParser_Tests_PrettyPrinterTest.html">PHPParser_Tests_PrettyPrinterTest</a></li>
<li><a href="class-PHPParser_Tests_Serializer_XMLTest.html">PHPParser_Tests_Serializer_XMLTest</a></li>
<li><a href="class-PHPParser_Tests_TemplateLoaderTest.html">PHPParser_Tests_TemplateLoaderTest</a></li>
<li><a href="class-PHPParser_Tests_TemplateTest.html">PHPParser_Tests_TemplateTest</a></li>
<li><a href="class-PHPParser_Tests_Unserializer_XMLTest.html">PHPParser_Tests_Unserializer_XMLTest</a></li>
<li><a href="class-PHPParser_Unserializer_XML.html">PHPParser_Unserializer_XML</a></li>
<li><a href="class-PrefixCollision_A_B_Bar.html">PrefixCollision_A_B_Bar</a></li>
<li><a href="class-PrefixCollision_A_B_Foo.html">PrefixCollision_A_B_Foo</a></li>
<li><a href="class-PrefixCollision_A_Bar.html">PrefixCollision_A_Bar</a></li>
<li><a href="class-PrefixCollision_A_Foo.html">PrefixCollision_A_Foo</a></li>
<li><a href="class-PrefixCollision_C_B_Bar.html">PrefixCollision_C_B_Bar</a></li>
<li><a href="class-PrefixCollision_C_B_Foo.html">PrefixCollision_C_B_Foo</a></li>
<li><a href="class-PrefixCollision_C_Bar.html">PrefixCollision_C_Bar</a></li>
<li><a href="class-PrefixCollision_C_Foo.html">PrefixCollision_C_Foo</a></li>
<li><a href="class-ProjectExtension.html">ProjectExtension</a></li>
<li><a href="class-ProjectServiceContainer.html" class="invalid">ProjectServiceContainer</a></li>
<li><a href="class-ProjectUrlMatcher.html" class="invalid">ProjectUrlMatcher</a></li>
<li><a href="class-ProjectWithXsdExtension.html">ProjectWithXsdExtension</a></li>
<li><a href="class-ProxyManagerBridgeFooClass.html">ProxyManagerBridgeFooClass</a></li>
<li><a href="class-Requirement.html" class="invalid">Requirement</a></li>
<li><a href="class-RequirementCollection.html" class="invalid">RequirementCollection</a></li>
<li><a href="class-SimpleTokenParser.html">SimpleTokenParser</a></li>
<li><a href="class-SingleClassLOC1000.html">SingleClassLOC1000</a></li>
<li><a href="class-SqlFormatter.html">SqlFormatter</a></li>
<li><a href="class-SqlFormatterTest.html">SqlFormatterTest</a></li>
<li><a href="class-stdClass_c1d194250ee2e2b7d2eab8b8212368a8.html">stdClass_c1d194250ee2e2b7d2eab8b8212368a8</a></li>
<li><a href="class-Swift.html">Swift</a></li>
<li><a href="class-Swift_Attachment.html">Swift_Attachment</a></li>
<li><a href="class-Swift_AttachmentAcceptanceTest.html">Swift_AttachmentAcceptanceTest</a></li>
<li><a href="class-Swift_Bug111Test.html">Swift_Bug111Test</a></li>
<li><a href="class-Swift_Bug118Test.html">Swift_Bug118Test</a></li>
<li><a href="class-Swift_Bug206Test.html">Swift_Bug206Test</a></li>
<li><a href="class-Swift_Bug274Test.html">Swift_Bug274Test</a></li>
<li><a href="class-Swift_Bug34Test.html">Swift_Bug34Test</a></li>
<li><a href="class-Swift_Bug35Test.html">Swift_Bug35Test</a></li>
<li><a href="class-Swift_Bug38Test.html">Swift_Bug38Test</a></li>
<li><a href="class-Swift_Bug51Test.html">Swift_Bug51Test</a></li>
<li><a href="class-Swift_Bug71Test.html">Swift_Bug71Test</a></li>
<li><a href="class-Swift_Bug76Test.html">Swift_Bug76Test</a></li>
<li><a href="class-Swift_ByteStream_AbstractFilterableInputStream.html">Swift_ByteStream_AbstractFilterableInputStream</a></li>
<li><a href="class-Swift_ByteStream_ArrayByteStream.html">Swift_ByteStream_ArrayByteStream</a></li>
<li><a href="class-Swift_ByteStream_ArrayByteStreamTest.html">Swift_ByteStream_ArrayByteStreamTest</a></li>
<li><a href="class-Swift_ByteStream_FileByteStream.html">Swift_ByteStream_FileByteStream</a></li>
<li><a href="class-Swift_ByteStream_FileByteStreamAcceptanceTest.html">Swift_ByteStream_FileByteStreamAcceptanceTest</a></li>
<li><a href="class-Swift_ByteStream_TemporaryFileByteStream.html">Swift_ByteStream_TemporaryFileByteStream</a></li>
<li><a href="class-Swift_CharacterReader_GenericFixedWidthReader.html">Swift_CharacterReader_GenericFixedWidthReader</a></li>
<li><a href="class-Swift_CharacterReader_GenericFixedWidthReaderTest.html">Swift_CharacterReader_GenericFixedWidthReaderTest</a></li>
<li><a href="class-Swift_CharacterReader_UsAsciiReader.html">Swift_CharacterReader_UsAsciiReader</a></li>
<li><a href="class-Swift_CharacterReader_UsAsciiReaderTest.html">Swift_CharacterReader_UsAsciiReaderTest</a></li>
<li><a href="class-Swift_CharacterReader_Utf8Reader.html">Swift_CharacterReader_Utf8Reader</a></li>
<li><a href="class-Swift_CharacterReader_Utf8ReaderTest.html">Swift_CharacterReader_Utf8ReaderTest</a></li>
<li><a href="class-Swift_CharacterReaderFactory_SimpleCharacterReaderFactory.html">Swift_CharacterReaderFactory_SimpleCharacterReaderFactory</a></li>
<li><a href="class-Swift_CharacterReaderFactory_SimpleCharacterReaderFactoryAcceptanceTest.html">Swift_CharacterReaderFactory_SimpleCharacterReaderFactoryAcceptanceTest</a></li>
<li><a href="class-Swift_CharacterStream_ArrayCharacterStream.html">Swift_CharacterStream_ArrayCharacterStream</a></li>
<li><a href="class-Swift_CharacterStream_ArrayCharacterStreamTest.html">Swift_CharacterStream_ArrayCharacterStreamTest</a></li>
<li><a href="class-Swift_CharacterStream_NgCharacterStream.html">Swift_CharacterStream_NgCharacterStream</a></li>
<li><a href="class-Swift_ConfigurableSpool.html">Swift_ConfigurableSpool</a></li>
<li><a href="class-Swift_DependencyContainer.html">Swift_DependencyContainer</a></li>
<li><a href="class-Swift_DependencyContainerAcceptanceTest.html">Swift_DependencyContainerAcceptanceTest</a></li>
<li><a href="class-Swift_DependencyContainerTest.html">Swift_DependencyContainerTest</a></li>
<li><a href="class-Swift_EmbeddedFile.html">Swift_EmbeddedFile</a></li>
<li><a href="class-Swift_EmbeddedFileAcceptanceTest.html">Swift_EmbeddedFileAcceptanceTest</a></li>
<li><a href="class-Swift_Encoder_Base64Encoder.html">Swift_Encoder_Base64Encoder</a></li>
<li><a href="class-Swift_Encoder_Base64EncoderAcceptanceTest.html">Swift_Encoder_Base64EncoderAcceptanceTest</a></li>
<li><a href="class-Swift_Encoder_Base64EncoderTest.html">Swift_Encoder_Base64EncoderTest</a></li>
<li><a href="class-Swift_Encoder_QpEncoder.html">Swift_Encoder_QpEncoder</a></li>
<li><a href="class-Swift_Encoder_QpEncoderAcceptanceTest.html">Swift_Encoder_QpEncoderAcceptanceTest</a></li>
<li><a href="class-Swift_Encoder_QpEncoderTest.html">Swift_Encoder_QpEncoderTest</a></li>
<li><a href="class-Swift_Encoder_Rfc2231Encoder.html">Swift_Encoder_Rfc2231Encoder</a></li>
<li><a href="class-Swift_Encoder_Rfc2231EncoderAcceptanceTest.html">Swift_Encoder_Rfc2231EncoderAcceptanceTest</a></li>
<li><a href="class-Swift_Encoder_Rfc2231EncoderTest.html">Swift_Encoder_Rfc2231EncoderTest</a></li>
<li><a href="class-Swift_Encoding.html">Swift_Encoding</a></li>
<li><a href="class-Swift_EncodingAcceptanceTest.html">Swift_EncodingAcceptanceTest</a></li>
<li><a href="class-Swift_Events_CommandEvent.html">Swift_Events_CommandEvent</a></li>
<li><a href="class-Swift_Events_CommandEventTest.html">Swift_Events_CommandEventTest</a></li>
<li><a href="class-Swift_Events_EventObject.html">Swift_Events_EventObject</a></li>
<li><a href="class-Swift_Events_EventObjectTest.html">Swift_Events_EventObjectTest</a></li>
<li><a href="class-Swift_Events_ResponseEvent.html">Swift_Events_ResponseEvent</a></li>
<li><a href="class-Swift_Events_ResponseEventTest.html">Swift_Events_ResponseEventTest</a></li>
<li><a href="class-Swift_Events_SendEvent.html">Swift_Events_SendEvent</a></li>
<li><a href="class-Swift_Events_SendEventTest.html">Swift_Events_SendEventTest</a></li>
<li><a href="class-Swift_Events_SimpleEventDispatcher.html">Swift_Events_SimpleEventDispatcher</a></li>
<li><a href="class-Swift_Events_SimpleEventDispatcherTest.html">Swift_Events_SimpleEventDispatcherTest</a></li>
<li><a href="class-Swift_Events_TransportChangeEvent.html">Swift_Events_TransportChangeEvent</a></li>
<li><a href="class-Swift_Events_TransportChangeEventTest.html">Swift_Events_TransportChangeEventTest</a></li>
<li><a href="class-Swift_Events_TransportExceptionEvent.html">Swift_Events_TransportExceptionEvent</a></li>
<li><a href="class-Swift_Events_TransportExceptionEventTest.html">Swift_Events_TransportExceptionEventTest</a></li>
<li><a href="class-Swift_FailoverTransport.html">Swift_FailoverTransport</a></li>
<li><a href="class-Swift_FileSpool.html">Swift_FileSpool</a></li>
<li><a href="class-Swift_Image.html">Swift_Image</a></li>
<li><a href="class-Swift_KeyCache_ArrayKeyCache.html">Swift_KeyCache_ArrayKeyCache</a></li>
<li><a href="class-Swift_KeyCache_ArrayKeyCacheAcceptanceTest.html">Swift_KeyCache_ArrayKeyCacheAcceptanceTest</a></li>
<li><a href="class-Swift_KeyCache_ArrayKeyCacheTest.html">Swift_KeyCache_ArrayKeyCacheTest</a></li>
<li><a href="class-Swift_KeyCache_DiskKeyCache.html">Swift_KeyCache_DiskKeyCache</a></li>
<li><a href="class-Swift_KeyCache_DiskKeyCacheAcceptanceTest.html">Swift_KeyCache_DiskKeyCacheAcceptanceTest</a></li>
<li><a href="class-Swift_KeyCache_NullKeyCache.html">Swift_KeyCache_NullKeyCache</a></li>
<li><a href="class-Swift_KeyCache_SimpleKeyCacheInputStream.html">Swift_KeyCache_SimpleKeyCacheInputStream</a></li>
<li><a href="class-Swift_KeyCache_SimpleKeyCacheInputStreamTest.html">Swift_KeyCache_SimpleKeyCacheInputStreamTest</a></li>
<li><a href="class-Swift_LoadBalancedTransport.html">Swift_LoadBalancedTransport</a></li>
<li><a href="class-Swift_Mailer.html">Swift_Mailer</a></li>
<li><a href="class-Swift_Mailer_ArrayRecipientIterator.html">Swift_Mailer_ArrayRecipientIterator</a></li>
<li><a href="class-Swift_Mailer_ArrayRecipientIteratorTest.html">Swift_Mailer_ArrayRecipientIteratorTest</a></li>
<li><a href="class-Swift_MailerTest.html">Swift_MailerTest</a></li>
<li><a href="class-Swift_MailTransport.html">Swift_MailTransport</a></li>
<li><a href="class-Swift_MemorySpool.html">Swift_MemorySpool</a></li>
<li><a href="class-Swift_Message.html">Swift_Message</a></li>
<li><a href="class-Swift_MessageAcceptanceTest.html">Swift_MessageAcceptanceTest</a></li>
<li><a href="class-Swift_Mime_AbstractMimeEntityTest.html">Swift_Mime_AbstractMimeEntityTest</a></li>
<li><a href="class-Swift_Mime_Attachment.html">Swift_Mime_Attachment</a></li>
<li><a href="class-Swift_Mime_AttachmentAcceptanceTest.html">Swift_Mime_AttachmentAcceptanceTest</a></li>
<li><a href="class-Swift_Mime_AttachmentTest.html">Swift_Mime_AttachmentTest</a></li>
<li><a href="class-Swift_Mime_ContentEncoder_Base64ContentEncoder.html">Swift_Mime_ContentEncoder_Base64ContentEncoder</a></li>
<li><a href="class-Swift_Mime_ContentEncoder_Base64ContentEncoderAcceptanceTest.html">Swift_Mime_ContentEncoder_Base64ContentEncoderAcceptanceTest</a></li>
<li><a href="class-Swift_Mime_ContentEncoder_Base64ContentEncoderTest.html">Swift_Mime_ContentEncoder_Base64ContentEncoderTest</a></li>
<li><a href="class-Swift_Mime_ContentEncoder_NativeQpContentEncoder.html">Swift_Mime_ContentEncoder_NativeQpContentEncoder</a></li>
<li><a href="class-Swift_Mime_ContentEncoder_NativeQpContentEncoderAcceptanceTest.html">Swift_Mime_ContentEncoder_NativeQpContentEncoderAcceptanceTest</a></li>
<li><a href="class-Swift_Mime_ContentEncoder_PlainContentEncoder.html">Swift_Mime_ContentEncoder_PlainContentEncoder</a></li>
<li><a href="class-Swift_Mime_ContentEncoder_PlainContentEncoderAcceptanceTest.html">Swift_Mime_ContentEncoder_PlainContentEncoderAcceptanceTest</a></li>
<li><a href="class-Swift_Mime_ContentEncoder_PlainContentEncoderTest.html">Swift_Mime_ContentEncoder_PlainContentEncoderTest</a></li>
<li><a href="class-Swift_Mime_ContentEncoder_QpContentEncoder.html">Swift_Mime_ContentEncoder_QpContentEncoder</a></li>
<li><a href="class-Swift_Mime_ContentEncoder_QpContentEncoderAcceptanceTest.html">Swift_Mime_ContentEncoder_QpContentEncoderAcceptanceTest</a></li>
<li><a href="class-Swift_Mime_ContentEncoder_QpContentEncoderProxy.html">Swift_Mime_ContentEncoder_QpContentEncoderProxy</a></li>
<li><a href="class-Swift_Mime_ContentEncoder_QpContentEncoderTest.html">Swift_Mime_ContentEncoder_QpContentEncoderTest</a></li>
<li><a href="class-Swift_Mime_ContentEncoder_RawContentEncoder.html">Swift_Mime_ContentEncoder_RawContentEncoder</a></li>
<li><a href="class-Swift_Mime_EmbeddedFile.html">Swift_Mime_EmbeddedFile</a></li>
<li><a href="class-Swift_Mime_EmbeddedFileAcceptanceTest.html">Swift_Mime_EmbeddedFileAcceptanceTest</a></li>
<li><a href="class-Swift_Mime_EmbeddedFileTest.html">Swift_Mime_EmbeddedFileTest</a></li>
<li><a href="class-Swift_Mime_Grammar.html">Swift_Mime_Grammar</a></li>
<li><a href="class-Swift_Mime_HeaderEncoder_Base64HeaderEncoder.html">Swift_Mime_HeaderEncoder_Base64HeaderEncoder</a></li>
<li><a href="class-Swift_Mime_HeaderEncoder_Base64HeaderEncoderAcceptanceTest.html">Swift_Mime_HeaderEncoder_Base64HeaderEncoderAcceptanceTest</a></li>
<li><a href="class-Swift_Mime_HeaderEncoder_Base64HeaderEncoderTest.html">Swift_Mime_HeaderEncoder_Base64HeaderEncoderTest</a></li>
<li><a href="class-Swift_Mime_HeaderEncoder_QpHeaderEncoder.html">Swift_Mime_HeaderEncoder_QpHeaderEncoder</a></li>
<li><a href="class-Swift_Mime_HeaderEncoder_QpHeaderEncoderTest.html">Swift_Mime_HeaderEncoder_QpHeaderEncoderTest</a></li>
<li><a href="class-Swift_Mime_Headers_AbstractHeader.html">Swift_Mime_Headers_AbstractHeader</a></li>
<li><a href="class-Swift_Mime_Headers_DateHeader.html">Swift_Mime_Headers_DateHeader</a></li>
<li><a href="class-Swift_Mime_Headers_DateHeaderTest.html">Swift_Mime_Headers_DateHeaderTest</a></li>
<li><a href="class-Swift_Mime_Headers_IdentificationHeader.html">Swift_Mime_Headers_IdentificationHeader</a></li>
<li><a href="class-Swift_Mime_Headers_IdentificationHeaderTest.html">Swift_Mime_Headers_IdentificationHeaderTest</a></li>
<li><a href="class-Swift_Mime_Headers_MailboxHeader.html">Swift_Mime_Headers_MailboxHeader</a></li>
<li><a href="class-Swift_Mime_Headers_MailboxHeaderTest.html">Swift_Mime_Headers_MailboxHeaderTest</a></li>
<li><a href="class-Swift_Mime_Headers_OpenDKIMHeader.html">Swift_Mime_Headers_OpenDKIMHeader</a></li>
<li><a href="class-Swift_Mime_Headers_ParameterizedHeader.html">Swift_Mime_Headers_ParameterizedHeader</a></li>
<li><a href="class-Swift_Mime_Headers_ParameterizedHeaderTest.html">Swift_Mime_Headers_ParameterizedHeaderTest</a></li>
<li><a href="class-Swift_Mime_Headers_PathHeader.html">Swift_Mime_Headers_PathHeader</a></li>
<li><a href="class-Swift_Mime_Headers_PathHeaderTest.html">Swift_Mime_Headers_PathHeaderTest</a></li>
<li><a href="class-Swift_Mime_Headers_UnstructuredHeader.html">Swift_Mime_Headers_UnstructuredHeader</a></li>
<li><a href="class-Swift_Mime_Headers_UnstructuredHeaderTest.html">Swift_Mime_Headers_UnstructuredHeaderTest</a></li>
<li><a href="class-Swift_Mime_MimePart.html">Swift_Mime_MimePart</a></li>
<li><a href="class-Swift_Mime_MimePartAcceptanceTest.html">Swift_Mime_MimePartAcceptanceTest</a></li>
<li><a href="class-Swift_Mime_MimePartTest.html">Swift_Mime_MimePartTest</a></li>
<li><a href="class-Swift_Mime_SimpleHeaderFactory.html">Swift_Mime_SimpleHeaderFactory</a></li>
<li><a href="class-Swift_Mime_SimpleHeaderFactoryTest.html">Swift_Mime_SimpleHeaderFactoryTest</a></li>
<li><a href="class-Swift_Mime_SimpleHeaderSet.html">Swift_Mime_SimpleHeaderSet</a></li>
<li><a href="class-Swift_Mime_SimpleHeaderSetTest.html">Swift_Mime_SimpleHeaderSetTest</a></li>
<li><a href="class-Swift_Mime_SimpleMessage.html">Swift_Mime_SimpleMessage</a></li>
<li><a href="class-Swift_Mime_SimpleMessageAcceptanceTest.html">Swift_Mime_SimpleMessageAcceptanceTest</a></li>
<li><a href="class-Swift_Mime_SimpleMessageTest.html">Swift_Mime_SimpleMessageTest</a></li>
<li><a href="class-Swift_Mime_SimpleMimeEntity.html">Swift_Mime_SimpleMimeEntity</a></li>
<li><a href="class-Swift_Mime_SimpleMimeEntityTest.html">Swift_Mime_SimpleMimeEntityTest</a></li>
<li><a href="class-Swift_MimePart.html">Swift_MimePart</a></li>
<li><a href="class-Swift_MimePartAcceptanceTest.html">Swift_MimePartAcceptanceTest</a></li>
<li><a href="class-Swift_NullTransport.html">Swift_NullTransport</a></li>
<li><a href="class-Swift_Plugins_AntiFloodPlugin.html">Swift_Plugins_AntiFloodPlugin</a></li>
<li><a href="class-Swift_Plugins_AntiFloodPluginTest.html">Swift_Plugins_AntiFloodPluginTest</a></li>
<li><a href="class-Swift_Plugins_BandwidthMonitorPlugin.html">Swift_Plugins_BandwidthMonitorPlugin</a></li>
<li><a href="class-Swift_Plugins_BandwidthMonitorPluginTest.html">Swift_Plugins_BandwidthMonitorPluginTest</a></li>
<li><a href="class-Swift_Plugins_DecoratorPlugin.html">Swift_Plugins_DecoratorPlugin</a></li>
<li><a href="class-Swift_Plugins_DecoratorPluginTest.html">Swift_Plugins_DecoratorPluginTest</a></li>
<li><a href="class-Swift_Plugins_ImpersonatePlugin.html">Swift_Plugins_ImpersonatePlugin</a></li>
<li><a href="class-Swift_Plugins_LoggerPlugin.html">Swift_Plugins_LoggerPlugin</a></li>
<li><a href="class-Swift_Plugins_LoggerPluginTest.html">Swift_Plugins_LoggerPluginTest</a></li>
<li><a href="class-Swift_Plugins_Loggers_ArrayLogger.html">Swift_Plugins_Loggers_ArrayLogger</a></li>
<li><a href="class-Swift_Plugins_Loggers_ArrayLoggerTest.html">Swift_Plugins_Loggers_ArrayLoggerTest</a></li>
<li><a href="class-Swift_Plugins_Loggers_EchoLogger.html">Swift_Plugins_Loggers_EchoLogger</a></li>
<li><a href="class-Swift_Plugins_Loggers_EchoLoggerTest.html">Swift_Plugins_Loggers_EchoLoggerTest</a></li>
<li><a href="class-Swift_Plugins_MessageLogger.html">Swift_Plugins_MessageLogger</a></li>
<li><a href="class-Swift_Plugins_PopBeforeSmtpPlugin.html">Swift_Plugins_PopBeforeSmtpPlugin</a></li>
<li><a href="class-Swift_Plugins_PopBeforeSmtpPluginTest.html">Swift_Plugins_PopBeforeSmtpPluginTest</a></li>
<li><a href="class-Swift_Plugins_RedirectingPlugin.html">Swift_Plugins_RedirectingPlugin</a></li>
<li><a href="class-Swift_Plugins_RedirectingPluginTest.html">Swift_Plugins_RedirectingPluginTest</a></li>
<li><a href="class-Swift_Plugins_ReporterPlugin.html">Swift_Plugins_ReporterPlugin</a></li>
<li><a href="class-Swift_Plugins_ReporterPluginTest.html">Swift_Plugins_ReporterPluginTest</a></li>
<li><a href="class-Swift_Plugins_Reporters_HitReporter.html">Swift_Plugins_Reporters_HitReporter</a></li>
<li><a href="class-Swift_Plugins_Reporters_HitReporterTest.html">Swift_Plugins_Reporters_HitReporterTest</a></li>
<li><a href="class-Swift_Plugins_Reporters_HtmlReporter.html">Swift_Plugins_Reporters_HtmlReporter</a></li>
<li><a href="class-Swift_Plugins_Reporters_HtmlReporterTest.html">Swift_Plugins_Reporters_HtmlReporterTest</a></li>
<li><a href="class-Swift_Plugins_ThrottlerPlugin.html">Swift_Plugins_ThrottlerPlugin</a></li>
<li><a href="class-Swift_Plugins_ThrottlerPluginTest.html">Swift_Plugins_ThrottlerPluginTest</a></li>
<li><a href="class-Swift_Preferences.html">Swift_Preferences</a></li>
<li><a href="class-Swift_SendmailTransport.html">Swift_SendmailTransport</a></li>
<li><a href="class-Swift_Signers_DKIMSigner.html">Swift_Signers_DKIMSigner</a></li>
<li><a href="class-Swift_Signers_DKIMSignerTest.html">Swift_Signers_DKIMSignerTest</a></li>
<li><a href="class-Swift_Signers_DomainKeySigner.html">Swift_Signers_DomainKeySigner</a></li>
<li><a href="class-Swift_Signers_OpenDKIMSigner.html">Swift_Signers_OpenDKIMSigner</a></li>
<li><a href="class-Swift_Signers_OpenDKIMSignerTest.html">Swift_Signers_OpenDKIMSignerTest</a></li>
<li><a href="class-Swift_Signers_SMimeSigner.html">Swift_Signers_SMimeSigner</a></li>
<li><a href="class-Swift_Signers_SMimeSignerTest.html">Swift_Signers_SMimeSignerTest</a></li>
<li><a href="class-Swift_Smoke_AttachmentSmokeTest.html">Swift_Smoke_AttachmentSmokeTest</a></li>
<li><a href="class-Swift_Smoke_BasicSmokeTest.html">Swift_Smoke_BasicSmokeTest</a></li>
<li><a href="class-Swift_Smoke_HtmlWithAttachmentSmokeTest.html">Swift_Smoke_HtmlWithAttachmentSmokeTest</a></li>
<li><a href="class-Swift_Smoke_InternationalSmokeTest.html">Swift_Smoke_InternationalSmokeTest</a></li>
<li><a href="class-Swift_SmtpTransport.html">Swift_SmtpTransport</a></li>
<li><a href="class-Swift_SpoolTransport.html">Swift_SpoolTransport</a></li>
<li><a href="class-Swift_StreamCollector.html">Swift_StreamCollector</a></li>
<li><a href="class-Swift_StreamFilters_ByteArrayReplacementFilter.html">Swift_StreamFilters_ByteArrayReplacementFilter</a></li>
<li><a href="class-Swift_StreamFilters_ByteArrayReplacementFilterTest.html">Swift_StreamFilters_ByteArrayReplacementFilterTest</a></li>
<li><a href="class-Swift_StreamFilters_StringReplacementFilter.html">Swift_StreamFilters_StringReplacementFilter</a></li>
<li><a href="class-Swift_StreamFilters_StringReplacementFilterFactory.html">Swift_StreamFilters_StringReplacementFilterFactory</a></li>
<li><a href="class-Swift_StreamFilters_StringReplacementFilterFactoryTest.html">Swift_StreamFilters_StringReplacementFilterFactoryTest</a></li>
<li><a href="class-Swift_StreamFilters_StringReplacementFilterTest.html">Swift_StreamFilters_StringReplacementFilterTest</a></li>
<li><a href="class-Swift_Transport_AbstractSmtpEventSupportTest.html">Swift_Transport_AbstractSmtpEventSupportTest</a></li>
<li><a href="class-Swift_Transport_AbstractSmtpTest.html">Swift_Transport_AbstractSmtpTest</a></li>
<li><a href="class-Swift_Transport_AbstractSmtpTransport.html">Swift_Transport_AbstractSmtpTransport</a></li>
<li><a href="class-Swift_Transport_Esmtp_Auth_CramMd5Authenticator.html">Swift_Transport_Esmtp_Auth_CramMd5Authenticator</a></li>
<li><a href="class-Swift_Transport_Esmtp_Auth_CramMd5AuthenticatorTest.html">Swift_Transport_Esmtp_Auth_CramMd5AuthenticatorTest</a></li>
<li><a href="class-Swift_Transport_Esmtp_Auth_LoginAuthenticator.html">Swift_Transport_Esmtp_Auth_LoginAuthenticator</a></li>
<li><a href="class-Swift_Transport_Esmtp_Auth_LoginAuthenticatorTest.html">Swift_Transport_Esmtp_Auth_LoginAuthenticatorTest</a></li>
<li><a href="class-Swift_Transport_Esmtp_Auth_NTLMAuthenticator.html">Swift_Transport_Esmtp_Auth_NTLMAuthenticator</a></li>
<li><a href="class-Swift_Transport_Esmtp_Auth_NTLMAuthenticatorTest.html">Swift_Transport_Esmtp_Auth_NTLMAuthenticatorTest</a></li>
<li><a href="class-Swift_Transport_Esmtp_Auth_PlainAuthenticator.html">Swift_Transport_Esmtp_Auth_PlainAuthenticator</a></li>
<li><a href="class-Swift_Transport_Esmtp_Auth_PlainAuthenticatorTest.html">Swift_Transport_Esmtp_Auth_PlainAuthenticatorTest</a></li>
<li><a href="class-Swift_Transport_Esmtp_Auth_XOAuth2Authenticator.html">Swift_Transport_Esmtp_Auth_XOAuth2Authenticator</a></li>
<li><a href="class-Swift_Transport_Esmtp_AuthHandler.html">Swift_Transport_Esmtp_AuthHandler</a></li>
<li><a href="class-Swift_Transport_Esmtp_AuthHandlerTest.html">Swift_Transport_Esmtp_AuthHandlerTest</a></li>
<li><a href="class-Swift_Transport_EsmtpTransport.html">Swift_Transport_EsmtpTransport</a></li>
<li><a href="class-Swift_Transport_EsmtpTransport_ExtensionSupportTest.html">Swift_Transport_EsmtpTransport_ExtensionSupportTest</a></li>
<li><a href="class-Swift_Transport_EsmtpTransportTest.html">Swift_Transport_EsmtpTransportTest</a></li>
<li><a href="class-Swift_Transport_FailoverTransport.html">Swift_Transport_FailoverTransport</a></li>
<li><a href="class-Swift_Transport_FailoverTransportTest.html">Swift_Transport_FailoverTransportTest</a></li>
<li><a href="class-Swift_Transport_LoadBalancedTransport.html">Swift_Transport_LoadBalancedTransport</a></li>
<li><a href="class-Swift_Transport_LoadBalancedTransportTest.html">Swift_Transport_LoadBalancedTransportTest</a></li>
<li><a href="class-Swift_Transport_MailTransport.html">Swift_Transport_MailTransport</a></li>
<li><a href="class-Swift_Transport_MailTransportTest.html">Swift_Transport_MailTransportTest</a></li>
<li><a href="class-Swift_Transport_NullTransport.html">Swift_Transport_NullTransport</a></li>
<li><a href="class-Swift_Transport_SendmailTransport.html">Swift_Transport_SendmailTransport</a></li>
<li><a href="class-Swift_Transport_SendmailTransportTest.html">Swift_Transport_SendmailTransportTest</a></li>
<li><a href="class-Swift_Transport_SimpleMailInvoker.html">Swift_Transport_SimpleMailInvoker</a></li>
<li><a href="class-Swift_Transport_SpoolTransport.html">Swift_Transport_SpoolTransport</a></li>
<li><a href="class-Swift_Transport_StreamBuffer.html">Swift_Transport_StreamBuffer</a></li>
<li><a href="class-Swift_Transport_StreamBuffer_AbstractStreamBufferAcceptanceTest.html">Swift_Transport_StreamBuffer_AbstractStreamBufferAcceptanceTest</a></li>
<li><a href="class-Swift_Transport_StreamBuffer_BasicSocketAcceptanceTest.html">Swift_Transport_StreamBuffer_BasicSocketAcceptanceTest</a></li>
<li><a href="class-Swift_Transport_StreamBuffer_ProcessAcceptanceTest.html">Swift_Transport_StreamBuffer_ProcessAcceptanceTest</a></li>
<li><a href="class-Swift_Transport_StreamBuffer_SocketTimeoutTest.html">Swift_Transport_StreamBuffer_SocketTimeoutTest</a></li>
<li><a href="class-Swift_Transport_StreamBuffer_SslSocketAcceptanceTest.html">Swift_Transport_StreamBuffer_SslSocketAcceptanceTest</a></li>
<li><a href="class-Swift_Transport_StreamBuffer_TlsSocketAcceptanceTest.html">Swift_Transport_StreamBuffer_TlsSocketAcceptanceTest</a></li>
<li><a href="class-Swift_Transport_StreamBufferTest.html">Swift_Transport_StreamBufferTest</a></li>
<li><a href="class-Swift_Validate.html">Swift_Validate</a></li>
<li><a href="class-SwiftMailerSmokeTestCase.html">SwiftMailerSmokeTestCase</a></li>
<li><a href="class-SwiftMailerTestCase.html">SwiftMailerTestCase</a></li>
<li><a href="class-Symfony_Component_Debug_Tests_Fixtures_PEARClass.html">Symfony_Component_Debug_Tests_Fixtures_PEARClass</a></li>
<li><a href="class-SymfonyRequirements.html" class="invalid">SymfonyRequirements</a></li>
<li><a href="class-TestCommand.html">TestCommand</a></li>
<li><a href="class-TestParser.html">TestParser</a></li>
<li><a href="class-TestTokenParser.html">TestTokenParser</a></li>
<li><a href="class-TopLevelAnnotation.html">TopLevelAnnotation</a></li>
<li><a href="class-Twig_Autoloader.html">Twig_Autoloader</a></li>
<li><a href="class-Twig_Compiler.html">Twig_Compiler</a></li>
<li><a href="class-Twig_Environment.html" class="invalid">Twig_Environment</a></li>
<li><a href="class-Twig_ExpressionParser.html">Twig_ExpressionParser</a></li>
<li><a href="class-Twig_Extension.html" class="invalid">Twig_Extension</a></li>
<li><a href="class-Twig_Extension_Core.html" class="invalid">Twig_Extension_Core</a></li>
<li><a href="class-Twig_Extension_Debug.html">Twig_Extension_Debug</a></li>
<li><a href="class-Twig_Extension_Escaper.html" class="invalid">Twig_Extension_Escaper</a></li>
<li><a href="class-Twig_Extension_Optimizer.html" class="invalid">Twig_Extension_Optimizer</a></li>
<li><a href="class-Twig_Extension_Sandbox.html">Twig_Extension_Sandbox</a></li>
<li><a href="class-Twig_Extension_Staging.html">Twig_Extension_Staging</a></li>
<li><a href="class-Twig_Extension_StringLoader.html">Twig_Extension_StringLoader</a></li>
<li><a href="class-Twig_ExtensionInterface.html" class="invalid">Twig_ExtensionInterface</a></li>
<li><a href="class-Twig_Extensions_Autoloader.html">Twig_Extensions_Autoloader</a></li>
<li><a href="class-Twig_Extensions_Extension_Array.html">Twig_Extensions_Extension_Array</a></li>
<li><a href="class-Twig_Extensions_Extension_Debug.html">Twig_Extensions_Extension_Debug</a></li>
<li><a href="class-Twig_Extensions_Extension_I18n.html">Twig_Extensions_Extension_I18n</a></li>
<li><a href="class-Twig_Extensions_Extension_Intl.html">Twig_Extensions_Extension_Intl</a></li>
<li><a href="class-Twig_Extensions_Extension_Text.html">Twig_Extensions_Extension_Text</a></li>
<li><a href="class-Twig_Extensions_Grammar.html">Twig_Extensions_Grammar</a></li>
<li><a href="class-Twig_Extensions_Grammar_Arguments.html">Twig_Extensions_Grammar_Arguments</a></li>
<li><a href="class-Twig_Extensions_Grammar_Array.html">Twig_Extensions_Grammar_Array</a></li>
<li><a href="class-Twig_Extensions_Grammar_Body.html">Twig_Extensions_Grammar_Body</a></li>
<li><a href="class-Twig_Extensions_Grammar_Boolean.html">Twig_Extensions_Grammar_Boolean</a></li>
<li><a href="class-Twig_Extensions_Grammar_Constant.html">Twig_Extensions_Grammar_Constant</a></li>
<li><a href="class-Twig_Extensions_Grammar_Expression.html">Twig_Extensions_Grammar_Expression</a></li>
<li><a href="class-Twig_Extensions_Grammar_Hash.html">Twig_Extensions_Grammar_Hash</a></li>
<li><a href="class-Twig_Extensions_Grammar_Number.html">Twig_Extensions_Grammar_Number</a></li>
<li><a href="class-Twig_Extensions_Grammar_Optional.html">Twig_Extensions_Grammar_Optional</a></li>
<li><a href="class-Twig_Extensions_Grammar_Switch.html">Twig_Extensions_Grammar_Switch</a></li>
<li><a href="class-Twig_Extensions_Grammar_Tag.html">Twig_Extensions_Grammar_Tag</a></li>
<li><a href="class-Twig_Extensions_Node_Debug.html">Twig_Extensions_Node_Debug</a></li>
<li><a href="class-Twig_Extensions_Node_Trans.html">Twig_Extensions_Node_Trans</a></li>
<li><a href="class-Twig_Extensions_SimpleTokenParser.html">Twig_Extensions_SimpleTokenParser</a></li>
<li><a href="class-Twig_Extensions_TokenParser_Debug.html">Twig_Extensions_TokenParser_Debug</a></li>
<li><a href="class-Twig_Extensions_TokenParser_Trans.html">Twig_Extensions_TokenParser_Trans</a></li>
<li><a href="class-Twig_Lexer.html">Twig_Lexer</a></li>
<li><a href="class-Twig_Loader_Array.html">Twig_Loader_Array</a></li>
<li><a href="class-Twig_Loader_Chain.html">Twig_Loader_Chain</a></li>
<li><a href="class-Twig_Loader_Filesystem.html">Twig_Loader_Filesystem</a></li>
<li><a href="class-Twig_Loader_String.html">Twig_Loader_String</a></li>
<li><a href="class-Twig_LoaderInterface.html" class="invalid">Twig_LoaderInterface</a></li>
<li><a href="class-Twig_Markup.html" class="invalid">Twig_Markup</a></li>
<li><a href="class-Twig_Node.html">Twig_Node</a></li>
<li><a href="class-Twig_Node_AutoEscape.html">Twig_Node_AutoEscape</a></li>
<li><a href="class-Twig_Node_Block.html">Twig_Node_Block</a></li>
<li><a href="class-Twig_Node_BlockReference.html">Twig_Node_BlockReference</a></li>
<li><a href="class-Twig_Node_Body.html">Twig_Node_Body</a></li>
<li><a href="class-Twig_Node_Do.html">Twig_Node_Do</a></li>
<li><a href="class-Twig_Node_Embed.html">Twig_Node_Embed</a></li>
<li><a href="class-Twig_Node_Expression.html">Twig_Node_Expression</a></li>
<li><a href="class-Twig_Node_Expression_Array.html">Twig_Node_Expression_Array</a></li>
<li><a href="class-Twig_Node_Expression_AssignName.html">Twig_Node_Expression_AssignName</a></li>
<li><a href="class-Twig_Node_Expression_Binary.html">Twig_Node_Expression_Binary</a></li>
<li><a href="class-Twig_Node_Expression_Binary_Add.html">Twig_Node_Expression_Binary_Add</a></li>
<li><a href="class-Twig_Node_Expression_Binary_And.html">Twig_Node_Expression_Binary_And</a></li>
<li><a href="class-Twig_Node_Expression_Binary_BitwiseAnd.html">Twig_Node_Expression_Binary_BitwiseAnd</a></li>
<li><a href="class-Twig_Node_Expression_Binary_BitwiseOr.html">Twig_Node_Expression_Binary_BitwiseOr</a></li>
<li><a href="class-Twig_Node_Expression_Binary_BitwiseXor.html">Twig_Node_Expression_Binary_BitwiseXor</a></li>
<li><a href="class-Twig_Node_Expression_Binary_Concat.html">Twig_Node_Expression_Binary_Concat</a></li>
<li><a href="class-Twig_Node_Expression_Binary_Div.html">Twig_Node_Expression_Binary_Div</a></li>
<li><a href="class-Twig_Node_Expression_Binary_EndsWith.html">Twig_Node_Expression_Binary_EndsWith</a></li>
<li><a href="class-Twig_Node_Expression_Binary_Equal.html">Twig_Node_Expression_Binary_Equal</a></li>
<li><a href="class-Twig_Node_Expression_Binary_FloorDiv.html">Twig_Node_Expression_Binary_FloorDiv</a></li>
<li><a href="class-Twig_Node_Expression_Binary_Greater.html">Twig_Node_Expression_Binary_Greater</a></li>
<li><a href="class-Twig_Node_Expression_Binary_GreaterEqual.html">Twig_Node_Expression_Binary_GreaterEqual</a></li>
<li><a href="class-Twig_Node_Expression_Binary_In.html">Twig_Node_Expression_Binary_In</a></li>
<li><a href="class-Twig_Node_Expression_Binary_Less.html">Twig_Node_Expression_Binary_Less</a></li>
<li><a href="class-Twig_Node_Expression_Binary_LessEqual.html">Twig_Node_Expression_Binary_LessEqual</a></li>
<li><a href="class-Twig_Node_Expression_Binary_Matches.html">Twig_Node_Expression_Binary_Matches</a></li>
<li><a href="class-Twig_Node_Expression_Binary_Mod.html">Twig_Node_Expression_Binary_Mod</a></li>
<li><a href="class-Twig_Node_Expression_Binary_Mul.html">Twig_Node_Expression_Binary_Mul</a></li>
<li><a href="class-Twig_Node_Expression_Binary_NotEqual.html">Twig_Node_Expression_Binary_NotEqual</a></li>
<li><a href="class-Twig_Node_Expression_Binary_NotIn.html">Twig_Node_Expression_Binary_NotIn</a></li>
<li><a href="class-Twig_Node_Expression_Binary_Or.html">Twig_Node_Expression_Binary_Or</a></li>
<li><a href="class-Twig_Node_Expression_Binary_Power.html">Twig_Node_Expression_Binary_Power</a></li>
<li><a href="class-Twig_Node_Expression_Binary_Range.html">Twig_Node_Expression_Binary_Range</a></li>
<li><a href="class-Twig_Node_Expression_Binary_StartsWith.html">Twig_Node_Expression_Binary_StartsWith</a></li>
<li><a href="class-Twig_Node_Expression_Binary_Sub.html">Twig_Node_Expression_Binary_Sub</a></li>
<li><a href="class-Twig_Node_Expression_BlockReference.html">Twig_Node_Expression_BlockReference</a></li>
<li><a href="class-Twig_Node_Expression_Call.html">Twig_Node_Expression_Call</a></li>
<li><a href="class-Twig_Node_Expression_Conditional.html">Twig_Node_Expression_Conditional</a></li>
<li><a href="class-Twig_Node_Expression_Constant.html">Twig_Node_Expression_Constant</a></li>
<li><a href="class-Twig_Node_Expression_ExtensionReference.html">Twig_Node_Expression_ExtensionReference</a></li>
<li><a href="class-Twig_Node_Expression_Filter.html">Twig_Node_Expression_Filter</a></li>
<li><a href="class-Twig_Node_Expression_Filter_Default.html">Twig_Node_Expression_Filter_Default</a></li>
<li><a href="class-Twig_Node_Expression_Function.html">Twig_Node_Expression_Function</a></li>
<li><a href="class-Twig_Node_Expression_GetAttr.html">Twig_Node_Expression_GetAttr</a></li>
<li><a href="class-Twig_Node_Expression_MethodCall.html">Twig_Node_Expression_MethodCall</a></li>
<li><a href="class-Twig_Node_Expression_Name.html">Twig_Node_Expression_Name</a></li>
<li><a href="class-Twig_Node_Expression_Parent.html">Twig_Node_Expression_Parent</a></li>
<li><a href="class-Twig_Node_Expression_TempName.html">Twig_Node_Expression_TempName</a></li>
<li><a href="class-Twig_Node_Expression_Test.html">Twig_Node_Expression_Test</a></li>
<li><a href="class-Twig_Node_Expression_Test_Constant.html">Twig_Node_Expression_Test_Constant</a></li>
<li><a href="class-Twig_Node_Expression_Test_Defined.html">Twig_Node_Expression_Test_Defined</a></li>
<li><a href="class-Twig_Node_Expression_Test_Divisibleby.html">Twig_Node_Expression_Test_Divisibleby</a></li>
<li><a href="class-Twig_Node_Expression_Test_Even.html">Twig_Node_Expression_Test_Even</a></li>
<li><a href="class-Twig_Node_Expression_Test_Null.html">Twig_Node_Expression_Test_Null</a></li>
<li><a href="class-Twig_Node_Expression_Test_Odd.html">Twig_Node_Expression_Test_Odd</a></li>
<li><a href="class-Twig_Node_Expression_Test_Sameas.html">Twig_Node_Expression_Test_Sameas</a></li>
<li><a href="class-Twig_Node_Expression_Unary.html">Twig_Node_Expression_Unary</a></li>
<li><a href="class-Twig_Node_Expression_Unary_Neg.html">Twig_Node_Expression_Unary_Neg</a></li>
<li><a href="class-Twig_Node_Expression_Unary_Not.html">Twig_Node_Expression_Unary_Not</a></li>
<li><a href="class-Twig_Node_Expression_Unary_Pos.html">Twig_Node_Expression_Unary_Pos</a></li>
<li><a href="class-Twig_Node_Flush.html">Twig_Node_Flush</a></li>
<li><a href="class-Twig_Node_For.html">Twig_Node_For</a></li>
<li><a href="class-Twig_Node_ForLoop.html">Twig_Node_ForLoop</a></li>
<li><a href="class-Twig_Node_If.html">Twig_Node_If</a></li>
<li><a href="class-Twig_Node_Import.html">Twig_Node_Import</a></li>
<li><a href="class-Twig_Node_Include.html">Twig_Node_Include</a></li>
<li><a href="class-Twig_Node_Macro.html">Twig_Node_Macro</a></li>
<li><a href="class-Twig_Node_Module.html">Twig_Node_Module</a></li>
<li><a href="class-Twig_Node_Print.html">Twig_Node_Print</a></li>
<li><a href="class-Twig_Node_Sandbox.html">Twig_Node_Sandbox</a></li>
<li><a href="class-Twig_Node_SandboxedModule.html">Twig_Node_SandboxedModule</a></li>
<li><a href="class-Twig_Node_SandboxedPrint.html">Twig_Node_SandboxedPrint</a></li>
<li><a href="class-Twig_Node_Set.html">Twig_Node_Set</a></li>
<li><a href="class-Twig_Node_SetTemp.html">Twig_Node_SetTemp</a></li>
<li><a href="class-Twig_Node_Spaceless.html">Twig_Node_Spaceless</a></li>
<li><a href="class-Twig_Node_Text.html">Twig_Node_Text</a></li>
<li><a href="class-Twig_NodeTraverser.html">Twig_NodeTraverser</a></li>
<li><a href="class-Twig_NodeVisitor_Escaper.html">Twig_NodeVisitor_Escaper</a></li>
<li><a href="class-Twig_NodeVisitor_Optimizer.html">Twig_NodeVisitor_Optimizer</a></li>
<li><a href="class-Twig_NodeVisitor_SafeAnalysis.html">Twig_NodeVisitor_SafeAnalysis</a></li>
<li><a href="class-Twig_NodeVisitor_Sandbox.html">Twig_NodeVisitor_Sandbox</a></li>
<li><a href="class-Twig_Parser.html">Twig_Parser</a></li>
<li><a href="class-Twig_Sandbox_SecurityPolicy.html">Twig_Sandbox_SecurityPolicy</a></li>
<li><a href="class-Twig_SimpleFilter.html">Twig_SimpleFilter</a></li>
<li><a href="class-Twig_SimpleFunction.html">Twig_SimpleFunction</a></li>
<li><a href="class-Twig_SimpleTest.html">Twig_SimpleTest</a></li>
<li><a href="class-Twig_Template.html" class="invalid">Twig_Template</a></li>
<li><a href="class-Twig_TemplateArrayAccessObject.html">Twig_TemplateArrayAccessObject</a></li>
<li><a href="class-Twig_TemplateInterface.html" class="invalid">Twig_TemplateInterface</a></li>
<li><a href="class-Twig_TemplateMagicMethodExceptionObject.html">Twig_TemplateMagicMethodExceptionObject</a></li>
<li><a href="class-Twig_TemplateMagicMethodObject.html">Twig_TemplateMagicMethodObject</a></li>
<li><a href="class-Twig_TemplateMagicPropertyObject.html">Twig_TemplateMagicPropertyObject</a></li>
<li><a href="class-Twig_TemplateMagicPropertyObjectWithException.html">Twig_TemplateMagicPropertyObjectWithException</a></li>
<li><a href="class-Twig_TemplateMethodAndPropObject.html">Twig_TemplateMethodAndPropObject</a></li>
<li><a href="class-Twig_TemplateMethodObject.html">Twig_TemplateMethodObject</a></li>
<li><a href="class-Twig_TemplatePropertyObject.html">Twig_TemplatePropertyObject</a></li>
<li><a href="class-Twig_TemplatePropertyObjectAndArrayAccess.html">Twig_TemplatePropertyObjectAndArrayAccess</a></li>
<li><a href="class-Twig_TemplatePropertyObjectAndIterator.html">Twig_TemplatePropertyObjectAndIterator</a></li>
<li><a href="class-Twig_TemplatePropertyObjectDefinedWithUndefinedValue.html">Twig_TemplatePropertyObjectDefinedWithUndefinedValue</a></li>
<li><a href="class-Twig_TemplateTest.html">Twig_TemplateTest</a></li>
<li><a href="class-Twig_Test_EscapingTest.html">Twig_Test_EscapingTest</a></li>
<li><a href="class-Twig_Test_IntegrationTestCase.html">Twig_Test_IntegrationTestCase</a></li>
<li><a href="class-Twig_Test_Loader_TemplateReference.html">Twig_Test_Loader_TemplateReference</a></li>
<li><a href="class-Twig_Test_NodeTestCase.html">Twig_Test_NodeTestCase</a></li>
<li><a href="class-Twig_Tests_AutoloaderTest.html">Twig_Tests_AutoloaderTest</a></li>
<li><a href="class-Twig_Tests_CompilerTest.html">Twig_Tests_CompilerTest</a></li>
<li><a href="class-Twig_Tests_EnvironmentTest.html">Twig_Tests_EnvironmentTest</a></li>
<li><a href="class-Twig_Tests_EnvironmentTest_Extension.html">Twig_Tests_EnvironmentTest_Extension</a></li>
<li><a href="class-Twig_Tests_EnvironmentTest_NodeVisitor.html">Twig_Tests_EnvironmentTest_NodeVisitor</a></li>
<li><a href="class-Twig_Tests_EnvironmentTest_TokenParser.html">Twig_Tests_EnvironmentTest_TokenParser</a></li>
<li><a href="class-Twig_Tests_ErrorTest.html">Twig_Tests_ErrorTest</a></li>
<li><a href="class-Twig_Tests_ErrorTest_Foo.html">Twig_Tests_ErrorTest_Foo</a></li>
<li><a href="class-Twig_Tests_ExpressionParserTest.html">Twig_Tests_ExpressionParserTest</a></li>
<li><a href="class-Twig_Tests_Extension_ArrayTest.html">Twig_Tests_Extension_ArrayTest</a></li>
<li><a href="class-Twig_Tests_Extension_CoreTest.html">Twig_Tests_Extension_CoreTest</a></li>
<li><a href="class-Twig_Tests_Extension_SandboxTest.html">Twig_Tests_Extension_SandboxTest</a></li>
<li><a href="class-Twig_Tests_FileCachingTest.html">Twig_Tests_FileCachingTest</a></li>
<li><a href="class-Twig_Tests_Grammar_ArgumentsTest.html">Twig_Tests_Grammar_ArgumentsTest</a></li>
<li><a href="class-Twig_Tests_Grammar_ArrayTest.html">Twig_Tests_Grammar_ArrayTest</a></li>
<li><a href="class-Twig_Tests_Grammar_BodyTest.html">Twig_Tests_Grammar_BodyTest</a></li>
<li><a href="class-Twig_Tests_Grammar_BooleanTest.html">Twig_Tests_Grammar_BooleanTest</a></li>
<li><a href="class-Twig_Tests_Grammar_ConstantTest.html">Twig_Tests_Grammar_ConstantTest</a></li>
<li><a href="class-Twig_Tests_Grammar_ExpressionTest.html">Twig_Tests_Grammar_ExpressionTest</a></li>
<li><a href="class-Twig_Tests_Grammar_NumberTest.html">Twig_Tests_Grammar_NumberTest</a></li>
<li><a href="class-Twig_Tests_Grammar_OptionalTest.html">Twig_Tests_Grammar_OptionalTest</a></li>
<li><a href="class-Twig_Tests_Grammar_TagTest.html">Twig_Tests_Grammar_TagTest</a></li>
<li><a href="class-Twig_Tests_IntegrationTest.html">Twig_Tests_IntegrationTest</a></li>
<li><a href="class-Twig_Tests_LexerTest.html">Twig_Tests_LexerTest</a></li>
<li><a href="class-Twig_Tests_Loader_ArrayTest.html">Twig_Tests_Loader_ArrayTest</a></li>
<li><a href="class-Twig_Tests_Loader_ChainTest.html">Twig_Tests_Loader_ChainTest</a></li>
<li><a href="class-Twig_Tests_Loader_FilesystemTest.html">Twig_Tests_Loader_FilesystemTest</a></li>
<li><a href="class-Twig_Tests_NativeExtensionTest.html">Twig_Tests_NativeExtensionTest</a></li>
<li><a href="class-Twig_Tests_Node_AutoEscapeTest.html">Twig_Tests_Node_AutoEscapeTest</a></li>
<li><a href="class-Twig_Tests_Node_BlockReferenceTest.html">Twig_Tests_Node_BlockReferenceTest</a></li>
<li><a href="class-Twig_Tests_Node_BlockTest.html">Twig_Tests_Node_BlockTest</a></li>
<li><a href="class-Twig_Tests_Node_DebugTest.html">Twig_Tests_Node_DebugTest</a></li>
<li><a href="class-Twig_Tests_Node_DoTest.html">Twig_Tests_Node_DoTest</a></li>
<li><a href="class-Twig_Tests_Node_Expression_ArrayTest.html">Twig_Tests_Node_Expression_ArrayTest</a></li>
<li><a href="class-Twig_Tests_Node_Expression_AssignNameTest.html">Twig_Tests_Node_Expression_AssignNameTest</a></li>
<li><a href="class-Twig_Tests_Node_Expression_Binary_AddTest.html">Twig_Tests_Node_Expression_Binary_AddTest</a></li>
<li><a href="class-Twig_Tests_Node_Expression_Binary_AndTest.html">Twig_Tests_Node_Expression_Binary_AndTest</a></li>
<li><a href="class-Twig_Tests_Node_Expression_Binary_ConcatTest.html">Twig_Tests_Node_Expression_Binary_ConcatTest</a></li>
<li><a href="class-Twig_Tests_Node_Expression_Binary_DivTest.html">Twig_Tests_Node_Expression_Binary_DivTest</a></li>
<li><a href="class-Twig_Tests_Node_Expression_Binary_FloorDivTest.html">Twig_Tests_Node_Expression_Binary_FloorDivTest</a></li>
<li><a href="class-Twig_Tests_Node_Expression_Binary_ModTest.html">Twig_Tests_Node_Expression_Binary_ModTest</a></li>
<li><a href="class-Twig_Tests_Node_Expression_Binary_MulTest.html">Twig_Tests_Node_Expression_Binary_MulTest</a></li>
<li><a href="class-Twig_Tests_Node_Expression_Binary_OrTest.html">Twig_Tests_Node_Expression_Binary_OrTest</a></li>
<li><a href="class-Twig_Tests_Node_Expression_Binary_SubTest.html">Twig_Tests_Node_Expression_Binary_SubTest</a></li>
<li><a href="class-Twig_Tests_Node_Expression_Call.html">Twig_Tests_Node_Expression_Call</a></li>
<li><a href="class-Twig_Tests_Node_Expression_CallTest.html">Twig_Tests_Node_Expression_CallTest</a></li>
<li><a href="class-Twig_Tests_Node_Expression_ConditionalTest.html">Twig_Tests_Node_Expression_ConditionalTest</a></li>
<li><a href="class-Twig_Tests_Node_Expression_ConstantTest.html">Twig_Tests_Node_Expression_ConstantTest</a></li>
<li><a href="class-Twig_Tests_Node_Expression_FilterTest.html">Twig_Tests_Node_Expression_FilterTest</a></li>
<li><a href="class-Twig_Tests_Node_Expression_FunctionTest.html">Twig_Tests_Node_Expression_FunctionTest</a></li>
<li><a href="class-Twig_Tests_Node_Expression_GetAttrTest.html">Twig_Tests_Node_Expression_GetAttrTest</a></li>
<li><a href="class-Twig_Tests_Node_Expression_NameTest.html">Twig_Tests_Node_Expression_NameTest</a></li>
<li><a href="class-Twig_Tests_Node_Expression_ParentTest.html">Twig_Tests_Node_Expression_ParentTest</a></li>
<li><a href="class-Twig_Tests_Node_Expression_TestTest.html">Twig_Tests_Node_Expression_TestTest</a></li>
<li><a href="class-Twig_Tests_Node_Expression_Unary_NegTest.html">Twig_Tests_Node_Expression_Unary_NegTest</a></li>
<li><a href="class-Twig_Tests_Node_Expression_Unary_NotTest.html">Twig_Tests_Node_Expression_Unary_NotTest</a></li>
<li><a href="class-Twig_Tests_Node_Expression_Unary_PosTest.html">Twig_Tests_Node_Expression_Unary_PosTest</a></li>
<li><a href="class-Twig_Tests_Node_ForTest.html">Twig_Tests_Node_ForTest</a></li>
<li><a href="class-Twig_Tests_Node_IfTest.html">Twig_Tests_Node_IfTest</a></li>
<li><a href="class-Twig_Tests_Node_ImportTest.html">Twig_Tests_Node_ImportTest</a></li>
<li><a href="class-Twig_Tests_Node_IncludeTest.html">Twig_Tests_Node_IncludeTest</a></li>
<li><a href="class-Twig_Tests_Node_MacroTest.html">Twig_Tests_Node_MacroTest</a></li>
<li><a href="class-Twig_Tests_Node_ModuleTest.html">Twig_Tests_Node_ModuleTest</a></li>
<li><a href="class-Twig_Tests_Node_PrintTest.html">Twig_Tests_Node_PrintTest</a></li>
<li><a href="class-Twig_Tests_Node_SandboxedModuleTest.html">Twig_Tests_Node_SandboxedModuleTest</a></li>
<li><a href="class-Twig_Tests_Node_SandboxedPrintTest.html">Twig_Tests_Node_SandboxedPrintTest</a></li>
<li><a href="class-Twig_Tests_Node_SandboxTest.html">Twig_Tests_Node_SandboxTest</a></li>
<li><a href="class-Twig_Tests_Node_SetTest.html">Twig_Tests_Node_SetTest</a></li>
<li><a href="class-Twig_Tests_Node_SpacelessTest.html">Twig_Tests_Node_SpacelessTest</a></li>
<li><a href="class-Twig_Tests_Node_TextTest.html">Twig_Tests_Node_TextTest</a></li>
<li><a href="class-Twig_Tests_Node_TransTest.html">Twig_Tests_Node_TransTest</a></li>
<li><a href="class-Twig_Tests_NodeVisitor_OptimizerTest.html">Twig_Tests_NodeVisitor_OptimizerTest</a></li>
<li><a href="class-Twig_Tests_ParserTest.html">Twig_Tests_ParserTest</a></li>
<li><a href="class-Twig_Tests_SimpleTokenParserTest.html">Twig_Tests_SimpleTokenParserTest</a></li>
<li><a href="class-Twig_Tests_TemplateTest.html">Twig_Tests_TemplateTest</a></li>
<li><a href="class-Twig_Tests_TokenStreamTest.html">Twig_Tests_TokenStreamTest</a></li>
<li><a href="class-Twig_Token.html">Twig_Token</a></li>
<li><a href="class-Twig_TokenParser.html">Twig_TokenParser</a></li>
<li><a href="class-Twig_TokenParser_AutoEscape.html">Twig_TokenParser_AutoEscape</a></li>
<li><a href="class-Twig_TokenParser_Block.html">Twig_TokenParser_Block</a></li>
<li><a href="class-Twig_TokenParser_Do.html">Twig_TokenParser_Do</a></li>
<li><a href="class-Twig_TokenParser_Embed.html">Twig_TokenParser_Embed</a></li>
<li><a href="class-Twig_TokenParser_Extends.html">Twig_TokenParser_Extends</a></li>
<li><a href="class-Twig_TokenParser_Filter.html">Twig_TokenParser_Filter</a></li>
<li><a href="class-Twig_TokenParser_Flush.html">Twig_TokenParser_Flush</a></li>
<li><a href="class-Twig_TokenParser_For.html">Twig_TokenParser_For</a></li>
<li><a href="class-Twig_TokenParser_From.html">Twig_TokenParser_From</a></li>
<li><a href="class-Twig_TokenParser_If.html">Twig_TokenParser_If</a></li>
<li><a href="class-Twig_TokenParser_Import.html">Twig_TokenParser_Import</a></li>
<li><a href="class-Twig_TokenParser_Include.html">Twig_TokenParser_Include</a></li>
<li><a href="class-Twig_TokenParser_Macro.html">Twig_TokenParser_Macro</a></li>
<li><a href="class-Twig_TokenParser_Sandbox.html">Twig_TokenParser_Sandbox</a></li>
<li><a href="class-Twig_TokenParser_Set.html">Twig_TokenParser_Set</a></li>
<li><a href="class-Twig_TokenParser_Spaceless.html">Twig_TokenParser_Spaceless</a></li>
<li><a href="class-Twig_TokenParser_Use.html">Twig_TokenParser_Use</a></li>
<li><a href="class-Twig_TokenStream.html">Twig_TokenStream</a></li>
<li><a href="class-TwigTestExtension.html">TwigTestExtension</a></li>
<li><a href="class-TwigTestFoo.html">TwigTestFoo</a></li>
<li><a href="class-TwigTestTokenParser_...html">TwigTestTokenParser_§</a></li>
</ul>
<h3>Interfaces</h3>
<ul>
<li><a href="class-PHPParser_Builder.html">PHPParser_Builder</a></li>
<li><a href="class-PHPParser_Node.html">PHPParser_Node</a></li>
<li><a href="class-PHPParser_NodeTraverserInterface.html">PHPParser_NodeTraverserInterface</a></li>
<li><a href="class-PHPParser_NodeVisitor.html">PHPParser_NodeVisitor</a></li>
<li><a href="class-PHPParser_Serializer.html">PHPParser_Serializer</a></li>
<li><a href="class-PHPParser_Unserializer.html">PHPParser_Unserializer</a></li>
<li><a href="class-SessionHandlerInterface.html">SessionHandlerInterface</a></li>
<li><a href="class-Swift_CharacterReader.html">Swift_CharacterReader</a></li>
<li><a href="class-Swift_CharacterReaderFactory.html">Swift_CharacterReaderFactory</a></li>
<li><a href="class-Swift_CharacterStream.html">Swift_CharacterStream</a></li>
<li><a href="class-Swift_Encoder.html">Swift_Encoder</a></li>
<li><a href="class-Swift_Events_CommandListener.html">Swift_Events_CommandListener</a></li>
<li><a href="class-Swift_Events_Event.html">Swift_Events_Event</a></li>
<li><a href="class-Swift_Events_EventDispatcher.html">Swift_Events_EventDispatcher</a></li>
<li><a href="class-Swift_Events_EventListener.html">Swift_Events_EventListener</a></li>
<li><a href="class-Swift_Events_ResponseListener.html">Swift_Events_ResponseListener</a></li>
<li><a href="class-Swift_Events_SendListener.html">Swift_Events_SendListener</a></li>
<li><a href="class-Swift_Events_TransportChangeListener.html">Swift_Events_TransportChangeListener</a></li>
<li><a href="class-Swift_Events_TransportExceptionListener.html">Swift_Events_TransportExceptionListener</a></li>
<li><a href="class-Swift_FileStream.html">Swift_FileStream</a></li>
<li><a href="class-Swift_Filterable.html">Swift_Filterable</a></li>
<li><a href="class-Swift_InputByteStream.html">Swift_InputByteStream</a></li>
<li><a href="class-Swift_KeyCache.html">Swift_KeyCache</a></li>
<li><a href="class-Swift_KeyCache_KeyCacheInputStream.html">Swift_KeyCache_KeyCacheInputStream</a></li>
<li><a href="class-Swift_Mailer_RecipientIterator.html">Swift_Mailer_RecipientIterator</a></li>
<li><a href="class-Swift_Mime_CharsetObserver.html">Swift_Mime_CharsetObserver</a></li>
<li><a href="class-Swift_Mime_ContentEncoder.html">Swift_Mime_ContentEncoder</a></li>
<li><a href="class-Swift_Mime_EncodingObserver.html">Swift_Mime_EncodingObserver</a></li>
<li><a href="class-Swift_Mime_Header.html">Swift_Mime_Header</a></li>
<li><a href="class-Swift_Mime_HeaderEncoder.html">Swift_Mime_HeaderEncoder</a></li>
<li><a href="class-Swift_Mime_HeaderFactory.html">Swift_Mime_HeaderFactory</a></li>
<li><a href="class-Swift_Mime_HeaderSet.html">Swift_Mime_HeaderSet</a></li>
<li><a href="class-Swift_Mime_Message.html">Swift_Mime_Message</a></li>
<li><a href="class-Swift_Mime_MimeEntity.html">Swift_Mime_MimeEntity</a></li>
<li><a href="class-Swift_Mime_ParameterizedHeader.html">Swift_Mime_ParameterizedHeader</a></li>
<li><a href="class-Swift_OutputByteStream.html">Swift_OutputByteStream</a></li>
<li><a href="class-Swift_Plugins_Decorator_Replacements.html">Swift_Plugins_Decorator_Replacements</a></li>
<li><a href="class-Swift_Plugins_Logger.html">Swift_Plugins_Logger</a></li>
<li><a href="class-Swift_Plugins_Pop_Pop3Connection.html">Swift_Plugins_Pop_Pop3Connection</a></li>
<li><a href="class-Swift_Plugins_Reporter.html">Swift_Plugins_Reporter</a></li>
<li><a href="class-Swift_Plugins_Sleeper.html">Swift_Plugins_Sleeper</a></li>
<li><a href="class-Swift_Plugins_Timer.html">Swift_Plugins_Timer</a></li>
<li><a href="class-Swift_ReplacementFilterFactory.html">Swift_ReplacementFilterFactory</a></li>
<li><a href="class-Swift_Signer.html">Swift_Signer</a></li>
<li><a href="class-Swift_Signers_BodySigner.html">Swift_Signers_BodySigner</a></li>
<li><a href="class-Swift_Signers_HeaderSigner.html">Swift_Signers_HeaderSigner</a></li>
<li><a href="class-Swift_Spool.html">Swift_Spool</a></li>
<li><a href="class-Swift_StreamFilter.html">Swift_StreamFilter</a></li>
<li><a href="class-Swift_Transport.html">Swift_Transport</a></li>
<li><a href="class-Swift_Transport_Esmtp_Authenticator.html">Swift_Transport_Esmtp_Authenticator</a></li>
<li><a href="class-Swift_Transport_EsmtpHandler.html">Swift_Transport_EsmtpHandler</a></li>
<li><a href="class-Swift_Transport_EsmtpHandlerMixin.html">Swift_Transport_EsmtpHandlerMixin</a></li>
<li><a href="class-Swift_Transport_IoBuffer.html">Swift_Transport_IoBuffer</a></li>
<li><a href="class-Swift_Transport_MailInvoker.html">Swift_Transport_MailInvoker</a></li>
<li><a href="class-Swift_Transport_SmtpAgent.html">Swift_Transport_SmtpAgent</a></li>
<li><a href="class-Twig_Extensions_GrammarInterface.html">Twig_Extensions_GrammarInterface</a></li>
<li><a href="class-Twig_NodeOutputInterface.html">Twig_NodeOutputInterface</a></li>
<li><a href="class-Twig_NodeVisitorInterface.html">Twig_NodeVisitorInterface</a></li>
<li><a href="class-Twig_Sandbox_SecurityPolicyInterface.html">Twig_Sandbox_SecurityPolicyInterface</a></li>
<li><a href="class-Twig_TokenParserInterface.html">Twig_TokenParserInterface</a></li>
</ul>
<h3>Traits</h3>
<ul>
<li><a href="class-TA.html">TA</a></li>
<li><a href="class-TB.html">TB</a></li>
<li><a href="class-TC.html">TC</a></li>
<li><a href="class-TD.html">TD</a></li>
<li><a href="class-TFoo.html">TFoo</a></li>
<li><a href="class-TZ.html">TZ</a></li>
</ul>
<h3>Exceptions</h3>
<ul>
<li><a href="class-PHPParser_Error.html">PHPParser_Error</a></li>
<li><a href="class-Swift_DependencyException.html">Swift_DependencyException</a></li>
<li><a href="class-Swift_IoException.html">Swift_IoException</a></li>
<li><a href="class-Swift_Plugins_Pop_Pop3Exception.html">Swift_Plugins_Pop_Pop3Exception</a></li>
<li><a href="class-Swift_RfcComplianceException.html">Swift_RfcComplianceException</a></li>
<li><a href="class-Swift_SwiftException.html">Swift_SwiftException</a></li>
<li><a href="class-Swift_TransportException.html">Swift_TransportException</a></li>
<li><a href="class-Twig_Error.html">Twig_Error</a></li>
<li><a href="class-Twig_Error_Loader.html">Twig_Error_Loader</a></li>
<li><a href="class-Twig_Error_Runtime.html">Twig_Error_Runtime</a></li>
<li><a href="class-Twig_Error_Syntax.html">Twig_Error_Syntax</a></li>
<li><a href="class-Twig_Sandbox_SecurityError.html">Twig_Sandbox_SecurityError</a></li>
</ul>
<h3>Constants</h3>
<ul>
<li><a href="constant-ARGS.html">ARGS</a></li>
<li><a href="constant-GRAMMAR_FILE.html">GRAMMAR_FILE</a></li>
<li><a href="constant-LIB.html" class="invalid">LIB</a></li>
<li><a href="constant-PARAMS.html">PARAMS</a></li>
<li><a href="constant-RULE_BLOCK.html">RULE_BLOCK</a></li>
</ul>
<h3>Functions</h3>
<ul>
<li><a href="function-_assetic_urls.html">_assetic_urls</a></li>
<li><a href="function-_swiftmailer_init.html" class="invalid">_swiftmailer_init</a></li>
<li><a href="function-_twig_default_filter.html" class="invalid">_twig_default_filter</a></li>
<li><a href="function-_twig_escape_css_callback.html" class="invalid">_twig_escape_css_callback</a></li>
<li><a href="function-_twig_escape_html_attr_callback.html" class="invalid">_twig_escape_html_attr_callback</a></li>
<li><a href="function-_twig_escape_js_callback.html" class="invalid">_twig_escape_js_callback</a></li>
<li><a href="function-_twig_markup2string.html" class="invalid">_twig_markup2string</a></li>
<li><a href="function-assertArgs.html">assertArgs</a></li>
<li><a href="function-assetic_image.html">assetic_image</a></li>
<li><a href="function-assetic_init.html">assetic_init</a></li>
<li><a href="function-assetic_javascripts.html">assetic_javascripts</a></li>
<li><a href="function-assetic_stylesheets.html">assetic_stylesheets</a></li>
<li><a href="function-bailout.html">bailout</a></li>
<li><a href="function-benchmark.html">benchmark</a></li>
<li><a href="function-cd.html">cd</a></li>
<li><a href="function-centered.html">centered</a></li>
<li><a href="function-composerRequire23420dfe124bdae2daff5e7dca930408.html">composerRequire23420dfe124bdae2daff5e7dca930408</a></li>
<li><a href="function-createCollection.html">createCollection</a></li>
<li><a href="function-createObject.html">createObject</a></li>
<li><a href="function-echo_requirement.html" class="invalid">echo_requirement</a></li>
<li><a href="function-echo_title.html" class="invalid">echo_title</a></li>
<li><a href="function-filter_func.html" class="invalid">filter_func</a></li>
<li><a href="function-foo_escaper_for_test.html">foo_escaper_for_test</a></li>
<li><a href="function-generateUpToDateMimeArray.html">generateUpToDateMimeArray</a></li>
<li><a href="function-get_icu_version_from_genrb.html">get_icu_version_from_genrb</a></li>
<li><a href="function-handleSignal.html">handleSignal</a></li>
<li><a href="function-html.html">html</a></li>
<li><a href="function-includeIfExists.html">includeIfExists</a></li>
<li><a href="function-intl_error_name.html">intl_error_name</a></li>
<li><a href="function-intl_get_error_code.html">intl_get_error_code</a></li>
<li><a href="function-intl_get_error_message.html">intl_get_error_message</a></li>
<li><a href="function-intl_is_failure.html">intl_is_failure</a></li>
<li><a href="function-lcfirst.html">lcfirst</a></li>
<li><a href="function-magicSplit.html" class="invalid">magicSplit</a></li>
<li><a href="function-moveFileWithDirCheck.html">moveFileWithDirCheck</a></li>
<li><a href="function-regex.html" class="invalid">regex</a></li>
<li><a href="function-resolveArrays.html">resolveArrays</a></li>
<li><a href="function-resolveConstants.html">resolveConstants</a></li>
<li><a href="function-resolveMacros.html">resolveMacros</a></li>
<li><a href="function-resolveNodes.html">resolveNodes</a></li>
<li><a href="function-run.html">run</a></li>
<li><a href="function-sc_configure.html">sc_configure</a></li>
<li><a href="function-showHelp.html">showHelp</a></li>
<li><a href="function-strip_minor_versions.html">strip_minor_versions</a></li>
<li><a href="function-test_foo.html">test_foo</a></li>
<li><a href="function-twig_array_batch.html" class="invalid">twig_array_batch</a></li>
<li><a href="function-twig_array_merge.html" class="invalid">twig_array_merge</a></li>
<li><a href="function-twig_capitalize_string_filter.html" class="invalid">twig_capitalize_string_filter</a></li>
<li><a href="function-twig_constant.html" class="invalid">twig_constant</a></li>
<li><a href="function-twig_convert_encoding.html" class="invalid">twig_convert_encoding</a></li>
<li><a href="function-twig_cycle.html" class="invalid">twig_cycle</a></li>
<li><a href="function-twig_date_converter.html" class="invalid">twig_date_converter</a></li>
<li><a href="function-twig_date_format_filter.html" class="invalid">twig_date_format_filter</a></li>
<li><a href="function-twig_date_modify_filter.html" class="invalid">twig_date_modify_filter</a></li>
<li><a href="function-twig_ensure_traversable.html" class="invalid">twig_ensure_traversable</a></li>
<li><a href="function-twig_escape_filter.html" class="invalid">twig_escape_filter</a></li>
<li><a href="function-twig_escape_filter_is_safe.html" class="invalid">twig_escape_filter_is_safe</a></li>
<li><a href="function-twig_first.html" class="invalid">twig_first</a></li>
<li><a href="function-twig_get_array_keys_filter.html" class="invalid">twig_get_array_keys_filter</a></li>
<li><a href="function-twig_in_filter.html" class="invalid">twig_in_filter</a></li>
<li><a href="function-twig_include.html" class="invalid">twig_include</a></li>
<li><a href="function-twig_join_filter.html" class="invalid">twig_join_filter</a></li>
<li><a href="function-twig_jsonencode_filter.html" class="invalid">twig_jsonencode_filter</a></li>
<li><a href="function-twig_last.html" class="invalid">twig_last</a></li>
<li><a href="function-twig_length_filter.html" class="invalid">twig_length_filter</a></li>
<li><a href="function-twig_localized_date_filter.html">twig_localized_date_filter</a></li>
<li><a href="function-twig_lower_filter.html" class="invalid">twig_lower_filter</a></li>
<li><a href="function-twig_nl2br_filter.html">twig_nl2br_filter</a></li>
<li><a href="function-twig_number_format_filter.html" class="invalid">twig_number_format_filter</a></li>
<li><a href="function-twig_random.html" class="invalid">twig_random</a></li>
<li><a href="function-twig_raw_filter.html" class="invalid">twig_raw_filter</a></li>
<li><a href="function-twig_reverse_filter.html" class="invalid">twig_reverse_filter</a></li>
<li><a href="function-twig_round.html" class="invalid">twig_round</a></li>
<li><a href="function-twig_shuffle_filter.html">twig_shuffle_filter</a></li>
<li><a href="function-twig_slice.html" class="invalid">twig_slice</a></li>
<li><a href="function-twig_sort_filter.html" class="invalid">twig_sort_filter</a></li>
<li><a href="function-twig_source.html" class="invalid">twig_source</a></li>
<li><a href="function-twig_split_filter.html" class="invalid">twig_split_filter</a></li>
<li><a href="function-twig_template_from_string.html">twig_template_from_string</a></li>
<li><a href="function-twig_test_empty.html" class="invalid">twig_test_empty</a></li>
<li><a href="function-twig_test_iterable.html" class="invalid">twig_test_iterable</a></li>
<li><a href="function-twig_title_string_filter.html" class="invalid">twig_title_string_filter</a></li>
<li><a href="function-twig_truncate_filter.html" class="invalid">twig_truncate_filter</a></li>
<li><a href="function-twig_upper_filter.html" class="invalid">twig_upper_filter</a></li>
<li><a href="function-twig_urlencode_filter.html" class="invalid">twig_urlencode_filter</a></li>
<li><a href="function-twig_var_dump.html">twig_var_dump</a></li>
<li><a href="function-twig_wordwrap_filter.html" class="invalid">twig_wordwrap_filter</a></li>
</ul>
</div>
</div>
</div>
<div id="splitter"></div>
<div id="right">
<div id="rightInner">
<form id="search">
<input type="hidden" name="cx" value="" />
<input type="hidden" name="ie" value="UTF-8" />
<input type="text" name="q" class="text" />
<input type="submit" value="Search" />
</form>
<div id="navigation">
<ul>
<li>
<a href="index.html" title="Overview"><span>Overview</span></a>
</li>
<li>
<a href="namespace-None.html" title="Summary of None"><span>Namespace</span></a>
</li>
<li class="active">
<span>Class</span> </li>
</ul>
<ul>
<li>
<a href="tree.html" title="Tree view of classes, interfaces, traits and exceptions"><span>Tree</span></a>
</li>
</ul>
<ul>
</ul>
</div>
<div id="content" class="class">
<h1>Class PHPParser_Node_Expr_AssignDiv</h1>
<dl class="tree">
<dd style="padding-left:0px">
<a href="class-PHPParser_NodeAbstract.html"><span>PHPParser_NodeAbstract</span></a>
implements
<a href="class-PHPParser_Node.html"><span>PHPParser_Node</span></a>,
<a href="class-IteratorAggregate.html"><span>IteratorAggregate</span></a>
</dd>
<dd style="padding-left:30px">
<img src="resources/inherit.png" alt="Extended by" />
<a href="class-PHPParser_Node_Expr.html"><span>PHPParser_Node_Expr</span></a>
</dd>
<dd style="padding-left:60px">
<img src="resources/inherit.png" alt="Extended by" />
<b><span>PHPParser_Node_Expr_AssignDiv</span></b>
</dd>
</dl>
<div class="info">
<b>Located at</b> <a href="source-class-PHPParser_Node_Expr_AssignDiv.html#3-25" title="Go to source code">vendor/nikic/php-parser/lib/PHPParser/Node/Expr/AssignDiv.php</a><br />
</div>
<table class="summary" id="methods">
<caption>Methods summary</caption>
<tr data-order="__construct" id="___construct">
<td class="attributes"><code>
public
</code>
</td>
<td class="name"><div>
<a class="anchor" href="#___construct">#</a>
<code><a href="source-class-PHPParser_Node_Expr_AssignDiv.html#9-24" title="Go to source code">__construct</a>( <span><code><a href="class-PHPParser_Node_Expr.html">PHPParser_Node_Expr</a></code> <var>$var</var></span>, <span><code><a href="class-PHPParser_Node_Expr.html">PHPParser_Node_Expr</a></code> <var>$expr</var></span>, <span>array <var>$attributes</var> = <span class="php-keyword1">array</span>()</span> )</code>
<div class="description short">
<p>Constructs an assignment with division node.</p>
</div>
<div class="description detailed hidden">
<p>Constructs an assignment with division node.</p>
<h4>Parameters</h4>
<div class="list"><dl>
<dt><var>$var</var></dt>
<dd><code><code><a href="class-PHPParser_Node_Expr.html">PHPParser_Node_Expr</a></code></code><br>$var Variable</dd>
<dt><var>$expr</var></dt>
<dd><code><code><a href="class-PHPParser_Node_Expr.html">PHPParser_Node_Expr</a></code></code><br>$expr Expression</dd>
<dt><var>$attributes</var></dt>
<dd><code>array</code><br>$attributes Additional attributes</dd>
</dl></div>
<h4>Overrides</h4>
<div class="list"><code><a href="class-PHPParser_NodeAbstract.html#___construct">PHPParser_NodeAbstract::__construct()</a></code></div>
</div>
</div></td>
</tr>
</table>
<table class="summary inherited">
<caption>Methods inherited from <a href="class-PHPParser_NodeAbstract.html#methods">PHPParser_NodeAbstract</a></caption>
<tr>
<td><code>
<a href="class-PHPParser_NodeAbstract.html#___get">__get()</a>,
<a href="class-PHPParser_NodeAbstract.html#___isset">__isset()</a>,
<a href="class-PHPParser_NodeAbstract.html#___set">__set()</a>,
<a href="class-PHPParser_NodeAbstract.html#___unset">__unset()</a>,
<a href="class-PHPParser_NodeAbstract.html#_getAttribute">getAttribute()</a>,
<a href="class-PHPParser_NodeAbstract.html#_getAttributes">getAttributes()</a>,
<a href="class-PHPParser_NodeAbstract.html#_getDocComment">getDocComment()</a>,
<a href="class-PHPParser_NodeAbstract.html#_getIterator">getIterator()</a>,
<a href="class-PHPParser_NodeAbstract.html#_getLine">getLine()</a>,
<a href="class-PHPParser_NodeAbstract.html#_getSubNodeNames">getSubNodeNames()</a>,
<a href="class-PHPParser_NodeAbstract.html#_getType">getType()</a>,
<a href="class-PHPParser_NodeAbstract.html#_hasAttribute">hasAttribute()</a>,
<a href="class-PHPParser_NodeAbstract.html#_setAttribute">setAttribute()</a>,
<a href="class-PHPParser_NodeAbstract.html#_setLine">setLine()</a>
</code></td>
</tr>
</table>
<table class="summary inherited">
<caption>Properties inherited from <a href="class-PHPParser_NodeAbstract.html#properties">PHPParser_NodeAbstract</a></caption>
<tr>
<td><code>
<a href="class-PHPParser_NodeAbstract.html#$attributes"><var>$attributes</var></a>,
<a href="class-PHPParser_NodeAbstract.html#$subNodes"><var>$subNodes</var></a>
</code></td>
</tr>
</table>
<table class="summary" id="magicProperties">
<caption>Magic properties summary</caption>
<tr data-order="var" id="m$var">
<td class="attributes"><code>
public
<code><a href="class-PHPParser_Node_Expr.html">PHPParser_Node_Expr</a></code>
</code></td>
<td class="name">
<a href="source-class-PHPParser_Node_Expr_AssignDiv.html#4" title="Go to source code"><var>$var</var></a>
</td>
<td class="description"><div>
<a href="#m$var" class="anchor">#</a>
<div class="description short">
<p>Variable</p>
</div>
<div class="description detailed hidden">
<p>Variable</p>
</div>
</div></td>
</tr>
<tr data-order="expr" id="m$expr">
<td class="attributes"><code>
public
<code><a href="class-PHPParser_Node_Expr.html">PHPParser_Node_Expr</a></code>
</code></td>
<td class="name">
<a href="source-class-PHPParser_Node_Expr_AssignDiv.html#5" title="Go to source code"><var>$expr</var></a>
</td>
<td class="description"><div>
<a href="#m$expr" class="anchor">#</a>
<div class="description short">
<p>Expression</p>
</div>
<div class="description detailed hidden">
<p>Expression</p>
</div>
</div></td>
</tr>
</table>
</div>
<div id="footer">
seip API documentation generated by <a href="http://apigen.org">ApiGen 2.8.0</a>
</div>
</div>
</div>
</body>
</html>
|
CIMS/commons-fileupload-1.3.1-bin 2/site/apidocs/org/apache/commons/fileupload/class-use/FileUploadBase.FileUploadIOException.html | S43-Proftaakgroep/PTS4 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<META http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<TITLE>
Uses of Class org.apache.commons.fileupload.FileUploadBase.FileUploadIOException (Apache Commons FileUpload 1.3.1 API)
</TITLE>
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
parent.document.title="Uses of Class org.apache.commons.fileupload.FileUploadBase.FileUploadIOException (Apache Commons FileUpload 1.3.1 API)";
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../org/apache/commons/fileupload/FileUploadBase.FileUploadIOException.html" title="class in org.apache.commons.fileupload"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../index.html?org/apache/commons/fileupload/class-use/FileUploadBase.FileUploadIOException.html" target="_top"><B>FRAMES</B></A>
<A HREF="FileUploadBase.FileUploadIOException.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<CENTER>
<H2>
<B>Uses of Class<br>org.apache.commons.fileupload.FileUploadBase.FileUploadIOException</B></H2>
</CENTER>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
Packages that use <A HREF="../../../../../org/apache/commons/fileupload/FileUploadBase.FileUploadIOException.html" title="class in org.apache.commons.fileupload">FileUploadBase.FileUploadIOException</A></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="#org.apache.commons.fileupload"><B>org.apache.commons.fileupload</B></A></TD>
<TD>
A component for handling HTML file uploads as specified by
<a href="http://www.ietf.org/rfc/rfc1867.txt" target="_top">RFC 1867</a>. </TD>
</TR>
</TABLE>
<P>
<A NAME="org.apache.commons.fileupload"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
Uses of <A HREF="../../../../../org/apache/commons/fileupload/FileUploadBase.FileUploadIOException.html" title="class in org.apache.commons.fileupload">FileUploadBase.FileUploadIOException</A> in <A HREF="../../../../../org/apache/commons/fileupload/package-summary.html">org.apache.commons.fileupload</A></FONT></TH>
</TR>
</TABLE>
<P>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../../org/apache/commons/fileupload/package-summary.html">org.apache.commons.fileupload</A> that throw <A HREF="../../../../../org/apache/commons/fileupload/FileUploadBase.FileUploadIOException.html" title="class in org.apache.commons.fileupload">FileUploadBase.FileUploadIOException</A></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> boolean</CODE></FONT></TD>
<TD><CODE><B>MultipartStream.</B><B><A HREF="../../../../../org/apache/commons/fileupload/MultipartStream.html#readBoundary()">readBoundary</A></B>()</CODE>
<BR>
Skips a <code>boundary</code> token, and checks whether more
<code>encapsulations</code> are contained in the stream.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="http://download.oracle.com/javase/6/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A></CODE></FONT></TD>
<TD><CODE><B>MultipartStream.</B><B><A HREF="../../../../../org/apache/commons/fileupload/MultipartStream.html#readHeaders()">readHeaders</A></B>()</CODE>
<BR>
Reads the <code>header-part</code> of the current
<code>encapsulation</code>.</TD>
</TR>
</TABLE>
<P>
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../org/apache/commons/fileupload/FileUploadBase.FileUploadIOException.html" title="class in org.apache.commons.fileupload"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../index.html?org/apache/commons/fileupload/class-use/FileUploadBase.FileUploadIOException.html" target="_top"><B>FRAMES</B></A>
<A HREF="FileUploadBase.FileUploadIOException.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
Copyright © 2002–2014 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
</BODY>
</HTML>
|
labs/style8.css | poojaharsha/html-css | h1
{
text-align: center;
}
h2
{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-style: italic;
} |
lib/api/doctrine/common/cache/arraycache.html | j13k/doctrine1 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
<link rel="start" href="../../../overview-summary.html">
<title>ArrayCache (Doctrine)</title>
</head>
<body id="definition" onload="parent.document.title=document.title;">
<div class="header">
<h1>Doctrine</h1>
<ul>
<li><a href="../../../overview-summary.html">Overview</a></li>
<li><a href="../../../doctrine/common/cache/package-summary.html">Namespace</a></li>
<li class="active">Class</li>
<li><a href="../../../doctrine/common/cache/package-tree.html">Tree</a></li>
<li><a href="../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../index-all.html">Index</a></li>
</ul>
</div>
<div class="small_links">
<a href="../../../index.html" target="_top">Frames</a>
<a href="../../../doctrine/common/cache/arraycache.html" target="_top">No frames</a>
</div>
<div class="small_links">
Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
</div>
<hr>
<div class="qualifiedName">Doctrine\Common\Cache\ArrayCache</div>
<div class="location">/Doctrine/Common/Cache/ArrayCache.php at line 37</div>
<h1>Class ArrayCache</h1>
<pre class="tree">Class:ArrayCache - Superclass: AbstractCache
<a href="../../../doctrine/common/cache/abstractcache.html">AbstractCache</a><br> ⌊ <strong>ArrayCache</strong><br /></pre>
<hr>
<p class="signature">public class <strong>ArrayCache</strong><br>extends <a href="../../../doctrine/common/cache/abstractcache.html">AbstractCache</a>
</p>
<div class="comment" id="overview_description"><p>Array cache driver.</p></div>
<dl>
<dt>License:</dt>
<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
<dt>See Also:</dt>
<dd><code>www.doctrine-project.org</code></dd>
<dt>Since:</dt>
<dd>2.0</dd>
<dt>Version:</dt>
<dd>$Revision: 3938 $</dd>
<dt>Author:</dt>
<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
<dd>Jonathan Wage <jonwage@gmail.com></dd>
<dd>Roman Borschel <roman@code-factory.org></dd>
<dd>David Abdemoulaie <dave@hobodave.com></dd>
</dl>
<hr>
<table id="summary_method">
<tr><th colspan="2">Method Summary</th></tr>
<tr>
<td class="type"> array</td>
<td class="description"><p class="name"><a href="#getIds()">getIds</a>()</p><p class="description">{@inheritdoc}</p></td>
</tr>
</table>
<table class="inherit">
<tr><th colspan="2">Methods inherited from Doctrine\Common\Cache\AbstractCache</th></tr>
<tr><td><a href="../../../doctrine/common/cache/abstractcache.html#contains()">contains</a>, <a href="../../../doctrine/common/cache/abstractcache.html#delete()">delete</a>, <a href="../../../doctrine/common/cache/abstractcache.html#deleteAll()">deleteAll</a>, <a href="../../../doctrine/common/cache/abstractcache.html#deleteByPrefix()">deleteByPrefix</a>, <a href="../../../doctrine/common/cache/abstractcache.html#deleteByRegex()">deleteByRegex</a>, <a href="../../../doctrine/common/cache/abstractcache.html#deleteBySuffix()">deleteBySuffix</a>, <a href="../../../doctrine/common/cache/abstractcache.html#fetch()">fetch</a>, <a href="../../../doctrine/common/cache/abstractcache.html#getIds()">getIds</a>, <a href="../../../doctrine/common/cache/abstractcache.html#save()">save</a>, <a href="../../../doctrine/common/cache/abstractcache.html#setNamespace()">setNamespace</a></td></tr></table>
<h2 id="detail_method">Method Detail</h2>
<div class="location">/Doctrine/Common/Cache/ArrayCache.php at line 47</div>
<h3 id="getIds()">getIds</h3>
<code class="signature">public array <strong>getIds</strong>()</code>
<div class="details">
<p></p><dl>
<dt>Returns:</dt>
<dd>$ids</dd>
</dl>
</div>
<hr>
<div class="header">
<h1>Doctrine</h1>
<ul>
<li><a href="../../../overview-summary.html">Overview</a></li>
<li><a href="../../../doctrine/common/cache/package-summary.html">Namespace</a></li>
<li class="active">Class</li>
<li><a href="../../../doctrine/common/cache/package-tree.html">Tree</a></li>
<li><a href="../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../index-all.html">Index</a></li>
</ul>
</div>
<div class="small_links">
<a href="../../../index.html" target="_top">Frames</a>
<a href="../../../doctrine/common/cache/arraycache.html" target="_top">No frames</a>
</div>
<div class="small_links">
Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
</div>
<hr>
<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
</body>
</html> |
css/styles.css | carol-yao/wip-website | /* GLOBAL STYLES */
* {
font-family: 'Avenir', 'Hind', 'Helvetica', 'Arial', sans-serif;
color: #212121;
font-size: 1em;
}
a {
color: #FF5252;
}
a:hover, a:active, a:focus {
text-decoration: none;
color: #FF1744;
outline: none;
}
.container-fluid.main-body {
padding: 0;
}
#name-logo {
line-height: 50px;
}
.navbar-default {
background-color: white;
border: none;
padding: 1em 0;
}
/* nav bar links */
.nav-bar-nav {
padding: 0 100px; /* change for responsive */
position: fixed;
z-index: 1;
background-color: white;
width: 100%;
border-bottom: 1px solid rgba(0,0,0,0.05);
}
.nav-bar-list {
height: 56px;
padding: 0;
margin: 0;
}
.nav-bar-link {
line-height: 56px;
display: inline-block;
margin: 0 16px;
float: right;
}
.nav-bar-link > a {
color: #212121;
font-size: 14px;
}
.nav-bar-link > a:hover,
.nav-bar-link > a:focus,
.nav-bar-link > a:active {
color: #FF5252;
text-decoration: none;
}
#nav-bar-link-name {
float: left;
margin: 0 16px 0 0 ;
}
.large-headings {
padding: 4px 0;
}
.medium-headings {
padding: 0 0 4px;
font-size: 20px;
}
.medium-text {
font-size: 18px;
opacity: 0.87;
line-height: 26px;
}
.container-fluid {
padding: 0;
}
.intro-wrapper {
padding: 6.5em 100px 2.5em;
}
.project-section-wrapper {
padding: 1em 100px;
}
i {
color: #FF8A80;
padding-right: 16px;
}
i:hover,
i:active,
i:focus {
color: #FF1744;
cursor: pointer;
outline: none;
}
i.non-link-icons {
padding: 0;
color: #9E9E9E;
}
i.non-link-icons:hover,
i.non-link-icons:active,
i.non-link-icons:focus {
color: #9E9E9E;
cursor: default;
}
/* lines up titles with rows*/
.row {
margin: 0;
}
.project {
height: 250px;
border-right: 8px solid white;
border-bottom: 8px solid white;
background-color: green;
padding: 0;
}
.project:hover {
box-shadow: inset 10000px 1000px 0 0 rgba(0,0,0,0.2);
}
.project-information {
width: 100%;
position: absolute;
bottom: 0px;
left: 0px;
padding: 0 16px;
background-color: rgba(0,0,0,0.56);
}
.project-title {
color: white;
margin: 16px 0 0;
font-size: 16px;
}
.project-description {
color: white;
font-size: 12px;
line-height: 20px;
margin: 8px 0 16px;
color: rgba(256,256,256,0.78);
}
/* --------------------------------------------- */
/* Project Pages */
/* Project Buttons */
.fa-long-arrow-left {
margin: 16px 0 0 56px;
}
.p-buttons-wrapper {
text-align: center;
}
.p-btn {
margin: 4px 4px 0;
padding: 4px 16px;
border-radius: 100px;
background-color: white;
border: 1px solid #FF5252;
color: #FF5252;
font-size: 14px;
font-family: 'Avenir', 'Hind', 'Helvetica', sans-serif;
}
.p-btn i {
color: #FF5252;
padding-right: 4px;
}
.p-btn:hover, .p-btn:focus, .p-btn:active {
background-color: #FF5252;
outline: none;
color: white;
}
.p-btn:hover i, .p-btn:active i, .p-btn:focus i {
color: white;
}
.p-btn:hover a, .p-btn:active a, .p-btn:focus a {
color: white;
}
.p-cover-image {
display: block;
width: 100%;
height: auto;
margin-bottom: 16px;
}
.p-name {
font-size: 28px;
text-align: center;
margin: 8px 0;
}
.p-heading {
font-size: 16px;
text-align: center;
line-height: 24px;
opacity: 0.87;
}
.p-section {
padding: 0;
}
.p-section-heading {
font-size: 20px;
padding: 24px 0 8px;
}
.p-section-text {
font-size: 16px;
line-height: 28px;
opacity: 0.87;
}
.p-section-img {
display: block;
width: 100%;
height: auto;
margin: 16px auto;
}
.footer-text {
text-align: center;
font-size: 14px;
color: rgba(0,0,0,0.56);
margin: 16px 0 36px;
}
#defender {
background: url("../img/defender-thumbnail.png") no-repeat center;
background-size: cover;
}
#remindr {
background: url("../img/remindr-thumbnail.png") no-repeat center;
background-size: cover;
}
#settlers {
background: url("../img/catan-thumbnail.png") no-repeat center;
background-size: cover;
}
#snag {
background: url("../img/snag-thumbnail.png") no-repeat center;
background-size: cover;
}
@media only screen and (max-width : 768px) {
.fa-long-arrow-left {
margin: 16px 0 0 24px;
}
.p-cover-image {
margin: 0 36px;
}
}
@media only screen and (max-width : 576px) {
.intro-wrapper {
padding: 6.5em 16px 2.5em; /* change for responsive */
}
.project-section-wrapper {
padding: 1em 16px; /* change for responsive */
}
.nav-bar-nav {
padding: 0 16px;
}
.nav-bar-link {
line-height: 56px;
display: inline-block;
margin: 0 8px;
float: none;
}
.fa-long-arrow-left {
margin: 16px 0 0 16px;
}
.p-cover-image {
margin: 0 16px;
}
.p-section-heading {
margin: 0 16px;
}
.p-section-text {
margin: 0 16px;
}
.footer-text {
margin: 8px 0 16px;
}
}
|
clean/Linux-x86_64-4.02.1-1.2.0/unstable/8.4.5/contrib:aac-tactics/8.4.dev/2014-11-20_05-37-33.html | coq-bench/coq-bench.github.io-old | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Coq bench</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../../..">Unstable</a></li>
<li><a href=".">8.4.5 / contrib:aac-tactics 8.4.dev</a></li>
<li class="active"><a href="">2014-11-20 05:37:33</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="../../../../../about.html">About</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href=".">« Up</a>
<h1>
contrib:aac-tactics
<small>
8.4.dev
<span class="label label-danger">Error</span>
</small>
</h1>
<p><em><script>document.write(moment("2014-11-20 05:37:33 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2014-11-20 05:37:33 UTC)</em><p>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>ruby lint.rb unstable ../unstable/packages/coq:contrib:aac-tactics/coq:contrib:aac-tactics.8.4.dev</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:contrib:aac-tactics.8.4.dev coq.8.4.5</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>1 s</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.4.5).
The following actions will be performed:
- install coq:contrib:aac-tactics.8.4.dev
=== 1 to install ===
=-=- Synchronizing package archives -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
=-=- Installing packages =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Building coq:contrib:aac-tactics.8.4.dev:
coq_makefile -f Make -o Makefile
make -j4
make install
Installing coq:contrib:aac-tactics.8.4.dev.
</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>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --deps-only coq:contrib:aac-tactics.8.4.dev</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>1 s</dd>
</dl>
<h2>Install</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --verbose coq:contrib:aac-tactics.8.4.dev</code></dd>
<dt>Return code</dt>
<dd>1024</dd>
<dt>Duration</dt>
<dd>2 s</dd>
<dt>Output</dt>
<dd><pre>The following actions will be performed:
- install coq:contrib:aac-tactics.8.4.dev
=== 1 to install ===
=-=- Synchronizing package archives -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
[coq:contrib:aac-tactics] Fetching git://clarus.io/aac-tactics#v8.4
Initialized empty Git repository in /home/bench/.opam/packages.dev/coq:contrib:aac-tactics.8.4.dev/.git/
[master (root-commit) 4b312ed] opam-git-init
warning: no common commits
From git://clarus.io/aac-tactics
* [new branch] v8.4 -> opam-ref
* [new branch] v8.4 -> origin/v8.4
AAC.v
CHANGELOG
COPYING
COPYING.LESSER
Caveats.v
Instances.v
LICENSE
Makefile
README.txt
Tutorial.v
aac.mlpack
coq.ml
coq.mli
description
files.txt
helper.ml
helper.mli
make_makefile
matcher.ml
matcher.mli
print.ml
print.mli
rewrite.ml4
rewrite.mli
search_monad.ml
search_monad.mli
theory.ml
theory.mli
HEAD is now at 570f1a5 Bug in aac_normalise, which uses constant names internally,
=-=- Installing packages =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Building coq:contrib:aac-tactics.8.4.dev:
coq_makefile -f Make -o Makefile
make -j4
make install
Uncaught exception: Sys_error("Make: No such file or directory")
[ERROR] The compilation of coq:contrib:aac-tactics.8.4.dev failed.
Removing coq:contrib:aac-tactics.8.4.dev.
rm -R /home/bench/.opam/system/lib/coq/user-contrib/aac-tactics
rm: cannot remove '/home/bench/.opam/system/lib/coq/user-contrib/aac-tactics': No such file or directory
#=== ERROR while installing coq:contrib:aac-tactics.8.4.dev ===================#
# opam-version 1.2.0
# os linux
# command coq_makefile -f Make -o Makefile
# path /home/bench/.opam/system/build/coq:contrib:aac-tactics.8.4.dev
# compiler system (4.02.1)
# exit-code 2
# env-file /home/bench/.opam/system/build/coq:contrib:aac-tactics.8.4.dev/coq:contrib:aac-tactics-19103-d2c37b.env
# stdout-file /home/bench/.opam/system/build/coq:contrib:aac-tactics.8.4.dev/coq:contrib:aac-tactics-19103-d2c37b.out
# stderr-file /home/bench/.opam/system/build/coq:contrib:aac-tactics.8.4.dev/coq:contrib:aac-tactics-19103-d2c37b.err
### stderr ###
# Uncaught exception: Sys_error("Make: No such file or directory")
'opam install -y --verbose coq:contrib:aac-tactics.8.4.dev' failed.
</pre></dd>
</dl>
<h2>Installation size</h2>
<p>Data not available in this bench.</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> |
ocr_extracted/W29266_text/page13.html | datamade/elpc_bakken |
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>W29266_text</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<div style="margin-left: auto; margin-right: auto; width: 800px; overflow: hidden;">
<div style="float: left;">
<a href="page12.html">«</a>
</div>
<div style="float: right;">
</div>
</div>
<hr/>
<div style="position: absolute; margin-left: 330px; margin-top: 137px;">
<p class="styleSans1.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>">PETROLzuM———_—- </p>
</div>
<div style="position: absolute; margin-left: 302px; margin-top: 495px;">
<p class="styleSans8.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>">8/13/2014 </p>
</div>
<div style="position: absolute; margin-left: 302px; margin-top: 660px;">
<p class="styleSans9.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>">Michael Kukuk Regulatory Supervisor Oasis Petroleum <br/>1001 Fannin St. <br/>Suite 1500 <br/>Houston, TX 77002 <br/>Todd Holweger <br/>Mineral Resources Permit Manager North Dakota Industrial Commission 600 East Boulevard Avenue Dept. 405 Bismarck, ND 58505-0840 </p>
</div>
<div style="position: absolute; margin-left: 302px; margin-top: 1430px;">
<p class="styleSans8.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>">RE: Harrier 5401 44-23 wells </p>
</div>
<div style="position: absolute; margin-left: 302px; margin-top: 1567px;">
<p class="styleSans10.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>">Dear Mr. Holweger: </p>
</div>
<div style="position: absolute; margin-left: 302px; margin-top: 1705px;">
<p class="styleSans10.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>">Per your request, the following letter provides additional detail regarding Oasis Petroleum’s plan for the Harrier well pad. </p>
</div>
<div style="position: absolute; margin-left: 302px; margin-top: 1870px;">
<p class="styleSans10.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>">Security/Safety: The location will be fenced and will have security during drilling and fracturing operations. There will be some type of fire suppression equipment on location, as well as remote shut down equipment. The emergency contact information has been provided via the SPCC plan and flood contingency plan. Keith Oyloe and Vern Barman will be available 24/7 for any other contingencies. Their contact information is 701-577-1613 and 701-577-1646, respectively. </p>
</div>
<div style="position: absolute; margin-left: 302px; margin-top: 2200px;">
<p class="styleSans12.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>">SWPPP: The location will be compliant with storm water pollution prevention plan requirements during all phases of construction, drilling, completions and production. The location will also be subject to a flood contingency plan similar to the one provided via email. <br/>Production Facilities: The production equipment will be located on the existing Kestrel pad, approximately one mile west of the Harrier wells. The production from the Harrier wells will not be commingled with the Kestrel pad. It will be contained in a CTB separate from the existing Kestrel production facilities. The separation will occur at the Kestrel pad. <br/>Gas Capture: A gas capture plan was provided on July 23”. The gas line will be tied in to the existing Kestrel line. If any flaring occurs during production it will be at the Kestrel location. </p>
</div>
<div style="position: absolute; margin-left: 467px; margin-top: 3052px;">
<p class="styleSans9.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>">1001 Fannin, Suite 1500 0 Houston, Texas 77002 0 Phone (281) 404-9500 - Fax: (281) 404-9501 </p>
</div>
</body>
</html>
|
v3/user-agent-detail/60/8c/608cd152-27b8-4d19-90f6-6b8b688b3911.html | ThaDafinser/UserAgentParserComparison |
<html>
<head>
<title>Mozilla/5.0 (Linux; Android 4.3; C6603 Build/10.4.B.0.569) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.99 Mobile Safari/537.36</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.3/css/materialize.min.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="section">
<h1 class="header center orange-text">User agent detail</h1>
<div class="row center">
Mozilla/5.0 (Linux; Android 4.3; C6603 Build/10.4.B.0.569) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.99 Mobile Safari/537.36
<p>
Detected by 8 of 8 providers<br />
As bot detected by 0 of 7
</p>
</div>
</div>
<div class="section">
<table class="striped"><tr><th></th><th colspan="3">General</th><th colspan="5">Device</th><th colspan="3">Bot</th><th></th></tr><tr><th>Provider</th><th>Browser</th><th>Engine</th><th>OS</th><th>Brand</th><th>Model</th><th>Type</th><th>Is mobile</th><th>Is touch</th><th>Is bot</th><th>Name</th><th>Type</th><th>Actions</th></tr><tr><td>BrowscapPhp<br /><small>6011</small></td><td>Chrome 32.0</td><td>Blink </td><td>Android 4.3</td><td>Sony</td><td>Xperia Z</td><td>Mobile Phone</td><td>yes</td><td>yes</td><td></td><td></td><td></td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-cbfe2df3-330b-4abd-b5df-0ca181549ca9">Detail</a>
<!-- Modal Structure -->
<div id="modal-cbfe2df3-330b-4abd-b5df-0ca181549ca9" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>BrowscapPhp result detail</h4>
<p><pre><code class="php">stdClass Object
(
[browser_name_regex] => /^mozilla\/5\.0 \(.*linux.*android.4\.3.*c6603 build\/.*\) applewebkit\/.* \(khtml, like gecko\) chrome\/32\..*safari\/.*$/
[browser_name_pattern] => mozilla/5.0 (*linux*android?4.3*c6603 build/*) applewebkit/* (khtml, like gecko) chrome/32.*safari/*
[parent] => Chrome 32.0 for Android
[comment] => Chrome 32.0
[browser] => Chrome
[browser_type] => Browser
[browser_bits] => 32
[browser_maker] => Google Inc
[browser_modus] => unknown
[version] => 32.0
[majorver] => 32
[minorver] => 0
[platform] => Android
[platform_version] => 4.3
[platform_description] => Android OS
[platform_bits] => 32
[platform_maker] => Google Inc
[alpha] =>
[beta] =>
[win16] =>
[win32] =>
[win64] =>
[frames] => 1
[iframes] => 1
[tables] => 1
[cookies] => 1
[backgroundsounds] =>
[javascript] => 1
[vbscript] =>
[javaapplets] =>
[activexcontrols] =>
[ismobiledevice] => 1
[istablet] =>
[issyndicationreader] =>
[crawler] =>
[cssversion] => 3
[aolversion] => 0
[device_name] => Xperia Z
[device_maker] => Sony
[device_type] => Mobile Phone
[device_pointing_method] => touchscreen
[device_code_name] => C6603
[device_brand_name] => Sony
[renderingengine_name] => Blink
[renderingengine_version] => unknown
[renderingengine_description] => a WebKit Fork by Google
[renderingengine_maker] => Google Inc
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>DonatjUAParser<br /><small>v0.5.0</small></td><td>Chrome 32.0.1700.99</td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-6fae891b-b0d5-4415-b07d-355015c3af67">Detail</a>
<!-- Modal Structure -->
<div id="modal-6fae891b-b0d5-4415-b07d-355015c3af67" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>DonatjUAParser result detail</h4>
<p><pre><code class="php">Array
(
[platform] => Android
[browser] => Chrome
[version] => 32.0.1700.99
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>PiwikDeviceDetector<br /><small>3.5.1</small></td><td>Chrome Mobile 32.0</td><td>Blink </td><td>Android 4.3</td><td>Sony</td><td>Xperia Z</td><td>smartphone</td><td>yes</td><td></td><td></td><td></td><td></td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-fc0f1b55-50d8-49c2-bb12-4cc1d8144ebf">Detail</a>
<!-- Modal Structure -->
<div id="modal-fc0f1b55-50d8-49c2-bb12-4cc1d8144ebf" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>PiwikDeviceDetector result detail</h4>
<p><pre><code class="php">Array
(
[client] => Array
(
[type] => browser
[name] => Chrome Mobile
[short_name] => CM
[version] => 32.0
[engine] => Blink
)
[operatingSystem] => Array
(
[name] => Android
[short_name] => AND
[version] => 4.3
[platform] =>
)
[device] => Array
(
[brand] => SO
[brandName] => Sony
[model] => Xperia Z
[device] => 1
[deviceName] => smartphone
)
[bot] =>
[extra] => Array
(
[isBot] =>
[isBrowser] => 1
[isFeedReader] =>
[isMobileApp] =>
[isPIM] =>
[isLibrary] =>
[isMediaPlayer] =>
[isCamera] =>
[isCarBrowser] =>
[isConsole] =>
[isFeaturePhone] =>
[isPhablet] =>
[isPortableMediaPlayer] =>
[isSmartDisplay] =>
[isSmartphone] => 1
[isTablet] =>
[isTV] =>
[isDesktop] =>
[isMobile] => 1
[isTouchEnabled] =>
)
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>SinergiBrowserDetector<br /><small>6.0.0</small></td><td>Chrome 32.0.1700.99</td><td><i class="material-icons">close</i></td><td>Android 4.3</td><td><i class="material-icons">close</i></td><td></td><td><i class="material-icons">close</i></td><td>yes</td><td><i class="material-icons">close</i></td><td></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-8c08f104-4e61-421b-9405-291b09c383dc">Detail</a>
<!-- Modal Structure -->
<div id="modal-8c08f104-4e61-421b-9405-291b09c383dc" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>SinergiBrowserDetector result detail</h4>
<p><pre><code class="php">Array
(
[browser] => Sinergi\BrowserDetector\Browser Object
(
[userAgent:Sinergi\BrowserDetector\Browser:private] => Sinergi\BrowserDetector\UserAgent Object
(
[userAgentString:Sinergi\BrowserDetector\UserAgent:private] => Mozilla/5.0 (Linux; Android 4.3; C6603 Build/10.4.B.0.569) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.99 Mobile Safari/537.36
)
[name:Sinergi\BrowserDetector\Browser:private] => Chrome
[version:Sinergi\BrowserDetector\Browser:private] => 32.0.1700.99
[isRobot:Sinergi\BrowserDetector\Browser:private] =>
[isChromeFrame:Sinergi\BrowserDetector\Browser:private] =>
)
[operatingSystem] => Sinergi\BrowserDetector\Os Object
(
[name:Sinergi\BrowserDetector\Os:private] => Android
[version:Sinergi\BrowserDetector\Os:private] => 4.3
[isMobile:Sinergi\BrowserDetector\Os:private] => 1
[userAgent:Sinergi\BrowserDetector\Os:private] => Sinergi\BrowserDetector\UserAgent Object
(
[userAgentString:Sinergi\BrowserDetector\UserAgent:private] => Mozilla/5.0 (Linux; Android 4.3; C6603 Build/10.4.B.0.569) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.99 Mobile Safari/537.36
)
)
[device] => Sinergi\BrowserDetector\Device Object
(
[name:Sinergi\BrowserDetector\Device:private] => unknown
[userAgent:Sinergi\BrowserDetector\Device:private] => Sinergi\BrowserDetector\UserAgent Object
(
[userAgentString:Sinergi\BrowserDetector\UserAgent:private] => Mozilla/5.0 (Linux; Android 4.3; C6603 Build/10.4.B.0.569) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.99 Mobile Safari/537.36
)
)
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>UAParser<br /><small>v3.4.5</small></td><td>Chrome Mobile 32.0.1700</td><td><i class="material-icons">close</i></td><td>Android 4.3</td><td>Sony</td><td>C6603</td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td></td><td></td><td><i class="material-icons">close</i></td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-8f4c86c5-433e-4536-b799-ad26d77264e0">Detail</a>
<!-- Modal Structure -->
<div id="modal-8f4c86c5-433e-4536-b799-ad26d77264e0" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>UAParser result detail</h4>
<p><pre><code class="php">UAParser\Result\Client Object
(
[ua] => UAParser\Result\UserAgent Object
(
[major] => 32
[minor] => 0
[patch] => 1700
[family] => Chrome Mobile
)
[os] => UAParser\Result\OperatingSystem Object
(
[major] => 4
[minor] => 3
[patch] =>
[patchMinor] =>
[family] => Android
)
[device] => UAParser\Result\Device Object
(
[brand] => Sony
[model] => C6603
[family] => C6603
)
[originalUserAgent] => Mozilla/5.0 (Linux; Android 4.3; C6603 Build/10.4.B.0.569) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.99 Mobile Safari/537.36
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>WhichBrowser<br /><small>2.0.9</small></td><td>Chrome 32</td><td>Blink 537.36</td><td>Android 4.3</td><td>Sony</td><td>Xperia Z</td><td>mobile:smart</td><td>yes</td><td><i class="material-icons">close</i></td><td></td><td></td><td><i class="material-icons">close</i></td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-62f1f3a3-0c44-4ecb-9ee2-48145e35736b">Detail</a>
<!-- Modal Structure -->
<div id="modal-62f1f3a3-0c44-4ecb-9ee2-48145e35736b" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>WhichBrowser result detail</h4>
<p><pre><code class="php">Array
(
[browser] => Array
(
[name] => Chrome
[version] => 32
[type] => browser
)
[engine] => Array
(
[name] => Blink
[version] => 537.36
)
[os] => Array
(
[name] => Android
[version] => 4.3
)
[device] => Array
(
[type] => mobile
[subtype] => smart
[manufacturer] => Sony
[model] => Xperia Z
)
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>Woothee<br /><small>v1.2.0</small></td><td>Chrome 32.0.1700.99</td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>smartphone</td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td></td><td></td><td><i class="material-icons">close</i></td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-bd437f52-91e9-4ce8-88f7-6e5206ed6635">Detail</a>
<!-- Modal Structure -->
<div id="modal-bd437f52-91e9-4ce8-88f7-6e5206ed6635" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>Woothee result detail</h4>
<p><pre><code class="php">Array
(
[name] => Chrome
[vendor] => Google
[version] => 32.0.1700.99
[category] => smartphone
[os] => Android
[os_version] => 4.3
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>Wurfl<br /><small>1.6.4</small></td><td>Chrome Mobile 32</td><td><i class="material-icons">close</i></td><td>Android 4.3</td><td>SonyEricsson</td><td>C6603</td><td>Smartphone</td><td>yes</td><td>yes</td><td></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-3a72b31e-c3c1-4317-a357-7a6d5e3c7027">Detail</a>
<!-- Modal Structure -->
<div id="modal-3a72b31e-c3c1-4317-a357-7a6d5e3c7027" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>Wurfl result detail</h4>
<p><pre><code class="php">Array
(
[virtual] => Array
(
[is_android] => true
[is_ios] => false
[is_windows_phone] => false
[is_app] => false
[is_full_desktop] => false
[is_largescreen] => true
[is_mobile] => true
[is_robot] => false
[is_smartphone] => true
[is_touchscreen] => true
[is_wml_preferred] => false
[is_xhtmlmp_preferred] => false
[is_html_preferred] => true
[advertised_device_os] => Android
[advertised_device_os_version] => 4.3
[advertised_browser] => Chrome Mobile
[advertised_browser_version] => 32
[complete_device_name] => SonyEricsson C6603 (Xperia Z)
[form_factor] => Smartphone
[is_phone] => true
[is_app_webview] => false
)
[all] => Array
(
[brand_name] => SonyEricsson
[model_name] => C6603
[unique] => true
[ununiqueness_handler] =>
[is_wireless_device] => true
[device_claims_web_support] => true
[has_qwerty_keyboard] => true
[can_skip_aligned_link_row] => true
[uaprof] => http://uaprof.sonymobile.com/C6603R1002.xml
[uaprof2] => http://wap.sonymobile.com/UAprof/C6603R401.xml
[uaprof3] =>
[nokia_series] => 0
[nokia_edition] => 0
[device_os] => Android
[mobile_browser] => Chrome Mobile
[mobile_browser_version] => 35
[device_os_version] => 4.3
[pointing_method] => touchscreen
[release_date] => 2012_october
[marketing_name] => Xperia Z
[model_extra_info] =>
[nokia_feature_pack] => 0
[can_assign_phone_number] => true
[is_tablet] => false
[manufacturer_name] =>
[is_bot] => false
[is_google_glass] => false
[proportional_font] => false
[built_in_back_button_support] => false
[card_title_support] => true
[softkey_support] => false
[table_support] => true
[numbered_menus] => false
[menu_with_select_element_recommended] => false
[menu_with_list_of_links_recommended] => true
[icons_on_menu_items_support] => false
[break_list_of_links_with_br_element_recommended] => true
[access_key_support] => false
[wrap_mode_support] => false
[times_square_mode_support] => false
[deck_prefetch_support] => false
[elective_forms_recommended] => true
[wizards_recommended] => false
[image_as_link_support] => false
[insert_br_element_after_widget_recommended] => false
[wml_can_display_images_and_text_on_same_line] => false
[wml_displays_image_in_center] => false
[opwv_wml_extensions_support] => false
[wml_make_phone_call_string] => wtai://wp/mc;
[chtml_display_accesskey] => false
[emoji] => false
[chtml_can_display_images_and_text_on_same_line] => false
[chtml_displays_image_in_center] => false
[imode_region] => none
[chtml_make_phone_call_string] => tel:
[chtml_table_support] => false
[xhtml_honors_bgcolor] => true
[xhtml_supports_forms_in_table] => true
[xhtml_support_wml2_namespace] => false
[xhtml_autoexpand_select] => false
[xhtml_select_as_dropdown] => false
[xhtml_select_as_radiobutton] => false
[xhtml_select_as_popup] => false
[xhtml_display_accesskey] => false
[xhtml_supports_invisible_text] => false
[xhtml_supports_inline_input] => false
[xhtml_supports_monospace_font] => false
[xhtml_supports_table_for_layout] => true
[xhtml_supports_css_cell_table_coloring] => true
[xhtml_format_as_css_property] => false
[xhtml_format_as_attribute] => false
[xhtml_nowrap_mode] => false
[xhtml_marquee_as_css_property] => false
[xhtml_readable_background_color1] => #FFFFFF
[xhtml_readable_background_color2] => #FFFFFF
[xhtml_allows_disabled_form_elements] => true
[xhtml_document_title_support] => true
[xhtml_preferred_charset] => iso-8859-1
[opwv_xhtml_extensions_support] => false
[xhtml_make_phone_call_string] => tel:
[xhtmlmp_preferred_mime_type] => text/html
[xhtml_table_support] => true
[xhtml_send_sms_string] => sms:
[xhtml_send_mms_string] => mms:
[xhtml_file_upload] => supported
[cookie_support] => true
[accept_third_party_cookie] => true
[xhtml_supports_iframe] => full
[xhtml_avoid_accesskeys] => true
[xhtml_can_embed_video] => none
[ajax_support_javascript] => true
[ajax_manipulate_css] => true
[ajax_support_getelementbyid] => true
[ajax_support_inner_html] => true
[ajax_xhr_type] => standard
[ajax_manipulate_dom] => true
[ajax_support_events] => true
[ajax_support_event_listener] => true
[ajax_preferred_geoloc_api] => w3c_api
[xhtml_support_level] => 4
[preferred_markup] => html_web_4_0
[wml_1_1] => false
[wml_1_2] => false
[wml_1_3] => false
[html_wi_w3_xhtmlbasic] => true
[html_wi_oma_xhtmlmp_1_0] => true
[html_wi_imode_html_1] => false
[html_wi_imode_html_2] => false
[html_wi_imode_html_3] => false
[html_wi_imode_html_4] => false
[html_wi_imode_html_5] => false
[html_wi_imode_htmlx_1] => false
[html_wi_imode_htmlx_1_1] => false
[html_wi_imode_compact_generic] => false
[html_web_3_2] => true
[html_web_4_0] => true
[voicexml] => false
[multipart_support] => false
[total_cache_disable_support] => false
[time_to_live_support] => false
[resolution_width] => 1080
[resolution_height] => 1920
[columns] => 60
[max_image_width] => 360
[max_image_height] => 480
[rows] => 40
[physical_screen_width] => 63
[physical_screen_height] => 111
[dual_orientation] => true
[density_class] => 3.0
[wbmp] => true
[bmp] => false
[epoc_bmp] => false
[gif_animated] => false
[jpg] => true
[png] => true
[tiff] => false
[transparent_png_alpha] => true
[transparent_png_index] => true
[svgt_1_1] => true
[svgt_1_1_plus] => false
[greyscale] => false
[gif] => true
[colors] => 65536
[webp_lossy_support] => true
[webp_lossless_support] => true
[post_method_support] => true
[basic_authentication_support] => true
[empty_option_value_support] => true
[emptyok] => false
[nokia_voice_call] => false
[wta_voice_call] => false
[wta_phonebook] => false
[wta_misc] => false
[wta_pdc] => false
[https_support] => true
[phone_id_provided] => false
[max_data_rate] => 42000
[wifi] => true
[sdio] => false
[vpn] => false
[has_cellular_radio] => true
[max_deck_size] => 2000000
[max_url_length_in_requests] => 256
[max_url_length_homepage] => 0
[max_url_length_bookmark] => 0
[max_url_length_cached_page] => 0
[max_no_of_connection_settings] => 0
[max_no_of_bookmarks] => 0
[max_length_of_username] => 0
[max_length_of_password] => 0
[max_object_size] => 0
[downloadfun_support] => false
[directdownload_support] => true
[inline_support] => false
[oma_support] => true
[ringtone] => false
[ringtone_3gpp] => false
[ringtone_midi_monophonic] => false
[ringtone_midi_polyphonic] => false
[ringtone_imelody] => false
[ringtone_digiplug] => false
[ringtone_compactmidi] => false
[ringtone_mmf] => false
[ringtone_rmf] => false
[ringtone_xmf] => false
[ringtone_amr] => false
[ringtone_awb] => false
[ringtone_aac] => false
[ringtone_wav] => false
[ringtone_mp3] => false
[ringtone_spmidi] => false
[ringtone_qcelp] => false
[ringtone_voices] => 1
[ringtone_df_size_limit] => 0
[ringtone_directdownload_size_limit] => 0
[ringtone_inline_size_limit] => 0
[ringtone_oma_size_limit] => 0
[wallpaper] => false
[wallpaper_max_width] => 0
[wallpaper_max_height] => 0
[wallpaper_preferred_width] => 0
[wallpaper_preferred_height] => 0
[wallpaper_resize] => none
[wallpaper_wbmp] => false
[wallpaper_bmp] => false
[wallpaper_gif] => false
[wallpaper_jpg] => false
[wallpaper_png] => false
[wallpaper_tiff] => false
[wallpaper_greyscale] => false
[wallpaper_colors] => 2
[wallpaper_df_size_limit] => 0
[wallpaper_directdownload_size_limit] => 0
[wallpaper_inline_size_limit] => 0
[wallpaper_oma_size_limit] => 0
[screensaver] => false
[screensaver_max_width] => 0
[screensaver_max_height] => 0
[screensaver_preferred_width] => 0
[screensaver_preferred_height] => 0
[screensaver_resize] => none
[screensaver_wbmp] => false
[screensaver_bmp] => false
[screensaver_gif] => false
[screensaver_jpg] => false
[screensaver_png] => false
[screensaver_greyscale] => false
[screensaver_colors] => 2
[screensaver_df_size_limit] => 0
[screensaver_directdownload_size_limit] => 0
[screensaver_inline_size_limit] => 0
[screensaver_oma_size_limit] => 0
[picture] => false
[picture_max_width] => 0
[picture_max_height] => 0
[picture_preferred_width] => 0
[picture_preferred_height] => 0
[picture_resize] => none
[picture_wbmp] => false
[picture_bmp] => false
[picture_gif] => false
[picture_jpg] => false
[picture_png] => false
[picture_greyscale] => false
[picture_colors] => 2
[picture_df_size_limit] => 0
[picture_directdownload_size_limit] => 0
[picture_inline_size_limit] => 0
[picture_oma_size_limit] => 0
[video] => false
[oma_v_1_0_forwardlock] => false
[oma_v_1_0_combined_delivery] => false
[oma_v_1_0_separate_delivery] => false
[streaming_video] => true
[streaming_3gpp] => true
[streaming_mp4] => true
[streaming_mov] => false
[streaming_video_size_limit] => 0
[streaming_real_media] => none
[streaming_flv] => false
[streaming_3g2] => false
[streaming_vcodec_h263_0] => 10
[streaming_vcodec_h263_3] => -1
[streaming_vcodec_mpeg4_sp] => 2
[streaming_vcodec_mpeg4_asp] => -1
[streaming_vcodec_h264_bp] => 3.0
[streaming_acodec_amr] => nb
[streaming_acodec_aac] => lc
[streaming_wmv] => none
[streaming_preferred_protocol] => rtsp
[streaming_preferred_http_protocol] => apple_live_streaming
[wap_push_support] => false
[connectionless_service_indication] => false
[connectionless_service_load] => false
[connectionless_cache_operation] => false
[connectionoriented_unconfirmed_service_indication] => false
[connectionoriented_unconfirmed_service_load] => false
[connectionoriented_unconfirmed_cache_operation] => false
[connectionoriented_confirmed_service_indication] => false
[connectionoriented_confirmed_service_load] => false
[connectionoriented_confirmed_cache_operation] => false
[utf8_support] => true
[ascii_support] => false
[iso8859_support] => false
[expiration_date] => false
[j2me_cldc_1_0] => false
[j2me_cldc_1_1] => false
[j2me_midp_1_0] => false
[j2me_midp_2_0] => false
[doja_1_0] => false
[doja_1_5] => false
[doja_2_0] => false
[doja_2_1] => false
[doja_2_2] => false
[doja_3_0] => false
[doja_3_5] => false
[doja_4_0] => false
[j2me_jtwi] => false
[j2me_mmapi_1_0] => false
[j2me_mmapi_1_1] => false
[j2me_wmapi_1_0] => false
[j2me_wmapi_1_1] => false
[j2me_wmapi_2_0] => false
[j2me_btapi] => false
[j2me_3dapi] => false
[j2me_locapi] => false
[j2me_nokia_ui] => false
[j2me_motorola_lwt] => false
[j2me_siemens_color_game] => false
[j2me_siemens_extension] => false
[j2me_heap_size] => 0
[j2me_max_jar_size] => 0
[j2me_storage_size] => 0
[j2me_max_record_store_size] => 0
[j2me_screen_width] => 0
[j2me_screen_height] => 0
[j2me_canvas_width] => 0
[j2me_canvas_height] => 0
[j2me_bits_per_pixel] => 0
[j2me_audio_capture_enabled] => false
[j2me_video_capture_enabled] => false
[j2me_photo_capture_enabled] => false
[j2me_capture_image_formats] => none
[j2me_http] => false
[j2me_https] => false
[j2me_socket] => false
[j2me_udp] => false
[j2me_serial] => false
[j2me_gif] => false
[j2me_gif89a] => false
[j2me_jpg] => false
[j2me_png] => false
[j2me_bmp] => false
[j2me_bmp3] => false
[j2me_wbmp] => false
[j2me_midi] => false
[j2me_wav] => false
[j2me_amr] => false
[j2me_mp3] => false
[j2me_mp4] => false
[j2me_imelody] => false
[j2me_rmf] => false
[j2me_au] => false
[j2me_aac] => false
[j2me_realaudio] => false
[j2me_xmf] => false
[j2me_wma] => false
[j2me_3gpp] => false
[j2me_h263] => false
[j2me_svgt] => false
[j2me_mpeg4] => false
[j2me_realvideo] => false
[j2me_real8] => false
[j2me_realmedia] => false
[j2me_left_softkey_code] => 0
[j2me_right_softkey_code] => 0
[j2me_middle_softkey_code] => 0
[j2me_select_key_code] => 0
[j2me_return_key_code] => 0
[j2me_clear_key_code] => 0
[j2me_datefield_no_accepts_null_date] => false
[j2me_datefield_broken] => false
[receiver] => false
[sender] => false
[mms_max_size] => 0
[mms_max_height] => 0
[mms_max_width] => 0
[built_in_recorder] => false
[built_in_camera] => true
[mms_jpeg_baseline] => false
[mms_jpeg_progressive] => false
[mms_gif_static] => false
[mms_gif_animated] => false
[mms_png] => false
[mms_bmp] => false
[mms_wbmp] => false
[mms_amr] => false
[mms_wav] => false
[mms_midi_monophonic] => false
[mms_midi_polyphonic] => false
[mms_midi_polyphonic_voices] => 0
[mms_spmidi] => false
[mms_mmf] => false
[mms_mp3] => false
[mms_evrc] => false
[mms_qcelp] => false
[mms_ota_bitmap] => false
[mms_nokia_wallpaper] => false
[mms_nokia_operatorlogo] => false
[mms_nokia_3dscreensaver] => false
[mms_nokia_ringingtone] => false
[mms_rmf] => false
[mms_xmf] => false
[mms_symbian_install] => false
[mms_jar] => false
[mms_jad] => false
[mms_vcard] => false
[mms_vcalendar] => false
[mms_wml] => false
[mms_wbxml] => false
[mms_wmlc] => false
[mms_video] => false
[mms_mp4] => false
[mms_3gpp] => false
[mms_3gpp2] => false
[mms_max_frame_rate] => 0
[nokiaring] => false
[picturemessage] => false
[operatorlogo] => false
[largeoperatorlogo] => false
[callericon] => false
[nokiavcard] => false
[nokiavcal] => false
[sckl_ringtone] => false
[sckl_operatorlogo] => false
[sckl_groupgraphic] => false
[sckl_vcard] => false
[sckl_vcalendar] => false
[text_imelody] => false
[ems] => false
[ems_variablesizedpictures] => false
[ems_imelody] => false
[ems_odi] => false
[ems_upi] => false
[ems_version] => 0
[siemens_ota] => false
[siemens_logo_width] => 101
[siemens_logo_height] => 29
[siemens_screensaver_width] => 101
[siemens_screensaver_height] => 50
[gprtf] => false
[sagem_v1] => false
[sagem_v2] => false
[panasonic] => false
[sms_enabled] => true
[wav] => false
[mmf] => false
[smf] => false
[mld] => false
[midi_monophonic] => false
[midi_polyphonic] => false
[sp_midi] => false
[rmf] => false
[xmf] => false
[compactmidi] => false
[digiplug] => false
[nokia_ringtone] => false
[imelody] => false
[au] => false
[amr] => false
[awb] => false
[aac] => true
[mp3] => true
[voices] => 1
[qcelp] => false
[evrc] => false
[flash_lite_version] =>
[fl_wallpaper] => false
[fl_screensaver] => false
[fl_standalone] => false
[fl_browser] => false
[fl_sub_lcd] => false
[full_flash_support] => false
[css_supports_width_as_percentage] => true
[css_border_image] => webkit
[css_rounded_corners] => webkit
[css_gradient] => none
[css_spriting] => true
[css_gradient_linear] => none
[is_transcoder] => false
[transcoder_ua_header] => user-agent
[rss_support] => false
[pdf_support] => true
[progressive_download] => true
[playback_vcodec_h263_0] => 10
[playback_vcodec_h263_3] => -1
[playback_vcodec_mpeg4_sp] => 0
[playback_vcodec_mpeg4_asp] => -1
[playback_vcodec_h264_bp] => 3.0
[playback_real_media] => none
[playback_3gpp] => true
[playback_3g2] => false
[playback_mp4] => true
[playback_mov] => false
[playback_acodec_amr] => nb
[playback_acodec_aac] => none
[playback_df_size_limit] => 0
[playback_directdownload_size_limit] => 0
[playback_inline_size_limit] => 0
[playback_oma_size_limit] => 0
[playback_acodec_qcelp] => false
[playback_wmv] => none
[hinted_progressive_download] => true
[html_preferred_dtd] => html4
[viewport_supported] => true
[viewport_width] => device_width_token
[viewport_userscalable] => no
[viewport_initial_scale] =>
[viewport_maximum_scale] =>
[viewport_minimum_scale] =>
[mobileoptimized] => false
[handheldfriendly] => false
[canvas_support] => full
[image_inlining] => true
[is_smarttv] => false
[is_console] => false
[nfc_support] => true
[ux_full_desktop] => false
[jqm_grade] => A
[is_sencha_touch_ok] => false
[controlcap_is_smartphone] => default
[controlcap_is_ios] => default
[controlcap_is_android] => default
[controlcap_is_robot] => default
[controlcap_is_app] => default
[controlcap_advertised_device_os] => default
[controlcap_advertised_device_os_version] => default
[controlcap_advertised_browser] => default
[controlcap_advertised_browser_version] => default
[controlcap_is_windows_phone] => default
[controlcap_is_full_desktop] => default
[controlcap_is_largescreen] => default
[controlcap_is_mobile] => default
[controlcap_is_touchscreen] => default
[controlcap_is_wml_preferred] => default
[controlcap_is_xhtmlmp_preferred] => default
[controlcap_is_html_preferred] => default
[controlcap_form_factor] => default
[controlcap_complete_device_name] => default
)
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr></table>
</div>
<div class="section">
<h1 class="header center orange-text">About this comparison</h1>
<div class="row center">
<h5 class="header light">
The primary goal of this project is simple<br />
I wanted to know which user agent parser is the most accurate in each part - device detection, bot detection and so on...<br />
<br />
The secondary goal is to provide a source for all user agent parsers to improve their detection based on this results.<br />
<br />
You can also improve this further, by suggesting ideas at <a href="https://github.com/ThaDafinser/UserAgentParserComparison">ThaDafinser/UserAgentParserComparison</a><br />
<br />
The comparison is based on the abstraction by <a href="https://github.com/ThaDafinser/UserAgentParser">ThaDafinser/UserAgentParser</a>
</h5>
</div>
</div>
<div class="card">
<div class="card-content">
Comparison created <i>2016-01-26 16:41:31</i> | by
<a href="https://github.com/ThaDafinser">ThaDafinser</a>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.3/js/materialize.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/list.js/1.1.1/list.min.js"></script>
<script>
$(document).ready(function(){
// the "href" attribute of .modal-trigger must specify the modal ID that wants to be triggered
$('.modal-trigger').leanModal();
});
</script>
</body>
</html> |
src/PFC/WebBundle/Resources/public/style/style.css | arjona00/learning-objects-evaluation-platform | body{
font-family: "PT Sans", Arial, Helvetica, sans-serif;
/*background:#fff url('../img/body-back.png') repeat;*/
font-size:13px;
line-height:25px;
text-shadow:none !important;
color:#444;
}
h1,h2,h3,h4,h5,h6{
font-family: "Oswald", sans-serif;
font-weight:normal;
color:#666;
margin:3px 0px;
padding:3px 0px;
}
hr{
margin:3px 0px 15px 0px;
padding:0px;
border-top:0px;
border-bottom:1px solid #eee;
height:0px;
}
.bor{
height:20px;
margin:20px 0px 15px 0px;
background:url('../img/dot.png') repeat-x;
}
.center{
text-align:center;
}
a:hover,a:active,a:focus {
outline: 0;
}
:focus {outline:none;}
::-moz-focus-inner {border:0;}
.form{
margin:10px 30px;
}
form input{
font-size:12px !important;
}
.form-horizontal input[type="text"],.form-horizontal input[type="password"], .form-horizontal textarea{
width:90%;
}
.form-horizontal button{
font-size:12px;
}
.form-horizontal .control-label {
width: 80px;
}
.form-horizontal .controls {
margin-left: 100px;
}
.form-horizontal .controls:first-child {
*padding-left: 100px;
}
.form-horizontal .form-actions {
padding-left: 100px;
}
.form-actions {
padding: 5px 20px 5px;
background:transparent;
border-top:0px;
}
.form-actions .btn {
background: #e6e6e6
}
.well{
padding:5px 10px;
background:#eee url('../img/header-back.png') repeat;
}
/* Image alignment for WP */
.alignleft, img.alignleft {
margin-right: 8px;
margin-top:5px;
display: inline;
float: left;
}
.alignright, img.alignright {
margin-left: 8px;
margin-top:5px;
display: inline;
float: right;
}
.aligncenter, img.aligncenter {
margin-right: auto;
margin-left: auto;
display: block;
clear: both;
}
/* Button */
a.btn, a.btn:visited, a.btn:hover{
color:#333 !important;
}
a.btn-primary,a.btn-primary:visited,a.btn-primary:hover,
a.btn-warning,a.btn-warning:visited,a.btn-warning:hover,
a.btn-danger,a.btn-danger:visited,a.btn-danger:hover,
a.btn-success,a.btn-success:visited,a.btn-success:hover,
a.btn-info,a.btn-info:visited,a.btn-info:hover,
a.btn-inverse,a.btn-inverse:visited,a.btn-inverse:hover{
color:#fff !important;
}
.btn-success,.btn-success:hover,.btn-success:hover, .btn-success:focus, .btn-success:active, .btn-success.active, .open .dropdown-toggle.btn-success{
background-color: #29a1c4;
border-color: #29a1c4;
}
.progress-bar-success {
background-color: #29a1c4;
}
.progress-bar {
background-color: #29a1c4;
}
/* Header */
.slogan{
/*left: 250px;*/
margin-top: 10px;
margin-right: 180px;
text-align: center;
float: right;
}
.slogan span{
font-family: Oswald;
color: #31b2d7;
font-size: 35px;
line-height: 30px;
text-shadow:2px 2px 5px #000000;
}
header{
padding:25px 0px 0px 0px;
border-bottom:1px solid #ddd;
background:url('../img/header-back.png') repeat;
}
header h1 a, header h1 a:visited, header h1 a:hover{
color:#777;
text-decoration:none;
font-size:45px;
line-height:55px;
}
header span{
font-family:Georgia, "Times New Roman", serif;
}
header .list{
position:relative;
top:-25px;
width:230px;
background:#fff;
padding:7px 10px;
border:1px solid #ddd;
box-shadow:0px 1px 2px #ddd;
border-top:none;
border-bottom-left-radius:10px;
border-bottom-right-radius:10px;
font-size:12px;
line-height:20px;
color:#777;
}
header .list hr{
margin:2px 0px 6px 0px;
}
.da-slide-current{
z-index: 0 !important;
}
/* Navigation */
.navbar{
font-family:Tahoma, Verdana, Arial, Helvetica, sans-serif;
position: relative;
z-index: 999;
left: 0px;
right: 0px;
top: 0px;
margin-bottom: 0px;
}
.navbar-inner > .container{
width:940px;
}
.navbar-inner{
border-radius:0px;
background-image: none;
background-repeat: no-repeat;
filter: none !important;
border-left:0px !important;
border-right:0px !important;
}
.navbar .btn{
font-size:13px;
padding:4px 10px;
color:#fff !important;
text-shadow:none !important;
}
.navbar .btn-navbar{
float: left;
}
.navbar .btn:hover{
color: #fff !important;
}
.navbar .caret{
border-top-color:#fff !important;
border-bottom-color:#fff !important;
}
.navbar .brand{
color:#fff !important;
text-shadow:none !important;
}
.navbar .nav > li > a{
text-shadow:none !important;
padding:12px 15px 12px;
color:#fff !important;
-webkit-transition:background 1s ease;
-moz-transition:background 1s ease;
-o-transition:background 1s ease;
transition:background 1s ease;
font-size:13px !important;
}
.navbar .nav > li > a:hover{
color:#fff !important;
-webkit-transition:background 1s ease;
-moz-transition:background 1s ease;
-o-transition:background 1s ease;
transition:background 1s ease;
}
.navbar .nav .active > a,
.navbar .nav .active > a:hover,
.navbar .nav .active > a:focus {
color: #ffffff;
box-shadow:none;
}
.nav-collapse a{
font-weight:normal !important;
text-shadow:none !important;
}
.dropdown-menu{
border-radius:0px !important;
box-shadow:none !important;
border-bottom:none !important;
padding:0px 0px;
margin:0px;
text-shadow:none !important;
z-index: 2000;
}
.dropdown-menu a{
padding:8px 10px !important;
color:#fff !important;
-webkit-transition:background 1s ease;
-moz-transition:background 1s ease;
-o-transition:background 1s ease;
transition:background 1s ease;
font-size:13px !important;
text-shadow:none !important;
}
.dropdown-menu a:hover,.dropdown-menu a:focus{
filter:none !important;
-webkit-transition:background 1s ease;
-moz-transition:background 1s ease;
-o-transition:background 1s ease;
transition:background 1s ease;
}
.dropdown-menu::after, .dropdown-menu::before{
border:none !important;
}
/* Social */
.social{
font-size:16px;
margin-bottom:10px;
}
.social a, .social a:visited, .social a:hover{
color:#fff;
text-decoration:none;
}
.social i{
height:30px;
width:30px;
text-align:center;
line-height:30px;
-webkit-transition:background 1s ease;
-moz-transition:background 1s ease;
-o-transition:background 1s ease;
transition:background 1s ease;
border-radius:30px;
}
.social i:hover{
-webkit-transition:background 1s ease;
-moz-transition:background 1s ease;
-o-transition:background 1s ease;
transition:background 1s ease;
}
/* Content */
.container{
padding-left: 25px;
padding-right: 20px;
}
.content ul{
list-style-type: none !important;
padding: 0px;
margin: 0px;
}
.content ul li{
background-repeat: no-repeat;
background-position: 2px 7px;
background-size:13px 13px;
padding:4px 0px;
padding-left: 21px;
}
.flexslider ul li{
background-image:none;
padding:0px;
}
.flexslider{
margin-top:10px;
margin-bottom:15px;
border:1px solid #bbb;
padding:1px;
border-radius:0px;
box-shadow:none;
}
.flexslider .flex-control-nav{
bottom:0px;
}
.flex-control-paging li a{
background:#fff;
box-shadow:0px 0px 3px #555;
}
.flex-control-paging li a:hover{
background:#ccc;
}
.flex-control-paging li a.flex-active{
background:#ccc;
}
.flexslider .slides > li {
position:relative;
}
.flex-caption{
width: 40%;
padding: 10px;
margin: 0 0 40px 40px;
background-color: #222;
background: rgba(0, 0, 0, 0.8);
position: absolute;
display: block;
left: 0;
bottom: 0;
}
.flex-caption h3 {
color: #fff;
font-size: 16px;
padding-bottom: 5px;
margin:0;
margin-bottom:3px;
line-height: 22px;
}
.flex-caption h3 span{
padding-bottom:3px;
border-bottom:1px solid #444;
}
.flex-caption p {
margin:0;
line-height: 19px;
color: #ddd;
}
/* Home page main */
.main-content .main-meta{
font-size:20px;
color:#888;
}
.main-box{
padding:8px 10px;
background: #f9f9f9;
border: 1px solid #eee;
border-bottom: 3px solid #eee;
border-radius: 10px;
}
.main-box h4{
border-bottom: 1px solid #eee;
padding-bottom: 8px;
}
.main-box p{
margin-bottom:0px;
}
/* Homepage Service */
.services{
margin:20px 0px;
}
.service{
background:#fff;
padding:3px 10px;
border:1px solid #e7e7e7;
margin-bottom:10px;
border-radius:5px;
border-bottom:3px solid #eee;
}
.service h5{
padding:3px 0px 8px 0px;
margin:3px 0px 4px 0px;
border-bottom:1px solid #f1f1f1;
}
.service i{
font-size:20px;
margin-top:3px;
margin-right:8px;
}
/* CTA */
.cta{
background:#f9f9f9;
box-shadow: 0px 0px 1px #ccc;
padding:10px 20px;
border:1px solid #e8e8e8;
border-radius:5px;
margin:40px 70px;
}
.cta p{
padding:3px 0px;
margin:0px;
}
.cta .cbig{
font-size:23px;
color:#555;
}
.cta .csmall{
font-size:15px;
color:#444;
}
.cta a, .cta a:visited{
line-height:30px !important;
font-size:14px !important;
}
/* Recent Posts */
.rposts{
margin:20px 0px;
}
.rposts h4{
padding-bottom:8px;
margin-bottom:8px;
border-bottom:1px solid #eee;
}
.rpost1{
width:48%;
float:left;
border-bottom:2px solid #eee;
margin-bottom:10px;
margin-top:5px;
}
.rpost2{
width:48%;
float:left;
margin-left:15px;
border-bottom:2px solid #eee;
margin-bottom:10px;
margin-top:5px;
}
.rpost1:hover,.rpost2:hover{
-webkit-transition:border-bottom 1s ease;
-moz-transition:border-bottom 1s ease;
-o-transition:border-bottom 1s ease;
transition:border-bottom 1s ease;
}
.rposts h5{
margin:3px 0px;
padding:3px 0px;
}
.rposts .rdetails{
line-height:22px;
padding:5px;
background:#fafafa;
text-align:center;
}
.rposts .rdetails:hover{
background:#f7f7f7;
-webkit-transition:background 1s ease;
-moz-transition:background 1s ease;
-o-transition:background 1s ease;
transition:background 1s ease;
}
/* Timeline */
.time{
margin:5px 0px 10px 0px;
padding:5px 0px 10px 0px;
border-bottom:1px solid #f4f4f4;
}
.time .tidate{
width:50px;
height:50px;
text-align:center;
line-height:50px;
float:left;
color:#fff;
font-weight:700;
font-size:14px;
border-radius:30px;
}
.time .timatter{
width:80%;
float:right;
background:#fff;
border:1px solid #ddd;
padding:5px 10px;
}
/* Events - Accordion*/
.events .accordion-group{
border-radius:0px;
border:none;
margin:10px 0px;
color:#666;
}
.events .accordion-heading h5{
font-size:16px;
color:#fff;
padding:10px;
}
.events .accordion-heading h5 span{
display:block !important;
font-size:12px !important;
}
.events .accordion-heading .accordion-toggle {
display: block;
padding:0px;
}
.events .accordion-heading i{
background:#f6f6f6;
border:1px solid #eee;
font-size:13px;
height:25px;
width:25px;
padding:0px;
margin:0px;
margin-right:5px;
line-height:22px;
text-align:center;
border-radius:40px;
}
.events .accordion-inner{
border:none;
padding:0px;
background:#fafafa;
padding:10px 10px 0px 10px;
border:1px solid #e8e8e8;
margin-bottom:5px;
}
.events .accordion li{
line-height:20px;
}
.events .accordion-heading a, .events .accordion-heading a:visited, .events .accordion-heading a:hover{
border:0px !important;
text-decoration:none;
}
/* FAQ - Accordion*/
.faq .accordion-group{
border-radius:0px;
border:none;
margin:10px 0px;
color:#666;
}
.faq .accordion-heading h5{
font-size:16px;
color:#888;
}
.faq .accordion-heading .accordion-toggle {
display: block;
padding:0px;
}
.faq .accordion-heading i{
background:#f6f6f6;
border:1px solid #eee;
font-size:13px;
height:25px;
width:25px;
padding:0px;
margin:0px;
margin-right:5px;
line-height:22px;
text-align:center;
border-radius:40px;
}
.faq .accordion-inner{
border:none;
padding:0px;
background:#fafafa;
padding:10px 10px 0px 10px;
border-radius:5px;
border:1px solid #e8e8e8;
margin-bottom:5px;
}
.faq .accordion li{
line-height:20px;
}
.faq .accordion-heading a,.faq .accordion-heading a:visited,.faq .accordion-heading a:hover{
border:0px !important;
text-decoration:none;
}
/* Hero */
.hero{
margin-bottom:20px;
padding-bottom:0px;
border-bottom:1px solid #eee;
}
.hero h3{
padding:0px;
margin:0px;
font-size:20px;
line-height:35px;
color:#777;
background:url('../img/dot.png') left center repeat-x;
background-size:4px 20px;
}
.hero h3 span{
background:#fff url('../img/body-back.png') repeat;
padding-right:8px;
}
.hero p{
color:#666;
}
/* Features */
.feat-a{
width:48%;
float:left;
margin-right:10px;
}
.feat-b{
width:48%;
float:right;
}
.feat{
padding:0px;
border-bottom:1px solid #eee;
}
.feat h4{
font-size:16px;
margin-bottom:5px;
}
.feat h4 i{
font-size:22px;
margin-right:12px;
margin-top:2px;
}
.ifeature{
margin:20px 0px 10px 0px;
}
.ifeature h4{
}
.ifeat{
margin:15px 0px;
padding:15px 0px 40px 0px;
border-bottom:1px solid #eee;
}
.ifeat img{
margin:10px 0px;
}
/* Feature alt */
.afeature{
width:190px;
height:190px;
margin:10px auto;
background:#eee url("../img/header-back.png") repeat;
/*border-radius:250px;*/
border:5px solid #fff;
box-shadow:0px 0px 3px #aaa;
text-align:center;
-webkit-transition:border 1s ease;
-moz-transition:border 1s ease;
-o-transition:border 1s ease;
transition:border 1s ease;
}
.afeature:hover{
-webkit-transition:border 1s ease;
-moz-transition:border 1s ease;
-o-transition:border 1s ease;
transition:border 1s ease;
}
.afmatter{
width:80%;
margin:10px auto;
padding-top:15px;
line-height:19px;
font-size:13px;
color:#666;
}
.afmatter i{
font-size:40px;
width:40px;
margin-bottom:12px;
}
/* Blog */
.blog .entry h2{
font-size:25px;
line-height:30px;
}
.blog .entry h2 a, .blog .entry h2 a:visited, .blog .entry h2 a:hover{
text-decoration:none;
color:#777;
}
.blog .meta{
border-top:1px solid #eee;
border-bottom:1px solid #eee;
margin:8px 0px;
padding:5px 8px;
color:#555;
text-transform:uppercase;
font-size:12px;
background:#eee url('../img/header-back.png') repeat;
}
.blog .meta a, .blog .meta a:visited{
color:#333;
}
.blog .meta i{
margin-left:3px;
}
.blog .bthumb{
margin:10px 0px 5px 0px;
padding:1px;
box-shadow:0px 0px 1px #777;
}
.blog .bthumb2{
float:left;
margin-top:8px;
margin-right:8px;
padding:1px;
box-shadow:0px 0px 1px #777;
}
.blog .bthumb2 img{
margin:0px;
}
.blog .entry{
margin-bottom:20px;
padding-bottom:5px;
border-bottom:1px solid #eee;
}
.posts .social{
font-size:16px;
}
.posts .social i{
box-shadow:inset 0px 0px 1px #333;
height:25px;
width:25px;
line-height:25px;
margin:0px 5px 0px 0px;
border-radius:3px;
color:#fff;
-webkit-transition:background 1s ease;
-moz-transition:background 1s ease;
-o-transition:background 1s ease;
transition:background 1s ease;
text-align:center;
}
.posts i.facebook{
background:#3c5b9b;
}
.posts i.twitter{
background:#2daae1;
}
.posts i.google-plus{
background:#f63e28;
}
.posts i.pinterest{
background:#cb2027;
}
.posts i.linkedin{
background:#0173b2;
}
.posts .social i:hover{
background:#000;
-webkit-transition:background 1s ease;
-moz-transition:background 1s ease;
-o-transition:background 1s ease;
transition:background 1s ease;
}
.posts .social a,.posts .social a:visited,.posts .social a:hover{
color:#fff;
text-decoration:none;
}
.posts .tags a{
display:inline-block;
font-weight:normal;
padding:0px 5px;
color:#fff;
border-radius:4px;
font-size:13px;
-webkit-transition:background 1s ease;
-moz-transition:background 1s ease;
-o-transition:background 1s ease;
transition:background 1s ease;
}
.posts .tags a:hover{
color:#fff;
text-decoration:none;
-webkit-transition:background 1s ease;
-moz-transition:background 1s ease;
-o-transition:background 1s ease;
transition:background 1s ease;
}
/* Blog #2 */
.blog .pblock .entry h2{
font-size:20px;
line-height:25px;
}
/* Comments */
.comments > ul > li{
background:none;
padding:0px;
}
.comments .comment{
margin:10px 0px;
padding:7px 10px;
background:#fff;
border-radius:5px;
border:1px solid #eee;
border-bottom:2px solid #ddd;
}
.comment .avatar{
margin-top:5px;
margin-right:8px;
padding:1px;
background:#fff;
border:1px solid #aaa;
}
.comment .cmeta{
font-size:12px;
}
.comment p{
margin-top:5px;
}
.comments .reply{
margin-left:15px;
}
.respond .title, .comments .title{
padding:10px 0px;
margin-bottom:10px;
border-bottom:1px solid #eee;
}
/* Sidebar */
.sidebar{
background:#eee url('../img/header-back.png') repeat;
border:1px solid #e1e1e1;
border-radius:8px;
padding:8px;
margin-top:10px;
}
.sidebar h4{
font-size:14px;
color:#888;
line-height:18px;
margin-bottom:5px;
padding-bottom:10px;
text-transform:uppercase;
border-bottom:1px solid #eee;
}
.sidebar .widget{
background:#fff;
padding:8px;
border-radius:8px;
border:1px solid #e1e1e1;
margin-bottom:10px;
}
.sidebar .widget .form-search{
margin-top:10px;
margin-bottom:10px;
}
/* Pagination */
.paging {
width:270px;
clear:both;
padding:6px 0;
line-height:17px;
font-size:13px;
}
.paging span, .paging a {
display:block;
float:left;
margin: 2px 2px 2px 0;
padding:5px 8px;
text-decoration:none;
width:auto;
color:#666;
background: #fff;
border:1px solid #ddd;
font-weight:normal;
}
.paging a:hover{
color:#fff;
}
.paging .current{
padding:5px 8px;
color:#fff;
}
/* Service page*/
.serv-a{
width:48%;
float:left;
margin-right:10px;
}
.serv-b{
width:48%;
float:right;
}
.serv{
padding:5px 10px;
background:#fff;
border-radius:5px;
border:1px solid #eee;
border-bottom:2px solid #ddd;
margin-bottom:20px;
color:#666;
text-align:center;
-webkit-transition:background 2s ease;
-moz-transition:background 2s ease;
-o-transition:background 2s ease;
transition:background 2s ease;
}
.serv:hover{
background:#fafafa;
-webkit-transition:background 1s ease;
-moz-transition:background 1s ease;
-o-transition:background 1s ease;
transition:background 1s ease;
}
.serv .simg i{
font-size:50px;
width:45px;
height:50px;
line-height:50px;
margin:0 auto;
}
/* Service Page #2 */
.aserv-list{
margin-bottom:10px;
}
.aserv-l{
width:48%;
float:left;
margin-right:10px;
}
.aserv-r{
width:48%;
float:left;
}
.aserv{
padding:10px 0px 10px 0px;
border-bottom:1px dotted #ddd;
}
.aserv-img{
float:left;
margin-right:6px;
border-radius:30px;
width:34px;
height:34px;
border:4px solid #e7e7e7 !important;
}
.aserv-img i{
display: block;
color:#fff;
background:#777;
width:30px;
font-size:16px;
height:30px;
line-height:30px;
text-align:center;
border:2px solid #fff;
border-radius:30px;
}
.aserv-details{
float:left;
font-size:15px;
font-weight:700;
color:#888;
line-height:35px;
}
/**** Isotope Filtering ****/
.isotope-item {
z-index: 2;
}
.isotope-hidden.isotope-item {
pointer-events: none;
z-index: 1;
}
/**** Isotope CSS3 transitions ****/
.isotope,
.isotope .isotope-item {
-webkit-transition-duration: 0.8s;
-moz-transition-duration: 0.8s;
-ms-transition-duration: 0.8s;
-o-transition-duration: 0.8s;
transition-duration: 0.8s;
}
.isotope {
-webkit-transition-property: height, width;
-moz-transition-property: height, width;
-ms-transition-property: height, width;
-o-transition-property: height, width;
transition-property: height, width;
}
.isotope .isotope-item {
-webkit-transition-property: -webkit-transform, opacity;
-moz-transition-property: -moz-transform, opacity;
-ms-transition-property: -ms-transform, opacity;
-o-transition-property: -o-transform, opacity;
transition-property: transform, opacity;
}
/**** disabling Isotope CSS3 transitions ****/
.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
-webkit-transition-duration: 0s;
-moz-transition-duration: 0s;
-ms-transition-duration: 0s;
-o-transition-duration: 0s;
transition-duration: 0s;
}
/* End: Recommended Isotope styles */
/* disable CSS transitions for containers with infinite scrolling*/
.isotope.infinite-scrolling {
-webkit-transition: none;
-moz-transition: none;
-ms-transition: none;
-o-transition: none;
transition: none;
}
.portfolio li{
display:inline !important;
border:none !important;
}
.portfolio li a, .portfolio li a:visited{
color:#fff;
padding:5px 10px;
margin:0px 5px;
font-family:Arial, Helvetica, sans-serif;
}
.portfolio li a:hover{
color:#fff;
}
#portfolio{
text-align:center;
}
#portfolio .element{
border-radius:2px;
border:1px solid #ddd;
margin:10px;
}
#portfolio-alt .element{
margin:4px;
border-radius:2px;
border:1px solid #ddd;
}
#portfolio h5{
margin:4px 0px;
padding:0px;
}
#portfolio .pcap{
background:#eee url("../img/header-back.png") repeat;
border:1px solid #eee;
padding:3px 0px;
}
#portfolio a, #portfolio a:visited, #portfolio a:hover{
color:#555;
text-decoration:none;
}
#portfolio .pcap{
max-width:200px;
margin:0 auto;
}
#portfolio .pcap{
line-height:20px;
}
#portfolio img{
padding:4px;
width:200px;
max-width:200px;
height:150px;
}
#portfolio-alt img{
padding:4px;
width:280px;
max-width:280px;
height:190px;
}
#filters{
margin-left:0px;
}
#filters li{
display:inline;
padding:0px;
background:none;
}
#filters a{
font-size:12px;
}
/* Process */
.process i{
margin-top:3px;
margin-right:2px;
}
.process-meta{
border-bottom:1px solid #eee;
margin-bottom:10px;
}
.process-meta span{
margin:0px 0px 0px 0px;
padding:4px 5px;
color:#fff;
}
/* 404 */
.error-page{
padding:20px 20px;
background:url('../img/header-back.png') repeat;
border:1px solid #ddd;
border-radius:10px;
color:#666;
text-align:center;
}
.error .error-med{
font-size:20px;
line-height:30px;
}
.error .error-big{
font-size:60px;
line-height:70px;
}
.error .error-small{
font-size:15px;
max-width:600px;
margin:0 auto;
}
/* Coming soon */
.csoon-page{
margin:80px 0px;
padding:20px 20px;
background:url('../img/header-back.png') repeat;
border:1px solid #ddd;
border-radius:10px;
color:#666;
text-align:center;
}
.soon-med{
font-size:20px;
line-height:30px;
}
.soon-big{
font-size:60px;
line-height:70px;
}
.soon-small{
font-size:14px;
line-height:20px;
max-width:600px;
margin:10px auto;
}
.soon-tweet{
background:#fff;
border-radius:10px;
border:1px solid #eee;
border-bottom:2px solid #ccc;
padding:12px;
margin:0 auto;
margin-bottom:20px;
margin-top:20px;
max-width:600px;
font-size:14px;
}
.soon-tweet ul li{
padding:0px;
margin:0px;
font-style:italic;
}
.content .soon-tweet ul li{
background-image:none;
}
.soon-tweet ul li:before{
content:'"';
font-size:16px;
font-family:Arial,sans-serif;
color:#888;
}
.soon-tweet ul li:after{
content:'"';
font-size:16px;
font-family:Arial,sans-serif;
color:#888;
}
.csoon-page form input, .csoon-page form button{
font-size:12px;
}
/* Login & Register page */
.logreg{
padding:5px 10px;
background:#eee url('../img/header-back.png') repeat;
border:1px solid #ddd;
border-radius:10px;
box-shadow:inset 0px 0px 3px #eee;
}
.logreg h3{
text-align:center;
}
.logreg-page{
width:450px;
margin:40px auto;
background:#fff;
padding:20px 10px;
border-radius:10px;
box-shadow:0px 0px 3px #aaa;
}
.logreg .lregister{
text-align:center;
}
.logreg .form{
margin-top:30px;
}
/* Button */
.button{
margin:10px 0px;
}
.button a, .button a:visited{
color:#fff;
padding:2px 10px;
font-size:14px;
border-radius:5px;
display: inline-block;
text-align: center;
}
.button a:hover{
color:#fff;
text-decoration:none;
}
/* Price tabel */
.price-a{
width:48%;
float:left;
margin-right:14px;
border-radius:7px;
}
.price-b{
width:48%;
float:right;
border-radius:7px;
}
.pricel{
margin-top:10px;
box-shadow:0px 0px 0px #fff;
-webkit-transition:box-shadow 1s ease;
-moz-transition:box-shadow 1s ease;
-o-transition:box-shadow 1s ease;
transition:box-shadow 1s ease;
}
.phighlight{
border:2px solid #fff;
box-shadow:0px 0px 3px #666;
width:46.5%;
}
.pricel:hover{
box-shadow:0px 0px 4px #aaa;
-webkit-transition:box-shadow 1s ease;
-moz-transition:box-shadow 1s ease;
-o-transition:box-shadow 1s ease;
transition:box-shadow 1s ease;
}
.pricel .phead-top{
margin:0px;
padding:10px;
border-top-left-radius:7px;
border-top-right-radius:7px;
}
.pricel .phead-top h4{
color:#fff;
}
.pricel .phead-bottom{
background:#eee url('../img/header-back.png') repeat;
border-left:1px solid #ddd;
border-right:1px solid #ddd;
border-bottom:1px solid #ddd;
margin:0px;
padding:10px 10px 0px 10px;
color:#777;
font-weight:700;
font-size:20px;
line-height:27px;
}
.pricel .pst{
font-size:14px;
position:relative;
top:-5px;
font-weight:normal;
}
.pricel .psb{
font-size:14px;
font-weight:normal;
}
.pricel .pbutton{
background:#eee url('../img/header-back.png') repeat;
border:1px solid #ddd;
padding:10px 0px 10px 0px;
color:#777;
font-weight:700;
font-size:20px;
border-bottom-left-radius:7px;
border-bottom-right-radius:7px;
}
.pricel .plist{
border-left:1px solid #ddd;
border-right:1px solid #ddd;
background:#f9f9f9;
}
.pricel .plist li{
background:none;
padding:10px;
border-bottom:1px solid #e1e1e1;
}
.pricel .plist li:nth-child(even) {
background-color:#f6f6f6;
}
.pricel .plist li:hover{
background:#fff;
}
/* Review */
.review{
padding:10px 13px;
background:#fafafa;
border:1px solid #eee;
border-radius:10px;
}
.reinfo{
width:38%;
float:left;
margin-right:15px;
}
.redetails{
width:53%;
float:left;
background:#eee url('../img/header-back.png') repeat;
padding:8px 10px;
border:1px solid #ddd;
border-radius:10px;
margin-bottom:10px;
}
.redetails .progress{
height:15px;
margin:4px 0px;
}
.redetails h5{
text-transform:uppercase;
line-height:15px;
font-size:12px;
}
.rgood{
padding:6px 10px;
border:1px solid #ddd;
border-radius:10px;
margin-top:10px;
margin-bottom:20px;
margin-right:10px;
width:43.5%;
float:left;
background:#eee url('../img/header-back.png') repeat;
}
.rbad{
padding:6px 10px;
border:1px solid #ddd;
border-radius:10px;
margin-top:10px;
margin-bottom:20px;
width:43.5%;
float:left;
background:#eee url('../img/header-back.png') repeat;
}
.rgood i{
font-size:17px;
margin-right:4px;
color:#46c82d;
}
.rbad i{
font-size:17px;
margin-right:4px;
color:#ee151b;
}
.rgood h5, .rbad h5{
border-bottom:1px solid #eee;
}
.rbox{
background:#eee url('../img/header-back.png') repeat;
padding:8px 10px;
border:1px solid #ddd;
border-radius:10px;
}
/* Gallery */
#gallery img{
padding:4px;
border:1px solid #ddd;
border-radius:5px;
margin:10px;
width:200px;
max-width:200px;
height:150px;
}
/* Career */
.career .nav > li{
background:none;
padding:0px;
}
.nav-tabs > li > a:hover{
color:#fff;
}
/* Products */
.prod h3{
margin:0px;
padding:0px;
font-size:20px;
line-height:30px;
}
.prod{
border-bottom:1px solid #eee;
padding-bottom:20px;
margin-bottom:10px;
}
.pdetails{
padding:10px 10px;
border-radius:0px;
background:#fff url('../img/header-back.png') repeat;
border-radius:10px;
box-shadow:inset 0px 0px 3px #eee;
margin-top:20px;
color:#777;
border:1px solid #eee;
}
.pdetails i{
margin-right:2px;
}
.pdetails .ptable{
border-radius:10px;
background:#fcfcfc;
border:1px solid #eee;
margin-bottom:20px;
}
.pdetails .pline{
padding:5px 10px;
border-bottom:1px solid #eee;
}
/* About */
.about-hero{
padding:15px 20px 10px 20px;
background:#fafafa;
border-radius:4px;
box-shadow:inset 0px 0px 1px #ccc;
border:1px solid #eee;
color:#999;
font-size:23px;
line-height:33px;
}
.about-hero .hightlight{
color:#666;
}
.about .teams{
margin-top:20px;
}
.teams .pic{
margin-bottom:5px;
}
.teams .pic img{
border-radius:6px;
}
.about .details{
margin-top:10px;
margin-bottom:20px;
}
.about .details .name{
font-weight:bold;
line-height:10px;
padding:0px;
margin:0px;
}
.about .details em{
color:#888;
}
.about .asocial i{
padding:3px;
text-align:center;
border-radius:4px;
width: 18px;
height: 18px;
line-height: 18px;
}
.about .asocial a, .about .asocial a:visited, .about .asocial a:hover{
color:#fff;
border-radius:5px;
text-decoration:none;
}
.about .details .adesc{
max-width:300px;
margin:0 auto;
border-top:1px solid #eee;
margin-top:10px;
}
/* Support */
.support-page{
background:#fcfcfc;
padding:10px 15px;
border-radius:10px;
border:1px solid #eee;
}
.scontact{
background:#fff url('../img/header-back.png') repeat;
padding:10px 15px;
border-radius:10px;
border:1px solid #eee;
}
#slist p{
display:none;
margin:5px 0px;
padding:5px 10px;
background:#fff;
line-height:25px;
border-radius:5px;
border:1px solid #eee;
}
/* Resume */
.resume h2{
color:#888;
line-height:30px;
}
.resume h2 .rsmall{
font-size:18px;
position:relative;
top:-2px;
}
.resume h4{
color:#fff;
padding:10px;
}
.resume .rblock{
margin:5px 0px 15px 0px;
border-bottom:1px solid #eee;
}
.resume .rinfo{
border-left:4px solid #eee;
padding-left:15px;
border-bottom:1px solid #eee;
padding-bottom:10px;
}
.resume .rmeta{
color:#888;
}
.resume h5{
font-size:20px;
}
.resume .rskills{
max-width:300px;
}
.resume .rskills span{
display:inline-block;
padding:3px 8px;
background:#f3f3f3;
border:1px solid #ddd;
border-radius:5px;
margin:5px 0px;
cursor:pointer;
}
.resume .rskills span:hover{
background:#f9f9f9;
}
/* Testimonial */
.test{
background:#fff;
padding:8px 12px;
margin:5px 0px 0px 0px;
border:1px solid #eee;
color:#777;
font-style:italic;
}
.test-arrow{
border-style: dashed;
border-color: transparent;
border-width: 0.63em;
display: -moz-inline-box;
display: inline-block;
font-size: 12px;
line-height:0px;
height: 0;
line-height: 0;
position: relative;
vertical-align: middle;
width: 0;
border-top-width: 1em;
border-top-style: solid;
top:-6px;
left:20px;
}
.tauth{
position:relative;
top:-6px;
color:#888;
left:10px;
font-weight:700;
}
.testi{
background:#fff;
border-radius:10px;
border:1px solid #eee;
border-bottom:2px solid #ccc;
padding:12px;
margin-bottom:20px;
}
.testi .tauthor{
font-weight:bold;
color:#777;
}
.testi .tquote{
font-style:italic;
font-size:14px;
line-height:20px;
color:#555;
}
/* Contact */
.contact .gmap{
padding:8px 8px 0px 8px;
background:#fff;
box-shadow:0px 0px 2px #aaa;
border-radius:5px;
margin-bottom:20px;
}
.contact .gmap iframe{
width:100%;
box-shadow:0px 0px 3px #aaa;
padding-bottom:0px !important;
margin-bottom:0px !important;
}
.contact .cwell{
padding:10px 10px;
background:#f9f9f9;
border:1px solid #eee;
border-radius:10px;
margin-bottom:15px;
}
.contact .csoci{
text-align:center;
}
/* Clients */
.clients{
padding:10px;
text-align:center;
background:#fafafa;
border:1px solid #eee;
border-radius:5px;
margin:5px 0px 10px 0px;
}
.clients img{
max-width:120px;
margin:10px 14px;
}
/* Clients page */
.cclient{
background:#eee url("../img/header-back.png") repeat;
border:1px solid #eee;
border-radius:10px;
margin:10px 0px;
text-align:center;
padding:10px 10px;
}
.cimage{
margin-top:20px;
}
.cclient .cmatter p{
background:#fff;
margin:5px 0px;
border-radius:10px;
padding:10px;
border:1px solid #eee;
line-height:22px;
}
/* Footer */
footer{
background:#222 url('../img/fback.png') repeat;
margin-top:10px;
font-size:13px;
padding-top:10px;
color:#ddd;
}
footer hr{
border-top:1px solid #333;
padding:0px;
border-bottom:1px solid #111;
}
footer h4{
font-size:15px;
padding-bottom:6px;
border-bottom:1px solid #313131;
margin-bottom:4px;
color:#ccc;
}
footer a, footer a:visited{
color:#bbb;
}
footer a:hover{
color:#888;
text-decoration:none;
}
footer ul{
list-style-type: none !important;
padding: 0px;
margin: 0px;
}
footer ul li{
background-repeat: no-repeat;
background-position: 2px 7px;
background-size:13px 13px;
padding:4px 0px;
padding-left: 21px;
}
footer .widget{
margin-bottom:10px;
}
/* Tablas */
.subcategory{
border-left: 0px; border-right: 0px; /*background-color: dodgerblue;*/ padding: 0px;
}
/* Responsive */
@media (min-width: 768px) and (max-width: 979px){
.navbar .nav{
border:0px !important;
}
.navbar .nav > li > a{
border:0px !important;
}
.dropdown-menu a{
border-bottom:none !important;
z-index: 2000;
}
.rpost2{
margin-left:10px;
}
.entry img{
display:block;
float:none;
margin:0 auto;
margin-bottom:8px;
width:100%;
}
}
/* Barra de subida */
.bar {
height: 18px;
background: blue;
}
@media (max-width: 767px){
header{
padding-bottom:10px;
padding-top:15px;
}
header .list{
margin:10px auto;
position:static;
top:0px;
margin-top:10px;
border-top:1px;
border-radius:10px;
box-shadow:0px 0px 2px #ddd;
}
.logo{
text-align:center;
}
.navbar,header,footer{
margin-left:-20px;
margin-right:-20px;
}
.navbar .nav{
border:0px !important;
}
.navbar .nav > li > a{
border:0px !important;
}
.dropdown-menu a{
border-bottom:none !important;
z-index: 2000;
}
.flex-caption{
display:none;
}
.posts .social{
padding-bottom:10px;
border-bottom:1px solid #ddd;
}
.posts .social, .posts .tags{
float:none;
}
.resume .rinfo{
margin-top:15px;
}
.rposts img{
width:100%;
}
.teams{
text-align:center;
}
.teams img{
max-width:300px;
}
.asocial, .desig{
float:none;
display:block;
clear:both;
}
.error .error-small{
max-width:300px;
}
.ifeat{
margin:5px 0px;
padding:5px 0px 10px 0px;
}
.scontact{
margin-top:20px;
}
.entry img{
display:block;
float:none;
margin:0 auto;
margin-bottom:8px;
width:100%;
}
.sidebar{
margin-top:20px;
}
.logreg-page{
width:90%;
}
.reinfo{
width:100%;
float:none;
margin-right:0px;
}
.redetails{
width:92%;
margin-right:20px;
float:none;
}
.rgood{
width:92%;
float:none;
margin-right:0px;
}
.rbad{
width:92%;
float:none;
margin-right:0px;
}
.rbox{
margin-top:20px;
}
footer{
padding:10px 20px;
}
}
@media (max-width: 480px){
header .list .social{
text-align:center;
}
.logo{
margin:0 auto;
}
.rpost1{
width:100%;
}
.rposts img{
width:100%;
}
.rpost2{
width:100%;
margin-left:0px;
}
.da-slide h2{
width:100%;
font-size:30px;
top:40px;
}
.da-slide p{
width:80%;
font-size:15px;
top:90px;
}
.da-slide .da-link{
top:180px;
}
.da-slide .da-img{
display:none;
}
.serv-a,.feat-a,.price-a{
width:100%;
float:none;
margin-right:0px;
}
.serv-b,.feat-b,.price-b{
width:100%;
float:none;
}
.blog .meta span{
float:none !important;
}
.feat{
text-align:center;
}
.teams .pic img {
max-width:220px;
}
.time .tidate{
float:none;
margin:0 auto;
margin-bottom:10px;
}
.time .timatter{
width:92%;
}
.aserv-l{
width:100%;
float:none;
margin-right:0px;
}
.aserv-r{
width:100%;
float:none;
}
} |
client/index.html | jaecuong/LinkReview | <!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>MEAN project with Angular 2</title>
<base href="/">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="assets/favicon.ico">
</head>
<body>
<app-root>Loading...</app-root>
</body>
</html>
|
_ng2_docs/1.0.0-beta.4/interfaces/url.paramfactory.html | ui-router/ui-router.github.io | ---
---
<!doctype html>
<html class="default no-js">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>ParamFactory | ui-router-ng2</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="../assets/css/main.css">
<link rel="stylesheet" href="../assets/css/uirouter.css">
<script src="../assets/js/modernizr.js"></script>
<script src="../assets/js/reset.js"></script>
</head>
<body>
<header>
<div class="tsd-page-toolbar">
<div class="container">
<div class="table-wrap">
<div class="table-cell" id="tsd-search" data-index="../assets/js/search.js" data-base="..">
<div class="field">
<label for="tsd-search-field" class="tsd-widget search no-caption">Search</label>
<input id="tsd-search-field" type="text" />
</div>
<ul class="results">
<li class="state loading">Preparing search index...</li>
<li class="state failure">The search index is not available</li>
</ul>
<a href="../index.html" class="title">ui-router-ng2</a>
</div>
<div class="table-cell" id="tsd-widgets">
<div id="tsd-filter">
<a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a>
<div class="tsd-filter-group">
<!--
<div class="tsd-select" id="tsd-filter-visibility">
<span class="tsd-select-label">All</span>
<ul class="tsd-select-list">
<li data-value="public">Public</li>
<li data-value="protected">Public/Protected</li>
<li data-value="private" class="selected">All</li>
</ul>
</div>
<input type="checkbox" id="tsd-filter-inherited" checked />
<label class="tsd-widget" for="tsd-filter-inherited">Inherited</label>
-->
<input type="checkbox" id="tsd-filter-externals" checked />
<label class="tsd-widget" for="tsd-filter-externals">Internal UI-Router API</label>
<!--
<input type="checkbox" id="tsd-filter-only-exported" />
<label class="tsd-widget" for="tsd-filter-only-exported">Only exported</label>
-->
</div>
</div>
<a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a>
</div>
</div>
</div>
</div>
<div class="tsd-page-title">
<div class="container">
<ul class="tsd-breadcrumb">
<li>
<a href="../index.html">ui-router-ng2</a>
</li>
<li>
<a href="../modules/url.html">url</a>
</li>
<li>
<a href="url.paramfactory.html">ParamFactory</a>
</li>
</ul>
<h1>Interface ParamFactory</h1>
</div>
</div>
</header>
<div class="container container-main">
<div class="row">
<div class="col-8 col-content">
<section class="tsd-panel tsd-comment">
<div class="tsd-comment tsd-typography">
</div>
</section>
<section class="tsd-panel tsd-hierarchy">
<h3>Hierarchy</h3>
<ul class="tsd-hierarchy">
<li>
<span class="target">ParamFactory</span>
</li>
</ul>
</section>
<section class="tsd-panel-group tsd-index-group">
<h2>Index</h2>
<section class="tsd-panel tsd-index-panel">
<div class="tsd-index-content">
<section class="tsd-index-section ">
<h3>Methods</h3>
<ul class="tsd-index-list">
<li class="tsd-kind-method tsd-parent-kind-interface"><a href="url.paramfactory.html#fromconfig" class="tsd-kind-icon">from<wbr>Config</a></li>
<li class="tsd-kind-method tsd-parent-kind-interface"><a href="url.paramfactory.html#frompath" class="tsd-kind-icon">from<wbr>Path</a></li>
<li class="tsd-kind-method tsd-parent-kind-interface"><a href="url.paramfactory.html#fromsearch" class="tsd-kind-icon">from<wbr>Search</a></li>
</ul>
</section>
</div>
</section>
</section>
<section class="tsd-panel-group tsd-member-group ">
<h2>Methods</h2>
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface">
<a name="fromconfig" class="tsd-anchor"></a>
<!--
<h3>from<wbr>Config</h3>
-->
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface">
<li class="tsd-signature tsd-kind-icon">from<wbr>Config<span class="tsd-signature-symbol">(</span>id<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span>, type<span class="tsd-signature-symbol">: </span><a href="../classes/params.paramtype.html" class="tsd-signature-type">ParamType</a>, config<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../classes/params.param.html" class="tsd-signature-type">Param</a></li>
<li class="tsd-header">
<p> Creates a new <a href="../classes/params.param.html">Param</a> from a CONFIG block </p>
</li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<div class="tsd-comment tsd-typography">
<div class="lead">
<p>Creates a new <a href="../classes/params.param.html">Param</a> from a CONFIG block</p>
</div>
</div>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>id <span class="tsd-signature-type">string</span></h5>
</li>
<li>
<h5>type <a href="../classes/params.paramtype.html" class="tsd-signature-type">ParamType</a></h5>
</li>
<li>
<h5>config <span class="tsd-signature-type">any</span></h5>
</li>
</ul>
<div class="tsd-returns">
<h4 class="tsd-returns-title">Returns <a href="../classes/params.param.html" class="tsd-signature-type">Param</a></h4>
</div>
<hr>
<aside class="tsd-sources">
<ul>
<li>Defined in <a href="https://github.com/ui-router/core/blob/fec3bb1/src/url/interface.ts#L25">ui-router-core/src/url/interface.ts:25</a></li>
</ul>
</aside> </li>
</ul>
</section>
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface">
<a name="frompath" class="tsd-anchor"></a>
<!--
<h3>from<wbr>Path</h3>
-->
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface">
<li class="tsd-signature tsd-kind-icon">from<wbr>Path<span class="tsd-signature-symbol">(</span>id<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span>, type<span class="tsd-signature-symbol">: </span><a href="../classes/params.paramtype.html" class="tsd-signature-type">ParamType</a>, config<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../classes/params.param.html" class="tsd-signature-type">Param</a></li>
<li class="tsd-header">
<p> Creates a new <a href="../classes/params.param.html">Param</a> from a url PATH </p>
</li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<div class="tsd-comment tsd-typography">
<div class="lead">
<p>Creates a new <a href="../classes/params.param.html">Param</a> from a url PATH</p>
</div>
</div>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>id <span class="tsd-signature-type">string</span></h5>
</li>
<li>
<h5>type <a href="../classes/params.paramtype.html" class="tsd-signature-type">ParamType</a></h5>
</li>
<li>
<h5>config <span class="tsd-signature-type">any</span></h5>
</li>
</ul>
<div class="tsd-returns">
<h4 class="tsd-returns-title">Returns <a href="../classes/params.param.html" class="tsd-signature-type">Param</a></h4>
</div>
<hr>
<aside class="tsd-sources">
<ul>
<li>Defined in <a href="https://github.com/ui-router/core/blob/fec3bb1/src/url/interface.ts#L27">ui-router-core/src/url/interface.ts:27</a></li>
</ul>
</aside> </li>
</ul>
</section>
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface">
<a name="fromsearch" class="tsd-anchor"></a>
<!--
<h3>from<wbr>Search</h3>
-->
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface">
<li class="tsd-signature tsd-kind-icon">from<wbr>Search<span class="tsd-signature-symbol">(</span>id<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span>, type<span class="tsd-signature-symbol">: </span><a href="../classes/params.paramtype.html" class="tsd-signature-type">ParamType</a>, config<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../classes/params.param.html" class="tsd-signature-type">Param</a></li>
<li class="tsd-header">
<p> Creates a new <a href="../classes/params.param.html">Param</a> from a url SEARCH </p>
</li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<div class="tsd-comment tsd-typography">
<div class="lead">
<p>Creates a new <a href="../classes/params.param.html">Param</a> from a url SEARCH</p>
</div>
</div>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>id <span class="tsd-signature-type">string</span></h5>
</li>
<li>
<h5>type <a href="../classes/params.paramtype.html" class="tsd-signature-type">ParamType</a></h5>
</li>
<li>
<h5>config <span class="tsd-signature-type">any</span></h5>
</li>
</ul>
<div class="tsd-returns">
<h4 class="tsd-returns-title">Returns <a href="../classes/params.param.html" class="tsd-signature-type">Param</a></h4>
</div>
<hr>
<aside class="tsd-sources">
<ul>
<li>Defined in <a href="https://github.com/ui-router/core/blob/fec3bb1/src/url/interface.ts#L29">ui-router-core/src/url/interface.ts:29</a></li>
</ul>
</aside> </li>
</ul>
</section>
</section>
</div>
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
<nav class="tsd-navigation primary">
<ul>
<li class="globals ">
<a href="../index.html"><em>ui-<wbr>router-<wbr>ng2</em></a>
</li>
<li class="label tsd-is-external">
<span>Public API</span>
</li>
<li class=" tsd-kind-external-module">
<a href="../modules/core.html">core</a>
</li>
<li class=" tsd-kind-external-module">
<a href="../modules/directives.html">directives</a>
</li>
<li class=" tsd-kind-external-module">
<a href="../modules/params.html">params</a>
</li>
<li class=" tsd-kind-external-module">
<a href="../modules/resolve.html">resolve</a>
</li>
<li class=" tsd-kind-external-module">
<a href="../modules/state.html">state</a>
</li>
<li class=" tsd-kind-external-module">
<a href="../modules/trace.html">trace</a>
</li>
<li class=" tsd-kind-external-module">
<a href="../modules/transition.html">transition</a>
</li>
<li class="current tsd-kind-external-module">
<a href="../modules/url.html">url</a>
</li>
<li class="label tsd-is-external">
<span>Internal UI-<wbr><wbr>Router API</span>
</li>
<li class=" tsd-kind-external-module tsd-is-external">
<a href="../modules/common.html">common</a>
</li>
<li class=" tsd-kind-external-module tsd-is-external">
<a href="../modules/common_hof.html">common_<wbr>hof</a>
</li>
<li class=" tsd-kind-external-module tsd-is-external">
<a href="../modules/common_predicates.html">common_<wbr>predicates</a>
</li>
<li class=" tsd-kind-external-module tsd-is-external">
<a href="../modules/common_strings.html">common_<wbr>strings</a>
</li>
<li class=" tsd-kind-external-module tsd-is-external">
<a href="../modules/hooks.html">hooks</a>
</li>
<li class=" tsd-kind-external-module tsd-is-external">
<a href="../modules/ng2.html">ng2</a>
</li>
<li class=" tsd-kind-external-module tsd-is-external">
<a href="../modules/path.html">path</a>
</li>
<li class=" tsd-kind-external-module tsd-is-external">
<a href="../modules/vanilla.html">vanilla</a>
</li>
<li class=" tsd-kind-external-module tsd-is-external">
<a href="../modules/view.html">view</a>
</li>
</ul>
</nav>
<nav class="tsd-navigation secondary menu-sticky">
<ul class="before-current">
<li class=" tsd-kind-class tsd-parent-kind-external-module tsd-is-external">
<a href="../classes/url.baseurlrule.html" class="tsd-kind-icon">Base<wbr>Url<wbr>Rule</a>
</li>
<li class=" tsd-kind-class tsd-parent-kind-external-module">
<a href="../classes/url.urlmatcher.html" class="tsd-kind-icon">Url<wbr>Matcher</a>
</li>
<li class=" tsd-kind-class tsd-parent-kind-external-module tsd-is-external">
<a href="../classes/url.urlmatcherfactory.html" class="tsd-kind-icon">Url<wbr>Matcher<wbr>Factory</a>
</li>
<li class=" tsd-kind-class tsd-parent-kind-external-module tsd-is-external">
<a href="../classes/url.urlrouter.html" class="tsd-kind-icon">Url<wbr>Router</a>
</li>
<li class=" tsd-kind-class tsd-parent-kind-external-module tsd-is-external">
<a href="../classes/url.urlrulefactory.html" class="tsd-kind-icon">Url<wbr>Rule<wbr>Factory</a>
</li>
<li class=" tsd-kind-class tsd-parent-kind-external-module">
<a href="../classes/url.urlservice.html" class="tsd-kind-icon">Url<wbr>Service</a>
</li>
<li class=" tsd-kind-interface tsd-parent-kind-external-module">
<a href="url.matchresult.html" class="tsd-kind-icon">Match<wbr>Result</a>
</li>
<li class=" tsd-kind-interface tsd-parent-kind-external-module tsd-is-external">
<a href="url.matcherurlrule.html" class="tsd-kind-icon">Matcher<wbr>Url<wbr>Rule</a>
</li>
</ul>
<ul class="current">
<li class="current tsd-kind-interface tsd-parent-kind-external-module tsd-is-external">
<a href="url.paramfactory.html" class="tsd-kind-icon">Param<wbr>Factory</a>
<ul>
<li class=" tsd-kind-method tsd-parent-kind-interface">
<a href="url.paramfactory.html#fromconfig" class="tsd-kind-icon">from<wbr>Config</a>
</li>
<li class=" tsd-kind-method tsd-parent-kind-interface">
<a href="url.paramfactory.html#frompath" class="tsd-kind-icon">from<wbr>Path</a>
</li>
<li class=" tsd-kind-method tsd-parent-kind-interface">
<a href="url.paramfactory.html#fromsearch" class="tsd-kind-icon">from<wbr>Search</a>
</li>
</ul>
</li>
</ul>
<ul class="after-current">
<li class=" tsd-kind-interface tsd-parent-kind-external-module tsd-is-external">
<a href="url.regexprule.html" class="tsd-kind-icon">Reg<wbr>Exp<wbr>Rule</a>
</li>
<li class=" tsd-kind-interface tsd-parent-kind-external-module tsd-is-external">
<a href="url.staterule.html" class="tsd-kind-icon">State<wbr>Rule</a>
</li>
<li class=" tsd-kind-interface tsd-parent-kind-external-module">
<a href="url.urlconfigapi.html" class="tsd-kind-icon">Url<wbr>Config<wbr>Api</a>
</li>
<li class=" tsd-kind-interface tsd-parent-kind-external-module">
<a href="url.urlmatcherconfig.html" class="tsd-kind-icon">Url<wbr>Matcher<wbr>Config</a>
</li>
<li class=" tsd-kind-interface tsd-parent-kind-external-module">
<a href="url.urlparts.html" class="tsd-kind-icon">Url<wbr>Parts</a>
</li>
<li class=" tsd-kind-interface tsd-parent-kind-external-module">
<a href="url.urlrule.html" class="tsd-kind-icon">Url<wbr>Rule</a>
</li>
<li class=" tsd-kind-interface tsd-parent-kind-external-module">
<a href="url.urlrulehandlerfn.html" class="tsd-kind-icon">Url<wbr>Rule<wbr>Handler<wbr>Fn</a>
</li>
<li class=" tsd-kind-interface tsd-parent-kind-external-module">
<a href="url.urlrulematchfn.html" class="tsd-kind-icon">Url<wbr>Rule<wbr>Match<wbr>Fn</a>
</li>
<li class=" tsd-kind-interface tsd-parent-kind-external-module">
<a href="url.urlrulesapi.html" class="tsd-kind-icon">Url<wbr>Rules<wbr>Api</a>
</li>
<li class=" tsd-kind-interface tsd-parent-kind-external-module tsd-is-external">
<a href="url.urlsyncapi.html" class="tsd-kind-icon">Url<wbr>Sync<wbr>Api</a>
</li>
<li class=" tsd-kind-type-alias tsd-parent-kind-external-module tsd-is-external">
<a href="../modules/url.html#urlruletype" class="tsd-kind-icon">Url<wbr>Rule<wbr>Type</a>
</li>
<li class=" tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported">
<a href="../modules/url.html#defaultrulesortfn" class="tsd-kind-icon">default<wbr>Rule<wbr>Sort<wbr>Fn</a>
</li>
</ul>
</nav>
</div>
</div>
</div>
<footer class="with-border-bottom">
<div class="container">
<h2>Legend</h2>
<div class="tsd-legend-group">
<ul class="tsd-legend">
<li class="tsd-kind-module"><span class="tsd-kind-icon">Module</span></li>
<li class="tsd-kind-object-literal"><span class="tsd-kind-icon">Object literal</span></li>
<li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li>
<li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li>
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
</ul>
<ul class="tsd-legend">
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
<li class="tsd-kind-enum-member"><span class="tsd-kind-icon">Enumeration member</span></li>
<li class="tsd-kind-property tsd-parent-kind-enum"><span class="tsd-kind-icon">Property</span></li>
<li class="tsd-kind-method tsd-parent-kind-enum"><span class="tsd-kind-icon">Method</span></li>
</ul>
<ul class="tsd-legend">
<li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li>
<li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li>
<li class="tsd-kind-constructor tsd-parent-kind-interface"><span class="tsd-kind-icon">Constructor</span></li>
<li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li>
<li class="tsd-kind-method tsd-parent-kind-interface"><span class="tsd-kind-icon">Method</span></li>
<li class="tsd-kind-index-signature tsd-parent-kind-interface"><span class="tsd-kind-icon">Index signature</span></li>
</ul>
<ul class="tsd-legend">
<li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li>
<li class="tsd-kind-class tsd-has-type-parameter"><span class="tsd-kind-icon">Class with type parameter</span></li>
<li class="tsd-kind-constructor tsd-parent-kind-class"><span class="tsd-kind-icon">Constructor</span></li>
<li class="tsd-kind-property tsd-parent-kind-class"><span class="tsd-kind-icon">Property</span></li>
<li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li>
<li class="tsd-kind-accessor tsd-parent-kind-class"><span class="tsd-kind-icon">Accessor</span></li>
<li class="tsd-kind-index-signature tsd-parent-kind-class"><span class="tsd-kind-icon">Index signature</span></li>
</ul>
<ul class="tsd-legend">
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited constructor</span></li>
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited property</span></li>
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited method</span></li>
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited accessor</span></li>
</ul>
<ul class="tsd-legend">
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected property</span></li>
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected method</span></li>
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected accessor</span></li>
</ul>
<ul class="tsd-legend">
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private property</span></li>
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private method</span></li>
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private accessor</span></li>
</ul>
<ul class="tsd-legend">
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static property</span></li>
<li class="tsd-kind-call-signature tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static method</span></li>
</ul>
</div>
</div>
</footer>
<div class="container tsd-generator">
<p>Generated using <a href="http://typedoc.io" target="_blank">TypeDoc</a></p>
</div>
<div class="overlay"></div>
<script src="../assets/js/main.js"></script>
<script>if (location.protocol == 'file:') document.write('<script src="../assets/js/search.js"><' + '/script>');</script>
</body>
</html> |
doc/nalgebra/struct.DVec2.html | mcanders/bevy | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="generator" content="rustdoc">
<meta name="description" content="API documentation for the Rust `DVec2` struct in crate `nalgebra`.">
<meta name="keywords" content="rust, rustlang, rust-lang, DVec2">
<title>nalgebra::DVec2 - Rust</title>
<link rel="stylesheet" type="text/css" href="../main.css">
</head>
<body class="rustdoc">
<!--[if lte IE 8]>
<div class="warning">
This old browser is unsupported and will most likely display funky
things.
</div>
<![endif]-->
<section class="sidebar">
<p class='location'><a href='index.html'>nalgebra</a></p><script>window.sidebarCurrent = {name: 'DVec2', ty: 'struct', relpath: ''};</script><script defer src="sidebar-items.js"></script>
</section>
<nav class="sub">
<form class="search-form js-only">
<div class="search-container">
<input class="search-input" name="search"
autocomplete="off"
placeholder="Click or press 'S' to search, '?' for more options..."
type="search">
</div>
</form>
</nav>
<section id='main' class="content struct">
<h1 class='fqn'><span class='in-band'>Struct <a href='index.html'>nalgebra</a>::<wbr><a class='struct' href=''>DVec2</a></span><span class='out-of-band'><span id='render-detail'>
<a id="toggle-all-docs" href="javascript:void(0)" title="collapse all docs">
[<span class='inner'>−</span>]
</a>
</span><a id='src-8081' class='srclink' href='../src/nalgebra/structs/dvec.rs.html#98-101' title='goto source code'>[src]</a></span></h1>
<pre class='rust struct'>pub struct DVec2<N> {
// some fields omitted
}</pre><div class='docblock'><p>Stack-allocated, dynamically sized vector with a maximum size of 2.</p>
</div><h2 id='methods'>Methods</h2><h3 class='impl'><code>impl<N> <a class='struct' href='../nalgebra/struct.DVec2.html' title='nalgebra::DVec2'>DVec2</a><N></code></h3><div class='impl-items'><h4 id='method.len' class='method'><code>fn <a href='#method.len' class='fnname'>len</a>(&self) -> <a href='http://doc.rust-lang.org/nightly/std/primitive.usize.html'>usize</a></code></h4>
</div><h3 class='impl'><code>impl<N: <a class='trait' href='../num/traits/trait.Zero.html' title='num::traits::Zero'>Zero</a> + <a class='trait' href='http://doc.rust-lang.org/nightly/core/marker/trait.Copy.html' title='core::marker::Copy'>Copy</a> + <a class='trait' href='http://doc.rust-lang.org/nightly/core/clone/trait.Clone.html' title='core::clone::Clone'>Clone</a>> <a class='struct' href='../nalgebra/struct.DVec2.html' title='nalgebra::DVec2'>DVec2</a><N></code></h3><div class='impl-items'><h4 id='method.new_zeros' class='method'><code>fn <a href='#method.new_zeros' class='fnname'>new_zeros</a>(dim: <a href='http://doc.rust-lang.org/nightly/std/primitive.usize.html'>usize</a>) -> <a class='struct' href='../nalgebra/struct.DVec2.html' title='nalgebra::DVec2'>DVec2</a><N></code></h4>
<div class='docblock'><p>Builds a vector filled with zeros.</p>
<h1 id="arguments" class='section-header'><a
href="#arguments">Arguments</a></h1>
<ul>
<li><code>dim</code> - The dimension of the vector.</li>
</ul>
</div><h4 id='method.is_zero' class='method'><code>fn <a href='#method.is_zero' class='fnname'>is_zero</a>(&self) -> <a href='http://doc.rust-lang.org/nightly/std/primitive.bool.html'>bool</a></code></h4>
<div class='docblock'><p>Tests if all components of the vector are zeroes.</p>
</div></div><h3 class='impl'><code>impl<N> <a class='struct' href='../nalgebra/struct.DVec2.html' title='nalgebra::DVec2'>DVec2</a><N></code></h3><div class='impl-items'><h4 id='method.as_slice' class='method'><code>fn <a href='#method.as_slice' class='fnname'>as_slice</a><'a>(&'a self) -> <a href='http://doc.rust-lang.org/nightly/std/primitive.slice.html'>&'a [N]</a></code></h4>
<div class='docblock'><p>Slices this vector.</p>
</div><h4 id='method.as_mut_slice' class='method'><code>fn <a href='#method.as_mut_slice' class='fnname'>as_mut_slice</a><'a>(&'a mut self) -> <a href='http://doc.rust-lang.org/nightly/std/primitive.slice.html'>&'a mut [N]</a></code></h4>
<div class='docblock'><p>Mutably slices this vector.</p>
</div></div><h3 class='impl'><code>impl<N: <a class='trait' href='../num/traits/trait.One.html' title='num::traits::One'>One</a> + <a class='trait' href='../num/traits/trait.Zero.html' title='num::traits::Zero'>Zero</a> + <a class='trait' href='http://doc.rust-lang.org/nightly/core/marker/trait.Copy.html' title='core::marker::Copy'>Copy</a> + <a class='trait' href='http://doc.rust-lang.org/nightly/core/clone/trait.Clone.html' title='core::clone::Clone'>Clone</a>> <a class='struct' href='../nalgebra/struct.DVec2.html' title='nalgebra::DVec2'>DVec2</a><N></code></h3><div class='impl-items'><h4 id='method.new_ones' class='method'><code>fn <a href='#method.new_ones' class='fnname'>new_ones</a>(dim: <a href='http://doc.rust-lang.org/nightly/std/primitive.usize.html'>usize</a>) -> <a class='struct' href='../nalgebra/struct.DVec2.html' title='nalgebra::DVec2'>DVec2</a><N></code></h4>
<div class='docblock'><p>Builds a vector filled with ones.</p>
<h1 id="arguments" class='section-header'><a
href="#arguments">Arguments</a></h1>
<ul>
<li><code>dim</code> - The dimension of the vector.</li>
</ul>
</div></div><h3 class='impl'><code>impl<N: <a class='trait' href='../rand/trait.Rand.html' title='rand::Rand'>Rand</a> + <a class='trait' href='../num/traits/trait.Zero.html' title='num::traits::Zero'>Zero</a>> <a class='struct' href='../nalgebra/struct.DVec2.html' title='nalgebra::DVec2'>DVec2</a><N></code></h3><div class='impl-items'><h4 id='method.new_random' class='method'><code>fn <a href='#method.new_random' class='fnname'>new_random</a>(dim: <a href='http://doc.rust-lang.org/nightly/std/primitive.usize.html'>usize</a>) -> <a class='struct' href='../nalgebra/struct.DVec2.html' title='nalgebra::DVec2'>DVec2</a><N></code></h4>
<div class='docblock'><p>Builds a vector filled with random values.</p>
</div></div><h3 class='impl'><code>impl<N: <a class='trait' href='../nalgebra/trait.BaseFloat.html' title='nalgebra::BaseFloat'>BaseFloat</a> + <a class='trait' href='../nalgebra/trait.ApproxEq.html' title='nalgebra::ApproxEq'>ApproxEq</a><N>> <a class='struct' href='../nalgebra/struct.DVec2.html' title='nalgebra::DVec2'>DVec2</a><N></code></h3><div class='impl-items'><h4 id='method.canonical_basis_with_dim' class='method'><code>fn <a href='#method.canonical_basis_with_dim' class='fnname'>canonical_basis_with_dim</a>(dim: <a href='http://doc.rust-lang.org/nightly/std/primitive.usize.html'>usize</a>) -> <a class='struct' href='http://doc.rust-lang.org/nightly/collections/vec/struct.Vec.html' title='collections::vec::Vec'>Vec</a><<a class='struct' href='../nalgebra/struct.DVec2.html' title='nalgebra::DVec2'>DVec2</a><N>></code></h4>
<div class='docblock'><p>Computes the canonical basis for the given dimension. A canonical basis is a set of
vectors, mutually orthogonal, with all its component equal to 0.0 except one which is equal
to 1.0.</p>
</div><h4 id='method.orthogonal_subspace_basis' class='method'><code>fn <a href='#method.orthogonal_subspace_basis' class='fnname'>orthogonal_subspace_basis</a>(&self) -> <a class='struct' href='http://doc.rust-lang.org/nightly/collections/vec/struct.Vec.html' title='collections::vec::Vec'>Vec</a><<a class='struct' href='../nalgebra/struct.DVec2.html' title='nalgebra::DVec2'>DVec2</a><N>></code></h4>
<div class='docblock'><p>Computes a basis of the space orthogonal to the vector. If the input vector is of dimension
<code>n</code>, this will return <code>n - 1</code> vectors.</p>
</div></div><h3 class='impl'><code>impl<N: <a class='trait' href='http://doc.rust-lang.org/nightly/core/marker/trait.Copy.html' title='core::marker::Copy'>Copy</a> + <a class='trait' href='../num/traits/trait.Zero.html' title='num::traits::Zero'>Zero</a>> <a class='struct' href='../nalgebra/struct.DVec2.html' title='nalgebra::DVec2'>DVec2</a><N></code></h3><div class='impl-items'><h4 id='method.from_elem' class='method'><code>fn <a href='#method.from_elem' class='fnname'>from_elem</a>(dim: <a href='http://doc.rust-lang.org/nightly/std/primitive.usize.html'>usize</a>, elem: N) -> <a class='struct' href='../nalgebra/struct.DVec2.html' title='nalgebra::DVec2'>DVec2</a><N></code></h4>
<div class='docblock'><p>Builds a vector filled with a constant.</p>
</div></div><h3 class='impl'><code>impl<N: <a class='trait' href='http://doc.rust-lang.org/nightly/core/marker/trait.Copy.html' title='core::marker::Copy'>Copy</a> + <a class='trait' href='../num/traits/trait.Zero.html' title='num::traits::Zero'>Zero</a>> <a class='struct' href='../nalgebra/struct.DVec2.html' title='nalgebra::DVec2'>DVec2</a><N></code></h3><div class='impl-items'><h4 id='method.from_slice' class='method'><code>fn <a href='#method.from_slice' class='fnname'>from_slice</a>(dim: <a href='http://doc.rust-lang.org/nightly/std/primitive.usize.html'>usize</a>, vec: <a href='http://doc.rust-lang.org/nightly/std/primitive.slice.html'>&[N]</a>) -> <a class='struct' href='../nalgebra/struct.DVec2.html' title='nalgebra::DVec2'>DVec2</a><N></code></h4>
<div class='docblock'><p>Builds a vector filled with the components provided by a vector.</p>
<p>The vector must have at least <code>dim</code> elements.</p>
</div></div><h3 class='impl'><code>impl<N: <a class='trait' href='../num/traits/trait.Zero.html' title='num::traits::Zero'>Zero</a>> <a class='struct' href='../nalgebra/struct.DVec2.html' title='nalgebra::DVec2'>DVec2</a><N></code></h3><div class='impl-items'><h4 id='method.from_fn' class='method'><code>fn <a href='#method.from_fn' class='fnname'>from_fn</a><F: <a class='trait' href='http://doc.rust-lang.org/nightly/core/ops/trait.FnMut.html' title='core::ops::FnMut'>FnMut</a>(<a href='http://doc.rust-lang.org/nightly/std/primitive.usize.html'>usize</a>) -> N>(dim: <a href='http://doc.rust-lang.org/nightly/std/primitive.usize.html'>usize</a>, f: F) -> <a class='struct' href='../nalgebra/struct.DVec2.html' title='nalgebra::DVec2'>DVec2</a><N></code></h4>
<div class='docblock'><p>Builds a vector filled with the result of a function.</p>
</div></div><h2 id='implementations'>Trait Implementations</h2><h3 class='impl'><code>impl<N: <a class='trait' href='http://doc.rust-lang.org/nightly/core/cmp/trait.PartialEq.html' title='core::cmp::PartialEq'>PartialEq</a>> <a class='trait' href='http://doc.rust-lang.org/nightly/core/cmp/trait.PartialEq.html' title='core::cmp::PartialEq'>PartialEq</a> for <a class='struct' href='../nalgebra/struct.DVec2.html' title='nalgebra::DVec2'>DVec2</a><N></code></h3><div class='impl-items'><h4 id='method.eq' class='method'><code>fn <a href='http://doc.rust-lang.org/nightly/core/cmp/trait.PartialEq.html#method.eq' class='fnname'>eq</a>(&self, other: &<a class='struct' href='../nalgebra/struct.DVec2.html' title='nalgebra::DVec2'>DVec2</a><N>) -> <a href='http://doc.rust-lang.org/nightly/std/primitive.bool.html'>bool</a></code></h4>
<h4 id='method.ne' class='method'><code>fn <a href='http://doc.rust-lang.org/nightly/core/cmp/trait.PartialEq.html#method.ne' class='fnname'>ne</a>(&self, other: &Rhs) -> <a href='http://doc.rust-lang.org/nightly/std/primitive.bool.html'>bool</a></code></h4>
</div><h3 class='impl'><code>impl<N: <a class='trait' href='http://doc.rust-lang.org/nightly/core/clone/trait.Clone.html' title='core::clone::Clone'>Clone</a>> <a class='trait' href='http://doc.rust-lang.org/nightly/core/clone/trait.Clone.html' title='core::clone::Clone'>Clone</a> for <a class='struct' href='../nalgebra/struct.DVec2.html' title='nalgebra::DVec2'>DVec2</a><N></code></h3><div class='impl-items'><h4 id='method.clone' class='method'><code>fn <a href='http://doc.rust-lang.org/nightly/core/clone/trait.Clone.html#method.clone' class='fnname'>clone</a>(&self) -> <a class='struct' href='../nalgebra/struct.DVec2.html' title='nalgebra::DVec2'>DVec2</a><N></code></h4>
<h4 id='method.clone_from' class='method'><code>fn <a href='http://doc.rust-lang.org/nightly/core/clone/trait.Clone.html#method.clone_from' class='fnname'>clone_from</a>(&mut self, source: &Self)</code></h4>
</div><h3 class='impl'><code>impl<N> <a class='trait' href='../nalgebra/trait.Shape.html' title='nalgebra::Shape'>Shape</a><<a href='http://doc.rust-lang.org/nightly/std/primitive.usize.html'>usize</a>> for <a class='struct' href='../nalgebra/struct.DVec2.html' title='nalgebra::DVec2'>DVec2</a><N></code></h3><div class='impl-items'><h4 id='method.shape' class='method'><code>fn <a href='../nalgebra/trait.Shape.html#method.shape' class='fnname'>shape</a>(&self) -> <a href='http://doc.rust-lang.org/nightly/std/primitive.usize.html'>usize</a></code></h4>
</div><h3 class='impl'><code>impl<N: <a class='trait' href='http://doc.rust-lang.org/nightly/core/marker/trait.Copy.html' title='core::marker::Copy'>Copy</a>> <a class='trait' href='../nalgebra/trait.Indexable.html' title='nalgebra::Indexable'>Indexable</a><<a href='http://doc.rust-lang.org/nightly/std/primitive.usize.html'>usize</a>, N> for <a class='struct' href='../nalgebra/struct.DVec2.html' title='nalgebra::DVec2'>DVec2</a><N></code></h3><div class='impl-items'><h4 id='method.swap' class='method'><code>fn <a href='../nalgebra/trait.Indexable.html#method.swap' class='fnname'>swap</a>(&mut self, i: <a href='http://doc.rust-lang.org/nightly/std/primitive.usize.html'>usize</a>, j: <a href='http://doc.rust-lang.org/nightly/std/primitive.usize.html'>usize</a>)</code></h4>
<h4 id='method.unsafe_at' class='method'><code>unsafe fn <a href='../nalgebra/trait.Indexable.html#method.unsafe_at' class='fnname'>unsafe_at</a>(&self, i: <a href='http://doc.rust-lang.org/nightly/std/primitive.usize.html'>usize</a>) -> N</code></h4>
<h4 id='method.unsafe_set' class='method'><code>unsafe fn <a href='../nalgebra/trait.Indexable.html#method.unsafe_set' class='fnname'>unsafe_set</a>(&mut self, i: <a href='http://doc.rust-lang.org/nightly/std/primitive.usize.html'>usize</a>, val: N)</code></h4>
</div><h3 class='impl'><code>impl<N> <a class='trait' href='http://doc.rust-lang.org/nightly/core/ops/trait.Index.html' title='core::ops::Index'>Index</a><<a href='http://doc.rust-lang.org/nightly/std/primitive.usize.html'>usize</a>> for <a class='struct' href='../nalgebra/struct.DVec2.html' title='nalgebra::DVec2'>DVec2</a><N></code></h3><div class='impl-items'><h4 id='assoc_type.Output' class='type'><code>type Output = N</code></h4>
<h4 id='method.index' class='method'><code>fn <a href='http://doc.rust-lang.org/nightly/core/ops/trait.Index.html#method.index' class='fnname'>index</a>(&self, i: <a href='http://doc.rust-lang.org/nightly/std/primitive.usize.html'>usize</a>) -> &N</code></h4>
</div><h3 class='impl'><code>impl<N> <a class='trait' href='http://doc.rust-lang.org/nightly/core/ops/trait.IndexMut.html' title='core::ops::IndexMut'>IndexMut</a><<a href='http://doc.rust-lang.org/nightly/std/primitive.usize.html'>usize</a>> for <a class='struct' href='../nalgebra/struct.DVec2.html' title='nalgebra::DVec2'>DVec2</a><N></code></h3><div class='impl-items'><h4 id='method.index_mut' class='method'><code>fn <a href='http://doc.rust-lang.org/nightly/core/ops/trait.IndexMut.html#method.index_mut' class='fnname'>index_mut</a>(&mut self, i: <a href='http://doc.rust-lang.org/nightly/std/primitive.usize.html'>usize</a>) -> &mut N</code></h4>
</div><h3 class='impl'><code>impl<N> <a class='trait' href='../nalgebra/trait.Iterable.html' title='nalgebra::Iterable'>Iterable</a><N> for <a class='struct' href='../nalgebra/struct.DVec2.html' title='nalgebra::DVec2'>DVec2</a><N></code></h3><div class='impl-items'><h4 id='method.iter' class='method'><code>fn <a href='../nalgebra/trait.Iterable.html#method.iter' class='fnname'>iter</a><'l>(&'l self) -> <a class='struct' href='http://doc.rust-lang.org/nightly/core/slice/struct.Iter.html' title='core::slice::Iter'>Iter</a><'l, N></code></h4>
</div><h3 class='impl'><code>impl<N> <a class='trait' href='../nalgebra/trait.IterableMut.html' title='nalgebra::IterableMut'>IterableMut</a><N> for <a class='struct' href='../nalgebra/struct.DVec2.html' title='nalgebra::DVec2'>DVec2</a><N></code></h3><div class='impl-items'><h4 id='method.iter_mut' class='method'><code>fn <a href='../nalgebra/trait.IterableMut.html#method.iter_mut' class='fnname'>iter_mut</a><'l>(&'l mut self) -> <a class='struct' href='http://doc.rust-lang.org/nightly/core/slice/struct.IterMut.html' title='core::slice::IterMut'>IterMut</a><'l, N></code></h4>
</div><h3 class='impl'><code>impl<N: <a class='trait' href='http://doc.rust-lang.org/nightly/core/marker/trait.Copy.html' title='core::marker::Copy'>Copy</a> + <a class='trait' href='http://doc.rust-lang.org/nightly/core/ops/trait.Add.html' title='core::ops::Add'>Add</a><N, Output=N> + <a class='trait' href='http://doc.rust-lang.org/nightly/core/ops/trait.Mul.html' title='core::ops::Mul'>Mul</a><N, Output=N>> <a class='trait' href='../nalgebra/trait.Axpy.html' title='nalgebra::Axpy'>Axpy</a><N> for <a class='struct' href='../nalgebra/struct.DVec2.html' title='nalgebra::DVec2'>DVec2</a><N></code></h3><div class='impl-items'><h4 id='method.axpy' class='method'><code>fn <a href='../nalgebra/trait.Axpy.html#method.axpy' class='fnname'>axpy</a>(&mut self, a: &N, x: &<a class='struct' href='../nalgebra/struct.DVec2.html' title='nalgebra::DVec2'>DVec2</a><N>)</code></h4>
</div><h3 class='impl'><code>impl<N: <a class='trait' href='http://doc.rust-lang.org/nightly/core/marker/trait.Copy.html' title='core::marker::Copy'>Copy</a> + <a class='trait' href='http://doc.rust-lang.org/nightly/core/ops/trait.Mul.html' title='core::ops::Mul'>Mul</a><N, Output=N> + <a class='trait' href='../num/traits/trait.Zero.html' title='num::traits::Zero'>Zero</a>> <a class='trait' href='http://doc.rust-lang.org/nightly/core/ops/trait.Mul.html' title='core::ops::Mul'>Mul</a><<a class='struct' href='../nalgebra/struct.DVec2.html' title='nalgebra::DVec2'>DVec2</a><N>> for <a class='struct' href='../nalgebra/struct.DVec2.html' title='nalgebra::DVec2'>DVec2</a><N></code></h3><div class='impl-items'><h4 id='assoc_type.Output' class='type'><code>type Output = <a class='struct' href='../nalgebra/struct.DVec2.html' title='nalgebra::DVec2'>DVec2</a><N></code></h4>
<h4 id='method.mul' class='method'><code>fn <a href='http://doc.rust-lang.org/nightly/core/ops/trait.Mul.html#method.mul' class='fnname'>mul</a>(self, right: <a class='struct' href='../nalgebra/struct.DVec2.html' title='nalgebra::DVec2'>DVec2</a><N>) -> <a class='struct' href='../nalgebra/struct.DVec2.html' title='nalgebra::DVec2'>DVec2</a><N></code></h4>
</div><h3 class='impl'><code>impl<N: <a class='trait' href='http://doc.rust-lang.org/nightly/core/marker/trait.Copy.html' title='core::marker::Copy'>Copy</a> + <a class='trait' href='http://doc.rust-lang.org/nightly/core/ops/trait.Div.html' title='core::ops::Div'>Div</a><N, Output=N> + <a class='trait' href='../num/traits/trait.Zero.html' title='num::traits::Zero'>Zero</a>> <a class='trait' href='http://doc.rust-lang.org/nightly/core/ops/trait.Div.html' title='core::ops::Div'>Div</a><<a class='struct' href='../nalgebra/struct.DVec2.html' title='nalgebra::DVec2'>DVec2</a><N>> for <a class='struct' href='../nalgebra/struct.DVec2.html' title='nalgebra::DVec2'>DVec2</a><N></code></h3><div class='impl-items'><h4 id='assoc_type.Output' class='type'><code>type Output = <a class='struct' href='../nalgebra/struct.DVec2.html' title='nalgebra::DVec2'>DVec2</a><N></code></h4>
<h4 id='method.div' class='method'><code>fn <a href='http://doc.rust-lang.org/nightly/core/ops/trait.Div.html#method.div' class='fnname'>div</a>(self, right: <a class='struct' href='../nalgebra/struct.DVec2.html' title='nalgebra::DVec2'>DVec2</a><N>) -> <a class='struct' href='../nalgebra/struct.DVec2.html' title='nalgebra::DVec2'>DVec2</a><N></code></h4>
</div><h3 class='impl'><code>impl<N: <a class='trait' href='http://doc.rust-lang.org/nightly/core/marker/trait.Copy.html' title='core::marker::Copy'>Copy</a> + <a class='trait' href='http://doc.rust-lang.org/nightly/core/ops/trait.Add.html' title='core::ops::Add'>Add</a><N, Output=N> + <a class='trait' href='../num/traits/trait.Zero.html' title='num::traits::Zero'>Zero</a>> <a class='trait' href='http://doc.rust-lang.org/nightly/core/ops/trait.Add.html' title='core::ops::Add'>Add</a><<a class='struct' href='../nalgebra/struct.DVec2.html' title='nalgebra::DVec2'>DVec2</a><N>> for <a class='struct' href='../nalgebra/struct.DVec2.html' title='nalgebra::DVec2'>DVec2</a><N></code></h3><div class='impl-items'><h4 id='assoc_type.Output' class='type'><code>type Output = <a class='struct' href='../nalgebra/struct.DVec2.html' title='nalgebra::DVec2'>DVec2</a><N></code></h4>
<h4 id='method.add' class='method'><code>fn <a href='http://doc.rust-lang.org/nightly/core/ops/trait.Add.html#method.add' class='fnname'>add</a>(self, right: <a class='struct' href='../nalgebra/struct.DVec2.html' title='nalgebra::DVec2'>DVec2</a><N>) -> <a class='struct' href='../nalgebra/struct.DVec2.html' title='nalgebra::DVec2'>DVec2</a><N></code></h4>
</div><h3 class='impl'><code>impl<N: <a class='trait' href='http://doc.rust-lang.org/nightly/core/marker/trait.Copy.html' title='core::marker::Copy'>Copy</a> + <a class='trait' href='http://doc.rust-lang.org/nightly/core/ops/trait.Sub.html' title='core::ops::Sub'>Sub</a><N, Output=N> + <a class='trait' href='../num/traits/trait.Zero.html' title='num::traits::Zero'>Zero</a>> <a class='trait' href='http://doc.rust-lang.org/nightly/core/ops/trait.Sub.html' title='core::ops::Sub'>Sub</a><<a class='struct' href='../nalgebra/struct.DVec2.html' title='nalgebra::DVec2'>DVec2</a><N>> for <a class='struct' href='../nalgebra/struct.DVec2.html' title='nalgebra::DVec2'>DVec2</a><N></code></h3><div class='impl-items'><h4 id='assoc_type.Output' class='type'><code>type Output = <a class='struct' href='../nalgebra/struct.DVec2.html' title='nalgebra::DVec2'>DVec2</a><N></code></h4>
<h4 id='method.sub' class='method'><code>fn <a href='http://doc.rust-lang.org/nightly/core/ops/trait.Sub.html#method.sub' class='fnname'>sub</a>(self, right: <a class='struct' href='../nalgebra/struct.DVec2.html' title='nalgebra::DVec2'>DVec2</a><N>) -> <a class='struct' href='../nalgebra/struct.DVec2.html' title='nalgebra::DVec2'>DVec2</a><N></code></h4>
</div><h3 class='impl'><code>impl<N: <a class='trait' href='http://doc.rust-lang.org/nightly/core/ops/trait.Neg.html' title='core::ops::Neg'>Neg</a><Output=N> + <a class='trait' href='../num/traits/trait.Zero.html' title='num::traits::Zero'>Zero</a> + <a class='trait' href='http://doc.rust-lang.org/nightly/core/marker/trait.Copy.html' title='core::marker::Copy'>Copy</a>> <a class='trait' href='http://doc.rust-lang.org/nightly/core/ops/trait.Neg.html' title='core::ops::Neg'>Neg</a> for <a class='struct' href='../nalgebra/struct.DVec2.html' title='nalgebra::DVec2'>DVec2</a><N></code></h3><div class='impl-items'><h4 id='assoc_type.Output' class='type'><code>type Output = <a class='struct' href='../nalgebra/struct.DVec2.html' title='nalgebra::DVec2'>DVec2</a><N></code></h4>
<h4 id='method.neg' class='method'><code>fn <a href='http://doc.rust-lang.org/nightly/core/ops/trait.Neg.html#method.neg' class='fnname'>neg</a>(self) -> <a class='struct' href='../nalgebra/struct.DVec2.html' title='nalgebra::DVec2'>DVec2</a><N></code></h4>
</div><h3 class='impl'><code>impl<N: <a class='trait' href='../nalgebra/trait.BaseNum.html' title='nalgebra::BaseNum'>BaseNum</a>> <a class='trait' href='../nalgebra/trait.Dot.html' title='nalgebra::Dot'>Dot</a><N> for <a class='struct' href='../nalgebra/struct.DVec2.html' title='nalgebra::DVec2'>DVec2</a><N></code></h3><div class='impl-items'><h4 id='method.dot' class='method'><code>fn <a href='../nalgebra/trait.Dot.html#method.dot' class='fnname'>dot</a>(&self, other: &<a class='struct' href='../nalgebra/struct.DVec2.html' title='nalgebra::DVec2'>DVec2</a><N>) -> N</code></h4>
</div><h3 class='impl'><code>impl<N: <a class='trait' href='../nalgebra/trait.BaseFloat.html' title='nalgebra::BaseFloat'>BaseFloat</a>> <a class='trait' href='../nalgebra/trait.Norm.html' title='nalgebra::Norm'>Norm</a><N> for <a class='struct' href='../nalgebra/struct.DVec2.html' title='nalgebra::DVec2'>DVec2</a><N></code></h3><div class='impl-items'><h4 id='method.sqnorm' class='method'><code>fn <a href='../nalgebra/trait.Norm.html#method.sqnorm' class='fnname'>sqnorm</a>(&self) -> N</code></h4>
<h4 id='method.normalize' class='method'><code>fn <a href='../nalgebra/trait.Norm.html#method.normalize' class='fnname'>normalize</a>(&self) -> <a class='struct' href='../nalgebra/struct.DVec2.html' title='nalgebra::DVec2'>DVec2</a><N></code></h4>
<h4 id='method.normalize_mut' class='method'><code>fn <a href='../nalgebra/trait.Norm.html#method.normalize_mut' class='fnname'>normalize_mut</a>(&mut self) -> N</code></h4>
<h4 id='method.norm' class='method'><code>fn <a href='../nalgebra/trait.Norm.html#method.norm' class='fnname'>norm</a>(&self) -> N</code></h4>
</div><h3 class='impl'><code>impl<N: <a class='trait' href='../nalgebra/trait.ApproxEq.html' title='nalgebra::ApproxEq'>ApproxEq</a><N>> <a class='trait' href='../nalgebra/trait.ApproxEq.html' title='nalgebra::ApproxEq'>ApproxEq</a><N> for <a class='struct' href='../nalgebra/struct.DVec2.html' title='nalgebra::DVec2'>DVec2</a><N></code></h3><div class='impl-items'><h4 id='method.approx_epsilon' class='method'><code>fn <a href='../nalgebra/trait.ApproxEq.html#method.approx_epsilon' class='fnname'>approx_epsilon</a>(_: <a class='enum' href='http://doc.rust-lang.org/nightly/core/option/enum.Option.html' title='core::option::Option'>Option</a><<a class='struct' href='../nalgebra/struct.DVec2.html' title='nalgebra::DVec2'>DVec2</a><N>>) -> N</code></h4>
<h4 id='method.approx_ulps' class='method'><code>fn <a href='../nalgebra/trait.ApproxEq.html#method.approx_ulps' class='fnname'>approx_ulps</a>(_: <a class='enum' href='http://doc.rust-lang.org/nightly/core/option/enum.Option.html' title='core::option::Option'>Option</a><<a class='struct' href='../nalgebra/struct.DVec2.html' title='nalgebra::DVec2'>DVec2</a><N>>) -> <a href='http://doc.rust-lang.org/nightly/std/primitive.u32.html'>u32</a></code></h4>
<h4 id='method.approx_eq_eps' class='method'><code>fn <a href='../nalgebra/trait.ApproxEq.html#method.approx_eq_eps' class='fnname'>approx_eq_eps</a>(&self, other: &<a class='struct' href='../nalgebra/struct.DVec2.html' title='nalgebra::DVec2'>DVec2</a><N>, epsilon: &N) -> <a href='http://doc.rust-lang.org/nightly/std/primitive.bool.html'>bool</a></code></h4>
<h4 id='method.approx_eq_ulps' class='method'><code>fn <a href='../nalgebra/trait.ApproxEq.html#method.approx_eq_ulps' class='fnname'>approx_eq_ulps</a>(&self, other: &<a class='struct' href='../nalgebra/struct.DVec2.html' title='nalgebra::DVec2'>DVec2</a><N>, ulps: <a href='http://doc.rust-lang.org/nightly/std/primitive.u32.html'>u32</a>) -> <a href='http://doc.rust-lang.org/nightly/std/primitive.bool.html'>bool</a></code></h4>
<h4 id='method.approx_eq' class='method'><code>fn <a href='../nalgebra/trait.ApproxEq.html#method.approx_eq' class='fnname'>approx_eq</a>(&self, other: &Self) -> <a href='http://doc.rust-lang.org/nightly/std/primitive.bool.html'>bool</a></code></h4>
</div><h3 class='impl'><code>impl<N: <a class='trait' href='http://doc.rust-lang.org/nightly/core/marker/trait.Copy.html' title='core::marker::Copy'>Copy</a> + <a class='trait' href='http://doc.rust-lang.org/nightly/core/ops/trait.Mul.html' title='core::ops::Mul'>Mul</a><N, Output=N> + <a class='trait' href='../num/traits/trait.Zero.html' title='num::traits::Zero'>Zero</a>> <a class='trait' href='http://doc.rust-lang.org/nightly/core/ops/trait.Mul.html' title='core::ops::Mul'>Mul</a><N> for <a class='struct' href='../nalgebra/struct.DVec2.html' title='nalgebra::DVec2'>DVec2</a><N></code></h3><div class='impl-items'><h4 id='assoc_type.Output' class='type'><code>type Output = <a class='struct' href='../nalgebra/struct.DVec2.html' title='nalgebra::DVec2'>DVec2</a><N></code></h4>
<h4 id='method.mul' class='method'><code>fn <a href='http://doc.rust-lang.org/nightly/core/ops/trait.Mul.html#method.mul' class='fnname'>mul</a>(self, right: N) -> <a class='struct' href='../nalgebra/struct.DVec2.html' title='nalgebra::DVec2'>DVec2</a><N></code></h4>
</div><h3 class='impl'><code>impl<N: <a class='trait' href='http://doc.rust-lang.org/nightly/core/marker/trait.Copy.html' title='core::marker::Copy'>Copy</a> + <a class='trait' href='http://doc.rust-lang.org/nightly/core/ops/trait.Div.html' title='core::ops::Div'>Div</a><N, Output=N> + <a class='trait' href='../num/traits/trait.Zero.html' title='num::traits::Zero'>Zero</a>> <a class='trait' href='http://doc.rust-lang.org/nightly/core/ops/trait.Div.html' title='core::ops::Div'>Div</a><N> for <a class='struct' href='../nalgebra/struct.DVec2.html' title='nalgebra::DVec2'>DVec2</a><N></code></h3><div class='impl-items'><h4 id='assoc_type.Output' class='type'><code>type Output = <a class='struct' href='../nalgebra/struct.DVec2.html' title='nalgebra::DVec2'>DVec2</a><N></code></h4>
<h4 id='method.div' class='method'><code>fn <a href='http://doc.rust-lang.org/nightly/core/ops/trait.Div.html#method.div' class='fnname'>div</a>(self, right: N) -> <a class='struct' href='../nalgebra/struct.DVec2.html' title='nalgebra::DVec2'>DVec2</a><N></code></h4>
</div><h3 class='impl'><code>impl<N: <a class='trait' href='http://doc.rust-lang.org/nightly/core/marker/trait.Copy.html' title='core::marker::Copy'>Copy</a> + <a class='trait' href='http://doc.rust-lang.org/nightly/core/ops/trait.Add.html' title='core::ops::Add'>Add</a><N, Output=N> + <a class='trait' href='../num/traits/trait.Zero.html' title='num::traits::Zero'>Zero</a>> <a class='trait' href='http://doc.rust-lang.org/nightly/core/ops/trait.Add.html' title='core::ops::Add'>Add</a><N> for <a class='struct' href='../nalgebra/struct.DVec2.html' title='nalgebra::DVec2'>DVec2</a><N></code></h3><div class='impl-items'><h4 id='assoc_type.Output' class='type'><code>type Output = <a class='struct' href='../nalgebra/struct.DVec2.html' title='nalgebra::DVec2'>DVec2</a><N></code></h4>
<h4 id='method.add' class='method'><code>fn <a href='http://doc.rust-lang.org/nightly/core/ops/trait.Add.html#method.add' class='fnname'>add</a>(self, right: N) -> <a class='struct' href='../nalgebra/struct.DVec2.html' title='nalgebra::DVec2'>DVec2</a><N></code></h4>
</div><h3 class='impl'><code>impl<N: <a class='trait' href='http://doc.rust-lang.org/nightly/core/marker/trait.Copy.html' title='core::marker::Copy'>Copy</a> + <a class='trait' href='http://doc.rust-lang.org/nightly/core/ops/trait.Sub.html' title='core::ops::Sub'>Sub</a><N, Output=N> + <a class='trait' href='../num/traits/trait.Zero.html' title='num::traits::Zero'>Zero</a>> <a class='trait' href='http://doc.rust-lang.org/nightly/core/ops/trait.Sub.html' title='core::ops::Sub'>Sub</a><N> for <a class='struct' href='../nalgebra/struct.DVec2.html' title='nalgebra::DVec2'>DVec2</a><N></code></h3><div class='impl-items'><h4 id='assoc_type.Output' class='type'><code>type Output = <a class='struct' href='../nalgebra/struct.DVec2.html' title='nalgebra::DVec2'>DVec2</a><N></code></h4>
<h4 id='method.sub' class='method'><code>fn <a href='http://doc.rust-lang.org/nightly/core/ops/trait.Sub.html#method.sub' class='fnname'>sub</a>(self, right: N) -> <a class='struct' href='../nalgebra/struct.DVec2.html' title='nalgebra::DVec2'>DVec2</a><N></code></h4>
</div><h3 class='impl'><code>impl<N: <a class='trait' href='../num/traits/trait.Zero.html' title='num::traits::Zero'>Zero</a>> <a class='trait' href='http://doc.rust-lang.org/nightly/core/iter/trait.FromIterator.html' title='core::iter::FromIterator'>FromIterator</a><N> for <a class='struct' href='../nalgebra/struct.DVec2.html' title='nalgebra::DVec2'>DVec2</a><N></code></h3><div class='impl-items'><h4 id='method.from_iter' class='method'><code>fn <a href='http://doc.rust-lang.org/nightly/core/iter/trait.FromIterator.html#method.from_iter' class='fnname'>from_iter</a><I: <a class='trait' href='http://doc.rust-lang.org/nightly/core/iter/trait.IntoIterator.html' title='core::iter::IntoIterator'>IntoIterator</a><Item=N>>(param: I) -> <a class='struct' href='../nalgebra/struct.DVec2.html' title='nalgebra::DVec2'>DVec2</a><N></code></h4>
</div></section>
<section id='search' class="content hidden"></section>
<section class="footer"></section>
<div id="help" class="hidden">
<div class="shortcuts">
<h1>Keyboard shortcuts</h1>
<dl>
<dt>?</dt>
<dd>Show this help dialog</dd>
<dt>S</dt>
<dd>Focus the search field</dd>
<dt>⇤</dt>
<dd>Move up in search results</dd>
<dt>⇥</dt>
<dd>Move down in search results</dd>
<dt>⏎</dt>
<dd>Go to active search result</dd>
</dl>
</div>
<div class="infos">
<h1>Search tricks</h1>
<p>
Prefix searches with a type followed by a colon (e.g.
<code>fn:</code>) to restrict the search to a given type.
</p>
<p>
Accepted types are: <code>fn</code>, <code>mod</code>,
<code>struct</code>, <code>enum</code>,
<code>trait</code>, <code>typedef</code> (or
<code>tdef</code>).
</p>
<p>
Search functions by type signature (e.g.
<code>vec -> usize</code>)
</p>
</div>
</div>
<script>
window.rootPath = "../";
window.currentCrate = "nalgebra";
window.playgroundUrl = "";
</script>
<script src="../jquery.js"></script>
<script src="../main.js"></script>
<script async src="../search-index.js"></script>
</body>
</html> |
docs/modules/_crosshair_test_.html | saul/demofile | <!doctype html>
<html class="default no-js">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>"crosshair.test" | demofile</title>
<meta name="description" content="Documentation for demofile">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="../assets/css/main.css">
</head>
<body>
<header>
<div class="tsd-page-toolbar">
<div class="container">
<div class="table-wrap">
<div class="table-cell" id="tsd-search" data-index="../assets/js/search.json" data-base="..">
<div class="field">
<label for="tsd-search-field" class="tsd-widget search no-caption">Search</label>
<input id="tsd-search-field" type="text" />
</div>
<ul class="results">
<li class="state loading">Preparing search index...</li>
<li class="state failure">The search index is not available</li>
</ul>
<a href="../index.html" class="title">demofile</a>
</div>
<div class="table-cell" id="tsd-widgets">
<div id="tsd-filter">
<a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a>
<div class="tsd-filter-group">
<div class="tsd-select" id="tsd-filter-visibility">
<span class="tsd-select-label">All</span>
<ul class="tsd-select-list">
<li data-value="public">Public</li>
<li data-value="protected">Public/Protected</li>
<li data-value="private" class="selected">All</li>
</ul>
</div>
<input type="checkbox" id="tsd-filter-inherited" checked />
<label class="tsd-widget" for="tsd-filter-inherited">Inherited</label>
<input type="checkbox" id="tsd-filter-externals" checked />
<label class="tsd-widget" for="tsd-filter-externals">Externals</label>
<input type="checkbox" id="tsd-filter-only-exported" />
<label class="tsd-widget" for="tsd-filter-only-exported">Only exported</label>
</div>
</div>
<a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a>
</div>
</div>
</div>
</div>
<div class="tsd-page-title">
<div class="container">
<ul class="tsd-breadcrumb">
<li>
<a href="../globals.html">Globals</a>
</li>
<li>
<a href="_crosshair_test_.html">"crosshair.test"</a>
</li>
</ul>
<h1>Module "crosshair.test"</h1>
</div>
</div>
</header>
<div class="container container-main">
<div class="row">
<div class="col-8 col-content">
</div>
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
<nav class="tsd-navigation primary">
<ul>
<li class="globals ">
<a href="../globals.html"><em>Globals</em></a>
</li>
<li class="current tsd-kind-module">
<a href="_crosshair_test_.html">"crosshair.test"</a>
</li>
</ul>
</nav>
<nav class="tsd-navigation secondary menu-sticky">
<ul class="before-current">
</ul>
</nav>
</div>
</div>
</div>
<footer class="with-border-bottom">
<div class="container">
<h2>Legend</h2>
<div class="tsd-legend-group">
<ul class="tsd-legend">
<li class="tsd-kind-object-literal"><span class="tsd-kind-icon">Object literal</span></li>
<li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li>
<li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li>
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
<li class="tsd-kind-type-alias tsd-has-type-parameter"><span class="tsd-kind-icon">Type alias with type parameter</span></li>
</ul>
<ul class="tsd-legend">
<li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li>
<li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li>
</ul>
<ul class="tsd-legend">
<li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li>
<li class="tsd-kind-class tsd-has-type-parameter"><span class="tsd-kind-icon">Class with type parameter</span></li>
</ul>
<ul class="tsd-legend">
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
</ul>
</div>
</div>
</footer>
<div class="container tsd-generator">
<p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p>
</div>
<div class="overlay"></div>
<script src="../assets/js/main.js"></script>
</body>
</html> |
clean/Linux-x86_64-4.08.1-2.0.5/released/8.11.1/graph-basics/8.10.0.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>graph-basics: 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 / graph-basics - 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>
graph-basics
<small>
8.10.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-02-19 08:01:03 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-02-19 08:01:03 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.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: "Hugo.Herbelin@inria.fr"
homepage: "https://github.com/coq-contribs/graph-basics"
license: "LGPL 2.1"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/GraphBasics"]
depends: [
"ocaml"
"coq" {>= "8.10" & < "8.11~"}
]
tags: [
"keyword: graph theory"
"keyword: Curry-Howard's isomorphism"
"keyword: inductive definitions"
"category: Mathematics/Combinatorics and Graph Theory"
"date: April 2001"
]
authors: [
"Jean Duprat"
]
bug-reports: "https://github.com/coq-contribs/graph-basics/issues"
dev-repo: "git+https://github.com/coq-contribs/graph-basics.git"
synopsis: "a Coq toolkit for graph theory"
description: """
This library offers inductive definitions of basics
in graph theory. The goal is to offer the possibility to write proofs
and programs on graphs in the same formalism : the Coq language.
It now contains : vertices, arcs, edges, degrees, graphs, directed
graphs,
paths, acyclic graphs, connected graphs and tree."""
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/graph-basics/archive/v8.10.0.tar.gz"
checksum: "md5=b06da974ed889270a44d45a2579cfd29"
}
</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-graph-basics.8.10.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-graph-basics -> coq < 8.11~ -> ocaml < 4.06.0
base of this switch (use `--unlock-base' to force)
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-graph-basics.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>
|
status.html | debops/debops.github.io | ---
layout: default
---
<link rel="stylesheet" href="css/status_page.css">
{% capture status %}{% include status.md %}{% endcapture %}
{{ status | markdownify }}
|
layouts/partials/head/meta.html | dencold/hasper | <meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta property="og:title" content="{{if ne .URL "/"}} {{.Title}} · {{end}} {{.Site.Title}}" />
<meta property="og:site_name" content="{{.Site.Title}}" />
<meta property="og:url" content="{{.Permalink}}" />
{{if .IsPage}}
<meta property="og:type" content="article" />
<meta property="og:article:published_time" content="{{.Date.Format "2006-01-02T15:04:05Z07:00" | safeHTML}}" />
{{range .Params.tags}}
<meta property="og:article:tag" content="{{.}}" />
{{end}}
{{else}}
<meta property="og:type" content="website" />
{{end}}
<meta name="description" content="{{.Site.Params.description}}" />
<meta name="HandheldFriendly" content="True" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
country/overview/Jordan/spending/index.html | okfn/opendataindex-2015 | <!DOCTYPE html><html><head><meta charset="utf-8" />
<meta http-equiv="refresh" content="0;url=/place/jordan/spending/" />
</head></html> |
app/vendor/prism.css | TucsonReactJS/animation | /* http://prismjs.com/download.html?themes=prism&languages=markup+css+clike+javascript+jsx */
/**
* prism.js default theme for JavaScript, CSS and HTML
* Based on dabblet (http://dabblet.com)
* @author Lea Verou
*/
code[class*="language-"],
pre[class*="language-"] {
color: black;
text-shadow: 0 1px white;
font-family: Consolas, Monaco, 'Andale Mono', monospace;
direction: ltr;
text-align: left;
white-space: pre;
word-spacing: normal;
word-break: normal;
line-height: 1.5;
-moz-tab-size: 4;
-o-tab-size: 4;
tab-size: 4;
-webkit-hyphens: none;
-moz-hyphens: none;
-ms-hyphens: none;
hyphens: none;
}
pre[class*="language-"]::-moz-selection, pre[class*="language-"] ::-moz-selection,
code[class*="language-"]::-moz-selection, code[class*="language-"] ::-moz-selection {
text-shadow: none;
background: #b3d4fc;
}
pre[class*="language-"]::selection, pre[class*="language-"] ::selection,
code[class*="language-"]::selection, code[class*="language-"] ::selection {
text-shadow: none;
background: #b3d4fc;
}
@media print {
code[class*="language-"],
pre[class*="language-"] {
text-shadow: none;
}
}
/* Code blocks */
pre[class*="language-"] {
padding: 1em;
margin: .5em 0;
overflow: auto;
}
:not(pre) > code[class*="language-"],
pre[class*="language-"] {
background: #f5f2f0;
}
/* Inline code */
:not(pre) > code[class*="language-"] {
padding: .1em;
border-radius: .3em;
}
.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
color: slategray;
}
.token.punctuation {
color: #999;
}
.namespace {
opacity: .7;
}
.token.property,
.token.tag,
.token.boolean,
.token.number,
.token.constant,
.token.symbol,
.token.deleted {
color: #905;
}
.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
color: #690;
}
.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string {
color: #a67f59;
background: hsla(0, 0%, 100%, .5);
}
.token.atrule,
.token.attr-value,
.token.keyword {
color: #07a;
}
.token.function {
color: #DD4A68;
}
.token.regex,
.token.important,
.token.variable {
color: #e90;
}
.token.important,
.token.bold {
font-weight: bold;
}
.token.italic {
font-style: italic;
}
.token.entity {
cursor: help;
}
|
journeyman/templates/projects/create_wizard_1.html | stephrdev/loetwerk | {% extends "base.html" %}
{% block heading %}
Build configuration
{% endblock %}
{% block content %}
<p>Please tell us about your build process.</p>
<form action="." method="post">
{% include "formwizard/wizard.html" %}
</form>
{% endblock %} |
vendor/poi-3.6/doc/apidocs/org/apache/poi/hpbf/model/qcbits/package-use.html | tobyclemson/msci-project | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_13) on Mon Dec 14 15:25:11 MSK 2009 -->
<TITLE>
Uses of Package org.apache.poi.hpbf.model.qcbits (POI API Documentation)
</TITLE>
<META NAME="date" CONTENT="2009-12-14">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Package org.apache.poi.hpbf.model.qcbits (POI API Documentation)";
}
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<HR>
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../index.html?org/apache/poi/hpbf/model/qcbits/package-use.html" target="_top"><B>FRAMES</B></A>
<A HREF="package-use.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<CENTER>
<H2>
<B>Uses of Package<br>org.apache.poi.hpbf.model.qcbits</B></H2>
</CENTER>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
Packages that use <A HREF="../../../../../../org/apache/poi/hpbf/model/qcbits/package-summary.html">org.apache.poi.hpbf.model.qcbits</A></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="#org.apache.poi.hpbf.model"><B>org.apache.poi.hpbf.model</B></A></TD>
<TD> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="#org.apache.poi.hpbf.model.qcbits"><B>org.apache.poi.hpbf.model.qcbits</B></A></TD>
<TD> </TD>
</TR>
</TABLE>
<P>
<A NAME="org.apache.poi.hpbf.model"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
Classes in <A HREF="../../../../../../org/apache/poi/hpbf/model/qcbits/package-summary.html">org.apache.poi.hpbf.model.qcbits</A> used by <A HREF="../../../../../../org/apache/poi/hpbf/model/package-summary.html">org.apache.poi.hpbf.model</A></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><B><A HREF="../../../../../../org/apache/poi/hpbf/model/qcbits/class-use/QCBit.html#org.apache.poi.hpbf.model"><B>QCBit</B></A></B>
<BR>
Parent of all Quill CONTENTS bits</TD>
</TR>
</TABLE>
<P>
<A NAME="org.apache.poi.hpbf.model.qcbits"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
Classes in <A HREF="../../../../../../org/apache/poi/hpbf/model/qcbits/package-summary.html">org.apache.poi.hpbf.model.qcbits</A> used by <A HREF="../../../../../../org/apache/poi/hpbf/model/qcbits/package-summary.html">org.apache.poi.hpbf.model.qcbits</A></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><B><A HREF="../../../../../../org/apache/poi/hpbf/model/qcbits/class-use/QCBit.html#org.apache.poi.hpbf.model.qcbits"><B>QCBit</B></A></B>
<BR>
Parent of all Quill CONTENTS bits</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><B><A HREF="../../../../../../org/apache/poi/hpbf/model/qcbits/class-use/QCPLCBit.html#org.apache.poi.hpbf.model.qcbits"><B>QCPLCBit</B></A></B>
<BR>
A "PLC " (PLC) based bit of Quill Contents.</TD>
</TR>
</TABLE>
<P>
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../index.html?org/apache/poi/hpbf/model/qcbits/package-use.html" target="_top"><B>FRAMES</B></A>
<A HREF="package-use.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
<i>Copyright 2009 The Apache Software Foundation or
its licensors, as applicable.</i>
</BODY>
</HTML>
|
client/loginsystem.html | sheeshmohsin/meteor_login_system | <template name="ApplicationLayout">
<head>
<title>loginsystem</title>
</head>
<body>
<h1> For implementation in waartaa login system</h1>
{{> yield "aside" }}
</body>
</template>
|
app/views/timeEdit/timeEdit-scene.html | bhousel/webos-timetracker | <div class="my-scene-fade-top" x-mojo-scroll-fade="top"></div>
<div class="my-scene-fade-bottom" x-mojo-scroll-fade="bottom"></div>
<div class="palm-page-header">
<div class="palm-page-header-wrapper">
<div class="icon timetracker-mini-icon"></div>
<div class="title" id="time-edit-title">Record Time</div>
</div>
</div>
<div class="palm-group">
<div class="palm-group-title" x-mojo-loc=''>Start</div>
<div class="palm-list">
<div class="palm-row single">
<div class="palm-row-wrapper textfield-group" x-mojo-focus-highlight="true">
<div id="startDate" x-mojo-element="DatePicker"></div>
<div id="startTime" x-mojo-element="TimePicker"></div>
</div>
</div>
</div>
</div>
<div class="palm-group">
<div class="palm-group-title" x-mojo-loc=''>End</div>
<div class="palm-list">
<div class="palm-row single">
<div class="palm-row-wrapper textfield-group" x-mojo-focus-highlight="true">
<div id="endDate" x-mojo-element="DatePicker"></div>
<div id="endTime" x-mojo-element="TimePicker"></div>
</div>
</div>
</div>
</div>
<div class="palm-group">
<div class="palm-group-title" x-mojo-loc=''>Note</div>
<div class="palm-list">
<div class="palm-row single">
<div class="palm-row-wrapper textfield-group" x-mojo-focus-highlight="true">
<div class="title">
<div id="timeNote" x-mojo-element="TextField"></div>
</div>
</div>
</div>
</div>
</div>
<div class="palm-dialog-buttons">
<div x-mojo-element="Button" id="okButton"></div>
<div x-mojo-element="Button" id="cancelButton"></div>
</div>
|
Web/CSS/03.CSS Layout/03.TotalManagementLogin/styles.css | kalinalazarova1/TelerikAcademy | body {
margin: 1em;
padding: 0em;
width: 50.8em;
border: 1px solid #6f5d4b;
font-family: Verdana, sans-serif;
font-size: 13px;
color: #a1a1a1;
}
header, div, img, article, form, input, p, h1{
margin: 0;
padding: 0;
}
div{
display: inline;
}
header{
background: #2e2e2e;
color: white;
height: 5em;
width: 50.8em;
}
header label{
display: block;
background-image: url(images/computer.png);
background-repeat: no-repeat;
background-position: 0.3em 0.3em;
line-height: 3em;
font-family: Constantia;
font-size: 1.5em;
font-weight: 600;
padding-left: 3.5em;
float: left;
}
header input{
height: 1.5em;
width: 10em;
padding-left: 1em;
margin-left: 1.5em;
margin-top: 1.5em;
}
.button{
background-image: url(images/button.gif);
background-repeat: no-repeat;
background-position: 0.5em 0em;
background-color: #2e2e2e;
border: none;
font-size: 1.1em;
color: white;
padding: 0;
margin-left: 1.5em;
width: 5em;
height: 2em;
}
article {
background: #3b3b3b;
padding: 1.3em 4em 0.8em 0.8em;
width: 46em;
}
article h1{
color: #fbd01f;
font-family: Georgia;
font-size: 2.2em;
font-weight: normal;
padding-bottom: 0.6em;
}
article span{
color: white;
font-weight: normal;
}
|
app/views/give-your-bank-details/enter-sortcode-final.html | charlesrt/interaction-patterns | {% extends "layout.html" %}
{% block page_title %}
GOV.UK prototype kit
{% endblock %}
{% block content %}
<main id="content" role="main">
<div class="grid-row">
<div class="column-two-thirds">
<h1 class="heading-large">
Enter bank account details
</h1>
<div class="error-summary" role="group" aria-labelledby="error-summary-heading-example-1" tabindex="-1">
<p class="heading-medium error-summary-heading" id="error-summary-heading-example-1">
We were unable to process this request at this time
</p>
<p>
<a href="complete">Skip this section and we will contact you later.</a>
</p>
</div>
</div>
</div>
</main>
{% endblock %}
|
CustomerManager/app/customersApp/views/accounts/accounts.html | scovert3197/covana | <div class="customers view indent">
<div class="container">
<header>
<h3><span class="glyphicon glyphicon-user"></span>Accounts</h3>
</header>
<div class="row">
<div class="col-md-10">
<form class="navbar-form navbar-right">
<div class="form-group">
<label class="navbarText col-sm-2">Filter:</label>
<div class="col-sm-10">
<input type="text"
data-ng-model="vm.searchText"
data-ng-change="vm.searchTextChanged()"
class="novalidate form-control" />
</div>
</div>
</form>
</div>
</div>
<div class="container">
<div class="row cardContainer show-hide-animation" data-ng-hide="vm.listDisplayModeEnabled">
<div class="col-sm-6 col-md-4 col-lg-3"
data-ng-class="vm.cardAnimationClass"
data-ng-repeat="account in vm.filteredAccounts | orderBy:'name'">
<div class="card">
<button class="btn close cardClose"
title="Delete Account"
data-ng-click="vm.deleteAccount(account.id)">×</button>
<div class="cardHeader">
<a href="" class="white">
{{account.name}}
<i class="icon-edit icon-white editIcon"></i>
</a>
</div>
<div class="cardBody" style="height:40px;">
<div class="clearfix">
<div class="pull-left cardBodyLeft">
<a href="" class="white">
{{account.portfolioid}}
</a>
</div>
<div class="pull-left cardBodyRight">
<div class="cardBodyContent">Greetings, Greetings</div>
<div>
<a href="" class="btn-link">
{{ account.groupid}}
<span data-ng-pluralize count="account.GroupID"
when="{'1': 'Order','other': 'Orders'}">
</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row show-hide-animation" data-ng-show="vm.filteredAccounts.length == 0">
<div class="col-span-12">
<h4>No accounts found</h4>
</div>
</div>
</div>
<br /><br /><br />
</div>
</div>
|
stuff/stuff_style.css | sieken/sieken.github.io | body {
font-family: 'Source Code Pro';
background-color: #232323;
color: #ffffff;
}
#title {
text-align: center;
padding-top: 50 px;
}
#img {
display: flex;
flex-direction: row;
justify-content: center;
margin-top: 30px;
}
#img img {
display: block;
border-radius: 25px;
border: 0.5px solid black;
width: 95px;
height: 95px;
}
#links {
font-size: 13px;
display: block;
width: auto;
margin: auto;
text-align: center;
}
#links li {
display: inline-block;
padding: 0px 15px 18px 15px
}
#links:after {
content: "";
display: block;
text-align: center;
height: 1px;
margin-top: 10px;
margin-right: 44%;
margin-left: 44%;
background-color: #aaa;
}
a {
color: #ef9500;
}
a:hover {
color: #ab7300;
}
#articles ul li:after {
content: "";
display: block;
text-align: center;
height: 1px;
margin-top: 20px;
margin-right: 40%;
margin-left: 40%;
background-color: #232323;
}
h1 {
font-weight: 200;
}
p {
font-size: 17px;
font-weight: 200;
}
#articles {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 24px;
font-weight: 200;
margin-top: 20px;
margin-right: 20%;
margin-left: 20%;
text-align: center;
}
#articles ul {
display: block;
list-style-type: none;
margin: 0px;
padding: 0px;
}
#articles a {
text-decoration: none;
}
article {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 21px;
font-weight: 200;
color: #ffffff;
text-align: center;
margin-right: 20%;
margin-left: 20%;
}
article:after {
content: "";
display: block;
text-align: center;
height: 1px;
margin-top: 15px;
margin-right: 40%;
margin-left: 40%;
margin-bottom: 30px;
background: #232323;
}
#media {
margin-top: 20px;
}
#media ul {
list-style: none;
}
#media li {
padding-top: 10px;
padding-bottom: 10px;
}
|
public/modules/ldmscomponents/views/view-ldmscomponent.client.view.html | lizhi97/WebPortal | <section class="content">
<section class="container">
<section data-ng-controller="LdmscomponentsController" data-ng-init="findOne()">
<div class="page-header">
<h1 data-ng-bind="ldmscomponent.name"></h1>
<h1 data-ng-bind="ldmscomponent.totalTests"></h1>
<h1 data-ng-bind="ldmscomponent.team"></h1>
</div>
<div class="pull-right" data-ng-show="((authentication.user) && (authentication.user._id == ldmscomponent.user._id))">
<a class="btn btn-primary" href="/#!/ldmscomponents/{{ldmscomponent._id}}/edit">
<i class="glyphicon glyphicon-edit"></i>
</a>
<a class="btn btn-primary" data-ng-click="remove();">
<i class="glyphicon glyphicon-trash"></i>
</a>
</div>
<small>
<em class="text-muted">
Posted on
<span data-ng-bind="ldmscomponent.created | date:'mediumDate'"></span>
by
<span data-ng-bind="ldmscomponent.user.displayName"></span>
</em>
</small>
</section>
</section>
</section>
|
_includes/comments.html | indiejoseph/indiejoseph.github.io | {% if page.comments %}
<!-- Add Disqus comments. -->
<div id="disqus_thread"></div>
<script type="text/javascript">
var disqus_shortname = 'indiejoseph';
var disqus_identifier = "{{ site.disqusid }}{{ page.url | replace:'index.html','' }}";
/* * * DON'T EDIT BELOW THIS LINE * * */
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>
<noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
<a href="http://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
{% endif %}
|
oldblog/c8-conflict.html | justkarenlo/justkarenlo.github.io | <!DOCTYPE html>
<head>
<title>just.karen's_blog</title>
<link type="text/css" rel="stylesheet" href="../stylesheets/blog-stylesheet.css"/>
<link href='http://fonts.googleapis.com/css?family=IM+Fell+English+SC|Permanent+Marker|Pacifico' rel='stylesheet' type='text/css'>
</head>
<body>
<div id="maindisplay">
<div id="position">
<a id="homebutton" href="index.html"><< return to Blog Home</a>
<pre id="smallheader">just my musings...</pre>
<div id="actualpost">
<h4 id="theone">The one with the mother/daughter conflict</h4>
<br>
<p id="date">11/07/2014 :: Phase 0 Week 8</p>
<p id="section">conflict</p>
<p class="indent">It goes without saying (but I'm going to say it anyways) that 100% of us have gone through some ordeal or another in our lives. In fact, many ordeals. Conflict of needs, conflict of communication, conflict of simple or complicated misunderstandings. Conflict. Look at that word enough times and it won't look like a word anymore (and if you don't feel it yet, that means you haven't looked at it long enough). And we can avoid this conversation altogether. But no, I must continue. Conflict is what we go through every day of our lives, but reflecting on those past conflicts is how we learn.</p>
<p class="indent">I think the single biggest conflict in my life was actually a series of little conflicts added together. It was the mother-daughter conflict. I tell ya during my teenage years we had dozens.. dozens... of fights. All over stupid things. And it wasn't until I moved out that I realized how I approached the situation incorrectly.</p>
<p class="indent">I can't say for sure exactly which one of the arguments I want to point out; they seem to have blurred together over the years. But I do remember in essence how I felt. A majority of the time, it was an issue with control. My mom viewed something a certain way, and I would think differently. As a teenager, I was young, but admittedly, I was (actually, maybe still <em>am</em>...) headstrong. And frankly, some of those fights, there really wasn't a particular reason. Just something small would set off one of us and our equally stubborn nature escalated our "conversations." Overall, these conflicts would conclude via me putting in earbuds and blasting music to drown out my mother's yelling, locking myself up in my room, or even on occasion running to my car, driving off, and taking a walk around Target to cool down.</p>
<p class="indent">Honestly, walking around Target was 100% guaranteed to help me feel better. I'm not saying that running away from your problems or conflicts is a good option, but there is a time when you know that if you stay any longer in the conflict, things will only get worse. Because by that point, your blood is boiling with anger and you're no longer thinking straight. And most likely with this mental 'handicap', you'll say or do things much worse than you'd like.</p>
<p class="indent">If I could go back, I can't honestly say that I could convince my teenage self to do anything differently. I can wish it. But based on the fact that my mother and I are quite similar in our stubborn and prideful personalities, and the fact that these conflicts were quite random in nature, the likelihood of either of us backing down was slim to none. On one hand, you have a mother who doesn't understand the American culture (doesn't <em>want</em> to understand it) and believes she knows what's best for her daughter, and on the other, you have a <em>teenage</em> daughter trying to find her independence, her voice in the world. I know that's not an excuse for the way I acted I just believe fervently that we always have 20/20 vision in hindsight. But the fact of the matter is, I can only take these experiences moving forward, learn from them, and understand them. </p>
<p class="indent">After I moved out and was able to displace myself from those past conflicts and analyze them. I realized that under all that anger, was just miscommunication and the frustration that went along with it. My mother was better with Chinese and I was better with English. We could talk ourselves in circles all day, but the other wouldn't understand (and I guess we figured yelling would help with the "listening"). But ultimately, all we needed was a little more patience. Now when I talk to my mom, I think she realizes more and more that I really have become a responsible adult. And more and more I realize that she does hear me, just sometimes misinterprets what I say. So we now take the extra time to interpret what we <em>mean</em> to say. We've both come to an understanding, patience, and respect for each other. So I guess you could say those past conflicts were just 'growing pains,' bad ones. </p>
<p class="indent">There's a lot of honesty going on in this article, and I'm quite embarrassed to be sharing this with the world, but I'm pretty sure most mother/daughter (or even father/son) relationships get rocky at one time or another (especially during puberty) and so whoever is reading this either shares in my experiences or will share them when they have a daughter or son of their own. So lesson of the day? <span style="color: #CC6AB6">Don't just hear; listen.</span> </p>
</div>
<pre id="links">
<a href="../index.html">main home</a> <a href="http://www.facebook.com/justkarenlo">facebook</a> <a href="https://twitter.com/justkarenlo">twitter</a> <a href="https://www.linkedin.com/in/justkarenlo">linkedin</a>
</pre>
</div>
</div>
</body>
</html> |
lib/JADE/doc/api/jade/domain/introspection/class-use/SuspendedAgent.html | shookees/SmartFood_old | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="it">
<head>
<!-- Generated by javadoc (version 1.7.0_03) on Wed Dec 04 15:38:03 CET 2013 -->
<title>Uses of Class jade.domain.introspection.SuspendedAgent (JADE v4.3.1 API)</title>
<meta name="date" content="2013-12-04">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class jade.domain.introspection.SuspendedAgent (JADE v4.3.1 API)";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../jade/domain/introspection/SuspendedAgent.html" title="class in jade.domain.introspection">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?jade/domain/introspection/\class-useSuspendedAgent.html" target="_top">Frames</a></li>
<li><a href="SuspendedAgent.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 jade.domain.introspection.SuspendedAgent" class="title">Uses of Class<br>jade.domain.introspection.SuspendedAgent</h2>
</div>
<div class="classUseContainer">No usage of jade.domain.introspection.SuspendedAgent</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../jade/domain/introspection/SuspendedAgent.html" title="class in jade.domain.introspection">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?jade/domain/introspection/\class-useSuspendedAgent.html" target="_top">Frames</a></li>
<li><a href="SuspendedAgent.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small><center>These are the official <i><a href=http://jade.tilab.com target=top>JADE</a></i> API. For these API backward compatibility is guaranteed accross JADE versions</center></small></p>
</body>
</html>
|
index.html | leandroohf/leandroohf.github.io | ---
layout: layout-1
---
<div class="posts">
{% for post in site.posts %}
<article class="post">
<h1><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h1>
<div class="entry">
{{ post.excerpt }}
</div>
<a href="{{ site.baseurl }}{{ post.url }}" class="read-more">Read More</a>
</article>
{% endfor %}
</div>
|
rwd/part5/index.html | dylanb/dylanb.github.io | <!doctype html>
<html lang="en">
<head>
<title>Part 5: Focus</title>
<link rel="stylesheet" type="text/css" href="responsive.css">
</head>
<body>
<a href="/">Back to dylanb.github.io</a>
<h1>Focus Examples</h1>
<ul>
<li>
<a href="content_replaced.html">Content Replaced</a>
</li>
<li>
<a href="content_popup.html">Content Popup</a>
</li>
</ul>
</body>
</html>
|
series/the-end-of-the-f___ing-world/index.html | cinetenisverde/cinetenisverde.github.io | <!DOCTYPE html>
<html lang="en-us" dir="ltr" itemscope itemtype="http://schema.org/Article">
<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>The End Of The F***ing World</title>
<meta name="author" content="" />
<meta name="description"
content="Apesar do piloto desta série apresentar desde o começo dois adolescentes problemáticos, um psicopata e uma ninfomaníaca, não é à toa que fuck… ops, f***, está encoberto no título. Este é mais..."/>
<meta name="yandex-verification" content="48a8210fc043c5e8" />
<meta name="generator" content="Hugo 0.54.0" />
<meta itemprop="name" content="The End Of The F***ing World"/>
<meta itemprop="description"
content="Apesar do piloto desta série apresentar desde o começo dois adolescentes problemáticos, um psicopata e uma ninfomaníaca, não é à toa que fuck… ops, f***, está encoberto no título. Este é mais..."/>
<meta itemprop="image"
content="/img/logo.svg"/>
<meta property="og:title" content="The End Of The F***ing World"/>
<meta property="og:type"
content="article"/>
<meta property="og:url" content="http://www.cinetenisverde.com.br/series/the-end-of-the-f___ing-world/"/>
<meta property="og:image"
content="/img/logo.svg"/>
<meta property="og:description"
content="Apesar do piloto desta série apresentar desde o começo dois adolescentes problemáticos, um psicopata e uma ninfomaníaca, não é à toa que fuck… ops, f***, está encoberto no título. Este é mais..."/>
<meta property="og:site_name" content="Cine Tênis Verde"/>
<meta property="article:published_time"
content="2018-02-06T20:52:37+00:00"/>
<meta property="article:section" content="series"/>
<meta name="twitter:card" content="summary"/>
<meta name="twitter:site"
content=""/>
<meta name="twitter:title" content="The End Of The F***ing World"/>
<meta name="twitter:description"
content="Apesar do piloto desta série apresentar desde o começo dois adolescentes problemáticos, um psicopata e uma ninfomaníaca, não é à toa que fuck… ops, f***, está encoberto no título. Este é mais..."/>
<meta name="twitter:creator"
content=""/>
<meta name="twitter:image:src"
content="/img/logo.svg"/>
<link rel="stylesheet" type="text/css" href="/css/capsule.min.css"/>
<link rel="stylesheet" type="text/css" href="/css/custom.css"/>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-50557403-1', 'auto');
ga('send', 'pageview');
</script>
<link rel="apple-touch-icon" href="/img/apple-touch-icon.png"/>
<link rel="icon" href="/img/favicon.ico"/>
</head>
<body style="min-height:100vh;display:flex;flex-direction:column">
<nav class="navbar has-shadow is-white"
role="navigation" aria-label="main navigation">
<div class="container">
<div class="navbar-brand">
<a class="navbar-item" href="/">
<img alt="Brand" src="/img/brand.svg">
<div class="title is-4"> Cine Tênis Verde</div>
</a>
<label class="button navbar-burger is-white" for="navbar-burger-state">
<span></span>
<span></span>
<span></span>
</label>
</div>
<input type="checkbox" id="navbar-burger-state"/>
<div class="navbar-menu">
<div class="navbar-end">
<a href="/post"
class="navbar-item
">search
</a>
<a href="https://twitter.com/cinetenisverde"
class="navbar-item
">twitter
</a>
<a href="/index.xml"
class="navbar-item
">rss
</a>
</div>
</div>
</div>
</nav>
<section class="section" style="flex:1">
<div class="container">
<p class="title">The End Of The F***ing World</p>
<p class="subtitle"><span class="entry-sidebar-stars">
★★★☆☆
</span>
Wanderley Caloni, <a href="https://github.com/Caloni/cinetenisverde/commits/master/content/post/the-end-of-the-f___ing-world.md">February 6, 2018</a></p>
<p><p>
<div class="content">
<p>Apesar do piloto desta série apresentar desde o começo dois adolescentes problemáticos, um psicopata e uma ninfomaníaca, não é à toa que fuck… ops, f***, está encoberto no título. Este é mais um sintoma da geração abobalhada que acha que é cool, mas não consegue falar de sexo sem corar nem falar da morte de inocentes por diversão. Propaganda enganosa em cima de outra, este é um casal bonitinho que, como Arlequina em Esquadrão Suicida, adora falar que é louca. Não porque ela seja, mas porque é cool ser louca.</p>
<p>Mas algo no personagem de Alex Lawther (Black Mirror, ep. Shut Up and Dance) que nos faz prestar um pouco mais de atenção em seus movimentos, olhares e expressões. Ele é James, um menino que teve uma infância complicada e aprendeu que gosta de matar pequenos animais. Com a faca. E aguarda seu momento de estrear com humanos. Ele pretende começar com sua namorada incidental, Alyssa.</p>
<p>E Alyssa, vivida aqui por Jessica Barden com uma adolescência repugnante. Seus comentários como narradora (ambos o são) é aceitável. Mas é só. Cheia de anti-carisma com suas sardas e seus comentários vergonhosamente inadequados, não há nada muito engraçado depois que você percebe a dinâmica da moça. Apenas esperamos que ela finalmente se dê mal.</p>
<p>O que sabemos que não vai acontecer. Estes dois são os heroizinhos romanticuzinhos que irão viver uma aventura adolescente e não haverá muitas mortes ou sangue, exceto de pessoas más pelo caminho. A estrutura desta série tem uma grande vantagem em relação às outras que a Netflix anda lançando: os episódios só tem 20 minutos e parece que há uns 8 episódios. Mas não sei se tenho coragem de continuar. Acho que vou reassitir pela quarta vez <a href="/series/rick-and-morty-primeira-temporada">Rick & Morty</a>.</p>
<a href="https://www.imdb.com/title/tt6257970/mediaviewer/" target="ctvimg">Imagens</a> e créditos no <a title="IMDB: Internet Movie DataBase" href="http://www.imdb.com/title/tt6257970">IMDB</a>.
</div>
<span class="entry-sidebar-stars">
★★★☆☆
</span>
The End Of The F***ing World ● The End Of The F***ing World. EUA, 2017. Com Jessica Barden, Alex Lawther, Steve Oram. ● Nota: 3/5. Categoria: series. Publicado em 2018-02-06. Texto escrito por Wanderley Caloni.
<p><br>Quer <a href="https://twitter.com/search?q=@cinetenisverde The%20End%20Of%20The%20F%2a%2a%2aing%20World">comentar</a>?<br></p>
</div>
</section>
<section class="section">
<br>
<div class="container">
<div class="is-flex">
<span>
<a class="button">Share</a>
</span>
<span>
<a class="button"
href="https://www.facebook.com/sharer/sharer.php?u=http%3a%2f%2fwww.cinetenisverde.com.br%2fseries%2fthe-end-of-the-f___ing-world%2f">
<span class="icon"><i class="fa fa-facebook"></i></span>
</a>
<a class="button"
href="https://twitter.com/intent/tweet?url=http%3a%2f%2fwww.cinetenisverde.com.br%2fseries%2fthe-end-of-the-f___ing-world%2f&text=The%20End%20Of%20The%20F%2a%2a%2aing%20World">
<span class="icon"><i class="fa fa-twitter"></i></span>
</a>
<a class="button"
href="https://news.ycombinator.com/submitlink?u=http%3a%2f%2fwww.cinetenisverde.com.br%2fseries%2fthe-end-of-the-f___ing-world%2f">
<span class="icon"><i class="fa fa-hacker-news"></i></span>
</a>
<a class="button"
href="https://reddit.com/submit?url=http%3a%2f%2fwww.cinetenisverde.com.br%2fseries%2fthe-end-of-the-f___ing-world%2f&title=The%20End%20Of%20The%20F%2a%2a%2aing%20World">
<span class="icon"><i class="fa fa-reddit"></i></span>
</a>
<a class="button"
href="https://plus.google.com/share?url=http%3a%2f%2fwww.cinetenisverde.com.br%2fseries%2fthe-end-of-the-f___ing-world%2f">
<span class="icon"><i class="fa fa-google-plus"></i></span>
</a>
<a class="button"
href="https://www.linkedin.com/shareArticle?url=http%3a%2f%2fwww.cinetenisverde.com.br%2fseries%2fthe-end-of-the-f___ing-world%2f&title=The%20End%20Of%20The%20F%2a%2a%2aing%20World">
<span class="icon"><i class="fa fa-linkedin"></i></span>
</a>
<a class="button"
href="https://www.tumblr.com/widgets/share/tool?canonicalUrl=http%3a%2f%2fwww.cinetenisverde.com.br%2fseries%2fthe-end-of-the-f___ing-world%2f&title=The%20End%20Of%20The%20F%2a%2a%2aing%20World&caption=">
<span class="icon"><i class="fa fa-tumblr"></i></span>
</a>
<a class="button"
href="https://pinterest.com/pin/create/bookmarklet/?media=%2fimg%2flogo.svg&url=http%3a%2f%2fwww.cinetenisverde.com.br%2fseries%2fthe-end-of-the-f___ing-world%2f&description=The%20End%20Of%20The%20F%2a%2a%2aing%20World">
<span class="icon"><i class="fa fa-pinterest"></i></span>
</a>
<a class="button"
href="whatsapp://send?text=http%3a%2f%2fwww.cinetenisverde.com.br%2fseries%2fthe-end-of-the-f___ing-world%2f">
<span class="icon"><i class="fa fa-whatsapp"></i></span>
</a>
<a class="button"
href="https://web.skype.com/share?url=http%3a%2f%2fwww.cinetenisverde.com.br%2fseries%2fthe-end-of-the-f___ing-world%2f">
<span class="icon"><i class="fa fa-skype"></i></span>
</a>
</span>
</div>
</div>
<br>
</section>
<footer class="footer">
<div class="container">
<nav class="level">
<div class="level-right has-text-centered">
<div class="level-item">
<a class="button" href="http://www.cinetenisverde.com.br/">
<span class="icon"><i class="fa fa-home"></i></span>
</a>
<a class="button" href="/post">
<span class="icon"><i class="fa fa-search"></i></span>
</a>
<a class="button" href="https://twitter.com/cinetenisverde">
<span class="icon"><i class="fa fa-twitter"></i></span>
</a>
<a class="button" href="/index.xml">
<span class="icon"><i class="fa fa-rss"></i></span>
</a>
</div>
</div>
</nav>
</div>
</footer>
</body>
</html>
|
clean/Linux-x86_64-4.07.1-2.0.6/released/8.7.1/graphs/8.6.0.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>graphs: 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 / graphs - 8.6.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
graphs
<small>
8.6.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2021-12-11 23:07:18 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-12-11 23:07:18 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
camlp5 7.14 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-perl 1 Virtual package relying on perl
coq 8.7.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/graphs"
license: "LGPL 2.1"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/Graphs"]
depends: [
"ocaml"
"coq" {>= "8.6" & < "8.7~"}
"coq-int-map" {>= "8.6" & < "8.7~"}
]
tags: [ "keyword: graphs" "keyword: graph theory" "keyword: cycle detection" "keyword: paths" "keyword: constraints" "keyword: inequalities" "keyword: reflection" "category: Computer Science/Decision Procedures and Certified Algorithms/Decision procedures" "category: Miscellaneous/Extracted Programs/Combinatorics" ]
authors: [ "Jean Goubault" ]
bug-reports: "https://github.com/coq-contribs/graphs/issues"
dev-repo: "git+https://github.com/coq-contribs/graphs.git"
synopsis: "Satisfiability of inequality constraints and detection of cycles with negative weight in graphs"
description:
"*******************************************************************"
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/graphs/archive/v8.6.0.tar.gz"
checksum: "md5=5cdad4a31bf2de94e2583fe4474f521a"
}
</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-graphs.8.6.0 coq.8.7.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).
The following dependencies couldn't be met:
- coq-graphs -> coq < 8.7~ -> ocaml < 4.06.0
base of this switch (use `--unlock-base' to force)
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-graphs.8.6.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>
|
clean/Linux-x86_64-4.04.2-2.0.5/released/8.5.0~camlp4/jprover/8.6.0.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>jprover: 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.0~camlp4 / jprover - 8.6.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
jprover
<small>
8.6.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-02-01 18:21:42 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-02-01 18:21:42 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
camlp4 4.04+1 Camlp4 is a system for writing extensible parsers for programming languages
conf-findutils 1 Virtual package relying on findutils
coq 8.5.0~camlp4 Formal proof management system
num 0 The Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.04.2 The OCaml compiler (virtual package)
ocaml-base-compiler 4.04.2 Official 4.04.2 release
ocaml-config 1 OCaml Switch Configuration
ocamlbuild 0.14.0 OCamlbuild is a build system with builtin rules to easily build most OCaml projects.
# opam file:
opam-version: "2.0"
maintainer: "Hugo.Herbelin@inria.fr"
homepage: "https://github.com/coq-contribs/jprover"
license: "Unknown"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/JProver"]
depends: [
"ocaml"
"coq" {>= "8.6" & < "8.7~"}
]
tags: [
"keyword: decision procedure"
"keyword: first-order logic"
"keyword: intuitionistic logic"
"keyword: theorem proving"
"keyword: proof search"
"category: Miscellaneous/Coq Extensions"
"category: Computer Science/Decision Procedures and Certified Algorithms/Decision procedures"
"date: 2002-04 (contribution since January 2009)"
]
authors: [ "Huang Guan-Shieng" ]
bug-reports: "https://github.com/coq-contribs/jprover/issues"
dev-repo: "git+https://github.com/coq-contribs/jprover.git"
synopsis: "A theorem prover for first-order intuitionistic logic"
description: """
JProver is a theorem prover for first-order intuitionistic logic.
It is originally implemented by Stephan Schmitt and then integrated into
MetaPRL by Aleksey Nogin. After this, Huang Guan-Shieng extracted the
necessary ML-codes from MetaPRL and then adapted it to Coq."""
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/jprover/archive/v8.6.0.tar.gz"
checksum: "md5=d7a8888e2da482827e2bc958d6902b89"
}
</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-jprover.8.6.0 coq.8.5.0~camlp4</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.0~camlp4).
The following dependencies couldn't be met:
- coq-jprover -> coq >= 8.6 -> ocaml >= 4.05.0
base of this switch (use `--unlock-base' to force)
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-jprover.8.6.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>
|
app/components/Nav/style.css | dijahmac/JobWeasel-FrontEnd | /* Nav Styles */
.navContainer {
display: flex;
flex-direction: row;
background: #404040;
width: 100%;
height: 50px;
justify-content: space-between;;
align-items: center;
color: white;
z-index: 13;
}
.navButtons {
color: white;
text-decoration: none;
font-weight:bold;
font-variant: small-caps;
margin-right:15px;
font-size: 2em;
background-color: #FFFFFF;
width:100vw;
}
.siteName {
width: 30%;
font-size: 2em;
margin-left: 15px;
font-family: 'Open-Sans', sans-serif;
}
.nav {
width: 70%;
display: flex;
flex-direction: row;
justify-content: flex-end;
margin-right: 15px;
}
.navButton {
color: white;
text-decoration: none;
margin-right: 15px;
font-weight: normal;
font-variant:normal;
font-family: 'Open-Sans', sans-serif;
}
.menuIcon {
display: none;
}
.navButton:hover {
}
|
lib/assets/images/photon/plugins/elrte/js/js/bootstrap/js/plugins/mfupload.js.html | user-tony/photon-rails | <!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/images/photon/plugins/elrte/js/js/bootstrap/js/plugins/favicon.ico"/>
<link rel="apple-touch-icon" href="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/bootstrap/js/plugins/iosicon.png"/>
<link rel="stylesheet" href="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/bootstrap/js/plugins/css/css_compiled/photon-min.css?v1.1" media="all"/>
<link rel="stylesheet" href="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/bootstrap/js/plugins/css/css_compiled/photon-min-part2.css?v1.1" media="all"/>
<link rel="stylesheet" href="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/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/images/photon/plugins/elrte/js/js/bootstrap/js/plugins/js/bootstrap/bootstrap.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/bootstrap/js/plugins/js/plugins/modernizr.custom.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/bootstrap/js/plugins/js/plugins/jquery.pnotify.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/bootstrap/js/plugins/js/plugins/less-1.3.1.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/bootstrap/js/plugins/js/plugins/xbreadcrumbs.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/bootstrap/js/plugins/js/plugins/jquery.maskedinput-1.3.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/bootstrap/js/plugins/js/plugins/jquery.autotab-1.1b.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/bootstrap/js/plugins/js/plugins/charCount.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/bootstrap/js/plugins/js/plugins/jquery.textareaCounter.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/bootstrap/js/plugins/js/plugins/elrte.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/bootstrap/js/plugins/js/plugins/elrte.en.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/bootstrap/js/plugins/js/plugins/select2.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/bootstrap/js/plugins/js/plugins/jquery-picklist.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/bootstrap/js/plugins/js/plugins/jquery.validate.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/bootstrap/js/plugins/js/plugins/additional-methods.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/bootstrap/js/plugins/js/plugins/jquery.form.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/bootstrap/js/plugins/js/plugins/jquery.metadata.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/bootstrap/js/plugins/js/plugins/jquery.mockjax.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/bootstrap/js/plugins/js/plugins/jquery.uniform.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/bootstrap/js/plugins/js/plugins/jquery.tagsinput.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/bootstrap/js/plugins/js/plugins/jquery.rating.pack.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/bootstrap/js/plugins/js/plugins/farbtastic.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/bootstrap/js/plugins/js/plugins/jquery.timeentry.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/bootstrap/js/plugins/js/plugins/jquery.dataTables.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/bootstrap/js/plugins/js/plugins/jquery.jstree.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/bootstrap/js/plugins/js/plugins/dataTables.bootstrap.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/bootstrap/js/plugins/js/plugins/jquery.mousewheel.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/bootstrap/js/plugins/js/plugins/jquery.mCustomScrollbar.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/bootstrap/js/plugins/js/plugins/jquery.flot.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/bootstrap/js/plugins/js/plugins/jquery.flot.stack.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/bootstrap/js/plugins/js/plugins/jquery.flot.pie.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/bootstrap/js/plugins/js/plugins/jquery.flot.resize.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/bootstrap/js/plugins/js/plugins/raphael.2.1.0.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/bootstrap/js/plugins/js/plugins/justgage.1.0.1.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/bootstrap/js/plugins/js/plugins/jquery.qrcode.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/bootstrap/js/plugins/js/plugins/jquery.clock.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/bootstrap/js/plugins/js/plugins/jquery.countdown.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/bootstrap/js/plugins/js/plugins/jquery.jqtweet.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/bootstrap/js/plugins/js/plugins/jquery.cookie.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/bootstrap/js/plugins/js/plugins/bootstrap-fileupload.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/bootstrap/js/plugins/js/plugins/prettify/prettify.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/bootstrap/js/plugins/js/plugins/bootstrapSwitch.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/js/bootstrap/js/plugins/js/plugins/mfupload.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/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/images/photon/plugins/elrte/js/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="mfupload.js.html#">Sign Up »</a>
<a href="mfupload.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="mfupload.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>
|
_layouts/project_page.html | Clement-R/clement-r.github.io | ---
layout: page
---
<article id="project-content">
<div id="project-header">
<h1 id="project-title">
{{ page.title }}
</h1>
<div id="project-date">
{{ page.date | date: "%b, %Y" }}
</div>
</div>
<div id="project-infos">
<div id="abstract">
{{ page.abstract | markdownify }}
{% if page.project_url %}
<p><a id="project-link" href={{ page.project_url }} target="_blank">Link to the online game page</a></p>
{% endif %}
</div>
<div id="infos">
<div id="type">
<b>Type</b>: {{ page.type }}
</div>
<div id="platforms">
<b>Platforms</b>: {{ page.platforms }}
</div>
<div id="inputs">
<b>Inputs</b>: {{ page.inputs }}
</div>
<div id="tools">
<b>Tools</b>: {{ page.tools }}
</div>
</div>
</div>
<div id="banner">
{% if page.banner.type == "image" %}
<img data-lity class src={{ page.banner.src }}>
{% elsif page.banner.type == "video" %}
<div class="responsive-video">
<iframe src={{ page.banner.src }} width="640px" height="360px" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
</div>
{% endif %}
</div>
<div id="project-comp">
<div id="tasks">
<h2>Tasks</h2>
{% if page.task-header != blank %} {{ page.task-header }} {% else %} My main tasks on this project were : {% endif %}
<ul>
{% for task in page.tasks %}
<li> {{ task }} </li>
{% endfor %}
</ul>
</div>
<div id="team">
{% if page.team %}
<h2>The team</h2>
<ul>
{% for member in page.team %}
<li> {{ member.name }} ({{ member.role }})</li>
{% endfor %}
</ul>
{% endif %}
</div>
</div>
{% if page.content != "" %}
<div id="post-content">
{{ page.content }}
</div>
{% endif %}
<div id="lightgallery">
{% for screenshot in page.screenshots %}
<div class="screenshot" data-src={{ screenshot }}>
<!-- <img data-lity class="" src= {{ screenshot }}> -->
<img src= {{ screenshot }}>
</div>
{% endfor %}
</div>
</article> |
aa575b8/html/classv8_1_1RegExp-members.html | v8-dox/v8-dox.github.io | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.9.1"/>
<title>V8 API Reference Guide for node.js v4.2.4: Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<script type="text/javascript">
$(document).ready(function() { init_search(); });
</script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td style="padding-left: 0.5em;">
<div id="projectname">V8 API Reference Guide for node.js v4.2.4
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.9.1 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "search",false,'Search');
</script>
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
<li><a href="examples.html"><span>Examples</span></a></li>
<li>
<div id="MSearchBox" class="MSearchBoxInactive">
<span class="left">
<img id="MSearchSelect" src="search/mag_sel.png"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
<input type="text" id="MSearchField" value="Search" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
</span><span class="right">
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
</span>
</div>
</li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class List</span></a></li>
<li><a href="classes.html"><span>Class Index</span></a></li>
<li><a href="inherits.html"><span>Class Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class Members</span></a></li>
</ul>
</div>
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><a class="el" href="namespacev8.html">v8</a></li><li class="navelem"><a class="el" href="classv8_1_1RegExp.html">RegExp</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="headertitle">
<div class="title">v8::RegExp Member List</div> </div>
</div><!--header-->
<div class="contents">
<p>This is the complete list of members for <a class="el" href="classv8_1_1RegExp.html">v8::RegExp</a>, including all inherited members.</p>
<table class="directory">
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>BooleanValue</b>(Local< Context > context) const (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>CallAsConstructor</b>(Local< Context > context, int argc, Local< Value > argv[]) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>CallAsFunction</b>(Local< Context > context, Local< Value > recv, int argc, Local< Value > argv[]) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>Cast</b>(v8::Value *obj) (defined in <a class="el" href="classv8_1_1RegExp.html">v8::RegExp</a>)</td><td class="entry"><a class="el" href="classv8_1_1RegExp.html">v8::RegExp</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>Cast</b>(T *value) (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Object.html#a5018c9d085aa71f65530cf1e073a04ad">Clone</a>()</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>CreateDataProperty</b>(Local< Context > context, Local< Name > key, Local< Value > value) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>CreateDataProperty</b>(Local< Context > context, uint32_t index, Local< Value > value) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Object.html#af6966283a7d7e20779961eed434db04d">CreationContext</a>()</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>DefineOwnProperty</b>(Local< Context > context, Local< Name > key, Local< Value > value, PropertyAttribute attributes=None) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>Delete</b>(Local< Context > context, Local< Value > key) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>Delete</b>(Local< Context > context, uint32_t index) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>DeleteHiddenValue</b>(Local< String > key) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>Equals</b>(Local< Context > context, Local< Value > that) const (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Object.html#ae2ad9fee9db6e0e5da56973ebb8ea2bc">FindInstanceInPrototypeChain</a>(Local< FunctionTemplate > tmpl)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1RegExp.html#aa4718a5c1f18472aff3bf51ed694fc5a">Flags</a> enum name</td><td class="entry"><a class="el" href="classv8_1_1RegExp.html">v8::RegExp</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>Get</b>(Local< Context > context, Local< Value > key) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>Get</b>(Local< Context > context, uint32_t index) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Object.html#a435f68bb7ef0f64dd522c5c910682448">GetAlignedPointerFromInternalField</a>(int index)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Object.html#a65b5a3dc93c0774594f8b0f2ab5481c8">GetAlignedPointerFromInternalField</a>(const PersistentBase< Object > &object, int index)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">static</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Object.html#a7bbe987794658f20a3ec1b68326305e6">GetConstructorName</a>()</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1RegExp.html#ad5a5e77e6e626b3c7c69eef7ba2908cc">GetFlags</a>() const </td><td class="entry"><a class="el" href="classv8_1_1RegExp.html">v8::RegExp</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>GetHiddenValue</b>(Local< String > key) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Object.html#ac1ece41e81a499920ec3a2a3471653bc">GetIdentityHash</a>()</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Object.html#aa3324fdf652d8ac3b2f27faa0559231d">GetInternalField</a>(int index)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>GetOwnPropertyDescriptor</b>(Local< Context > context, Local< String > key) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>GetOwnPropertyNames</b>(Local< Context > context) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>GetPropertyAttributes</b>(Local< Context > context, Local< Value > key) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>GetPropertyNames</b>(Local< Context > context) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Object.html#ae8d3fed7d6dbd667c29cabb3039fe7af">GetPrototype</a>()</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>GetRealNamedProperty</b>(Local< Context > context, Local< Name > key) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>GetRealNamedPropertyAttributes</b>(Local< Context > context, Local< Name > key) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>GetRealNamedPropertyAttributesInPrototypeChain</b>(Local< Context > context, Local< Name > key) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>GetRealNamedPropertyInPrototypeChain</b>(Local< Context > context, Local< Name > key) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1RegExp.html#a448213f2a92d964ed260b51429d5e590">GetSource</a>() const </td><td class="entry"><a class="el" href="classv8_1_1RegExp.html">v8::RegExp</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>Has</b>(Local< Context > context, Local< Value > key) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>Has</b>(Local< Context > context, uint32_t index) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Object.html#a278913bcd203434870ce5184a538a9af">HasIndexedLookupInterceptor</a>()</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Object.html#a1e96fcb9ee17101c0299ec68f2cf8610">HasNamedLookupInterceptor</a>()</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>HasOwnProperty</b>(Local< Context > context, Local< Name > key) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>HasRealIndexedProperty</b>(Local< Context > context, uint32_t index) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>HasRealNamedCallbackProperty</b>(Local< Context > context, Local< Name > key) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>HasRealNamedProperty</b>(Local< Context > context, Local< Name > key) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>Int32Value</b>(Local< Context > context) const (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>IntegerValue</b>(Local< Context > context) const (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Object.html#aaec28576353eebe6fee113bce2718ecc">InternalFieldCount</a>()</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Object.html#a324a71142f621a32bfe5738648718370">InternalFieldCount</a>(const PersistentBase< Object > &object)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">static</span></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Value.html#ad06a4b1f7215d852c367df390491ac84">IsArgumentsObject</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Value.html#aaee0b144087d20eae02314c9393ff80f">IsArray</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Value.html#a65f9dad740f2468b44dc16349611c351">IsArrayBuffer</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Value.html#ad54475d15b7e6b6e17fc80fb4570cdf2">IsArrayBufferView</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Value.html#a0aceb7645e71b096df5cd73d1252b1b0">IsBoolean</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Value.html#abe7bc06283e5e66013f2f056a943168b">IsBooleanObject</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Object.html#a23c2c1f23b50fab4a02e2f819641b865">IsCallable</a>()</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Value.html#afd20ab51e79658acc405c12dad2260ab">IsDataView</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Value.html#a8bc11fab0aded4a805722ab6df173cae">IsDate</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Value.html#a7ac61a325c18af8dcb6d7d5bf47d2503">IsExternal</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Value.html#a68c0296071d01ca899825d7643cf495a">IsFalse</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Value.html#a4effc7ca1a221dd8c1e23c0f28145ef0">IsFloat32Array</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Value.html#ab071bf567d89c8ce1489b1b7d93abc36">IsFloat32x4</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Value.html#a293f140b81b0219d1497e937ed948b1e">IsFloat64Array</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Value.html#a05532a34cdd215f273163830ed8b77e7">IsFunction</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Value.html#a1cbbebde8c256d051c4606a7300870c6">IsGeneratorFunction</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Value.html#a72982768acdadd82d1df02a452251d14">IsGeneratorObject</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Value.html#a928c586639dd75ae4efdaa66b1fc4d50">IsInt16Array</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Value.html#a01e1db51c65b2feace248b7acbf71a2c">IsInt32</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Value.html#a48eac78a49c8b42d9f8cf05c514b3750">IsInt32Array</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Value.html#a10a88a2794271dfcd9c3abd565e8f28a">IsInt8Array</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Value.html#a71ef50f22d6bb4a093cc931b3d981c08">IsMap</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Value.html#af9c52a0668fa3260a0d12a2cdf895b4e">IsMapIterator</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Value.html#a8829b16b442a6231499c89fd5a6f8049">IsName</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Value.html#a579fb52e893cdc24f8b77e5acc77d06d">IsNativeError</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Value.html#aa2c6ed8ef832223a7e2cd81e6ac61c78">IsNull</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Value.html#a1bd51e3e55f67c65b9a8f587fbffb7c7">IsNumber</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Value.html#a5f4aa9504a6d8fc3af9489330179fe14">IsNumberObject</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Value.html#a355b7991c5c978c0341f6f961b63c5a2">IsObject</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Value.html#a93d6a0817b15a1d28050ba16e131e6b4">IsPromise</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Value.html#aae41e43486937d6122c297a0d43ac0b8">IsRegExp</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Value.html#a220bd4056471ee1dda8ab9565517edd7">IsSet</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Value.html#addbae0104e07b990ee1af0bd7927824b">IsSetIterator</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Value.html#aa4ce26f174a4c1823dec56eb946d3134">IsSharedArrayBuffer</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Value.html#ab23a34b7df62806808e01b0908bf5f00">IsString</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Value.html#a3e0f2727455fd01a39a60b92f77e28e0">IsStringObject</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Value.html#af3e6081c22d09a7bbc0a2aff59ed60a5">IsSymbol</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Value.html#a867baa94cb8f1069452359e6cef6751e">IsSymbolObject</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Value.html#a8f27462322186b295195eecb3e81d6d7">IsTrue</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Value.html#ac2f2f6c39f14a39fbb5b43577125dfe4">IsTypedArray</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Value.html#a4a45fabf58b241f5de3086a3dd0a09ae">IsUint16Array</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Value.html#a783c89631bac4ef3c4b909f40cc2b8d8">IsUint32</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Value.html#a5e39229dc74d534835cf4ceba10676f4">IsUint32Array</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Value.html#acbe2cd9c9cce96ee498677ba37c8466d">IsUint8Array</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Value.html#ad3cb464ab5ef0215bd2cbdd4eb2b7e3d">IsUint8ClampedArray</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Value.html#aea287b745656baa8a12a2ae1d69744b6">IsUndefined</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Value.html#aab0297b39ed8e2a71b5dca7950228a36">IsWeakMap</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Value.html#a6f5a238206cbd95f98e2da92cab72e80">IsWeakSet</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>kGlobal</b> enum value (defined in <a class="el" href="classv8_1_1RegExp.html">v8::RegExp</a>)</td><td class="entry"><a class="el" href="classv8_1_1RegExp.html">v8::RegExp</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>kIgnoreCase</b> enum value (defined in <a class="el" href="classv8_1_1RegExp.html">v8::RegExp</a>)</td><td class="entry"><a class="el" href="classv8_1_1RegExp.html">v8::RegExp</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>kMultiline</b> enum value (defined in <a class="el" href="classv8_1_1RegExp.html">v8::RegExp</a>)</td><td class="entry"><a class="el" href="classv8_1_1RegExp.html">v8::RegExp</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>kNone</b> enum value (defined in <a class="el" href="classv8_1_1RegExp.html">v8::RegExp</a>)</td><td class="entry"><a class="el" href="classv8_1_1RegExp.html">v8::RegExp</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>New</b>(Local< Context > context, Local< String > pattern, Flags flags) (defined in <a class="el" href="classv8_1_1RegExp.html">v8::RegExp</a>)</td><td class="entry"><a class="el" href="classv8_1_1RegExp.html">v8::RegExp</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>New</b>(Isolate *isolate) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>NumberValue</b>(Local< Context > context) const (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>ObjectProtoToString</b>(Local< Context > context) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>SameValue</b>(Local< Value > that) const (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>Set</b>(Local< Context > context, Local< Value > key, Local< Value > value) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>Set</b>(Local< Context > context, uint32_t index, Local< Value > value) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>SetAccessor</b>(Local< Context > context, Local< Name > name, AccessorNameGetterCallback getter, AccessorNameSetterCallback setter=0, MaybeLocal< Value > data=MaybeLocal< Value >(), AccessControl settings=DEFAULT, PropertyAttribute attribute=None) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>SetAccessorProperty</b>(Local< Name > name, Local< Function > getter, Local< Function > setter=Local< Function >(), PropertyAttribute attribute=None, AccessControl settings=DEFAULT) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Object.html#a0ccba69581f0b5e4e672bab90f26879b">SetAlignedPointerInInternalField</a>(int index, void *value)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Object.html#ac27b823248165acf5284a7086dfed34b">SetHiddenValue</a>(Local< String > key, Local< Value > value)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Object.html#aebf949a0592cebc144bb2f96bfb7ec72">SetInternalField</a>(int index, Local< Value > value)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>SetPrototype</b>(Local< Context > context, Local< Value > prototype) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>StrictEquals</b>(Local< Value > that) const (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>ToArrayIndex</b>(Local< Context > context) const (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>ToBoolean</b>(Local< Context > context) const (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>ToDetailString</b>(Local< Context > context) const (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>ToInt32</b>(Local< Context > context) const (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>ToInteger</b>(Local< Context > context) const (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>ToNumber</b>(Local< Context > context) const (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>ToObject</b>(Local< Context > context) const (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>ToString</b>(Local< Context > context) const (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>ToUint32</b>(Local< Context > context) const (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>Uint32Value</b>(Local< Context > context) const (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1RegExp.html#aa11f71f7311db7da1ea3d6384aa31df1">V8_DEPRECATE_SOON</a>("Use maybe version", Local< RegExp > New(Local< String > pattern, Flags flags))</td><td class="entry"><a class="el" href="classv8_1_1RegExp.html">v8::RegExp</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>V8_DEPRECATE_SOON</b>("Use maybe version", bool Set(Local< Value > key, Local< Value > value)) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>V8_DEPRECATE_SOON</b>("Use maybe version", bool Set(uint32_t index, Local< Value > value)) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>V8_DEPRECATE_SOON</b>("Use CreateDataProperty", bool ForceSet(Local< Value > key, Local< Value > value, PropertyAttribute attribs=None)) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>V8_DEPRECATE_SOON</b>("Use CreateDataProperty", Maybe< bool > ForceSet(Local< Context > context, Local< Value > key, Local< Value > value, PropertyAttribute attribs=None)) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>V8_DEPRECATE_SOON</b>("Use maybe version", Local< Value > Get(Local< Value > key)) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>V8_DEPRECATE_SOON</b>("Use maybe version", Local< Value > Get(uint32_t index)) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Object.html#a45c99c5e2b16425b4e92c88d49463e5f">v8::Object::V8_DEPRECATE_SOON</a>("Use maybe version", PropertyAttribute GetPropertyAttributes(Local< Value > key))</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Object.html#ac5503b0a8e861ec721c680eccf5aec2d">v8::Object::V8_DEPRECATE_SOON</a>("Use maybe version", Local< Value > GetOwnPropertyDescriptor(Local< String > key))</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>V8_DEPRECATE_SOON</b>("Use maybe version", bool Has(Local< Value > key)) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>V8_DEPRECATE_SOON</b>("Use maybe version", bool Has(uint32_t index)) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>V8_DEPRECATE_SOON</b>("Use maybe version", bool SetAccessor(Local< String > name, AccessorGetterCallback getter, AccessorSetterCallback setter=0, Local< Value > data=Local< Value >(), AccessControl settings=DEFAULT, PropertyAttribute attribute=None)) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>V8_DEPRECATE_SOON</b>("Use maybe version", bool SetAccessor(Local< Name > name, AccessorNameGetterCallback getter, AccessorNameSetterCallback setter=0, Local< Value > data=Local< Value >(), AccessControl settings=DEFAULT, PropertyAttribute attribute=None)) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Object.html#a3f735ad2eab826ddc5eba467ce624acb">v8::Object::V8_DEPRECATE_SOON</a>("Use maybe version", Local< Array > GetPropertyNames())</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Object.html#a34e1ca49ed4944009d8d289e5530dabd">v8::Object::V8_DEPRECATE_SOON</a>("Use maybe version", bool SetPrototype(Local< Value > prototype))</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Object.html#abc26147d5f501bf30217f227c9be4922">v8::Object::V8_DEPRECATE_SOON</a>("Use maybe version", Local< String > ObjectProtoToString())</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>V8_DEPRECATE_SOON</b>("Use maybe version", bool HasOwnProperty(Local< String > key)) (defined in <a class="el" href="classv8_1_1Object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Object.html#ac5755869ab0b95f6c1bbd3dd123e5cf4">v8::Object::V8_DEPRECATE_SOON</a>("Use maybe version", Maybe< PropertyAttribute > GetRealNamedPropertyAttributesInPrototypeChain(Local< String > key))</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Object.html#a5aa2616e9deaf26533c3870df2925530">v8::Object::V8_DEPRECATE_SOON</a>("Use maybe version", Local< Value > CallAsFunction(Local< Value > recv, int argc, Local< Value > argv[]))</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Object.html#a10222e80df73aaa0b381f4dabe6b5dd7">v8::Object::V8_DEPRECATE_SOON</a>("Use maybe version", Local< Value > CallAsConstructor(int argc, Local< Value > argv[]))</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1Object.html#a5e7199a517d980396bb86f876b5bae0a">v8::Object::V8_DEPRECATE_SOON</a>("Keep track of isolate correctly", Isolate *GetIsolate())</td><td class="entry"><a class="el" href="classv8_1_1Object.html">v8::Object</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>V8_DEPRECATE_SOON</b>("Use maybe version", Local< Boolean > ToBoolean(Isolate *isolate) const) (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>V8_DEPRECATE_SOON</b>("Use maybe version", Local< Number > ToNumber(Isolate *isolate) const) (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>V8_DEPRECATE_SOON</b>("Use maybe version", Local< String > ToString(Isolate *isolate) const) (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>V8_DEPRECATE_SOON</b>("Use maybe version", Local< String > ToDetailString(Isolate *isolate) const) (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>V8_DEPRECATE_SOON</b>("Use maybe version", Local< Object > ToObject(Isolate *isolate) const) (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>V8_DEPRECATE_SOON</b>("Use maybe version", Local< Integer > ToInteger(Isolate *isolate) const) (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>V8_DEPRECATE_SOON</b>("Use maybe version", Local< Uint32 > ToUint32(Isolate *isolate) const) (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>V8_DEPRECATE_SOON</b>("Use maybe version", Local< Int32 > ToInt32(Isolate *isolate) const) (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>V8_DEPRECATE_SOON</b>("Use maybe version", Local< Boolean > ToBoolean() const) (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>V8_DEPRECATE_SOON</b>("Use maybe version", Local< Number > ToNumber() const) (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>V8_DEPRECATE_SOON</b>("Use maybe version", Local< String > ToString() const) (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>V8_DEPRECATE_SOON</b>("Use maybe version", Local< String > ToDetailString() const) (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>V8_DEPRECATE_SOON</b>("Use maybe version", Local< Object > ToObject() const) (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>V8_DEPRECATE_SOON</b>("Use maybe version", Local< Integer > ToInteger() const) (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>V8_DEPRECATE_SOON</b>("Use maybe version", Local< Uint32 > ToUint32() const) (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>V8_DEPRECATE_SOON</b>("Use maybe version", Local< Int32 > ToInt32() const) (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Value.html#a48ae008760161c7ae7fd54a9db9cffcf">v8::Value::V8_DEPRECATE_SOON</a>("Use maybe version", Local< Uint32 > ToArrayIndex() const)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>V8_DEPRECATE_SOON</b>("Use maybe version", bool BooleanValue() const) (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>V8_DEPRECATE_SOON</b>("Use maybe version", double NumberValue() const) (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>V8_DEPRECATE_SOON</b>("Use maybe version", int64_t IntegerValue() const) (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>V8_DEPRECATE_SOON</b>("Use maybe version", uint32_t Uint32Value() const) (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>V8_DEPRECATE_SOON</b>("Use maybe version", int32_t Int32Value() const) (defined in <a class="el" href="classv8_1_1Value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1Value.html#ae3528a485935d1b19a0e007cd5a06799">v8::Value::V8_DEPRECATE_SOON</a>("Use maybe version", bool Equals(Local< Value > that) const)</td><td class="entry"><a class="el" href="classv8_1_1Value.html">v8::Value</a></td><td class="entry"></td></tr>
</table></div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.9.1
</small></address>
</body>
</html>
|
public/assets/open_id/social-7559566664cd09cec6366bb70e1ecbe1ca93555981c3f17e68d11e89feb3f1ed.css | cenit-io/cenit | .openid.avatar{width:104px}.openid.social{display:flex;justify-content:center;flex-wrap:wrap}.openid.social .provider{margin-top:16px}.openid.social .provider .btn{background:none;display:flex;align-items:center;border:solid 1px lightgray;border-radius:4px;padding:8px 14px}.openid.social .provider .btn:hover{border:solid 1px darkgrey;cursor:pointer}.openid.social .provider .btn:hover:disabled{border:solid 1px lightgrey;cursor:inherit}.openid.social .provider .btn img{margin-right:16px}.openid.social .provider+.provider{margin-left:16px}
|
_site/markdown-leetcode-pascals-triangle/index.html | Alain-ai/Alain-ai.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>LeetCode | Binary Tree Maximum Path Sum in Python - Java, Python, Machine Learning, LeetCode</title>
<meta name="keywords" content="Java, Python, Machine Learning, LeetCode">
<meta name="description" content="The personal site of Alain, MLer and programmer. I write about Java, Python, Machine Learning and my code on LeetCode Here.">
<meta name="author" content="Alain">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="/static/favicon.ico" rel="shortcut icon">
<link href="/static/css/bootstrap.css" rel="stylesheet" type="text/css" media="all">
<link href="/static/css/font-awesome.css" rel="stylesheet" type="text/css" media="all">
<link href="/static/google-code-prettify/prettify.css" rel="stylesheet" type="text/css" media="all">
<link href="/static/css/application.css" rel="stylesheet" type="text/css" media="all">
<script src="/static/js/jquery.js" type="text/javascript"></script>
<!--[if lt IE 9]><script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
</head>
<body>
<div class="page-container">
<div class="page-heading">
<div class="page-brand">
<h1><a href="/">Alain</a></h1>
<h2><a href="/tags.html">Java Intermediate, Python Beginner, Machine Learning Fan</a></h2>
</div>
<div class="page-navbar">
<div class="page-navbar-container">
<ul class="page-nav">
<li><a href="/">Home</a></li>
<!-- <li><a href="/about.html">About</a></li> -->
<li><a href="/categories.html">Categories</a></li>
<li><a href="/tags.html">Tags</a></li>
<li><a href="/archive.html">Archives</a></li>
</ul>
</div>
</div>
</div>
<div class="page-article">
<div class="page-content">
<div class="post-heading">
LeetCode | Binary Tree Maximum Path Sum in Python
</div>
<div class="post-meta">
<!-- <span>
date:
<a href="/markdown-leetcode-pascals-triangle/">10/2014</a>
</span>
<span><i class="fa fa-ellipsis-v"></i></span> -->
<span>
category:
<a href="/categories.html#leetcode-ref">leetcode</a>
</span>
<span><i class="fa fa-ellipsis-v"></i></span>
<span>
tag:
<a href="/tags.html#Python-ref">Python</a>
<span>
</div>
<div class="post-entry">
<!-- import js for mathjax -->
<script src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=default"></script>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
tex2jax: {inlineMath: [['$','$'], ['\\(','\\)']]}
});
</script>
<pre>
'''
Question:
Given numRows, generate the first numRows of Pascal\'s triangle.
Algorithm:
a number is equal to the sum of the two number on its shoulder if there exist
'''
class Solution:
# @return a list of lists of integers
def generate(self, numRows):
if numRows == 0:
return []
if numRows == 1:
return [1]
res = [1]
for i in xrange(1, numRows):
sub = [1]
for j in xrange(1, i):
sub.append(res[i-1][j-1] + res[i-1][j])
sub += [1]
res.append(sub)
return res
</pre>
</div>
</div>
<div class="post-blank post-pager">
<ul class="pager">
<li class="previous"><a href="/markdown-leetcode-merge-sorted-array/">← previous post</a></li>
<li class="next"><a href="/markdown-leetcode-same-tree/">next post →</a></li>
</ul>
</div>
<div class="page-blank">
<div id="disqus_thread"></div>
<script type="text/javascript">
var disqus_shortname = 'heaiinfo';
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = 'http://' + disqus_shortname + '.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>
<noscript>
Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a>
</noscript>
</div>
</div>
<div class="page-footer">
<span>
Powered by <a href="https://github.com/mojombo/jekyll">Jekyll</a>
| Hosted by <a href="http://github.com">Github.com</a>
| <span class="page-generator-time">11/03/2014 </span>
</span>
</div>
</div>
<script src="/static/js/bootstrap.js" type="text/javascript"></script>
<script src="/static/google-code-prettify/prettify.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function() {
$('pre').addClass('prettyprint linenums').attr('style', 'overflow:auto');
prettyPrint();
});
</script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-56332595-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>
|
lib/public/subway.html | PhysicsEngine/Yamate | <!DOCTYPE html>
<html>
<head>
<title>Subway</title>
<meta charset="UTF-8">
<script src="js/jquery.min.js"></script>
<script src="js/jquery.subwayMap-0.5.0.js"></script>
<style type="text/css">
body
{
font-family: Verdana;
font-size: 8pt;
}
/* The main DIV for the map */
.subway-map
{
margin: 0;
width: 500px;
height:700px;
background-color: white;
}
/* Text labels */
.text
{
text-decoration: none;
color: black;
}
#legend
{
float: left;
width: 250px;
height:400px;
}
#legend div
{
height: 25px;
}
#legend span
{
margin: 5px 5px 5px 0;
}
.subway-map span
{
margin: 5px 5px 5px 0;
}
</style>
</head>
<body>
<h1>subway</h1>
<div class="subway-map" data-columns="17" data-rows="17" data-cellSize="40" data-legendId="legend" data-textClass="text" data-gridNumbers="false" data-grid="true" data-lineWidth="8">
<ul data-color="#00ff00" data-label="Yamate">
<li data-coords="2.5,1" data-marker="interchange">池袋</li>
<li data-coords="4,1">大塚</li>
<li data-coords="6,1">巣鴨</li>
<li data-coords="8,1">駒込</li>
<li data-coords="10,1">田端</li>
<li data-coords="12,1">西日暮里</li>
<li data-coords="14,1">日暮里</li>
<li data-coords="15,1"></li>
<li data-coords="16,2" data-dir="E"></li>
<li data-coords="16,3">鶯谷</li>
<li data-coords="16,5" data-marker="interchange">上野</li>
<li data-coords="16,7">御徒町</li>
<li data-coords="16,9">秋葉原</li>
<li data-coords="16,11">神田</li>
<li data-coords="16,13" data-marker="interchange">東京</li>
<li data-coords="16,15">有楽町</li>
<li data-coords="15,16" data-dir="S"></li>
<li data-coords="14,16">新橋</li>
<li data-coords="12,16">浜松町</li>
<li data-coords="10,16">田町</li>
<li data-coords="8,16">品川</li>
<li data-coords="6,16">大崎</li>
<li data-coords="4,16">五反田</li>
<li data-coords="2,16">目黒</li>
<li data-coords="1,15" data-dir="W">恵比寿</li>
<li data-coords="1,13" data-marker="interchange">渋谷</li>
<li data-coords="1,11">原宿</li>
<li data-coords="1,9" data-dir="W">代々木</li>
<li data-coords="1,7" data-marker="interchange">新宿</li>
<li data-coords="1,5">新大久保</li>
<li data-coords="1,3">高田馬場</li>
<li data-coords="1,2">目白</li>
<li data-coords="2,1" data-dir="N"></li>
<li data-coords="2.5,1"></li>
</ul>
</div>
<div id="legend"></div>
<script type="text/javascript">
$(".subway-map").subwayMap({ debug: true });
</script>
</body>
</html>
|
src/components/generic/gradient.css | benji6/meditation-timer | .gradient__layer {
animation-duration: var(--time-2);
animation-name: fade-in;
animation-timing-function: var(--easing-standard);
bottom: 0;
left: 0;
position: absolute;
right: 0;
top: 0;
z-index: -1;
}
.gradient__layer--no-animate {
animation: 0;
}
.gradient__layer--0 {
background-image: linear-gradient(
var(--gradient-angle),
var(--color-blue-light),
var(--color-pink)
);
}
.gradient__layer--1 {
background-image: linear-gradient(
var(--gradient-angle),
var(--color-blue),
var(--color-blue-dark)
);
}
.gradient__layer--2 {
background-image: linear-gradient(
var(--gradient-angle),
var(--color-purple),
var(--color-red)
);
}
.gradient__layer--3 {
background-image: linear-gradient(
var(--gradient-angle),
var(--color-green),
var(--color-purple)
);
}
.gradient__layer--4 {
background-image: linear-gradient(
var(--gradient-angle),
var(--color-pink),
var(--color-yellow)
);
}
|
clean/Linux-x86_64-4.04.2-2.0.5/released/8.5.0/mathcomp-field/1.6.2.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>mathcomp-field: 35 m 12 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.0 / mathcomp-field - 1.6.2</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.2
<span class="label label-success">35 m 12 s 🏆</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-01-29 07:47:20 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-01-29 07:47:20 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.0 Formal proof management system
num 0 The Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.04.2 The OCaml compiler (virtual package)
ocaml-base-compiler 4.04.2 Official 4.04.2 release
ocaml-config 1 OCaml Switch Configuration
# opam file:
opam-version: "2.0"
name: "coq-mathcomp-field"
version: "1.6.2"
maintainer: "Mathematical Components <mathcomp-dev@sympa.inria.fr>"
homepage: "http://math-comp.github.io/math-comp/"
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.2"}
]
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.2.tar.gz"
checksum: "md5=cf10cb16f1ac239a9d52c029a4e00f66"
}
</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.2 coq.8.5.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam list; echo; ulimit -Sv 4000000; timeout 4h opam install -y --deps-only coq-mathcomp-field.1.6.2 coq.8.5.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>28 m 13 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam list; echo; ulimit -Sv 16000000; timeout 8h opam install -y -v coq-mathcomp-field.1.6.2 coq.8.5.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>35 m 12 s</dd>
</dl>
<h2>Installation size</h2>
<p>Total: 14 M</p>
<ul>
<li>4 M <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/mathcomp/field/fieldext.vo</code></li>
<li>1 M <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/mathcomp/field/galois.vo</code></li>
<li>708 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/mathcomp/field/algebraics_fundamentals.vo</code></li>
<li>691 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/mathcomp/field/algC.vo</code></li>
<li>654 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/mathcomp/field/algC.glob</code></li>
<li>578 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/mathcomp/field/galois.glob</code></li>
<li>553 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/mathcomp/field/algnum.vo</code></li>
<li>522 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/mathcomp/field/separable.vo</code></li>
<li>480 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/mathcomp/field/algebraics_fundamentals.glob</code></li>
<li>471 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/mathcomp/field/fieldext.glob</code></li>
<li>460 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/mathcomp/field/falgebra.vo</code></li>
<li>436 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/mathcomp/field/separable.glob</code></li>
<li>404 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/mathcomp/field/countalg.vo</code></li>
<li>399 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/mathcomp/field/finfield.vo</code></li>
<li>343 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/mathcomp/field/closed_field.glob</code></li>
<li>327 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/mathcomp/field/algnum.glob</code></li>
<li>322 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/mathcomp/field/falgebra.glob</code></li>
<li>290 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/mathcomp/field/closed_field.vo</code></li>
<li>259 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/mathcomp/field/finfield.glob</code></li>
<li>242 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/mathcomp/field/countalg.glob</code></li>
<li>183 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/mathcomp/field/cyclotomic.vo</code></li>
<li>125 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/mathcomp/field/cyclotomic.glob</code></li>
<li>73 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/mathcomp/field/algC.v</code></li>
<li>69 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/mathcomp/field/galois.v</code></li>
<li>67 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/mathcomp/field/fieldext.v</code></li>
<li>59 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/mathcomp/field/all_field.vo</code></li>
<li>52 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/mathcomp/field/algebraics_fundamentals.v</code></li>
<li>48 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/mathcomp/field/countalg.v</code></li>
<li>47 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/mathcomp/field/falgebra.v</code></li>
<li>44 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/mathcomp/field/separable.v</code></li>
<li>39 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/mathcomp/field/algnum.v</code></li>
<li>32 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/mathcomp/field/finfield.v</code></li>
<li>24 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/mathcomp/field/closed_field.v</code></li>
<li>15 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/mathcomp/field/cyclotomic.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/mathcomp/field/all_field.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/mathcomp/field/all_field.v</code></li>
</ul>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq-mathcomp-field.1.6.2</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>
|
clean/Linux-x86_64-4.09.1-2.0.6/released/8.12.0/concat/8.8.0.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>concat: 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.12.0 / concat - 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>
concat
<small>
8.8.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2021-11-20 18:56:28 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-11-20 18:56:28 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.12.0 Formal proof management system
num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.09.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.09.1 Official release 4.09.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/concat"
license: "LGPL 2.1"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/ConCaT"]
depends: [
"ocaml"
"coq" {>= "8.8" & < "8.9~"}
]
tags: [ "keyword: category theory" "category: Mathematics/Category Theory" ]
authors: [ "Amokrane Saïbi" ]
bug-reports: "https://github.com/coq-contribs/concat/issues"
dev-repo: "git+https://github.com/coq-contribs/concat.git"
synopsis: "Constructive Category Theory"
description: "http://logical.inria.fr/~saibi/docCatV6.ps"
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/concat/archive/v8.8.0.tar.gz"
checksum: "md5=d481a4f7b116efd005214e43b4bbae85"
}
</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-concat.8.8.0 coq.8.12.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.12.0).
The following dependencies couldn't be met:
- coq-concat -> 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-concat.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>
|
clean/Linux-x86_64-4.09.0-2.0.5/released/8.7.1+2/io-evaluate/1.0.0.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>io-evaluate: 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+2 / io-evaluate - 1.0.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
io-evaluate
<small>
1.0.0
<span class="label label-info">Not compatible</span>
</small>
</h1>
<p><em><script>document.write(moment("2020-02-24 00:36:37 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2020-02-24 00:36:37 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
camlp5 7.11 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-m4 1 Virtual package relying on m4
coq 8.7.1+2 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: "dev@clarus.me"
homepage: "https://github.com/clarus/io-evaluate"
dev-repo: "git+https://github.com/clarus/io-evaluate.git"
bug-reports: "https://github.com/clarus/io-evaluate/issues"
authors: ["Guillaume Claret"]
license: "MIT"
build: [
["./configure.sh"]
[make "-j%{jobs}%"]
]
install: [
[make "install"]
]
depends: [
"ocaml"
"coq" {>= "8.4pl4" & < "8.5~"}
"coq-function-ninjas"
"coq-io" {>= "3.1.0"}
]
tags: [
"date:2015-06-14"
"keyword:effects"
]
synopsis: "Generic functions to run effects"
url {
src: "https://github.com/coq-io/evaluate/archive/1.0.0.tar.gz"
checksum: "md5=f244d76d068bbf4c894a0ad8058179c9"
}
</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-io-evaluate.1.0.0 coq.8.7.1+2</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.7.1+2).
The following dependencies couldn't be met:
- coq-io-evaluate -> coq < 8.5~ -> ocaml < 4.03.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-io-evaluate.1.0.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>
|
BOOST/boost_1_61_0/libs/asio/doc/html/boost_asio/reference/serial_port_base__parity/type.html | calvinfarias/IC2015-2 | <html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>serial_port_base::parity::type</title>
<link rel="stylesheet" href="../../../../../doc/src/boostbook.css" type="text/css">
<meta name="generator" content="DocBook XSL Stylesheets V1.76.1">
<link rel="home" href="../../../boost_asio.html" title="Boost.Asio">
<link rel="up" href="../serial_port_base__parity.html" title="serial_port_base::parity">
<link rel="prev" href="store.html" title="serial_port_base::parity::store">
<link rel="next" href="value.html" title="serial_port_base::parity::value">
</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="store.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../serial_port_base__parity.html"><img src="../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../boost_asio.html"><img src="../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="value.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
<div class="section">
<div class="titlepage"><div><div><h4 class="title">
<a name="boost_asio.reference.serial_port_base__parity.type"></a><a class="link" href="type.html" title="serial_port_base::parity::type">serial_port_base::parity::type</a>
</h4></div></div></div>
<p>
<a class="indexterm" name="idp95560592"></a>
</p>
<pre class="programlisting"><span class="keyword">enum</span> <span class="identifier">type</span>
</pre>
<p>
<a class="indexterm" name="idp95563728"></a>
<a class="indexterm" name="idp95564736"></a>
<a class="indexterm" name="idp95565744"></a>
</p>
<h6>
<a name="boost_asio.reference.serial_port_base__parity.type.h0"></a>
<span><a name="boost_asio.reference.serial_port_base__parity.type.values"></a></span><a class="link" href="type.html#boost_asio.reference.serial_port_base__parity.type.values">Values</a>
</h6>
<div class="variablelist">
<p class="title"><b></b></p>
<dl>
<dt><span class="term">none</span></dt>
<dd></dd>
<dt><span class="term">odd</span></dt>
<dd></dd>
<dt><span class="term">even</span></dt>
<dd></dd>
</dl>
</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 © 2003-2015 Christopher M.
Kohlhoff<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="store.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../serial_port_base__parity.html"><img src="../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../boost_asio.html"><img src="../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="value.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
</body>
</html>
|
app/components/enroll/content.html | naqiyahredzwan/mosque-app | <div class="container" layout-gt-xs="row">
<div flex-gt-xs>
<div ng-include="'components/enroll/layout/enroll.html'"></div>
</div>
</div> |
Agda/html/Data.Fin.Subset.Properties.html | goodlyrottenapple/lamYcalc | <!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
>Data.Fin.Subset.Properties</title
><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"
/><meta http-equiv="Content-Style-Type" content="text/css"
/><link href="Agda.css" rel="stylesheet" type="text/css"
/></head
><body
><pre
><a name="1" class="Comment"
>------------------------------------------------------------------------</a
><a name="73"
>
</a
><a name="74" class="Comment"
>-- The Agda standard library</a
><a name="102"
>
</a
><a name="103" class="Comment"
>--</a
><a name="105"
>
</a
><a name="106" class="Comment"
>-- Some properties about subsets</a
><a name="138"
>
</a
><a name="139" class="Comment"
>------------------------------------------------------------------------</a
><a name="211"
>
</a
><a name="213" class="Keyword"
>module</a
><a name="219"
> </a
><a name="220" href="Data.Fin.Subset.Properties.html#1" class="Module"
>Data.Fin.Subset.Properties</a
><a name="246"
> </a
><a name="247" class="Keyword"
>where</a
><a name="252"
>
</a
><a name="254" class="Keyword"
>open</a
><a name="258"
> </a
><a name="259" class="Keyword"
>import</a
><a name="265"
> </a
><a name="266" href="Algebra.html#1" class="Module"
>Algebra</a
><a name="273"
>
</a
><a name="274" class="Keyword"
>import</a
><a name="280"
> </a
><a name="281" href="Algebra.Properties.BooleanAlgebra.html#1" class="Module"
>Algebra.Properties.BooleanAlgebra</a
><a name="314"
> </a
><a name="315" class="Symbol"
>as</a
><a name="317"
> </a
><a name="318" class="Module"
>BoolProp</a
><a name="326"
>
</a
><a name="327" class="Keyword"
>open</a
><a name="331"
> </a
><a name="332" class="Keyword"
>import</a
><a name="338"
> </a
><a name="339" href="Data.Empty.html#1" class="Module"
>Data.Empty</a
><a name="349"
> </a
><a name="350" class="Keyword"
>using</a
><a name="355"
> </a
><a name="356" class="Symbol"
>(</a
><a name="357" href="Data.Empty.html#348" class="Function"
>⊥-elim</a
><a name="363" class="Symbol"
>)</a
><a name="364"
>
</a
><a name="365" class="Keyword"
>open</a
><a name="369"
> </a
><a name="370" class="Keyword"
>import</a
><a name="376"
> </a
><a name="377" href="Data.Fin.html#1" class="Module"
>Data.Fin</a
><a name="385"
> </a
><a name="386" class="Keyword"
>using</a
><a name="391"
> </a
><a name="392" class="Symbol"
>(</a
><a name="393" href="Data.Fin.html#842" class="Datatype"
>Fin</a
><a name="396" class="Symbol"
>);</a
><a name="398"
> </a
><a name="399" class="Keyword"
>open</a
><a name="403"
> </a
><a name="404" href="Data.Fin.html#366" class="Module"
>Data.</a
><a name="409" href="Data.Fin.html#371" class="Module"
>Fin.</a
><a name="413" href="Data.Fin.html#842" class="Module"
>Fin</a
><a name="416"
>
</a
><a name="417" class="Keyword"
>open</a
><a name="421"
> </a
><a name="422" class="Keyword"
>import</a
><a name="428"
> </a
><a name="429" href="Data.Fin.Subset.html#1" class="Module"
>Data.Fin.Subset</a
><a name="444"
>
</a
><a name="445" class="Keyword"
>open</a
><a name="449"
> </a
><a name="450" class="Keyword"
>import</a
><a name="456"
> </a
><a name="457" href="Data.Nat.Base.html#1" class="Module"
>Data.Nat.Base</a
><a name="470"
> </a
><a name="471" class="Keyword"
>using</a
><a name="476"
> </a
><a name="477" class="Symbol"
>(</a
><a name="478" href="Agda.Builtin.Nat.html#69" class="Datatype"
>ℕ</a
><a name="479" class="Symbol"
>)</a
><a name="480"
>
</a
><a name="481" class="Keyword"
>open</a
><a name="485"
> </a
><a name="486" class="Keyword"
>import</a
><a name="492"
> </a
><a name="493" href="Data.Product.html#1" class="Module"
>Data.Product</a
><a name="505"
>
</a
><a name="506" class="Keyword"
>open</a
><a name="510"
> </a
><a name="511" class="Keyword"
>import</a
><a name="517"
> </a
><a name="518" href="Data.Sum.html#1" class="Module"
>Data.Sum</a
><a name="526"
> </a
><a name="527" class="Symbol"
>as</a
><a name="529"
> </a
><a name="530" class="Module"
>Sum</a
><a name="533"
>
</a
><a name="534" class="Keyword"
>open</a
><a name="538"
> </a
><a name="539" class="Keyword"
>import</a
><a name="545"
> </a
><a name="546" href="Data.Vec.html#1" class="Module"
>Data.Vec</a
><a name="554"
> </a
><a name="555" class="Keyword"
>hiding</a
><a name="561"
> </a
><a name="562" class="Symbol"
>(</a
><a name="563" href="Data.Vec.html#738" class="Datatype Operator"
>_∈_</a
><a name="566" class="Symbol"
>)</a
><a name="567"
>
</a
><a name="568" class="Keyword"
>open</a
><a name="572"
> </a
><a name="573" class="Keyword"
>import</a
><a name="579"
> </a
><a name="580" href="Function.html#1" class="Module"
>Function</a
><a name="588"
>
</a
><a name="589" class="Keyword"
>open</a
><a name="593"
> </a
><a name="594" class="Keyword"
>import</a
><a name="600"
> </a
><a name="601" href="Function.Equality.html#1" class="Module"
>Function.Equality</a
><a name="618"
> </a
><a name="619" class="Keyword"
>using</a
><a name="624"
> </a
><a name="625" class="Symbol"
>(</a
><a name="626" href="Function.Equality.html#681" class="Field Operator"
>_⟨$⟩_</a
><a name="631" class="Symbol"
>)</a
><a name="632"
>
</a
><a name="633" class="Keyword"
>open</a
><a name="637"
> </a
><a name="638" class="Keyword"
>import</a
><a name="644"
> </a
><a name="645" href="Function.Equivalence.html#1" class="Module"
>Function.Equivalence</a
><a name="665"
>
</a
><a name="668" class="Keyword"
>using</a
><a name="673"
> </a
><a name="674" class="Symbol"
>(</a
><a name="675" href="Function.Equivalence.html#711" class="Function Operator"
>_⇔_</a
><a name="678" class="Symbol"
>;</a
><a name="679"
> </a
><a name="680" href="Function.Equivalence.html#804" class="Function"
>equivalence</a
><a name="691" class="Symbol"
>;</a
><a name="692"
> </a
><a name="693" class="Keyword"
>module</a
><a name="699"
> </a
><a name="700" href="Function.Equivalence.html#218" class="Module"
>Equivalence</a
><a name="711" class="Symbol"
>)</a
><a name="712"
>
</a
><a name="713" class="Keyword"
>open</a
><a name="717"
> </a
><a name="718" class="Keyword"
>import</a
><a name="724"
> </a
><a name="725" href="Relation.Binary.html#1" class="Module"
>Relation.Binary</a
><a name="740"
>
</a
><a name="741" class="Keyword"
>open</a
><a name="745"
> </a
><a name="746" class="Keyword"
>import</a
><a name="752"
> </a
><a name="753" href="Relation.Binary.PropositionalEquality.html#1" class="Module"
>Relation.Binary.PropositionalEquality</a
><a name="790"
> </a
><a name="791" class="Symbol"
>as</a
><a name="793"
> </a
><a name="794" class="Module"
>P</a
><a name="795"
> </a
><a name="796" class="Keyword"
>using</a
><a name="801"
> </a
><a name="802" class="Symbol"
>(</a
><a name="803" href="Agda.Builtin.Equality.html#55" class="Datatype Operator"
>_≡_</a
><a name="806" class="Symbol"
>)</a
><a name="807"
>
</a
><a name="809" class="Comment"
>------------------------------------------------------------------------</a
><a name="881"
>
</a
><a name="882" class="Comment"
>-- Constructor mangling</a
><a name="905"
>
</a
><a name="907" href="Data.Fin.Subset.Properties.html#907" class="Function"
>drop-there</a
><a name="917"
> </a
><a name="918" class="Symbol"
>:</a
><a name="919"
> </a
><a name="920" class="Symbol"
>∀</a
><a name="921"
> </a
><a name="922" class="Symbol"
>{</a
><a name="923" href="Data.Fin.Subset.Properties.html#923" class="Bound"
>s</a
><a name="924"
> </a
><a name="925" href="Data.Fin.Subset.Properties.html#925" class="Bound"
>n</a
><a name="926"
> </a
><a name="927" href="Data.Fin.Subset.Properties.html#927" class="Bound"
>x</a
><a name="928" class="Symbol"
>}</a
><a name="929"
> </a
><a name="930" class="Symbol"
>{</a
><a name="931" href="Data.Fin.Subset.Properties.html#931" class="Bound"
>p</a
><a name="932"
> </a
><a name="933" class="Symbol"
>:</a
><a name="934"
> </a
><a name="935" href="Data.Fin.Subset.html#956" class="Function"
>Subset</a
><a name="941"
> </a
><a name="942" href="Data.Fin.Subset.Properties.html#925" class="Bound"
>n</a
><a name="943" class="Symbol"
>}</a
><a name="944"
> </a
><a name="945" class="Symbol"
>→</a
><a name="946"
> </a
><a name="947" href="Data.Fin.html#895" class="InductiveConstructor"
>suc</a
><a name="950"
> </a
><a name="951" href="Data.Fin.Subset.Properties.html#927" class="Bound"
>x</a
><a name="952"
> </a
><a name="953" href="Data.Fin.Subset.html#1102" class="Function Operator"
>∈</a
><a name="954"
> </a
><a name="955" href="Data.Fin.Subset.Properties.html#923" class="Bound"
>s</a
><a name="956"
> </a
><a name="957" href="Data.Vec.html#668" class="InductiveConstructor Operator"
>∷</a
><a name="958"
> </a
><a name="959" href="Data.Fin.Subset.Properties.html#931" class="Bound"
>p</a
><a name="960"
> </a
><a name="961" class="Symbol"
>→</a
><a name="962"
> </a
><a name="963" href="Data.Fin.Subset.Properties.html#927" class="Bound"
>x</a
><a name="964"
> </a
><a name="965" href="Data.Fin.Subset.html#1102" class="Function Operator"
>∈</a
><a name="966"
> </a
><a name="967" href="Data.Fin.Subset.Properties.html#931" class="Bound"
>p</a
><a name="968"
>
</a
><a name="969" href="Data.Fin.Subset.Properties.html#907" class="Function"
>drop-there</a
><a name="979"
> </a
><a name="980" class="Symbol"
>(</a
><a name="981" href="Data.Vec.html#1079" class="InductiveConstructor"
>there</a
><a name="986"
> </a
><a name="987" href="Data.Fin.Subset.Properties.html#987" class="Bound"
>x∈p</a
><a name="990" class="Symbol"
>)</a
><a name="991"
> </a
><a name="992" class="Symbol"
>=</a
><a name="993"
> </a
><a name="994" href="Data.Fin.Subset.Properties.html#987" class="Bound"
>x∈p</a
><a name="997"
>
</a
><a name="999" href="Data.Fin.Subset.Properties.html#999" class="Function"
>drop-∷-⊆</a
><a name="1007"
> </a
><a name="1008" class="Symbol"
>:</a
><a name="1009"
> </a
><a name="1010" class="Symbol"
>∀</a
><a name="1011"
> </a
><a name="1012" class="Symbol"
>{</a
><a name="1013" href="Data.Fin.Subset.Properties.html#1013" class="Bound"
>n</a
><a name="1014"
> </a
><a name="1015" href="Data.Fin.Subset.Properties.html#1015" class="Bound"
>s₁</a
><a name="1017"
> </a
><a name="1018" href="Data.Fin.Subset.Properties.html#1018" class="Bound"
>s₂</a
><a name="1020" class="Symbol"
>}</a
><a name="1021"
> </a
><a name="1022" class="Symbol"
>{</a
><a name="1023" href="Data.Fin.Subset.Properties.html#1023" class="Bound"
>p₁</a
><a name="1025"
> </a
><a name="1026" href="Data.Fin.Subset.Properties.html#1026" class="Bound"
>p₂</a
><a name="1028"
> </a
><a name="1029" class="Symbol"
>:</a
><a name="1030"
> </a
><a name="1031" href="Data.Fin.Subset.html#956" class="Function"
>Subset</a
><a name="1037"
> </a
><a name="1038" href="Data.Fin.Subset.Properties.html#1013" class="Bound"
>n</a
><a name="1039" class="Symbol"
>}</a
><a name="1040"
> </a
><a name="1041" class="Symbol"
>→</a
><a name="1042"
> </a
><a name="1043" href="Data.Fin.Subset.Properties.html#1015" class="Bound"
>s₁</a
><a name="1045"
> </a
><a name="1046" href="Data.Vec.html#668" class="InductiveConstructor Operator"
>∷</a
><a name="1047"
> </a
><a name="1048" href="Data.Fin.Subset.Properties.html#1023" class="Bound"
>p₁</a
><a name="1050"
> </a
><a name="1051" href="Data.Fin.Subset.html#1220" class="Function Operator"
>⊆</a
><a name="1052"
> </a
><a name="1053" href="Data.Fin.Subset.Properties.html#1018" class="Bound"
>s₂</a
><a name="1055"
> </a
><a name="1056" href="Data.Vec.html#668" class="InductiveConstructor Operator"
>∷</a
><a name="1057"
> </a
><a name="1058" href="Data.Fin.Subset.Properties.html#1026" class="Bound"
>p₂</a
><a name="1060"
> </a
><a name="1061" class="Symbol"
>→</a
><a name="1062"
> </a
><a name="1063" href="Data.Fin.Subset.Properties.html#1023" class="Bound"
>p₁</a
><a name="1065"
> </a
><a name="1066" href="Data.Fin.Subset.html#1220" class="Function Operator"
>⊆</a
><a name="1067"
> </a
><a name="1068" href="Data.Fin.Subset.Properties.html#1026" class="Bound"
>p₂</a
><a name="1070"
>
</a
><a name="1071" href="Data.Fin.Subset.Properties.html#999" class="Function"
>drop-∷-⊆</a
><a name="1079"
> </a
><a name="1080" href="Data.Fin.Subset.Properties.html#1080" class="Bound"
>p₁s₁⊆p₂s₂</a
><a name="1089"
> </a
><a name="1090" href="Data.Fin.Subset.Properties.html#1090" class="Bound"
>x∈p₁</a
><a name="1094"
> </a
><a name="1095" class="Symbol"
>=</a
><a name="1096"
> </a
><a name="1097" href="Data.Fin.Subset.Properties.html#907" class="Function"
>drop-there</a
><a name="1107"
> </a
><a name="1108" href="Function.html#1835" class="Function Operator"
>$</a
><a name="1109"
> </a
><a name="1110" href="Data.Fin.Subset.Properties.html#1080" class="Bound"
>p₁s₁⊆p₂s₂</a
><a name="1119"
> </a
><a name="1120" class="Symbol"
>(</a
><a name="1121" href="Data.Vec.html#1079" class="InductiveConstructor"
>there</a
><a name="1126"
> </a
><a name="1127" href="Data.Fin.Subset.Properties.html#1090" class="Bound"
>x∈p₁</a
><a name="1131" class="Symbol"
>)</a
><a name="1132"
>
</a
><a name="1134" href="Data.Fin.Subset.Properties.html#1134" class="Function"
>drop-∷-Empty</a
><a name="1146"
> </a
><a name="1147" class="Symbol"
>:</a
><a name="1148"
> </a
><a name="1149" class="Symbol"
>∀</a
><a name="1150"
> </a
><a name="1151" class="Symbol"
>{</a
><a name="1152" href="Data.Fin.Subset.Properties.html#1152" class="Bound"
>n</a
><a name="1153"
> </a
><a name="1154" href="Data.Fin.Subset.Properties.html#1154" class="Bound"
>s</a
><a name="1155" class="Symbol"
>}</a
><a name="1156"
> </a
><a name="1157" class="Symbol"
>{</a
><a name="1158" href="Data.Fin.Subset.Properties.html#1158" class="Bound"
>p</a
><a name="1159"
> </a
><a name="1160" class="Symbol"
>:</a
><a name="1161"
> </a
><a name="1162" href="Data.Fin.Subset.html#956" class="Function"
>Subset</a
><a name="1168"
> </a
><a name="1169" href="Data.Fin.Subset.Properties.html#1152" class="Bound"
>n</a
><a name="1170" class="Symbol"
>}</a
><a name="1171"
> </a
><a name="1172" class="Symbol"
>→</a
><a name="1173"
> </a
><a name="1174" href="Data.Fin.Subset.html#2580" class="Function"
>Empty</a
><a name="1179"
> </a
><a name="1180" class="Symbol"
>(</a
><a name="1181" href="Data.Fin.Subset.Properties.html#1154" class="Bound"
>s</a
><a name="1182"
> </a
><a name="1183" href="Data.Vec.html#668" class="InductiveConstructor Operator"
>∷</a
><a name="1184"
> </a
><a name="1185" href="Data.Fin.Subset.Properties.html#1158" class="Bound"
>p</a
><a name="1186" class="Symbol"
>)</a
><a name="1187"
> </a
><a name="1188" class="Symbol"
>→</a
><a name="1189"
> </a
><a name="1190" href="Data.Fin.Subset.html#2580" class="Function"
>Empty</a
><a name="1195"
> </a
><a name="1196" href="Data.Fin.Subset.Properties.html#1158" class="Bound"
>p</a
><a name="1197"
>
</a
><a name="1198" href="Data.Fin.Subset.Properties.html#1134" class="Function"
>drop-∷-Empty</a
><a name="1210"
> </a
><a name="1211" href="Data.Fin.Subset.Properties.html#1211" class="Bound"
>¬∃∈</a
><a name="1214"
> </a
><a name="1215" class="Symbol"
>(</a
><a name="1216" href="Data.Fin.Subset.Properties.html#1216" class="Bound"
>x</a
><a name="1217"
> </a
><a name="1218" href="Data.Product.html#509" class="InductiveConstructor Operator"
>,</a
><a name="1219"
> </a
><a name="1220" href="Data.Fin.Subset.Properties.html#1220" class="Bound"
>x∈p</a
><a name="1223" class="Symbol"
>)</a
><a name="1224"
> </a
><a name="1225" class="Symbol"
>=</a
><a name="1226"
> </a
><a name="1227" href="Data.Fin.Subset.Properties.html#1211" class="Bound"
>¬∃∈</a
><a name="1230"
> </a
><a name="1231" class="Symbol"
>(</a
><a name="1232" href="Data.Fin.html#895" class="InductiveConstructor"
>suc</a
><a name="1235"
> </a
><a name="1236" href="Data.Fin.Subset.Properties.html#1216" class="Bound"
>x</a
><a name="1237"
> </a
><a name="1238" href="Data.Product.html#509" class="InductiveConstructor Operator"
>,</a
><a name="1239"
> </a
><a name="1240" href="Data.Vec.html#1079" class="InductiveConstructor"
>there</a
><a name="1245"
> </a
><a name="1246" href="Data.Fin.Subset.Properties.html#1220" class="Bound"
>x∈p</a
><a name="1249" class="Symbol"
>)</a
><a name="1250"
>
</a
><a name="1252" class="Comment"
>------------------------------------------------------------------------</a
><a name="1324"
>
</a
><a name="1325" class="Comment"
>-- Properties involving ⊥</a
><a name="1350"
>
</a
><a name="1352" href="Data.Fin.Subset.Properties.html#1352" class="Function"
>∉⊥</a
><a name="1354"
> </a
><a name="1355" class="Symbol"
>:</a
><a name="1356"
> </a
><a name="1357" class="Symbol"
>∀</a
><a name="1358"
> </a
><a name="1359" class="Symbol"
>{</a
><a name="1360" href="Data.Fin.Subset.Properties.html#1360" class="Bound"
>n</a
><a name="1361" class="Symbol"
>}</a
><a name="1362"
> </a
><a name="1363" class="Symbol"
>{</a
><a name="1364" href="Data.Fin.Subset.Properties.html#1364" class="Bound"
>x</a
><a name="1365"
> </a
><a name="1366" class="Symbol"
>:</a
><a name="1367"
> </a
><a name="1368" href="Data.Fin.html#842" class="Datatype"
>Fin</a
><a name="1371"
> </a
><a name="1372" href="Data.Fin.Subset.Properties.html#1360" class="Bound"
>n</a
><a name="1373" class="Symbol"
>}</a
><a name="1374"
> </a
><a name="1375" class="Symbol"
>→</a
><a name="1376"
> </a
><a name="1377" href="Data.Fin.Subset.Properties.html#1364" class="Bound"
>x</a
><a name="1378"
> </a
><a name="1379" href="Data.Fin.Subset.html#1164" class="Function Operator"
>∉</a
><a name="1380"
> </a
><a name="1381" href="Algebra.html#12888" class="Function"
>⊥</a
><a name="1382"
>
</a
><a name="1383" href="Data.Fin.Subset.Properties.html#1352" class="Function"
>∉⊥</a
><a name="1385"
> </a
><a name="1386" class="Symbol"
>(</a
><a name="1387" href="Data.Vec.html#1079" class="InductiveConstructor"
>there</a
><a name="1392"
> </a
><a name="1393" href="Data.Fin.Subset.Properties.html#1393" class="Bound"
>p</a
><a name="1394" class="Symbol"
>)</a
><a name="1395"
> </a
><a name="1396" class="Symbol"
>=</a
><a name="1397"
> </a
><a name="1398" href="Data.Fin.Subset.Properties.html#1352" class="Function"
>∉⊥</a
><a name="1400"
> </a
><a name="1401" href="Data.Fin.Subset.Properties.html#1393" class="Bound"
>p</a
><a name="1402"
>
</a
><a name="1404" href="Data.Fin.Subset.Properties.html#1404" class="Function"
>⊥⊆</a
><a name="1406"
> </a
><a name="1407" class="Symbol"
>:</a
><a name="1408"
> </a
><a name="1409" class="Symbol"
>∀</a
><a name="1410"
> </a
><a name="1411" class="Symbol"
>{</a
><a name="1412" href="Data.Fin.Subset.Properties.html#1412" class="Bound"
>n</a
><a name="1413" class="Symbol"
>}</a
><a name="1414"
> </a
><a name="1415" class="Symbol"
>{</a
><a name="1416" href="Data.Fin.Subset.Properties.html#1416" class="Bound"
>p</a
><a name="1417"
> </a
><a name="1418" class="Symbol"
>:</a
><a name="1419"
> </a
><a name="1420" href="Data.Fin.Subset.html#956" class="Function"
>Subset</a
><a name="1426"
> </a
><a name="1427" href="Data.Fin.Subset.Properties.html#1412" class="Bound"
>n</a
><a name="1428" class="Symbol"
>}</a
><a name="1429"
> </a
><a name="1430" class="Symbol"
>→</a
><a name="1431"
> </a
><a name="1432" href="Algebra.html#12888" class="Function"
>⊥</a
><a name="1433"
> </a
><a name="1434" href="Data.Fin.Subset.html#1220" class="Function Operator"
>⊆</a
><a name="1435"
> </a
><a name="1436" href="Data.Fin.Subset.Properties.html#1416" class="Bound"
>p</a
><a name="1437"
>
</a
><a name="1438" href="Data.Fin.Subset.Properties.html#1404" class="Function"
>⊥⊆</a
><a name="1440"
> </a
><a name="1441" href="Data.Fin.Subset.Properties.html#1441" class="Bound"
>x∈⊥</a
><a name="1444"
> </a
><a name="1445" class="Keyword"
>with</a
><a name="1449"
> </a
><a name="1450" href="Data.Fin.Subset.Properties.html#1352" class="Function"
>∉⊥</a
><a name="1452"
> </a
><a name="1453" href="Data.Fin.Subset.Properties.html#1441" class="Bound"
>x∈⊥</a
><a name="1456"
>
</a
><a name="1457" class="Symbol"
>...</a
><a name="1460"
> </a
><a name="1461" class="Symbol"
>|</a
><a name="1462"
> </a
><a name="1463" class="Symbol"
>()</a
><a name="1465"
>
</a
><a name="1467" href="Data.Fin.Subset.Properties.html#1467" class="Function"
>Empty-unique</a
><a name="1479"
> </a
><a name="1480" class="Symbol"
>:</a
><a name="1481"
> </a
><a name="1482" class="Symbol"
>∀</a
><a name="1483"
> </a
><a name="1484" class="Symbol"
>{</a
><a name="1485" href="Data.Fin.Subset.Properties.html#1485" class="Bound"
>n</a
><a name="1486" class="Symbol"
>}</a
><a name="1487"
> </a
><a name="1488" class="Symbol"
>{</a
><a name="1489" href="Data.Fin.Subset.Properties.html#1489" class="Bound"
>p</a
><a name="1490"
> </a
><a name="1491" class="Symbol"
>:</a
><a name="1492"
> </a
><a name="1493" href="Data.Fin.Subset.html#956" class="Function"
>Subset</a
><a name="1499"
> </a
><a name="1500" href="Data.Fin.Subset.Properties.html#1485" class="Bound"
>n</a
><a name="1501" class="Symbol"
>}</a
><a name="1502"
> </a
><a name="1503" class="Symbol"
>→</a
><a name="1504"
>
</a
><a name="1520" href="Data.Fin.Subset.html#2580" class="Function"
>Empty</a
><a name="1525"
> </a
><a name="1526" href="Data.Fin.Subset.Properties.html#1489" class="Bound"
>p</a
><a name="1527"
> </a
><a name="1528" class="Symbol"
>→</a
><a name="1529"
> </a
><a name="1530" href="Data.Fin.Subset.Properties.html#1489" class="Bound"
>p</a
><a name="1531"
> </a
><a name="1532" href="Agda.Builtin.Equality.html#55" class="Datatype Operator"
>≡</a
><a name="1533"
> </a
><a name="1534" href="Algebra.html#12888" class="Function"
>⊥</a
><a name="1535"
>
</a
><a name="1536" href="Data.Fin.Subset.Properties.html#1467" class="Function"
>Empty-unique</a
><a name="1548"
> </a
><a name="1549" class="Symbol"
>{</a
><a name="1550" class="Argument"
>p</a
><a name="1551"
> </a
><a name="1552" class="Symbol"
>=</a
><a name="1553"
> </a
><a name="1554" href="Data.Vec.html#649" class="InductiveConstructor"
>[]</a
><a name="1556" class="Symbol"
>}</a
><a name="1557"
> </a
><a name="1568" href="Data.Fin.Subset.Properties.html#1568" class="Bound"
>¬∃∈</a
><a name="1571"
> </a
><a name="1572" class="Symbol"
>=</a
><a name="1573"
> </a
><a name="1574" href="Agda.Builtin.Equality.html#112" class="InductiveConstructor"
>P.refl</a
><a name="1580"
>
</a
><a name="1581" href="Data.Fin.Subset.Properties.html#1467" class="Function"
>Empty-unique</a
><a name="1593"
> </a
><a name="1594" class="Symbol"
>{</a
><a name="1595" class="Argument"
>p</a
><a name="1596"
> </a
><a name="1597" class="Symbol"
>=</a
><a name="1598"
> </a
><a name="1599" href="Data.Fin.Subset.Properties.html#1599" class="Bound"
>s</a
><a name="1600"
> </a
><a name="1601" href="Data.Vec.html#668" class="InductiveConstructor Operator"
>∷</a
><a name="1602"
> </a
><a name="1603" href="Data.Fin.Subset.Properties.html#1603" class="Bound"
>p</a
><a name="1604" class="Symbol"
>}</a
><a name="1605"
> </a
><a name="1613" href="Data.Fin.Subset.Properties.html#1613" class="Bound"
>¬∃∈</a
><a name="1616"
> </a
><a name="1617" class="Keyword"
>with</a
><a name="1621"
> </a
><a name="1622" href="Data.Fin.Subset.Properties.html#1467" class="Function"
>Empty-unique</a
><a name="1634"
> </a
><a name="1635" class="Symbol"
>(</a
><a name="1636" href="Data.Fin.Subset.Properties.html#1134" class="Function"
>drop-∷-Empty</a
><a name="1648"
> </a
><a name="1649" href="Data.Fin.Subset.Properties.html#1613" class="Bound"
>¬∃∈</a
><a name="1652" class="Symbol"
>)</a
><a name="1653"
>
</a
><a name="1654" href="Data.Fin.Subset.Properties.html#1467" class="Function"
>Empty-unique</a
><a name="1666"
> </a
><a name="1667" class="Symbol"
>{</a
><a name="1668" class="Argument"
>p</a
><a name="1669"
> </a
><a name="1670" class="Symbol"
>=</a
><a name="1671"
> </a
><a name="1672" href="Agda.Builtin.Bool.html#58" class="InductiveConstructor"
>outside</a
><a name="1679"
> </a
><a name="1680" href="Data.Vec.html#668" class="InductiveConstructor Operator"
>∷</a
><a name="1681"
> </a
><a name="1682" class="DottedPattern Symbol"
>.</a
><a name="1683" href="Algebra.html#12888" class="DottedPattern Function"
>⊥</a
><a name="1684" class="Symbol"
>}</a
><a name="1685"
> </a
><a name="1686" href="Data.Fin.Subset.Properties.html#1686" class="Bound"
>¬∃∈</a
><a name="1689"
> </a
><a name="1690" class="Symbol"
>|</a
><a name="1691"
> </a
><a name="1692" href="Agda.Builtin.Equality.html#112" class="InductiveConstructor"
>P.refl</a
><a name="1698"
> </a
><a name="1699" class="Symbol"
>=</a
><a name="1700"
> </a
><a name="1701" href="Agda.Builtin.Equality.html#112" class="InductiveConstructor"
>P.refl</a
><a name="1707"
>
</a
><a name="1708" href="Data.Fin.Subset.Properties.html#1467" class="Function"
>Empty-unique</a
><a name="1720"
> </a
><a name="1721" class="Symbol"
>{</a
><a name="1722" class="Argument"
>p</a
><a name="1723"
> </a
><a name="1724" class="Symbol"
>=</a
><a name="1725"
> </a
><a name="1726" href="Agda.Builtin.Bool.html#64" class="InductiveConstructor"
>inside</a
><a name="1732"
> </a
><a name="1734" href="Data.Vec.html#668" class="InductiveConstructor Operator"
>∷</a
><a name="1735"
> </a
><a name="1736" class="DottedPattern Symbol"
>.</a
><a name="1737" href="Algebra.html#12888" class="DottedPattern Function"
>⊥</a
><a name="1738" class="Symbol"
>}</a
><a name="1739"
> </a
><a name="1740" href="Data.Fin.Subset.Properties.html#1740" class="Bound"
>¬∃∈</a
><a name="1743"
> </a
><a name="1744" class="Symbol"
>|</a
><a name="1745"
> </a
><a name="1746" href="Agda.Builtin.Equality.html#112" class="InductiveConstructor"
>P.refl</a
><a name="1752"
> </a
><a name="1753" class="Symbol"
>=</a
><a name="1754"
>
</a
><a name="1757" href="Data.Empty.html#348" class="Function"
>⊥-elim</a
><a name="1763"
> </a
><a name="1764" class="Symbol"
>(</a
><a name="1765" href="Data.Fin.Subset.Properties.html#1740" class="Bound"
>¬∃∈</a
><a name="1768"
> </a
><a name="1769" class="Symbol"
>(</a
><a name="1770" href="Data.Fin.html#864" class="InductiveConstructor"
>zero</a
><a name="1774"
> </a
><a name="1775" href="Data.Product.html#509" class="InductiveConstructor Operator"
>,</a
><a name="1776"
> </a
><a name="1777" href="Data.Vec.html#1017" class="InductiveConstructor"
>here</a
><a name="1781" class="Symbol"
>))</a
><a name="1783"
>
</a
><a name="1785" class="Comment"
>------------------------------------------------------------------------</a
><a name="1857"
>
</a
><a name="1858" class="Comment"
>-- Properties involving ⊤</a
><a name="1883"
>
</a
><a name="1885" href="Data.Fin.Subset.Properties.html#1885" class="Function"
>∈⊤</a
><a name="1887"
> </a
><a name="1888" class="Symbol"
>:</a
><a name="1889"
> </a
><a name="1890" class="Symbol"
>∀</a
><a name="1891"
> </a
><a name="1892" class="Symbol"
>{</a
><a name="1893" href="Data.Fin.Subset.Properties.html#1893" class="Bound"
>n</a
><a name="1894" class="Symbol"
>}</a
><a name="1895"
> </a
><a name="1896" class="Symbol"
>{</a
><a name="1897" href="Data.Fin.Subset.Properties.html#1897" class="Bound"
>x</a
><a name="1898"
> </a
><a name="1899" class="Symbol"
>:</a
><a name="1900"
> </a
><a name="1901" href="Data.Fin.html#842" class="Datatype"
>Fin</a
><a name="1904"
> </a
><a name="1905" href="Data.Fin.Subset.Properties.html#1893" class="Bound"
>n</a
><a name="1906" class="Symbol"
>}</a
><a name="1907"
> </a
><a name="1908" class="Symbol"
>→</a
><a name="1909"
> </a
><a name="1910" href="Data.Fin.Subset.Properties.html#1897" class="Bound"
>x</a
><a name="1911"
> </a
><a name="1912" href="Data.Fin.Subset.html#1102" class="Function Operator"
>∈</a
><a name="1913"
> </a
><a name="1914" href="Algebra.html#12857" class="Function"
>⊤</a
><a name="1915"
>
</a
><a name="1916" href="Data.Fin.Subset.Properties.html#1885" class="Function"
>∈⊤</a
><a name="1918"
> </a
><a name="1919" class="Symbol"
>{</a
><a name="1920" class="Argument"
>x</a
><a name="1921"
> </a
><a name="1922" class="Symbol"
>=</a
><a name="1923"
> </a
><a name="1924" href="Data.Fin.html#864" class="InductiveConstructor"
>zero</a
><a name="1928" class="Symbol"
>}</a
><a name="1929"
> </a
><a name="1931" class="Symbol"
>=</a
><a name="1932"
> </a
><a name="1933" href="Data.Vec.html#1017" class="InductiveConstructor"
>here</a
><a name="1937"
>
</a
><a name="1938" href="Data.Fin.Subset.Properties.html#1885" class="Function"
>∈⊤</a
><a name="1940"
> </a
><a name="1941" class="Symbol"
>{</a
><a name="1942" class="Argument"
>x</a
><a name="1943"
> </a
><a name="1944" class="Symbol"
>=</a
><a name="1945"
> </a
><a name="1946" href="Data.Fin.html#895" class="InductiveConstructor"
>suc</a
><a name="1949"
> </a
><a name="1950" href="Data.Fin.Subset.Properties.html#1950" class="Bound"
>x</a
><a name="1951" class="Symbol"
>}</a
><a name="1952"
> </a
><a name="1953" class="Symbol"
>=</a
><a name="1954"
> </a
><a name="1955" href="Data.Vec.html#1079" class="InductiveConstructor"
>there</a
><a name="1960"
> </a
><a name="1961" href="Data.Fin.Subset.Properties.html#1885" class="Function"
>∈⊤</a
><a name="1963"
>
</a
><a name="1965" href="Data.Fin.Subset.Properties.html#1965" class="Function"
>⊆⊤</a
><a name="1967"
> </a
><a name="1968" class="Symbol"
>:</a
><a name="1969"
> </a
><a name="1970" class="Symbol"
>∀</a
><a name="1971"
> </a
><a name="1972" class="Symbol"
>{</a
><a name="1973" href="Data.Fin.Subset.Properties.html#1973" class="Bound"
>n</a
><a name="1974" class="Symbol"
>}</a
><a name="1975"
> </a
><a name="1976" class="Symbol"
>{</a
><a name="1977" href="Data.Fin.Subset.Properties.html#1977" class="Bound"
>p</a
><a name="1978"
> </a
><a name="1979" class="Symbol"
>:</a
><a name="1980"
> </a
><a name="1981" href="Data.Fin.Subset.html#956" class="Function"
>Subset</a
><a name="1987"
> </a
><a name="1988" href="Data.Fin.Subset.Properties.html#1973" class="Bound"
>n</a
><a name="1989" class="Symbol"
>}</a
><a name="1990"
> </a
><a name="1991" class="Symbol"
>→</a
><a name="1992"
> </a
><a name="1993" href="Data.Fin.Subset.Properties.html#1977" class="Bound"
>p</a
><a name="1994"
> </a
><a name="1995" href="Data.Fin.Subset.html#1220" class="Function Operator"
>⊆</a
><a name="1996"
> </a
><a name="1997" href="Algebra.html#12857" class="Function"
>⊤</a
><a name="1998"
>
</a
><a name="1999" href="Data.Fin.Subset.Properties.html#1965" class="Function"
>⊆⊤</a
><a name="2001"
> </a
><a name="2002" class="Symbol"
>=</a
><a name="2003"
> </a
><a name="2004" href="Function.html#1053" class="Function"
>const</a
><a name="2009"
> </a
><a name="2010" href="Data.Fin.Subset.Properties.html#1885" class="Function"
>∈⊤</a
><a name="2012"
>
</a
><a name="2014" class="Comment"
>------------------------------------------------------------------------</a
><a name="2086"
>
</a
><a name="2087" class="Comment"
>-- A property involving ⁅_⁆</a
><a name="2114"
>
</a
><a name="2116" href="Data.Fin.Subset.Properties.html#2116" class="Function"
>x∈⁅y⁆⇔x≡y</a
><a name="2125"
> </a
><a name="2126" class="Symbol"
>:</a
><a name="2127"
> </a
><a name="2128" class="Symbol"
>∀</a
><a name="2129"
> </a
><a name="2130" class="Symbol"
>{</a
><a name="2131" href="Data.Fin.Subset.Properties.html#2131" class="Bound"
>n</a
><a name="2132" class="Symbol"
>}</a
><a name="2133"
> </a
><a name="2134" class="Symbol"
>{</a
><a name="2135" href="Data.Fin.Subset.Properties.html#2135" class="Bound"
>x</a
><a name="2136"
> </a
><a name="2137" href="Data.Fin.Subset.Properties.html#2137" class="Bound"
>y</a
><a name="2138"
> </a
><a name="2139" class="Symbol"
>:</a
><a name="2140"
> </a
><a name="2141" href="Data.Fin.html#842" class="Datatype"
>Fin</a
><a name="2144"
> </a
><a name="2145" href="Data.Fin.Subset.Properties.html#2131" class="Bound"
>n</a
><a name="2146" class="Symbol"
>}</a
><a name="2147"
> </a
><a name="2148" class="Symbol"
>→</a
><a name="2149"
> </a
><a name="2150" href="Data.Fin.Subset.Properties.html#2135" class="Bound"
>x</a
><a name="2151"
> </a
><a name="2152" href="Data.Fin.Subset.html#1102" class="Function Operator"
>∈</a
><a name="2153"
> </a
><a name="2154" href="Data.Fin.Subset.html#2179" class="Function Operator"
>⁅</a
><a name="2155"
> </a
><a name="2156" href="Data.Fin.Subset.Properties.html#2137" class="Bound"
>y</a
><a name="2157"
> </a
><a name="2158" href="Data.Fin.Subset.html#2179" class="Function Operator"
>⁆</a
><a name="2159"
> </a
><a name="2160" href="Function.Equivalence.html#711" class="Function Operator"
>⇔</a
><a name="2161"
> </a
><a name="2162" href="Data.Fin.Subset.Properties.html#2135" class="Bound"
>x</a
><a name="2163"
> </a
><a name="2164" href="Agda.Builtin.Equality.html#55" class="Datatype Operator"
>≡</a
><a name="2165"
> </a
><a name="2166" href="Data.Fin.Subset.Properties.html#2137" class="Bound"
>y</a
><a name="2167"
>
</a
><a name="2168" href="Data.Fin.Subset.Properties.html#2116" class="Function"
>x∈⁅y⁆⇔x≡y</a
><a name="2177"
> </a
><a name="2178" class="Symbol"
>{</a
><a name="2179" class="Argument"
>x</a
><a name="2180"
> </a
><a name="2181" class="Symbol"
>=</a
><a name="2182"
> </a
><a name="2183" href="Data.Fin.Subset.Properties.html#2183" class="Bound"
>x</a
><a name="2184" class="Symbol"
>}</a
><a name="2185"
> </a
><a name="2186" class="Symbol"
>{</a
><a name="2187" href="Data.Fin.Subset.Properties.html#2187" class="Bound"
>y</a
><a name="2188" class="Symbol"
>}</a
><a name="2189"
> </a
><a name="2190" class="Symbol"
>=</a
><a name="2191"
>
</a
><a name="2194" href="Function.Equivalence.html#804" class="Function"
>equivalence</a
><a name="2205"
> </a
><a name="2206" class="Symbol"
>(</a
><a name="2207" href="Data.Fin.Subset.Properties.html#2274" class="Function"
>to</a
><a name="2209"
> </a
><a name="2210" href="Data.Fin.Subset.Properties.html#2187" class="Bound"
>y</a
><a name="2211" class="Symbol"
>)</a
><a name="2212"
> </a
><a name="2213" class="Symbol"
>(λ</a
><a name="2215"
> </a
><a name="2216" href="Data.Fin.Subset.Properties.html#2216" class="Bound"
>x≡y</a
><a name="2219"
> </a
><a name="2220" class="Symbol"
>→</a
><a name="2221"
> </a
><a name="2222" href="Relation.Binary.PropositionalEquality.Core.html#705" class="Function"
>P.subst</a
><a name="2229"
> </a
><a name="2230" class="Symbol"
>(λ</a
><a name="2232"
> </a
><a name="2233" href="Data.Fin.Subset.Properties.html#2233" class="Bound"
>y</a
><a name="2234"
> </a
><a name="2235" class="Symbol"
>→</a
><a name="2236"
> </a
><a name="2237" href="Data.Fin.Subset.Properties.html#2183" class="Bound"
>x</a
><a name="2238"
> </a
><a name="2239" href="Data.Fin.Subset.html#1102" class="Function Operator"
>∈</a
><a name="2240"
> </a
><a name="2241" href="Data.Fin.Subset.html#2179" class="Function Operator"
>⁅</a
><a name="2242"
> </a
><a name="2243" href="Data.Fin.Subset.Properties.html#2233" class="Bound"
>y</a
><a name="2244"
> </a
><a name="2245" href="Data.Fin.Subset.html#2179" class="Function Operator"
>⁆</a
><a name="2246" class="Symbol"
>)</a
><a name="2247"
> </a
><a name="2248" href="Data.Fin.Subset.Properties.html#2216" class="Bound"
>x≡y</a
><a name="2251"
> </a
><a name="2252" class="Symbol"
>(</a
><a name="2253" href="Data.Fin.Subset.Properties.html#2443" class="Function"
>x∈⁅x⁆</a
><a name="2258"
> </a
><a name="2259" href="Data.Fin.Subset.Properties.html#2183" class="Bound"
>x</a
><a name="2260" class="Symbol"
>))</a
><a name="2262"
>
</a
><a name="2265" class="Keyword"
>where</a
><a name="2270"
>
</a
><a name="2274" href="Data.Fin.Subset.Properties.html#2274" class="Function"
>to</a
><a name="2276"
> </a
><a name="2277" class="Symbol"
>:</a
><a name="2278"
> </a
><a name="2279" class="Symbol"
>∀</a
><a name="2280"
> </a
><a name="2281" class="Symbol"
>{</a
><a name="2282" href="Data.Fin.Subset.Properties.html#2282" class="Bound"
>n</a
><a name="2283"
> </a
><a name="2284" href="Data.Fin.Subset.Properties.html#2284" class="Bound"
>x</a
><a name="2285" class="Symbol"
>}</a
><a name="2286"
> </a
><a name="2287" class="Symbol"
>(</a
><a name="2288" href="Data.Fin.Subset.Properties.html#2288" class="Bound"
>y</a
><a name="2289"
> </a
><a name="2290" class="Symbol"
>:</a
><a name="2291"
> </a
><a name="2292" href="Data.Fin.html#842" class="Datatype"
>Fin</a
><a name="2295"
> </a
><a name="2296" href="Data.Fin.Subset.Properties.html#2282" class="Bound"
>n</a
><a name="2297" class="Symbol"
>)</a
><a name="2298"
> </a
><a name="2299" class="Symbol"
>→</a
><a name="2300"
> </a
><a name="2301" href="Data.Fin.Subset.Properties.html#2284" class="Bound"
>x</a
><a name="2302"
> </a
><a name="2303" href="Data.Fin.Subset.html#1102" class="Function Operator"
>∈</a
><a name="2304"
> </a
><a name="2305" href="Data.Fin.Subset.html#2179" class="Function Operator"
>⁅</a
><a name="2306"
> </a
><a name="2307" href="Data.Fin.Subset.Properties.html#2288" class="Bound"
>y</a
><a name="2308"
> </a
><a name="2309" href="Data.Fin.Subset.html#2179" class="Function Operator"
>⁆</a
><a name="2310"
> </a
><a name="2311" class="Symbol"
>→</a
><a name="2312"
> </a
><a name="2313" href="Data.Fin.Subset.Properties.html#2284" class="Bound"
>x</a
><a name="2314"
> </a
><a name="2315" href="Agda.Builtin.Equality.html#55" class="Datatype Operator"
>≡</a
><a name="2316"
> </a
><a name="2317" href="Data.Fin.Subset.Properties.html#2288" class="Bound"
>y</a
><a name="2318"
>
</a
><a name="2321" href="Data.Fin.Subset.Properties.html#2274" class="Function"
>to</a
><a name="2323"
> </a
><a name="2324" class="Symbol"
>(</a
><a name="2325" href="Data.Fin.html#895" class="InductiveConstructor"
>suc</a
><a name="2328"
> </a
><a name="2329" href="Data.Fin.Subset.Properties.html#2329" class="Bound"
>y</a
><a name="2330" class="Symbol"
>)</a
><a name="2331"
> </a
><a name="2332" class="Symbol"
>(</a
><a name="2333" href="Data.Vec.html#1079" class="InductiveConstructor"
>there</a
><a name="2338"
> </a
><a name="2339" href="Data.Fin.Subset.Properties.html#2339" class="Bound"
>p</a
><a name="2340" class="Symbol"
>)</a
><a name="2341"
> </a
><a name="2342" class="Symbol"
>=</a
><a name="2343"
> </a
><a name="2344" href="Relation.Binary.PropositionalEquality.html#1036" class="Function"
>P.cong</a
><a name="2350"
> </a
><a name="2351" href="Data.Fin.html#895" class="InductiveConstructor"
>suc</a
><a name="2354"
> </a
><a name="2355" class="Symbol"
>(</a
><a name="2356" href="Data.Fin.Subset.Properties.html#2274" class="Function"
>to</a
><a name="2358"
> </a
><a name="2359" href="Data.Fin.Subset.Properties.html#2329" class="Bound"
>y</a
><a name="2360"
> </a
><a name="2361" href="Data.Fin.Subset.Properties.html#2339" class="Bound"
>p</a
><a name="2362" class="Symbol"
>)</a
><a name="2363"
>
</a
><a name="2366" href="Data.Fin.Subset.Properties.html#2274" class="Function"
>to</a
><a name="2368"
> </a
><a name="2369" href="Data.Fin.html#864" class="InductiveConstructor"
>zero</a
><a name="2373"
> </a
><a name="2377" href="Data.Vec.html#1017" class="InductiveConstructor"
>here</a
><a name="2381"
> </a
><a name="2387" class="Symbol"
>=</a
><a name="2388"
> </a
><a name="2389" href="Agda.Builtin.Equality.html#112" class="InductiveConstructor"
>P.refl</a
><a name="2395"
>
</a
><a name="2398" href="Data.Fin.Subset.Properties.html#2274" class="Function"
>to</a
><a name="2400"
> </a
><a name="2401" href="Data.Fin.html#864" class="InductiveConstructor"
>zero</a
><a name="2405"
> </a
><a name="2409" class="Symbol"
>(</a
><a name="2410" href="Data.Vec.html#1079" class="InductiveConstructor"
>there</a
><a name="2415"
> </a
><a name="2416" href="Data.Fin.Subset.Properties.html#2416" class="Bound"
>p</a
><a name="2417" class="Symbol"
>)</a
><a name="2418"
> </a
><a name="2419" class="Keyword"
>with</a
><a name="2423"
> </a
><a name="2424" href="Data.Fin.Subset.Properties.html#1352" class="Function"
>∉⊥</a
><a name="2426"
> </a
><a name="2427" href="Data.Fin.Subset.Properties.html#2416" class="Bound"
>p</a
><a name="2428"
>
</a
><a name="2431" class="Symbol"
>...</a
><a name="2434"
> </a
><a name="2435" class="Symbol"
>|</a
><a name="2436"
> </a
><a name="2437" class="Symbol"
>()</a
><a name="2439"
>
</a
><a name="2443" href="Data.Fin.Subset.Properties.html#2443" class="Function"
>x∈⁅x⁆</a
><a name="2448"
> </a
><a name="2449" class="Symbol"
>:</a
><a name="2450"
> </a
><a name="2451" class="Symbol"
>∀</a
><a name="2452"
> </a
><a name="2453" class="Symbol"
>{</a
><a name="2454" href="Data.Fin.Subset.Properties.html#2454" class="Bound"
>n</a
><a name="2455" class="Symbol"
>}</a
><a name="2456"
> </a
><a name="2457" class="Symbol"
>(</a
><a name="2458" href="Data.Fin.Subset.Properties.html#2458" class="Bound"
>x</a
><a name="2459"
> </a
><a name="2460" class="Symbol"
>:</a
><a name="2461"
> </a
><a name="2462" href="Data.Fin.html#842" class="Datatype"
>Fin</a
><a name="2465"
> </a
><a name="2466" href="Data.Fin.Subset.Properties.html#2454" class="Bound"
>n</a
><a name="2467" class="Symbol"
>)</a
><a name="2468"
> </a
><a name="2469" class="Symbol"
>→</a
><a name="2470"
> </a
><a name="2471" href="Data.Fin.Subset.Properties.html#2458" class="Bound"
>x</a
><a name="2472"
> </a
><a name="2473" href="Data.Fin.Subset.html#1102" class="Function Operator"
>∈</a
><a name="2474"
> </a
><a name="2475" href="Data.Fin.Subset.html#2179" class="Function Operator"
>⁅</a
><a name="2476"
> </a
><a name="2477" href="Data.Fin.Subset.Properties.html#2458" class="Bound"
>x</a
><a name="2478"
> </a
><a name="2479" href="Data.Fin.Subset.html#2179" class="Function Operator"
>⁆</a
><a name="2480"
>
</a
><a name="2483" href="Data.Fin.Subset.Properties.html#2443" class="Function"
>x∈⁅x⁆</a
><a name="2488"
> </a
><a name="2489" href="Data.Fin.html#864" class="InductiveConstructor"
>zero</a
><a name="2493"
> </a
><a name="2497" class="Symbol"
>=</a
><a name="2498"
> </a
><a name="2499" href="Data.Vec.html#1017" class="InductiveConstructor"
>here</a
><a name="2503"
>
</a
><a name="2506" href="Data.Fin.Subset.Properties.html#2443" class="Function"
>x∈⁅x⁆</a
><a name="2511"
> </a
><a name="2512" class="Symbol"
>(</a
><a name="2513" href="Data.Fin.html#895" class="InductiveConstructor"
>suc</a
><a name="2516"
> </a
><a name="2517" href="Data.Fin.Subset.Properties.html#2517" class="Bound"
>x</a
><a name="2518" class="Symbol"
>)</a
><a name="2519"
> </a
><a name="2520" class="Symbol"
>=</a
><a name="2521"
> </a
><a name="2522" href="Data.Vec.html#1079" class="InductiveConstructor"
>there</a
><a name="2527"
> </a
><a name="2528" class="Symbol"
>(</a
><a name="2529" href="Data.Fin.Subset.Properties.html#2443" class="Function"
>x∈⁅x⁆</a
><a name="2534"
> </a
><a name="2535" href="Data.Fin.Subset.Properties.html#2517" class="Bound"
>x</a
><a name="2536" class="Symbol"
>)</a
><a name="2537"
>
</a
><a name="2539" class="Comment"
>------------------------------------------------------------------------</a
><a name="2611"
>
</a
><a name="2612" class="Comment"
>-- A property involving _∪_</a
><a name="2639"
>
</a
><a name="2641" href="Data.Fin.Subset.Properties.html#2641" class="Function"
>∪⇔⊎</a
><a name="2644"
> </a
><a name="2645" class="Symbol"
>:</a
><a name="2646"
> </a
><a name="2647" class="Symbol"
>∀</a
><a name="2648"
> </a
><a name="2649" class="Symbol"
>{</a
><a name="2650" href="Data.Fin.Subset.Properties.html#2650" class="Bound"
>n</a
><a name="2651" class="Symbol"
>}</a
><a name="2652"
> </a
><a name="2653" class="Symbol"
>{</a
><a name="2654" href="Data.Fin.Subset.Properties.html#2654" class="Bound"
>p₁</a
><a name="2656"
> </a
><a name="2657" href="Data.Fin.Subset.Properties.html#2657" class="Bound"
>p₂</a
><a name="2659"
> </a
><a name="2660" class="Symbol"
>:</a
><a name="2661"
> </a
><a name="2662" href="Data.Fin.Subset.html#956" class="Function"
>Subset</a
><a name="2668"
> </a
><a name="2669" href="Data.Fin.Subset.Properties.html#2650" class="Bound"
>n</a
><a name="2670" class="Symbol"
>}</a
><a name="2671"
> </a
><a name="2672" class="Symbol"
>{</a
><a name="2673" href="Data.Fin.Subset.Properties.html#2673" class="Bound"
>x</a
><a name="2674" class="Symbol"
>}</a
><a name="2675"
> </a
><a name="2676" class="Symbol"
>→</a
><a name="2677"
> </a
><a name="2678" href="Data.Fin.Subset.Properties.html#2673" class="Bound"
>x</a
><a name="2679"
> </a
><a name="2680" href="Data.Fin.Subset.html#1102" class="Function Operator"
>∈</a
><a name="2681"
> </a
><a name="2682" href="Data.Fin.Subset.Properties.html#2654" class="Bound"
>p₁</a
><a name="2684"
> </a
><a name="2685" href="Algebra.html#12752" class="Function Operator"
>∪</a
><a name="2686"
> </a
><a name="2687" href="Data.Fin.Subset.Properties.html#2657" class="Bound"
>p₂</a
><a name="2689"
> </a
><a name="2690" href="Function.Equivalence.html#711" class="Function Operator"
>⇔</a
><a name="2691"
> </a
><a name="2692" class="Symbol"
>(</a
><a name="2693" href="Data.Fin.Subset.Properties.html#2673" class="Bound"
>x</a
><a name="2694"
> </a
><a name="2695" href="Data.Fin.Subset.html#1102" class="Function Operator"
>∈</a
><a name="2696"
> </a
><a name="2697" href="Data.Fin.Subset.Properties.html#2654" class="Bound"
>p₁</a
><a name="2699"
> </a
><a name="2700" href="Data.Sum.html#433" class="Datatype Operator"
>⊎</a
><a name="2701"
> </a
><a name="2702" href="Data.Fin.Subset.Properties.html#2673" class="Bound"
>x</a
><a name="2703"
> </a
><a name="2704" href="Data.Fin.Subset.html#1102" class="Function Operator"
>∈</a
><a name="2705"
> </a
><a name="2706" href="Data.Fin.Subset.Properties.html#2657" class="Bound"
>p₂</a
><a name="2708" class="Symbol"
>)</a
><a name="2709"
>
</a
><a name="2710" href="Data.Fin.Subset.Properties.html#2641" class="Function"
>∪⇔⊎</a
><a name="2713"
> </a
><a name="2714" class="Symbol"
>=</a
><a name="2715"
> </a
><a name="2716" href="Function.Equivalence.html#804" class="Function"
>equivalence</a
><a name="2727"
> </a
><a name="2728" class="Symbol"
>(</a
><a name="2729" href="Data.Fin.Subset.Properties.html#2752" class="Function"
>to</a
><a name="2731"
> </a
><a name="2732" class="Symbol"
>_</a
><a name="2733"
> </a
><a name="2734" class="Symbol"
>_)</a
><a name="2736"
> </a
><a name="2737" href="Data.Fin.Subset.Properties.html#3362" class="Function"
>from</a
><a name="2741"
>
</a
><a name="2744" class="Keyword"
>where</a
><a name="2749"
>
</a
><a name="2752" href="Data.Fin.Subset.Properties.html#2752" class="Function"
>to</a
><a name="2754"
> </a
><a name="2755" class="Symbol"
>:</a
><a name="2756"
> </a
><a name="2757" class="Symbol"
>∀</a
><a name="2758"
> </a
><a name="2759" class="Symbol"
>{</a
><a name="2760" href="Data.Fin.Subset.Properties.html#2760" class="Bound"
>n</a
><a name="2761" class="Symbol"
>}</a
><a name="2762"
> </a
><a name="2763" class="Symbol"
>(</a
><a name="2764" href="Data.Fin.Subset.Properties.html#2764" class="Bound"
>p₁</a
><a name="2766"
> </a
><a name="2767" href="Data.Fin.Subset.Properties.html#2767" class="Bound"
>p₂</a
><a name="2769"
> </a
><a name="2770" class="Symbol"
>:</a
><a name="2771"
> </a
><a name="2772" href="Data.Fin.Subset.html#956" class="Function"
>Subset</a
><a name="2778"
> </a
><a name="2779" href="Data.Fin.Subset.Properties.html#2760" class="Bound"
>n</a
><a name="2780" class="Symbol"
>)</a
><a name="2781"
> </a
><a name="2782" class="Symbol"
>{</a
><a name="2783" href="Data.Fin.Subset.Properties.html#2783" class="Bound"
>x</a
><a name="2784" class="Symbol"
>}</a
><a name="2785"
> </a
><a name="2786" class="Symbol"
>→</a
><a name="2787"
> </a
><a name="2788" href="Data.Fin.Subset.Properties.html#2783" class="Bound"
>x</a
><a name="2789"
> </a
><a name="2790" href="Data.Fin.Subset.html#1102" class="Function Operator"
>∈</a
><a name="2791"
> </a
><a name="2792" href="Data.Fin.Subset.Properties.html#2764" class="Bound"
>p₁</a
><a name="2794"
> </a
><a name="2795" href="Algebra.html#12752" class="Function Operator"
>∪</a
><a name="2796"
> </a
><a name="2797" href="Data.Fin.Subset.Properties.html#2767" class="Bound"
>p₂</a
><a name="2799"
> </a
><a name="2800" class="Symbol"
>→</a
><a name="2801"
> </a
><a name="2802" href="Data.Fin.Subset.Properties.html#2783" class="Bound"
>x</a
><a name="2803"
> </a
><a name="2804" href="Data.Fin.Subset.html#1102" class="Function Operator"
>∈</a
><a name="2805"
> </a
><a name="2806" href="Data.Fin.Subset.Properties.html#2764" class="Bound"
>p₁</a
><a name="2808"
> </a
><a name="2809" href="Data.Sum.html#433" class="Datatype Operator"
>⊎</a
><a name="2810"
> </a
><a name="2811" href="Data.Fin.Subset.Properties.html#2783" class="Bound"
>x</a
><a name="2812"
> </a
><a name="2813" href="Data.Fin.Subset.html#1102" class="Function Operator"
>∈</a
><a name="2814"
> </a
><a name="2815" href="Data.Fin.Subset.Properties.html#2767" class="Bound"
>p₂</a
><a name="2817"
>
</a
><a name="2820" href="Data.Fin.Subset.Properties.html#2752" class="Function"
>to</a
><a name="2822"
> </a
><a name="2823" href="Data.Vec.html#649" class="InductiveConstructor"
>[]</a
><a name="2825"
> </a
><a name="2838" href="Data.Vec.html#649" class="InductiveConstructor"
>[]</a
><a name="2840"
> </a
><a name="2853" class="Symbol"
>()</a
><a name="2855"
>
</a
><a name="2858" href="Data.Fin.Subset.Properties.html#2752" class="Function"
>to</a
><a name="2860"
> </a
><a name="2861" class="Symbol"
>(</a
><a name="2862" href="Agda.Builtin.Bool.html#64" class="InductiveConstructor"
>inside</a
><a name="2868"
> </a
><a name="2870" href="Data.Vec.html#668" class="InductiveConstructor Operator"
>∷</a
><a name="2871"
> </a
><a name="2872" href="Data.Fin.Subset.Properties.html#2872" class="Bound"
>p₁</a
><a name="2874" class="Symbol"
>)</a
><a name="2875"
> </a
><a name="2876" class="Symbol"
>(</a
><a name="2877" href="Data.Fin.Subset.Properties.html#2877" class="Bound"
>s₂</a
><a name="2879"
> </a
><a name="2885" href="Data.Vec.html#668" class="InductiveConstructor Operator"
>∷</a
><a name="2886"
> </a
><a name="2887" href="Data.Fin.Subset.Properties.html#2887" class="Bound"
>p₂</a
><a name="2889" class="Symbol"
>)</a
><a name="2890"
> </a
><a name="2891" href="Data.Vec.html#1017" class="InductiveConstructor"
>here</a
><a name="2895"
> </a
><a name="2907" class="Symbol"
>=</a
><a name="2908"
> </a
><a name="2909" href="Data.Sum.html#489" class="InductiveConstructor"
>inj₁</a
><a name="2913"
> </a
><a name="2914" href="Data.Vec.html#1017" class="InductiveConstructor"
>here</a
><a name="2918"
>
</a
><a name="2921" href="Data.Fin.Subset.Properties.html#2752" class="Function"
>to</a
><a name="2923"
> </a
><a name="2924" class="Symbol"
>(</a
><a name="2925" href="Agda.Builtin.Bool.html#58" class="InductiveConstructor"
>outside</a
><a name="2932"
> </a
><a name="2933" href="Data.Vec.html#668" class="InductiveConstructor Operator"
>∷</a
><a name="2934"
> </a
><a name="2935" href="Data.Fin.Subset.Properties.html#2935" class="Bound"
>p₁</a
><a name="2937" class="Symbol"
>)</a
><a name="2938"
> </a
><a name="2939" class="Symbol"
>(</a
><a name="2940" href="Agda.Builtin.Bool.html#64" class="InductiveConstructor"
>inside</a
><a name="2946"
> </a
><a name="2948" href="Data.Vec.html#668" class="InductiveConstructor Operator"
>∷</a
><a name="2949"
> </a
><a name="2950" href="Data.Fin.Subset.Properties.html#2950" class="Bound"
>p₂</a
><a name="2952" class="Symbol"
>)</a
><a name="2953"
> </a
><a name="2954" href="Data.Vec.html#1017" class="InductiveConstructor"
>here</a
><a name="2958"
> </a
><a name="2970" class="Symbol"
>=</a
><a name="2971"
> </a
><a name="2972" href="Data.Sum.html#514" class="InductiveConstructor"
>inj₂</a
><a name="2976"
> </a
><a name="2977" href="Data.Vec.html#1017" class="InductiveConstructor"
>here</a
><a name="2981"
>
</a
><a name="2984" href="Data.Fin.Subset.Properties.html#2752" class="Function"
>to</a
><a name="2986"
> </a
><a name="2987" class="Symbol"
>(</a
><a name="2988" href="Data.Fin.Subset.Properties.html#2988" class="Bound"
>s₁</a
><a name="2990"
> </a
><a name="2996" href="Data.Vec.html#668" class="InductiveConstructor Operator"
>∷</a
><a name="2997"
> </a
><a name="2998" href="Data.Fin.Subset.Properties.html#2998" class="Bound"
>p₁</a
><a name="3000" class="Symbol"
>)</a
><a name="3001"
> </a
><a name="3002" class="Symbol"
>(</a
><a name="3003" href="Data.Fin.Subset.Properties.html#3003" class="Bound"
>s₂</a
><a name="3005"
> </a
><a name="3011" href="Data.Vec.html#668" class="InductiveConstructor Operator"
>∷</a
><a name="3012"
> </a
><a name="3013" href="Data.Fin.Subset.Properties.html#3013" class="Bound"
>p₂</a
><a name="3015" class="Symbol"
>)</a
><a name="3016"
> </a
><a name="3017" class="Symbol"
>(</a
><a name="3018" href="Data.Vec.html#1079" class="InductiveConstructor"
>there</a
><a name="3023"
> </a
><a name="3024" href="Data.Fin.Subset.Properties.html#3024" class="Bound"
>x∈p₁∪p₂</a
><a name="3031" class="Symbol"
>)</a
><a name="3032"
> </a
><a name="3033" class="Symbol"
>=</a
><a name="3034"
>
</a
><a name="3039" href="Data.Sum.html#1064" class="Function"
>Sum.map</a
><a name="3046"
> </a
><a name="3047" href="Data.Vec.html#1079" class="InductiveConstructor"
>there</a
><a name="3052"
> </a
><a name="3053" href="Data.Vec.html#1079" class="InductiveConstructor"
>there</a
><a name="3058"
> </a
><a name="3059" class="Symbol"
>(</a
><a name="3060" href="Data.Fin.Subset.Properties.html#2752" class="Function"
>to</a
><a name="3062"
> </a
><a name="3063" href="Data.Fin.Subset.Properties.html#2998" class="Bound"
>p₁</a
><a name="3065"
> </a
><a name="3066" href="Data.Fin.Subset.Properties.html#3013" class="Bound"
>p₂</a
><a name="3068"
> </a
><a name="3069" href="Data.Fin.Subset.Properties.html#3024" class="Bound"
>x∈p₁∪p₂</a
><a name="3076" class="Symbol"
>)</a
><a name="3077"
>
</a
><a name="3081" href="Data.Fin.Subset.Properties.html#3081" class="Function"
>⊆∪ˡ</a
><a name="3084"
> </a
><a name="3085" class="Symbol"
>:</a
><a name="3086"
> </a
><a name="3087" class="Symbol"
>∀</a
><a name="3088"
> </a
><a name="3089" class="Symbol"
>{</a
><a name="3090" href="Data.Fin.Subset.Properties.html#3090" class="Bound"
>n</a
><a name="3091"
> </a
><a name="3092" href="Data.Fin.Subset.Properties.html#3092" class="Bound"
>p₁</a
><a name="3094" class="Symbol"
>}</a
><a name="3095"
> </a
><a name="3096" class="Symbol"
>(</a
><a name="3097" href="Data.Fin.Subset.Properties.html#3097" class="Bound"
>p₂</a
><a name="3099"
> </a
><a name="3100" class="Symbol"
>:</a
><a name="3101"
> </a
><a name="3102" href="Data.Fin.Subset.html#956" class="Function"
>Subset</a
><a name="3108"
> </a
><a name="3109" href="Data.Fin.Subset.Properties.html#3090" class="Bound"
>n</a
><a name="3110" class="Symbol"
>)</a
><a name="3111"
> </a
><a name="3112" class="Symbol"
>→</a
><a name="3113"
> </a
><a name="3114" href="Data.Fin.Subset.Properties.html#3092" class="Bound"
>p₁</a
><a name="3116"
> </a
><a name="3117" href="Data.Fin.Subset.html#1220" class="Function Operator"
>⊆</a
><a name="3118"
> </a
><a name="3119" href="Data.Fin.Subset.Properties.html#3092" class="Bound"
>p₁</a
><a name="3121"
> </a
><a name="3122" href="Algebra.html#12752" class="Function Operator"
>∪</a
><a name="3123"
> </a
><a name="3124" href="Data.Fin.Subset.Properties.html#3097" class="Bound"
>p₂</a
><a name="3126"
>
</a
><a name="3129" href="Data.Fin.Subset.Properties.html#3081" class="Function"
>⊆∪ˡ</a
><a name="3132"
> </a
><a name="3133" href="Data.Vec.html#649" class="InductiveConstructor"
>[]</a
><a name="3135"
> </a
><a name="3142" class="Symbol"
>()</a
><a name="3144"
>
</a
><a name="3147" href="Data.Fin.Subset.Properties.html#3081" class="Function"
>⊆∪ˡ</a
><a name="3150"
> </a
><a name="3151" class="Symbol"
>(</a
><a name="3152" href="Data.Fin.Subset.Properties.html#3152" class="Bound"
>s</a
><a name="3153"
> </a
><a name="3154" href="Data.Vec.html#668" class="InductiveConstructor Operator"
>∷</a
><a name="3155"
> </a
><a name="3156" href="Data.Fin.Subset.Properties.html#3156" class="Bound"
>p₂</a
><a name="3158" class="Symbol"
>)</a
><a name="3159"
> </a
><a name="3160" href="Data.Vec.html#1017" class="InductiveConstructor"
>here</a
><a name="3164"
> </a
><a name="3173" class="Symbol"
>=</a
><a name="3174"
> </a
><a name="3175" href="Data.Vec.html#1017" class="InductiveConstructor"
>here</a
><a name="3179"
>
</a
><a name="3182" href="Data.Fin.Subset.Properties.html#3081" class="Function"
>⊆∪ˡ</a
><a name="3185"
> </a
><a name="3186" class="Symbol"
>(</a
><a name="3187" href="Data.Fin.Subset.Properties.html#3187" class="Bound"
>s</a
><a name="3188"
> </a
><a name="3189" href="Data.Vec.html#668" class="InductiveConstructor Operator"
>∷</a
><a name="3190"
> </a
><a name="3191" href="Data.Fin.Subset.Properties.html#3191" class="Bound"
>p₂</a
><a name="3193" class="Symbol"
>)</a
><a name="3194"
> </a
><a name="3195" class="Symbol"
>(</a
><a name="3196" href="Data.Vec.html#1079" class="InductiveConstructor"
>there</a
><a name="3201"
> </a
><a name="3202" href="Data.Fin.Subset.Properties.html#3202" class="Bound"
>x∈p₁</a
><a name="3206" class="Symbol"
>)</a
><a name="3207"
> </a
><a name="3208" class="Symbol"
>=</a
><a name="3209"
> </a
><a name="3210" href="Data.Vec.html#1079" class="InductiveConstructor"
>there</a
><a name="3215"
> </a
><a name="3216" class="Symbol"
>(</a
><a name="3217" href="Data.Fin.Subset.Properties.html#3081" class="Function"
>⊆∪ˡ</a
><a name="3220"
> </a
><a name="3221" href="Data.Fin.Subset.Properties.html#3191" class="Bound"
>p₂</a
><a name="3223"
> </a
><a name="3224" href="Data.Fin.Subset.Properties.html#3202" class="Bound"
>x∈p₁</a
><a name="3228" class="Symbol"
>)</a
><a name="3229"
>
</a
><a name="3233" href="Data.Fin.Subset.Properties.html#3233" class="Function"
>⊆∪ʳ</a
><a name="3236"
> </a
><a name="3237" class="Symbol"
>:</a
><a name="3238"
> </a
><a name="3239" class="Symbol"
>∀</a
><a name="3240"
> </a
><a name="3241" class="Symbol"
>{</a
><a name="3242" href="Data.Fin.Subset.Properties.html#3242" class="Bound"
>n</a
><a name="3243" class="Symbol"
>}</a
><a name="3244"
> </a
><a name="3245" class="Symbol"
>(</a
><a name="3246" href="Data.Fin.Subset.Properties.html#3246" class="Bound"
>p₁</a
><a name="3248"
> </a
><a name="3249" href="Data.Fin.Subset.Properties.html#3249" class="Bound"
>p₂</a
><a name="3251"
> </a
><a name="3252" class="Symbol"
>:</a
><a name="3253"
> </a
><a name="3254" href="Data.Fin.Subset.html#956" class="Function"
>Subset</a
><a name="3260"
> </a
><a name="3261" href="Data.Fin.Subset.Properties.html#3242" class="Bound"
>n</a
><a name="3262" class="Symbol"
>)</a
><a name="3263"
> </a
><a name="3264" class="Symbol"
>→</a
><a name="3265"
> </a
><a name="3266" href="Data.Fin.Subset.Properties.html#3249" class="Bound"
>p₂</a
><a name="3268"
> </a
><a name="3269" href="Data.Fin.Subset.html#1220" class="Function Operator"
>⊆</a
><a name="3270"
> </a
><a name="3271" href="Data.Fin.Subset.Properties.html#3246" class="Bound"
>p₁</a
><a name="3273"
> </a
><a name="3274" href="Algebra.html#12752" class="Function Operator"
>∪</a
><a name="3275"
> </a
><a name="3276" href="Data.Fin.Subset.Properties.html#3249" class="Bound"
>p₂</a
><a name="3278"
>
</a
><a name="3281" href="Data.Fin.Subset.Properties.html#3233" class="Function"
>⊆∪ʳ</a
><a name="3284"
> </a
><a name="3285" href="Data.Fin.Subset.Properties.html#3285" class="Bound"
>p₁</a
><a name="3287"
> </a
><a name="3288" href="Data.Fin.Subset.Properties.html#3288" class="Bound"
>p₂</a
><a name="3290"
> </a
><a name="3291" class="Keyword"
>rewrite</a
><a name="3298"
> </a
><a name="3299" href="Algebra.Structures.html#12680" class="Function"
>BooleanAlgebra.∨-comm</a
><a name="3320"
> </a
><a name="3321" class="Symbol"
>(</a
><a name="3322" href="Data.Fin.Subset.html#1649" class="Function"
>booleanAlgebra</a
><a name="3336"
> </a
><a name="3337" class="Symbol"
>_)</a
><a name="3339"
> </a
><a name="3340" href="Data.Fin.Subset.Properties.html#3285" class="Bound"
>p₁</a
><a name="3342"
> </a
><a name="3343" href="Data.Fin.Subset.Properties.html#3288" class="Bound"
>p₂</a
><a name="3345"
>
</a
><a name="3350" class="Symbol"
>=</a
><a name="3351"
> </a
><a name="3352" href="Data.Fin.Subset.Properties.html#3081" class="Function"
>⊆∪ˡ</a
><a name="3355"
> </a
><a name="3356" href="Data.Fin.Subset.Properties.html#3285" class="Bound"
>p₁</a
><a name="3358"
>
</a
><a name="3362" href="Data.Fin.Subset.Properties.html#3362" class="Function"
>from</a
><a name="3366"
> </a
><a name="3367" class="Symbol"
>:</a
><a name="3368"
> </a
><a name="3369" class="Symbol"
>∀</a
><a name="3370"
> </a
><a name="3371" class="Symbol"
>{</a
><a name="3372" href="Data.Fin.Subset.Properties.html#3372" class="Bound"
>n</a
><a name="3373" class="Symbol"
>}</a
><a name="3374"
> </a
><a name="3375" class="Symbol"
>{</a
><a name="3376" href="Data.Fin.Subset.Properties.html#3376" class="Bound"
>p₁</a
><a name="3378"
> </a
><a name="3379" href="Data.Fin.Subset.Properties.html#3379" class="Bound"
>p₂</a
><a name="3381"
> </a
><a name="3382" class="Symbol"
>:</a
><a name="3383"
> </a
><a name="3384" href="Data.Fin.Subset.html#956" class="Function"
>Subset</a
><a name="3390"
> </a
><a name="3391" href="Data.Fin.Subset.Properties.html#3372" class="Bound"
>n</a
><a name="3392" class="Symbol"
>}</a
><a name="3393"
> </a
><a name="3394" class="Symbol"
>{</a
><a name="3395" href="Data.Fin.Subset.Properties.html#3395" class="Bound"
>x</a
><a name="3396" class="Symbol"
>}</a
><a name="3397"
> </a
><a name="3398" class="Symbol"
>→</a
><a name="3399"
> </a
><a name="3400" href="Data.Fin.Subset.Properties.html#3395" class="Bound"
>x</a
><a name="3401"
> </a
><a name="3402" href="Data.Fin.Subset.html#1102" class="Function Operator"
>∈</a
><a name="3403"
> </a
><a name="3404" href="Data.Fin.Subset.Properties.html#3376" class="Bound"
>p₁</a
><a name="3406"
> </a
><a name="3407" href="Data.Sum.html#433" class="Datatype Operator"
>⊎</a
><a name="3408"
> </a
><a name="3409" href="Data.Fin.Subset.Properties.html#3395" class="Bound"
>x</a
><a name="3410"
> </a
><a name="3411" href="Data.Fin.Subset.html#1102" class="Function Operator"
>∈</a
><a name="3412"
> </a
><a name="3413" href="Data.Fin.Subset.Properties.html#3379" class="Bound"
>p₂</a
><a name="3415"
> </a
><a name="3416" class="Symbol"
>→</a
><a name="3417"
> </a
><a name="3418" href="Data.Fin.Subset.Properties.html#3395" class="Bound"
>x</a
><a name="3419"
> </a
><a name="3420" href="Data.Fin.Subset.html#1102" class="Function Operator"
>∈</a
><a name="3421"
> </a
><a name="3422" href="Data.Fin.Subset.Properties.html#3376" class="Bound"
>p₁</a
><a name="3424"
> </a
><a name="3425" href="Algebra.html#12752" class="Function Operator"
>∪</a
><a name="3426"
> </a
><a name="3427" href="Data.Fin.Subset.Properties.html#3379" class="Bound"
>p₂</a
><a name="3429"
>
</a
><a name="3432" href="Data.Fin.Subset.Properties.html#3362" class="Function"
>from</a
><a name="3436"
> </a
><a name="3437" class="Symbol"
>(</a
><a name="3438" href="Data.Sum.html#489" class="InductiveConstructor"
>inj₁</a
><a name="3442"
> </a
><a name="3443" href="Data.Fin.Subset.Properties.html#3443" class="Bound"
>x∈p₁</a
><a name="3447" class="Symbol"
>)</a
><a name="3448"
> </a
><a name="3449" class="Symbol"
>=</a
><a name="3450"
> </a
><a name="3451" href="Data.Fin.Subset.Properties.html#3081" class="Function"
>⊆∪ˡ</a
><a name="3454"
> </a
><a name="3455" class="Symbol"
>_</a
><a name="3456"
> </a
><a name="3459" href="Data.Fin.Subset.Properties.html#3443" class="Bound"
>x∈p₁</a
><a name="3463"
>
</a
><a name="3466" href="Data.Fin.Subset.Properties.html#3362" class="Function"
>from</a
><a name="3470"
> </a
><a name="3471" class="Symbol"
>(</a
><a name="3472" href="Data.Sum.html#514" class="InductiveConstructor"
>inj₂</a
><a name="3476"
> </a
><a name="3477" href="Data.Fin.Subset.Properties.html#3477" class="Bound"
>x∈p₂</a
><a name="3481" class="Symbol"
>)</a
><a name="3482"
> </a
><a name="3483" class="Symbol"
>=</a
><a name="3484"
> </a
><a name="3485" href="Data.Fin.Subset.Properties.html#3233" class="Function"
>⊆∪ʳ</a
><a name="3488"
> </a
><a name="3489" class="Symbol"
>_</a
><a name="3490"
> </a
><a name="3491" class="Symbol"
>_</a
><a name="3492"
> </a
><a name="3493" href="Data.Fin.Subset.Properties.html#3477" class="Bound"
>x∈p₂</a
><a name="3497"
>
</a
><a name="3499" class="Comment"
>------------------------------------------------------------------------</a
><a name="3571"
>
</a
><a name="3572" class="Comment"
>-- _⊆_ is a partial order</a
><a name="3597"
>
</a
><a name="3599" class="Comment"
>-- The "natural poset" associated with the boolean algebra.</a
><a name="3658"
>
</a
><a name="3660" class="Keyword"
>module</a
><a name="3666"
> </a
><a name="3667" href="Data.Fin.Subset.Properties.html#3667" class="Module"
>NaturalPoset</a
><a name="3679"
> </a
><a name="3680" class="Keyword"
>where</a
><a name="3685"
>
</a
><a name="3688" class="Keyword"
>private</a
><a name="3695"
>
</a
><a name="3700" class="Keyword"
>open</a
><a name="3704"
> </a
><a name="3705" class="Keyword"
>module</a
><a name="3711"
> </a
><a name="3712" href="Data.Fin.Subset.Properties.html#3712" class="Module"
>BA</a
><a name="3714"
> </a
><a name="3715" class="Symbol"
>{</a
><a name="3716" href="Data.Fin.Subset.Properties.html#3716" class="Bound"
>n</a
><a name="3717" class="Symbol"
>}</a
><a name="3718"
> </a
><a name="3719" class="Symbol"
>=</a
><a name="3720"
> </a
><a name="3721" href="Algebra.Properties.BooleanAlgebra.html#1" class="Module"
>BoolProp</a
><a name="3729"
> </a
><a name="3730" class="Symbol"
>(</a
><a name="3731" href="Data.Fin.Subset.html#1649" class="Function"
>booleanAlgebra</a
><a name="3745"
> </a
><a name="3746" href="Data.Fin.Subset.Properties.html#3716" class="Bound"
>n</a
><a name="3747" class="Symbol"
>)</a
><a name="3748"
> </a
><a name="3749" class="Keyword"
>public</a
><a name="3755"
>
</a
><a name="3762" class="Keyword"
>using</a
><a name="3767"
> </a
><a name="3768" class="Symbol"
>(</a
><a name="3769" href="Algebra.Properties.Lattice.html#1502" class="Function"
>poset</a
><a name="3774" class="Symbol"
>)</a
><a name="3775"
>
</a
><a name="3780" class="Keyword"
>open</a
><a name="3784"
> </a
><a name="3785" class="Keyword"
>module</a
><a name="3791"
> </a
><a name="3792" href="Data.Fin.Subset.Properties.html#3792" class="Module"
>Po</a
><a name="3794"
> </a
><a name="3795" class="Symbol"
>{</a
><a name="3796" href="Data.Fin.Subset.Properties.html#3796" class="Bound"
>n</a
><a name="3797" class="Symbol"
>}</a
><a name="3798"
> </a
><a name="3799" class="Symbol"
>=</a
><a name="3800"
> </a
><a name="3801" href="Relation.Binary.html#3729" class="Module"
>Poset</a
><a name="3806"
> </a
><a name="3807" class="Symbol"
>(</a
><a name="3808" href="Algebra.Properties.Lattice.html#1502" class="Function"
>poset</a
><a name="3813"
> </a
><a name="3814" class="Symbol"
>{</a
><a name="3815" class="Argument"
>n</a
><a name="3816"
> </a
><a name="3817" class="Symbol"
>=</a
><a name="3818"
> </a
><a name="3819" href="Data.Fin.Subset.Properties.html#3796" class="Bound"
>n</a
><a name="3820" class="Symbol"
>})</a
><a name="3822"
> </a
><a name="3823" class="Keyword"
>public</a
><a name="3829"
>
</a
><a name="3833" class="Comment"
>-- _⊆_ is equivalent to the natural lattice order.</a
><a name="3883"
>
</a
><a name="3887" href="Data.Fin.Subset.Properties.html#3887" class="Function"
>orders-equivalent</a
><a name="3904"
> </a
><a name="3905" class="Symbol"
>:</a
><a name="3906"
> </a
><a name="3907" class="Symbol"
>∀</a
><a name="3908"
> </a
><a name="3909" class="Symbol"
>{</a
><a name="3910" href="Data.Fin.Subset.Properties.html#3910" class="Bound"
>n</a
><a name="3911" class="Symbol"
>}</a
><a name="3912"
> </a
><a name="3913" class="Symbol"
>{</a
><a name="3914" href="Data.Fin.Subset.Properties.html#3914" class="Bound"
>p₁</a
><a name="3916"
> </a
><a name="3917" href="Data.Fin.Subset.Properties.html#3917" class="Bound"
>p₂</a
><a name="3919"
> </a
><a name="3920" class="Symbol"
>:</a
><a name="3921"
> </a
><a name="3922" href="Data.Fin.Subset.html#956" class="Function"
>Subset</a
><a name="3928"
> </a
><a name="3929" href="Data.Fin.Subset.Properties.html#3910" class="Bound"
>n</a
><a name="3930" class="Symbol"
>}</a
><a name="3931"
> </a
><a name="3932" class="Symbol"
>→</a
><a name="3933"
> </a
><a name="3934" href="Data.Fin.Subset.Properties.html#3914" class="Bound"
>p₁</a
><a name="3936"
> </a
><a name="3937" href="Data.Fin.Subset.html#1220" class="Function Operator"
>⊆</a
><a name="3938"
> </a
><a name="3939" href="Data.Fin.Subset.Properties.html#3917" class="Bound"
>p₂</a
><a name="3941"
> </a
><a name="3942" href="Function.Equivalence.html#711" class="Function Operator"
>⇔</a
><a name="3943"
> </a
><a name="3944" href="Data.Fin.Subset.Properties.html#3914" class="Bound"
>p₁</a
><a name="3946"
> </a
><a name="3947" href="Relation.Binary.html#3868" class="Function Operator"
>≤</a
><a name="3948"
> </a
><a name="3949" href="Data.Fin.Subset.Properties.html#3917" class="Bound"
>p₂</a
><a name="3951"
>
</a
><a name="3954" href="Data.Fin.Subset.Properties.html#3887" class="Function"
>orders-equivalent</a
><a name="3971"
> </a
><a name="3972" class="Symbol"
>=</a
><a name="3973"
> </a
><a name="3974" href="Function.Equivalence.html#804" class="Function"
>equivalence</a
><a name="3985"
> </a
><a name="3986" class="Symbol"
>(</a
><a name="3987" href="Data.Fin.Subset.Properties.html#4020" class="Function"
>to</a
><a name="3989"
> </a
><a name="3990" class="Symbol"
>_</a
><a name="3991"
> </a
><a name="3992" class="Symbol"
>_)</a
><a name="3994"
> </a
><a name="3995" class="Symbol"
>(</a
><a name="3996" href="Data.Fin.Subset.Properties.html#4388" class="Function"
>from</a
><a name="4000"
> </a
><a name="4001" class="Symbol"
>_</a
><a name="4002"
> </a
><a name="4003" class="Symbol"
>_)</a
><a name="4005"
>
</a
><a name="4010" class="Keyword"
>where</a
><a name="4015"
>
</a
><a name="4020" href="Data.Fin.Subset.Properties.html#4020" class="Function"
>to</a
><a name="4022"
> </a
><a name="4023" class="Symbol"
>:</a
><a name="4024"
> </a
><a name="4025" class="Symbol"
>∀</a
><a name="4026"
> </a
><a name="4027" class="Symbol"
>{</a
><a name="4028" href="Data.Fin.Subset.Properties.html#4028" class="Bound"
>n</a
><a name="4029" class="Symbol"
>}</a
><a name="4030"
> </a
><a name="4031" class="Symbol"
>(</a
><a name="4032" href="Data.Fin.Subset.Properties.html#4032" class="Bound"
>p₁</a
><a name="4034"
> </a
><a name="4035" href="Data.Fin.Subset.Properties.html#4035" class="Bound"
>p₂</a
><a name="4037"
> </a
><a name="4038" class="Symbol"
>:</a
><a name="4039"
> </a
><a name="4040" href="Data.Fin.Subset.html#956" class="Function"
>Subset</a
><a name="4046"
> </a
><a name="4047" href="Data.Fin.Subset.Properties.html#4028" class="Bound"
>n</a
><a name="4048" class="Symbol"
>)</a
><a name="4049"
> </a
><a name="4050" class="Symbol"
>→</a
><a name="4051"
> </a
><a name="4052" href="Data.Fin.Subset.Properties.html#4032" class="Bound"
>p₁</a
><a name="4054"
> </a
><a name="4055" href="Data.Fin.Subset.html#1220" class="Function Operator"
>⊆</a
><a name="4056"
> </a
><a name="4057" href="Data.Fin.Subset.Properties.html#4035" class="Bound"
>p₂</a
><a name="4059"
> </a
><a name="4060" class="Symbol"
>→</a
><a name="4061"
> </a
><a name="4062" href="Data.Fin.Subset.Properties.html#4032" class="Bound"
>p₁</a
><a name="4064"
> </a
><a name="4065" href="Relation.Binary.html#3868" class="Function Operator"
>≤</a
><a name="4066"
> </a
><a name="4067" href="Data.Fin.Subset.Properties.html#4035" class="Bound"
>p₂</a
><a name="4069"
>
</a
><a name="4074" href="Data.Fin.Subset.Properties.html#4020" class="Function"
>to</a
><a name="4076"
> </a
><a name="4077" href="Data.Vec.html#649" class="InductiveConstructor"
>[]</a
><a name="4079"
> </a
><a name="4092" href="Data.Vec.html#649" class="InductiveConstructor"
>[]</a
><a name="4094"
> </a
><a name="4107" href="Data.Fin.Subset.Properties.html#4107" class="Bound"
>p₁⊆p₂</a
><a name="4112"
> </a
><a name="4113" class="Symbol"
>=</a
><a name="4114"
> </a
><a name="4115" href="Agda.Builtin.Equality.html#112" class="InductiveConstructor"
>P.refl</a
><a name="4121"
>
</a
><a name="4126" href="Data.Fin.Subset.Properties.html#4020" class="Function"
>to</a
><a name="4128"
> </a
><a name="4129" class="Symbol"
>(</a
><a name="4130" href="Agda.Builtin.Bool.html#64" class="InductiveConstructor"
>inside</a
><a name="4136"
> </a
><a name="4138" href="Data.Vec.html#668" class="InductiveConstructor Operator"
>∷</a
><a name="4139"
> </a
><a name="4140" href="Data.Fin.Subset.Properties.html#4140" class="Bound"
>p₁</a
><a name="4142" class="Symbol"
>)</a
><a name="4143"
> </a
><a name="4144" class="Symbol"
>(_</a
><a name="4146"
> </a
><a name="4153" href="Data.Vec.html#668" class="InductiveConstructor Operator"
>∷</a
><a name="4154"
> </a
><a name="4155" href="Data.Fin.Subset.Properties.html#4155" class="Bound"
>p₂</a
><a name="4157" class="Symbol"
>)</a
><a name="4158"
> </a
><a name="4159" href="Data.Fin.Subset.Properties.html#4159" class="Bound"
>p₁⊆p₂</a
><a name="4164"
> </a
><a name="4165" class="Keyword"
>with</a
><a name="4169"
> </a
><a name="4170" href="Data.Fin.Subset.Properties.html#4159" class="Bound"
>p₁⊆p₂</a
><a name="4175"
> </a
><a name="4176" href="Data.Vec.html#1017" class="InductiveConstructor"
>here</a
><a name="4180"
>
</a
><a name="4185" href="Data.Fin.Subset.Properties.html#4020" class="Function"
>to</a
><a name="4187"
> </a
><a name="4188" class="Symbol"
>(</a
><a name="4189" href="Agda.Builtin.Bool.html#64" class="InductiveConstructor"
>inside</a
><a name="4195"
> </a
><a name="4197" href="Data.Vec.html#668" class="InductiveConstructor Operator"
>∷</a
><a name="4198"
> </a
><a name="4199" href="Data.Fin.Subset.Properties.html#4199" class="Bound"
>p₁</a
><a name="4201" class="Symbol"
>)</a
><a name="4202"
> </a
><a name="4203" class="Symbol"
>(</a
><a name="4204" class="DottedPattern Symbol"
>.</a
><a name="4205" href="Agda.Builtin.Bool.html#64" class="DottedPattern InductiveConstructor"
>inside</a
><a name="4211"
> </a
><a name="4212" href="Data.Vec.html#668" class="InductiveConstructor Operator"
>∷</a
><a name="4213"
> </a
><a name="4214" href="Data.Fin.Subset.Properties.html#4214" class="Bound"
>p₂</a
><a name="4216" class="Symbol"
>)</a
><a name="4217"
> </a
><a name="4218" href="Data.Fin.Subset.Properties.html#4218" class="Bound"
>p₁⊆p₂</a
><a name="4223"
> </a
><a name="4224" class="Symbol"
>|</a
><a name="4225"
> </a
><a name="4226" href="Data.Vec.html#1017" class="InductiveConstructor"
>here</a
><a name="4230"
> </a
><a name="4231" class="Symbol"
>=</a
><a name="4232"
> </a
><a name="4233" href="Relation.Binary.PropositionalEquality.html#1036" class="Function"
>P.cong</a
><a name="4239"
> </a
><a name="4240" class="Symbol"
>(</a
><a name="4241" href="Data.Vec.html#668" class="InductiveConstructor Operator"
>_∷_</a
><a name="4244"
> </a
><a name="4245" href="Agda.Builtin.Bool.html#64" class="InductiveConstructor"
>inside</a
><a name="4251" class="Symbol"
>)</a
><a name="4252"
> </a
><a name="4254" class="Symbol"
>(</a
><a name="4255" href="Data.Fin.Subset.Properties.html#4020" class="Function"
>to</a
><a name="4257"
> </a
><a name="4258" href="Data.Fin.Subset.Properties.html#4199" class="Bound"
>p₁</a
><a name="4260"
> </a
><a name="4261" href="Data.Fin.Subset.Properties.html#4214" class="Bound"
>p₂</a
><a name="4263"
> </a
><a name="4264" class="Symbol"
>(</a
><a name="4265" href="Data.Fin.Subset.Properties.html#999" class="Function"
>drop-∷-⊆</a
><a name="4273"
> </a
><a name="4274" href="Data.Fin.Subset.Properties.html#4218" class="Bound"
>p₁⊆p₂</a
><a name="4279" class="Symbol"
>))</a
><a name="4281"
>
</a
><a name="4286" href="Data.Fin.Subset.Properties.html#4020" class="Function"
>to</a
><a name="4288"
> </a
><a name="4289" class="Symbol"
>(</a
><a name="4290" href="Agda.Builtin.Bool.html#58" class="InductiveConstructor"
>outside</a
><a name="4297"
> </a
><a name="4298" href="Data.Vec.html#668" class="InductiveConstructor Operator"
>∷</a
><a name="4299"
> </a
><a name="4300" href="Data.Fin.Subset.Properties.html#4300" class="Bound"
>p₁</a
><a name="4302" class="Symbol"
>)</a
><a name="4303"
> </a
><a name="4304" class="Symbol"
>(_</a
><a name="4306"
> </a
><a name="4313" href="Data.Vec.html#668" class="InductiveConstructor Operator"
>∷</a
><a name="4314"
> </a
><a name="4315" href="Data.Fin.Subset.Properties.html#4315" class="Bound"
>p₂</a
><a name="4317" class="Symbol"
>)</a
><a name="4318"
> </a
><a name="4319" href="Data.Fin.Subset.Properties.html#4319" class="Bound"
>p₁⊆p₂</a
><a name="4324"
> </a
><a name="4332" class="Symbol"
>=</a
><a name="4333"
> </a
><a name="4334" href="Relation.Binary.PropositionalEquality.html#1036" class="Function"
>P.cong</a
><a name="4340"
> </a
><a name="4341" class="Symbol"
>(</a
><a name="4342" href="Data.Vec.html#668" class="InductiveConstructor Operator"
>_∷_</a
><a name="4345"
> </a
><a name="4346" href="Agda.Builtin.Bool.html#58" class="InductiveConstructor"
>outside</a
><a name="4353" class="Symbol"
>)</a
><a name="4354"
> </a
><a name="4355" class="Symbol"
>(</a
><a name="4356" href="Data.Fin.Subset.Properties.html#4020" class="Function"
>to</a
><a name="4358"
> </a
><a name="4359" href="Data.Fin.Subset.Properties.html#4300" class="Bound"
>p₁</a
><a name="4361"
> </a
><a name="4362" href="Data.Fin.Subset.Properties.html#4315" class="Bound"
>p₂</a
><a name="4364"
> </a
><a name="4365" class="Symbol"
>(</a
><a name="4366" href="Data.Fin.Subset.Properties.html#999" class="Function"
>drop-∷-⊆</a
><a name="4374"
> </a
><a name="4375" href="Data.Fin.Subset.Properties.html#4319" class="Bound"
>p₁⊆p₂</a
><a name="4380" class="Symbol"
>))</a
><a name="4382"
>
</a
><a name="4388" href="Data.Fin.Subset.Properties.html#4388" class="Function"
>from</a
><a name="4392"
> </a
><a name="4393" class="Symbol"
>:</a
><a name="4394"
> </a
><a name="4395" class="Symbol"
>∀</a
><a name="4396"
> </a
><a name="4397" class="Symbol"
>{</a
><a name="4398" href="Data.Fin.Subset.Properties.html#4398" class="Bound"
>n</a
><a name="4399" class="Symbol"
>}</a
><a name="4400"
> </a
><a name="4401" class="Symbol"
>(</a
><a name="4402" href="Data.Fin.Subset.Properties.html#4402" class="Bound"
>p₁</a
><a name="4404"
> </a
><a name="4405" href="Data.Fin.Subset.Properties.html#4405" class="Bound"
>p₂</a
><a name="4407"
> </a
><a name="4408" class="Symbol"
>:</a
><a name="4409"
> </a
><a name="4410" href="Data.Fin.Subset.html#956" class="Function"
>Subset</a
><a name="4416"
> </a
><a name="4417" href="Data.Fin.Subset.Properties.html#4398" class="Bound"
>n</a
><a name="4418" class="Symbol"
>)</a
><a name="4419"
> </a
><a name="4420" class="Symbol"
>→</a
><a name="4421"
> </a
><a name="4422" href="Data.Fin.Subset.Properties.html#4402" class="Bound"
>p₁</a
><a name="4424"
> </a
><a name="4425" href="Relation.Binary.html#3868" class="Function Operator"
>≤</a
><a name="4426"
> </a
><a name="4427" href="Data.Fin.Subset.Properties.html#4405" class="Bound"
>p₂</a
><a name="4429"
> </a
><a name="4430" class="Symbol"
>→</a
><a name="4431"
> </a
><a name="4432" href="Data.Fin.Subset.Properties.html#4402" class="Bound"
>p₁</a
><a name="4434"
> </a
><a name="4435" href="Data.Fin.Subset.html#1220" class="Function Operator"
>⊆</a
><a name="4436"
> </a
><a name="4437" href="Data.Fin.Subset.Properties.html#4405" class="Bound"
>p₂</a
><a name="4439"
>
</a
><a name="4444" href="Data.Fin.Subset.Properties.html#4388" class="Function"
>from</a
><a name="4448"
> </a
><a name="4449" href="Data.Vec.html#649" class="InductiveConstructor"
>[]</a
><a name="4451"
> </a
><a name="4464" href="Data.Vec.html#649" class="InductiveConstructor"
>[]</a
><a name="4466"
> </a
><a name="4473" href="Data.Fin.Subset.Properties.html#4473" class="Bound"
>p₁≤p₂</a
><a name="4478"
> </a
><a name="4479" href="Data.Fin.Subset.Properties.html#4479" class="Bound"
>x</a
><a name="4480"
> </a
><a name="4495" class="Symbol"
>=</a
><a name="4496"
> </a
><a name="4497" href="Data.Fin.Subset.Properties.html#4479" class="Bound"
>x</a
><a name="4498"
>
</a
><a name="4503" href="Data.Fin.Subset.Properties.html#4388" class="Function"
>from</a
><a name="4507"
> </a
><a name="4508" class="Symbol"
>(</a
><a name="4509" class="DottedPattern Symbol"
>.</a
><a name="4510" href="Agda.Builtin.Bool.html#64" class="DottedPattern InductiveConstructor"
>inside</a
><a name="4516"
> </a
><a name="4517" href="Data.Vec.html#668" class="InductiveConstructor Operator"
>∷</a
><a name="4518"
> </a
><a name="4519" class="Symbol"
>_)</a
><a name="4521"
> </a
><a name="4523" class="Symbol"
>(_</a
><a name="4525"
> </a
><a name="4526" href="Data.Vec.html#668" class="InductiveConstructor Operator"
>∷</a
><a name="4527"
> </a
><a name="4528" class="Symbol"
>_)</a
><a name="4530"
> </a
><a name="4532" href="Data.Fin.Subset.Properties.html#4532" class="Bound"
>p₁≤p₂</a
><a name="4537"
> </a
><a name="4538" href="Data.Vec.html#1017" class="InductiveConstructor"
>here</a
><a name="4542"
> </a
><a name="4554" class="Keyword"
>rewrite</a
><a name="4561"
> </a
><a name="4562" href="Relation.Binary.PropositionalEquality.html#1036" class="Function"
>P.cong</a
><a name="4568"
> </a
><a name="4569" href="Data.Vec.html#1268" class="Function"
>head</a
><a name="4573"
> </a
><a name="4574" href="Data.Fin.Subset.Properties.html#4532" class="Bound"
>p₁≤p₂</a
><a name="4579"
> </a
><a name="4580" class="Symbol"
>=</a
><a name="4581"
> </a
><a name="4582" href="Data.Vec.html#1017" class="InductiveConstructor"
>here</a
><a name="4586"
>
</a
><a name="4591" href="Data.Fin.Subset.Properties.html#4388" class="Function"
>from</a
><a name="4595"
> </a
><a name="4596" class="Symbol"
>(_</a
><a name="4598"
> </a
><a name="4605" href="Data.Vec.html#668" class="InductiveConstructor Operator"
>∷</a
><a name="4606"
> </a
><a name="4607" href="Data.Fin.Subset.Properties.html#4607" class="Bound"
>p₁</a
><a name="4609" class="Symbol"
>)</a
><a name="4610"
> </a
><a name="4611" class="Symbol"
>(_</a
><a name="4613"
> </a
><a name="4614" href="Data.Vec.html#668" class="InductiveConstructor Operator"
>∷</a
><a name="4615"
> </a
><a name="4616" href="Data.Fin.Subset.Properties.html#4616" class="Bound"
>p₂</a
><a name="4618" class="Symbol"
>)</a
><a name="4619"
> </a
><a name="4620" href="Data.Fin.Subset.Properties.html#4620" class="Bound"
>p₁≤p₂</a
><a name="4625"
> </a
><a name="4626" class="Symbol"
>(</a
><a name="4627" href="Data.Vec.html#1079" class="InductiveConstructor"
>there</a
><a name="4632"
> </a
><a name="4633" href="Data.Fin.Subset.Properties.html#4633" class="Bound"
>xs[i]=x</a
><a name="4640" class="Symbol"
>)</a
><a name="4641"
> </a
><a name="4642" class="Symbol"
>=</a
><a name="4643"
>
</a
><a name="4650" href="Data.Vec.html#1079" class="InductiveConstructor"
>there</a
><a name="4655"
> </a
><a name="4656" class="Symbol"
>(</a
><a name="4657" href="Data.Fin.Subset.Properties.html#4388" class="Function"
>from</a
><a name="4661"
> </a
><a name="4662" href="Data.Fin.Subset.Properties.html#4607" class="Bound"
>p₁</a
><a name="4664"
> </a
><a name="4665" href="Data.Fin.Subset.Properties.html#4616" class="Bound"
>p₂</a
><a name="4667"
> </a
><a name="4668" class="Symbol"
>(</a
><a name="4669" href="Relation.Binary.PropositionalEquality.html#1036" class="Function"
>P.cong</a
><a name="4675"
> </a
><a name="4676" href="Data.Vec.html#1334" class="Function"
>tail</a
><a name="4680"
> </a
><a name="4681" href="Data.Fin.Subset.Properties.html#4620" class="Bound"
>p₁≤p₂</a
><a name="4686" class="Symbol"
>)</a
><a name="4687"
> </a
><a name="4688" href="Data.Fin.Subset.Properties.html#4633" class="Bound"
>xs[i]=x</a
><a name="4695" class="Symbol"
>)</a
><a name="4696"
>
</a
><a name="4698" class="Comment"
>-- _⊆_ is a partial order.</a
><a name="4724"
>
</a
><a name="4726" href="Data.Fin.Subset.Properties.html#4726" class="Function"
>poset</a
><a name="4731"
> </a
><a name="4732" class="Symbol"
>:</a
><a name="4733"
> </a
><a name="4734" href="Agda.Builtin.Nat.html#69" class="Datatype"
>ℕ</a
><a name="4735"
> </a
><a name="4736" class="Symbol"
>→</a
><a name="4737"
> </a
><a name="4738" href="Relation.Binary.html#3729" class="Record"
>Poset</a
><a name="4743"
> </a
><a name="4744" class="Symbol"
>_</a
><a name="4745"
> </a
><a name="4746" class="Symbol"
>_</a
><a name="4747"
> </a
><a name="4748" class="Symbol"
>_</a
><a name="4749"
>
</a
><a name="4750" href="Data.Fin.Subset.Properties.html#4726" class="Function"
>poset</a
><a name="4755"
> </a
><a name="4756" href="Data.Fin.Subset.Properties.html#4756" class="Bound"
>n</a
><a name="4757"
> </a
><a name="4758" class="Symbol"
>=</a
><a name="4759"
> </a
><a name="4760" class="Keyword"
>record</a
><a name="4766"
>
</a
><a name="4769" class="Symbol"
>{</a
><a name="4770"
> </a
><a name="4771" class="Field"
>Carrier</a
><a name="4778"
> </a
><a name="4786" class="Symbol"
>=</a
><a name="4787"
> </a
><a name="4788" href="Data.Fin.Subset.html#956" class="Function"
>Subset</a
><a name="4794"
> </a
><a name="4795" href="Data.Fin.Subset.Properties.html#4756" class="Bound"
>n</a
><a name="4796"
>
</a
><a name="4799" class="Symbol"
>;</a
><a name="4800"
> </a
><a name="4801" class="Field Operator"
>_≈_</a
><a name="4804"
> </a
><a name="4816" class="Symbol"
>=</a
><a name="4817"
> </a
><a name="4818" href="Agda.Builtin.Equality.html#55" class="Datatype Operator"
>_≡_</a
><a name="4821"
>
</a
><a name="4824" class="Symbol"
>;</a
><a name="4825"
> </a
><a name="4826" class="Field Operator"
>_≤_</a
><a name="4829"
> </a
><a name="4841" class="Symbol"
>=</a
><a name="4842"
> </a
><a name="4843" href="Data.Fin.Subset.html#1220" class="Function Operator"
>_⊆_</a
><a name="4846"
>
</a
><a name="4849" class="Symbol"
>;</a
><a name="4850"
> </a
><a name="4851" class="Field"
>isPartialOrder</a
><a name="4865"
> </a
><a name="4866" class="Symbol"
>=</a
><a name="4867"
> </a
><a name="4868" class="Keyword"
>record</a
><a name="4874"
>
</a
><a name="4879" class="Symbol"
>{</a
><a name="4880"
> </a
><a name="4881" class="Field"
>isPreorder</a
><a name="4891"
> </a
><a name="4892" class="Symbol"
>=</a
><a name="4893"
> </a
><a name="4894" class="Keyword"
>record</a
><a name="4900"
>
</a
><a name="4907" class="Symbol"
>{</a
><a name="4908"
> </a
><a name="4909" class="Field"
>isEquivalence</a
><a name="4922"
> </a
><a name="4923" class="Symbol"
>=</a
><a name="4924"
> </a
><a name="4925" href="Relation.Binary.PropositionalEquality.Core.html#879" class="Function"
>P.isEquivalence</a
><a name="4940"
>
</a
><a name="4947" class="Symbol"
>;</a
><a name="4948"
> </a
><a name="4949" class="Field"
>reflexive</a
><a name="4958"
> </a
><a name="4963" class="Symbol"
>=</a
><a name="4964"
> </a
><a name="4965" class="Symbol"
>λ</a
><a name="4966"
> </a
><a name="4967" href="Data.Fin.Subset.Properties.html#4967" class="Bound"
>i≡j</a
><a name="4970"
> </a
><a name="4971" class="Symbol"
>→</a
><a name="4972"
> </a
><a name="4973" href="Function.Equivalence.html#659" class="Function"
>from</a
><a name="4977"
> </a
><a name="4978" href="Function.Equality.html#681" class="Field Operator"
>⟨$⟩</a
><a name="4981"
> </a
><a name="4982" href="Relation.Binary.html#1160" class="Function"
>reflexive</a
><a name="4991"
> </a
><a name="4992" href="Data.Fin.Subset.Properties.html#4967" class="Bound"
>i≡j</a
><a name="4995"
>
</a
><a name="5002" class="Symbol"
>;</a
><a name="5003"
> </a
><a name="5004" class="Field"
>trans</a
><a name="5009"
> </a
><a name="5018" class="Symbol"
>=</a
><a name="5019"
> </a
><a name="5020" class="Symbol"
>λ</a
><a name="5021"
> </a
><a name="5022" href="Data.Fin.Subset.Properties.html#5022" class="Bound"
>x⊆y</a
><a name="5025"
> </a
><a name="5026" href="Data.Fin.Subset.Properties.html#5026" class="Bound"
>y⊆z</a
><a name="5029"
> </a
><a name="5030" class="Symbol"
>→</a
><a name="5031"
> </a
><a name="5032" href="Function.Equivalence.html#659" class="Function"
>from</a
><a name="5036"
> </a
><a name="5037" href="Function.Equality.html#681" class="Field Operator"
>⟨$⟩</a
><a name="5040"
> </a
><a name="5041" href="Relation.Binary.html#1190" class="Function"
>trans</a
><a name="5046"
> </a
><a name="5047" class="Symbol"
>(</a
><a name="5048" href="Function.Equivalence.html#638" class="Function"
>to</a
><a name="5050"
> </a
><a name="5051" href="Function.Equality.html#681" class="Field Operator"
>⟨$⟩</a
><a name="5054"
> </a
><a name="5055" href="Data.Fin.Subset.Properties.html#5022" class="Bound"
>x⊆y</a
><a name="5058" class="Symbol"
>)</a
><a name="5059"
> </a
><a name="5060" class="Symbol"
>(</a
><a name="5061" href="Function.Equivalence.html#638" class="Function"
>to</a
><a name="5063"
> </a
><a name="5064" href="Function.Equality.html#681" class="Field Operator"
>⟨$⟩</a
><a name="5067"
> </a
><a name="5068" href="Data.Fin.Subset.Properties.html#5026" class="Bound"
>y⊆z</a
><a name="5071" class="Symbol"
>)</a
><a name="5072"
>
</a
><a name="5079" class="Symbol"
>}</a
><a name="5080"
>
</a
><a name="5085" class="Symbol"
>;</a
><a name="5086"
> </a
><a name="5087" class="Field"
>antisym</a
><a name="5094"
> </a
><a name="5095" class="Symbol"
>=</a
><a name="5096"
> </a
><a name="5097" class="Symbol"
>λ</a
><a name="5098"
> </a
><a name="5099" href="Data.Fin.Subset.Properties.html#5099" class="Bound"
>x⊆y</a
><a name="5102"
> </a
><a name="5103" href="Data.Fin.Subset.Properties.html#5103" class="Bound"
>y⊆x</a
><a name="5106"
> </a
><a name="5107" class="Symbol"
>→</a
><a name="5108"
> </a
><a name="5109" href="Relation.Binary.html#3608" class="Function"
>antisym</a
><a name="5116"
> </a
><a name="5117" class="Symbol"
>(</a
><a name="5118" href="Function.Equivalence.html#638" class="Function"
>to</a
><a name="5120"
> </a
><a name="5121" href="Function.Equality.html#681" class="Field Operator"
>⟨$⟩</a
><a name="5124"
> </a
><a name="5125" href="Data.Fin.Subset.Properties.html#5099" class="Bound"
>x⊆y</a
><a name="5128" class="Symbol"
>)</a
><a name="5129"
> </a
><a name="5130" class="Symbol"
>(</a
><a name="5131" href="Function.Equivalence.html#638" class="Function"
>to</a
><a name="5133"
> </a
><a name="5134" href="Function.Equality.html#681" class="Field Operator"
>⟨$⟩</a
><a name="5137"
> </a
><a name="5138" href="Data.Fin.Subset.Properties.html#5103" class="Bound"
>y⊆x</a
><a name="5141" class="Symbol"
>)</a
><a name="5142"
>
</a
><a name="5147" class="Symbol"
>}</a
><a name="5148"
>
</a
><a name="5151" class="Symbol"
>}</a
><a name="5152"
>
</a
><a name="5155" class="Keyword"
>where</a
><a name="5160"
>
</a
><a name="5163" class="Keyword"
>open</a
><a name="5167"
> </a
><a name="5168" href="Data.Fin.Subset.Properties.html#3667" class="Module"
>NaturalPoset</a
><a name="5180"
>
</a
><a name="5183" class="Keyword"
>open</a
><a name="5187"
> </a
><a name="5188" class="Keyword"
>module</a
><a name="5194"
> </a
><a name="5195" href="Data.Fin.Subset.Properties.html#5195" class="Module"
>E</a
><a name="5196"
> </a
><a name="5197" class="Symbol"
>{</a
><a name="5198" href="Data.Fin.Subset.Properties.html#5198" class="Bound"
>p₁</a
><a name="5200"
> </a
><a name="5201" href="Data.Fin.Subset.Properties.html#5201" class="Bound"
>p₂</a
><a name="5203" class="Symbol"
>}</a
><a name="5204"
> </a
><a name="5205" class="Symbol"
>=</a
><a name="5206"
>
</a
><a name="5211" href="Function.Equivalence.html#488" class="Module"
>Equivalence</a
><a name="5222"
> </a
><a name="5223" class="Symbol"
>(</a
><a name="5224" href="Data.Fin.Subset.Properties.html#3887" class="Function"
>orders-equivalent</a
><a name="5241"
> </a
><a name="5242" class="Symbol"
>{</a
><a name="5243" class="Argument"
>n</a
><a name="5244"
> </a
><a name="5245" class="Symbol"
>=</a
><a name="5246"
> </a
><a name="5247" href="Data.Fin.Subset.Properties.html#4756" class="Bound"
>n</a
><a name="5248" class="Symbol"
>}</a
><a name="5249"
> </a
><a name="5250" class="Symbol"
>{</a
><a name="5251" class="Argument"
>p₁</a
><a name="5253"
> </a
><a name="5254" class="Symbol"
>=</a
><a name="5255"
> </a
><a name="5256" href="Data.Fin.Subset.Properties.html#5198" class="Bound"
>p₁</a
><a name="5258" class="Symbol"
>}</a
><a name="5259"
> </a
><a name="5260" class="Symbol"
>{</a
><a name="5261" class="Argument"
>p₂</a
><a name="5263"
> </a
><a name="5264" class="Symbol"
>=</a
><a name="5265"
> </a
><a name="5266" href="Data.Fin.Subset.Properties.html#5201" class="Bound"
>p₂</a
><a name="5268" class="Symbol"
>})</a
><a name="5270"
>
</a
></pre
></body
></html
>
|
src/html/index.html | tilap/weleanit-landing | @@include('./includes/htmlhead.html', {
"applicationName" : "Weleanit: Lean coding week-ends",
"copyrightYear" : "September 2014",
"twitterUsername" : "@weleanit",
"authorName" : "Evaneos.com",
"authorProfileUrl" : "https://plus.google.com/+Evaneos/posts",
"description" : "Lean coding week-ends",
"rootpath" : "../../"
})
<a id="home"></a>
@@include('./includes/sections/home.html')
@@include('./includes/layout/navbar.html')
<a id="idea"></a>
@@include('./includes/sections/idea.html')
<a id="concept"></a>
@@include('./includes/sections/concept.html')
<a id="sessions"></a>
@@include('./includes/sections/sessions.html')
<a id="contact"></a>
@@include('./includes/sections/contact.html')
@@include('./includes/layout/footer.html')
@@include('./includes/htmlfoot.html', {
"rootpath" : "../../"
})
|
_includes/disqus.html | metanet/fastdatanews | {% if site.disqus_shortname %}
<div id="disqus_thread"></div>
<script>
/**
* RECOMMENDED CONFIGURATION VARIABLES: EDIT AND UNCOMMENT THE SECTION BELOW TO INSERT DYNAMIC VALUES FROM YOUR PLATFORM OR CMS.
* LEARN WHY DEFINING THESE VARIABLES IS IMPORTANT: https://disqus.com/admin/universalcode/#configuration-variables*/
/*
var disqus_config = function () {
this.page.url = PAGE_URL; // Replace PAGE_URL with your page's canonical URL variable
this.page.identifier = PAGE_IDENTIFIER; // Replace PAGE_IDENTIFIER with your page's unique identifier variable
};
*/
(function() { // DON'T EDIT BELOW THIS LINE
var d = document, s = d.createElement('script');
s.src = 'https://fast-data-news.disqus.com/embed.js';
s.setAttribute('data-timestamp', +new Date());
(d.head || d.body).appendChild(s);
})();
</script>
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
{% endif %}
|
public/Windows 10 x64 (19041.508)/_ARBITER_INTERFACE.html | epikcraw/ggool | <html><body>
<h4>Windows 10 x64 (19041.508)</h4><br>
<h2>_ARBITER_INTERFACE</h2>
<font face="arial"> +0x000 Size : Uint2B<br>
+0x002 Version : Uint2B<br>
+0x008 Context : Ptr64 Void<br>
+0x010 InterfaceReference : Ptr64 void <br>
+0x018 InterfaceDereference : Ptr64 void <br>
+0x020 ArbiterHandler : Ptr64 long <br>
+0x028 Flags : Uint4B<br>
</font></body></html> |
public/Windows 10 x64 (18362.86)/_DBGKD_LOAD_SYMBOLS32.html | epikcraw/ggool | <html><body>
<h4>Windows 10 x64 (18362.86)</h4><br>
<h2>_DBGKD_LOAD_SYMBOLS32</h2>
<font face="arial"> +0x000 PathNameLength : Uint4B<br>
+0x004 BaseOfDll : Uint4B<br>
+0x008 ProcessId : Uint4B<br>
+0x00c CheckSum : Uint4B<br>
+0x010 SizeOfImage : Uint4B<br>
+0x014 UnloadSymbols : UChar<br>
</font></body></html> |
index.html | GalacticCow/Hexagon-map-magic | <!DOCTYPE html>
<html>
<head>
<title>Magical Hex Map</title>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="styles/style.css">
<link rel="stylesheet" type="text/css" href="styles/themes.css">
</head>
<body>
<div id="parentNode">
<div id="mapContainer" class="fullScreen">
<canvas id="map" width="400" height="400"></canvas>
<div id="westButton" class="moveButton tallButton">
<div class="moveButtonArrow noSelect">◄</div>
</div>
<div id="eastButton" class="moveButton tallButton">
<div class="moveButtonArrow noSelect">►</div>
</div>
<div id="northButton" class="moveButton wideButton">
<div class="moveButtonArrow noSelect">▲</div>
</div>
<div id="southButton" class="moveButton wideButton">
<div class="moveButtonArrow noSelect">▼</div>
</div>
<div id="menu">
<!-- Going to instantiate all the menu buttons in here! Good luck, script.js! -->
</div>
<div id="mycolorpicker" class="cp-default"></div>
</div>
<div id="loadingOverlay" class="overlay fullScreen"></div>
<div id="loadingHex" class="hexagon loadingSpin centeredTotallyOnPage"></div>
<div id="loadingText">Loading...</div>
</div>
<script src="scripts/script.js"></script>
<script src="scripts/colorpicker.min.js"></script>
</body>
</html> |
doc/java/jdk8/javax/tools/class-use/DocumentationTool.html | fbiville/annotation-processing-ftw | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_31) on Wed Dec 17 20:48:31 PST 2014 -->
<title>Uses of Interface javax.tools.DocumentationTool (Java Platform SE 8 )</title>
<meta name="date" content="2014-12-17">
<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 Interface javax.tools.DocumentationTool (Java Platform SE 8 )";
}
}
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="../../../javax/tools/DocumentationTool.html" title="interface in javax.tools">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 class="aboutLanguage"><strong>Java™ Platform<br>Standard Ed. 8</strong></div>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../index.html?javax/tools/class-use/DocumentationTool.html" target="_top">Frames</a></li>
<li><a href="DocumentationTool.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 Interface javax.tools.DocumentationTool" class="title">Uses of Interface<br>javax.tools.DocumentationTool</h2>
</div>
<div class="classUseContainer">
<ul class="blockList">
<li class="blockList">
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation">
<caption><span>Packages that use <a href="../../../javax/tools/DocumentationTool.html" title="interface in javax.tools">DocumentationTool</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Package</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href="#javax.tools">javax.tools</a></td>
<td class="colLast">
<div class="block">Provides interfaces for tools which can be invoked from a program,
for example, compilers.</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="javax.tools">
<!-- -->
</a>
<h3>Uses of <a href="../../../javax/tools/DocumentationTool.html" title="interface in javax.tools">DocumentationTool</a> in <a href="../../../javax/tools/package-summary.html">javax.tools</a></h3>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../javax/tools/package-summary.html">javax.tools</a> that return <a href="../../../javax/tools/DocumentationTool.html" title="interface in javax.tools">DocumentationTool</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../javax/tools/DocumentationTool.html" title="interface in javax.tools">DocumentationTool</a></code></td>
<td class="colLast"><span class="typeNameLabel">ToolProvider.</span><code><span class="memberNameLink"><a href="../../../javax/tools/ToolProvider.html#getSystemDocumentationTool--">getSystemDocumentationTool</a></span>()</code>
<div class="block">Gets the Java™ programming language documentation tool provided
with this platform.</div>
</td>
</tr>
</tbody>
</table>
</li>
</ul>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../javax/tools/DocumentationTool.html" title="interface in javax.tools">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 class="aboutLanguage"><strong>Java™ Platform<br>Standard Ed. 8</strong></div>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../index.html?javax/tools/class-use/DocumentationTool.html" target="_top">Frames</a></li>
<li><a href="DocumentationTool.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small><font size="-1"> <a href="http://bugreport.sun.com/bugreport/">Submit a bug or feature</a> <br>For further API reference and developer documentation, see <a href="http://download.oracle.com/javase/8/docs/index.html" target="_blank">Java SE Documentation</a>. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.<br> <a href="../../../../legal/cpyr.html">Copyright</a> © 1993, 2015, Oracle and/or its affiliates. All rights reserved. </font></small></p>
</body>
</html>
|
doc/javadoc/pylapp/smoothclicker/android/tools/screen/package-frame.html | pylapp/SmoothClicker | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="fr">
<head>
<!-- Generated by javadoc (1.8.0_101) on Tue Jul 26 20:54:03 CEST 2016 -->
<title>pylapp.smoothclicker.android.tools.screen</title>
<meta name="date" content="2016-07-26">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
<body>
<h1 class="bar"><a href="../../../../../pylapp/smoothclicker/android/tools/screen/package-summary.html" target="classFrame">pylapp.smoothclicker.android.tools.screen</a></h1>
<div class="indexContainer">
<h2 title="Interfaces">Interfaces</h2>
<ul title="Interfaces">
<li><a href="PicturesComparator.html" title="interface in pylapp.smoothclicker.android.tools.screen" target="classFrame"><span class="interfaceName">PicturesComparator</span></a></li>
<li><a href="UnlockerStub.html" title="interface in pylapp.smoothclicker.android.tools.screen" target="classFrame"><span class="interfaceName">UnlockerStub</span></a></li>
<li><a href="UnlockerStub.UnlockCallback.html" title="interface in pylapp.smoothclicker.android.tools.screen" target="classFrame"><span class="interfaceName">UnlockerStub.UnlockCallback</span></a></li>
</ul>
<h2 title="Classes">Classes</h2>
<ul title="Classes">
<li><a href="AsyncTaskForScreen.html" title="class in pylapp.smoothclicker.android.tools.screen" target="classFrame">AsyncTaskForScreen</a></li>
<li><a href="ATScreenWatcher.html" title="class in pylapp.smoothclicker.android.tools.screen" target="classFrame">ATScreenWatcher</a></li>
<li><a href="ItPixelByPixelPicturesComparator.html" title="class in pylapp.smoothclicker.android.tools.screen" target="classFrame">ItPixelByPixelPicturesComparator</a></li>
<li><a href="ItWakelockManager.html" title="class in pylapp.smoothclicker.android.tools.screen" target="classFrame">ItWakelockManager</a></li>
<li><a href="PixelByPixelPicturesComparator.html" title="class in pylapp.smoothclicker.android.tools.screen" target="classFrame">PixelByPixelPicturesComparator</a></li>
<li><a href="UnlockerImpl.html" title="class in pylapp.smoothclicker.android.tools.screen" target="classFrame">UnlockerImpl</a></li>
<li><a href="WakelockManager.html" title="class in pylapp.smoothclicker.android.tools.screen" target="classFrame">WakelockManager</a></li>
</ul>
<h2 title="Exceptions">Exceptions</h2>
<ul title="Exceptions">
<li><a href="PicturesComparator.PicturesComparatorException.html" title="class in pylapp.smoothclicker.android.tools.screen" target="classFrame">PicturesComparator.PicturesComparatorException</a></li>
<li><a href="UnlockerStub.UnlockException.html" title="class in pylapp.smoothclicker.android.tools.screen" target="classFrame">UnlockerStub.UnlockException</a></li>
</ul>
</div>
</body>
</html>
|
src/test/body.html | obviel/obviel | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Buster.JS</title>
</head>
<body>
<div id="jsview-area" style="width: 100%; height 150px; display: none">
<div id="viewdiv"></div>
<div id="viewdiv2"></div>
</div>
<script type="text/template" id="obvt_script_id">Hello <em>{world}</em></script>
<script type="text/template" id="obvt_notfound_id">{notfound}</script>
</body>
</html>
|
templates/news.html | Dubrzr/NG-Notifier | {% extends "base.html" %}
{% block metas %}<meta name="robots" content="noindex">{% endblock metas %}
{% block contents %}
<div class="bs-docs-section">
<div class="row">
<div class="col-lg-12">
<div class="page-header">
<h1 id="forms">News permalink: <a href="{% url 'news' id=id %}?html">/news/{{ id }}?html</a></h1>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<div style="margin-top: 1em" id="contents" class=" well bs-component">
<h5>
<b>Id:</b> {{ id }}<br>
<b>Message-id:</b> {{ message_id }}<br>
<b>Lines:</b> {{ lines }}<br>
<b>Xref:</b> {{ xref }}<br>
<b>References:</b> {{ references }}<br>
<b>From:</b> {{ from }}<br>
<b>Date:</b> {{ date }}<br>
<b>Posted in:</b> {{ posted_in }}<br>
</h5>
<h4><b>{{ subject }}</b></h4>
<pre>{{ contents }}</pre>
</div>
</div>
</div>
</div>
{% endblock contents %} |
doc/api/files/__/_rvm/gems/ruby-2_2_2/gems/activesupport-4_2_2/lib/active_support/core_ext/module/aliasing_rb.html | benfreeman/yammer_training | <?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>aliasing.rb</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="stylesheet" href="../../../../../../../../../../../css/reset.css" type="text/css" media="screen" />
<link rel="stylesheet" href="../../../../../../../../../../../css/main.css" type="text/css" media="screen" />
<link rel="stylesheet" href="../../../../../../../../../../../css/github.css" type="text/css" media="screen" />
<script src="../../../../../../../../../../../js/jquery-1.3.2.min.js" type="text/javascript" charset="utf-8"></script>
<script src="../../../../../../../../../../../js/jquery-effect.js" type="text/javascript" charset="utf-8"></script>
<script src="../../../../../../../../../../../js/main.js" type="text/javascript" charset="utf-8"></script>
<script src="../../../../../../../../../../../js/highlight.pack.js" type="text/javascript" charset="utf-8"></script>
</head>
<body>
<div class="banner">
<span>Ruby on Rails 4.2.2</span><br />
<h1>
aliasing.rb
</h1>
<ul class="files">
<li>
../.rvm/gems/ruby-2.2.2/gems/activesupport-4.2.2/lib/active_support/core_ext/module/aliasing.rb
</li>
<li>Last modified: 2016-02-03 17:30:05 -0800</li>
</ul>
</div>
<div id="bodyContent">
<div id="content">
<!-- Namespace -->
<div class="sectiontitle">Namespace</div>
<ul>
<li>
<span class="type">CLASS</span>
<a href="../../../../../../../../../../../classes/Module.html">Module</a>
</li>
</ul>
<!-- Methods -->
</div>
</div>
</body>
</html> |
html/234567034927.html | GoC-Spending/data-corporations |
<!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>
GeoQwest Excursions Ltd. -
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=1492288206417&V_SEARCH.docsCount=3&V_DOCUMENT.docRank=19273&V_SEARCH.docsStart=19272&V_SEARCH.command=navigate&V_SEARCH.resultsJSP=/prfl.do&lang=fra&redirectUrl=/app/scr/imbs/ccc/rgstrtn//cache/304.php?_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=19271&V_DOCUMENT.docRank=19272&V_SEARCH.docsCount=3&lang=eng&prtl=1&sbPrtl=&profile=cmpltPrfl&V_TOKEN=1492288238356&V_SEARCH.command=navigate&V_SEARCH.resultsJSP=%2fprfl.do&estblmntNo=234567153213&profileId=&key.newSearchLabel=">Previous Company</a></li>
<li>| <a href="nvgt.do?V_SEARCH.docsStart=19273&V_DOCUMENT.docRank=19274&V_SEARCH.docsCount=3&lang=eng&prtl=1&sbPrtl=&profile=cmpltPrfl&V_TOKEN=1492288238356&V_SEARCH.command=navigate&V_SEARCH.resultsJSP=%2fprfl.do&estblmntNo=234567113179&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>
GeoQwest Excursions Ltd.
</h2>
<div class="row">
<div class="col-md-5">
<h2 class="h5 mrgn-bttm-0">Legal/Operating Name:</h2>
<p>GeoQwest Excursions Ltd.</p>
<div class="mrgn-tp-md"></div>
<p class="mrgn-bttm-0" ><a href="http://www.geoqwest.com"
target="_blank" title="Website URL">http://www.geoqwest.com</a></p>
<p><a href="mailto:geoqwest@shaw.ca" title="geoqwest@shaw.ca">geoqwest@shaw.ca</a></p>
</div>
<div class="col-md-4 mrgn-sm-sm">
<h2 class="h5 mrgn-bttm-0">Mailing Address:</h2>
<address class="mrgn-bttm-md">
2475 Dobbin Rd<br/>
Unit 22, Suite 298<br/>
WEST KELOWNA,
British Columbia<br/>
V4T 2E9
<br/>
</address>
<h2 class="h5 mrgn-bttm-0">Location Address:</h2>
<address class="mrgn-bttm-md">
2475 Dobbin Rd<br/>
Unit 22, Suite 298<br/>
WEST KELOWNA,
British Columbia<br/>
V4T 2E9
<br/>
</address>
<p class="mrgn-bttm-0"><abbr title="Telephone">Tel.</abbr>:
(250) 212-9024
</p>
<p class="mrgn-bttm-lg"><abbr title="Facsimile">Fax</abbr>:
</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=234567034927&graphFileName=logo2testjpg.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> International Mineral Exploration Consulting
<br>- Gold, Silver, Copper, Lead, Zinc in Canada, US, Mexico, South America, Turkey.
<br>- Project generation and supervision
<br>- Crew deployment and supervision
<br>- Driamond,RC drill project supervision
<br>- Prospecting, property evaluation and aquisition
<br>- Advanced IT and productivity software experience
<br>- Experience with junior and major Canadian mining and exploration companies since 1980
<br>
<br>Canadian oil exploration administration, logistics and supervision, Williston Basin, Saskatchewan
<br>
<br><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>
Steve
Noakes
</strong></div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Title:
</strong>
</div>
<div class="col-md-7">
<!--if client gender is not null or empty we use gender based job title-->
President
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Telephone:
</strong>
</div>
<div class="col-md-7">
(250) 212-9024
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
geoqwest@shaw.ca
</div>
</div>
</section>
<p class="mrgn-tp-lg text-right small hidden-print">
<a href="#wb-cont">top of page</a>
</p>
<!-- Company Description -->
<h3 class="page-header">
Company description
</h3>
<section class="container-fluid">
<div class="row">
<div class="col-md-5">
<strong>
Country of Ownership:
</strong>
</div>
<div class="col-md-7">
Canada
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Year Established:
</strong>
</div>
<div class="col-md-7">
2001
</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">
213119 - Other Support Activities for Mining
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Alternate Industries (NAICS):
</strong>
</div>
<div class="col-md-7">
541990 - All Other Professional, Scientific and Technical Services<br>
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Primary Business Activity:
</strong>
</div>
<div class="col-md-7">
Services
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Number of Employees:
</strong>
</div>
<div class="col-md-7">
1
</div>
</div>
</section>
<!-- Products / Services / Licensing -->
<h3 class="page-header">
Product / Service / Licensing
</h3>
<section class="container-fluid">
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Service Name:
</strong>
</div>
<div class="col-md-9">
International Mineral Exploration Consulting<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-12">
International Mineral Exploration Consulting: Prospecting, Geology, Crew Supervision, Project Supervision.
<br>
<br>
Canada, USA, Mexico, Chile, Argentina, Peru, Bolivia, Turkey.
<br>
<br>
Geochemistry, diamond and RC drilling project supervision, reconnaissance exploration project design and management, prospecting, geology.
<br>
<br>
Full details at www.geoqwest.com<br>
<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
FSC Code:
</strong>
</div>
<div class="col-md-9">
9620-Minerals, Natural and Synthetic
<br>
AP00-Natural Resources
<br>
AV00-Mining Activities R&D
<br>
V005-Motor Passenger Service
<br>
V400-Other Transport Services
<br>
</div>
</div>
</section>
<p class="mrgn-tp-lg text-right small hidden-print">
<a href="#wb-cont">top of page</a>
</p>
<!-- Technology Profile -->
<!-- Market Profile -->
<h3 class="page-header">
Market profile
</h3>
<section class="container-fluid">
<h4>
Alliances:
</h4>
<ul>
<li>Technology</li>
</ul>
<h4>
Industry sector market interests:
</h4>
<ul>
<li>Environment</li>
<li>Forestry</li>
<li>Mining/Petroleum/Gas</li>
<li>Tourism</li>
</ul>
</section>
<p class="mrgn-tp-lg text-right small hidden-print">
<a href="#wb-cont">top of page</a>
</p>
<!-- Sector Information -->
<h3 class="page-header">
Sector information
</h3>
<section class="container-fluid">
<h4>
Key / Major clients:
</h4>
Junior and Major mining and exploration companies including:
<br>
Cambria Geoscience
<br>
Kenrich Eskay Mining Corp
<br>
Barrick Gold Corp
<br>
West Timmins Mining Inc
<br>
Minera Cascabel
<br>
Teckcominco
<h4>
Success stories:
</h4>
Applied technical exploration from prospecting to diamond drill and large crew project supervision.
</section>
<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>
Steve
Noakes
</strong></div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Title:
</strong>
</div>
<div class="col-md-7">
<!--if client gender is not null or empty we use gender based job title-->
President
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Telephone:
</strong>
</div>
<div class="col-md-7">
(250) 212-9024
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
geoqwest@shaw.ca
</div>
</div>
</section>
</details>
<details id="details-panel3">
<summary>
Description
</summary>
<h2 class="wb-invisible">
Company description
</h2>
<section class="container-fluid">
<div class="row">
<div class="col-md-5">
<strong>
Country of Ownership:
</strong>
</div>
<div class="col-md-7">
Canada
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Year Established:
</strong>
</div>
<div class="col-md-7">
2001
</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">
213119 - Other Support Activities for Mining
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Alternate Industries (NAICS):
</strong>
</div>
<div class="col-md-7">
541990 - All Other Professional, Scientific and Technical Services<br>
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Primary Business Activity:
</strong>
</div>
<div class="col-md-7">
Services
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Number of Employees:
</strong>
</div>
<div class="col-md-7">
1
</div>
</div>
</section>
</details>
<details id="details-panel4">
<summary>
Products, services and licensing
</summary>
<h2 class="wb-invisible">
Product / Service / Licensing
</h2>
<section class="container-fluid">
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Service Name:
</strong>
</div>
<div class="col-md-9">
International Mineral Exploration Consulting<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-12">
International Mineral Exploration Consulting: Prospecting, Geology, Crew Supervision, Project Supervision.
<br>
<br>
Canada, USA, Mexico, Chile, Argentina, Peru, Bolivia, Turkey.
<br>
<br>
Geochemistry, diamond and RC drilling project supervision, reconnaissance exploration project design and management, prospecting, geology.
<br>
<br>
Full details at www.geoqwest.com<br>
<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
FSC Code:
</strong>
</div>
<div class="col-md-9">
9620-Minerals, Natural and Synthetic
<br>
AP00-Natural Resources
<br>
AV00-Mining Activities R&D
<br>
V005-Motor Passenger Service
<br>
V400-Other Transport Services
<br>
</div>
</div>
</section>
</details>
<details id="details-panel6">
<summary>
Market
</summary>
<h2 class="wb-invisible">
Market profile
</h2>
<section class="container-fluid">
<h4>
Alliances:
</h4>
<ul>
<li>Technology</li>
</ul>
<h4>
Industry sector market interests:
</h4>
<ul>
<li>Environment</li>
<li>Forestry</li>
<li>Mining/Petroleum/Gas</li>
<li>Tourism</li>
</ul>
</section>
</details>
<details id="details-panel7">
<summary>
Sector
</summary>
<h2 class="wb-invisible">
Sector information
</h2>
<section class="container-fluid">
<h4>
Key / Major clients:
</h4>
Junior and Major mining and exploration companies including:
<br>
Cambria Geoscience
<br>
Kenrich Eskay Mining Corp
<br>
Barrick Gold Corp
<br>
West Timmins Mining Inc
<br>
Minera Cascabel
<br>
Teckcominco
<h4>
Success stories:
</h4>
Applied technical exploration from prospecting to diamond drill and large crew project supervision.
</section>
</details>
</div>
</div>
<div class="row">
<div class="col-md-12 text-right">
Last Update Date 2016-02-03
</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
-->
|
place/estonia/postcodes/index.html | okfn/opendataindex-2015 | <!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 for Postcodes / Zipcodes
">
<meta name="keywords" content="Postcodes / Zipcodes, 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 for Postcodes / Zipcodes" />
<meta property="og:image" content="/static/images/favicon.ico" />
<title>Estonia / Postcodes / Zipcodes | 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="empty">
<header id="header">
<nav class="navbar navbar-default" role="navigation">
<div class="container">
<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>
<a class="navbar-brand" href="/">
<img src="/static/images/logo.png" height="44">
<span>Global Open Data Index</span>
</a>
</div>
<div class="collapse navbar-collapse" id="navbar-collapse">
<ul class="nav navbar-nav">
<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="/stories/" title="Stories around the Open Data Index project">
Stories
</a>
</li>
<li>
<a href="/about/" title="Contact information for the Open Data Index">
Contact
</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>
<p class="navbar-subbrand navbar-text navbar-right">
<a href="http://okfn.org/">
<img src="http://assets.okfn.org/p/okfn/img/okfn-logo-landscape-black-s.png" alt="" height="28">
</a>
</p>
</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 class="active">Estonia / Postcodes / Zipcodes</li>
</ol>
<header class="page-header">
<h1>Estonia / Postcodes / Zipcodes</h1>
</header>
<p>
We do not current have any data for Estonia / Postcodes / Zipcodes. But you can help change that!
</p>
<section class="row">
<div class="col-md-4">
<a href="http://global.census.okfn.org/submit/?place=ee&dataset=postcodes&year=2014" class="btn btn-success">
Add information
</a>
</div>
<div class="col-md-4">
<a href="" class="btn btn-success">
Contact us for help
</a>
</div>
<div class="col-md-4">
</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> |
app/views/map.html | g0v/projectV | <!--
<button type="button" class="btn btn-primary" ng-click="myscope.reload()">
<i class="fa fa-chevron-left"></i>reload
</button>
-->
<div class="row mymap" style="margin-bottom:10px;">
<div id="map_main" class="col-xs-8 col-lg-9 map_border map_short"><!-- ng-class="myscope.mapclass">-->
<!--<leaflet markers="markers" defaults="defaults" geojson="geojson" maxbounds="maxbounds" layers="layers" style="height:100%;"></leaflet>-->
<leaflet markers="markers" defaults="defaults" geojson="geojson" maxbounds="maxbounds" style="height:100%;"></leaflet>
<div style="width: 100%; height: 100%; background: #333333; z-index: 200000; position: absolute; top: 0px; " class="myLoading">
<div style="position:relative; color:#ffffff; top:60%;text-align:center;">
<h1 style="color:#ffffff">{{myscope.mapLoadingStatus | percentage:0 }}</h1>
</div>
<div id="mySpinner" >
</div>
</div>
</div>
<div id="map_sidebar" class="col-xs-4 col-lg-3 map_border_noleft map_short"><!-- ng-class="myscope.mapclass">-->
<div style="width: 100%; height: 100%; background: #333333; z-index: 200000; position: absolute; top: 0px; " class="myLoading">
</div>
<div class="panel panel-default area-info" style="width:100%;padding:0px;margin:0px;border:0px;" ng-show="myscope.showVS == null" >
<div class="map_panel_heading" >
<h3>
魔王領土兵屯列表
</h3>
<img class="map_v_image" src="images/map_panel_v.svg" />
</div>
<div id="map_sidebar_townlist" class="panel-body map_border_top map_sb_scroll" >
<ul class="nav nav-stacked" ng-repeat="townKey in myscope.villList track by $index" >
<li ng-click='myscope.setTownTab(townKey)' style="cursor:pointer;" ng-class="myscope.isCurrentTownTab(townKey)">{{townKey}}</li>
</ul>
</div>
<div id="map_sidebar_village" class="panel-body map_border_top map_sb_scroll" >
<div class="map_sidebar_padding">
</div>
<div ng-repeat="(townKey,townVal) in myscope.villageSum" ng-show="myscope.currentTownTab == townKey">
<div ng-repeat="(villKey,villVal) in townVal">
<div class="row">
<div class="col-xs-7 col-md-8">
<span ng-if="villVal != null">
<div class="progress ">
<div class="progress-bar " role="progressbar" aria-valuenow="{{villVal*100}}"
aria-valuemin="0" aria-valuemax="100" style="width: {{villVal*100}}%;">
{{villVal | percentage:0}}
</div>
</div>
</span>
<span ng-if="villVal == null">
<span class="emptyvill">
<div class="progress">
<div class="progress-bar " role="progressbar" aria-valuenow="{{100}}"
aria-valuemin="0" aria-valuemax="100" style="width: {{100}}%;">
此里沒有投開票所
</div>
</div>
</span>
</span>
</div>
<span ng-if="villVal != null">
<div class="col-xs-5 col-md-4">
<a href="javascript:void(0);" ng-click="myscope.setCurrentAreaClick(townKey,villKey)"> {{villKey}}</a>
</div>
</span>
<span ng-if="villVal == null">
<span class="emptyvill">
<div class="col-xs-5 col-md-4">
<a href="javascript:void(0);" ng-click="myscope.setCurrentAreaClick(townKey,villKey)"> {{villKey}}</a>
</div>
</span>
</span>
</div>
</div>
</div>
</div>
</div>
<div class="panel panel-default area-info" style="width:100%;padding:0px;margin:0px;border:0px;" ng-show="myscope.showVS != null" >
<div class="map_panel_heading">
<h3>
兵屯詳細概況
</h3>
<span ng-show="myscope.showVS.vsArray.length > 0">
<img class="map_vs_image" src="images/map_panel_vs_1.svg" ng-show=" myscope.getVoteStatImg() == 1"/>
<img class="map_vs_image" src="images/map_panel_vs_2.svg" ng-show=" myscope.getVoteStatImg() == 2"/>
<img class="map_vs_image" src="images/map_panel_vs_3.svg" ng-show=" myscope.getVoteStatImg() == 3"/>
</span>
<span ng-show="myscope.showVS.vsArray.length == 0">
<!--<img class="map_vs_image" src="images/map_panel_vs_3.svg"/>-->
</span>
</div>
<div id="map_sidebar_vslist" class="panel-body map_border_top map_sb_scroll" >
<div class="back-button" style="" ng-show="myscope.showVS != null">
<button type="button" class="btn btn-primary" style="height:30px;padding-top:5px;" ng-click="myscope.back()"><i class="fa fa-chevron-left"></i>
Back
</button>
<strong style="display:inline-block">
{{myscope.showVS.townName}} {{myscope.showVS.villageName}} 投開票所:
</strong>
</div>
<div style="height:15px;"></div>
<ul class="nav nav-stacked" ng-repeat="votestat in myscope.showVS.vsArray" >
<li ng-click='myscope.setCurrentMarkerClick(votestat.id, true, true)' style="cursor:pointer;" ng-class="myscope.isCurrentVsTab(votestat.id)">{{votestat.name}}</li>
</ul>
<div style="height:30px"></div>
<span ng-show="myscope.showVS.vsArray.length == 0">
<p>此里沒有投開票所</p>
</span>
</div>
<div id="map_sidebar_votestat" class="panel-body map_border_top map_sb_scroll" >
<div class="map_sidebar_padding">
</div>
<div ng-if="myscope.showVS.vsArray.length > 0">
<div style="padding:10px 0px;">
<strong>投開票所地址:</strong>{{myscope.vsInfo[myscope.currentVsTab.vsId].address}}<br/>
<b>投開票所資料有誤??<a href="javascript:void(0);" ng-click="myscope.reportDialog()">請回報!</a></b>
</div>
<div style="padding:10px 0px;">
<h4 style="display:inline-block;">志工數:{{myscope.vsInfo[myscope.currentVsTab.vsId].vCount}} /
{{myscope.volCount * myscope.vsInfo[myscope.currentVsTab.vsId].vweight}}
</h4>
<div id="hp_people" style="margin:5px;display:inline-block;" >
<div class="imgWrap"
ng-repeat="name in myscope.vsInfo[myscope.currentVsTab.vsId].vlist.slice(0,2) track by $index">
<div class="imgArrow"></div>
<div class="imgDescription" style="overflow:hidden;">
{{name}}
</div>
<img class="img-circle map_fb_image"
src="images/map_panel_v.svg">
</div>
<div class="imgWrap"
ng-repeat="name in myscope.vsInfo[myscope.currentVsTab.vsId].vlist.slice(2) track by $index"
ng-show="myscope.hpPeopleMore">
<div class="imgArrow"></div>
<div class="imgDescription" style="overflow:hidden;">
{{name}}
</div>
<img class="img-circle map_fb_image"
src="images/map_panel_v.svg">
</div>
<div class="map_fb_more_less"
ng-show="myscope.vsInfo[myscope.currentVsTab.vsId].vlist.length > 2"
ng-click="myscope.hpPeopleClick()">
<span ng-show="!myscope.hpPeopleMore">
more
</span>
<span ng-show="myscope.hpPeopleMore">
less
</span>
</div>
</div>
<div class="progress">
<div class="progress-bar" role="progressbar" aria-valuenow="{{myscope.vsInfo[myscope.currentVsTab.vsId].volunteer * 100}}"
aria-valuemin="0" aria-valuemax="100" style="width: {{myscope.vsInfo[myscope.currentVsTab.vsId].volunteer * 100}}%;">
</div>
</div>
<button type="button" class="map_button" ng-click="myscope.registerDialog('volunteer')">
志工參戰
</button>
</div>
<div style="padding:10px 0px;">
<h4 style="display:inline-block;">物資數:{{myscope.vsInfo[myscope.currentVsTab.vsId].sItemSum}} /
{{myscope.vsInfo[myscope.currentVsTab.vsId].sTotalSum}}
</h4>
<div id="sp_people" style="margin:5px;display:inline-block;" >
<div class="imgWrap"
ng-repeat="name in myscope.vsInfo[myscope.currentVsTab.vsId].slist.slice(0,2) track by $index">
<div class="imgArrow"></div>
<div class="imgDescription" style="overflow:hidden;">
{{name}}
</div>
<img class="img-circle map_fb_image"
src="images/map_panel_v.svg">
</div>
<div class="imgWrap"
ng-repeat="name in myscope.vsInfo[myscope.currentVsTab.vsId].slist.slice(2) track by $index"
ng-show="myscope.spPeopleMore">
<div class="imgArrow"></div>
<div class="imgDescription" style="overflow:hidden;">
{{name}}
</div>
<img class="img-circle map_fb_image"
src="images/map_panel_v.svg">
</div>
<div class="map_fb_more_less"
ng-show="myscope.vsInfo[myscope.currentVsTab.vsId].slist.length > 2"
ng-click="myscope.spPeopleClick()">
<span ng-show="!myscope.spPeopleMore">
more
</span>
<span ng-show="myscope.spPeopleMore">
less
</span>
</div>
</div>
<div class="progress">
<div class="progress-bar" role="progressbar" aria-valuenow="{{myscope.vsInfo[myscope.currentVsTab.vsId].supplement*100}}"
aria-valuemin="0" aria-valuemax="100" style="width: {{myscope.vsInfo[myscope.currentVsTab.vsId].supplement*100}}%;">
</div>
</div>
<div id="supply" style="margin:5px" >
<div class="imgWrap" ng-repeat="(item,count) in myscope.vsInfo[myscope.currentVsTab.vsId].sItemCount">
<div class="imgArrow"></div>
<div class="imgDescription">
<p> {{myscope.supplementItem[item][1]}} </p>
<p>{{myscope.vsInfo[myscope.currentVsTab.vsId].sItemCount[item]}} /
{{myscope.supplementItem[item][0] * myscope.vsInfo[myscope.currentVsTab.vsId].vweight}}
</p>
</div>
<img src="images/supply_{{ count >= myscope.supplementItem[item][0] * myscope.vsInfo[myscope.currentVsTab.vsId].vweight
&& 'r' || 'g' }}_{{item}}.svg" >
</div>
</div>
<button type="button" class="map_button" ng-click="myscope.registerDialog('supplement')">
物資參戰
</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!--
<div class="text-center">
<h3 ng-show="myscope.markerlatlng">投開票所經緯度:{{myscope.markerlatlng}}</h3>
</div>
-->
<script>
var opts = {
lines: 13, // The number of lines to draw
length: 21, // The length of each line
width: 10, // The line thickness
radius: 30, // The radius of the inner circle
corners: 1, // Corner roundness (0..1)
rotate: 0, // The rotation offset
direction: 1, // 1: clockwise, -1: counterclockwise
color: '#ffffff', // #rgb or #rrggbb or array of colors
speed: 1, // Rounds per second
trail: 60, // Afterglow percentage
shadow: true, // Whether to render a shadow
hwaccel: false, // Whether to use hardware acceleration
className: 'spinner', // The CSS class to assign to the spinner
zIndex: 2e9, // The z-index (defaults to 2000000000)
top: '50%', // Top position relative to parent
left: '50%' // Left position relative to parent
};
var target = document.getElementById('mySpinner');
var spinner = new Spinner(opts).spin(target);
$(document).ready(function(){
//console.log('window resize');
var $window = $(window);
// Function to handle changes to style classes based on window width
function checkHeight() {
//console.log('check height',$window);
if ($window.height() <= 800) {
//console.log('small');
$('#map_main').removeClass('map_tall');
$('#map_main').addClass('map_short');
$('#map_sidebar').removeClass('map_tall')
$('#map_sidebar').addClass('map_short');
//console.log('map_main height',$('#map_main').height());
//console.log('map_sidebar height',$('#map_main').height());
//console.log('map_main class',$('#map_main').attr('class'));
};
if ($window.height() > 800) {
//console.log('large');
$('#map_main').removeClass('map_short');
$('#map_main').addClass('map_tall');
$('#map_sidebar').removeClass('map_short');
$('#map_sidebar').addClass('map_tall');
//console.log('map_main height',$('#map_main').height());
//console.log('map_main class',$('#map_main').attr('class'));
}
}
checkHeight();
setTimeout(function(){
checkHeight();
$(window).resize(checkHeight);
},0);
});
</script>
|
2016/0328-0425/0425-9 Range.html | wangyongtan/H5 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<script>
var rangeObj = document.createRange();
function selectRangeConents(){
var div = document.getElementById("div");
rangeObj.selectNode(div);
}
function unselect(){
rangeObj.collapse(false);
}
function showRange(){
alert(rangeObj.toString());
}
</script>
<div id="div" style="background-color:fuchsia;width:300px;height:50px;">做人重要的是开心</div>
<button onclick="selectRangeConents()">选择元素</button>
<button onclick="unselect()">取消元素</button>
<button onclick="showRange()">显示Range内容</button>
</body>
</html>
|
lwp/templates/index.html | romses/LXC-Web-Panel | {% set td = {'running':'success','frozen':'info','stopped':'important'} %}
{% set tr = {'running':'success','frozen':'info','stopped':'error'} %}
{% set disabled = {'running':'success','frozen':'info','stopped':'important'} %}
{% extends "layout.html" %}
{% block title %}Overview{% endblock %}
{% block content %}
<div class="span9">
{{ super() }}
<div class="hero-unit">
<div class="row buttons">
{% if session.su == 'Yes' %}
<span class="pull-right"><a class="btn btn-small btn-danger" data-toggle="modal" data-target="#reboot"> <i class="icon-off icon-white"></i> Reboot</a></span>
{% if containers != [] %}
<span class="pull-right"><a class="btn btn-small btn-inverse" data-toggle="modal" data-target="#cloneCT"> <i class="icon-repeat icon-white"></i> Clone <abbr title="Container">CT</abbr></a></span>
{% if storage_repos %}
<span class="pull-right"><a class="btn btn-small btn-primary" data-toggle="modal" data-target="#backupCT"> <i class="icon-hdd icon-white"></i> Backup <abbr title="Container">CT</abbr></a></span>
{% endif %}
{% endif %}
<span class="pull-right"><a class="btn btn-small btn-success" data-toggle="modal" data-target="#createCT"><i class="icon-plus-sign icon-white"></i> Create <abbr title="Container">CT</abbr></a></span>
{% endif %}
</div>
<div class="row">
<h3 style="margin-left: 10px">{{ dist }} ({{ host }})</h3>
<div class="span4">
<p>CPU usage : <span id="cpu-usage" class="hide"></span></p>
<div class="progress">
<div class="bar" id="cpu-usage-bar"></div>
</div>
<p>Memory usage : <span id="memory-usage" class="hide"></span></p>
<div class="progress">
<div class="bar" id="memory-usage-bar"></div>
<abbr title="Cached memory"><div class="bar bar-success" id="memory-cache-usage-bar"></div></abbr>
</div>
</div>
<div class="span4">
<p>Disk usage : <span id="disk-usage" class="hide"></span></p>
<div class="progress">
<div class="bar" id="disk-usage-bar"></div>
</div>
<p>Uptime : <span id="uptime" class="hide"></span></p>
</div>
</div>
</div>
<table class="table table-bordered">
<thead>
<tr>
<th class="hidden-phone">Status</th>
<th>Name</th>
<th class="hidden-phone">Hostname</th>
<th>IP Address</th>
<th>Mem. usage</th>
<th class="hidden-phone">Auto Start</th>
<th>Actions</th>
</tr>
</thead>
{% for status in containers_all %}
<tbody>
{% for container in status.containers %}
<tr class="{{ tr[status.status] }}">
{% if loop.first %}<td rowspan="{{ status.containers|count }}" class="hidden-phone"><span class="label label-{{ td[status.status] }}">{{ status.status|capitalize }}</span></td>{% endif %}
<td><a href="{{ url_for('main.edit',container=container.name) }}" title="Click to edit {{container.name}}">{{container.name}}</a></td>
<td class="hidden-phone">{{container.settings.utsname}}</td>
<td>{% if container.settings.ipv4 %}{{container.settings.ipv4}}{% else %}-{% endif %}</td>
<td id="{{container.name}}">{{ render_memory_wrapper(container.memusg, container.settings.memlimit) }}</td>
<td class="hidden-phone">
{% if container.settings.start_auto == '1' %}
<i class="icon-ok"></i>
{% if container.settings.start_order %} {{ container.settings.start_order }} {% endif %}
{% else %}
-
{% endif %}
</td>
<td>
<div class="btn-toolbar" style="margin:8px 0;">
<div class="btn-group">
{% set start_action = {'stopped':'start','frozen':'unfreeze'} %}
<a class="btn btn-small{% if status.status == 'running' %} disabled{% endif %}"{% if status.status == 'stopped' or status.status == 'frozen' %} href="{{ url_for('main.action', name=container.name, action=start_action[status.status]) }}"{% endif %}><i class="icon-play"></i> Start</a>
<a class="btn btn-small{% if status.status == 'stopped' %} disabled{% endif %}"{% if status.status == 'running' or status.status == 'frozen' %} href="{{ url_for('main.action', name=container.name, action='stop') }}"{% endif %}><i class="icon-stop"></i> Stop</a>
<a class="btn btn-small{% if status.status == 'frozen' or status.status == 'stopped' %} disabled{% endif %} hidden-phone"{% if status.status == 'running' %} href="{{ url_for('main.action', name=container.name, action='freeze') }}"{% endif %}><i class="icon-pause"></i> Freeze</a>
</div>
{% if session.su == 'Yes' and status.status == 'stopped' %}<a class="pull-right close destroy" data-container-name="{{container.name}}" style="margin-top:4px;"><i class="icon-remove-sign"></i></a>{% endif %}
</div>
</td>
</tr>
{% endfor %}
</tbody>
{% endfor %}
</table>
</div>
{% if session.su == 'Yes' %}
{% include "includes/modal_reboot.html" %}
{% include "includes/modal_create.html" %}
{% if containers != [] %}
{% include "includes/modal_clone.html" %}
{% include "includes/modal_backup.html" %}
{% include "includes/modal_destroy.html" %}
{% endif %}
{% endif %}
{% endblock %}
{% macro memory_color(value) -%}{% if value != 0 %}{% if 0 <= value <= 511 %}success{% elif 512 <= value < 980 %}warning{% else %}important{% endif %}{% endif %}{%- endmacro %}
{% macro render_memory_wrapper(value, limit) -%}
{% if value != 0 %}
<span class="label label-{{ memory_color(value) }}">{{ value }}{% if limit != '' %} / {{ limit }}{% endif %} MB</span>
{% else %}
<span class="label label-success"></span>
{% endif %}
{%- endmacro %}
{% block script %}
<script type="text/javascript">
function refreshMemoryHost(){
$.getJSON('{{ url_for('main.refresh_memory_containers', name='host') }}', function(data) {
$('#memory-usage').text(data.used +' / '+ data.total +' MB').fadeIn();
$('#memory-usage-bar').css({'width':data.percent+'%'});
$('#memory-cache-usage-bar').css({'width':data.percent_cached+'%'});
refreshMemoryContainers()
});
}
function refreshMemoryContainers(){
$.getJSON('{{ url_for('main.refresh_memory_containers', name='containers') }}', function(data) {
data = data.data;
for (i in data) {
var el = $('#'+data[i].name+' span');
if (data[i].settings.memlimit == '') {
el.text(data[i].memusg + ' MB');
} else {
el.text(data[i].memusg + " / " + data[i].settings.memlimit + ' MB');
}
el[0].className = el[0].className.replace(/label\-(success|warning|important)/g,'label-'+memory_color(data[i].memusg));
}
});
$('#home-load').fadeOut();
}
function memory_color(value){
if(value != 0)
if ('0' <= value && value <= '512')
return 'success';
else if ('512' <= value && value < '1024')
return 'warning';
else
return 'important';
}
function refresh(){
$('#home-load').fadeIn();
$.getJSON('{{ url_for('main.refresh_info') }}', function(data) {
$('#uptime').text(data.uptime.day +' day(s) '+ data.uptime.time).fadeIn();
$('#cpu-usage').text(data.cpu +'%').fadeIn();
$('#cpu-usage-bar').css({'width':data.cpu + '%'});
$('#disk-usage').text(data.disk.used +' ('+ data.disk.free +' free)').fadeIn();
$('#disk-usage-bar').css({'width':data.disk.percent});
refreshMemoryHost()
});
}
$(function() {
refresh();
{% if session.su == 'Yes' and containers == [] %}$('#createCT').modal('show'){% endif %}
window.setInterval('refresh()', 15000);
});
{% if session.su == 'Yes' %}$(document).ready(function(){
$(".destroy").on('click',function(e){
$(".destroy-link").attr('href',"{{url_for('main.action', action='destroy') }}" + "&name=" + $(this).data('container-name'));
$('.modal-body #destroy-container-name').text($(this).data('container-name'));
$('#destroy').modal('show');
});
// Create CT
$('#advancedcreate').click(function(e){ e.preventDefault(); $('#advancedcreatediv').slideToggle(); });
// Clone CT
$('#advancedclone').click(function(e){ e.preventDefault(); $('#advancedclonediv').slideToggle(); });
$(".backingstore").on('change',function(){
var _val = $(this).val();
var _lvm = $(this).closest('.advanced-wrapper').find('.lvm');
var _zfs = $(this).closest('.advanced-wrapper').find('.zfs');
var _directory = $(this).closest('.advanced-wrapper').find('.directory');
if( _val == 'lvm'){
_lvm.slideDown();
_directory.slideUp();
_zfs.slideUp();
}
else if ( _val == 'directory' ){
_directory.slideDown();
_lvm.slideUp();
_zfs.slideUp();
}
else if ( _val == 'zfs'){
_zfs.slideDown();
_lvm.slideUp();
_directory.slideUp();
}
else{
_zfs.slideUp();
_directory.slideUp();
_lvm.slideUp();
}
});
$('.modalbutton').on('click', function () {
$('.buttons-modal-footer').slideUp()
$('.loader-modal-footer').slideDown()
})
});{% endif %}
</script>
{% endblock %}
|
ec18131/html/classv8_1_1ScriptOriginOptions.html | v8-dox/v8-dox.github.io | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.9.1"/>
<title>V8 API Reference Guide for node.js v5.10.0 - v5.10.1: v8::ScriptOriginOptions Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<script type="text/javascript">
$(document).ready(function() { init_search(); });
</script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td style="padding-left: 0.5em;">
<div id="projectname">V8 API Reference Guide for node.js v5.10.0 - v5.10.1
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.9.1 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "search",false,'Search');
</script>
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
<li><a href="examples.html"><span>Examples</span></a></li>
<li>
<div id="MSearchBox" class="MSearchBoxInactive">
<span class="left">
<img id="MSearchSelect" src="search/mag_sel.png"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
<input type="text" id="MSearchField" value="Search" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
</span><span class="right">
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
</span>
</div>
</li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class List</span></a></li>
<li><a href="classes.html"><span>Class Index</span></a></li>
<li><a href="inherits.html"><span>Class Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class Members</span></a></li>
</ul>
</div>
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><a class="el" href="namespacev8.html">v8</a></li><li class="navelem"><a class="el" href="classv8_1_1ScriptOriginOptions.html">ScriptOriginOptions</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> |
<a href="classv8_1_1ScriptOriginOptions-members.html">List of all members</a> </div>
<div class="headertitle">
<div class="title">v8::ScriptOriginOptions Class Reference</div> </div>
</div><!--header-->
<div class="contents">
<p><code>#include <<a class="el" href="v8_8h_source.html">v8.h</a>></code></p>
<table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr class="memitem:a350ff2a0c6b3b0449adefdd920d6808e"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a350ff2a0c6b3b0449adefdd920d6808e"></a>
V8_INLINE </td><td class="memItemRight" valign="bottom"><b>ScriptOriginOptions</b> (bool is_embedder_debug_script=false, bool is_shared_cross_origin=false, bool is_opaque=false)</td></tr>
<tr class="separator:a350ff2a0c6b3b0449adefdd920d6808e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5c814c5602db2c9ed5c6bc7f05b1d430"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a5c814c5602db2c9ed5c6bc7f05b1d430"></a>
V8_INLINE </td><td class="memItemRight" valign="bottom"><b>ScriptOriginOptions</b> (int flags)</td></tr>
<tr class="separator:a5c814c5602db2c9ed5c6bc7f05b1d430"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4076a3f22dff99a2337ab86d4024ee46"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a4076a3f22dff99a2337ab86d4024ee46"></a>
bool </td><td class="memItemRight" valign="bottom"><b>IsEmbedderDebugScript</b> () const </td></tr>
<tr class="separator:a4076a3f22dff99a2337ab86d4024ee46"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a28aa1b32efc3b20b16d65c4176831b4c"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a28aa1b32efc3b20b16d65c4176831b4c"></a>
bool </td><td class="memItemRight" valign="bottom"><b>IsSharedCrossOrigin</b> () const </td></tr>
<tr class="separator:a28aa1b32efc3b20b16d65c4176831b4c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae658f2c06876f86205af4f69804193ab"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ae658f2c06876f86205af4f69804193ab"></a>
bool </td><td class="memItemRight" valign="bottom"><b>IsOpaque</b> () const </td></tr>
<tr class="separator:ae658f2c06876f86205af4f69804193ab"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a17e20a214bc8df902419b81c32590efe"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a17e20a214bc8df902419b81c32590efe"></a>
int </td><td class="memItemRight" valign="bottom"><b>Flags</b> () const </td></tr>
<tr class="separator:a17e20a214bc8df902419b81c32590efe"><td class="memSeparator" colspan="2"> </td></tr>
</table>
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
<div class="textblock"><p>The optional attributes of <a class="el" href="classv8_1_1ScriptOrigin.html">ScriptOrigin</a>. </p>
</div><hr/>The documentation for this class was generated from the following file:<ul>
<li>deps/v8/include/<a class="el" href="v8_8h_source.html">v8.h</a></li>
</ul>
</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>
|
src/app/admin/companySpecs/form.component.html | gokhancelik/zagency | <div class="widgets">
<div class="row">
<div class="col-sm-12">
<div class="row">
<div class="col-sm-12">
<ba-card title="{{title}}" baCardClass="with-scroll">
<form [formGroup]="formGroup" (ngSubmit)="save(formGroup)" *ngIf="dynamicFormModel">
<dynamic-form-bootstrap-control *ngFor="let controlModel of dynamicFormModel" [controlGroup]="formGroup" [model]="controlModel"
[hasErrorMessaging]="controlModel.hasErrorMessages"></dynamic-form-bootstrap-control>
<button class="btn btn-default" *ngIf="formGroup.dirty" [disabled]="!formGroup.valid || submitted">Save Changes</button>
</form>
</ba-card>
</div>
</div>
</div>
</div>
</div>
|
src/Viteloge/CoreBundle/Resources/descriptions/68135.html | donaldinou/frontend | <div class="commune_descr limited">
<p>
Hésingue est
une ville localisée dans le département de Haut-Rhin en Alsace. Elle comptait 2 336 habitants en 2008.</p>
<p>À Hésingue le salaire médian par mois par personne se situe à environ 2 096 € net. C'est au niveau de la moyenne du pays.</p>
<p>Le parc de logements, à Hésingue, était réparti en 2011 en 341 appartements et 816 maisons soit
un marché plutôt équilibré.</p>
<p>À Hésingue, la valorisation moyenne à l'achat d'un appartement s'évalue à 2 988 € du m² en vente. La valeur moyenne d'une maison à l'achat se situe à 3 046 € du m². À la location la valorisation moyenne se situe à 14,62 € du m² par mois.</p>
<p>À coté de Hésingue sont situées les villes de
<a href="{{VLROOT}}/immobilier/blotzheim_68042/">Blotzheim</a> à 3 km, 3 656 habitants,
<a href="{{VLROOT}}/immobilier/michelbach-le-bas_68207/">Michelbach-le-Bas</a> localisée à 4 km, 719 habitants,
<a href="{{VLROOT}}/immobilier/buschwiller_68061/">Buschwiller</a> localisée à 2 km, 942 habitants,
<a href="{{VLROOT}}/immobilier/saint-louis_68297/">Saint-Louis</a> localisée à 3 km, 19 875 habitants,
<a href="{{VLROOT}}/immobilier/wentzwiller_68362/">Wentzwiller</a> à 4 km, 678 habitants,
<a href="{{VLROOT}}/immobilier/hegenheim_68126/">Hégenheim</a> située à 1 km, 2 926 habitants,
entre autres. De plus, Hésingue est située à seulement 23 km de <a href="{{VLROOT}}/immobilier/mulhouse_68224/">Mulhouse</a>.</p>
<p>La ville compte quelques équipements, elle propose entre autres un terrain de sport et un équipement de roller/skate.</p>
</div>
|
index.html | ryanburns23/font-image | <!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>font-image</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="font-image.html"></iron-component-page>
</body>
</html>
|
docs/mapshaper.html | JackDougherty/datavizforall | <!DOCTYPE html>
<html lang="en" xml:lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Edit and Join with Mapshaper | Hands-On Data Visualization</title>
<meta name="description" content="Tell your story and show it with data, using free and easy-to-learn tools on the web. This introductory book teaches you how to design interactive charts and customized maps for your website, beginning with easy drag-and-drop tools, such as Google Sheets, Datawrapper, and Tableau Public. You will also gradually learn how to edit open-source code templates built with Chart.js, Highcharts, and Leaflet on GitHub. Follow along with the step-by-step tutorials, real-world examples, and online resources. This book is ideal for students, non-profit organizations, small business owners, local governments, journalists, academics, or anyone who wants to tell their story and show the data. No coding experience is required." />
<meta name="generator" content="bookdown 0.22 and GitBook 2.6.7" />
<meta property="og:title" content="Edit and Join with Mapshaper | Hands-On Data Visualization" />
<meta property="og:type" content="book" />
<meta property="og:url" content="http://handsondataviz.github.io/" />
<meta property="og:image" content="http://handsondataviz.github.io//images/cover-400wide.jpg" />
<meta property="og:description" content="Tell your story and show it with data, using free and easy-to-learn tools on the web. This introductory book teaches you how to design interactive charts and customized maps for your website, beginning with easy drag-and-drop tools, such as Google Sheets, Datawrapper, and Tableau Public. You will also gradually learn how to edit open-source code templates built with Chart.js, Highcharts, and Leaflet on GitHub. Follow along with the step-by-step tutorials, real-world examples, and online resources. This book is ideal for students, non-profit organizations, small business owners, local governments, journalists, academics, or anyone who wants to tell their story and show the data. No coding experience is required." />
<meta name="github-repo" content="handsondataviz/book" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="Edit and Join with Mapshaper | Hands-On Data Visualization" />
<meta name="twitter:site" content="@handsondataviz" />
<meta name="twitter:description" content="Tell your story and show it with data, using free and easy-to-learn tools on the web. This introductory book teaches you how to design interactive charts and customized maps for your website, beginning with easy drag-and-drop tools, such as Google Sheets, Datawrapper, and Tableau Public. You will also gradually learn how to edit open-source code templates built with Chart.js, Highcharts, and Leaflet on GitHub. Follow along with the step-by-step tutorials, real-world examples, and online resources. This book is ideal for students, non-profit organizations, small business owners, local governments, journalists, academics, or anyone who wants to tell their story and show the data. No coding experience is required." />
<meta name="twitter:image" content="http://handsondataviz.github.io//images/cover-400wide.jpg" />
<meta name="author" content="Jack Dougherty" />
<meta name="author" content="Ilya Ilyankou" />
<meta name="date" content="2021-06-23" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<link rel="shortcut icon" href="images/favicon.png" type="image/x-icon" />
<link rel="prev" href="geojsonio.html"/>
<link rel="next" href="convert-kmz.html"/>
<script src="libs/header-attrs-2.9/header-attrs.js"></script>
<script src="libs/jquery-2.2.3/jquery.min.js"></script>
<link href="libs/gitbook-2.6.7/css/style.css" rel="stylesheet" />
<link href="libs/gitbook-2.6.7/css/plugin-table.css" rel="stylesheet" />
<link href="libs/gitbook-2.6.7/css/plugin-bookdown.css" rel="stylesheet" />
<link href="libs/gitbook-2.6.7/css/plugin-highlight.css" rel="stylesheet" />
<link href="libs/gitbook-2.6.7/css/plugin-search.css" rel="stylesheet" />
<link href="libs/gitbook-2.6.7/css/plugin-fontsettings.css" rel="stylesheet" />
<link href="libs/gitbook-2.6.7/css/plugin-clipboard.css" rel="stylesheet" />
<link href="libs/anchor-sections-1.0.1/anchor-sections.css" rel="stylesheet" />
<script src="libs/anchor-sections-1.0.1/anchor-sections.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-5488840-29"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-5488840-29');
</script>
<style type="text/css">
pre > code.sourceCode { white-space: pre; position: relative; }
pre > code.sourceCode > span { display: inline-block; line-height: 1.25; }
pre > code.sourceCode > span:empty { height: 1.2em; }
.sourceCode { overflow: visible; }
code.sourceCode > span { color: inherit; text-decoration: inherit; }
pre.sourceCode { margin: 0; }
@media screen {
div.sourceCode { overflow: auto; }
}
@media print {
pre > code.sourceCode { white-space: pre-wrap; }
pre > code.sourceCode > span { text-indent: -5em; padding-left: 5em; }
}
pre.numberSource code
{ counter-reset: source-line 0; }
pre.numberSource code > span
{ position: relative; left: -4em; counter-increment: source-line; }
pre.numberSource code > span > a:first-child::before
{ content: counter(source-line);
position: relative; left: -1em; text-align: right; vertical-align: baseline;
border: none; display: inline-block;
-webkit-touch-callout: none; -webkit-user-select: none;
-khtml-user-select: none; -moz-user-select: none;
-ms-user-select: none; user-select: none;
padding: 0 4px; width: 4em;
color: #aaaaaa;
}
pre.numberSource { margin-left: 3em; border-left: 1px solid #aaaaaa; padding-left: 4px; }
div.sourceCode
{ }
@media screen {
pre > code.sourceCode > span > a:first-child::before { text-decoration: underline; }
}
code span.al { color: #ff0000; font-weight: bold; } /* Alert */
code span.an { color: #60a0b0; font-weight: bold; font-style: italic; } /* Annotation */
code span.at { color: #7d9029; } /* Attribute */
code span.bn { color: #40a070; } /* BaseN */
code span.bu { } /* BuiltIn */
code span.cf { color: #007020; font-weight: bold; } /* ControlFlow */
code span.ch { color: #4070a0; } /* Char */
code span.cn { color: #880000; } /* Constant */
code span.co { color: #60a0b0; font-style: italic; } /* Comment */
code span.cv { color: #60a0b0; font-weight: bold; font-style: italic; } /* CommentVar */
code span.do { color: #ba2121; font-style: italic; } /* Documentation */
code span.dt { color: #902000; } /* DataType */
code span.dv { color: #40a070; } /* DecVal */
code span.er { color: #ff0000; font-weight: bold; } /* Error */
code span.ex { } /* Extension */
code span.fl { color: #40a070; } /* Float */
code span.fu { color: #06287e; } /* Function */
code span.im { } /* Import */
code span.in { color: #60a0b0; font-weight: bold; font-style: italic; } /* Information */
code span.kw { color: #007020; font-weight: bold; } /* Keyword */
code span.op { color: #666666; } /* Operator */
code span.ot { color: #007020; } /* Other */
code span.pp { color: #bc7a00; } /* Preprocessor */
code span.sc { color: #4070a0; } /* SpecialChar */
code span.ss { color: #bb6688; } /* SpecialString */
code span.st { color: #4070a0; } /* String */
code span.va { color: #19177c; } /* Variable */
code span.vs { color: #4070a0; } /* VerbatimString */
code span.wa { color: #60a0b0; font-weight: bold; font-style: italic; } /* Warning */
</style>
<style type="text/css">
/* Used with Pandoc 2.11+ new --citeproc when CSL is used */
div.csl-bib-body { }
div.csl-entry {
clear: both;
}
.hanging div.csl-entry {
margin-left:2em;
text-indent:-2em;
}
div.csl-left-margin {
min-width:2em;
float:left;
}
div.csl-right-inline {
margin-left:2em;
padding-left:1em;
}
div.csl-indent {
margin-left: 2em;
}
</style>
<link rel="stylesheet" href="css/style.css" type="text/css" />
</head>
<body>
<div class="book without-animation with-summary font-size-2 font-family-1" data-basepath=".">
<div class="book-summary">
<nav role="navigation">
<ul class="summary">
<li><a href="./"><strong>Hands-On Data Visualization</strong><br>by Jack Dougherty & Ilya Ilyankou</a></li>
<li class="divider"></li>
<li class="chapter" data-level="" data-path="index.html"><a href="index.html"><i class="fa fa-check"></i>Preface</a>
<ul>
<li class="chapter" data-level="" data-path="audience-overview.html"><a href="audience-overview.html"><i class="fa fa-check"></i>Audience and Overview</a></li>
<li class="chapter" data-level="" data-path="authors.html"><a href="authors.html"><i class="fa fa-check"></i>Authors & Acknowledgements</a></li>
<li class="chapter" data-level="" data-path="open-access.html"><a href="open-access.html"><i class="fa fa-check"></i>About Open-Access Web Edition</a></li>
</ul></li>
<li class="chapter" data-level="" data-path="introduction.html"><a href="introduction.html"><i class="fa fa-check"></i>Introduction: Why Data Visualization?</a>
<ul>
<li class="chapter" data-level="" data-path="believe.html"><a href="believe.html"><i class="fa fa-check"></i>What Can You Believe?</a></li>
<li class="chapter" data-level="" data-path="persuasive.html"><a href="persuasive.html"><i class="fa fa-check"></i>Some Pictures Are More Persuasive</a></li>
<li class="chapter" data-level="" data-path="shades.html"><a href="shades.html"><i class="fa fa-check"></i>Different Shades of the Truth</a></li>
<li class="chapter" data-level="" data-path="organization.html"><a href="organization.html"><i class="fa fa-check"></i>Organization of the Book</a></li>
</ul></li>
<li class="chapter" data-level="1" data-path="choose.html"><a href="choose.html"><i class="fa fa-check"></i><b>1</b> Choose Tools to Tell Your Story</a>
<ul>
<li class="chapter" data-level="" data-path="sketch.html"><a href="sketch.html"><i class="fa fa-check"></i>Start Sketching Your Data Story</a></li>
<li class="chapter" data-level="" data-path="tool-factors.html"><a href="tool-factors.html"><i class="fa fa-check"></i>Ten Factors When Considering Tools</a></li>
<li class="chapter" data-level="" data-path="recommended-tools.html"><a href="recommended-tools.html"><i class="fa fa-check"></i>Our Recommended Tools</a></li>
<li class="chapter" data-level="" data-path="password-manager.html"><a href="password-manager.html"><i class="fa fa-check"></i>Use a Password Manager</a></li>
</ul></li>
<li class="chapter" data-level="2" data-path="spreadsheet.html"><a href="spreadsheet.html"><i class="fa fa-check"></i><b>2</b> Strengthen Your Spreadsheet Skills</a>
<ul>
<li class="chapter" data-level="" data-path="spreadsheet-tools.html"><a href="spreadsheet-tools.html"><i class="fa fa-check"></i>Select your Spreadsheet Tools</a></li>
<li class="chapter" data-level="" data-path="csv.html"><a href="csv.html"><i class="fa fa-check"></i>Download to CSV or ODS Format</a></li>
<li class="chapter" data-level="" data-path="copy.html"><a href="copy.html"><i class="fa fa-check"></i>Make a Copy of a Google Sheet</a></li>
<li class="chapter" data-level="" data-path="share.html"><a href="share.html"><i class="fa fa-check"></i>Share Your Google Sheets</a></li>
<li class="chapter" data-level="" data-path="upload.html"><a href="upload.html"><i class="fa fa-check"></i>Upload and Convert to Google Sheets</a></li>
<li class="chapter" data-level="" data-path="geocode.html"><a href="geocode.html"><i class="fa fa-check"></i>Geocode Addresses in Google Sheets</a></li>
<li class="chapter" data-level="" data-path="forms.html"><a href="forms.html"><i class="fa fa-check"></i>Collect Data with Google Forms</a></li>
<li class="chapter" data-level="" data-path="sort.html"><a href="sort.html"><i class="fa fa-check"></i>Sort and Filter Data</a></li>
<li class="chapter" data-level="" data-path="calculate.html"><a href="calculate.html"><i class="fa fa-check"></i>Calculate with Formulas</a></li>
<li class="chapter" data-level="" data-path="pivot.html"><a href="pivot.html"><i class="fa fa-check"></i>Summarize Data with Pivot Tables</a></li>
<li class="chapter" data-level="" data-path="vlookup.html"><a href="vlookup.html"><i class="fa fa-check"></i>Match Columns with VLOOKUP</a></li>
<li class="chapter" data-level="" data-path="database.html"><a href="database.html"><i class="fa fa-check"></i>Spreadsheet vs. Relational Database</a></li>
</ul></li>
<li class="chapter" data-level="3" data-path="find.html"><a href="find.html"><i class="fa fa-check"></i><b>3</b> Find and Question Your Data</a>
<ul>
<li class="chapter" data-level="" data-path="guiding.html"><a href="guiding.html"><i class="fa fa-check"></i>Guiding Questions for Your Search</a></li>
<li class="chapter" data-level="" data-path="public.html"><a href="public.html"><i class="fa fa-check"></i>Public and Private Data</a></li>
<li class="chapter" data-level="" data-path="mask-aggregate.html"><a href="mask-aggregate.html"><i class="fa fa-check"></i>Mask or Aggregate Sensitive Data</a></li>
<li class="chapter" data-level="" data-path="opendata.html"><a href="opendata.html"><i class="fa fa-check"></i>Open Data Repositories</a></li>
<li class="chapter" data-level="" data-path="source.html"><a href="source.html"><i class="fa fa-check"></i>Source Your Data</a></li>
<li class="chapter" data-level="" data-path="bad-data.html"><a href="bad-data.html"><i class="fa fa-check"></i>Recognize Bad Data</a></li>
<li class="chapter" data-level="" data-path="question.html"><a href="question.html"><i class="fa fa-check"></i>Question Your Data</a></li>
</ul></li>
<li class="chapter" data-level="4" data-path="clean.html"><a href="clean.html"><i class="fa fa-check"></i><b>4</b> Clean Up Messy Data</a>
<ul>
<li class="chapter" data-level="" data-path="smart-cleanup.html"><a href="smart-cleanup.html"><i class="fa fa-check"></i>Smart Cleanup with Google Sheets</a></li>
<li class="chapter" data-level="" data-path="find-and-replace.html"><a href="find-and-replace.html"><i class="fa fa-check"></i>Find and Replace with Blank</a></li>
<li class="chapter" data-level="" data-path="transpose.html"><a href="transpose.html"><i class="fa fa-check"></i>Transpose Rows and Columns</a></li>
<li class="chapter" data-level="" data-path="split-data.html"><a href="split-data.html"><i class="fa fa-check"></i>Split Data into Separate Columns</a></li>
<li class="chapter" data-level="" data-path="combine-data.html"><a href="combine-data.html"><i class="fa fa-check"></i>Combine Data into One Column</a></li>
<li class="chapter" data-level="" data-path="tabula.html"><a href="tabula.html"><i class="fa fa-check"></i>Extract Tables from PDFs with Tabula</a></li>
<li class="chapter" data-level="" data-path="open-refine.html"><a href="open-refine.html"><i class="fa fa-check"></i>Clean Data with OpenRefine</a></li>
</ul></li>
<li class="chapter" data-level="5" data-path="comparisons.html"><a href="comparisons.html"><i class="fa fa-check"></i><b>5</b> Make Meaningful Comparisons</a>
<ul>
<li class="chapter" data-level="" data-path="describe-comparisons.html"><a href="describe-comparisons.html"><i class="fa fa-check"></i>Precisely Describe Comparisons</a></li>
<li class="chapter" data-level="" data-path="normalize.html"><a href="normalize.html"><i class="fa fa-check"></i>Normalize Your Data</a></li>
<li class="chapter" data-level="" data-path="biased-comparisons.html"><a href="biased-comparisons.html"><i class="fa fa-check"></i>Beware of Biased Comparisons</a></li>
</ul></li>
<li class="chapter" data-level="6" data-path="chart.html"><a href="chart.html"><i class="fa fa-check"></i><b>6</b> Chart Your Data</a>
<ul>
<li class="chapter" data-level="" data-path="chart-design.html"><a href="chart-design.html"><i class="fa fa-check"></i>Chart Design Principles</a></li>
<li class="chapter" data-level="" data-path="chart-google.html"><a href="chart-google.html"><i class="fa fa-check"></i>Google Sheets Charts</a></li>
<li class="chapter" data-level="" data-path="bar-column-google.html"><a href="bar-column-google.html"><i class="fa fa-check"></i>- Bar and Column Charts</a></li>
<li class="chapter" data-level="" data-path="histogram-google.html"><a href="histogram-google.html"><i class="fa fa-check"></i>- Histograms</a></li>
<li class="chapter" data-level="" data-path="pie-line-area-google.html"><a href="pie-line-area-google.html"><i class="fa fa-check"></i>- Pie, Line, and Area Charts</a></li>
<li class="chapter" data-level="" data-path="chart-datawrapper.html"><a href="chart-datawrapper.html"><i class="fa fa-check"></i>Datawrapper Charts</a></li>
<li class="chapter" data-level="" data-path="annotated-datawrapper.html"><a href="annotated-datawrapper.html"><i class="fa fa-check"></i>- Annotated Charts</a></li>
<li class="chapter" data-level="" data-path="range-datawrapper.html"><a href="range-datawrapper.html"><i class="fa fa-check"></i>- Range Charts</a></li>
<li class="chapter" data-level="" data-path="scatter-bubble-datawrapper.html"><a href="scatter-bubble-datawrapper.html"><i class="fa fa-check"></i>- Scatter and Bubble Charts</a></li>
<li class="chapter" data-level="" data-path="chart-tableau.html"><a href="chart-tableau.html"><i class="fa fa-check"></i>Tableau Public Charts</a></li>
<li class="chapter" data-level="" data-path="scatter-tableau.html"><a href="scatter-tableau.html"><i class="fa fa-check"></i>- Scatter Chart</a></li>
<li class="chapter" data-level="" data-path="filtered-line-tableau.html"><a href="filtered-line-tableau.html"><i class="fa fa-check"></i>- Filtered Line Chart</a></li>
</ul></li>
<li class="chapter" data-level="7" data-path="map.html"><a href="map.html"><i class="fa fa-check"></i><b>7</b> Map Your Data</a>
<ul>
<li class="chapter" data-level="" data-path="map-design.html"><a href="map-design.html"><i class="fa fa-check"></i>Map Design Principles</a></li>
<li class="chapter" data-level="" data-path="design-choropleth.html"><a href="design-choropleth.html"><i class="fa fa-check"></i>Design Choropleth Colors & Intervals</a></li>
<li class="chapter" data-level="" data-path="normalize-choropleth.html"><a href="normalize-choropleth.html"><i class="fa fa-check"></i>Normalize Choropleth Map Data</a></li>
<li class="chapter" data-level="" data-path="mymaps.html"><a href="mymaps.html"><i class="fa fa-check"></i>Point Map with Google My Maps</a></li>
<li class="chapter" data-level="" data-path="symbolmap-datawrapper.html"><a href="symbolmap-datawrapper.html"><i class="fa fa-check"></i>Symbol Point Map with Datawrapper</a></li>
<li class="chapter" data-level="" data-path="choropleth-datawrapper.html"><a href="choropleth-datawrapper.html"><i class="fa fa-check"></i>Choropleth Map with Datawrapper</a></li>
<li class="chapter" data-level="" data-path="map-tableau.html"><a href="map-tableau.html"><i class="fa fa-check"></i>Choropleth Map with Tableau Public</a></li>
<li class="chapter" data-level="" data-path="map-socrata.html"><a href="map-socrata.html"><i class="fa fa-check"></i>Current Map with Socrata Open Data</a></li>
</ul></li>
<li class="chapter" data-level="8" data-path="table.html"><a href="table.html"><i class="fa fa-check"></i><b>8</b> Table Your Data</a>
<ul>
<li class="chapter" data-level="" data-path="table-design.html"><a href="table-design.html"><i class="fa fa-check"></i>Table Design Principles</a></li>
<li class="chapter" data-level="" data-path="table-datawrapper.html"><a href="table-datawrapper.html"><i class="fa fa-check"></i>Datawrapper Table with Sparklines</a></li>
<li class="chapter" data-level="" data-path="other-table-tools.html"><a href="other-table-tools.html"><i class="fa fa-check"></i>Other Table-Making Tools</a></li>
</ul></li>
<li class="chapter" data-level="9" data-path="embed.html"><a href="embed.html"><i class="fa fa-check"></i><b>9</b> Embed On the Web</a>
<ul>
<li class="chapter" data-level="" data-path="static.html"><a href="static.html"><i class="fa fa-check"></i>Static Image vs Interactive iframe</a></li>
<li class="chapter" data-level="" data-path="embed-code.html"><a href="embed-code.html"><i class="fa fa-check"></i>Get the Embed Code or iframe Tag</a></li>
<li class="chapter" data-level="" data-path="paste-code.html"><a href="paste-code.html"><i class="fa fa-check"></i>Paste Code or iframe to Website</a></li>
</ul></li>
<li class="chapter" data-level="10" data-path="github.html"><a href="github.html"><i class="fa fa-check"></i><b>10</b> Edit and Host Code with GitHub</a>
<ul>
<li class="chapter" data-level="" data-path="copy-leaflet.html"><a href="copy-leaflet.html"><i class="fa fa-check"></i>Copy, Edit, and Host a Simple Leaflet Map Template</a></li>
<li class="chapter" data-level="" data-path="gh-pages-link-to-iframe.html"><a href="gh-pages-link-to-iframe.html"><i class="fa fa-check"></i>Convert GitHub Pages Link to iframe</a></li>
<li class="chapter" data-level="" data-path="create-repo.html"><a href="create-repo.html"><i class="fa fa-check"></i>Create a New Repo and Upload Files on GitHub</a></li>
<li class="chapter" data-level="" data-path="github-desktop-atom.html"><a href="github-desktop-atom.html"><i class="fa fa-check"></i>GitHub Desktop and Atom Editor to Code Efficiently</a></li>
</ul></li>
<li class="chapter" data-level="11" data-path="chartcode.html"><a href="chartcode.html"><i class="fa fa-check"></i><b>11</b> Chart.js and Highcharts Templates</a>
<ul>
<li class="chapter" data-level="" data-path="chartjs-bar-column.html"><a href="chartjs-bar-column.html"><i class="fa fa-check"></i>Bar or Column Chart with Chart.js</a></li>
<li class="chapter" data-level="" data-path="chartjs-error-bars.html"><a href="chartjs-error-bars.html"><i class="fa fa-check"></i>Error Bars with Chart.js</a></li>
<li class="chapter" data-level="" data-path="chartjs-line.html"><a href="chartjs-line.html"><i class="fa fa-check"></i>Line Chart with Chart.js</a></li>
<li class="chapter" data-level="" data-path="highcharts-annotated-line.html"><a href="highcharts-annotated-line.html"><i class="fa fa-check"></i>Annotated Line Chart with Highcharts</a></li>
<li class="chapter" data-level="" data-path="chartjs-scatter.html"><a href="chartjs-scatter.html"><i class="fa fa-check"></i>Scatter Chart with Chart.js</a></li>
<li class="chapter" data-level="" data-path="chartjs-bubble.html"><a href="chartjs-bubble.html"><i class="fa fa-check"></i>Bubble Chart with Chart.js</a></li>
</ul></li>
<li class="chapter" data-level="12" data-path="leaflet.html"><a href="leaflet.html"><i class="fa fa-check"></i><b>12</b> Leaflet Map Templates</a>
<ul>
<li class="chapter" data-level="" data-path="leaflet-maps-with-google-sheets.html"><a href="leaflet-maps-with-google-sheets.html"><i class="fa fa-check"></i>Leaflet Maps with Google Sheets</a></li>
<li class="chapter" data-level="" data-path="leaflet-storymaps-with-google-sheets.html"><a href="leaflet-storymaps-with-google-sheets.html"><i class="fa fa-check"></i>Leaflet Storymaps with Google Sheets</a></li>
<li class="chapter" data-level="" data-path="google-sheets-api-key.html"><a href="google-sheets-api-key.html"><i class="fa fa-check"></i>Get Your Google Sheets API Key</a></li>
<li class="chapter" data-level="" data-path="leaflet-maps-with-csv.html"><a href="leaflet-maps-with-csv.html"><i class="fa fa-check"></i>Leaflet Maps with CSV Data</a></li>
<li class="chapter" data-level="" data-path="leaflet-heatmap.html"><a href="leaflet-heatmap.html"><i class="fa fa-check"></i>Leaflet Heatmap Points with CSV Data</a></li>
<li class="chapter" data-level="" data-path="leaflet-searchable-map.html"><a href="leaflet-searchable-map.html"><i class="fa fa-check"></i>Leaflet Searchable Point Map</a></li>
<li class="chapter" data-level="" data-path="leaflet-maps-open-data-apis.html"><a href="leaflet-maps-open-data-apis.html"><i class="fa fa-check"></i>Leaflet Maps with Open Data APIs</a></li>
</ul></li>
<li class="chapter" data-level="13" data-path="transform.html"><a href="transform.html"><i class="fa fa-check"></i><b>13</b> Transform Your Map Data</a>
<ul>
<li class="chapter" data-level="" data-path="geojson.html"><a href="geojson.html"><i class="fa fa-check"></i>Geospatial Data and GeoJSON</a></li>
<li class="chapter" data-level="" data-path="find-geojson.html"><a href="find-geojson.html"><i class="fa fa-check"></i>Find GeoJSON Boundary Files</a></li>
<li class="chapter" data-level="" data-path="geojsonio.html"><a href="geojsonio.html"><i class="fa fa-check"></i>Draw and Edit with GeoJson.io</a></li>
<li class="chapter" data-level="" data-path="mapshaper.html"><a href="mapshaper.html"><i class="fa fa-check"></i>Edit and Join with Mapshaper</a></li>
<li class="chapter" data-level="" data-path="convert-kmz.html"><a href="convert-kmz.html"><i class="fa fa-check"></i>Convert Compressed KMZ to KML</a></li>
<li class="chapter" data-level="" data-path="mapwarper.html"><a href="mapwarper.html"><i class="fa fa-check"></i>Georeference with Map Warper</a></li>
<li class="chapter" data-level="" data-path="bulk-geocode.html"><a href="bulk-geocode.html"><i class="fa fa-check"></i>Bulk Geocode with US Census</a></li>
<li class="chapter" data-level="" data-path="pivot-point-to-polygon.html"><a href="pivot-point-to-polygon.html"><i class="fa fa-check"></i>Pivot Points into Polygon Data</a></li>
</ul></li>
<li class="chapter" data-level="14" data-path="detect.html"><a href="detect.html"><i class="fa fa-check"></i><b>14</b> Detect Lies and Reduce Bias</a>
<ul>
<li class="chapter" data-level="" data-path="how-to-lie-with-charts.html"><a href="how-to-lie-with-charts.html"><i class="fa fa-check"></i>How to Lie with Charts</a></li>
<li class="chapter" data-level="" data-path="how-to-lie-with-maps.html"><a href="how-to-lie-with-maps.html"><i class="fa fa-check"></i>How to Lie with Maps</a></li>
<li class="chapter" data-level="" data-path="data-bias.html"><a href="data-bias.html"><i class="fa fa-check"></i>Recognize and Reduce Data Bias</a></li>
<li class="chapter" data-level="" data-path="spatial-bias.html"><a href="spatial-bias.html"><i class="fa fa-check"></i>Recognize and Reduce Spatial Bias</a></li>
</ul></li>
<li class="chapter" data-level="15" data-path="story.html"><a href="story.html"><i class="fa fa-check"></i><b>15</b> Tell and Show Your Data Story</a>
<ul>
<li class="chapter" data-level="" data-path="storyboard.html"><a href="storyboard.html"><i class="fa fa-check"></i>Build a Narrative on a Storyboard</a></li>
<li class="chapter" data-level="" data-path="draw-attention.html"><a href="draw-attention.html"><i class="fa fa-check"></i>Draw Attention to Meaning</a></li>
<li class="chapter" data-level="" data-path="sources-uncertainty.html"><a href="sources-uncertainty.html"><i class="fa fa-check"></i>Acknowledge Sources & Uncertainty</a></li>
<li class="chapter" data-level="" data-path="story-format.html"><a href="story-format.html"><i class="fa fa-check"></i>Decide On Your Data Story Format</a></li>
</ul></li>
<li class="appendix"><span><b>Appendix</b></span></li>
<li class="chapter" data-level="A" data-path="fix.html"><a href="fix.html"><i class="fa fa-check"></i><b>A</b> Fix Common Problems</a>
<ul>
<li class="chapter" data-level="A.1" data-path="fix-tool.html"><a href="fix-tool.html"><i class="fa fa-check"></i><b>A.1</b> Tool or platform problems</a></li>
<li class="chapter" data-level="A.2" data-path="fix-browser.html"><a href="fix-browser.html"><i class="fa fa-check"></i><b>A.2</b> Try a different browser</a></li>
<li class="chapter" data-level="A.3" data-path="fix-developer-tools.html"><a href="fix-developer-tools.html"><i class="fa fa-check"></i><b>A.3</b> Diagnose with developer tools</a></li>
<li class="chapter" data-level="A.4" data-path="fix-computer.html"><a href="fix-computer.html"><i class="fa fa-check"></i><b>A.4</b> Mac or Chromebook problems</a></li>
<li class="chapter" data-level="A.5" data-path="fix-data.html"><a href="fix-data.html"><i class="fa fa-check"></i><b>A.5</b> Watch out for bad data</a></li>
<li class="chapter" data-level="A.6" data-path="fix-iframe.html"><a href="fix-iframe.html"><i class="fa fa-check"></i><b>A.6</b> Common iframe errors</a></li>
<li class="chapter" data-level="A.7" data-path="fix-code.html"><a href="fix-code.html"><i class="fa fa-check"></i><b>A.7</b> Fix your code on GitHub</a></li>
</ul></li>
<li class="chapter" data-level="B" data-path="bookdown.html"><a href="bookdown.html"><i class="fa fa-check"></i><b>B</b> Publishing with Bookdown</a>
<ul>
<li class="chapter" data-level="" data-path="install.html"><a href="install.html"><i class="fa fa-check"></i>Install and Set Up Bookdown</a></li>
<li class="chapter" data-level="" data-path="structure.html"><a href="structure.html"><i class="fa fa-check"></i>File Structure and Headers</a></li>
<li><a href="style-guide.html#style-guide">Style Guide for <em>Hands-On Data Visualization</em></a></li>
<li class="chapter" data-level="" data-path="images.html"><a href="images.html"><i class="fa fa-check"></i>Images and R Code-chunk Formatting</a></li>
<li class="chapter" data-level="" data-path="tables.html"><a href="tables.html"><i class="fa fa-check"></i>Tables in Markdown Format</a></li>
<li class="chapter" data-level="" data-path="zotero.html"><a href="zotero.html"><i class="fa fa-check"></i>Zotero and Better BibTeX for Notes and Biblio</a></li>
<li class="chapter" data-level="" data-path="alternative.html"><a href="alternative.html"><i class="fa fa-check"></i>Alternative Book Publishing Tools</a></li>
</ul></li>
<li class="chapter" data-level="" data-path="references.html"><a href="references.html"><i class="fa fa-check"></i>References</a></li>
<li class="divider"></li>
<li style="padding: 10px 15px; font-weight: bold;">Open-access web edition</li>
<li><a rel="license" href="http://creativecommons.org/licenses/by-nc-nd/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-nc-nd/4.0/88x31.png" /></a></li>
<li><a href="https://bookdown.org" target="_blank">Built with Bookdown + RStudio</a></li>
</ul>
</nav>
</div>
<div class="book-body">
<div class="body-inner">
<div class="book-header" role="navigation">
<h1>
<i class="fa fa-circle-o-notch fa-spin"></i><a href="./">Hands-On Data Visualization</a>
</h1>
</div>
<div class="page-wrapper" tabindex="-1" role="main">
<div class="page-inner">
<section class="normal" id="section-">
<div id="mapshaper" class="section level2 unnumbered">
<h2>Edit and Join with Mapshaper</h2>
<p>Like <a href="geojsonio.html">GeoJson.io</a>, <a href="https://mapshaper.org">Mapshaper</a>
is a free, open-source editor that can convert geospatial files, edit attribute
data, filter and dissolve features, simplify boundaries to make files smaller,
and many more. Mapshaper’s edit and join commands are much more powerful than the GeoJson.io tool. Unlike GeoJson.io, Mapshaper doesn’t have drawing tools, so you won’t be able to create geospatial files from scratch.</p>
<p>Mapshaper is developed and maintained by <a href="https://github.com/mbloch/mapshaper">Matthew Bloch on GitHub</a>.
This easy-to-learn web tool has replaced <em>many</em> of our map preparation
tasks that previously required expensive and hard-to-learn ArcGIS software, or its free
but still-challenging-to-learn cousin, QGIS. Even advanced GIS users may discover that Mapshaper
can be a quick alternative for some common but time-consuming tasks.</p>
<div id="import-convert-and-export-map-boundary-files" class="section level4 unnumbered">
<h4>Import, convert, and export map boundary files</h4>
<p>You can use Mapshaper to convert between geospatial file formats. Unlike GeoJson.io,
Mapshaper also allows you to upload Esri Shapefiles, so you can easily convert them into the web-friendly GeoJSON format.
In the following steps, we will convert a geospatial file by importing it to Mapshaper,
and then exporting it as a different file type.</p>
<ol style="list-style-type: decimal">
<li><p>Navigate to <a href="https://mapshaper.org">Mapshaper.org</a>. The start page is two large drag-and-drop zones
which you can use to import your file. The smaller area at the bottom, <em>Quick import</em>, uses default
import settings and is a good way to begin.</p></li>
<li><p>Drag and drop your geospatial file to the <em>Quick import</em> area. For this exercise, you can download our <a href="data/us-states-shapefile.zip">US states shapefiles in .zip format</a>, which is a compressed archive that contains four shapefiles.</p></li>
</ol>
<p>Note: If you want to import a folder of shapefiles, you need to either select all files inside that folder
and drop them all together to the import area, or upload all of them inside a compressed <code>.zip</code> archive.</p>
<ol start="3" style="list-style-type: decimal">
<li><p>Each imported file becomes a layer, and is accessible from the dropdown menu in the top-middle
of the browser window. There, you can see how many features each layer has, toggle their visibility,
or delete them.</p></li>
<li><p>To export, go to <em>Export</em> in the upper-right corner, and select a desired file format.
The choice of export formats is shown in Figure <a href="mapshaper.html#fig:mapshaper-export">13.8</a>.
Currently, available formats are Shapefile, GeoJSON,
TopoJSON (similar to GeoJSON, but with topographical data), JSON records, CSV,
or SVG (Scalable Vector Graphics, for web and print). If you export more than one layer at a time,
Mapshaper will archive them first, and you will download an <code>output.zip</code> that contains
all exported layers.</p></li>
</ol>
<div class="figure"><span id="fig:mapshaper-export"></span>
<img src="images/13-transform/mapshaper-export.png" alt="You can use Mapshaper to quickly convert between geospatial file formats." />
<p class="caption">
Figure 13.8: You can use Mapshaper to quickly convert between geospatial file formats.
</p>
</div>
<p>Tip: Mapshaper doesn’t work with KML or KMZ files, but you can use <a href="geojson.html">GeoJson.io</a> to first convert them into GeoJSON format, then upload to Mapshaper.</p>
</div>
<div id="edit-data-for-specific-polygons" class="section level4 unnumbered">
<h4>Edit data for specific polygons</h4>
<p>You can edit attribute data of individual polygons (and also points and lines) in Mapshaper, as shown in Figure <a href="mapshaper.html#fig:mapshaper-edit">13.9</a>.</p>
<ol style="list-style-type: decimal">
<li><p>Import the file whose polygon attributes you want to edit.</p></li>
<li><p>Under the cursor tool, select <em>edit attributes</em>.</p></li>
<li><p>Click on the polygon you want to edit. A pop-up will appear in the upper-left corner
listing all attributes and values of the polygon.</p></li>
<li><p>Click on any value (underlined, in blue) and edit it.</p></li>
<li><p>When you are done, export your geospatial file by clicking <em>Export</em> and
choosing the desired file format.</p></li>
</ol>
<div class="figure"><span id="fig:mapshaper-edit"></span>
<img src="images/13-transform/mapshaper-edit-annotated.png" alt="Use edit attributes tool (under Cursor tool) to edit attributes of polygons, lines, and points." />
<p class="caption">
Figure 13.9: Use <em>edit attributes</em> tool (under Cursor tool) to edit attributes of polygons, lines, and points.
</p>
</div>
</div>
<div id="rename-data-fields" class="section level4 unnumbered">
<h4>Rename data fields</h4>
<p>Mapshaper’s most powerful tools are available through the <em>Console</em> button at the top, which opens a window where you can type commands for common map editing tasks.</p>
<p>Sometimes map features (such as points, polylines, and polygons) contain <em>attributes</em> (data fields or columns) with long or confusing names. In the Mapshaper <em>Console</em>, you can easily change field names by entering the rename command in this generic format:</p>
<p><code>-rename-fields NewName=OldName</code></p>
<p>First, select the <em>inspect features</em> arrow symbol in Mapshaper and float your cursor over map features to view their field names, then click open the <em>Console</em> windows, as shown in Figure <a href="mapshaper.html#fig:mapshaper-rename">13.10</a>. In this example, to change the longer field name (<code>STATE_TITLE</code>) to a shorter one (<code>name</code>), enter this command into the console:</p>
<p><code>-rename-fields name=STATE_TITLE</code></p>
<div class="figure"><span id="fig:mapshaper-rename"></span>
<img src="images/13-transform/mapshaper-rename-annotated.png" alt="Select the inspect features arrow to view field names, and rename them using the -rename-fields command in the console." />
<p class="caption">
Figure 13.10: Select the <em>inspect features</em> arrow to view field names, and rename them using the <code>-rename-fields</code> command in the console.
</p>
</div>
</div>
<div id="remove-unwanted-data-fields" class="section level4 unnumbered">
<h4>Remove unwanted data fields</h4>
<p>Sometimes map features contain unwanted attributes (data fields or columns) that you want to remove, which you can easily do with the <code>-filter-fields</code> command in the Mapshaper console.</p>
<p>For example, this command removes all fields except <em>town</em>:</p>
<p><code>-filter-fields town</code></p>
<p>If you want to leave more than one field, separate them by a comma, but without spaces, like this:</p>
<p><code>-filter-fields town,state</code></p>
<p>Warning: If you leave a space after a comma, you will get a <em>Command expects a single value</em> error.</p>
</div>
<div id="simplify-map-boundaries-to-reduce-file-size" class="section level4 unnumbered">
<h4>Simplify map boundaries to reduce file size</h4>
<p>When you find GeoJSON maps on the web, they may contain detailed boundaries (especially around coastlines) that increase the file size, which may slow down the performance of your online web maps. Since you do not always need highly-detailed boundaries for data visualization projects with zoomed-out geographies, consider using Mapshaper to simplify your map boundaries. The result will be less precise, but faster to load in user’s browsers.</p>
<p>To understand how to simplify map boundaries, consider two maps of the contiguous US states (also known as <em>the lower 48</em>,
the term co-author Ilya learned in 2018 while traveling in Alaska), as shown in Figure <a href="mapshaper.html#fig:mapshaper-simplify-demo">13.11</a>.
The map in Figure <a href="mapshaper.html#fig:mapshaper-simplify-demo">13.11</a>a is more detailed and is about 230 kilobytes, but the map in Figure <a href="mapshaper.html#fig:mapshaper-simplify-demo">13.11</a>b
is only 37 kilobytes, or six times smaller! However, be careful not to simplify boundaries so much that you remove important features.</p>
<div class="figure"><span id="fig:mapshaper-simplify-demo"></span>
<img src="images/13-transform/mapshaper-simplify-demo-annotated.png" alt="Consider simplifying geometries with Mapshaper to make your web maps faster." />
<p class="caption">
Figure 13.11: Consider simplifying geometries with Mapshaper to make your web maps faster.
</p>
</div>
<p>To simplify map boundaries in Mapshaper, follow the steps below.</p>
<ol style="list-style-type: decimal">
<li><p>Import your geodata file to Mapshaper. You can use the <a href="data/lower-48.geojson">sample contiguous US states in GeoJSON format</a>.</p></li>
<li><p>Click the <em>Simplify</em> button in the upper-right corner. The Simplification menu will appear,
where you can choose one of three methods. We recommend checking <em>prevent shape removal</em>, and leaving
the default <em>Visvalingam / weighted area</em>. Click <em>Apply</em>.</p></li>
<li><p>You will see a slider with <code>100%</code> appear on top (Figure <a href="mapshaper.html#fig:mapshaper-simplify">13.12</a>), replacing the layer selection dropdown.
Move the slider to the right and see the map simplify its shape as you go. Stop when you think
the map looks appropriate (when the shapes are still recognizable).</p></li>
<li><p>Mapshaper may suggest to repair line intersections in the upper-left corner. Click <em>Repair</em>.</p></li>
<li><p>You can now export your file using the <em>Export</em> feature.</p></li>
</ol>
<div class="figure"><span id="fig:mapshaper-simplify"></span>
<img src="images/13-transform/mapshaper-simplify.png" alt="Use Simplify & Repair tools in Mapshaper." />
<p class="caption">
Figure 13.12: Use Simplify & Repair tools in Mapshaper.
</p>
</div>
<p>Tip: When you upload a geographic file to Mapshaper, you may need to change its projection to align with your visualization tools or related geodata. Click to open the <em>Console</em> and type <code>-proj wgs84</code> (or <code>-proj EPSG:4326</code>) to change the projection to World Geodetic System 84 (wgs84), the format used by the Global Positioning System (GPS) to display geocoordinates around the world.</p>
</div>
<div id="dissolve-internal-polygons-to-create-an-outline-map" class="section level4 unnumbered">
<h4>Dissolve internal polygons to create an outline map</h4>
<p>A common map editing task is to create an outline map by removing the internal boundaries. For example, you can dissolve
state boundaries of the US map in the previous exercise to get the outline of the country, as shown in
Figure <a href="mapshaper.html#fig:mapshaper-dissolve">13.13</a>.</p>
<div class="figure"><span id="fig:mapshaper-dissolve"></span>
<img src="images/13-transform/mapshaper-dissolve.png" alt="Mapshaper lets you dissolve boundaries to create an outline shape." />
<p class="caption">
Figure 13.13: Mapshaper lets you dissolve boundaries to create an outline shape.
</p>
</div>
<p>Click on <em>Console</em>, which opens a window to type in commands. Enter the <em>dissolve</em> command exactly as shown below, then press the <em>Return</em> or <em>Enter</em> key.</p>
<p><code>-dissolve</code></p>
<p>You will see that internal boundaries became lighter color, and that’s Mapshaper’s way of saying they no longer exist.
You can now export your outline shape.</p>
</div>
<div id="clip-a-map-to-match-an-outline-layer" class="section level4 unnumbered">
<h4>Clip a map to match an outline layer</h4>
<p>Another common map editing task is to “clip” out a smaller portion of a larger map to obtain only the area you need. For example, the State of Connecticut consists of 8 counties, which in turn are divided into a total of 169 towns.
Imagine you are given a <a href="data/ct-towns.geojson">boundary file of all 169 towns</a>, and <a href="data/hartfordcounty-outline.geojson">the outline of Hartford county</a>.
You need to “clip” the original towns map to only include those towns that fall within a specific portion of Connecticut: Hartford County.</p>
<p>Mapshaper allows you to do just that using one simple <code>-clip</code> command.</p>
<ol style="list-style-type: decimal">
<li><p>Import two boundary files into Mapshaper. One is the larger one that is being clipped (if you use sample files, <em>ct-towns</em>),
and one is the desired final shape (<em>hartfordcounty-outline</em>). The latter is what ArcGIS calls the “clip feature.”</p></li>
<li><p>Make sure your active layer is set to the map you are clipping (<em>ct-towns</em>).</p></li>
<li><p>In the <em>Console</em>, type <code>-clip</code> followed by the name of your clip layer, like this:</p></li>
</ol>
<p><code>-clip hartfordcounty-outline</code></p>
<ol start="4" style="list-style-type: decimal">
<li>You should see your active layer got clipped. Sometimes you end up with tiny “slivers” of clipped areas that remain alongside the borders.
If that is the case, use a related command to remove them, like this:</li>
</ol>
<p><code>-clip hartfordcounty-outline -filter-slivers</code></p>
<ol start="5" style="list-style-type: decimal">
<li>Your Mapshaper state should look like the one pictured in Figure <a href="mapshaper.html#fig:mapshaper-clip">13.14</a>. You can now save the file on your computer using the <em>Export</em> button.</li>
</ol>
<div class="figure"><span id="fig:mapshaper-clip"></span>
<img src="images/13-transform/mapshaper-clip-annotated.png" alt="When clipping, make sure your active layer is the one being clipped (with many features), not the clipping feature itself." />
<p class="caption">
Figure 13.14: When clipping, make sure your active layer is the one being clipped (with many features), not the clipping feature itself.
</p>
</div>
</div>
<div id="join-spreadsheet-data-with-polygon-map" class="section level4 unnumbered">
<h4>Join spreadsheet data with polygon map</h4>
<p>Combining spreadsheet data with geographical boundaries is a common task in data visualization. In this exercise, you will download this <a href="data/ct-towns.geojson">Connecticut town boundaries map in GeoJson format</a>,
and also download this <a href="data/ct-towns-popdensity.csv">Connecticut town population data in CSV format</a>, and join the two of them in order to build a choropleth map.</p>
<p>Mapshaper provides a powerful <code>-join</code> command to connect these files files. Remember that you need some common keys
in both datasets (such as <em>town name</em>, or <em>state</em>, or <em>country</em>) in order to join the two files. Without a common field, Mapshaper has no way of knowing which
numbers belong to which polygons.</p>
<ol style="list-style-type: decimal">
<li><p>Import both the GeoJSON file and the CSV file you downloaded above into Mapshaper using its Quick import box.</p></li>
<li><p>Make sure both files appear in the drop-down list of layers.
Your CSV data will appear to resemble a table. Use the <em>Cursor > inspect features</em> tool
to make sure the data is imported correctly. If you use the sample Connecticut data, note that the <em>ct-towns</em> layer
has <em>name</em> attribute with the name of the town, and <em>ct-towns-popdensity</em> has town names in the <em>town</em> column.</p></li>
<li><p>Make your geospatial layer (<em>ct-towns</em>) the active layer.</p></li>
<li><p>Open the <em>Console</em> and enter the <code>-join</code> command, like this:</p></li>
</ol>
<p><code>-join ct-towns-popdensity keys=name,town</code></p>
<p>In this command, <code>ct-towns-popdensity</code> is the CSV layer you are merging with, and <code>keys</code> are the attributes that contain values to join by.
For our sample data, these would be town names which are stored in <code>name</code> attribute of the map file, and <code>town</code> column
of the CSV file.</p>
<ol start="5" style="list-style-type: decimal">
<li><p>You will see a message in the console notifying you if join was performed successfully, or if Mapshaper encountered any errors.</p></li>
<li><p>Use the <em>Cursor > inspect features</em> tool to make sure you see CSV columns as fields of your polygons, as shown in Figure <a href="mapshaper.html#fig:mapshaper-join">13.15</a>.</p></li>
<li><p>You can now save the file to your computer by clicking the <em>Export</em> button.</p></li>
</ol>
<div class="figure"><span id="fig:mapshaper-join"></span>
<img src="images/13-transform/mapshaper-join-annotated.png" alt="In Mapshaper, join spatial and CSV files using common keys, such as town names." />
<p class="caption">
Figure 13.15: In Mapshaper, join spatial and CSV files using common keys, such as town names.
</p>
</div>
<p>Tip: To avoid confusion, consider using the <code>-rename-fields</code> command on your CSV data that contains key values, in order to match the key attribute name of your map.
In our example, first you would <code>-rename-fields name=town</code> to your CSV file. Renaming this CSV field to <code>name</code> avoids confusion in the second step, because your join command would end with <code>keys=name,name</code>.</p>
</div>
<div id="count-points-in-polygons-with-mapshaper" class="section level4 unnumbered">
<h4>Count points in polygons with Mapshaper</h4>
<p>Mapshaper lets you count points in polygons, and record that number in polygon attributes using <code>-join</code> command.</p>
<ol style="list-style-type: decimal">
<li><p>Download two sample GeoJSON files to your computer: the points that you want to aggregate, such as <a href="data/hospitals-points.geojson">hospital points in the US</a>, and polygon boundaries, such as <a href="data/us-states.geojson">US state boundaries</a>. Import both into Mapshaper.</p></li>
<li><p>Make sure you choose “polygons” (not points) for the active layer by selecting it from the dropdown menu.</p></li>
<li><p>In the <em>Console</em>, do a <code>-join</code> command using a <code>count()</code> function, like this:</p></li>
</ol>
<p><code>-join hospitals-points calc='hospitals = count()' fields=</code></p>
<p>This command tells Mapshaper to count points inside the <em>hospitals-points</em> layer and record them as the <em>hospitals</em> attribute of the polygons.
The <code>fields=</code> part tells Mapshaper to not copy any fields from the points, because in our case we are performing many-to-one matching, meaning many hospitals per state.</p>
<ol start="4" style="list-style-type: decimal">
<li><p>Use the <em>Cursor > inspect features</em> tool to make sure polygons obtained a new field with the recorded count of points,
as shown in Figure <a href="mapshaper.html#fig:mapshaper-count-points">13.16</a>.</p></li>
<li><p>Save the new file using the <em>Export</em> button and chose the desired output format. In the section below,
we will talk about what happens to objects that don’t join.</p></li>
</ol>
<div class="figure"><span id="fig:mapshaper-count-points"></span>
<img src="images/13-transform/mapshaper-count-points.png" alt="Mapshaper’s -join command can count points in polygons." />
<p class="caption">
Figure 13.16: Mapshaper’s <em>-join</em> command can count points in polygons.
</p>
</div>
</div>
<div id="more-about-joins" class="section level4 unnumbered">
<h4>More about joins</h4>
<p>In the section above on “Count points in polygons,” you did not need to specify <em>keys</em> to join locations between two geographical layers: points and polygons. But if one of the files you wish to join is a CSV dataset, you need <em>keys</em>.</p>
<p>If you don’t have a CSV dataset that matches the columns in your boundary map data, you can easily create one.
Upload the boundary map to Mapshaper, and export in CSV format. Open the downloaded CSV file in any spreadsheet tool.
To match data columns in the CSV spreadsheet, use the <a href="vlookup.html">VLOOKUP</a> function.</p>
<p>In real life, you will rarely have perfect files with one-to-one matches,
so you might want to have more information about which features didn’t get matched so
that you can fix your data.
Mapshaper helps you keep track of data that is not properly joined or matched. For example, if the polygon map contains 169 features
(one for each town in Connecticut), but the CSV table contains only 168 rows of data, Mapshaper will join all of those with matching keys,
and then display this message:</p>
<pre><code>[join] Joined data from 168 source records to 168 target records
[join] 1/169 target records received no data
[join] 1/169 source records could not be joined</code></pre>
<p>To get more details on which values were not joined, add <code>unjoined unmatched -info</code> flags to your join command, like this:</p>
<p><code>-join ct-towns-popdensity keys=name,town unjoined unmatched -info</code></p>
<p>The <code>unjoined</code> flag saves a copy of each unjoined record from the source table into another layer named <em>unjoined</em>. The <code>unmatched</code> flag saves a copy of each unmatched record from the target table to a new layer named <em>unmatched</em>. Finally, the <code>-info</code> flag outputs some additional information about the joining procedure to the console.</p>
</div>
<div id="merge-selected-polygons-with-join-and-dissolve-commands" class="section level4 unnumbered">
<h4>Merge selected polygons with join and dissolve commands</h4>
<p>In Mapshaper, you can merge selected polygons into larger clusters using <code>-join</code> and <code>-dissolve</code> commands. Imagine that you are employed by the CT Department of Public Health, and your task is to divide 169 towns into 20 <a href="https://portal.ct.gov/DPH/Local-Health-Admin/LHA/Local-Health-Administration---Site-Map">public health districts</a> and produce a new geospatial file.</p>
<p>You should begin by creating a <em>crosswalk</em> of towns and their health districts, which means some way of matching two sets of data, such as zip codes and towns where they are located. In our case, the crosswalk can be as simple as a two-column CSV list
of a town and its district, each on a new line. Because your boss didn’t give you a list of towns in a spreadsheet format,
but instead a GeoJSON file with town boundaries, let’s extract a list of towns from it.</p>
<ol style="list-style-type: decimal">
<li><p>Import <a href="data/ct-towns.geojson">ct-towns.geojson</a> to Mapshaper using Quick import box.</p></li>
<li><p>Use the <em>Cursor > inspect features</em> tool to see that each polygon has a <em>name</em> attribute with the name of the town.</p></li>
<li><p>Save attribute data as a CSV file using <em>Export</em> button. Open the file in any spreadsheet tool. You will see that your data is a one-column
file with a <em>name</em> column that lists 169 towns.</p></li>
<li><p>In your spreadsheet, create a second column titled <em>merged</em> and copy-paste values from the first <em>name</em> column. At this point your spreadsheet contains two columns with the same values.</p></li>
<li><p>Pick a few towns, such as <em>West Hartford</em> and <em>Bloomfield</em>, and assign “Bloomfield-West Hartford”
to their <em>merged</em> column, as shown in Figure <a href="mapshaper.html#fig:mapshaper-merge-csv">13.17</a>. You can stop here and move to the next step, or keep assigning district names to a few other neighboring towns.</p></li>
</ol>
<div class="figure"><span id="fig:mapshaper-merge-csv"></span>
<img src="images/13-transform/mapshaper-merge-csv.png" alt="Create a two-column crosswalk of town names and their merged health districts." width="350" />
<p class="caption">
Figure 13.17: Create a two-column crosswalk of town names and their merged health districts.
</p>
</div>
<ol start="6" style="list-style-type: decimal">
<li><p>Save this new spreadsheet file as <em>ct-towns-merged.csv</em>, and drag-and-drop it to Mapshaper on top of your <em>ct-towns</em> layer. Click <em>Import</em>.</p></li>
<li><p>In Mapshaper, this new CSV layer, named <em>ct-towns-merged</em>, will appear as a series of table cells. From the dropdown menu,
select <em>ct-towns</em> to get back to your map.</p></li>
<li><p>Now you are ready to merge certain towns into districts according to your uploaded CSV file. Open the <em>Console</em>, and type:</p></li>
</ol>
<p><code>-join ct-towns-merged keys=name,name</code></p>
<p>to join the CSV layer with the boundaries layer that you see on the screen.</p>
<p>Then type:</p>
<p><code>-dissolve merged</code></p>
<p>to dissolve polygons of towns according to the <em>merged</em> column of the CSV file.</p>
<p>In our example, only Bloomfield and West Hartford are dissolved into a combined
“Bloomfield-West Hartford” regional health district, with the shared boundary line between those towns becoming grayed out,
and all of the other polygons remain the same. Figure <a href="mapshaper.html#fig:mapshaper-merge">13.18</a> shows the final result.</p>
<div class="figure"><span id="fig:mapshaper-merge"></span>
<img src="images/13-transform/mapshaper-merge.png" alt="Merge polygons based on a predefined crosswalk." />
<p class="caption">
Figure 13.18: Merge polygons based on a predefined crosswalk.
</p>
</div>
<p>You can inspect attribute data of polygons using <em>Cursor > inspect features</em> tool, and save the resulting file
using the <em>Export</em> button.</p>
<p>Overall, Mapshaper is a powerful geodata editing tool with many more commands that are worth exploring. Some of these include changing projections, filtering features using JavaScript expressions, assigning colors to polygons based on values, and many more. Explore the <a href="https://github.com/mbloch/mapshaper/wiki/Command-Reference">MapShaper Wiki on GitHub</a> to learn more commands and see more examples.</p>
</div>
</div>
<footer style="margin-top: 60px; font-size: 0.8em; padding: 10px; background-color: rgba(0,0,0,0.08); display: table; width: 98%">
<a href="https://www.amazon.com/Hands-Data-Visualization-Storytelling-Spreadsheets/dp/1492086002/" style="width: 80px; margin-left: auto; margin-right: auto;" class="db dtc-ns">
<img src="images/0-preface/cover-400wide.jpg" alt="O'Reilly Book Cover" style="width: 100px;" />
</a>
<div style="padding: 0 15px;" class="db dtc-ns">
<p>
Buy the print book at
<a href="https://www.amazon.com/Hands-Data-Visualization-Storytelling-Spreadsheets/dp/1492086002/">Amazon</a> -
<a href="https://www.barnesandnoble.com/w/hands-on-data-visualization-jack-dougherty/1137725933">Barnes & Noble</a> -
<a href="https://bookshop.org/books/hands-on-data-visualization-interactive-storytelling-from-spreadsheets-to-code/9781492086000">Bookshop</a> -
<a href="https://www.powells.com/book/hands-on-data-visualization-9781492086000">Powell's</a> - or your local bookstore.<br>
Or begin a 30-day free trial to all books and digital content on the <a href="https://learning.oreilly.com/get-learning/?code=HODV21">O'Reilly online learning platform</a>.<br>
Share your feedback about the book by tagging <a href="https://twitter.com/handsondataviz" target="_blank">@handsondataviz on Twitter</a> or
<a href="https://handsondataviz.org/authors.html">contact the authors</a>.
</p>
<p style="color: rgba(0,0,0,0.4)">
© 2021 Jack Dougherty & Ilya Ilyankou / Picturedigits Ltd.
</p>
</div>
</footer>
<style>
footer a:hover img {
transform: rotate(1deg);
}
.db {
display: block;
}
@media screen and (min-width: 30em) {
.dtc-ns {
display: table-cell;
vertical-align: middle;
}
}
</style>
</section>
</div>
</div>
</div>
<a href="geojsonio.html" class="navigation navigation-prev " aria-label="Previous page"><i class="fa fa-angle-left"></i></a>
<a href="convert-kmz.html" class="navigation navigation-next " aria-label="Next page"><i class="fa fa-angle-right"></i></a>
</div>
</div>
<script src="libs/gitbook-2.6.7/js/app.min.js"></script>
<script src="libs/gitbook-2.6.7/js/lunr.js"></script>
<script src="libs/gitbook-2.6.7/js/clipboard.min.js"></script>
<script src="libs/gitbook-2.6.7/js/plugin-search.js"></script>
<script src="libs/gitbook-2.6.7/js/plugin-sharing.js"></script>
<script src="libs/gitbook-2.6.7/js/plugin-fontsettings.js"></script>
<script src="libs/gitbook-2.6.7/js/plugin-bookdown.js"></script>
<script src="libs/gitbook-2.6.7/js/jquery.highlight.js"></script>
<script src="libs/gitbook-2.6.7/js/plugin-clipboard.js"></script>
<script>
gitbook.require(["gitbook"], function(gitbook) {
gitbook.start({
"sharing": {
"github": true,
"facebook": false,
"twitter": true,
"linkedin": false,
"weibo": false,
"instapaper": false,
"vk": false,
"whatsapp": false,
"all": false
},
"fontsettings": {
"theme": "white",
"family": "sans",
"size": 2
},
"edit": {
"link": null,
"text": null
},
"history": {
"link": null,
"text": null
},
"view": {
"link": "https://github.com/handsondataviz/book/blob/main/13-transform.Rmd",
"text": null
},
"download": ["HandsOnDataViz.pdf"],
"toc": {
"collapse": "section",
"scroll_highlight": true
},
"search": true
});
});
</script>
</body>
</html>
|
src/components/Header/Header.css | bigwaterconsulting/to_dash_live | /**
* React Starter Kit (https://www.reactstarterkit.com/)
*
* Copyright © 2014-present Kriasoft, LLC. All rights reserved.
*
* This source code is licensed under the MIT license found in the
* LICENSE.txt file in the root directory of this source tree.
*/
@import '../variables.css';
:root {
--brand-color: #61dafb;
}
.root {
background: #14425d;
color: #fff;
}
.container {
margin: 0 auto;
padding: 20px 0;
max-width: var(--max-content-width);
}
.brand {
color: color(var(--brand-color) lightness(+10%));
text-decoration: none;
font-size: 1.75em; /* ~28px */
}
.brandTxt {
margin-left: 10px;
color: rgba(255, 255, 255, 0.5);
font-size: 18px;
}
.nav {
float: right;
margin-top: 6px;
}
.banner {
text-align: center;
}
.bannerTitle {
margin: 0;
padding: 10px;
font-weight: normal;
font-size: 4em;
line-height: 1em;
color: #fff;
}
.bannerDesc {
padding: 0;
color: rgba(255, 255, 255, 0.5);
font-size: 1.25em;
margin: 0;
}
.link {
text-decoration: none;
}
|
deps/boost_1_77_0/libs/log/doc/html/boost/log/attribute.html | davehorton/drachtio-server | <html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Class attribute</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.Log v2">
<link rel="up" href="../../attributes.html#header.boost.log.attributes.attribute_hpp" title="Header <boost/log/attributes/attribute.hpp>">
<link rel="prev" href="../../attributes.html" title="Attributes">
<link rel="next" href="attribute/impl.html" title="Struct impl">
</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></tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="../../attributes.html"><img src="../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../attributes.html#header.boost.log.attributes.attribute_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="attribute/impl.html"><img src="../../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
<div class="refentry">
<a name="boost.log.attribute"></a><div class="titlepage"></div>
<div class="refnamediv">
<h2><span class="refentrytitle">Class attribute</span></h2>
<p>boost::log::attribute — A base class for an attribute value factory. </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="../../attributes.html#header.boost.log.attributes.attribute_hpp" title="Header <boost/log/attributes/attribute.hpp>">boost/log/attributes/attribute.hpp</a>>
</span>
<span class="keyword">class</span> <a class="link" href="attribute.html" title="Class attribute">attribute</a> <span class="special">{</span>
<span class="keyword">public</span><span class="special">:</span>
<span class="comment">// member classes/structs/unions</span>
<span class="comment">// A base class for an attribute value factory.</span>
<span class="keyword">struct</span> <a class="link" href="attribute/impl.html" title="Struct impl">impl</a> <span class="special">:</span> <span class="keyword">public</span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">intrusive_ref_counter</span><span class="special"><</span> <span class="identifier">impl</span> <span class="special">></span> <span class="special">{</span>
<span class="comment">// <a class="link" href="attribute/impl.html#boost.log.attribute.implconstruct-copy-destruct">construct/copy/destruct</a></span>
<a class="link" href="attribute/impl.html#idm45961923678640-bb"><span class="special">~</span><span class="identifier">impl</span></a><span class="special">(</span><span class="special">)</span><span class="special">;</span>
<span class="comment">// <a class="link" href="attribute/impl.html#idm45961923476592-bb">public member functions</a></span>
<span class="keyword">virtual</span> <a class="link" href="attribute_value.html" title="Class attribute_value">attribute_value</a> <a class="link" href="attribute/impl.html#idm45961923476032-bb"><span class="identifier">get_value</span></a><span class="special">(</span><span class="special">)</span> <span class="special">=</span> <span class="number">0</span><span class="special">;</span>
<span class="comment">// <a class="link" href="attribute/impl.html#idm45961923678064-bb">public static functions</a></span>
<span class="keyword">static</span> <span class="keyword">void</span> <span class="special">*</span> <a class="link" href="attribute/impl.html#idm45961923677504-bb"><span class="keyword">operator</span> <span class="keyword">new</span></a><span class="special">(</span><span class="identifier">std</span><span class="special">::</span><span class="identifier">size_t</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">static</span> <span class="keyword">void</span> <a class="link" href="attribute/impl.html#idm45961923675696-bb"><span class="keyword">operator</span> <span class="keyword">delete</span></a><span class="special">(</span><span class="keyword">void</span> <span class="special">*</span><span class="special">,</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">size_t</span><span class="special">)</span> <span class="keyword">noexcept</span><span class="special">;</span>
<span class="special">}</span><span class="special">;</span>
<span class="comment">// <a class="link" href="attribute.html#boost.log.attributeconstruct-copy-destruct">construct/copy/destruct</a></span>
<a class="link" href="attribute.html#idm45961923466576-bb"><span class="identifier">attribute</span></a><span class="special">(</span><a class="link" href="attribute.html" title="Class attribute">attribute</a> <span class="keyword">const</span> <span class="special">&</span><span class="special">)</span> <span class="keyword">noexcept</span><span class="special">;</span>
<a class="link" href="attribute.html#idm45961923737552-bb"><span class="identifier">attribute</span></a><span class="special">(</span><a class="link" href="attribute.html" title="Class attribute">attribute</a> <span class="special">&&</span><span class="special">)</span> <span class="keyword">noexcept</span><span class="special">;</span>
<span class="keyword">explicit</span> <a class="link" href="attribute.html#idm45961923735600-bb"><span class="identifier">attribute</span></a><span class="special">(</span><span class="identifier">intrusive_ptr</span><span class="special"><</span> <a class="link" href="attribute/impl.html" title="Struct impl">impl</a> <span class="special">></span><span class="special">)</span> <span class="keyword">noexcept</span><span class="special">;</span>
<a class="link" href="attribute.html" title="Class attribute">attribute</a> <span class="special">&</span> <a class="link" href="attribute.html#idm45961923732080-bb"><span class="keyword">operator</span><span class="special">=</span></a><span class="special">(</span><a class="link" href="attribute.html" title="Class attribute">attribute</a> <span class="keyword">const</span> <span class="special">&</span><span class="special">)</span> <span class="keyword">noexcept</span><span class="special">;</span>
<a class="link" href="attribute.html" title="Class attribute">attribute</a> <span class="special">&</span> <a class="link" href="attribute.html#idm45961923729552-bb"><span class="keyword">operator</span><span class="special">=</span></a><span class="special">(</span><a class="link" href="attribute.html" title="Class attribute">attribute</a> <span class="special">&&</span><span class="special">)</span> <span class="keyword">noexcept</span><span class="special">;</span>
<span class="comment">// <a class="link" href="attribute.html#idm45961923672768-bb">public member functions</a></span>
<span class="keyword">explicit</span> <a class="link" href="attribute.html#idm45961923672208-bb"><span class="keyword">operator</span> <span class="keyword">bool</span></a><span class="special">(</span><span class="special">)</span> <span class="keyword">const</span> <span class="keyword">noexcept</span><span class="special">;</span>
<span class="keyword">bool</span> <a class="link" href="attribute.html#idm45961923473056-bb"><span class="keyword">operator</span><span class="special">!</span></a><span class="special">(</span><span class="special">)</span> <span class="keyword">const</span> <span class="keyword">noexcept</span><span class="special">;</span>
<a class="link" href="attribute_value.html" title="Class attribute_value">attribute_value</a> <a class="link" href="attribute.html#idm45961923471552-bb"><span class="identifier">get_value</span></a><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="attribute.html#idm45961923469216-bb"><span class="identifier">swap</span></a><span class="special">(</span><a class="link" href="attribute.html" title="Class attribute">attribute</a> <span class="special">&</span><span class="special">)</span> <span class="keyword">noexcept</span><span class="special">;</span>
<span class="comment">// <a class="link" href="attribute.html#idm45961923727024-bb">protected member functions</a></span>
<a class="link" href="attribute/impl.html" title="Struct impl">impl</a> <span class="special">*</span> <a class="link" href="attribute.html#idm45961923726448-bb"><span class="identifier">get_impl</span></a><span class="special">(</span><span class="special">)</span> <span class="keyword">const</span> <span class="keyword">noexcept</span><span class="special">;</span>
<span class="keyword">void</span> <a class="link" href="attribute.html#idm45961923724032-bb"><span class="identifier">set_impl</span></a><span class="special">(</span><span class="identifier">intrusive_ptr</span><span class="special"><</span> <a class="link" href="attribute/impl.html" title="Struct impl">impl</a> <span class="special">></span><span class="special">)</span> <span class="keyword">noexcept</span><span class="special">;</span>
<span class="comment">// <a class="link" href="attribute.html#idm45961922238000-bb">friend functions</a></span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> T<span class="special">></span> <span class="keyword">friend</span> <span class="identifier">T</span> <a class="link" href="attribute.html#idm45961922237440-bb"><span class="identifier">attribute_cast</span></a><span class="special">(</span><a class="link" href="attribute.html" title="Class attribute">attribute</a> <span class="keyword">const</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="idm46846479781056"></a><h2>Description</h2>
<p>Every attribute is represented with a factory that is basically an attribute value generator. The sole purpose of an attribute is to return an actual value when requested. A simplest attribute can always return the same value that it stores internally, but more complex ones can perform a considerable amount of work to return a value, and the returned values may differ each time requested.</p>
<p>A word about thread safety. An attribute should be prepared to be requested a value from multiple threads concurrently. </p>
<div class="refsect2">
<a name="idm46846479779584"></a><h3>
<a name="boost.log.attributeconstruct-copy-destruct"></a><code class="computeroutput">attribute</code>
public
construct/copy/destruct</h3>
<div class="orderedlist"><ol class="orderedlist" type="1">
<li class="listitem">
<pre class="literallayout"><a name="idm45961923466576-bb"></a><span class="identifier">attribute</span><span class="special">(</span><a class="link" href="attribute.html" title="Class attribute">attribute</a> <span class="keyword">const</span> <span class="special">&</span> that<span class="special">)</span> <span class="keyword">noexcept</span><span class="special">;</span></pre>
<p>Default constructor. Creates an empty attribute value factory, which is not usable until <code class="computeroutput">set_impl</code> is called.</p>
<p>Copy constructor </p>
</li>
<li class="listitem">
<pre class="literallayout"><a name="idm45961923737552-bb"></a><span class="identifier">attribute</span><span class="special">(</span><a class="link" href="attribute.html" title="Class attribute">attribute</a> <span class="special">&&</span> that<span class="special">)</span> <span class="keyword">noexcept</span><span class="special">;</span></pre>
<p>Move constructor </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="keyword">explicit</span> <a name="idm45961923735600-bb"></a><span class="identifier">attribute</span><span class="special">(</span><span class="identifier">intrusive_ptr</span><span class="special"><</span> <a class="link" href="attribute/impl.html" title="Struct impl">impl</a> <span class="special">></span> p<span class="special">)</span> <span class="keyword">noexcept</span><span class="special">;</span></pre>
<p>Initializing constructor</p>
<p>
</p>
<div class="variablelist"><table border="0" class="variablelist compact">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody><tr>
<td><p><span class="term">Parameters:</span></p></td>
<td><div class="variablelist"><table border="0" class="variablelist compact">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody><tr>
<td><p><span class="term"><code class="computeroutput">p</code></span></p></td>
<td><p>Pointer to the implementation. Must not be <code class="computeroutput">NULL</code>. </p></td>
</tr></tbody>
</table></div></td>
</tr></tbody>
</table></div>
</li>
<li class="listitem">
<pre class="literallayout"><a class="link" href="attribute.html" title="Class attribute">attribute</a> <span class="special">&</span> <a name="idm45961923732080-bb"></a><span class="keyword">operator</span><span class="special">=</span><span class="special">(</span><a class="link" href="attribute.html" title="Class attribute">attribute</a> <span class="keyword">const</span> <span class="special">&</span> that<span class="special">)</span> <span class="keyword">noexcept</span><span class="special">;</span></pre>
<p>Copy assignment </p>
</li>
<li class="listitem">
<pre class="literallayout"><a class="link" href="attribute.html" title="Class attribute">attribute</a> <span class="special">&</span> <a name="idm45961923729552-bb"></a><span class="keyword">operator</span><span class="special">=</span><span class="special">(</span><a class="link" href="attribute.html" title="Class attribute">attribute</a> <span class="special">&&</span> that<span class="special">)</span> <span class="keyword">noexcept</span><span class="special">;</span></pre>
<p>Move assignment </p>
</li>
</ol></div>
</div>
<div class="refsect2">
<a name="idm46846479734320"></a><h3>
<a name="idm45961923672768-bb"></a><code class="computeroutput">attribute</code> public member functions</h3>
<div class="orderedlist"><ol class="orderedlist" type="1">
<li class="listitem">
<pre class="literallayout"><span class="keyword">explicit</span> <a name="idm45961923672208-bb"></a><span class="keyword">operator</span> <span class="keyword">bool</span><span class="special">(</span><span class="special">)</span> <span class="keyword">const</span> <span class="keyword">noexcept</span><span class="special">;</span></pre>
<p>Verifies that the factory is not in empty state </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="keyword">bool</span> <a name="idm45961923473056-bb"></a><span class="keyword">operator</span><span class="special">!</span><span class="special">(</span><span class="special">)</span> <span class="keyword">const</span> <span class="keyword">noexcept</span><span class="special">;</span></pre>
<p>Verifies that the factory is in empty state </p>
</li>
<li class="listitem">
<pre class="literallayout"><a class="link" href="attribute_value.html" title="Class attribute_value">attribute_value</a> <a name="idm45961923471552-bb"></a><span class="identifier">get_value</span><span class="special">(</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span></pre>
<p>
</p>
<div class="variablelist"><table border="0" class="variablelist compact">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody><tr>
<td><p><span class="term">Returns:</span></p></td>
<td><p>The actual attribute value. It shall not return empty values (exceptions shall be used to indicate errors). </p></td>
</tr></tbody>
</table></div>
</li>
<li class="listitem">
<pre class="literallayout"><span class="keyword">void</span> <a name="idm45961923469216-bb"></a><span class="identifier">swap</span><span class="special">(</span><a class="link" href="attribute.html" title="Class attribute">attribute</a> <span class="special">&</span> that<span class="special">)</span> <span class="keyword">noexcept</span><span class="special">;</span></pre>
<p>The method swaps two factories (i.e. their implementations). </p>
</li>
</ol></div>
</div>
<div class="refsect2">
<a name="idm46846479705072"></a><h3>
<a name="idm45961923727024-bb"></a><code class="computeroutput">attribute</code> protected member functions</h3>
<div class="orderedlist"><ol class="orderedlist" type="1">
<li class="listitem">
<pre class="literallayout"><a class="link" href="attribute/impl.html" title="Struct impl">impl</a> <span class="special">*</span> <a name="idm45961923726448-bb"></a><span class="identifier">get_impl</span><span class="special">(</span><span class="special">)</span> <span class="keyword">const</span> <span class="keyword">noexcept</span><span class="special">;</span></pre>
<p>
</p>
<div class="variablelist"><table border="0" class="variablelist compact">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody><tr>
<td><p><span class="term">Returns:</span></p></td>
<td><p>The pointer to the implementation </p></td>
</tr></tbody>
</table></div>
</li>
<li class="listitem">
<pre class="literallayout"><span class="keyword">void</span> <a name="idm45961923724032-bb"></a><span class="identifier">set_impl</span><span class="special">(</span><span class="identifier">intrusive_ptr</span><span class="special"><</span> <a class="link" href="attribute/impl.html" title="Struct impl">impl</a> <span class="special">></span> p<span class="special">)</span> <span class="keyword">noexcept</span><span class="special">;</span></pre>
<p>Sets the pointer to the factory implementation.</p>
<p>
</p>
<div class="variablelist"><table border="0" class="variablelist compact">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody><tr>
<td><p><span class="term">Parameters:</span></p></td>
<td><div class="variablelist"><table border="0" class="variablelist compact">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody><tr>
<td><p><span class="term"><code class="computeroutput">p</code></span></p></td>
<td><p>Pointer to the implementation. Must not be <code class="computeroutput">NULL</code>. </p></td>
</tr></tbody>
</table></div></td>
</tr></tbody>
</table></div>
</li>
</ol></div>
</div>
<div class="refsect2">
<a name="idm46846479682688"></a><h3>
<a name="idm45961922238000-bb"></a><code class="computeroutput">attribute</code> friend functions</h3>
<div class="orderedlist"><ol class="orderedlist" type="1"><li class="listitem">
<pre class="literallayout"><span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> T<span class="special">></span> <span class="keyword">friend</span> <span class="identifier">T</span> <a name="idm45961922237440-bb"></a><span class="identifier">attribute_cast</span><span class="special">(</span><a class="link" href="attribute.html" title="Class attribute">attribute</a> <span class="keyword">const</span> <span class="special">&</span><span class="special">)</span><span class="special">;</span></pre>
<p>The function casts one attribute factory to another </p>
</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 © 2007-2021 Andrey Semashev<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="../../attributes.html"><img src="../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../attributes.html#header.boost.log.attributes.attribute_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="attribute/impl.html"><img src="../../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
</body>
</html>
|
think-Elon-Musk/index.html | Zack-Ku/Zack-Ku.github.io | <!DOCTYPE html>
<html class="theme-next gemini use-motion" lang="zh-Hans">
<head>
<meta charset="UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"/>
<meta name="theme-color" content="#222">
<meta http-equiv="Cache-Control" content="no-transform" />
<meta http-equiv="Cache-Control" content="no-siteapp" />
<meta name="google-site-verification" content="8df1kGxKl77ts3Y_6huryVjNQJWbf8mTVXeBvHNGtZk" />
<link href="/lib/font-awesome/css/font-awesome.min.css?v=4.6.2" rel="stylesheet" type="text/css" />
<link href="/css/main.css?v=6.0.5" rel="stylesheet" type="text/css" />
<link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon-z.png?v=6.0.5">
<link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32-z.png?v=6.0.5">
<link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16-z.png?v=6.0.5">
<link rel="mask-icon" href="/images/safari-pinned-tab-z.svg?v=6.0.5" color="#222">
<script type="text/javascript" id="hexo.configurations">
var NexT = window.NexT || {};
var CONFIG = {
root: '/',
scheme: 'Gemini',
version: '6.0.5',
sidebar: {"position":"left","display":"post","offset":12,"b2t":true,"scrollpercent":true,"onmobile":false},
fancybox: false,
fastclick: false,
lazyload: false,
tabs: true,
motion: {"enable":true,"async":false,"transition":{"post_block":"fadeIn","post_header":"slideDownIn","post_body":"slideDownIn","coll_header":"slideLeftIn","sidebar":"slideUpIn"}},
algolia: {
applicationID: 'USQASS7PS3',
apiKey: 'b2fc1956207dad6c82679e86986cfead',
indexName: 'blog',
hits: {"per_page":3},
labels: {"input_placeholder":"Search for Posts","hits_empty":"We didn't find any results for the search: ${query}","hits_stats":"${hits} results found in ${time} ms"}
}
};
</script>
<script data-ad-client="ca-pub-4904947778245344" async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<meta name="keywords" content="Elon Musk,Tesla," />
<meta name="description" content="最近在读《硅谷钢铁侠:埃隆·马斯克的冒险人生》,惊叹于人与人的差距,真的比人与狗的差距还大。在这分享下书中有趣的内容。 实践的梦想家如果一个人和你说,他想移居火星,估计你会觉得他脑子是不是有病。是的,他不仅有病,很可能是疯了。不同的是,埃隆不仅是疯了,他还拼上身家性命去实现。埃隆是一个具有颠覆性的创业者,每次创业都是行业史无前例的开端。">
<meta name="keywords" content="Elon Musk,Tesla">
<meta property="og:type" content="article">
<meta property="og:title" content="感悟《硅谷钢铁侠:埃隆·马斯克的冒险人生》">
<meta property="og:url" content="http://zackku.com/think-Elon-Musk/index.html">
<meta property="og:site_name" content="Zack's Blog">
<meta property="og:description" content="最近在读《硅谷钢铁侠:埃隆·马斯克的冒险人生》,惊叹于人与人的差距,真的比人与狗的差距还大。在这分享下书中有趣的内容。 实践的梦想家如果一个人和你说,他想移居火星,估计你会觉得他脑子是不是有病。是的,他不仅有病,很可能是疯了。不同的是,埃隆不仅是疯了,他还拼上身家性命去实现。埃隆是一个具有颠覆性的创业者,每次创业都是行业史无前例的开端。">
<meta property="og:locale" content="zh-Hans">
<meta property="og:updated_time" content="2018-03-19T02:22:39.803Z">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="感悟《硅谷钢铁侠:埃隆·马斯克的冒险人生》">
<meta name="twitter:description" content="最近在读《硅谷钢铁侠:埃隆·马斯克的冒险人生》,惊叹于人与人的差距,真的比人与狗的差距还大。在这分享下书中有趣的内容。 实践的梦想家如果一个人和你说,他想移居火星,估计你会觉得他脑子是不是有病。是的,他不仅有病,很可能是疯了。不同的是,埃隆不仅是疯了,他还拼上身家性命去实现。埃隆是一个具有颠覆性的创业者,每次创业都是行业史无前例的开端。">
<link rel="alternate" href="/rss2.xml" title="Zack's Blog" type="application/atom+xml" />
<link rel="canonical" href="http://zackku.com/think-Elon-Musk/"/>
<script type="text/javascript" id="page.configurations">
CONFIG.page = {
sidebar: "",
};
</script>
<title>感悟《硅谷钢铁侠:埃隆·马斯克的冒险人生》 | Zack's Blog</title>
<script type="text/javascript">
var _hmt = _hmt || [];
(function() {
var hm = document.createElement("script");
hm.src = "https://hm.baidu.com/hm.js?877c602c29f8404e400126d43bc86593";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
</script>
<noscript>
<style type="text/css">
.use-motion .motion-element,
.use-motion .brand,
.use-motion .menu-item,
.sidebar-inner,
.use-motion .post-block,
.use-motion .pagination,
.use-motion .comments,
.use-motion .post-header,
.use-motion .post-body,
.use-motion .collection-title { opacity: initial; }
.use-motion .logo,
.use-motion .site-title,
.use-motion .site-subtitle {
opacity: initial;
top: initial;
}
.use-motion {
.logo-line-before i { left: initial; }
.logo-line-after i { right: initial; }
}
</style>
</noscript>
</head>
<body itemscope itemtype="http://schema.org/WebPage" lang="zh-Hans">
<div class="container sidebar-position-left page-post-detail">
<div class="headband"></div>
<header id="header" class="header" itemscope itemtype="http://schema.org/WPHeader">
<div class="header-inner"> <div class="site-brand-wrapper">
<div class="site-meta ">
<div class="custom-logo-site-title">
<a href="/" class="brand" rel="start">
<span class="logo-line-before"><i></i></span>
<span class="site-title">Zack's Blog</span>
<span class="logo-line-after"><i></i></span>
</a>
</div>
<h1 class="site-subtitle" itemprop="description">这里应该有一句格言,但我们没有写</h1>
</div>
<div class="site-nav-toggle">
<button>
<span class="btn-bar"></span>
<span class="btn-bar"></span>
<span class="btn-bar"></span>
</button>
</div>
</div>
<nav class="site-nav">
<ul id="menu" class="menu">
<li class="menu-item menu-item-home">
<a href="/" rel="section">
<i class="menu-item-icon fa fa-fw fa-home"></i> <br />首页</a>
</li>
<li class="menu-item menu-item-archives">
<a href="/archives/" rel="section">
<i class="menu-item-icon fa fa-fw fa-archive"></i> <br />归档</a>
</li>
<li class="menu-item menu-item-categories">
<a href="/categories/" rel="section">
<i class="menu-item-icon fa fa-fw fa-th"></i> <br />分类</a>
</li>
<li class="menu-item menu-item-tags">
<a href="/tags/" rel="section">
<i class="menu-item-icon fa fa-fw fa-tags"></i> <br />标签</a>
</li>
<li class="menu-item menu-item-about">
<a href="/about/" rel="section">
<i class="menu-item-icon fa fa-fw fa-user"></i> <br />公众号:Zack说码</a>
</li>
<li class="menu-item menu-item-search">
<a href="javascript:;" class="popup-trigger">
<i class="menu-item-icon fa fa-search fa-fw"></i> <br />搜索</a>
</li>
</ul>
<div class="site-search">
<div class="algolia-popup popup search-popup">
<div class="algolia-search">
<div class="algolia-search-input-icon">
<i class="fa fa-search"></i>
</div>
<div class="algolia-search-input" id="algolia-search-input"></div>
</div>
<div class="algolia-results">
<div id="algolia-stats"></div>
<div id="algolia-hits"></div>
<div id="algolia-pagination" class="algolia-pagination"></div>
</div>
<span class="popup-btn-close">
<i class="fa fa-times-circle"></i>
</span>
</div>
</div>
</nav>
</div>
</header>
<main id="main" class="main">
<div class="main-inner">
<div class="content-wrap">
<div id="content" class="content">
<div id="posts" class="posts-expand">
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<div class="post-block">
<link itemprop="mainEntityOfPage" href="http://zackku.com/think-Elon-Musk/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="Zack Ku">
<meta itemprop="description" content="">
<meta itemprop="image" content="/images/avatar2.jpeg">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="Zack's Blog">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">感悟《硅谷钢铁侠:埃隆·马斯克的冒险人生》</h2>
<div class="post-meta">
<span class="post-time">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建于" itemprop="dateCreated datePublished" datetime="2018-03-17T13:49:44+08:00">2018-03-17</time>
</span>
<span class="post-category" >
<span class="post-meta-divider">|</span>
<span class="post-meta-item-icon">
<i class="fa fa-folder-o"></i>
</span>
<span class="post-meta-item-text">分类于</span>
<span itemprop="about" itemscope itemtype="http://schema.org/Thing"><a href="/categories/感悟/" itemprop="url" rel="index"><span itemprop="name">感悟</span></a></span>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p>最近在读《硅谷钢铁侠:埃隆·马斯克的冒险人生》,惊叹于人与人的差距,真的比人与狗的差距还大。在这分享下书中有趣的内容。</p>
<h2 id="实践的梦想家"><a href="#实践的梦想家" class="headerlink" title="实践的梦想家"></a>实践的梦想家</h2><p>如果一个人和你说,他想移居火星,估计你会觉得他脑子是不是有病。是的,他不仅有病,很可能是疯了。不同的是,埃隆不仅是疯了,他还拼上身家性命去实现。<br>埃隆是一个具有颠覆性的创业者,每次创业都是行业史无前例的开端。<br><a id="more"></a></p>
<ul>
<li><strong>Zip2</strong>,是埃隆第一家创业的公司,类似于现在的大众点评,把商户的信息放到互联网上,帮他们打广告。这个在现在看起来并什么了不起,当那个年代可是互联网还没发展起来的年代,所有信息几乎都是从黄页上获取的。</li>
<li><strong>X.com</strong>,世界第一家具有银行性质的网络公司,后来和Paypal并购改名为Paypal。那时没人相信把金钱这么敏感的东西放到互联网上是可靠的,但埃隆做到了,并推广到全世界。</li>
<li><strong>SpaceX</strong>,太空探索技术公司,可能是唯一一创新性廉价太空领域公司。它一支火箭的造价是传统造价1/5,甚至在后面可回收实现后是1/10。当时埃隆把X.com卖掉的钱,几乎全部都投到这家公司去了,而且要知道,造火箭并不是一件容易的事情,特别是没有国家的支持下。但它凭着自己实现梦想的动力,排除万难地把公司办下来了。</li>
<li><strong>特斯拉</strong>,这个大家都很熟悉了,简直对传统汽车行业的降维打击。</li>
<li><strong>SolarCity</strong>,一家专门发展家用光伏发电项目的公司,清洁能源商用推动者。</li>
</ul>
<p>拿埃隆的话说就是,<strong>我等不急别人去实现这些东西了,我要自己去做!</strong><br>不知道大家发现没有,SpaceX + 特斯拉 + SolarCity到底是个什么东西?<br>明显就是 <strong>“老子要上火星!!”</strong><br>(说实在的,要是我有钱,也想买辆特斯拉,支持下埃隆上火星)</p>
<h2 id="特斯拉的创始人??"><a href="#特斯拉的创始人??" class="headerlink" title="特斯拉的创始人??"></a>特斯拉的创始人??</h2><p>可能大家都以为埃隆是特斯拉的创始人,遗憾的是,特斯拉真正的创始人并不是他,而是天才工程师——<strong>马丁·艾伯哈德</strong>,电动车的技术革新者,破局者。在埃隆还在构想用电容作为电动车能源的时候,他已经提出用锂电池(目前特斯拉的电池技术核心)。当初马丁到处找合适的投资人实现他锂电池的电动车方案的时候,找到了埃隆,所以埃隆仅仅是当初特斯拉公司的风险投资人。<br>但是随着公司的波动、各种挫折,特斯拉经历了五年都无法推出一款能够面向市场的电动车,埃隆作为特斯拉最大的股东,把这位创始人踢出局,自己拿起了公司的权杖。直到现在,埃隆和马丁依然有非常深的矛盾。</p>
<h2 id="失败?那仅仅是个过程"><a href="#失败?那仅仅是个过程" class="headerlink" title="失败?那仅仅是个过程"></a>失败?那仅仅是个过程</h2><p>别看现在埃隆的公司都很风光,当初都经历不少生死瞬间。<br>SpaceX,花了埃隆几乎全部身家,还要变卖资产,到处借钱,几年的时间,终于创造出第一颗火箭,但没升到半空中就爆炸了。再次历时一年多造出的火箭,终于升到地轨,机身不稳定再次爆炸。不久后熟悉的爆炸再次出现,此时SpaceX的钱只够再造两次火箭了。在公司创办的10年后,第四次火箭终于成功发射,SpaceX在航空霸主的地位开始确立。</p>
<p>特斯拉同样经历了一段非常长的探索期,在公司创办的5年后,已经有眉目要推出一款可用的电动车Roadster。但它的造价成本高达20万美元,和预计的市场价8.5万美元相差不止一倍,根本没办法推出市场,核心员工开始离开,公司濒临倒闭。此时就是埃隆掌权的开始,也开始扭转特斯拉的命运。</p>
<p>埃隆曾经经历过生死,一次与妻子去南非度假,患上了一种严重的疟疾。只要晚一天治疗,估计没今天的特斯拉了。那次后,埃隆瘦了45磅,感叹到,休假真的会掉命的。</p>
</div>
<div>
<div style="padding: 10px 0; margin: 20px auto; width: 90%; text-align: center;">
<div>听说你想请我喝下午茶?~</div>
<button id="rewardButton" disable="enable" onclick="var qr = document.getElementById('QR'); if (qr.style.display === 'none') {qr.style.display='block';} else {qr.style.display='none'}">
<span>打赏</span>
</button>
<div id="QR" style="display: none;">
<div id="wechat" style="display: inline-block">
<img id="wechat_qr" src="/images/wechatpay.jpeg" alt="Zack Ku 微信支付"/>
<p>微信支付</p>
</div>
<div id="alipay" style="display: inline-block">
<img id="alipay_qr" src="/images/alipay.jpeg" alt="Zack Ku 支付宝"/>
<p>支付宝</p>
</div>
</div>
</div>
</div>
<footer class="post-footer">
<div class="post-tags">
<a href="/tags/Elon-Musk/" rel="tag"># Elon Musk</a>
<a href="/tags/Tesla/" rel="tag"># Tesla</a>
</div>
<div class="post-nav">
<div class="post-nav-next post-nav-item">
<a href="/hexo-blog/" rel="next" title="博客重构之路——Jekyll迁移到Hexo">
<i class="fa fa-chevron-left"></i> 博客重构之路——Jekyll迁移到Hexo
</a>
</div>
<span class="post-nav-divider"></span>
<div class="post-nav-prev post-nav-item">
<a href="/bee-out-of-control/" rel="prev" title="《失控》中的群蜂思维">
《失控》中的群蜂思维 <i class="fa fa-chevron-right"></i>
</a>
</div>
</div>
</footer>
</div>
</article>
<div class="post-spread">
</div>
</div>
<script src="https://my.openwrite.cn/js/readmore.js" type="text/javascript"></script>
<script>
const btw = new BTWPlugin();
btw.init({
id: 'container',
blogId: '18044-1573285086012-689',
name: 'Zack说码',
qrcode: 'http://qiniu.zackku.com/qrcode.jpg',
keyword: 'hellozack',
});
</script>
</div>
</div>
<div class="sidebar-toggle">
<div class="sidebar-toggle-line-wrap">
<span class="sidebar-toggle-line sidebar-toggle-line-first"></span>
<span class="sidebar-toggle-line sidebar-toggle-line-middle"></span>
<span class="sidebar-toggle-line sidebar-toggle-line-last"></span>
</div>
</div>
<aside id="sidebar" class="sidebar">
<div class="sidebar-inner">
<ul class="sidebar-nav motion-element">
<li class="sidebar-nav-toc sidebar-nav-active" data-target="post-toc-wrap">
文章目录
</li>
<li class="sidebar-nav-overview" data-target="site-overview-wrap">
站点概览
</li>
</ul>
<section class="site-overview-wrap sidebar-panel">
<div class="site-overview">
<div class="site-author motion-element" itemprop="author" itemscope itemtype="http://schema.org/Person">
<img class="site-author-image" itemprop="image"
src="/images/avatar2.jpeg"
alt="Zack Ku" />
<p class="site-author-name" itemprop="name">Zack Ku</p>
<p class="site-description motion-element" itemprop="description"></p>
</div>
<nav class="site-state motion-element">
<div class="site-state-item site-state-posts">
<a href="/archives/">
<span class="site-state-item-count">41</span>
<span class="site-state-item-name">日志</span>
</a>
</div>
<div class="site-state-item site-state-categories">
<a href="/categories/index.html">
<span class="site-state-item-count">13</span>
<span class="site-state-item-name">分类</span>
</a>
</div>
<div class="site-state-item site-state-tags">
<a href="/tags/index.html">
<span class="site-state-item-count">41</span>
<span class="site-state-item-name">标签</span>
</a>
</div>
</nav>
<div class="feed-link motion-element">
<a href="/rss2.xml" rel="alternate">
<i class="fa fa-rss"></i>
RSS
</a>
</div>
<div class="links-of-author motion-element">
<span class="links-of-author-item">
<a href="https://github.com/zack-ku" target="_blank" title="GitHub" rel="external nofollow"><i class="fa fa-fw fa-github"></i></a>
</span>
<span class="links-of-author-item">
<a href="mailto:gza_scnu@163.com" target="_blank" title="E-Mail" rel="external nofollow"><i class="fa fa-fw fa-envelope"></i></a>
</span>
<span class="links-of-author-item">
<a href="https://zack-blog.oss-cn-shenzhen.aliyuncs.com/image/blog-common/%E6%89%AB%E7%A0%81_%E6%90%9C%E7%B4%A2%E8%81%94%E5%90%88%E4%BC%A0%E6%92%AD%E6%A0%B7%E5%BC%8F-%E5%BE%AE%E4%BF%A1%E6%A0%87%E5%87%86%E7%BB%BF%E7%89%88.png" target="_blank" title="WeChat" rel="external nofollow"><i class="fa fa-fw fa-wechat"></i></a>
</span>
</div>
<div class="links-of-blogroll motion-element links-of-blogroll-block">
<div class="links-of-blogroll-title">
<i class="fa fa-fw fa-link"></i>
Links
</div>
<ul class="links-of-blogroll-list">
<li class="links-of-blogroll-item">
<a href="https://blog.luhuancheng.com/" title="luhuancheng" target="_blank">luhuancheng</a>
</li>
</ul>
</div>
</div>
</section>
<!--noindex-->
<section class="post-toc-wrap motion-element sidebar-panel sidebar-panel-active">
<div class="post-toc">
<div class="post-toc-content"><ol class="nav"><li class="nav-item nav-level-2"><a class="nav-link" href="#实践的梦想家"><span class="nav-number">1.</span> <span class="nav-text">实践的梦想家</span></a></li><li class="nav-item nav-level-2"><a class="nav-link" href="#特斯拉的创始人??"><span class="nav-number">2.</span> <span class="nav-text">特斯拉的创始人??</span></a></li><li class="nav-item nav-level-2"><a class="nav-link" href="#失败?那仅仅是个过程"><span class="nav-number">3.</span> <span class="nav-text">失败?那仅仅是个过程</span></a></li></ol></div>
</div>
</section>
<!--/noindex-->
<div class="back-to-top">
<i class="fa fa-arrow-up"></i>
<span id="scrollpercent"><span>0</span>%</span>
</div>
</div>
</aside>
</div>
</main>
<footer id="footer" class="footer">
<div class="footer-inner">
<div class="copyright">© <span itemprop="copyrightYear">2021</span>
<span class="with-love">
<i class="fa fa-user"></i>
</span>
<span class="author" itemprop="copyrightHolder">Zack Ku</span>
</div>
<div class="footer-custom"><div class="BbeiAn-info">粤ICP备 -<a target="_blank" href="https://beian.miit.gov.cn/">18124360号</a></a></div></div>
</div>
</footer>
</div>
<script type="text/javascript">
if (Object.prototype.toString.call(window.Promise) !== '[object Function]') {
window.Promise = null;
}
</script>
<script type="text/javascript" src="/lib/jquery/index.js?v=2.1.3"></script>
<script type="text/javascript" src="/lib/velocity/velocity.min.js?v=1.2.1"></script>
<script type="text/javascript" src="/lib/velocity/velocity.ui.min.js?v=1.2.1"></script>
<script type="text/javascript" src="/js/src/utils.js?v=6.0.5"></script>
<script type="text/javascript" src="/js/src/motion.js?v=6.0.5"></script>
<script type="text/javascript" src="/js/src/affix.js?v=6.0.5"></script>
<script type="text/javascript" src="/js/src/schemes/pisces.js?v=6.0.5"></script>
<script type="text/javascript" src="/js/src/scrollspy.js?v=6.0.5"></script>
<script type="text/javascript" src="/js/src/post-details.js?v=6.0.5"></script>
<script type="text/javascript" src="/js/src/bootstrap.js?v=6.0.5"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/instantsearch.js@2.4.1/dist/instantsearch.min.css">
<script src="https://cdn.jsdelivr.net/npm/instantsearch.js@2.4.1/dist/instantsearch.js"></script>
<script src="/js/src/algolia-search.js?v=6.0.5"></script>
<script>
(function(){
var bp = document.createElement('script');
var curProtocol = window.location.protocol.split(':')[0];
if (curProtocol === 'https') {
bp.src = 'https://zz.bdstatic.com/linksubmit/push.js';
}
else {
bp.src = 'http://push.zhanzhang.baidu.com/push.js';
}
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(bp, s);
})();
</script>
</body>
</html>
|
index.css | dubeme/2048-from-scratch | #game_board {
text-align: center;;
}
.row {
font-size: 1.25em;
float: left;
clear: both;
}
.column {
float: left;
}
.btns, .btns > * {
float: left;
clear: both;
} |
examples/test/cube/index.html | DanielDanielDanielDanielDaniel/tvhackday | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Cube</title>
<meta name="description" content="Cube - A-Frame">
<script src="../../../dist/aframe.js"></script>
<style>
body { background-color: black; }
</style>
</head>
<body>
<a-scene stats>
<!-- Cube -->
<a-entity position="0 0 -12" rotation="45 30 0"
geometry="primitive: box; height: 8; width: 8; depth: 8;"
material="color: #167341; roughness: 1.0; metalness: 0.2;"></a-entity>
</a-scene>
</body>
</html>
|
Docs/api/html/classOgre_1_1CgFxScriptLoader_1_1CgColorMaterialGlobalStateListener-members.html | lennonchan/OgreSource | <html>
<head>
<title>OGRE: Member List - OGRE Documentation</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link type="text/css" rel="stylesheet" href="doxygen.css">
<link type="text/css" rel="stylesheet" href="tabs.css">
</head>
<body>
<!-- Generated by Doxygen 1.6.2 -->
<div class="navigation" id="top">
<div class="tabs">
<ul>
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="pages.html"><span>Related Pages</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
<li><a href="dirs.html"><span>Directories</span></a></li>
</ul>
</div>
<div class="tabs">
<ul>
<li><a href="annotated.html"><span>Class List</span></a></li>
<li><a href="classes.html"><span>Class Index</span></a></li>
<li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class Members</span></a></li>
</ul>
</div>
</div>
<div class="contents">
<h1>Ogre::CgFxScriptLoader::CgColorMaterialGlobalStateListener Member List</h1>This is the complete list of members for <a class="el" href="classOgre_1_1CgFxScriptLoader_1_1CgColorMaterialGlobalStateListener.html">Ogre::CgFxScriptLoader::CgColorMaterialGlobalStateListener</a>, including all inherited members.<table>
<tr class="memlist"><td><a class="el" href="classOgre_1_1CgFxScriptLoader_1_1CgStateListener.html#af191cc3065e955728850887afddded5b">addStateEnumerant</a>(int value, const char *name)</td><td><a class="el" href="classOgre_1_1CgFxScriptLoader_1_1CgStateListener.html">Ogre::CgFxScriptLoader::CgStateListener</a></td><td><code> [protected]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classOgre_1_1AllocatedObject.html#a366445eb206e55a2199267b8b9089ebb">AllocatedObject</a>()</td><td><a class="el" href="classOgre_1_1AllocatedObject.html">Ogre::AllocatedObject< Alloc ></a></td><td><code> [explicit]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classOgre_1_1CgFxScriptLoader_1_1CgStateListener.html#abdfce61e5bb971e1be6be4199996f843">cgCallBackReset</a>(CGstateassignment cgStateAssignment)</td><td><a class="el" href="classOgre_1_1CgFxScriptLoader_1_1CgStateListener.html">Ogre::CgFxScriptLoader::CgStateListener</a></td><td><code> [protected, static]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classOgre_1_1CgFxScriptLoader_1_1CgStateListener.html#af93ffcb44cab3701a9b645749a154c9a">cgCallBackSet</a>(CGstateassignment cgStateAssignment)</td><td><a class="el" href="classOgre_1_1CgFxScriptLoader_1_1CgStateListener.html">Ogre::CgFxScriptLoader::CgStateListener</a></td><td><code> [protected, static]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classOgre_1_1CgFxScriptLoader_1_1CgStateListener.html#ad09a952135d1499b6eacb2a8e4ec59b4">cgCallBackValidate</a>(CGstateassignment cgStateAssignment)</td><td><a class="el" href="classOgre_1_1CgFxScriptLoader_1_1CgStateListener.html">Ogre::CgFxScriptLoader::CgStateListener</a></td><td><code> [protected, static]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classOgre_1_1CgFxScriptLoader_1_1CgColorMaterialGlobalStateListener.html#aed150eb17c93da6aa8165171cd2c8ee3">CgColorMaterialGlobalStateListener</a>()</td><td><a class="el" href="classOgre_1_1CgFxScriptLoader_1_1CgColorMaterialGlobalStateListener.html">Ogre::CgFxScriptLoader::CgColorMaterialGlobalStateListener</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="classOgre_1_1CgFxScriptLoader_1_1CgGlobalStateListener.html#a581fcb08f732b121ca8a35a44a3229cd">CgGlobalStateListener</a>(const GlobalStateType globalStateType, CGtype cgType)</td><td><a class="el" href="classOgre_1_1CgFxScriptLoader_1_1CgGlobalStateListener.html">Ogre::CgFxScriptLoader::CgGlobalStateListener</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="classOgre_1_1CgFxScriptLoader_1_1CgInt2GlobalStateListener.html#aec067dbd5afc7391b9e1ae8e3b264537">CgInt2GlobalStateListener</a>(const GlobalStateType globalStateType)</td><td><a class="el" href="classOgre_1_1CgFxScriptLoader_1_1CgInt2GlobalStateListener.html">Ogre::CgFxScriptLoader::CgInt2GlobalStateListener</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="classOgre_1_1CgFxScriptLoader_1_1CgStateListener.html#a3dcb248f374160b05e2c974b5f01022d">CgStateListener</a>(CGtype cgType)</td><td><a class="el" href="classOgre_1_1CgFxScriptLoader_1_1CgStateListener.html">Ogre::CgFxScriptLoader::CgStateListener</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="classOgre_1_1CgFxScriptLoader_1_1CgColorMaterialGlobalStateListener.html#a832052185ccee2408d59bda3d3c8a26ca694290a6d6ddfbeb0d9e2241933a75fa">CMT_AMBIENT</a> enum value</td><td><a class="el" href="classOgre_1_1CgFxScriptLoader_1_1CgColorMaterialGlobalStateListener.html">Ogre::CgFxScriptLoader::CgColorMaterialGlobalStateListener</a></td><td><code> [protected]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classOgre_1_1CgFxScriptLoader_1_1CgColorMaterialGlobalStateListener.html#a832052185ccee2408d59bda3d3c8a26ca8b7dccea22a34b746decdfa76cf846d6">CMT_AMBIENTANDDIFFUSE</a> enum value</td><td><a class="el" href="classOgre_1_1CgFxScriptLoader_1_1CgColorMaterialGlobalStateListener.html">Ogre::CgFxScriptLoader::CgColorMaterialGlobalStateListener</a></td><td><code> [protected]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classOgre_1_1CgFxScriptLoader_1_1CgColorMaterialGlobalStateListener.html#a832052185ccee2408d59bda3d3c8a26cad4adfce1e3afda80a677f67ee6680794">CMT_BACK</a> enum value</td><td><a class="el" href="classOgre_1_1CgFxScriptLoader_1_1CgColorMaterialGlobalStateListener.html">Ogre::CgFxScriptLoader::CgColorMaterialGlobalStateListener</a></td><td><code> [protected]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classOgre_1_1CgFxScriptLoader_1_1CgColorMaterialGlobalStateListener.html#a832052185ccee2408d59bda3d3c8a26cae1b2e68990885397763f2f4dc0ab24c5">CMT_DIFFUSE</a> enum value</td><td><a class="el" href="classOgre_1_1CgFxScriptLoader_1_1CgColorMaterialGlobalStateListener.html">Ogre::CgFxScriptLoader::CgColorMaterialGlobalStateListener</a></td><td><code> [protected]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classOgre_1_1CgFxScriptLoader_1_1CgColorMaterialGlobalStateListener.html#a832052185ccee2408d59bda3d3c8a26ca4cc20257708d5b8fe9c0c68fa838f0d6">CMT_EMISSION</a> enum value</td><td><a class="el" href="classOgre_1_1CgFxScriptLoader_1_1CgColorMaterialGlobalStateListener.html">Ogre::CgFxScriptLoader::CgColorMaterialGlobalStateListener</a></td><td><code> [protected]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classOgre_1_1CgFxScriptLoader_1_1CgColorMaterialGlobalStateListener.html#a832052185ccee2408d59bda3d3c8a26cafecf3593bc632ee854b385ae3c69956e">CMT_FRONT</a> enum value</td><td><a class="el" href="classOgre_1_1CgFxScriptLoader_1_1CgColorMaterialGlobalStateListener.html">Ogre::CgFxScriptLoader::CgColorMaterialGlobalStateListener</a></td><td><code> [protected]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classOgre_1_1CgFxScriptLoader_1_1CgColorMaterialGlobalStateListener.html#a832052185ccee2408d59bda3d3c8a26ca4a0213479e6e60e897d752d0adaefa1a">CMT_FRONTANDBACK</a> enum value</td><td><a class="el" href="classOgre_1_1CgFxScriptLoader_1_1CgColorMaterialGlobalStateListener.html">Ogre::CgFxScriptLoader::CgColorMaterialGlobalStateListener</a></td><td><code> [protected]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classOgre_1_1CgFxScriptLoader_1_1CgColorMaterialGlobalStateListener.html#a832052185ccee2408d59bda3d3c8a26ca2127333c8854e2c4d087b4632b127592">CMT_SPECULAR</a> enum value</td><td><a class="el" href="classOgre_1_1CgFxScriptLoader_1_1CgColorMaterialGlobalStateListener.html">Ogre::CgFxScriptLoader::CgColorMaterialGlobalStateListener</a></td><td><code> [protected]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classOgre_1_1CgFxScriptLoader_1_1CgColorMaterialGlobalStateListener.html#a832052185ccee2408d59bda3d3c8a26c">ColorMaterialType</a> enum name</td><td><a class="el" href="classOgre_1_1CgFxScriptLoader_1_1CgColorMaterialGlobalStateListener.html">Ogre::CgFxScriptLoader::CgColorMaterialGlobalStateListener</a></td><td><code> [protected]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classOgre_1_1CgFxScriptLoader_1_1CgColorMaterialGlobalStateListener.html#a893a7556d30924171c1ad5c7881a6986">createState</a>()</td><td><a class="el" href="classOgre_1_1CgFxScriptLoader_1_1CgColorMaterialGlobalStateListener.html">Ogre::CgFxScriptLoader::CgColorMaterialGlobalStateListener</a></td><td><code> [protected, virtual]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classOgre_1_1CgFxScriptLoader_1_1CgStateListener.html#a553e135950178294eb92a9a3e595d0c5">getCgCallBackReset</a>()</td><td><a class="el" href="classOgre_1_1CgFxScriptLoader_1_1CgStateListener.html">Ogre::CgFxScriptLoader::CgStateListener</a></td><td><code> [protected, virtual]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classOgre_1_1CgFxScriptLoader_1_1CgStateListener.html#ae21d4e7239dac16d639f47b0b838a2f8">getCgCallBackSet</a>()</td><td><a class="el" href="classOgre_1_1CgFxScriptLoader_1_1CgStateListener.html">Ogre::CgFxScriptLoader::CgStateListener</a></td><td><code> [protected, virtual]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classOgre_1_1CgFxScriptLoader_1_1CgStateListener.html#a2603c055aae7c3aea77794d5463c3f50">getCgCallBackValidate</a>()</td><td><a class="el" href="classOgre_1_1CgFxScriptLoader_1_1CgStateListener.html">Ogre::CgFxScriptLoader::CgStateListener</a></td><td><code> [protected, virtual]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classOgre_1_1CgFxScriptLoader_1_1CgStateListener.html#af2c98df86166307c868484b19139ff9a">getCgParameter</a>(CGstateassignment cgStateAssignment)</td><td><a class="el" href="classOgre_1_1CgFxScriptLoader_1_1CgStateListener.html">Ogre::CgFxScriptLoader::CgStateListener</a></td><td><code> [protected]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classOgre_1_1CgFxScriptLoader_1_1CgStateListener.html#aef87bfa77ae426658cacc2891cf1e651">getCgState</a>() const </td><td><a class="el" href="classOgre_1_1CgFxScriptLoader_1_1CgStateListener.html">Ogre::CgFxScriptLoader::CgStateListener</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="classOgre_1_1CgFxScriptLoader_1_1CgInt2GlobalStateListener.html#acbbb5f2b54a2477ae23b0d72cde3db36">getValue</a>(CGstateassignment cgStateAssignment)</td><td><a class="el" href="classOgre_1_1CgFxScriptLoader_1_1CgInt2GlobalStateListener.html">Ogre::CgFxScriptLoader::CgInt2GlobalStateListener</a></td><td><code> [protected]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classOgre_1_1CgFxScriptLoader_1_1CgStateListener.html#a2e4138ae0914ea2937a9b23f9b69ff8f">init</a>()</td><td><a class="el" href="classOgre_1_1CgFxScriptLoader_1_1CgStateListener.html">Ogre::CgFxScriptLoader::CgStateListener</a></td><td><code> [virtual]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classOgre_1_1CgFxScriptLoader_1_1CgStateListener.html#a7ec205c7c00ab4d1d81f8178c4ba0bfe">mCgContext</a></td><td><a class="el" href="classOgre_1_1CgFxScriptLoader_1_1CgStateListener.html">Ogre::CgFxScriptLoader::CgStateListener</a></td><td><code> [protected]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classOgre_1_1CgFxScriptLoader_1_1CgStateListener.html#aa10f7ee1a10aaf54c0e1a0bef997a6e2">mCgState</a></td><td><a class="el" href="classOgre_1_1CgFxScriptLoader_1_1CgStateListener.html">Ogre::CgFxScriptLoader::CgStateListener</a></td><td><code> [protected]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classOgre_1_1CgFxScriptLoader_1_1CgStateListener.html#a3160260332ff40c5508db04175336034">mCgType</a></td><td><a class="el" href="classOgre_1_1CgFxScriptLoader_1_1CgStateListener.html">Ogre::CgFxScriptLoader::CgStateListener</a></td><td><code> [protected]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classOgre_1_1CgFxScriptLoader_1_1CgGlobalStateListener.html#a4c62f3de2eec8080eeef94b116093cdb">mGlobalStateType</a></td><td><a class="el" href="classOgre_1_1CgFxScriptLoader_1_1CgGlobalStateListener.html">Ogre::CgFxScriptLoader::CgGlobalStateListener</a></td><td><code> [protected]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classOgre_1_1AllocatedObject.html#a8357fe4fb4849772b94baa4bf47c7ded">operator delete</a>(void *ptr)</td><td><a class="el" href="classOgre_1_1AllocatedObject.html">Ogre::AllocatedObject< Alloc ></a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="classOgre_1_1AllocatedObject.html#a1c727e879a260c37b00ce5505fe8e144">operator delete</a>(void *ptr, void *)</td><td><a class="el" href="classOgre_1_1AllocatedObject.html">Ogre::AllocatedObject< Alloc ></a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="classOgre_1_1AllocatedObject.html#acb46d4b0a597156d9ba5abc39d127792">operator delete</a>(void *ptr, const char *, int, const char *)</td><td><a class="el" href="classOgre_1_1AllocatedObject.html">Ogre::AllocatedObject< Alloc ></a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="classOgre_1_1AllocatedObject.html#a93e6a86dde5483c053ca0f2a85bbfd6c">operator delete[]</a>(void *ptr)</td><td><a class="el" href="classOgre_1_1AllocatedObject.html">Ogre::AllocatedObject< Alloc ></a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="classOgre_1_1AllocatedObject.html#a595ea4c05da8aa987d3800e65d23355d">operator delete[]</a>(void *ptr, const char *, int, const char *)</td><td><a class="el" href="classOgre_1_1AllocatedObject.html">Ogre::AllocatedObject< Alloc ></a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="classOgre_1_1AllocatedObject.html#a421b197ca3a38da17e2eb1531a645fa2">operator new</a>(size_t sz, const char *file, int line, const char *func)</td><td><a class="el" href="classOgre_1_1AllocatedObject.html">Ogre::AllocatedObject< Alloc ></a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="classOgre_1_1AllocatedObject.html#ac4bdf968b7b9af8a5239a27da73d5711">operator new</a>(size_t sz)</td><td><a class="el" href="classOgre_1_1AllocatedObject.html">Ogre::AllocatedObject< Alloc ></a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="classOgre_1_1AllocatedObject.html#ab78a921e54419be677839cdf15d1f0b8">operator new</a>(size_t sz, void *ptr)</td><td><a class="el" href="classOgre_1_1AllocatedObject.html">Ogre::AllocatedObject< Alloc ></a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="classOgre_1_1AllocatedObject.html#a4be37baef81876985aa1071ad5acc6dd">operator new[]</a>(size_t sz, const char *file, int line, const char *func)</td><td><a class="el" href="classOgre_1_1AllocatedObject.html">Ogre::AllocatedObject< Alloc ></a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="classOgre_1_1AllocatedObject.html#afa2943846ba6a2b5824a12857139cf5e">operator new[]</a>(size_t sz)</td><td><a class="el" href="classOgre_1_1AllocatedObject.html">Ogre::AllocatedObject< Alloc ></a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="classOgre_1_1CgFxScriptLoader_1_1CgColorMaterialGlobalStateListener.html#a9eaef131fb30493d9d503c5f46ad8183">updatePass</a>(Pass *ogrePass, CGstateassignment cgStateAssignment)</td><td><a class="el" href="classOgre_1_1CgFxScriptLoader_1_1CgColorMaterialGlobalStateListener.html">Ogre::CgFxScriptLoader::CgColorMaterialGlobalStateListener</a></td><td><code> [virtual]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classOgre_1_1AllocatedObject.html#a499773d35ca98b2df7c2699fc8c1bea2">~AllocatedObject</a>()</td><td><a class="el" href="classOgre_1_1AllocatedObject.html">Ogre::AllocatedObject< Alloc ></a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="classOgre_1_1CgFxScriptLoader_1_1CgGlobalStateListener.html#a3fdbab2cedf4f5e8a4c2ad6dd5e3d1b7">~CgGlobalStateListener</a>()</td><td><a class="el" href="classOgre_1_1CgFxScriptLoader_1_1CgGlobalStateListener.html">Ogre::CgFxScriptLoader::CgGlobalStateListener</a></td><td><code> [virtual]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classOgre_1_1CgFxScriptLoader_1_1CgStateListener.html#ab3a8627ffb5792535aa1701f3c4f1688">~CgStateListener</a>()</td><td><a class="el" href="classOgre_1_1CgFxScriptLoader_1_1CgStateListener.html">Ogre::CgFxScriptLoader::CgStateListener</a></td><td><code> [virtual]</code></td></tr>
</table></div>
<hr>
<p>
Copyright © 2012 Torus Knot Software Ltd<br />
<!--Creative Commons License--><a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/"><img alt="Creative Commons License" style="border-width:0" src="http://i.creativecommons.org/l/by-sa/3.0/88x31.png" /></a><br />This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/">Creative Commons Attribution-ShareAlike 3.0 Unported License</a>.<br/>
<!--/Creative Commons License--><!-- <rdf:RDF xmlns="http://web.resource.org/cc/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<Work rdf:about="">
<license rdf:resource="http://creativecommons.org/licenses/by-sa/2.5/" />
<dc:type rdf:resource="http://purl.org/dc/dcmitype/Text" />
</Work>
<License rdf:about="http://creativecommons.org/licenses/by-sa/2.5/"><permits rdf:resource="http://web.resource.org/cc/Reproduction"/><permits rdf:resource="http://web.resource.org/cc/Distribution"/><requires rdf:resource="http://web.resource.org/cc/Notice"/><requires rdf:resource="http://web.resource.org/cc/Attribution"/><permits rdf:resource="http://web.resource.org/cc/DerivativeWorks"/><requires rdf:resource="http://web.resource.org/cc/ShareAlike"/></License></rdf:RDF> -->
Last modified Sun Sep 2 08:22:54 2012
</p>
</body>
</html>
|
HTML5-CSS/41-AdjustingtheMarginofanElement.html | fmut/freecodecampanswer |
<style>
.injected-text {
margin-bottom: -25px;
text-align: center;
}
.box {
border-style: solid;
border-color: black;
border-width: 5px;
text-align: center;
}
.yellow-box {
background-color: yellow;
padding: 10px;
}
.red-box {
background-color: red;
padding: 20px;
margin: 20px;
}
.green-box {
background-color: green;
padding: 20px;
margin: 20px;
}
</style>
<h5 class="injected-text">margin</h5>
<div class="box yellow-box">
<h5 class="box red-box">padding</h5>
<h5 class="box green-box">padding</h5>
</div>
|
lcr/templates/cdr_test.html | tmpkn/lcr | {% extends "base.html" %}
{% block lcrContent %}
<form action="/fs/cdr/" method="POST">
<textarea name="cdr"></textarea>
<input type="submit" value="GO" />
</form>
{% endblock %}
|
_volume_pages/0267.html | jpktest/test6-imagesreadux-deepzoomreadux | ---
sort_order: 267
tei_id: rdx_r92js.p.idm12624
annotation_count: 0
images:
small-thumbnail: http://readuxout2in.library.emory.edu/books/emory:r8qzb/pages/emory:r92js/mini-thumbnail/
json: http://readuxout2in.library.emory.edu/books/emory:r8qzb/pages/emory:r92js/info/
full: http://readuxout2in.library.emory.edu/books/emory:r8qzb/pages/emory:r92js/fs/
page: http://readuxout2in.library.emory.edu/books/emory:r8qzb/pages/emory:r92js/single-page/
thumbnail: http://readuxout2in.library.emory.edu/books/emory:r8qzb/pages/emory:r92js/thumbnail/
title: Page 259
number: 259
permalink: "/pages/259/"
---
<div class="ocr-line" style="left:36.68%;top:8.03%;width:29.46%;height:1.88%;text-align:left;font-size:14.88px" data-vhfontsize="1.88">
<div class="ocr-zone ocrtext" style="width:16.5%;height:91.85%;left:0%">
<span>{% raw %}ROSE{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:8.26%;height:93.48%;left:19.27%">
<span>{% raw %}OF{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:29.01%;height:93.48%;left:30.14%">
<span>{% raw %}SHARON.{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:29.84%;height:93.48%;left:70.16%">
<span>{% raw %}Continued.{% endraw %}</span>
</div>
</div>
<div class="ocr-line" style="left:17.78%;top:18.11%;width:72.69%;height:1.91%;text-align:left;font-size:15.12px" data-vhfontsize="1.91">
<div class="ocr-zone ocrtext" style="width:1.35%;height:37.43%;left:0%">
<span>{% raw %}so{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:1.05%;height:51.87%;left:1.87%">
<span>{% raw %}is{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:2.08%;height:51.87%;left:3.47%">
<span>{% raw %}my{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:1.55%;height:51.87%;left:6.07%">
<span>{% raw %}be{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:0.55%;height:10.16%;left:7.94%">
<span>{% raw %}-{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:4.12%;height:59.89%;left:8.88%">
<span>{% raw %}lov-ed{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:4.52%;height:55.08%;left:13.45%">
<span>{% raw %}among{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:1.98%;height:55.08%;left:18.49%">
<span>{% raw %}the{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:3.22%;height:47.06%;left:20.96%">
<span>{% raw %}sons,{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:1.31%;height:39.04%;left:25.76%">
<span>{% raw %}so{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:1.05%;height:51.87%;left:27.9%">
<span>{% raw %}is{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:2.11%;height:50.27%;left:29.47%">
<span>{% raw %}my{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:1.55%;height:53.48%;left:32.07%">
<span>{% raw %}be{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:0.55%;height:8.56%;left:34.11%">
<span>{% raw %}-{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:3.52%;height:53.48%;left:35.14%">
<span>{% raw %}loved{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:4.45%;height:55.08%;left:40.18%">
<span>{% raw %}among{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:1.98%;height:55.08%;left:45.16%">
<span>{% raw %}the{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:3.28%;height:40.64%;left:47.66%">
<span>{% raw %}sons.{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:0.38%;height:51.87%;left:62.14%">
<span>{% raw %}I{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:1.88%;height:48.66%;left:63.24%">
<span>{% raw %}sat{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:3.42%;height:53.48%;left:65.65%">
<span>{% raw %}down{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:1.55%;height:35.83%;left:69.69%">
<span>{% raw %}un{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:0.55%;height:10.16%;left:71.72%">
<span>{% raw %}-{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:2.05%;height:53.48%;left:73.02%">
<span>{% raw %}der{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:1.88%;height:53.48%;left:75.63%">
<span>{% raw %}his{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:4.92%;height:55.08%;left:78.9%">
<span>{% raw %}shadow{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:2.78%;height:53.48%;left:84.34%">
<span>{% raw %}with{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:3.28%;height:59.89%;left:87.81%">
<span>{% raw %}great{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:5.42%;height:69.52%;left:94.58%">
<span>{% raw %}de-light,{% endraw %}</span>
</div>
</div>
<div class="ocr-line" style="left:19.26%;top:27.36%;width:35.69%;height:1.51%;text-align:left;font-size:11.97px" data-vhfontsize="1.51">
<div class="ocr-zone ocrtext" style="width:2.13%;height:65.54%;left:0%">
<span>{% raw %}so{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:2.13%;height:65.54%;left:0%">
<span>{% raw %}is{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:4.3%;height:63.51%;left:3.26%">
<span>{% raw %}my{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:3.08%;height:67.57%;left:8.7%">
<span>{% raw %}be{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:1.18%;height:10.81%;left:12.44%">
<span>{% raw %}-{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:8.25%;height:69.59%;left:14.41%">
<span>{% raw %}lov-ed{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:9.06%;height:71.62%;left:23.72%">
<span>{% raw %}among{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:4.1%;height:67.57%;left:33.85%">
<span>{% raw %}the{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:6.68%;height:67.57%;left:39.01%">
<span>{% raw %}sons,{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:2.67%;height:47.3%;left:48.39%">
<span>{% raw %}so{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:2.13%;height:65.54%;left:52.74%">
<span>{% raw %}is{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:4.3%;height:65.54%;left:55.66%">
<span>{% raw %}my{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:3.08%;height:67.57%;left:60.9%">
<span>{% raw %}be{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:0.97%;height:14.86%;left:65.04%">
<span>{% raw %}-{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:8.31%;height:69.59%;left:67.08%">
<span>{% raw %}lov-ed{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:9.27%;height:69.59%;left:77.89%">
<span>{% raw %}among{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:3.96%;height:69.59%;left:88.22%">
<span>{% raw %}the{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:6.62%;height:49.32%;left:93.38%">
<span>{% raw %}sons.{% endraw %}</span>
</div>
</div>
<div class="ocr-line" style="left:66.4%;top:27.7%;width:24.8%;height:1.45%;text-align:left;font-size:11.48px" data-vhfontsize="1.45">
<div class="ocr-zone ocrtext" style="width:1.11%;height:68.31%;left:0%">
<span>{% raw %}I{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:5.51%;height:64.08%;left:3.03%">
<span>{% raw %}sat{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:9.91%;height:70.42%;left:10.17%">
<span>{% raw %}down{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:4.63%;height:47.18%;left:21.91%">
<span>{% raw %}un{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:1.7%;height:13.38%;left:30.91%">
<span>{% raw %}-{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:5.9%;height:70.42%;left:34.82%">
<span>{% raw %}der{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:5.51%;height:72.54%;left:42.26%">
<span>{% raw %}his{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:12.46%;height:70.42%;left:49.2%">
<span>{% raw %}hadow{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:8.25%;height:72.54%;left:62.99%">
<span>{% raw %}with{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:9.62%;height:80.99%;left:72.87%">
<span>{% raw %}great{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:15.59%;height:91.55%;left:84.41%">
<span>{% raw %}de-light,{% endraw %}</span>
</div>
</div>
<div class="ocr-line" style="left:63.29%;top:37.5%;width:27.23%;height:1.48%;text-align:left;font-size:11.73px" data-vhfontsize="1.48">
<div class="ocr-zone ocrtext" style="width:1.01%;height:66.9%;left:0%">
<span>{% raw %}I{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:4.93%;height:60.69%;left:2.67%">
<span>{% raw %}sat{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:8.94%;height:68.97%;left:9.09%">
<span>{% raw %}down{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:4.13%;height:46.21%;left:19.78%">
<span>{% raw %}un{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:1.46%;height:11.03%;left:25.48%">
<span>{% raw %}-{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:5.46%;height:68.97%;left:28.96%">
<span>{% raw %}der{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:5.02%;height:71.03%;left:35.73%">
<span>{% raw %}his{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:12.86%;height:68.97%;left:44.19%">
<span>{% raw %}shadow{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:7.43%;height:68.97%;left:58.36%">
<span>{% raw %}with{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:8.85%;height:79.31%;left:67.45%">
<span>{% raw %}great{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:14.37%;height:89.66%;left:85.63%">
<span>{% raw %}de-light,{% endraw %}</span>
</div>
</div>
<div class="ocr-line" style="left:36.73%;top:46.05%;width:53.5%;height:1.6%;text-align:left;font-size:12.7px" data-vhfontsize="1.6">
<div class="ocr-zone ocrtext" style="width:1.83%;height:46.5%;left:0%">
<span>{% raw %}so{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:1.38%;height:63.69%;left:2.58%">
<span>{% raw %}is{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:2.87%;height:61.78%;left:4.76%">
<span>{% raw %}my{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:2.1%;height:61.78%;left:8.34%">
<span>{% raw %}be{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:6.18%;height:63.69%;left:11.2%">
<span>{% raw %}-lov-ed{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:6.18%;height:63.69%;left:19.04%">
<span>{% raw %}among{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:2.69%;height:65.61%;left:25.94%">
<span>{% raw %}the{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:4.37%;height:44.59%;left:29.43%">
<span>{% raw %}sons.{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:0.51%;height:61.78%;left:34.64%">
<span>{% raw %}I{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:2.51%;height:57.96%;left:40.08%">
<span>{% raw %}sat{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:4.55%;height:63.69%;left:44.71%">
<span>{% raw %}down{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:3.6%;height:42.68%;left:59.27%">
<span>{% raw %}un-{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:2.74%;height:63.69%;left:63.62%">
<span>{% raw %}der{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:2.6%;height:61.78%;left:68.47%">
<span>{% raw %}his{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:7.36%;height:67.52%;left:71.83%">
<span>{% raw %}shad-ow{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:3.82%;height:65.61%;left:81.21%">
<span>{% raw %}with{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:4.55%;height:73.25%;left:86.11%">
<span>{% raw %}great{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:7.27%;height:80.89%;left:92.73%">
<span>{% raw %}de-light,{% endraw %}</span>
</div>
</div>
<div class="ocr-line" style="left:17.3%;top:56.89%;width:51.03%;height:1.6%;text-align:left;font-size:12.7px" data-vhfontsize="1.6">
<div class="ocr-zone ocrtext" style="width:3.82%;height:61.78%;left:0%">
<span>{% raw %}And{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:2.63%;height:67.52%;left:4.52%">
<span>{% raw %}his{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:3.91%;height:65.61%;left:10.36%">
<span>{% raw %}fruit{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:3.58%;height:46.5%;left:24.82%">
<span>{% raw %}was{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:5.25%;height:54.14%;left:31.57%">
<span>{% raw %}sweet{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:1.63%;height:57.96%;left:37.61%">
<span>{% raw %}to{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:2.96%;height:59.87%;left:40.13%">
<span>{% raw %}my{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:5.25%;height:65.61%;left:45.31%">
<span>{% raw %}taste;{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:3.82%;height:63.69%;left:52.82%">
<span>{% raw %}And{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:2.68%;height:67.52%;left:57.43%">
<span>{% raw %}his{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:4.48%;height:71.34%;left:60.95%">
<span>{% raw %}fruit,{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:3.34%;height:63.69%;left:66.28%">
<span>{% raw %}and{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:2.68%;height:65.61%;left:70.41%">
<span>{% raw %}his{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:3.96%;height:61.78%;left:73.65%">
<span>{% raw %}fruit{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:3.58%;height:44.59%;left:78.4%">
<span>{% raw %}was{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:5.44%;height:54.14%;left:82.73%">
<span>{% raw %}sweet{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:1.63%;height:54.14%;left:89%">
<span>{% raw %}to{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:2.92%;height:59.87%;left:91.47%">
<span>{% raw %}my{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:4.82%;height:63.69%;left:95.18%">
<span>{% raw %}faste.{% endraw %}</span>
</div>
</div>
<div class="ocr-line" style="left:44.27%;top:67.22%;width:23.71%;height:1.39%;text-align:left;font-size:11px" data-vhfontsize="1.39">
<div class="ocr-zone ocrtext" style="width:8.22%;height:73.53%;left:0%">
<span>{% raw %}And{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:5.76%;height:77.94%;left:9.82%">
<span>{% raw %}his{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:9.65%;height:82.35%;left:17.19%">
<span>{% raw %}fruit,{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:7.2%;height:73.53%;left:28.85%">
<span>{% raw %}and{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:5.76%;height:75.74%;left:37.55%">
<span>{% raw %}his{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:8.53%;height:75.74%;left:44.92%">
<span>{% raw %}fruit{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:7.71%;height:53.68%;left:55.05%">
<span>{% raw %}was{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:11.29%;height:64.71%;left:63.64%">
<span>{% raw %}sweet{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:3.51%;height:64.71%;left:76.13%">
<span>{% raw %}to{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:6.48%;height:69.12%;left:81.45%">
<span>{% raw %}my{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:10.37%;height:69.12%;left:89.63%">
<span>{% raw %}taste.{% endraw %}</span>
</div>
</div>
<div class="ocr-line" style="left:44.23%;top:76.96%;width:23.98%;height:1.42%;text-align:left;font-size:11.24px" data-vhfontsize="1.42">
<div class="ocr-zone ocrtext" style="width:8.33%;height:74.1%;left:0%">
<span>{% raw %}And{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:5.9%;height:76.26%;left:10.02%">
<span>{% raw %}his{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:8.53%;height:74.1%;left:20.44%">
<span>{% raw %}fruit{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:7.62%;height:52.52%;left:49.07%">
<span>{% raw %}was{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:10.96%;height:63.31%;left:58.28%">
<span>{% raw %}sweet{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:3.78%;height:63.31%;left:71.74%">
<span>{% raw %}to{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:6.41%;height:69.78%;left:81.65%">
<span>{% raw %}my{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:10.25%;height:67.63%;left:89.75%">
<span>{% raw %}taste.{% endraw %}</span>
</div>
</div>
<div class="ocr-line" style="left:17.27%;top:86.52%;width:76.45%;height:1.79%;text-align:left;font-size:14.15px" data-vhfontsize="1.79">
<div class="ocr-zone ocrtext" style="width:2.55%;height:57.14%;left:0%">
<span>{% raw %}And{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:1.79%;height:60.57%;left:3.01%">
<span>{% raw %}his{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:2.96%;height:62.29%;left:5.27%">
<span>{% raw %}fruit,{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:2.23%;height:55.43%;left:8.85%">
<span>{% raw %}and{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:1.82%;height:58.86%;left:11.42%">
<span>{% raw %}his{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:2.99%;height:65.71%;left:13.71%">
<span>{% raw %}fruit,{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:2.8%;height:41.71%;left:17.23%">
<span>{% raw %}was-{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:3.5%;height:50.29%;left:20.78%">
<span>{% raw %}sweet{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:1.09%;height:48.57%;left:25.58%">
<span>{% raw %}to{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:2.01%;height:55.43%;left:27.19%">
<span>{% raw %}my{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:3.22%;height:58.86%;left:30.43%">
<span>{% raw %}taste!{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:2.55%;height:55.43%;left:35.19%">
<span>{% raw %}And{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:1.76%;height:58.86%;left:38.21%">
<span>{% raw %}his{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:2.99%;height:62.29%;left:40.49%">
<span>{% raw %}fruit,{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:2.2%;height:57.14%;left:44.17%">
<span>{% raw %}and{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:1.79%;height:58.86%;left:46.74%">
<span>{% raw %}his{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:2.99%;height:65.71%;left:49.09%">
<span>{% raw %}fruit,{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:2.39%;height:41.71%;left:52.49%">
<span>{% raw %}was{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:3.63%;height:48.57%;left:55.15%">
<span>{% raw %}sweet{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:1.09%;height:48.57%;left:59.31%">
<span>{% raw %}to{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:1.98%;height:55.43%;left:61.02%">
<span>{% raw %}my{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:3.31%;height:55.43%;left:63.53%">
<span>{% raw %}taste.{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:1.82%;height:60.57%;left:74.79%">
<span>{% raw %}He{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:4.83%;height:72.57%;left:77.08%">
<span>{% raw %}brought{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:1.88%;height:40%;left:82.5%">
<span>{% raw %}me{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:1.12%;height:50.29%;left:84.76%">
<span>{% raw %}to{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:1.91%;height:58.86%;left:86.95%">
<span>{% raw %}the{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:6.93%;height:77.71%;left:89.2%">
<span>{% raw %}banqueting{% endraw %}</span>
</div>
<div class="ocr-zone ocrtext" style="width:3.53%;height:60.57%;left:96.47%">
<span>{% raw %}house{% endraw %}</span>
</div>
</div>
|
com.kellyhuberty.MarshmallowOrmament.docset/Contents/Resources/Documents/Classes/MMSqliteSchemaMigration.html | kellyhuberty/MarshmallowOrmament | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>MMSqliteSchemaMigration Class Reference</title>
<link rel="stylesheet" href="../css/style.css">
<meta name="viewport" content="initial-scale=1, maximum-scale=1.4">
<meta name="generator" content="appledoc 2.2.1 (build 1333)">
</head>
<body class="appledoc">
<header>
<div class="container" class="hide-in-xcode">
<h1 id="library-title">
<a href="../index.html">MarshmallowOrmament </a>
</h1>
<p id="developer-home">
<a href="../index.html">KellyHuberty</a>
</p>
</div>
</header>
<aside>
<div class="container">
<nav>
<ul id="header-buttons" role="toolbar">
<li><a href="../index.html">Index</a></li>
<li><a href="../hierarchy.html">Hierarchy</a></li>
<li id="on-this-page" role="navigation">
<label>
On This Page
<div class="chevron">
<div class="chevy chevron-left"></div>
<div class="chevy chevron-right"></div>
</div>
<select id="jump-to">
<option value="top">Jump To…</option>
<option value="tasks">Tasks</option>
<optgroup label="Properties">
<option value="//api/name/downgradeSql">downgradeSql</option>
<option value="//api/name/upgradeSql">upgradeSql</option>
</optgroup>
</select>
</label>
</li>
</ul>
</nav>
</div>
</aside>
<article>
<div id="overview_contents" class="container">
<div id="content">
<main role="main">
<h1 class="title">MMSqliteSchemaMigration Class Reference</h1>
<div class="section section-specification"><table cellspacing="0"><tbody>
<tr>
<th>Inherits from</th>
<td><a href="../Classes/MMSchemaMigration.html">MMSchemaMigration</a> : NSObject</td>
</tr><tr>
<th>Declared in</th>
<td>MMSqliteSchemaMigration.h</td>
</tr>
</tbody></table></div>
<div class="section section-tasks">
<a title="Tasks" name="tasks"></a>
<div class="task-list">
<div class="section-method">
<a name="//api/name/upgradeSql" title="upgradeSql"></a>
<h3 class="method-title"><code><a href="#//api/name/upgradeSql"> upgradeSql</a></code>
</h3>
<div class="method-info">
<div class="pointy-thing"></div>
<div class="method-info-container">
<div class="method-subsection method-declaration"><code>@property (nonatomic, readonly) NSMutableArray *upgradeSql</code></div>
</div>
</div>
</div><div class="section-method">
<a name="//api/name/downgradeSql" title="downgradeSql"></a>
<h3 class="method-title"><code><a href="#//api/name/downgradeSql"> downgradeSql</a></code>
</h3>
<div class="method-info">
<div class="pointy-thing"></div>
<div class="method-info-container">
<div class="method-subsection method-declaration"><code>@property (nonatomic, readonly) NSMutableArray *downgradeSql</code></div>
</div>
</div>
</div>
</div>
</div>
</main>
<footer>
<div class="footer-copyright">
<p class="copyright">Copyright © 2015 KellyHuberty. All rights reserved. Updated: 2015-10-23</p>
<p class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2.1 (build 1333)</a>.</p>
</div>
</footer>
</div>
</div>
</article>
<script src="../js/script.js"></script>
</body>
</html> |
a0f8faa/html/classv8_1_1AllocationProfile-members.html | v8-dox/v8-dox.github.io | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.11"/>
<title>V8 API Reference Guide for node.js v8.1.1 - v8.2.1: Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<script type="text/javascript">
$(document).ready(function() { init_search(); });
</script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">V8 API Reference Guide for node.js v8.1.1 - v8.2.1
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.11 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "search",false,'Search');
</script>
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
<li><a href="examples.html"><span>Examples</span></a></li>
<li>
<div id="MSearchBox" class="MSearchBoxInactive">
<span class="left">
<img id="MSearchSelect" src="search/mag_sel.png"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
<input type="text" id="MSearchField" value="Search" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
</span><span class="right">
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
</span>
</div>
</li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class List</span></a></li>
<li><a href="classes.html"><span>Class Index</span></a></li>
<li><a href="inherits.html"><span>Class Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class Members</span></a></li>
</ul>
</div>
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><a class="el" href="namespacev8.html">v8</a></li><li class="navelem"><a class="el" href="classv8_1_1AllocationProfile.html">AllocationProfile</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="headertitle">
<div class="title">v8::AllocationProfile Member List</div> </div>
</div><!--header-->
<div class="contents">
<p>This is the complete list of members for <a class="el" href="classv8_1_1AllocationProfile.html">v8::AllocationProfile</a>, including all inherited members.</p>
<table class="directory">
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1AllocationProfile.html#afea045dae30df5477088e2f0b7edb6c4">GetRootNode</a>()=0</td><td class="entry"><a class="el" href="classv8_1_1AllocationProfile.html">v8::AllocationProfile</a></td><td class="entry"><span class="mlabel">pure virtual</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>kNoColumnNumberInfo</b> (defined in <a class="el" href="classv8_1_1AllocationProfile.html">v8::AllocationProfile</a>)</td><td class="entry"><a class="el" href="classv8_1_1AllocationProfile.html">v8::AllocationProfile</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>kNoLineNumberInfo</b> (defined in <a class="el" href="classv8_1_1AllocationProfile.html">v8::AllocationProfile</a>)</td><td class="entry"><a class="el" href="classv8_1_1AllocationProfile.html">v8::AllocationProfile</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>~AllocationProfile</b>() (defined in <a class="el" href="classv8_1_1AllocationProfile.html">v8::AllocationProfile</a>)</td><td class="entry"><a class="el" href="classv8_1_1AllocationProfile.html">v8::AllocationProfile</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">virtual</span></td></tr>
</table></div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.11
</small></address>
</body>
</html>
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.