path
stringlengths 5
312
| repo_name
stringlengths 5
116
| content
stringlengths 2
1.04M
|
|---|---|---|
backend/appengine/templates/base/base.html
|
SamaraCardoso27/eMakeup
|
<!DOCTYPE html>
{% macro csrf_input() %}
<input type="hidden" value="{{ _csrf_code }}" name="_csrf_code"/>
{% endmacro %}
{% macro form_input(label,property,value,error_msg) %}
<div id="{{ property }}-div" class="form-group {{ ' has-error' if error_msg }}">
<label for="{{ property }}Input"
class="control-label">{{ label }} </label>
<input id="{{ property }}-input" type="text" class="form-control" name="{{ property }}"
value="{{ value }}"/>
<span id="{{ property }}-span" class="help-block">{{ error_msg }}</span>
</div>
{% endmacro %}
<html>
<head lang="en">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{% block title %}e-Makeup{% endblock %}</title>
<!-- Bootstrap -->
<script src="/static/jquery/js/jquery-1.11.1.min.js"></script>
<script src="/static/bootstrap/js/bootstrap.min.js"></script>
<link href="/static/bootstrap/css/bootstrap.css" rel="stylesheet">
<link href="/static/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="/static/bootstrap/css/bootstrap-social.css" rel="stylesheet">
<link href="/static/bootstrap/css/bootstrap-theme.css" rel="stylesheet">
<style>
.pad8 {
margin: 8px 15px;
color: #777
margin-top: 25px;
margin-right: 20px;
}
.navbar-inverse {
height: 60px;
}
.navbar-inverse .navbar-nav>li>a:hover, .navbar-inverse .navbar-nav>li>a:focus {
height: 60px;
}
.navbar-nav>li>a {
color: #D4D4D4;
font-family: 'Roboto',sans-serif;
font-size: 14px;
font-weight: 400;
/* padding-bottom: 37px; */
/* padding-top: 39px; */
padding-left: 22px;
padding-right: 22px;
}
.navbar-nav > li > a:hover {
color: #D4D4D4
}
.navbar-inverse .navbar-nav>li>a {
color: #E0E0E0;
}
@media (min-width: 768px){
.navbar-nav {
float: left;
margin: 0;
height: 1px;
}
}
.btn-success {
color: #ffffff;
background-color: #58b1c3;
border-color: #58b1c3;
background-image: linear-gradient(to bottom, rgba(88, 177, 195, 0.51) 0%, rgba(88, 177, 195, 0.42) 100%);
}
.btn-success:hover {
color: #ffffff;
background-color: #58b1c3;
border-color: #58b1c3;
background-image: linear-gradient(to bottom, #58b1c3 0%, #58b1c3 100%);
}
.dropdown-menu {
background-color: rgba(255, 255, 255, 0.8);
}
</style>
<!--[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]-->
<!-- 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:// -->
{% block js %}{% endblock %}
</head>
<body>
<div class="navbar-wrapper">
<div class="navbar navbar-inverse navbar-fixed-top" style="margin-bottom: 0px;">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a href="/" class="navbar-brand" style="color: #58B1C3">e-Makeup</a>
</div>
<div class="navbar-collapse collapse" style="overflow: hidden;background: #282828;">
<ul class="nav navbar-nav" >
{% macro select_tab(tab='') %}
<li {{ 'class=active' if tab=='GALLERY' }}><a href="/gallery">{% trans %}Galeria{% endtrans %}</a></li>
<li {{ 'class=active' if tab=='CONTACT' }}><a href="/contacts/new">{% trans %}Contato{% endtrans %}</a></li>
<li><a href="https://8-dot-projetoemakeup.appspot.com/students">{% trans %}CRUD - jQuery{% endtrans %}</a></li>
<li><a href="https://projetoemakeup.appspot.com/alunos">{% trans %}CRUD - AngularJS{% endtrans %}</a></li>
<li {{ 'class=active' if tab=='GALLERY' }}><a href="/updown">{% trans %}Upload/Download{% endtrans %}</a></li>
{% if _logged_user and 'ADMIN' in _logged_user.groups %}
<li {{ 'class=active' if tab=='ADMIN' }}><a href="/dashboard">{% trans %}Admin{% endtrans %}</a></li>
{% endif %}
{% endmacro %}
{% block tabs %}
{{ select_tab() }}
{% endblock %}
</ul>
<div class="nav navbar-nav pull-right pad8">
{% if _logged_user %}
<div class="dropdown">
<button class="btn btn-default dropdown-toggle" type="button" id="dropdownMenu1"
data-toggle="dropdown" style=" margin-top: 15px;margin-right: 15px;background: transparent;border: transparent;color: rgba(255, 255, 255, 0.35);">
{{ _logged_user.name }}
<span class="caret"></span>
</button>
<ul class="dropdown-menu" role="menu" aria-labelledby="dropdownMenu1">
<li role="presentation"><a role="menuitem" tabindex="-1" href="/account">{% trans %}Account{% endtrans %}</a></li>
<li role="presentation" class="divider"></li>
<li role="presentation">
<form action="{{ _logout_path }}" method="post" class="text-center">
<button class="btn btn-danger" type="submit">{% trans %}
Logout{% endtrans %}</button>
{{ csrf_input() }}
</form>
</li>
</ul>
</div>
{% else %}
<a class="btn btn-success" style="margin-top: 10px; margin-right: 15px;" href="{{ _login_path }}">{% trans %}Login{% endtrans %}</a>
{% endif %}
</div>
</div>
</div>
</div>
{% block body %}{% endblock %}
</body>
</html>
|
html/123456079722.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>
Group2 Architecture Interior Design 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=1492289738798&V_SEARCH.docsCount=3&V_DOCUMENT.docRank=20369&V_SEARCH.docsStart=20368&V_SEARCH.command=navigate&V_SEARCH.resultsJSP=/prfl.do&lang=fra&redirectUrl=/app/scr/imbs/ccc/rgstrtn/updt.sec?_flId?_flxKy=e1s1&estblmntNo=234567041301&profileId=61&_evId=bck&lang=eng&V_SEARCH.showStricts=false&prtl=1&_flId?_flId?_flxKy=e1s1" title="Français" lang="fr">Français</a></li>
</ul>
</div>
</div>
</section>
<div class="row">
<div class="brand col-xs-8 col-sm-9 col-md-6">
<a href="http://www.canada.ca/en/index.html"><object type="image/svg+xml" tabindex="-1" data="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/sig-blk-en.svg"></object><span class="wb-inv"> Government of Canada</span></a>
</div>
<section class="wb-mb-links col-xs-4 col-sm-3 visible-sm visible-xs" id="wb-glb-mn">
<h2>Search and menus</h2>
<ul class="list-inline text-right chvrn">
<li><a href="#mb-pnl" title="Search and menus" aria-controls="mb-pnl" class="overlay-lnk" role="button"><span class="glyphicon glyphicon-search"><span class="glyphicon glyphicon-th-list"><span class="wb-inv">Search and menus</span></span></span></a></li>
</ul>
<div id="mb-pnl"></div>
</section>
<!-- Site Search Removed -->
</div>
</div>
<nav role="navigation" id="wb-sm" class="wb-menu visible-md visible-lg" data-trgt="mb-pnl" data-ajax-fetch="//cdn.canada.ca/gcweb-cdn-dev/sitemenu/sitemenu-en.html" typeof="SiteNavigationElement">
<h2 class="wb-inv">Topics menu</h2>
<div class="container nvbar">
<div class="row">
<ul class="list-inline menu">
<li><a href="https://www.canada.ca/en/services/jobs.html">Jobs</a></li>
<li><a href="http://www.cic.gc.ca/english/index.asp">Immigration</a></li>
<li><a href="https://travel.gc.ca/">Travel</a></li>
<li><a href="https://www.canada.ca/en/services/business.html">Business</a></li>
<li><a href="https://www.canada.ca/en/services/benefits.html">Benefits</a></li>
<li><a href="http://healthycanadians.gc.ca/index-eng.php">Health</a></li>
<li><a href="https://www.canada.ca/en/services/taxes.html">Taxes</a></li>
<li><a href="https://www.canada.ca/en/services.html">More services</a></li>
</ul>
</div>
</div>
</nav>
<!-- EPIC BODY BEGIN -->
<nav role="navigation" id="wb-bc" class="" property="breadcrumb">
<h2 class="wb-inv">You are here:</h2>
<div class="container">
<div class="row">
<ol class="breadcrumb">
<li><a href="/eic/site/icgc.nsf/eng/home" title="Home">Home</a></li>
<li><a href="/eic/site/icgc.nsf/eng/h_07063.html" title="Industries and Business">Industries and Business</a></li>
<li><a href="/eic/site/ccc-rec.nsf/tpl-eng/../eng/home" >Canadian Company Capabilities</a></li>
</ol>
</div>
</div>
</nav>
</header>
<main id="wb-cont" role="main" property="mainContentOfPage" class="container">
<!-- End Header -->
<!-- Begin Body -->
<!-- Begin Body Title -->
<!-- End Body Title -->
<!-- Begin Body Head -->
<!-- End Body Head -->
<!-- Begin Body Content -->
<br>
<!-- Complete Profile -->
<!-- Company Information above tabbed area-->
<input id="showMore" type="hidden" value='more'/>
<input id="showLess" type="hidden" value='less'/>
<h1 id="wb-cont">
Company profile - Canadian Company Capabilities
</h1>
<div class="profileInfo hidden-print">
<ul class="list-inline">
<li><a href="cccSrch.do?lang=eng&profileId=&prtl=1&key.hitsPerPage=25&searchPage=%252Fapp%252Fccc%252Fsrch%252FcccBscSrch.do%253Flang%253Deng%2526amp%253Bprtl%253D1%2526amp%253Btagid%253D&V_SEARCH.scopeCategory=CCC.Root&V_SEARCH.depth=1&V_SEARCH.showStricts=false&V_SEARCH.sortSpec=title+asc&rstBtn.x=" class="btn btn-link">New Search</a> |</li>
<li><form name="searchForm" method="post" action="/app/ccc/srch/bscSrch.do">
<input type="hidden" name="lang" value="eng" />
<input type="hidden" name="profileId" value="" />
<input type="hidden" name="prtl" value="1" />
<input type="hidden" name="searchPage" value="%2Fapp%2Fccc%2Fsrch%2FcccBscSrch.do%3Flang%3Deng%26amp%3Bprtl%3D1%26amp%3Btagid%3D" />
<input type="hidden" name="V_SEARCH.scopeCategory" value="CCC.Root" />
<input type="hidden" name="V_SEARCH.depth" value="1" />
<input type="hidden" name="V_SEARCH.showStricts" value="false" />
<input id="repeatSearchBtn" class="btn btn-link" type="submit" value="Return to search results" />
</form></li>
<li>| <a href="nvgt.do?V_SEARCH.docsStart=20367&V_DOCUMENT.docRank=20368&V_SEARCH.docsCount=3&lang=eng&prtl=1&sbPrtl=&profile=cmpltPrfl&V_TOKEN=1492289768599&V_SEARCH.command=navigate&V_SEARCH.resultsJSP=%2fprfl.do&estblmntNo=234567041771&profileId=&key.newSearchLabel=">Previous Company</a></li>
<li>| <a href="nvgt.do?V_SEARCH.docsStart=20369&V_DOCUMENT.docRank=20370&V_SEARCH.docsCount=3&lang=eng&prtl=1&sbPrtl=&profile=cmpltPrfl&V_TOKEN=1492289768599&V_SEARCH.command=navigate&V_SEARCH.resultsJSP=%2fprfl.do&estblmntNo=234567133614&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>
Group2 Architecture Interior Design LTD
</h2>
<div class="row">
<div class="col-md-5">
<h2 class="h5 mrgn-bttm-0">Legal/Operating Name:</h2>
<p>Group2 Architecture Interior Design LTD</p>
<div class="mrgn-tp-md"></div>
<p class="mrgn-bttm-0" ><a href="http://www.group2.ca"
target="_blank" title="Website URL">http://www.group2.ca</a></p>
<p><a href="mailto:GENERAL2@group2.ca" title="GENERAL2@group2.ca">GENERAL2@group2.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">
120-510 12th Ave SW<br/>
CALGARY,
Alberta<br/>
T2R 0X5
<br/>
</address>
<h2 class="h5 mrgn-bttm-0">Location Address:</h2>
<address class="mrgn-bttm-md">
120-510 12th Ave SW<br/>
CALGARY,
Alberta<br/>
T2R 0X5
<br/>
</address>
<p class="mrgn-bttm-0"><abbr title="Telephone">Tel.</abbr>:
(403) 212-0960
</p>
<p class="mrgn-bttm-lg"><abbr title="Facsimile">Fax</abbr>:
(403) 212-0263</p>
</div>
<div class="col-md-3 mrgn-tp-md">
</div>
</div>
<div class="row mrgn-tp-md mrgn-bttm-md">
<div class="col-md-12">
</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>
Rob
Young
</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-->
Director
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Telephone:
</strong>
</div>
<div class="col-md-7">
(403) 212-0960
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Facsimile:
</strong>
</div>
<div class="col-md-7">
(403) 212-0263
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
ryoung@qyarch.ab.ca
</div>
</div>
<div class="row mrgn-tp-lg">
<div class="col-md-3">
<strong>
Sheldon
Quinn
</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-->
Director
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Telephone:
</strong>
</div>
<div class="col-md-7">
(403) 212-0960
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Facsimile:
</strong>
</div>
<div class="col-md-7">
(403) 212-0263
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
squinn@qyarch.ab.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">
1985
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Exporting:
</strong>
</div>
<div class="col-md-7">
No
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Primary Industry (NAICS):
</strong>
</div>
<div class="col-md-7">
541310 - Architectural Services
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Primary Business Activity:
</strong>
</div>
<div class="col-md-7">
Services
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Total Sales ($CDN):
</strong>
</div>
<div class="col-md-7">
$1,000,000 to $4,999,999
</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">
ARCHITECT - FEASIBILITY STUDY <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Service Name:
</strong>
</div>
<div class="col-md-9">
ARCHITECT - URBAN DESIGN <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Service Name:
</strong>
</div>
<div class="col-md-9">
ARCHITECT - HEALTH CARE - HOSPITALS <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Service Name:
</strong>
</div>
<div class="col-md-9">
ARCHITECT - HEALTH CARE - OTHER <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Service Name:
</strong>
</div>
<div class="col-md-9">
ARCHITECT - EDUCATION - UNIVERSITIES <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Service Name:
</strong>
</div>
<div class="col-md-9">
ARCHITECT - EDUCATION - OTHER <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Service Name:
</strong>
</div>
<div class="col-md-9">
ARCHITECT - INDUSTRIAL <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Service Name:
</strong>
</div>
<div class="col-md-9">
ARCHITECT - COMMERCIAL (LOW RISE) <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Service Name:
</strong>
</div>
<div class="col-md-9">
ARCHITECT - OFFICE BUILDING - LOW RISE <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Service Name:
</strong>
</div>
<div class="col-md-9">
ARCHITECT - HOTELS/TOURISM <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Service Name:
</strong>
</div>
<div class="col-md-9">
ARCHITECT - SPORTS FACILITIES <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Service Name:
</strong>
</div>
<div class="col-md-9">
ARCHITECT - RESIDENTIAL - HIGH RISE <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Service Name:
</strong>
</div>
<div class="col-md-9">
ARCHITECT - RESIDENTIAL - LOW COST <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Service Name:
</strong>
</div>
<div class="col-md-9">
ARCHITECT - GOVERNMENT <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Service Name:
</strong>
</div>
<div class="col-md-9">
ARCHITECT - FUNCTIONAL PROGRAMMING <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Service Name:
</strong>
</div>
<div class="col-md-9">
ARCHITECT - ARCHITECTURAL PROGRAMMING <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Service Name:
</strong>
</div>
<div class="col-md-9">
ARCHITECT - MASTER PLANNING <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Service Name:
</strong>
</div>
<div class="col-md-9">
ARCHITECT - SITE ANALYSIS <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Service Name:
</strong>
</div>
<div class="col-md-9">
ARCHITECT - GRAPHICS <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Service Name:
</strong>
</div>
<div class="col-md-9">
ARCHITECT - PROJECT CONSTRUCTION MANAGEMENT <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Service Name:
</strong>
</div>
<div class="col-md-9">
ARCHITECT - INTERIOR DESIGN <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Service Name:
</strong>
</div>
<div class="col-md-9">
ARCHITECT - OTHER (SPECIFY) <br>
</div>
</div>
</section>
<p class="mrgn-tp-lg text-right small hidden-print">
<a href="#wb-cont">top of page</a>
</p>
<!-- Technology Profile -->
<!-- Market Profile -->
<!-- Sector Information -->
<details class="mrgn-tp-md mrgn-bttm-md">
<summary>
Third-Party Information Liability Disclaimer
</summary>
<p>
Some of the information on this Web page has been provided by external sources. The Government of Canada is not responsible for the accuracy, reliability or currency of the information supplied by external sources. Users wishing to rely upon this information should consult directly with the source of the information. Content provided by external sources is not subject to official languages, privacy and accessibility requirements.
</p>
</details>
</details>
<details id="details-panel2">
<summary>
Contacts
</summary>
<h2 class="wb-invisible">
Contact information
</h2>
<!-- Contact Information -->
<section class="container-fluid">
<div class="row mrgn-tp-lg">
<div class="col-md-3">
<strong>
Rob
Young
</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-->
Director
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Telephone:
</strong>
</div>
<div class="col-md-7">
(403) 212-0960
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Facsimile:
</strong>
</div>
<div class="col-md-7">
(403) 212-0263
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
ryoung@qyarch.ab.ca
</div>
</div>
<div class="row mrgn-tp-lg">
<div class="col-md-3">
<strong>
Sheldon
Quinn
</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-->
Director
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Telephone:
</strong>
</div>
<div class="col-md-7">
(403) 212-0960
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Facsimile:
</strong>
</div>
<div class="col-md-7">
(403) 212-0263
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
squinn@qyarch.ab.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">
1985
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Exporting:
</strong>
</div>
<div class="col-md-7">
No
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Primary Industry (NAICS):
</strong>
</div>
<div class="col-md-7">
541310 - Architectural Services
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Primary Business Activity:
</strong>
</div>
<div class="col-md-7">
Services
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Total Sales ($CDN):
</strong>
</div>
<div class="col-md-7">
$1,000,000 to $4,999,999
</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">
ARCHITECT - FEASIBILITY STUDY <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Service Name:
</strong>
</div>
<div class="col-md-9">
ARCHITECT - URBAN DESIGN <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Service Name:
</strong>
</div>
<div class="col-md-9">
ARCHITECT - HEALTH CARE - HOSPITALS <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Service Name:
</strong>
</div>
<div class="col-md-9">
ARCHITECT - HEALTH CARE - OTHER <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Service Name:
</strong>
</div>
<div class="col-md-9">
ARCHITECT - EDUCATION - UNIVERSITIES <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Service Name:
</strong>
</div>
<div class="col-md-9">
ARCHITECT - EDUCATION - OTHER <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Service Name:
</strong>
</div>
<div class="col-md-9">
ARCHITECT - INDUSTRIAL <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Service Name:
</strong>
</div>
<div class="col-md-9">
ARCHITECT - COMMERCIAL (LOW RISE) <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Service Name:
</strong>
</div>
<div class="col-md-9">
ARCHITECT - OFFICE BUILDING - LOW RISE <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Service Name:
</strong>
</div>
<div class="col-md-9">
ARCHITECT - HOTELS/TOURISM <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Service Name:
</strong>
</div>
<div class="col-md-9">
ARCHITECT - SPORTS FACILITIES <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Service Name:
</strong>
</div>
<div class="col-md-9">
ARCHITECT - RESIDENTIAL - HIGH RISE <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Service Name:
</strong>
</div>
<div class="col-md-9">
ARCHITECT - RESIDENTIAL - LOW COST <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Service Name:
</strong>
</div>
<div class="col-md-9">
ARCHITECT - GOVERNMENT <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Service Name:
</strong>
</div>
<div class="col-md-9">
ARCHITECT - FUNCTIONAL PROGRAMMING <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Service Name:
</strong>
</div>
<div class="col-md-9">
ARCHITECT - ARCHITECTURAL PROGRAMMING <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Service Name:
</strong>
</div>
<div class="col-md-9">
ARCHITECT - MASTER PLANNING <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Service Name:
</strong>
</div>
<div class="col-md-9">
ARCHITECT - SITE ANALYSIS <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Service Name:
</strong>
</div>
<div class="col-md-9">
ARCHITECT - GRAPHICS <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Service Name:
</strong>
</div>
<div class="col-md-9">
ARCHITECT - PROJECT CONSTRUCTION MANAGEMENT <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Service Name:
</strong>
</div>
<div class="col-md-9">
ARCHITECT - INTERIOR DESIGN <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Service Name:
</strong>
</div>
<div class="col-md-9">
ARCHITECT - OTHER (SPECIFY) <br>
</div>
</div>
</section>
</details>
</div>
</div>
<div class="row">
<div class="col-md-12 text-right">
Last Update Date 2016-06-02
</div>
</div>
<!--
- Artifact ID: CBW - IMBS - CCC Search WAR
- Group ID: ca.gc.ic.strategis.imbs.ccc.search
- Version: 3.26
- Built-By: bamboo
- Build Timestamp: 2017-03-02T21:29:28Z
-->
<!-- End Body Content -->
<!-- Begin Body Foot -->
<!-- End Body Foot -->
<!-- END MAIN TABLE -->
<!-- End body -->
<!-- Begin footer -->
<div class="row pagedetails">
<div class="col-sm-5 col-xs-12 datemod">
<dl id="wb-dtmd">
<dt class=" hidden-print">Date Modified:</dt>
<dd class=" hidden-print">
<span><time>2017-03-02</time></span>
</dd>
</dl>
</div>
<div class="clear visible-xs"></div>
<div class="col-sm-4 col-xs-6">
</div>
<div class="col-sm-3 col-xs-6 text-right">
</div>
<div class="clear visible-xs"></div>
</div>
</main>
<footer role="contentinfo" id="wb-info">
<nav role="navigation" class="container wb-navcurr">
<h2 class="wb-inv">About government</h2>
<!-- EPIC FOOTER BEGIN -->
<!-- EPI-11638 Contact us -->
<ul class="list-unstyled colcount-sm-2 colcount-md-3">
<li><a href="http://www.ic.gc.ca/eic/site/icgc.nsf/eng/h_07026.html#pageid=E048-H00000&from=Industries">Contact us</a></li>
<li><a href="https://www.canada.ca/en/government/dept.html">Departments and agencies</a></li>
<li><a href="https://www.canada.ca/en/government/publicservice.html">Public service and military</a></li>
<li><a href="https://www.canada.ca/en/news.html">News</a></li>
<li><a href="https://www.canada.ca/en/government/system/laws.html">Treaties, laws and regulations</a></li>
<li><a href="https://www.canada.ca/en/transparency/reporting.html">Government-wide reporting</a></li>
<li><a href="http://pm.gc.ca/eng">Prime Minister</a></li>
<li><a href="https://www.canada.ca/en/government/system.html">How government works</a></li>
<li><a href="http://open.canada.ca/en/">Open government</a></li>
</ul>
</nav>
<div class="brand">
<div class="container">
<div class="row">
<nav class="col-md-10 ftr-urlt-lnk">
<h2 class="wb-inv">About this site</h2>
<ul>
<li><a href="https://www.canada.ca/en/social.html">Social media</a></li>
<li><a href="https://www.canada.ca/en/mobile.html">Mobile applications</a></li>
<li><a href="http://www1.canada.ca/en/newsite.html">About Canada.ca</a></li>
<li><a href="http://www.ic.gc.ca/eic/site/icgc.nsf/eng/h_07033.html">Terms and conditions</a></li>
<li><a href="http://www.ic.gc.ca/eic/site/icgc.nsf/eng/h_07033.html#p1">Privacy</a></li>
</ul>
</nav>
<div class="col-xs-6 visible-sm visible-xs tofpg">
<a href="#wb-cont">Top of Page <span class="glyphicon glyphicon-chevron-up"></span></a>
</div>
<div class="col-xs-6 col-md-2 text-right">
<object type="image/svg+xml" tabindex="-1" role="img" data="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/wmms-blk.svg" aria-label="Symbol of the Government of Canada"></object>
</div>
</div>
</div>
</div>
</footer>
<!--[if gte IE 9 | !IE ]><!-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/wet-boew.min.js"></script>
<!--<![endif]-->
<!--[if lt IE 9]>
<script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/ie8-wet-boew2.min.js"></script>
<![endif]-->
<script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/theme.min.js"></script>
<!-- EPI-10519 -->
<span class="wb-sessto"
data-wb-sessto='{"inactivity": 1800000, "reactionTime": 180000, "sessionalive": 1800000, "logouturl": "/app/ccc/srch/cccSrch.do?lang=eng&prtl=1"}'></span>
<script src="/eic/home.nsf/js/jQuery.externalOpensInNewWindow.js"></script>
<!-- EPI-11190 - Webtrends -->
<script src="/eic/home.nsf/js/webtrends.js"></script>
<script>var endTime = new Date();</script>
<noscript>
<div><img alt="" id="DCSIMG" width="1" height="1" src="//wt-sdc.ic.gc.ca/dcs6v67hwe0ei7wsv8g9fv50d_3k6i/njs.gif?dcsuri=/nojavascript&WT.js=No&WT.tv=9.4.0&dcssip=www.ic.gc.ca"/></div>
</noscript>
<!-- /Webtrends -->
<!-- JS deps -->
<script src="/eic/home.nsf/js/jquery.imagesloaded.js"></script>
<!-- EPI-11262 - Util JS -->
<script src="/eic/home.nsf/js/_WET_4-0_utils_canada.min.js"></script>
<!-- EPI-11383 -->
<script src="/eic/home.nsf/js/jQuery.icValidationErrors.js"></script>
<span style="display:none;" id='app-info' data-project-groupid='' data-project-artifactid='' data-project-version='' data-project-build-timestamp='' data-issue-tracking='' data-scm-sha1='' data-scm-sha1-abbrev='' data-scm-branch='' data-scm-commit-date=''></span>
</body></html>
<!-- End Footer -->
<!--
- Artifact ID: CBW - IMBS - CCC Search WAR
- Group ID: ca.gc.ic.strategis.imbs.ccc.search
- Version: 3.26
- Built-By: bamboo
- Build Timestamp: 2017-03-02T21:29:28Z
-->
|
public/assets/css/AdminLTE.css
|
Scouts-Sint-Joris/SIJOT-2.x
|
/*!
* AdminLTE v2.3.8
* Author: Almsaeed Studio
* Website: Almsaeed Studio <http://almsaeedstudio.com>
* License: Open source - MIT
* Please visit http://opensource.org/licenses/MIT for more information
!*/
@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,700,300italic,400italic,600italic);
/*
* Core: General Layout Style
* -------------------------
*/
html,
body {
min-height: 100%;
}
.layout-boxed html,
.layout-boxed body {
height: 100%;
}
body {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-family: 'Source Sans Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
font-weight: 400;
overflow-x: hidden;
overflow-y: auto;
}
/* Layout */
.wrapper {
min-height: 100%;
position: relative;
overflow: hidden;
}
.wrapper:before,
.wrapper:after {
content: " ";
display: table;
}
.wrapper:after {
clear: both;
}
.layout-boxed .wrapper {
max-width: 1250px;
margin: 0 auto;
min-height: 100%;
box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
position: relative;
}
.layout-boxed {
background: url('../img/boxed-bg.jpg') repeat fixed;
}
/*
* Content Wrapper - contains the main content
* ```.right-side has been deprecated as of v2.0.0 in favor of .content-wrapper ```
*/
.content-wrapper,
.right-side,
.main-footer {
-webkit-transition: -webkit-transform 0.3s ease-in-out, margin 0.3s ease-in-out;
-webkit-transition: margin 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
transition: margin 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
transition: transform 0.3s ease-in-out, margin 0.3s ease-in-out;
transition: transform 0.3s ease-in-out, margin 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
margin-left: 230px;
z-index: 820;
}
.layout-top-nav .content-wrapper,
.layout-top-nav .right-side,
.layout-top-nav .main-footer {
margin-left: 0;
}
@media (max-width: 767px) {
.content-wrapper,
.right-side,
.main-footer {
margin-left: 0;
}
}
@media (min-width: 768px) {
.sidebar-collapse .content-wrapper,
.sidebar-collapse .right-side,
.sidebar-collapse .main-footer {
margin-left: 0;
}
}
@media (max-width: 767px) {
.sidebar-open .content-wrapper,
.sidebar-open .right-side,
.sidebar-open .main-footer {
-webkit-transform: translate(230px, 0);
transform: translate(230px, 0);
}
}
.content-wrapper,
.right-side {
min-height: 100%;
background-color: #ecf0f5;
z-index: 800;
}
.main-footer {
background: #fff;
padding: 15px;
color: #444;
border-top: 1px solid #d2d6de;
}
/* Fixed layout */
.fixed .main-header,
.fixed .main-sidebar,
.fixed .left-side {
position: fixed;
}
.fixed .main-header {
top: 0;
right: 0;
left: 0;
}
.fixed .content-wrapper,
.fixed .right-side {
padding-top: 50px;
}
@media (max-width: 767px) {
.fixed .content-wrapper,
.fixed .right-side {
padding-top: 100px;
}
}
.fixed.layout-boxed .wrapper {
max-width: 100%;
}
body.hold-transition .content-wrapper,
body.hold-transition .right-side,
body.hold-transition .main-footer,
body.hold-transition .main-sidebar,
body.hold-transition .left-side,
body.hold-transition .main-header .navbar,
body.hold-transition .main-header .logo {
/* Fix for IE */
-webkit-transition: none;
transition: none;
}
/* Content */
.content {
min-height: 250px;
padding: 15px;
margin-right: auto;
margin-left: auto;
padding-left: 15px;
padding-right: 15px;
}
/* H1 - H6 font */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
font-family: 'Source Sans Pro', sans-serif;
}
/* General Links */
a {
color: #3c8dbc;
}
a:hover,
a:active,
a:focus {
outline: none;
text-decoration: none;
color: #72afd2;
}
/* Page Header */
.page-header {
margin: 10px 0 20px 0;
font-size: 22px;
}
.page-header > small {
color: #666;
display: block;
margin-top: 5px;
}
/*
* Component: Main Header
* ----------------------
*/
.main-header {
position: relative;
max-height: 100px;
z-index: 1030;
}
.main-header .navbar {
-webkit-transition: margin-left 0.3s ease-in-out;
transition: margin-left 0.3s ease-in-out;
margin-bottom: 0;
margin-left: 230px;
border: none;
min-height: 50px;
border-radius: 0;
}
.layout-top-nav .main-header .navbar {
margin-left: 0;
}
.main-header #navbar-search-input.form-control {
background: rgba(255, 255, 255, 0.2);
border-color: transparent;
}
.main-header #navbar-search-input.form-control:focus,
.main-header #navbar-search-input.form-control:active {
border-color: rgba(0, 0, 0, 0.1);
background: rgba(255, 255, 255, 0.9);
}
.main-header #navbar-search-input.form-control::-moz-placeholder {
color: #ccc;
opacity: 1;
}
.main-header #navbar-search-input.form-control:-ms-input-placeholder {
color: #ccc;
}
.main-header #navbar-search-input.form-control::-webkit-input-placeholder {
color: #ccc;
}
.main-header .navbar-custom-menu,
.main-header .navbar-right {
float: right;
}
@media (max-width: 991px) {
.main-header .navbar-custom-menu a,
.main-header .navbar-right a {
color: inherit;
background: transparent;
}
}
@media (max-width: 767px) {
.main-header .navbar-right {
float: none;
}
.navbar-collapse .main-header .navbar-right {
margin: 7.5px -15px;
}
.main-header .navbar-right > li {
color: inherit;
border: 0;
}
}
.main-header .sidebar-toggle {
float: left;
background-color: transparent;
background-image: none;
padding: 15px 15px;
font-family: fontAwesome;
}
.main-header .sidebar-toggle:before {
content: "\f0c9";
}
.main-header .sidebar-toggle:hover {
color: #fff;
}
.main-header .sidebar-toggle:focus,
.main-header .sidebar-toggle:active {
background: transparent;
}
.main-header .sidebar-toggle .icon-bar {
display: none;
}
.main-header .navbar .nav > li.user > a > .fa,
.main-header .navbar .nav > li.user > a > .glyphicon,
.main-header .navbar .nav > li.user > a > .ion {
margin-right: 5px;
}
.main-header .navbar .nav > li > a > .label {
position: absolute;
top: 9px;
right: 7px;
text-align: center;
font-size: 9px;
padding: 2px 3px;
line-height: .9;
}
.main-header .logo {
-webkit-transition: width 0.3s ease-in-out;
transition: width 0.3s ease-in-out;
display: block;
float: left;
height: 50px;
font-size: 20px;
line-height: 50px;
text-align: center;
width: 230px;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
padding: 0 15px;
font-weight: 300;
overflow: hidden;
}
.main-header .logo .logo-lg {
display: block;
}
.main-header .logo .logo-mini {
display: none;
}
.main-header .navbar-brand {
color: #fff;
}
.content-header {
position: relative;
padding: 15px 15px 0 15px;
}
.content-header > h1 {
margin: 0;
font-size: 24px;
}
.content-header > h1 > small {
font-size: 15px;
display: inline-block;
padding-left: 4px;
font-weight: 300;
}
.content-header > .breadcrumb {
float: right;
background: transparent;
margin-top: 0;
margin-bottom: 0;
font-size: 12px;
padding: 7px 5px;
position: absolute;
top: 15px;
right: 10px;
border-radius: 2px;
}
.content-header > .breadcrumb > li > a {
color: #444;
text-decoration: none;
display: inline-block;
}
.content-header > .breadcrumb > li > a > .fa,
.content-header > .breadcrumb > li > a > .glyphicon,
.content-header > .breadcrumb > li > a > .ion {
margin-right: 5px;
}
.content-header > .breadcrumb > li + li:before {
content: '>\00a0';
}
@media (max-width: 991px) {
.content-header > .breadcrumb {
position: relative;
margin-top: 5px;
top: 0;
right: 0;
float: none;
background: #d2d6de;
padding-left: 10px;
}
.content-header > .breadcrumb li:before {
color: #97a0b3;
}
}
.navbar-toggle {
color: #fff;
border: 0;
margin: 0;
padding: 15px 15px;
}
@media (max-width: 991px) {
.navbar-custom-menu .navbar-nav > li {
float: left;
}
.navbar-custom-menu .navbar-nav {
margin: 0;
float: left;
}
.navbar-custom-menu .navbar-nav > li > a {
padding-top: 15px;
padding-bottom: 15px;
line-height: 20px;
}
}
@media (max-width: 767px) {
.main-header {
position: relative;
}
.main-header .logo,
.main-header .navbar {
width: 100%;
float: none;
}
.main-header .navbar {
margin: 0;
}
.main-header .navbar-custom-menu {
float: right;
}
}
@media (max-width: 991px) {
.navbar-collapse.pull-left {
float: none !important;
}
.navbar-collapse.pull-left + .navbar-custom-menu {
display: block;
position: absolute;
top: 0;
right: 40px;
}
}
/*
* Component: Sidebar
* ------------------
*/
.main-sidebar,
.left-side {
position: absolute;
top: 0;
left: 0;
padding-top: 50px;
min-height: 100%;
width: 230px;
z-index: 810;
-webkit-transition: -webkit-transform 0.3s ease-in-out, width 0.3s ease-in-out;
-webkit-transition: width 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
transition: width 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
transition: transform 0.3s ease-in-out, width 0.3s ease-in-out;
transition: transform 0.3s ease-in-out, width 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
@media (max-width: 767px) {
.main-sidebar,
.left-side {
padding-top: 100px;
}
}
@media (max-width: 767px) {
.main-sidebar,
.left-side {
-webkit-transform: translate(-230px, 0);
transform: translate(-230px, 0);
}
}
@media (min-width: 768px) {
.sidebar-collapse .main-sidebar,
.sidebar-collapse .left-side {
-webkit-transform: translate(-230px, 0);
transform: translate(-230px, 0);
}
}
@media (max-width: 767px) {
.sidebar-open .main-sidebar,
.sidebar-open .left-side {
-webkit-transform: translate(0, 0);
transform: translate(0, 0);
}
}
.sidebar {
padding-bottom: 10px;
}
.sidebar-form input:focus {
border-color: transparent;
}
.user-panel {
position: relative;
width: 100%;
padding: 10px;
overflow: hidden;
}
.user-panel:before,
.user-panel:after {
content: " ";
display: table;
}
.user-panel:after {
clear: both;
}
.user-panel > .image > img {
width: 100%;
max-width: 45px;
height: auto;
}
.user-panel > .info {
padding: 5px 5px 5px 15px;
line-height: 1;
position: absolute;
left: 55px;
}
.user-panel > .info > p {
font-weight: 600;
margin-bottom: 9px;
}
.user-panel > .info > a {
text-decoration: none;
padding-right: 5px;
margin-top: 3px;
font-size: 11px;
}
.user-panel > .info > a > .fa,
.user-panel > .info > a > .ion,
.user-panel > .info > a > .glyphicon {
margin-right: 3px;
}
.sidebar-menu {
list-style: none;
margin: 0;
padding: 0;
}
.sidebar-menu > li {
position: relative;
margin: 0;
padding: 0;
}
.sidebar-menu > li > a {
padding: 12px 5px 12px 15px;
display: block;
}
.sidebar-menu > li > a > .fa,
.sidebar-menu > li > a > .glyphicon,
.sidebar-menu > li > a > .ion {
width: 20px;
}
.sidebar-menu > li .label,
.sidebar-menu > li .badge {
margin-right: 5px;
}
.sidebar-menu > li .badge {
margin-top: 3px;
}
.sidebar-menu li.header {
padding: 10px 25px 10px 15px;
font-size: 12px;
}
.sidebar-menu li > a > .fa-angle-left,
.sidebar-menu li > a > .pull-right-container > .fa-angle-left {
width: auto;
height: auto;
padding: 0;
margin-right: 10px;
}
.sidebar-menu li > a > .fa-angle-left {
position: absolute;
top: 50%;
right: 10px;
margin-top: -8px;
}
.sidebar-menu li.active > a > .fa-angle-left,
.sidebar-menu li.active > a > .pull-right-container > .fa-angle-left {
-webkit-transform: rotate(-90deg);
transform: rotate(-90deg);
}
.sidebar-menu li.active > .treeview-menu {
display: block;
}
.sidebar-menu .treeview-menu {
display: none;
list-style: none;
padding: 0;
margin: 0;
padding-left: 5px;
}
.sidebar-menu .treeview-menu .treeview-menu {
padding-left: 20px;
}
.sidebar-menu .treeview-menu > li {
margin: 0;
}
.sidebar-menu .treeview-menu > li > a {
padding: 5px 5px 5px 15px;
display: block;
font-size: 14px;
}
.sidebar-menu .treeview-menu > li > a > .fa,
.sidebar-menu .treeview-menu > li > a > .glyphicon,
.sidebar-menu .treeview-menu > li > a > .ion {
width: 20px;
}
.sidebar-menu .treeview-menu > li > a > .pull-right-container > .fa-angle-left,
.sidebar-menu .treeview-menu > li > a > .pull-right-container > .fa-angle-down,
.sidebar-menu .treeview-menu > li > a > .fa-angle-left,
.sidebar-menu .treeview-menu > li > a > .fa-angle-down {
width: auto;
}
/*
* Component: Sidebar Mini
*/
@media (min-width: 768px) {
.sidebar-mini.sidebar-collapse .content-wrapper,
.sidebar-mini.sidebar-collapse .right-side,
.sidebar-mini.sidebar-collapse .main-footer {
margin-left: 50px !important;
z-index: 840;
}
.sidebar-mini.sidebar-collapse .main-sidebar {
-webkit-transform: translate(0, 0);
transform: translate(0, 0);
width: 50px !important;
z-index: 850;
}
.sidebar-mini.sidebar-collapse .sidebar-menu > li {
position: relative;
}
.sidebar-mini.sidebar-collapse .sidebar-menu > li > a {
margin-right: 0;
}
.sidebar-mini.sidebar-collapse .sidebar-menu > li > a > span {
border-top-right-radius: 4px;
}
.sidebar-mini.sidebar-collapse .sidebar-menu > li:not(.treeview) > a > span {
border-bottom-right-radius: 4px;
}
.sidebar-mini.sidebar-collapse .sidebar-menu > li > .treeview-menu {
padding-top: 5px;
padding-bottom: 5px;
border-bottom-right-radius: 4px;
}
.sidebar-mini.sidebar-collapse .sidebar-menu > li:hover > a > span:not(.pull-right),
.sidebar-mini.sidebar-collapse .sidebar-menu > li:hover > .treeview-menu {
display: block !important;
position: absolute;
width: 180px;
left: 50px;
}
.sidebar-mini.sidebar-collapse .sidebar-menu > li:hover > a > span {
top: 0;
margin-left: -3px;
padding: 12px 5px 12px 20px;
background-color: inherit;
}
.sidebar-mini.sidebar-collapse .sidebar-menu > li:hover > a > .pull-right-container {
float: right;
width: auto!important;
left: 200px!important;
top: 10px!important;
}
.sidebar-mini.sidebar-collapse .sidebar-menu > li:hover > a > .pull-right-container > .label:not(:first-of-type) {
display: none;
}
.sidebar-mini.sidebar-collapse .sidebar-menu > li:hover > .treeview-menu {
top: 44px;
margin-left: 0;
}
.sidebar-mini.sidebar-collapse .main-sidebar .user-panel > .info,
.sidebar-mini.sidebar-collapse .sidebar-form,
.sidebar-mini.sidebar-collapse .sidebar-menu > li > a > span,
.sidebar-mini.sidebar-collapse .sidebar-menu > li > .treeview-menu,
.sidebar-mini.sidebar-collapse .sidebar-menu > li > a > .pull-right,
.sidebar-mini.sidebar-collapse .sidebar-menu li.header {
display: none !important;
-webkit-transform: translateZ(0);
}
.sidebar-mini.sidebar-collapse .main-header .logo {
width: 50px;
}
.sidebar-mini.sidebar-collapse .main-header .logo > .logo-mini {
display: block;
margin-left: -15px;
margin-right: -15px;
font-size: 18px;
}
.sidebar-mini.sidebar-collapse .main-header .logo > .logo-lg {
display: none;
}
.sidebar-mini.sidebar-collapse .main-header .navbar {
margin-left: 50px;
}
}
.sidebar-menu,
.main-sidebar .user-panel,
.sidebar-menu > li.header {
white-space: nowrap;
overflow: hidden;
}
.sidebar-menu:hover {
overflow: visible;
}
.sidebar-form,
.sidebar-menu > li.header {
overflow: hidden;
text-overflow: clip;
}
.sidebar-menu li > a {
position: relative;
}
.sidebar-menu li > a > .pull-right-container {
position: absolute;
right: 10px;
top: 50%;
margin-top: -7px;
}
/*
* Component: Control sidebar. By default, this is the right sidebar.
*/
.control-sidebar-bg {
position: fixed;
z-index: 1000;
bottom: 0;
}
.control-sidebar-bg,
.control-sidebar {
top: 0;
right: -230px;
width: 230px;
-webkit-transition: right 0.3s ease-in-out;
transition: right 0.3s ease-in-out;
}
.control-sidebar {
position: absolute;
padding-top: 50px;
z-index: 1010;
}
@media (max-width: 768px) {
.control-sidebar {
padding-top: 100px;
}
}
.control-sidebar > .tab-content {
padding: 10px 15px;
}
.control-sidebar.control-sidebar-open,
.control-sidebar.control-sidebar-open + .control-sidebar-bg {
right: 0;
}
.control-sidebar-open .control-sidebar-bg,
.control-sidebar-open .control-sidebar {
right: 0;
}
@media (min-width: 768px) {
.control-sidebar-open .content-wrapper,
.control-sidebar-open .right-side,
.control-sidebar-open .main-footer {
margin-right: 230px;
}
}
.nav-tabs.control-sidebar-tabs > li:first-of-type > a,
.nav-tabs.control-sidebar-tabs > li:first-of-type > a:hover,
.nav-tabs.control-sidebar-tabs > li:first-of-type > a:focus {
border-left-width: 0;
}
.nav-tabs.control-sidebar-tabs > li > a {
border-radius: 0;
}
.nav-tabs.control-sidebar-tabs > li > a,
.nav-tabs.control-sidebar-tabs > li > a:hover {
border-top: none;
border-right: none;
border-left: 1px solid transparent;
border-bottom: 1px solid transparent;
}
.nav-tabs.control-sidebar-tabs > li > a .icon {
font-size: 16px;
}
.nav-tabs.control-sidebar-tabs > li.active > a,
.nav-tabs.control-sidebar-tabs > li.active > a:hover,
.nav-tabs.control-sidebar-tabs > li.active > a:focus,
.nav-tabs.control-sidebar-tabs > li.active > a:active {
border-top: none;
border-right: none;
border-bottom: none;
}
@media (max-width: 768px) {
.nav-tabs.control-sidebar-tabs {
display: table;
}
.nav-tabs.control-sidebar-tabs > li {
display: table-cell;
}
}
.control-sidebar-heading {
font-weight: 400;
font-size: 16px;
padding: 10px 0;
margin-bottom: 10px;
}
.control-sidebar-subheading {
display: block;
font-weight: 400;
font-size: 14px;
}
.control-sidebar-menu {
list-style: none;
padding: 0;
margin: 0 -15px;
}
.control-sidebar-menu > li > a {
display: block;
padding: 10px 15px;
}
.control-sidebar-menu > li > a:before,
.control-sidebar-menu > li > a:after {
content: " ";
display: table;
}
.control-sidebar-menu > li > a:after {
clear: both;
}
.control-sidebar-menu > li > a > .control-sidebar-subheading {
margin-top: 0;
}
.control-sidebar-menu .menu-icon {
float: left;
width: 35px;
height: 35px;
border-radius: 50%;
text-align: center;
line-height: 35px;
}
.control-sidebar-menu .menu-info {
margin-left: 45px;
margin-top: 3px;
}
.control-sidebar-menu .menu-info > .control-sidebar-subheading {
margin: 0;
}
.control-sidebar-menu .menu-info > p {
margin: 0;
font-size: 11px;
}
.control-sidebar-menu .progress {
margin: 0;
}
.control-sidebar-dark {
color: #b8c7ce;
}
.control-sidebar-dark,
.control-sidebar-dark + .control-sidebar-bg {
background: #222d32;
}
.control-sidebar-dark .nav-tabs.control-sidebar-tabs {
border-bottom: #1c2529;
}
.control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a {
background: #181f23;
color: #b8c7ce;
}
.control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a,
.control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a:hover,
.control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a:focus {
border-left-color: #141a1d;
border-bottom-color: #141a1d;
}
.control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a:hover,
.control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a:focus,
.control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a:active {
background: #1c2529;
}
.control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a:hover {
color: #fff;
}
.control-sidebar-dark .nav-tabs.control-sidebar-tabs > li.active > a,
.control-sidebar-dark .nav-tabs.control-sidebar-tabs > li.active > a:hover,
.control-sidebar-dark .nav-tabs.control-sidebar-tabs > li.active > a:focus,
.control-sidebar-dark .nav-tabs.control-sidebar-tabs > li.active > a:active {
background: #222d32;
color: #fff;
}
.control-sidebar-dark .control-sidebar-heading,
.control-sidebar-dark .control-sidebar-subheading {
color: #fff;
}
.control-sidebar-dark .control-sidebar-menu > li > a:hover {
background: #1e282c;
}
.control-sidebar-dark .control-sidebar-menu > li > a .menu-info > p {
color: #b8c7ce;
}
.control-sidebar-light {
color: #5e5e5e;
}
.control-sidebar-light,
.control-sidebar-light + .control-sidebar-bg {
background: #f9fafc;
border-left: 1px solid #d2d6de;
}
.control-sidebar-light .nav-tabs.control-sidebar-tabs {
border-bottom: #d2d6de;
}
.control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a {
background: #e8ecf4;
color: #444;
}
.control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a,
.control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a:hover,
.control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a:focus {
border-left-color: #d2d6de;
border-bottom-color: #d2d6de;
}
.control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a:hover,
.control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a:focus,
.control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a:active {
background: #eff1f7;
}
.control-sidebar-light .nav-tabs.control-sidebar-tabs > li.active > a,
.control-sidebar-light .nav-tabs.control-sidebar-tabs > li.active > a:hover,
.control-sidebar-light .nav-tabs.control-sidebar-tabs > li.active > a:focus,
.control-sidebar-light .nav-tabs.control-sidebar-tabs > li.active > a:active {
background: #f9fafc;
color: #111;
}
.control-sidebar-light .control-sidebar-heading,
.control-sidebar-light .control-sidebar-subheading {
color: #111;
}
.control-sidebar-light .control-sidebar-menu {
margin-left: -14px;
}
.control-sidebar-light .control-sidebar-menu > li > a:hover {
background: #f4f4f5;
}
.control-sidebar-light .control-sidebar-menu > li > a .menu-info > p {
color: #5e5e5e;
}
/*
* Component: Dropdown menus
* -------------------------
*/
/*Dropdowns in general*/
.dropdown-menu {
box-shadow: none;
border-color: #eee;
}
.dropdown-menu > li > a {
color: #777;
}
.dropdown-menu > li > a > .glyphicon,
.dropdown-menu > li > a > .fa,
.dropdown-menu > li > a > .ion {
margin-right: 10px;
}
.dropdown-menu > li > a:hover {
background-color: #e1e3e9;
color: #333;
}
.dropdown-menu > .divider {
background-color: #eee;
}
.navbar-nav > .notifications-menu > .dropdown-menu,
.navbar-nav > .messages-menu > .dropdown-menu,
.navbar-nav > .tasks-menu > .dropdown-menu {
width: 280px;
padding: 0 0 0 0;
margin: 0;
top: 100%;
}
.navbar-nav > .notifications-menu > .dropdown-menu > li,
.navbar-nav > .messages-menu > .dropdown-menu > li,
.navbar-nav > .tasks-menu > .dropdown-menu > li {
position: relative;
}
.navbar-nav > .notifications-menu > .dropdown-menu > li.header,
.navbar-nav > .messages-menu > .dropdown-menu > li.header,
.navbar-nav > .tasks-menu > .dropdown-menu > li.header {
border-top-left-radius: 4px;
border-top-right-radius: 4px;
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
background-color: #ffffff;
padding: 7px 10px;
border-bottom: 1px solid #f4f4f4;
color: #444444;
font-size: 14px;
}
.navbar-nav > .notifications-menu > .dropdown-menu > li.footer > a,
.navbar-nav > .messages-menu > .dropdown-menu > li.footer > a,
.navbar-nav > .tasks-menu > .dropdown-menu > li.footer > a {
border-top-left-radius: 0;
border-top-right-radius: 0;
border-bottom-right-radius: 4px;
border-bottom-left-radius: 4px;
font-size: 12px;
background-color: #fff;
padding: 7px 10px;
border-bottom: 1px solid #eeeeee;
color: #444 !important;
text-align: center;
}
@media (max-width: 991px) {
.navbar-nav > .notifications-menu > .dropdown-menu > li.footer > a,
.navbar-nav > .messages-menu > .dropdown-menu > li.footer > a,
.navbar-nav > .tasks-menu > .dropdown-menu > li.footer > a {
background: #fff !important;
color: #444 !important;
}
}
.navbar-nav > .notifications-menu > .dropdown-menu > li.footer > a:hover,
.navbar-nav > .messages-menu > .dropdown-menu > li.footer > a:hover,
.navbar-nav > .tasks-menu > .dropdown-menu > li.footer > a:hover {
text-decoration: none;
font-weight: normal;
}
.navbar-nav > .notifications-menu > .dropdown-menu > li .menu,
.navbar-nav > .messages-menu > .dropdown-menu > li .menu,
.navbar-nav > .tasks-menu > .dropdown-menu > li .menu {
max-height: 200px;
margin: 0;
padding: 0;
list-style: none;
overflow-x: hidden;
}
.navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a,
.navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a,
.navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a {
display: block;
white-space: nowrap;
/* Prevent text from breaking */
border-bottom: 1px solid #f4f4f4;
}
.navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a:hover,
.navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:hover,
.navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a:hover {
background: #f4f4f4;
text-decoration: none;
}
.navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a {
color: #444444;
overflow: hidden;
text-overflow: ellipsis;
padding: 10px;
}
.navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .glyphicon,
.navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .fa,
.navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .ion {
width: 20px;
}
.navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a {
margin: 0;
padding: 10px 10px;
}
.navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a > div > img {
margin: auto 10px auto auto;
width: 40px;
height: 40px;
}
.navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a > h4 {
padding: 0;
margin: 0 0 0 45px;
color: #444444;
font-size: 15px;
position: relative;
}
.navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a > h4 > small {
color: #999999;
font-size: 10px;
position: absolute;
top: 0;
right: 0;
}
.navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a > p {
margin: 0 0 0 45px;
font-size: 12px;
color: #888888;
}
.navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:before,
.navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:after {
content: " ";
display: table;
}
.navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:after {
clear: both;
}
.navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a {
padding: 10px;
}
.navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a > h3 {
font-size: 14px;
padding: 0;
margin: 0 0 10px 0;
color: #666666;
}
.navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a > .progress {
padding: 0;
margin: 0;
}
.navbar-nav > .user-menu > .dropdown-menu {
border-top-right-radius: 0;
border-top-left-radius: 0;
padding: 1px 0 0 0;
border-top-width: 0;
width: 280px;
}
.navbar-nav > .user-menu > .dropdown-menu,
.navbar-nav > .user-menu > .dropdown-menu > .user-body {
border-bottom-right-radius: 4px;
border-bottom-left-radius: 4px;
}
.navbar-nav > .user-menu > .dropdown-menu > li.user-header {
height: 175px;
padding: 10px;
text-align: center;
}
.navbar-nav > .user-menu > .dropdown-menu > li.user-header > img {
z-index: 5;
height: 90px;
width: 90px;
border: 3px solid;
border-color: transparent;
border-color: rgba(255, 255, 255, 0.2);
}
.navbar-nav > .user-menu > .dropdown-menu > li.user-header > p {
z-index: 5;
color: #fff;
color: rgba(255, 255, 255, 0.8);
font-size: 17px;
margin-top: 10px;
}
.navbar-nav > .user-menu > .dropdown-menu > li.user-header > p > small {
display: block;
font-size: 12px;
}
.navbar-nav > .user-menu > .dropdown-menu > .user-body {
padding: 15px;
border-bottom: 1px solid #f4f4f4;
border-top: 1px solid #dddddd;
}
.navbar-nav > .user-menu > .dropdown-menu > .user-body:before,
.navbar-nav > .user-menu > .dropdown-menu > .user-body:after {
content: " ";
display: table;
}
.navbar-nav > .user-menu > .dropdown-menu > .user-body:after {
clear: both;
}
.navbar-nav > .user-menu > .dropdown-menu > .user-body a {
color: #444 !important;
}
@media (max-width: 991px) {
.navbar-nav > .user-menu > .dropdown-menu > .user-body a {
background: #fff !important;
color: #444 !important;
}
}
.navbar-nav > .user-menu > .dropdown-menu > .user-footer {
background-color: #f9f9f9;
padding: 10px;
}
.navbar-nav > .user-menu > .dropdown-menu > .user-footer:before,
.navbar-nav > .user-menu > .dropdown-menu > .user-footer:after {
content: " ";
display: table;
}
.navbar-nav > .user-menu > .dropdown-menu > .user-footer:after {
clear: both;
}
.navbar-nav > .user-menu > .dropdown-menu > .user-footer .btn-default {
color: #666666;
}
@media (max-width: 991px) {
.navbar-nav > .user-menu > .dropdown-menu > .user-footer .btn-default:hover {
background-color: #f9f9f9;
}
}
.navbar-nav > .user-menu .user-image {
float: left;
width: 25px;
height: 25px;
border-radius: 50%;
margin-right: 10px;
margin-top: -2px;
}
@media (max-width: 767px) {
.navbar-nav > .user-menu .user-image {
float: none;
margin-right: 0;
margin-top: -8px;
line-height: 10px;
}
}
/* Add fade animation to dropdown menus by appending
the class .animated-dropdown-menu to the .dropdown-menu ul (or ol)*/
.open:not(.dropup) > .animated-dropdown-menu {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation: flipInX 0.7s both;
animation: flipInX 0.7s both;
}
@keyframes flipInX {
0% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
-webkit-transition-timing-function: ease-in;
transition-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
-webkit-transition-timing-function: ease-in;
transition-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
}
100% {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
@-webkit-keyframes flipInX {
0% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
-webkit-transition-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
-webkit-transition-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
}
100% {
-webkit-transform: perspective(400px);
}
}
/* Fix dropdown menu in navbars */
.navbar-custom-menu > .navbar-nav > li {
position: relative;
}
.navbar-custom-menu > .navbar-nav > li > .dropdown-menu {
position: absolute;
right: 0;
left: auto;
}
@media (max-width: 991px) {
.navbar-custom-menu > .navbar-nav {
float: right;
}
.navbar-custom-menu > .navbar-nav > li {
position: static;
}
.navbar-custom-menu > .navbar-nav > li > .dropdown-menu {
position: absolute;
right: 5%;
left: auto;
border: 1px solid #ddd;
background: #fff;
}
}
/*
* Component: Form
* ---------------
*/
.form-control {
border-radius: 0;
box-shadow: none;
border-color: #d2d6de;
}
.form-control:focus {
border-color: #3c8dbc;
box-shadow: none;
}
.form-control::-moz-placeholder,
.form-control:-ms-input-placeholder,
.form-control::-webkit-input-placeholder {
color: #bbb;
opacity: 1;
}
.form-control:not(select) {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
.form-group.has-success label {
color: #00a65a;
}
.form-group.has-success .form-control,
.form-group.has-success .input-group-addon {
border-color: #00a65a;
box-shadow: none;
}
.form-group.has-success .help-block {
color: #00a65a;
}
.form-group.has-warning label {
color: #f39c12;
}
.form-group.has-warning .form-control,
.form-group.has-warning .input-group-addon {
border-color: #f39c12;
box-shadow: none;
}
.form-group.has-warning .help-block {
color: #f39c12;
}
.form-group.has-error label {
color: #dd4b39;
}
.form-group.has-error .form-control,
.form-group.has-error .input-group-addon {
border-color: #dd4b39;
box-shadow: none;
}
.form-group.has-error .help-block {
color: #dd4b39;
}
/* Input group */
.input-group .input-group-addon {
border-radius: 0;
border-color: #d2d6de;
background-color: #fff;
}
/* button groups */
.btn-group-vertical .btn.btn-flat:first-of-type,
.btn-group-vertical .btn.btn-flat:last-of-type {
border-radius: 0;
}
.icheck > label {
padding-left: 0;
}
/* support Font Awesome icons in form-control */
.form-control-feedback.fa {
line-height: 34px;
}
.input-lg + .form-control-feedback.fa,
.input-group-lg + .form-control-feedback.fa,
.form-group-lg .form-control + .form-control-feedback.fa {
line-height: 46px;
}
.input-sm + .form-control-feedback.fa,
.input-group-sm + .form-control-feedback.fa,
.form-group-sm .form-control + .form-control-feedback.fa {
line-height: 30px;
}
/*
* Component: Progress Bar
* -----------------------
*/
.progress,
.progress > .progress-bar {
box-shadow: none;
}
.progress,
.progress > .progress-bar,
.progress .progress-bar,
.progress > .progress-bar .progress-bar {
border-radius: 1px;
}
/* size variation */
.progress.sm,
.progress-sm {
height: 10px;
}
.progress.sm,
.progress-sm,
.progress.sm .progress-bar,
.progress-sm .progress-bar {
border-radius: 1px;
}
.progress.xs,
.progress-xs {
height: 7px;
}
.progress.xs,
.progress-xs,
.progress.xs .progress-bar,
.progress-xs .progress-bar {
border-radius: 1px;
}
.progress.xxs,
.progress-xxs {
height: 3px;
}
.progress.xxs,
.progress-xxs,
.progress.xxs .progress-bar,
.progress-xxs .progress-bar {
border-radius: 1px;
}
/* Vertical bars */
.progress.vertical {
position: relative;
width: 30px;
height: 200px;
display: inline-block;
margin-right: 10px;
}
.progress.vertical > .progress-bar {
width: 100%;
position: absolute;
bottom: 0;
}
.progress.vertical.sm,
.progress.vertical.progress-sm {
width: 20px;
}
.progress.vertical.xs,
.progress.vertical.progress-xs {
width: 10px;
}
.progress.vertical.xxs,
.progress.vertical.progress-xxs {
width: 3px;
}
.progress-group .progress-text {
font-weight: 600;
}
.progress-group .progress-number {
float: right;
}
/* Remove margins from progress bars when put in a table */
.table tr > td .progress {
margin: 0;
}
.progress-bar-light-blue,
.progress-bar-primary {
background-color: #3c8dbc;
}
.progress-striped .progress-bar-light-blue,
.progress-striped .progress-bar-primary {
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-bar-green,
.progress-bar-success {
background-color: #00a65a;
}
.progress-striped .progress-bar-green,
.progress-striped .progress-bar-success {
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-bar-aqua,
.progress-bar-info {
background-color: #00c0ef;
}
.progress-striped .progress-bar-aqua,
.progress-striped .progress-bar-info {
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-bar-yellow,
.progress-bar-warning {
background-color: #f39c12;
}
.progress-striped .progress-bar-yellow,
.progress-striped .progress-bar-warning {
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-bar-red,
.progress-bar-danger {
background-color: #dd4b39;
}
.progress-striped .progress-bar-red,
.progress-striped .progress-bar-danger {
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
/*
* Component: Small Box
* --------------------
*/
.small-box {
border-radius: 2px;
position: relative;
display: block;
margin-bottom: 20px;
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}
.small-box > .inner {
padding: 10px;
}
.small-box > .small-box-footer {
position: relative;
text-align: center;
padding: 3px 0;
color: #fff;
color: rgba(255, 255, 255, 0.8);
display: block;
z-index: 10;
background: rgba(0, 0, 0, 0.1);
text-decoration: none;
}
.small-box > .small-box-footer:hover {
color: #fff;
background: rgba(0, 0, 0, 0.15);
}
.small-box h3 {
font-size: 38px;
font-weight: bold;
margin: 0 0 10px 0;
white-space: nowrap;
padding: 0;
}
.small-box p {
font-size: 15px;
}
.small-box p > small {
display: block;
color: #f9f9f9;
font-size: 13px;
margin-top: 5px;
}
.small-box h3,
.small-box p {
z-index: 5;
}
.small-box .icon {
-webkit-transition: all 0.3s linear;
transition: all 0.3s linear;
position: absolute;
top: -10px;
right: 10px;
z-index: 0;
font-size: 90px;
color: rgba(0, 0, 0, 0.15);
}
.small-box:hover {
text-decoration: none;
color: #f9f9f9;
}
.small-box:hover .icon {
font-size: 95px;
}
@media (max-width: 767px) {
.small-box {
text-align: center;
}
.small-box .icon {
display: none;
}
.small-box p {
font-size: 12px;
}
}
/*
* Component: Box
* --------------
*/
.box {
position: relative;
border-radius: 3px;
background: #ffffff;
border-top: 3px solid #d2d6de;
margin-bottom: 20px;
width: 100%;
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}
.box.box-primary {
border-top-color: #3c8dbc;
}
.box.box-info {
border-top-color: #00c0ef;
}
.box.box-danger {
border-top-color: #dd4b39;
}
.box.box-warning {
border-top-color: #f39c12;
}
.box.box-success {
border-top-color: #00a65a;
}
.box.box-default {
border-top-color: #d2d6de;
}
.box.collapsed-box .box-body,
.box.collapsed-box .box-footer {
display: none;
}
.box .nav-stacked > li {
border-bottom: 1px solid #f4f4f4;
margin: 0;
}
.box .nav-stacked > li:last-of-type {
border-bottom: none;
}
.box.height-control .box-body {
max-height: 300px;
overflow: auto;
}
.box .border-right {
border-right: 1px solid #f4f4f4;
}
.box .border-left {
border-left: 1px solid #f4f4f4;
}
.box.box-solid {
border-top: 0;
}
.box.box-solid > .box-header .btn.btn-default {
background: transparent;
}
.box.box-solid > .box-header .btn:hover,
.box.box-solid > .box-header a:hover {
background: rgba(0, 0, 0, 0.1);
}
.box.box-solid.box-default {
border: 1px solid #d2d6de;
}
.box.box-solid.box-default > .box-header {
color: #444;
background: #d2d6de;
background-color: #d2d6de;
}
.box.box-solid.box-default > .box-header a,
.box.box-solid.box-default > .box-header .btn {
color: #444;
}
.box.box-solid.box-primary {
border: 1px solid #3c8dbc;
}
.box.box-solid.box-primary > .box-header {
color: #fff;
background: #3c8dbc;
background-color: #3c8dbc;
}
.box.box-solid.box-primary > .box-header a,
.box.box-solid.box-primary > .box-header .btn {
color: #fff;
}
.box.box-solid.box-info {
border: 1px solid #00c0ef;
}
.box.box-solid.box-info > .box-header {
color: #fff;
background: #00c0ef;
background-color: #00c0ef;
}
.box.box-solid.box-info > .box-header a,
.box.box-solid.box-info > .box-header .btn {
color: #fff;
}
.box.box-solid.box-danger {
border: 1px solid #dd4b39;
}
.box.box-solid.box-danger > .box-header {
color: #fff;
background: #dd4b39;
background-color: #dd4b39;
}
.box.box-solid.box-danger > .box-header a,
.box.box-solid.box-danger > .box-header .btn {
color: #fff;
}
.box.box-solid.box-warning {
border: 1px solid #f39c12;
}
.box.box-solid.box-warning > .box-header {
color: #fff;
background: #f39c12;
background-color: #f39c12;
}
.box.box-solid.box-warning > .box-header a,
.box.box-solid.box-warning > .box-header .btn {
color: #fff;
}
.box.box-solid.box-success {
border: 1px solid #00a65a;
}
.box.box-solid.box-success > .box-header {
color: #fff;
background: #00a65a;
background-color: #00a65a;
}
.box.box-solid.box-success > .box-header a,
.box.box-solid.box-success > .box-header .btn {
color: #fff;
}
.box.box-solid > .box-header > .box-tools .btn {
border: 0;
box-shadow: none;
}
.box.box-solid[class*='bg'] > .box-header {
color: #fff;
}
.box .box-group > .box {
margin-bottom: 5px;
}
.box .knob-label {
text-align: center;
color: #333;
font-weight: 100;
font-size: 12px;
margin-bottom: 0.3em;
}
.box > .overlay,
.overlay-wrapper > .overlay,
.box > .loading-img,
.overlay-wrapper > .loading-img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.box .overlay,
.overlay-wrapper .overlay {
z-index: 50;
background: rgba(255, 255, 255, 0.7);
border-radius: 3px;
}
.box .overlay > .fa,
.overlay-wrapper .overlay > .fa {
position: absolute;
top: 50%;
left: 50%;
margin-left: -15px;
margin-top: -15px;
color: #000;
font-size: 30px;
}
.box .overlay.dark,
.overlay-wrapper .overlay.dark {
background: rgba(0, 0, 0, 0.5);
}
.box-header:before,
.box-body:before,
.box-footer:before,
.box-header:after,
.box-body:after,
.box-footer:after {
content: " ";
display: table;
}
.box-header:after,
.box-body:after,
.box-footer:after {
clear: both;
}
.box-header {
color: #444;
display: block;
padding: 10px;
position: relative;
}
.box-header.with-border {
border-bottom: 1px solid #f4f4f4;
}
.collapsed-box .box-header.with-border {
border-bottom: none;
}
.box-header > .fa,
.box-header > .glyphicon,
.box-header > .ion,
.box-header .box-title {
display: inline-block;
font-size: 18px;
margin: 0;
line-height: 1;
}
.box-header > .fa,
.box-header > .glyphicon,
.box-header > .ion {
margin-right: 5px;
}
.box-header > .box-tools {
position: absolute;
right: 10px;
top: 5px;
}
.box-header > .box-tools [data-toggle="tooltip"] {
position: relative;
}
.box-header > .box-tools.pull-right .dropdown-menu {
right: 0;
left: auto;
}
.btn-box-tool {
padding: 5px;
font-size: 12px;
background: transparent;
color: #97a0b3;
}
.open .btn-box-tool,
.btn-box-tool:hover {
color: #606c84;
}
.btn-box-tool.btn:active {
box-shadow: none;
}
.box-body {
border-top-left-radius: 0;
border-top-right-radius: 0;
border-bottom-right-radius: 3px;
border-bottom-left-radius: 3px;
padding: 10px;
}
.no-header .box-body {
border-top-right-radius: 3px;
border-top-left-radius: 3px;
}
.box-body > .table {
margin-bottom: 0;
}
.box-body .fc {
margin-top: 5px;
}
.box-body .full-width-chart {
margin: -19px;
}
.box-body.no-padding .full-width-chart {
margin: -9px;
}
.box-body .box-pane {
border-top-left-radius: 0;
border-top-right-radius: 0;
border-bottom-right-radius: 0;
border-bottom-left-radius: 3px;
}
.box-body .box-pane-right {
border-top-left-radius: 0;
border-top-right-radius: 0;
border-bottom-right-radius: 3px;
border-bottom-left-radius: 0;
}
.box-footer {
border-top-left-radius: 0;
border-top-right-radius: 0;
border-bottom-right-radius: 3px;
border-bottom-left-radius: 3px;
border-top: 1px solid #f4f4f4;
padding: 10px;
background-color: #fff;
}
.chart-legend {
margin: 10px 0;
}
@media (max-width: 991px) {
.chart-legend > li {
float: left;
margin-right: 10px;
}
}
.box-comments {
background: #f7f7f7;
}
.box-comments .box-comment {
padding: 8px 0;
border-bottom: 1px solid #eee;
}
.box-comments .box-comment:before,
.box-comments .box-comment:after {
content: " ";
display: table;
}
.box-comments .box-comment:after {
clear: both;
}
.box-comments .box-comment:last-of-type {
border-bottom: 0;
}
.box-comments .box-comment:first-of-type {
padding-top: 0;
}
.box-comments .box-comment img {
float: left;
}
.box-comments .comment-text {
margin-left: 40px;
color: #555;
}
.box-comments .username {
color: #444;
display: block;
font-weight: 600;
}
.box-comments .text-muted {
font-weight: 400;
font-size: 12px;
}
/* Widget: TODO LIST */
.todo-list {
margin: 0;
padding: 0;
list-style: none;
overflow: auto;
}
.todo-list > li {
border-radius: 2px;
padding: 10px;
background: #f4f4f4;
margin-bottom: 2px;
border-left: 2px solid #e6e7e8;
color: #444;
}
.todo-list > li:last-of-type {
margin-bottom: 0;
}
.todo-list > li > input[type='checkbox'] {
margin: 0 10px 0 5px;
}
.todo-list > li .text {
display: inline-block;
margin-left: 5px;
font-weight: 600;
}
.todo-list > li .label {
margin-left: 10px;
font-size: 9px;
}
.todo-list > li .tools {
display: none;
float: right;
color: #dd4b39;
}
.todo-list > li .tools > .fa,
.todo-list > li .tools > .glyphicon,
.todo-list > li .tools > .ion {
margin-right: 5px;
cursor: pointer;
}
.todo-list > li:hover .tools {
display: inline-block;
}
.todo-list > li.done {
color: #999;
}
.todo-list > li.done .text {
text-decoration: line-through;
font-weight: 500;
}
.todo-list > li.done .label {
background: #d2d6de !important;
}
.todo-list .danger {
border-left-color: #dd4b39;
}
.todo-list .warning {
border-left-color: #f39c12;
}
.todo-list .info {
border-left-color: #00c0ef;
}
.todo-list .success {
border-left-color: #00a65a;
}
.todo-list .primary {
border-left-color: #3c8dbc;
}
.todo-list .handle {
display: inline-block;
cursor: move;
margin: 0 5px;
}
/* Chat widget (DEPRECATED - this will be removed in the next major release. Use Direct Chat instead)*/
.chat {
padding: 5px 20px 5px 10px;
}
.chat .item {
margin-bottom: 10px;
}
.chat .item:before,
.chat .item:after {
content: " ";
display: table;
}
.chat .item:after {
clear: both;
}
.chat .item > img {
width: 40px;
height: 40px;
border: 2px solid transparent;
border-radius: 50%;
}
.chat .item > .online {
border: 2px solid #00a65a;
}
.chat .item > .offline {
border: 2px solid #dd4b39;
}
.chat .item > .message {
margin-left: 55px;
margin-top: -40px;
}
.chat .item > .message > .name {
display: block;
font-weight: 600;
}
.chat .item > .attachment {
border-radius: 3px;
background: #f4f4f4;
margin-left: 65px;
margin-right: 15px;
padding: 10px;
}
.chat .item > .attachment > h4 {
margin: 0 0 5px 0;
font-weight: 600;
font-size: 14px;
}
.chat .item > .attachment > p,
.chat .item > .attachment > .filename {
font-weight: 600;
font-size: 13px;
font-style: italic;
margin: 0;
}
.chat .item > .attachment:before,
.chat .item > .attachment:after {
content: " ";
display: table;
}
.chat .item > .attachment:after {
clear: both;
}
.box-input {
max-width: 200px;
}
.modal .panel-body {
color: #444;
}
/*
* Component: Info Box
* -------------------
*/
.info-box {
display: block;
min-height: 90px;
background: #fff;
width: 100%;
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
border-radius: 2px;
margin-bottom: 15px;
}
.info-box small {
font-size: 14px;
}
.info-box .progress {
background: rgba(0, 0, 0, 0.2);
margin: 5px -10px 5px -10px;
height: 2px;
}
.info-box .progress,
.info-box .progress .progress-bar {
border-radius: 0;
}
.info-box .progress .progress-bar {
background: #fff;
}
.info-box-icon {
border-top-left-radius: 2px;
border-top-right-radius: 0;
border-bottom-right-radius: 0;
border-bottom-left-radius: 2px;
display: block;
float: left;
height: 90px;
width: 90px;
text-align: center;
font-size: 45px;
line-height: 90px;
background: rgba(0, 0, 0, 0.2);
}
.info-box-icon > img {
max-width: 100%;
}
.info-box-content {
padding: 5px 10px;
margin-left: 90px;
}
.info-box-number {
display: block;
font-weight: bold;
font-size: 18px;
}
.progress-description,
.info-box-text {
display: block;
font-size: 14px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.info-box-text {
text-transform: uppercase;
}
.info-box-more {
display: block;
}
.progress-description {
margin: 0;
}
/*
* Component: Timeline
* -------------------
*/
.timeline {
position: relative;
margin: 0 0 30px 0;
padding: 0;
list-style: none;
}
.timeline:before {
content: '';
position: absolute;
top: 0;
bottom: 0;
width: 4px;
background: #ddd;
left: 31px;
margin: 0;
border-radius: 2px;
}
.timeline > li {
position: relative;
margin-right: 10px;
margin-bottom: 15px;
}
.timeline > li:before,
.timeline > li:after {
content: " ";
display: table;
}
.timeline > li:after {
clear: both;
}
.timeline > li > .timeline-item {
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
border-radius: 3px;
margin-top: 0;
background: #fff;
color: #444;
margin-left: 60px;
margin-right: 15px;
padding: 0;
position: relative;
}
.timeline > li > .timeline-item > .time {
color: #999;
float: right;
padding: 10px;
font-size: 12px;
}
.timeline > li > .timeline-item > .timeline-header {
margin: 0;
color: #555;
border-bottom: 1px solid #f4f4f4;
padding: 10px;
font-size: 16px;
line-height: 1.1;
}
.timeline > li > .timeline-item > .timeline-header > a {
font-weight: 600;
}
.timeline > li > .timeline-item > .timeline-body,
.timeline > li > .timeline-item > .timeline-footer {
padding: 10px;
}
.timeline > li > .fa,
.timeline > li > .glyphicon,
.timeline > li > .ion {
width: 30px;
height: 30px;
font-size: 15px;
line-height: 30px;
position: absolute;
color: #666;
background: #d2d6de;
border-radius: 50%;
text-align: center;
left: 18px;
top: 0;
}
.timeline > .time-label > span {
font-weight: 600;
padding: 5px;
display: inline-block;
background-color: #fff;
border-radius: 4px;
}
.timeline-inverse > li > .timeline-item {
background: #f0f0f0;
border: 1px solid #ddd;
box-shadow: none;
}
.timeline-inverse > li > .timeline-item > .timeline-header {
border-bottom-color: #ddd;
}
/*
* Component: Button
* -----------------
*/
.btn {
border-radius: 3px;
box-shadow: none;
border: 1px solid transparent;
}
.btn.uppercase {
text-transform: uppercase;
}
.btn.btn-flat {
border-radius: 0;
box-shadow: none;
border-width: 1px;
}
.btn:active {
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn:focus {
outline: none;
}
.btn.btn-file {
position: relative;
overflow: hidden;
}
.btn.btn-file > input[type='file'] {
position: absolute;
top: 0;
right: 0;
min-width: 100%;
min-height: 100%;
font-size: 100px;
text-align: right;
opacity: 0;
filter: alpha(opacity=0);
outline: none;
background: white;
cursor: inherit;
display: block;
}
.btn-default {
background-color: #f4f4f4;
color: #444;
border-color: #ddd;
}
.btn-default:hover,
.btn-default:active,
.btn-default.hover {
background-color: #e7e7e7;
}
.btn-primary {
background-color: #3c8dbc;
border-color: #367fa9;
}
.btn-primary:hover,
.btn-primary:active,
.btn-primary.hover {
background-color: #367fa9;
}
.btn-success {
background-color: #00a65a;
border-color: #008d4c;
}
.btn-success:hover,
.btn-success:active,
.btn-success.hover {
background-color: #008d4c;
}
.btn-info {
background-color: #00c0ef;
border-color: #00acd6;
}
.btn-info:hover,
.btn-info:active,
.btn-info.hover {
background-color: #00acd6;
}
.btn-danger {
background-color: #dd4b39;
border-color: #d73925;
}
.btn-danger:hover,
.btn-danger:active,
.btn-danger.hover {
background-color: #d73925;
}
.btn-warning {
background-color: #f39c12;
border-color: #e08e0b;
}
.btn-warning:hover,
.btn-warning:active,
.btn-warning.hover {
background-color: #e08e0b;
}
.btn-outline {
border: 1px solid #fff;
background: transparent;
color: #fff;
}
.btn-outline:hover,
.btn-outline:focus,
.btn-outline:active {
color: rgba(255, 255, 255, 0.7);
border-color: rgba(255, 255, 255, 0.7);
}
.btn-link {
box-shadow: none;
}
.btn[class*='bg-']:hover {
box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.2);
}
.btn-app {
border-radius: 3px;
position: relative;
padding: 15px 5px;
margin: 0 0 10px 10px;
min-width: 80px;
height: 60px;
text-align: center;
color: #666;
border: 1px solid #ddd;
background-color: #f4f4f4;
font-size: 12px;
}
.btn-app > .fa,
.btn-app > .glyphicon,
.btn-app > .ion {
font-size: 20px;
display: block;
}
.btn-app:hover {
background: #f4f4f4;
color: #444;
border-color: #aaa;
}
.btn-app:active,
.btn-app:focus {
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn-app > .badge {
position: absolute;
top: -3px;
right: -10px;
font-size: 10px;
font-weight: 400;
}
/*
* Component: Callout
* ------------------
*/
.callout {
border-radius: 3px;
margin: 0 0 20px 0;
padding: 15px 30px 15px 15px;
border-left: 5px solid #eee;
}
.callout a {
color: #fff;
text-decoration: underline;
}
.callout a:hover {
color: #eee;
}
.callout h4 {
margin-top: 0;
font-weight: 600;
}
.callout p:last-child {
margin-bottom: 0;
}
.callout code,
.callout .highlight {
background-color: #fff;
}
.callout.callout-danger {
border-color: #c23321;
}
.callout.callout-warning {
border-color: #c87f0a;
}
.callout.callout-info {
border-color: #0097bc;
}
.callout.callout-success {
border-color: #00733e;
}
/*
* Component: alert
* ----------------
*/
.alert {
border-radius: 3px;
}
.alert h4 {
font-weight: 600;
}
.alert .icon {
margin-right: 10px;
}
.alert .close {
color: #000;
opacity: 0.2;
filter: alpha(opacity=20);
}
.alert .close:hover {
opacity: 0.5;
filter: alpha(opacity=50);
}
.alert a {
color: #fff;
text-decoration: underline;
}
.alert-success {
border-color: #008d4c;
}
.alert-danger,
.alert-error {
border-color: #d73925;
}
.alert-warning {
border-color: #e08e0b;
}
.alert-info {
border-color: #00acd6;
}
/*
* Component: Nav
* --------------
*/
.nav > li > a:hover,
.nav > li > a:active,
.nav > li > a:focus {
color: #444;
background: #f7f7f7;
}
/* NAV PILLS */
.nav-pills > li > a {
border-radius: 0;
border-top: 3px solid transparent;
color: #444;
}
.nav-pills > li > a > .fa,
.nav-pills > li > a > .glyphicon,
.nav-pills > li > a > .ion {
margin-right: 5px;
}
.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
border-top-color: #3c8dbc;
}
.nav-pills > li.active > a {
font-weight: 600;
}
/* NAV STACKED */
.nav-stacked > li > a {
border-radius: 0;
border-top: 0;
border-left: 3px solid transparent;
color: #444;
}
.nav-stacked > li.active > a,
.nav-stacked > li.active > a:hover {
background: transparent;
color: #444;
border-top: 0;
border-left-color: #3c8dbc;
}
.nav-stacked > li.header {
border-bottom: 1px solid #ddd;
color: #777;
margin-bottom: 10px;
padding: 5px 10px;
text-transform: uppercase;
}
/* NAV TABS */
.nav-tabs-custom {
margin-bottom: 20px;
background: #fff;
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
border-radius: 3px;
}
.nav-tabs-custom > .nav-tabs {
margin: 0;
border-bottom-color: #f4f4f4;
border-top-right-radius: 3px;
border-top-left-radius: 3px;
}
.nav-tabs-custom > .nav-tabs > li {
border-top: 3px solid transparent;
margin-bottom: -2px;
margin-right: 5px;
}
.nav-tabs-custom > .nav-tabs > li > a {
color: #444;
border-radius: 0;
}
.nav-tabs-custom > .nav-tabs > li > a.text-muted {
color: #999;
}
.nav-tabs-custom > .nav-tabs > li > a,
.nav-tabs-custom > .nav-tabs > li > a:hover {
background: transparent;
margin: 0;
}
.nav-tabs-custom > .nav-tabs > li > a:hover {
color: #999;
}
.nav-tabs-custom > .nav-tabs > li:not(.active) > a:hover,
.nav-tabs-custom > .nav-tabs > li:not(.active) > a:focus,
.nav-tabs-custom > .nav-tabs > li:not(.active) > a:active {
border-color: transparent;
}
.nav-tabs-custom > .nav-tabs > li.active {
border-top-color: #3c8dbc;
}
.nav-tabs-custom > .nav-tabs > li.active > a,
.nav-tabs-custom > .nav-tabs > li.active:hover > a {
background-color: #fff;
color: #444;
}
.nav-tabs-custom > .nav-tabs > li.active > a {
border-top-color: transparent;
border-left-color: #f4f4f4;
border-right-color: #f4f4f4;
}
.nav-tabs-custom > .nav-tabs > li:first-of-type {
margin-left: 0;
}
.nav-tabs-custom > .nav-tabs > li:first-of-type.active > a {
border-left-color: transparent;
}
.nav-tabs-custom > .nav-tabs.pull-right {
float: none !important;
}
.nav-tabs-custom > .nav-tabs.pull-right > li {
float: right;
}
.nav-tabs-custom > .nav-tabs.pull-right > li:first-of-type {
margin-right: 0;
}
.nav-tabs-custom > .nav-tabs.pull-right > li:first-of-type > a {
border-left-width: 1px;
}
.nav-tabs-custom > .nav-tabs.pull-right > li:first-of-type.active > a {
border-left-color: #f4f4f4;
border-right-color: transparent;
}
.nav-tabs-custom > .nav-tabs > li.header {
line-height: 35px;
padding: 0 10px;
font-size: 20px;
color: #444;
}
.nav-tabs-custom > .nav-tabs > li.header > .fa,
.nav-tabs-custom > .nav-tabs > li.header > .glyphicon,
.nav-tabs-custom > .nav-tabs > li.header > .ion {
margin-right: 5px;
}
.nav-tabs-custom > .tab-content {
background: #fff;
padding: 10px;
border-bottom-right-radius: 3px;
border-bottom-left-radius: 3px;
}
.nav-tabs-custom .dropdown.open > a:active,
.nav-tabs-custom .dropdown.open > a:focus {
background: transparent;
color: #999;
}
.nav-tabs-custom.tab-primary > .nav-tabs > li.active {
border-top-color: #3c8dbc;
}
.nav-tabs-custom.tab-info > .nav-tabs > li.active {
border-top-color: #00c0ef;
}
.nav-tabs-custom.tab-danger > .nav-tabs > li.active {
border-top-color: #dd4b39;
}
.nav-tabs-custom.tab-warning > .nav-tabs > li.active {
border-top-color: #f39c12;
}
.nav-tabs-custom.tab-success > .nav-tabs > li.active {
border-top-color: #00a65a;
}
.nav-tabs-custom.tab-default > .nav-tabs > li.active {
border-top-color: #d2d6de;
}
/* PAGINATION */
.pagination > li > a {
background: #fafafa;
color: #666;
}
.pagination.pagination-flat > li > a {
border-radius: 0 !important;
}
/*
* Component: Products List
* ------------------------
*/
.products-list {
list-style: none;
margin: 0;
padding: 0;
}
.products-list > .item {
border-radius: 3px;
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
padding: 10px 0;
background: #fff;
}
.products-list > .item:before,
.products-list > .item:after {
content: " ";
display: table;
}
.products-list > .item:after {
clear: both;
}
.products-list .product-img {
float: left;
}
.products-list .product-img img {
width: 50px;
height: 50px;
}
.products-list .product-info {
margin-left: 60px;
}
.products-list .product-title {
font-weight: 600;
}
.products-list .product-description {
display: block;
color: #999;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.product-list-in-box > .item {
box-shadow: none;
border-radius: 0;
border-bottom: 1px solid #f4f4f4;
}
.product-list-in-box > .item:last-of-type {
border-bottom-width: 0;
}
/*
* Component: 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 #f4f4f4;
}
.table > thead > tr > th {
border-bottom: 2px solid #f4f4f4;
}
.table tr td .progress {
margin-top: 5px;
}
.table-bordered {
border: 1px solid #f4f4f4;
}
.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
border: 1px solid #f4f4f4;
}
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
border-bottom-width: 2px;
}
.table.no-border,
.table.no-border td,
.table.no-border th {
border: 0;
}
/* .text-center in tables */
table.text-center,
table.text-center td,
table.text-center th {
text-align: center;
}
.table.align th {
text-align: left;
}
.table.align td {
text-align: right;
}
/*
* Component: Label
* ----------------
*/
.label-default {
background-color: #d2d6de;
color: #444;
}
/*
* Component: Direct Chat
* ----------------------
*/
.direct-chat .box-body {
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
position: relative;
overflow-x: hidden;
padding: 0;
}
.direct-chat.chat-pane-open .direct-chat-contacts {
-webkit-transform: translate(0, 0);
transform: translate(0, 0);
}
.direct-chat-messages {
-webkit-transform: translate(0, 0);
transform: translate(0, 0);
padding: 10px;
height: 250px;
overflow: auto;
}
.direct-chat-msg,
.direct-chat-text {
display: block;
}
.direct-chat-msg {
margin-bottom: 10px;
}
.direct-chat-msg:before,
.direct-chat-msg:after {
content: " ";
display: table;
}
.direct-chat-msg:after {
clear: both;
}
.direct-chat-messages,
.direct-chat-contacts {
-webkit-transition: -webkit-transform 0.5s ease-in-out;
transition: -webkit-transform 0.5s ease-in-out;
transition: transform 0.5s ease-in-out;
transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}
.direct-chat-text {
border-radius: 5px;
position: relative;
padding: 5px 10px;
background: #d2d6de;
border: 1px solid #d2d6de;
margin: 5px 0 0 50px;
color: #444;
}
.direct-chat-text:after,
.direct-chat-text:before {
position: absolute;
right: 100%;
top: 15px;
border: solid transparent;
border-right-color: #d2d6de;
content: ' ';
height: 0;
width: 0;
pointer-events: none;
}
.direct-chat-text:after {
border-width: 5px;
margin-top: -5px;
}
.direct-chat-text:before {
border-width: 6px;
margin-top: -6px;
}
.right .direct-chat-text {
margin-right: 50px;
margin-left: 0;
}
.right .direct-chat-text:after,
.right .direct-chat-text:before {
right: auto;
left: 100%;
border-right-color: transparent;
border-left-color: #d2d6de;
}
.direct-chat-img {
border-radius: 50%;
float: left;
width: 40px;
height: 40px;
}
.right .direct-chat-img {
float: right;
}
.direct-chat-info {
display: block;
margin-bottom: 2px;
font-size: 12px;
}
.direct-chat-name {
font-weight: 600;
}
.direct-chat-timestamp {
color: #999;
}
.direct-chat-contacts-open .direct-chat-contacts {
-webkit-transform: translate(0, 0);
transform: translate(0, 0);
}
.direct-chat-contacts {
-webkit-transform: translate(101%, 0);
transform: translate(101%, 0);
position: absolute;
top: 0;
bottom: 0;
height: 250px;
width: 100%;
background: #222d32;
color: #fff;
overflow: auto;
}
.contacts-list > li {
border-bottom: 1px solid rgba(0, 0, 0, 0.2);
padding: 10px;
margin: 0;
}
.contacts-list > li:before,
.contacts-list > li:after {
content: " ";
display: table;
}
.contacts-list > li:after {
clear: both;
}
.contacts-list > li:last-of-type {
border-bottom: none;
}
.contacts-list-img {
border-radius: 50%;
width: 40px;
float: left;
}
.contacts-list-info {
margin-left: 45px;
color: #fff;
}
.contacts-list-name,
.contacts-list-status {
display: block;
}
.contacts-list-name {
font-weight: 600;
}
.contacts-list-status {
font-size: 12px;
}
.contacts-list-date {
color: #aaa;
font-weight: normal;
}
.contacts-list-msg {
color: #999;
}
.direct-chat-danger .right > .direct-chat-text {
background: #dd4b39;
border-color: #dd4b39;
color: #fff;
}
.direct-chat-danger .right > .direct-chat-text:after,
.direct-chat-danger .right > .direct-chat-text:before {
border-left-color: #dd4b39;
}
.direct-chat-primary .right > .direct-chat-text {
background: #3c8dbc;
border-color: #3c8dbc;
color: #fff;
}
.direct-chat-primary .right > .direct-chat-text:after,
.direct-chat-primary .right > .direct-chat-text:before {
border-left-color: #3c8dbc;
}
.direct-chat-warning .right > .direct-chat-text {
background: #f39c12;
border-color: #f39c12;
color: #fff;
}
.direct-chat-warning .right > .direct-chat-text:after,
.direct-chat-warning .right > .direct-chat-text:before {
border-left-color: #f39c12;
}
.direct-chat-info .right > .direct-chat-text {
background: #00c0ef;
border-color: #00c0ef;
color: #fff;
}
.direct-chat-info .right > .direct-chat-text:after,
.direct-chat-info .right > .direct-chat-text:before {
border-left-color: #00c0ef;
}
.direct-chat-success .right > .direct-chat-text {
background: #00a65a;
border-color: #00a65a;
color: #fff;
}
.direct-chat-success .right > .direct-chat-text:after,
.direct-chat-success .right > .direct-chat-text:before {
border-left-color: #00a65a;
}
/*
* Component: Users List
* ---------------------
*/
.users-list > li {
width: 25%;
float: left;
padding: 10px;
text-align: center;
}
.users-list > li img {
border-radius: 50%;
max-width: 100%;
height: auto;
}
.users-list > li > a:hover,
.users-list > li > a:hover .users-list-name {
color: #999;
}
.users-list-name,
.users-list-date {
display: block;
}
.users-list-name {
font-weight: 600;
color: #444;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.users-list-date {
color: #999;
font-size: 12px;
}
/*
* Component: Carousel
* -------------------
*/
.carousel-control.left,
.carousel-control.right {
background-image: none;
}
.carousel-control > .fa {
font-size: 40px;
position: absolute;
top: 50%;
z-index: 5;
display: inline-block;
margin-top: -20px;
}
/*
* Component: modal
* ----------------
*/
.modal {
background: rgba(0, 0, 0, 0.3);
}
.modal-content {
border-radius: 0;
box-shadow: 0 2px 3px rgba(0, 0, 0, 0.125);
border: 0;
}
@media (min-width: 768px) {
.modal-content {
box-shadow: 0 2px 3px rgba(0, 0, 0, 0.125);
}
}
.modal-header {
border-bottom-color: #f4f4f4;
}
.modal-footer {
border-top-color: #f4f4f4;
}
.modal-primary .modal-header,
.modal-primary .modal-footer {
border-color: #307095;
}
.modal-warning .modal-header,
.modal-warning .modal-footer {
border-color: #c87f0a;
}
.modal-info .modal-header,
.modal-info .modal-footer {
border-color: #0097bc;
}
.modal-success .modal-header,
.modal-success .modal-footer {
border-color: #00733e;
}
.modal-danger .modal-header,
.modal-danger .modal-footer {
border-color: #c23321;
}
/*
* Component: Social Widgets
* -------------------------
*/
.box-widget {
border: none;
position: relative;
}
.widget-user .widget-user-header {
padding: 20px;
height: 120px;
border-top-right-radius: 3px;
border-top-left-radius: 3px;
}
.widget-user .widget-user-username {
margin-top: 0;
margin-bottom: 5px;
font-size: 25px;
font-weight: 300;
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}
.widget-user .widget-user-desc {
margin-top: 0;
}
.widget-user .widget-user-image {
position: absolute;
top: 65px;
left: 50%;
margin-left: -45px;
}
.widget-user .widget-user-image > img {
width: 90px;
height: auto;
border: 3px solid #fff;
}
.widget-user .box-footer {
padding-top: 30px;
}
.widget-user-2 .widget-user-header {
padding: 20px;
border-top-right-radius: 3px;
border-top-left-radius: 3px;
}
.widget-user-2 .widget-user-username {
margin-top: 5px;
margin-bottom: 5px;
font-size: 25px;
font-weight: 300;
}
.widget-user-2 .widget-user-desc {
margin-top: 0;
}
.widget-user-2 .widget-user-username,
.widget-user-2 .widget-user-desc {
margin-left: 75px;
}
.widget-user-2 .widget-user-image > img {
width: 65px;
height: auto;
float: left;
}
/*
* Page: Mailbox
* -------------
*/
.mailbox-messages > .table {
margin: 0;
}
.mailbox-controls {
padding: 5px;
}
.mailbox-controls.with-border {
border-bottom: 1px solid #f4f4f4;
}
.mailbox-read-info {
border-bottom: 1px solid #f4f4f4;
padding: 10px;
}
.mailbox-read-info h3 {
font-size: 20px;
margin: 0;
}
.mailbox-read-info h5 {
margin: 0;
padding: 5px 0 0 0;
}
.mailbox-read-time {
color: #999;
font-size: 13px;
}
.mailbox-read-message {
padding: 10px;
}
.mailbox-attachments li {
float: left;
width: 200px;
border: 1px solid #eee;
margin-bottom: 10px;
margin-right: 10px;
}
.mailbox-attachment-name {
font-weight: bold;
color: #666;
}
.mailbox-attachment-icon,
.mailbox-attachment-info,
.mailbox-attachment-size {
display: block;
}
.mailbox-attachment-info {
padding: 10px;
background: #f4f4f4;
}
.mailbox-attachment-size {
color: #999;
font-size: 12px;
}
.mailbox-attachment-icon {
text-align: center;
font-size: 65px;
color: #666;
padding: 20px 10px;
}
.mailbox-attachment-icon.has-img {
padding: 0;
}
.mailbox-attachment-icon.has-img > img {
max-width: 100%;
height: auto;
}
/*
* Page: Lock Screen
* -----------------
*/
/* ADD THIS CLASS TO THE <BODY> TAG */
.lockscreen {
background: #d2d6de;
}
.lockscreen-logo {
font-size: 35px;
text-align: center;
margin-bottom: 25px;
font-weight: 300;
}
.lockscreen-logo a {
color: #444;
}
.lockscreen-wrapper {
max-width: 400px;
margin: 0 auto;
margin-top: 10%;
}
/* User name [optional] */
.lockscreen .lockscreen-name {
text-align: center;
font-weight: 600;
}
/* Will contain the image and the sign in form */
.lockscreen-item {
border-radius: 4px;
padding: 0;
background: #fff;
position: relative;
margin: 10px auto 30px auto;
width: 290px;
}
/* User image */
.lockscreen-image {
border-radius: 50%;
position: absolute;
left: -10px;
top: -25px;
background: #fff;
padding: 5px;
z-index: 10;
}
.lockscreen-image > img {
border-radius: 50%;
width: 70px;
height: 70px;
}
/* Contains the password input and the login button */
.lockscreen-credentials {
margin-left: 70px;
}
.lockscreen-credentials .form-control {
border: 0;
}
.lockscreen-credentials .btn {
background-color: #fff;
border: 0;
padding: 0 10px;
}
.lockscreen-footer {
margin-top: 10px;
}
/*
* Page: Login & Register
* ----------------------
*/
.login-logo,
.register-logo {
font-size: 35px;
text-align: center;
margin-bottom: 25px;
font-weight: 300;
}
.login-logo a,
.register-logo a {
color: #444;
}
.login-page,
.register-page {
background: #d2d6de;
}
.login-box,
.register-box {
width: 360px;
margin: 7% auto;
}
@media (max-width: 768px) {
.login-box,
.register-box {
width: 90%;
margin-top: 20px;
}
}
.login-box-body,
.register-box-body {
background: #fff;
padding: 20px;
border-top: 0;
color: #666;
}
.login-box-body .form-control-feedback,
.register-box-body .form-control-feedback {
color: #777;
}
.login-box-msg,
.register-box-msg {
margin: 0;
text-align: center;
padding: 0 20px 20px 20px;
}
.social-auth-links {
margin: 10px 0;
}
/*
* Page: 400 and 500 error pages
* ------------------------------
*/
.error-page {
width: 600px;
margin: 20px auto 0 auto;
}
@media (max-width: 991px) {
.error-page {
width: 100%;
}
}
.error-page > .headline {
float: left;
font-size: 100px;
font-weight: 300;
}
@media (max-width: 991px) {
.error-page > .headline {
float: none;
text-align: center;
}
}
.error-page > .error-content {
margin-left: 190px;
display: block;
}
@media (max-width: 991px) {
.error-page > .error-content {
margin-left: 0;
}
}
.error-page > .error-content > h3 {
font-weight: 300;
font-size: 25px;
}
@media (max-width: 991px) {
.error-page > .error-content > h3 {
text-align: center;
}
}
/*
* Page: Invoice
* -------------
*/
.invoice {
position: relative;
background: #fff;
border: 1px solid #f4f4f4;
padding: 20px;
margin: 10px 25px;
}
.invoice-title {
margin-top: 0;
}
/*
* Page: Profile
* -------------
*/
.profile-user-img {
margin: 0 auto;
width: 100px;
padding: 3px;
border: 3px solid #d2d6de;
}
.profile-username {
font-size: 21px;
margin-top: 5px;
}
.post {
border-bottom: 1px solid #d2d6de;
margin-bottom: 15px;
padding-bottom: 15px;
color: #666;
}
.post:last-of-type {
border-bottom: 0;
margin-bottom: 0;
padding-bottom: 0;
}
.post .user-block {
margin-bottom: 15px;
}
/*
* Social Buttons for Bootstrap
*
* Copyright 2013-2015 Panayiotis Lipiridis
* Licensed under the MIT License
*
* https://github.com/lipis/bootstrap-social
*/
.btn-social {
position: relative;
padding-left: 44px;
text-align: left;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.btn-social > :first-child {
position: absolute;
left: 0;
top: 0;
bottom: 0;
width: 32px;
line-height: 34px;
font-size: 1.6em;
text-align: center;
border-right: 1px solid rgba(0, 0, 0, 0.2);
}
.btn-social.btn-lg {
padding-left: 61px;
}
.btn-social.btn-lg > :first-child {
line-height: 45px;
width: 45px;
font-size: 1.8em;
}
.btn-social.btn-sm {
padding-left: 38px;
}
.btn-social.btn-sm > :first-child {
line-height: 28px;
width: 28px;
font-size: 1.4em;
}
.btn-social.btn-xs {
padding-left: 30px;
}
.btn-social.btn-xs > :first-child {
line-height: 20px;
width: 20px;
font-size: 1.2em;
}
.btn-social-icon {
position: relative;
padding-left: 44px;
text-align: left;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
height: 34px;
width: 34px;
padding: 0;
}
.btn-social-icon > :first-child {
position: absolute;
left: 0;
top: 0;
bottom: 0;
width: 32px;
line-height: 34px;
font-size: 1.6em;
text-align: center;
border-right: 1px solid rgba(0, 0, 0, 0.2);
}
.btn-social-icon.btn-lg {
padding-left: 61px;
}
.btn-social-icon.btn-lg > :first-child {
line-height: 45px;
width: 45px;
font-size: 1.8em;
}
.btn-social-icon.btn-sm {
padding-left: 38px;
}
.btn-social-icon.btn-sm > :first-child {
line-height: 28px;
width: 28px;
font-size: 1.4em;
}
.btn-social-icon.btn-xs {
padding-left: 30px;
}
.btn-social-icon.btn-xs > :first-child {
line-height: 20px;
width: 20px;
font-size: 1.2em;
}
.btn-social-icon > :first-child {
border: none;
text-align: center;
width: 100%;
}
.btn-social-icon.btn-lg {
height: 45px;
width: 45px;
padding-left: 0;
padding-right: 0;
}
.btn-social-icon.btn-sm {
height: 30px;
width: 30px;
padding-left: 0;
padding-right: 0;
}
.btn-social-icon.btn-xs {
height: 22px;
width: 22px;
padding-left: 0;
padding-right: 0;
}
.btn-adn {
color: #fff;
background-color: #d87a68;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-adn:focus,
.btn-adn.focus {
color: #fff;
background-color: #ce563f;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-adn:hover {
color: #fff;
background-color: #ce563f;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-adn:active,
.btn-adn.active,
.open > .dropdown-toggle.btn-adn {
color: #fff;
background-color: #ce563f;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-adn:active:hover,
.btn-adn.active:hover,
.open > .dropdown-toggle.btn-adn:hover,
.btn-adn:active:focus,
.btn-adn.active:focus,
.open > .dropdown-toggle.btn-adn:focus,
.btn-adn:active.focus,
.btn-adn.active.focus,
.open > .dropdown-toggle.btn-adn.focus {
color: #fff;
background-color: #b94630;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-adn:active,
.btn-adn.active,
.open > .dropdown-toggle.btn-adn {
background-image: none;
}
.btn-adn.disabled,
.btn-adn[disabled],
fieldset[disabled] .btn-adn,
.btn-adn.disabled:hover,
.btn-adn[disabled]:hover,
fieldset[disabled] .btn-adn:hover,
.btn-adn.disabled:focus,
.btn-adn[disabled]:focus,
fieldset[disabled] .btn-adn:focus,
.btn-adn.disabled.focus,
.btn-adn[disabled].focus,
fieldset[disabled] .btn-adn.focus,
.btn-adn.disabled:active,
.btn-adn[disabled]:active,
fieldset[disabled] .btn-adn:active,
.btn-adn.disabled.active,
.btn-adn[disabled].active,
fieldset[disabled] .btn-adn.active {
background-color: #d87a68;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-adn .badge {
color: #d87a68;
background-color: #fff;
}
.btn-bitbucket {
color: #fff;
background-color: #205081;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-bitbucket:focus,
.btn-bitbucket.focus {
color: #fff;
background-color: #163758;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-bitbucket:hover {
color: #fff;
background-color: #163758;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-bitbucket:active,
.btn-bitbucket.active,
.open > .dropdown-toggle.btn-bitbucket {
color: #fff;
background-color: #163758;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-bitbucket:active:hover,
.btn-bitbucket.active:hover,
.open > .dropdown-toggle.btn-bitbucket:hover,
.btn-bitbucket:active:focus,
.btn-bitbucket.active:focus,
.open > .dropdown-toggle.btn-bitbucket:focus,
.btn-bitbucket:active.focus,
.btn-bitbucket.active.focus,
.open > .dropdown-toggle.btn-bitbucket.focus {
color: #fff;
background-color: #0f253c;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-bitbucket:active,
.btn-bitbucket.active,
.open > .dropdown-toggle.btn-bitbucket {
background-image: none;
}
.btn-bitbucket.disabled,
.btn-bitbucket[disabled],
fieldset[disabled] .btn-bitbucket,
.btn-bitbucket.disabled:hover,
.btn-bitbucket[disabled]:hover,
fieldset[disabled] .btn-bitbucket:hover,
.btn-bitbucket.disabled:focus,
.btn-bitbucket[disabled]:focus,
fieldset[disabled] .btn-bitbucket:focus,
.btn-bitbucket.disabled.focus,
.btn-bitbucket[disabled].focus,
fieldset[disabled] .btn-bitbucket.focus,
.btn-bitbucket.disabled:active,
.btn-bitbucket[disabled]:active,
fieldset[disabled] .btn-bitbucket:active,
.btn-bitbucket.disabled.active,
.btn-bitbucket[disabled].active,
fieldset[disabled] .btn-bitbucket.active {
background-color: #205081;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-bitbucket .badge {
color: #205081;
background-color: #fff;
}
.btn-dropbox {
color: #fff;
background-color: #1087dd;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-dropbox:focus,
.btn-dropbox.focus {
color: #fff;
background-color: #0d6aad;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-dropbox:hover {
color: #fff;
background-color: #0d6aad;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-dropbox:active,
.btn-dropbox.active,
.open > .dropdown-toggle.btn-dropbox {
color: #fff;
background-color: #0d6aad;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-dropbox:active:hover,
.btn-dropbox.active:hover,
.open > .dropdown-toggle.btn-dropbox:hover,
.btn-dropbox:active:focus,
.btn-dropbox.active:focus,
.open > .dropdown-toggle.btn-dropbox:focus,
.btn-dropbox:active.focus,
.btn-dropbox.active.focus,
.open > .dropdown-toggle.btn-dropbox.focus {
color: #fff;
background-color: #0a568c;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-dropbox:active,
.btn-dropbox.active,
.open > .dropdown-toggle.btn-dropbox {
background-image: none;
}
.btn-dropbox.disabled,
.btn-dropbox[disabled],
fieldset[disabled] .btn-dropbox,
.btn-dropbox.disabled:hover,
.btn-dropbox[disabled]:hover,
fieldset[disabled] .btn-dropbox:hover,
.btn-dropbox.disabled:focus,
.btn-dropbox[disabled]:focus,
fieldset[disabled] .btn-dropbox:focus,
.btn-dropbox.disabled.focus,
.btn-dropbox[disabled].focus,
fieldset[disabled] .btn-dropbox.focus,
.btn-dropbox.disabled:active,
.btn-dropbox[disabled]:active,
fieldset[disabled] .btn-dropbox:active,
.btn-dropbox.disabled.active,
.btn-dropbox[disabled].active,
fieldset[disabled] .btn-dropbox.active {
background-color: #1087dd;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-dropbox .badge {
color: #1087dd;
background-color: #fff;
}
.btn-facebook {
color: #fff;
background-color: #3b5998;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-facebook:focus,
.btn-facebook.focus {
color: #fff;
background-color: #2d4373;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-facebook:hover {
color: #fff;
background-color: #2d4373;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-facebook:active,
.btn-facebook.active,
.open > .dropdown-toggle.btn-facebook {
color: #fff;
background-color: #2d4373;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-facebook:active:hover,
.btn-facebook.active:hover,
.open > .dropdown-toggle.btn-facebook:hover,
.btn-facebook:active:focus,
.btn-facebook.active:focus,
.open > .dropdown-toggle.btn-facebook:focus,
.btn-facebook:active.focus,
.btn-facebook.active.focus,
.open > .dropdown-toggle.btn-facebook.focus {
color: #fff;
background-color: #23345a;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-facebook:active,
.btn-facebook.active,
.open > .dropdown-toggle.btn-facebook {
background-image: none;
}
.btn-facebook.disabled,
.btn-facebook[disabled],
fieldset[disabled] .btn-facebook,
.btn-facebook.disabled:hover,
.btn-facebook[disabled]:hover,
fieldset[disabled] .btn-facebook:hover,
.btn-facebook.disabled:focus,
.btn-facebook[disabled]:focus,
fieldset[disabled] .btn-facebook:focus,
.btn-facebook.disabled.focus,
.btn-facebook[disabled].focus,
fieldset[disabled] .btn-facebook.focus,
.btn-facebook.disabled:active,
.btn-facebook[disabled]:active,
fieldset[disabled] .btn-facebook:active,
.btn-facebook.disabled.active,
.btn-facebook[disabled].active,
fieldset[disabled] .btn-facebook.active {
background-color: #3b5998;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-facebook .badge {
color: #3b5998;
background-color: #fff;
}
.btn-flickr {
color: #fff;
background-color: #ff0084;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-flickr:focus,
.btn-flickr.focus {
color: #fff;
background-color: #cc006a;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-flickr:hover {
color: #fff;
background-color: #cc006a;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-flickr:active,
.btn-flickr.active,
.open > .dropdown-toggle.btn-flickr {
color: #fff;
background-color: #cc006a;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-flickr:active:hover,
.btn-flickr.active:hover,
.open > .dropdown-toggle.btn-flickr:hover,
.btn-flickr:active:focus,
.btn-flickr.active:focus,
.open > .dropdown-toggle.btn-flickr:focus,
.btn-flickr:active.focus,
.btn-flickr.active.focus,
.open > .dropdown-toggle.btn-flickr.focus {
color: #fff;
background-color: #a80057;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-flickr:active,
.btn-flickr.active,
.open > .dropdown-toggle.btn-flickr {
background-image: none;
}
.btn-flickr.disabled,
.btn-flickr[disabled],
fieldset[disabled] .btn-flickr,
.btn-flickr.disabled:hover,
.btn-flickr[disabled]:hover,
fieldset[disabled] .btn-flickr:hover,
.btn-flickr.disabled:focus,
.btn-flickr[disabled]:focus,
fieldset[disabled] .btn-flickr:focus,
.btn-flickr.disabled.focus,
.btn-flickr[disabled].focus,
fieldset[disabled] .btn-flickr.focus,
.btn-flickr.disabled:active,
.btn-flickr[disabled]:active,
fieldset[disabled] .btn-flickr:active,
.btn-flickr.disabled.active,
.btn-flickr[disabled].active,
fieldset[disabled] .btn-flickr.active {
background-color: #ff0084;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-flickr .badge {
color: #ff0084;
background-color: #fff;
}
.btn-foursquare {
color: #fff;
background-color: #f94877;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-foursquare:focus,
.btn-foursquare.focus {
color: #fff;
background-color: #f71752;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-foursquare:hover {
color: #fff;
background-color: #f71752;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-foursquare:active,
.btn-foursquare.active,
.open > .dropdown-toggle.btn-foursquare {
color: #fff;
background-color: #f71752;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-foursquare:active:hover,
.btn-foursquare.active:hover,
.open > .dropdown-toggle.btn-foursquare:hover,
.btn-foursquare:active:focus,
.btn-foursquare.active:focus,
.open > .dropdown-toggle.btn-foursquare:focus,
.btn-foursquare:active.focus,
.btn-foursquare.active.focus,
.open > .dropdown-toggle.btn-foursquare.focus {
color: #fff;
background-color: #e30742;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-foursquare:active,
.btn-foursquare.active,
.open > .dropdown-toggle.btn-foursquare {
background-image: none;
}
.btn-foursquare.disabled,
.btn-foursquare[disabled],
fieldset[disabled] .btn-foursquare,
.btn-foursquare.disabled:hover,
.btn-foursquare[disabled]:hover,
fieldset[disabled] .btn-foursquare:hover,
.btn-foursquare.disabled:focus,
.btn-foursquare[disabled]:focus,
fieldset[disabled] .btn-foursquare:focus,
.btn-foursquare.disabled.focus,
.btn-foursquare[disabled].focus,
fieldset[disabled] .btn-foursquare.focus,
.btn-foursquare.disabled:active,
.btn-foursquare[disabled]:active,
fieldset[disabled] .btn-foursquare:active,
.btn-foursquare.disabled.active,
.btn-foursquare[disabled].active,
fieldset[disabled] .btn-foursquare.active {
background-color: #f94877;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-foursquare .badge {
color: #f94877;
background-color: #fff;
}
.btn-github {
color: #fff;
background-color: #444444;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-github:focus,
.btn-github.focus {
color: #fff;
background-color: #2b2b2b;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-github:hover {
color: #fff;
background-color: #2b2b2b;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-github:active,
.btn-github.active,
.open > .dropdown-toggle.btn-github {
color: #fff;
background-color: #2b2b2b;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-github:active:hover,
.btn-github.active:hover,
.open > .dropdown-toggle.btn-github:hover,
.btn-github:active:focus,
.btn-github.active:focus,
.open > .dropdown-toggle.btn-github:focus,
.btn-github:active.focus,
.btn-github.active.focus,
.open > .dropdown-toggle.btn-github.focus {
color: #fff;
background-color: #191919;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-github:active,
.btn-github.active,
.open > .dropdown-toggle.btn-github {
background-image: none;
}
.btn-github.disabled,
.btn-github[disabled],
fieldset[disabled] .btn-github,
.btn-github.disabled:hover,
.btn-github[disabled]:hover,
fieldset[disabled] .btn-github:hover,
.btn-github.disabled:focus,
.btn-github[disabled]:focus,
fieldset[disabled] .btn-github:focus,
.btn-github.disabled.focus,
.btn-github[disabled].focus,
fieldset[disabled] .btn-github.focus,
.btn-github.disabled:active,
.btn-github[disabled]:active,
fieldset[disabled] .btn-github:active,
.btn-github.disabled.active,
.btn-github[disabled].active,
fieldset[disabled] .btn-github.active {
background-color: #444444;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-github .badge {
color: #444444;
background-color: #fff;
}
.btn-google {
color: #fff;
background-color: #dd4b39;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-google:focus,
.btn-google.focus {
color: #fff;
background-color: #c23321;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-google:hover {
color: #fff;
background-color: #c23321;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-google:active,
.btn-google.active,
.open > .dropdown-toggle.btn-google {
color: #fff;
background-color: #c23321;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-google:active:hover,
.btn-google.active:hover,
.open > .dropdown-toggle.btn-google:hover,
.btn-google:active:focus,
.btn-google.active:focus,
.open > .dropdown-toggle.btn-google:focus,
.btn-google:active.focus,
.btn-google.active.focus,
.open > .dropdown-toggle.btn-google.focus {
color: #fff;
background-color: #a32b1c;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-google:active,
.btn-google.active,
.open > .dropdown-toggle.btn-google {
background-image: none;
}
.btn-google.disabled,
.btn-google[disabled],
fieldset[disabled] .btn-google,
.btn-google.disabled:hover,
.btn-google[disabled]:hover,
fieldset[disabled] .btn-google:hover,
.btn-google.disabled:focus,
.btn-google[disabled]:focus,
fieldset[disabled] .btn-google:focus,
.btn-google.disabled.focus,
.btn-google[disabled].focus,
fieldset[disabled] .btn-google.focus,
.btn-google.disabled:active,
.btn-google[disabled]:active,
fieldset[disabled] .btn-google:active,
.btn-google.disabled.active,
.btn-google[disabled].active,
fieldset[disabled] .btn-google.active {
background-color: #dd4b39;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-google .badge {
color: #dd4b39;
background-color: #fff;
}
.btn-instagram {
color: #fff;
background-color: #3f729b;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-instagram:focus,
.btn-instagram.focus {
color: #fff;
background-color: #305777;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-instagram:hover {
color: #fff;
background-color: #305777;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-instagram:active,
.btn-instagram.active,
.open > .dropdown-toggle.btn-instagram {
color: #fff;
background-color: #305777;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-instagram:active:hover,
.btn-instagram.active:hover,
.open > .dropdown-toggle.btn-instagram:hover,
.btn-instagram:active:focus,
.btn-instagram.active:focus,
.open > .dropdown-toggle.btn-instagram:focus,
.btn-instagram:active.focus,
.btn-instagram.active.focus,
.open > .dropdown-toggle.btn-instagram.focus {
color: #fff;
background-color: #26455d;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-instagram:active,
.btn-instagram.active,
.open > .dropdown-toggle.btn-instagram {
background-image: none;
}
.btn-instagram.disabled,
.btn-instagram[disabled],
fieldset[disabled] .btn-instagram,
.btn-instagram.disabled:hover,
.btn-instagram[disabled]:hover,
fieldset[disabled] .btn-instagram:hover,
.btn-instagram.disabled:focus,
.btn-instagram[disabled]:focus,
fieldset[disabled] .btn-instagram:focus,
.btn-instagram.disabled.focus,
.btn-instagram[disabled].focus,
fieldset[disabled] .btn-instagram.focus,
.btn-instagram.disabled:active,
.btn-instagram[disabled]:active,
fieldset[disabled] .btn-instagram:active,
.btn-instagram.disabled.active,
.btn-instagram[disabled].active,
fieldset[disabled] .btn-instagram.active {
background-color: #3f729b;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-instagram .badge {
color: #3f729b;
background-color: #fff;
}
.btn-linkedin {
color: #fff;
background-color: #007bb6;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-linkedin:focus,
.btn-linkedin.focus {
color: #fff;
background-color: #005983;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-linkedin:hover {
color: #fff;
background-color: #005983;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-linkedin:active,
.btn-linkedin.active,
.open > .dropdown-toggle.btn-linkedin {
color: #fff;
background-color: #005983;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-linkedin:active:hover,
.btn-linkedin.active:hover,
.open > .dropdown-toggle.btn-linkedin:hover,
.btn-linkedin:active:focus,
.btn-linkedin.active:focus,
.open > .dropdown-toggle.btn-linkedin:focus,
.btn-linkedin:active.focus,
.btn-linkedin.active.focus,
.open > .dropdown-toggle.btn-linkedin.focus {
color: #fff;
background-color: #00405f;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-linkedin:active,
.btn-linkedin.active,
.open > .dropdown-toggle.btn-linkedin {
background-image: none;
}
.btn-linkedin.disabled,
.btn-linkedin[disabled],
fieldset[disabled] .btn-linkedin,
.btn-linkedin.disabled:hover,
.btn-linkedin[disabled]:hover,
fieldset[disabled] .btn-linkedin:hover,
.btn-linkedin.disabled:focus,
.btn-linkedin[disabled]:focus,
fieldset[disabled] .btn-linkedin:focus,
.btn-linkedin.disabled.focus,
.btn-linkedin[disabled].focus,
fieldset[disabled] .btn-linkedin.focus,
.btn-linkedin.disabled:active,
.btn-linkedin[disabled]:active,
fieldset[disabled] .btn-linkedin:active,
.btn-linkedin.disabled.active,
.btn-linkedin[disabled].active,
fieldset[disabled] .btn-linkedin.active {
background-color: #007bb6;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-linkedin .badge {
color: #007bb6;
background-color: #fff;
}
.btn-microsoft {
color: #fff;
background-color: #2672ec;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-microsoft:focus,
.btn-microsoft.focus {
color: #fff;
background-color: #125acd;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-microsoft:hover {
color: #fff;
background-color: #125acd;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-microsoft:active,
.btn-microsoft.active,
.open > .dropdown-toggle.btn-microsoft {
color: #fff;
background-color: #125acd;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-microsoft:active:hover,
.btn-microsoft.active:hover,
.open > .dropdown-toggle.btn-microsoft:hover,
.btn-microsoft:active:focus,
.btn-microsoft.active:focus,
.open > .dropdown-toggle.btn-microsoft:focus,
.btn-microsoft:active.focus,
.btn-microsoft.active.focus,
.open > .dropdown-toggle.btn-microsoft.focus {
color: #fff;
background-color: #0f4bac;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-microsoft:active,
.btn-microsoft.active,
.open > .dropdown-toggle.btn-microsoft {
background-image: none;
}
.btn-microsoft.disabled,
.btn-microsoft[disabled],
fieldset[disabled] .btn-microsoft,
.btn-microsoft.disabled:hover,
.btn-microsoft[disabled]:hover,
fieldset[disabled] .btn-microsoft:hover,
.btn-microsoft.disabled:focus,
.btn-microsoft[disabled]:focus,
fieldset[disabled] .btn-microsoft:focus,
.btn-microsoft.disabled.focus,
.btn-microsoft[disabled].focus,
fieldset[disabled] .btn-microsoft.focus,
.btn-microsoft.disabled:active,
.btn-microsoft[disabled]:active,
fieldset[disabled] .btn-microsoft:active,
.btn-microsoft.disabled.active,
.btn-microsoft[disabled].active,
fieldset[disabled] .btn-microsoft.active {
background-color: #2672ec;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-microsoft .badge {
color: #2672ec;
background-color: #fff;
}
.btn-openid {
color: #fff;
background-color: #f7931e;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-openid:focus,
.btn-openid.focus {
color: #fff;
background-color: #da7908;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-openid:hover {
color: #fff;
background-color: #da7908;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-openid:active,
.btn-openid.active,
.open > .dropdown-toggle.btn-openid {
color: #fff;
background-color: #da7908;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-openid:active:hover,
.btn-openid.active:hover,
.open > .dropdown-toggle.btn-openid:hover,
.btn-openid:active:focus,
.btn-openid.active:focus,
.open > .dropdown-toggle.btn-openid:focus,
.btn-openid:active.focus,
.btn-openid.active.focus,
.open > .dropdown-toggle.btn-openid.focus {
color: #fff;
background-color: #b86607;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-openid:active,
.btn-openid.active,
.open > .dropdown-toggle.btn-openid {
background-image: none;
}
.btn-openid.disabled,
.btn-openid[disabled],
fieldset[disabled] .btn-openid,
.btn-openid.disabled:hover,
.btn-openid[disabled]:hover,
fieldset[disabled] .btn-openid:hover,
.btn-openid.disabled:focus,
.btn-openid[disabled]:focus,
fieldset[disabled] .btn-openid:focus,
.btn-openid.disabled.focus,
.btn-openid[disabled].focus,
fieldset[disabled] .btn-openid.focus,
.btn-openid.disabled:active,
.btn-openid[disabled]:active,
fieldset[disabled] .btn-openid:active,
.btn-openid.disabled.active,
.btn-openid[disabled].active,
fieldset[disabled] .btn-openid.active {
background-color: #f7931e;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-openid .badge {
color: #f7931e;
background-color: #fff;
}
.btn-pinterest {
color: #fff;
background-color: #cb2027;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-pinterest:focus,
.btn-pinterest.focus {
color: #fff;
background-color: #9f191f;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-pinterest:hover {
color: #fff;
background-color: #9f191f;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-pinterest:active,
.btn-pinterest.active,
.open > .dropdown-toggle.btn-pinterest {
color: #fff;
background-color: #9f191f;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-pinterest:active:hover,
.btn-pinterest.active:hover,
.open > .dropdown-toggle.btn-pinterest:hover,
.btn-pinterest:active:focus,
.btn-pinterest.active:focus,
.open > .dropdown-toggle.btn-pinterest:focus,
.btn-pinterest:active.focus,
.btn-pinterest.active.focus,
.open > .dropdown-toggle.btn-pinterest.focus {
color: #fff;
background-color: #801419;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-pinterest:active,
.btn-pinterest.active,
.open > .dropdown-toggle.btn-pinterest {
background-image: none;
}
.btn-pinterest.disabled,
.btn-pinterest[disabled],
fieldset[disabled] .btn-pinterest,
.btn-pinterest.disabled:hover,
.btn-pinterest[disabled]:hover,
fieldset[disabled] .btn-pinterest:hover,
.btn-pinterest.disabled:focus,
.btn-pinterest[disabled]:focus,
fieldset[disabled] .btn-pinterest:focus,
.btn-pinterest.disabled.focus,
.btn-pinterest[disabled].focus,
fieldset[disabled] .btn-pinterest.focus,
.btn-pinterest.disabled:active,
.btn-pinterest[disabled]:active,
fieldset[disabled] .btn-pinterest:active,
.btn-pinterest.disabled.active,
.btn-pinterest[disabled].active,
fieldset[disabled] .btn-pinterest.active {
background-color: #cb2027;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-pinterest .badge {
color: #cb2027;
background-color: #fff;
}
.btn-reddit {
color: #000;
background-color: #eff7ff;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-reddit:focus,
.btn-reddit.focus {
color: #000;
background-color: #bcddff;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-reddit:hover {
color: #000;
background-color: #bcddff;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-reddit:active,
.btn-reddit.active,
.open > .dropdown-toggle.btn-reddit {
color: #000;
background-color: #bcddff;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-reddit:active:hover,
.btn-reddit.active:hover,
.open > .dropdown-toggle.btn-reddit:hover,
.btn-reddit:active:focus,
.btn-reddit.active:focus,
.open > .dropdown-toggle.btn-reddit:focus,
.btn-reddit:active.focus,
.btn-reddit.active.focus,
.open > .dropdown-toggle.btn-reddit.focus {
color: #000;
background-color: #98ccff;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-reddit:active,
.btn-reddit.active,
.open > .dropdown-toggle.btn-reddit {
background-image: none;
}
.btn-reddit.disabled,
.btn-reddit[disabled],
fieldset[disabled] .btn-reddit,
.btn-reddit.disabled:hover,
.btn-reddit[disabled]:hover,
fieldset[disabled] .btn-reddit:hover,
.btn-reddit.disabled:focus,
.btn-reddit[disabled]:focus,
fieldset[disabled] .btn-reddit:focus,
.btn-reddit.disabled.focus,
.btn-reddit[disabled].focus,
fieldset[disabled] .btn-reddit.focus,
.btn-reddit.disabled:active,
.btn-reddit[disabled]:active,
fieldset[disabled] .btn-reddit:active,
.btn-reddit.disabled.active,
.btn-reddit[disabled].active,
fieldset[disabled] .btn-reddit.active {
background-color: #eff7ff;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-reddit .badge {
color: #eff7ff;
background-color: #000;
}
.btn-soundcloud {
color: #fff;
background-color: #ff5500;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-soundcloud:focus,
.btn-soundcloud.focus {
color: #fff;
background-color: #cc4400;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-soundcloud:hover {
color: #fff;
background-color: #cc4400;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-soundcloud:active,
.btn-soundcloud.active,
.open > .dropdown-toggle.btn-soundcloud {
color: #fff;
background-color: #cc4400;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-soundcloud:active:hover,
.btn-soundcloud.active:hover,
.open > .dropdown-toggle.btn-soundcloud:hover,
.btn-soundcloud:active:focus,
.btn-soundcloud.active:focus,
.open > .dropdown-toggle.btn-soundcloud:focus,
.btn-soundcloud:active.focus,
.btn-soundcloud.active.focus,
.open > .dropdown-toggle.btn-soundcloud.focus {
color: #fff;
background-color: #a83800;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-soundcloud:active,
.btn-soundcloud.active,
.open > .dropdown-toggle.btn-soundcloud {
background-image: none;
}
.btn-soundcloud.disabled,
.btn-soundcloud[disabled],
fieldset[disabled] .btn-soundcloud,
.btn-soundcloud.disabled:hover,
.btn-soundcloud[disabled]:hover,
fieldset[disabled] .btn-soundcloud:hover,
.btn-soundcloud.disabled:focus,
.btn-soundcloud[disabled]:focus,
fieldset[disabled] .btn-soundcloud:focus,
.btn-soundcloud.disabled.focus,
.btn-soundcloud[disabled].focus,
fieldset[disabled] .btn-soundcloud.focus,
.btn-soundcloud.disabled:active,
.btn-soundcloud[disabled]:active,
fieldset[disabled] .btn-soundcloud:active,
.btn-soundcloud.disabled.active,
.btn-soundcloud[disabled].active,
fieldset[disabled] .btn-soundcloud.active {
background-color: #ff5500;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-soundcloud .badge {
color: #ff5500;
background-color: #fff;
}
.btn-tumblr {
color: #fff;
background-color: #2c4762;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-tumblr:focus,
.btn-tumblr.focus {
color: #fff;
background-color: #1c2d3f;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-tumblr:hover {
color: #fff;
background-color: #1c2d3f;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-tumblr:active,
.btn-tumblr.active,
.open > .dropdown-toggle.btn-tumblr {
color: #fff;
background-color: #1c2d3f;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-tumblr:active:hover,
.btn-tumblr.active:hover,
.open > .dropdown-toggle.btn-tumblr:hover,
.btn-tumblr:active:focus,
.btn-tumblr.active:focus,
.open > .dropdown-toggle.btn-tumblr:focus,
.btn-tumblr:active.focus,
.btn-tumblr.active.focus,
.open > .dropdown-toggle.btn-tumblr.focus {
color: #fff;
background-color: #111c26;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-tumblr:active,
.btn-tumblr.active,
.open > .dropdown-toggle.btn-tumblr {
background-image: none;
}
.btn-tumblr.disabled,
.btn-tumblr[disabled],
fieldset[disabled] .btn-tumblr,
.btn-tumblr.disabled:hover,
.btn-tumblr[disabled]:hover,
fieldset[disabled] .btn-tumblr:hover,
.btn-tumblr.disabled:focus,
.btn-tumblr[disabled]:focus,
fieldset[disabled] .btn-tumblr:focus,
.btn-tumblr.disabled.focus,
.btn-tumblr[disabled].focus,
fieldset[disabled] .btn-tumblr.focus,
.btn-tumblr.disabled:active,
.btn-tumblr[disabled]:active,
fieldset[disabled] .btn-tumblr:active,
.btn-tumblr.disabled.active,
.btn-tumblr[disabled].active,
fieldset[disabled] .btn-tumblr.active {
background-color: #2c4762;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-tumblr .badge {
color: #2c4762;
background-color: #fff;
}
.btn-twitter {
color: #fff;
background-color: #55acee;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-twitter:focus,
.btn-twitter.focus {
color: #fff;
background-color: #2795e9;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-twitter:hover {
color: #fff;
background-color: #2795e9;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-twitter:active,
.btn-twitter.active,
.open > .dropdown-toggle.btn-twitter {
color: #fff;
background-color: #2795e9;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-twitter:active:hover,
.btn-twitter.active:hover,
.open > .dropdown-toggle.btn-twitter:hover,
.btn-twitter:active:focus,
.btn-twitter.active:focus,
.open > .dropdown-toggle.btn-twitter:focus,
.btn-twitter:active.focus,
.btn-twitter.active.focus,
.open > .dropdown-toggle.btn-twitter.focus {
color: #fff;
background-color: #1583d7;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-twitter:active,
.btn-twitter.active,
.open > .dropdown-toggle.btn-twitter {
background-image: none;
}
.btn-twitter.disabled,
.btn-twitter[disabled],
fieldset[disabled] .btn-twitter,
.btn-twitter.disabled:hover,
.btn-twitter[disabled]:hover,
fieldset[disabled] .btn-twitter:hover,
.btn-twitter.disabled:focus,
.btn-twitter[disabled]:focus,
fieldset[disabled] .btn-twitter:focus,
.btn-twitter.disabled.focus,
.btn-twitter[disabled].focus,
fieldset[disabled] .btn-twitter.focus,
.btn-twitter.disabled:active,
.btn-twitter[disabled]:active,
fieldset[disabled] .btn-twitter:active,
.btn-twitter.disabled.active,
.btn-twitter[disabled].active,
fieldset[disabled] .btn-twitter.active {
background-color: #55acee;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-twitter .badge {
color: #55acee;
background-color: #fff;
}
.btn-vimeo {
color: #fff;
background-color: #1ab7ea;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-vimeo:focus,
.btn-vimeo.focus {
color: #fff;
background-color: #1295bf;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-vimeo:hover {
color: #fff;
background-color: #1295bf;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-vimeo:active,
.btn-vimeo.active,
.open > .dropdown-toggle.btn-vimeo {
color: #fff;
background-color: #1295bf;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-vimeo:active:hover,
.btn-vimeo.active:hover,
.open > .dropdown-toggle.btn-vimeo:hover,
.btn-vimeo:active:focus,
.btn-vimeo.active:focus,
.open > .dropdown-toggle.btn-vimeo:focus,
.btn-vimeo:active.focus,
.btn-vimeo.active.focus,
.open > .dropdown-toggle.btn-vimeo.focus {
color: #fff;
background-color: #0f7b9f;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-vimeo:active,
.btn-vimeo.active,
.open > .dropdown-toggle.btn-vimeo {
background-image: none;
}
.btn-vimeo.disabled,
.btn-vimeo[disabled],
fieldset[disabled] .btn-vimeo,
.btn-vimeo.disabled:hover,
.btn-vimeo[disabled]:hover,
fieldset[disabled] .btn-vimeo:hover,
.btn-vimeo.disabled:focus,
.btn-vimeo[disabled]:focus,
fieldset[disabled] .btn-vimeo:focus,
.btn-vimeo.disabled.focus,
.btn-vimeo[disabled].focus,
fieldset[disabled] .btn-vimeo.focus,
.btn-vimeo.disabled:active,
.btn-vimeo[disabled]:active,
fieldset[disabled] .btn-vimeo:active,
.btn-vimeo.disabled.active,
.btn-vimeo[disabled].active,
fieldset[disabled] .btn-vimeo.active {
background-color: #1ab7ea;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-vimeo .badge {
color: #1ab7ea;
background-color: #fff;
}
.btn-vk {
color: #fff;
background-color: #587ea3;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-vk:focus,
.btn-vk.focus {
color: #fff;
background-color: #466482;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-vk:hover {
color: #fff;
background-color: #466482;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-vk:active,
.btn-vk.active,
.open > .dropdown-toggle.btn-vk {
color: #fff;
background-color: #466482;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-vk:active:hover,
.btn-vk.active:hover,
.open > .dropdown-toggle.btn-vk:hover,
.btn-vk:active:focus,
.btn-vk.active:focus,
.open > .dropdown-toggle.btn-vk:focus,
.btn-vk:active.focus,
.btn-vk.active.focus,
.open > .dropdown-toggle.btn-vk.focus {
color: #fff;
background-color: #3a526b;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-vk:active,
.btn-vk.active,
.open > .dropdown-toggle.btn-vk {
background-image: none;
}
.btn-vk.disabled,
.btn-vk[disabled],
fieldset[disabled] .btn-vk,
.btn-vk.disabled:hover,
.btn-vk[disabled]:hover,
fieldset[disabled] .btn-vk:hover,
.btn-vk.disabled:focus,
.btn-vk[disabled]:focus,
fieldset[disabled] .btn-vk:focus,
.btn-vk.disabled.focus,
.btn-vk[disabled].focus,
fieldset[disabled] .btn-vk.focus,
.btn-vk.disabled:active,
.btn-vk[disabled]:active,
fieldset[disabled] .btn-vk:active,
.btn-vk.disabled.active,
.btn-vk[disabled].active,
fieldset[disabled] .btn-vk.active {
background-color: #587ea3;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-vk .badge {
color: #587ea3;
background-color: #fff;
}
.btn-yahoo {
color: #fff;
background-color: #720e9e;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-yahoo:focus,
.btn-yahoo.focus {
color: #fff;
background-color: #500a6f;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-yahoo:hover {
color: #fff;
background-color: #500a6f;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-yahoo:active,
.btn-yahoo.active,
.open > .dropdown-toggle.btn-yahoo {
color: #fff;
background-color: #500a6f;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-yahoo:active:hover,
.btn-yahoo.active:hover,
.open > .dropdown-toggle.btn-yahoo:hover,
.btn-yahoo:active:focus,
.btn-yahoo.active:focus,
.open > .dropdown-toggle.btn-yahoo:focus,
.btn-yahoo:active.focus,
.btn-yahoo.active.focus,
.open > .dropdown-toggle.btn-yahoo.focus {
color: #fff;
background-color: #39074e;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-yahoo:active,
.btn-yahoo.active,
.open > .dropdown-toggle.btn-yahoo {
background-image: none;
}
.btn-yahoo.disabled,
.btn-yahoo[disabled],
fieldset[disabled] .btn-yahoo,
.btn-yahoo.disabled:hover,
.btn-yahoo[disabled]:hover,
fieldset[disabled] .btn-yahoo:hover,
.btn-yahoo.disabled:focus,
.btn-yahoo[disabled]:focus,
fieldset[disabled] .btn-yahoo:focus,
.btn-yahoo.disabled.focus,
.btn-yahoo[disabled].focus,
fieldset[disabled] .btn-yahoo.focus,
.btn-yahoo.disabled:active,
.btn-yahoo[disabled]:active,
fieldset[disabled] .btn-yahoo:active,
.btn-yahoo.disabled.active,
.btn-yahoo[disabled].active,
fieldset[disabled] .btn-yahoo.active {
background-color: #720e9e;
border-color: rgba(0, 0, 0, 0.2);
}
.btn-yahoo .badge {
color: #720e9e;
background-color: #fff;
}
/*
* Plugin: Full Calendar
* ---------------------
*/
.fc-button {
background: #f4f4f4;
background-image: none;
color: #444;
border-color: #ddd;
border-bottom-color: #ddd;
}
.fc-button:hover,
.fc-button:active,
.fc-button.hover {
background-color: #e9e9e9;
}
.fc-header-title h2 {
font-size: 15px;
line-height: 1.6em;
color: #666;
margin-left: 10px;
}
.fc-header-right {
padding-right: 10px;
}
.fc-header-left {
padding-left: 10px;
}
.fc-widget-header {
background: #fafafa;
}
.fc-grid {
width: 100%;
border: 0;
}
.fc-widget-header:first-of-type,
.fc-widget-content:first-of-type {
border-left: 0;
border-right: 0;
}
.fc-widget-header:last-of-type,
.fc-widget-content:last-of-type {
border-right: 0;
}
.fc-toolbar {
padding: 10px;
margin: 0;
}
.fc-day-number {
font-size: 20px;
font-weight: 300;
padding-right: 10px;
}
.fc-color-picker {
list-style: none;
margin: 0;
padding: 0;
}
.fc-color-picker > li {
float: left;
font-size: 30px;
margin-right: 5px;
line-height: 30px;
}
.fc-color-picker > li .fa {
-webkit-transition: -webkit-transform linear 0.3s;
transition: -webkit-transform linear 0.3s;
transition: transform linear 0.3s;
transition: transform linear 0.3s, -webkit-transform linear 0.3s;
}
.fc-color-picker > li .fa:hover {
-webkit-transform: rotate(30deg);
transform: rotate(30deg);
}
#add-new-event {
-webkit-transition: all linear 0.3s;
transition: all linear 0.3s;
}
.external-event {
padding: 5px 10px;
font-weight: bold;
margin-bottom: 4px;
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
border-radius: 3px;
cursor: move;
}
.external-event:hover {
box-shadow: inset 0 0 90px rgba(0, 0, 0, 0.2);
}
/*
* Plugin: Select2
* ---------------
*/
.select2-container--default.select2-container--focus,
.select2-selection.select2-container--focus,
.select2-container--default:focus,
.select2-selection:focus,
.select2-container--default:active,
.select2-selection:active {
outline: none;
}
.select2-container--default .select2-selection--single,
.select2-selection .select2-selection--single {
border: 1px solid #d2d6de;
border-radius: 0;
padding: 6px 12px;
height: 34px;
}
.select2-container--default.select2-container--open {
border-color: #3c8dbc;
}
.select2-dropdown {
border: 1px solid #d2d6de;
border-radius: 0;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
background-color: #3c8dbc;
color: white;
}
.select2-results__option {
padding: 6px 12px;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-user-select: none;
}
.select2-container .select2-selection--single .select2-selection__rendered {
padding-left: 0;
padding-right: 0;
height: auto;
margin-top: -4px;
}
.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
padding-right: 6px;
padding-left: 20px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
height: 28px;
right: 3px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
margin-top: 0;
}
.select2-dropdown .select2-search__field,
.select2-search--inline .select2-search__field {
border: 1px solid #d2d6de;
}
.select2-dropdown .select2-search__field:focus,
.select2-search--inline .select2-search__field:focus {
outline: none;
border: 1px solid #3c8dbc;
}
.select2-container--default .select2-results__option[aria-disabled=true] {
color: #999;
}
.select2-container--default .select2-results__option[aria-selected=true] {
background-color: #ddd;
}
.select2-container--default .select2-results__option[aria-selected=true],
.select2-container--default .select2-results__option[aria-selected=true]:hover {
color: #444;
}
.select2-container--default .select2-selection--multiple {
border: 1px solid #d2d6de;
border-radius: 0;
}
.select2-container--default .select2-selection--multiple:focus {
border-color: #3c8dbc;
}
.select2-container--default.select2-container--focus .select2-selection--multiple {
border-color: #d2d6de;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
background-color: #3c8dbc;
border-color: #367fa9;
padding: 1px 10px;
color: #fff;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
margin-right: 5px;
color: rgba(255, 255, 255, 0.7);
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
color: #fff;
}
.select2-container .select2-selection--single .select2-selection__rendered {
padding-right: 10px;
}
/*
* General: Miscellaneous
* ----------------------
*/
.pad {
padding: 10px;
}
.margin {
margin: 10px;
}
.margin-bottom {
margin-bottom: 20px;
}
.margin-bottom-none {
margin-bottom: 0;
}
.margin-r-5 {
margin-right: 5px;
}
.inline {
display: inline;
}
.description-block {
display: block;
margin: 10px 0;
text-align: center;
}
.description-block.margin-bottom {
margin-bottom: 25px;
}
.description-block > .description-header {
margin: 0;
padding: 0;
font-weight: 600;
font-size: 16px;
}
.description-block > .description-text {
text-transform: uppercase;
}
.bg-red,
.bg-yellow,
.bg-aqua,
.bg-blue,
.bg-light-blue,
.bg-green,
.bg-navy,
.bg-teal,
.bg-olive,
.bg-lime,
.bg-orange,
.bg-fuchsia,
.bg-purple,
.bg-maroon,
.bg-black,
.bg-red-active,
.bg-yellow-active,
.bg-aqua-active,
.bg-blue-active,
.bg-light-blue-active,
.bg-green-active,
.bg-navy-active,
.bg-teal-active,
.bg-olive-active,
.bg-lime-active,
.bg-orange-active,
.bg-fuchsia-active,
.bg-purple-active,
.bg-maroon-active,
.bg-black-active,
.callout.callout-danger,
.callout.callout-warning,
.callout.callout-info,
.callout.callout-success,
.alert-success,
.alert-danger,
.alert-error,
.alert-warning,
.alert-info,
.label-danger,
.label-info,
.label-warning,
.label-primary,
.label-success,
.modal-primary .modal-body,
.modal-primary .modal-header,
.modal-primary .modal-footer,
.modal-warning .modal-body,
.modal-warning .modal-header,
.modal-warning .modal-footer,
.modal-info .modal-body,
.modal-info .modal-header,
.modal-info .modal-footer,
.modal-success .modal-body,
.modal-success .modal-header,
.modal-success .modal-footer,
.modal-danger .modal-body,
.modal-danger .modal-header,
.modal-danger .modal-footer {
color: #fff !important;
}
.bg-gray {
color: #000;
background-color: #d2d6de !important;
}
.bg-gray-light {
background-color: #f7f7f7;
}
.bg-black {
background-color: #111 !important;
}
.bg-red,
.callout.callout-danger,
.alert-danger,
.alert-error,
.label-danger,
.modal-danger .modal-body {
background-color: #dd4b39 !important;
}
.bg-yellow,
.callout.callout-warning,
.alert-warning,
.label-warning,
.modal-warning .modal-body {
background-color: #f39c12 !important;
}
.bg-aqua,
.callout.callout-info,
.alert-info,
.label-info,
.modal-info .modal-body {
background-color: #00c0ef !important;
}
.bg-blue {
background-color: #0073b7 !important;
}
.bg-light-blue,
.label-primary,
.modal-primary .modal-body {
background-color: #3c8dbc !important;
}
.bg-green,
.callout.callout-success,
.alert-success,
.label-success,
.modal-success .modal-body {
background-color: #00a65a !important;
}
.bg-navy {
background-color: #001F3F !important;
}
.bg-teal {
background-color: #39CCCC !important;
}
.bg-olive {
background-color: #3D9970 !important;
}
.bg-lime {
background-color: #01FF70 !important;
}
.bg-orange {
background-color: #FF851B !important;
}
.bg-fuchsia {
background-color: #F012BE !important;
}
.bg-purple {
background-color: #605ca8 !important;
}
.bg-maroon {
background-color: #D81B60 !important;
}
.bg-gray-active {
color: #000;
background-color: #b5bbc8 !important;
}
.bg-black-active {
background-color: #000000 !important;
}
.bg-red-active,
.modal-danger .modal-header,
.modal-danger .modal-footer {
background-color: #d33724 !important;
}
.bg-yellow-active,
.modal-warning .modal-header,
.modal-warning .modal-footer {
background-color: #db8b0b !important;
}
.bg-aqua-active,
.modal-info .modal-header,
.modal-info .modal-footer {
background-color: #00a7d0 !important;
}
.bg-blue-active {
background-color: #005384 !important;
}
.bg-light-blue-active,
.modal-primary .modal-header,
.modal-primary .modal-footer {
background-color: #357ca5 !important;
}
.bg-green-active,
.modal-success .modal-header,
.modal-success .modal-footer {
background-color: #008d4c !important;
}
.bg-navy-active {
background-color: #001a35 !important;
}
.bg-teal-active {
background-color: #30bbbb !important;
}
.bg-olive-active {
background-color: #368763 !important;
}
.bg-lime-active {
background-color: #00e765 !important;
}
.bg-orange-active {
background-color: #ff7701 !important;
}
.bg-fuchsia-active {
background-color: #db0ead !important;
}
.bg-purple-active {
background-color: #555299 !important;
}
.bg-maroon-active {
background-color: #ca195a !important;
}
[class^="bg-"].disabled {
opacity: 0.65;
filter: alpha(opacity=65);
}
.text-red {
color: #dd4b39 !important;
}
.text-yellow {
color: #f39c12 !important;
}
.text-aqua {
color: #00c0ef !important;
}
.text-blue {
color: #0073b7 !important;
}
.text-black {
color: #111 !important;
}
.text-light-blue {
color: #3c8dbc !important;
}
.text-green {
color: #00a65a !important;
}
.text-gray {
color: #d2d6de !important;
}
.text-navy {
color: #001F3F !important;
}
.text-teal {
color: #39CCCC !important;
}
.text-olive {
color: #3D9970 !important;
}
.text-lime {
color: #01FF70 !important;
}
.text-orange {
color: #FF851B !important;
}
.text-fuchsia {
color: #F012BE !important;
}
.text-purple {
color: #605ca8 !important;
}
.text-maroon {
color: #D81B60 !important;
}
.link-muted {
color: #7a869d;
}
.link-muted:hover,
.link-muted:focus {
color: #606c84;
}
.link-black {
color: #666;
}
.link-black:hover,
.link-black:focus {
color: #999;
}
.hide {
display: none !important;
}
.no-border {
border: 0 !important;
}
.no-padding {
padding: 0 !important;
}
.no-margin {
margin: 0 !important;
}
.no-shadow {
box-shadow: none !important;
}
.list-unstyled,
.chart-legend,
.contacts-list,
.users-list,
.mailbox-attachments {
list-style: none;
margin: 0;
padding: 0;
}
.list-group-unbordered > .list-group-item {
border-left: 0;
border-right: 0;
border-radius: 0;
padding-left: 0;
padding-right: 0;
}
.flat {
border-radius: 0 !important;
}
.text-bold,
.text-bold.table td,
.text-bold.table th {
font-weight: 700;
}
.text-sm {
font-size: 12px;
}
.jqstooltip {
padding: 5px !important;
width: auto !important;
height: auto !important;
}
.bg-teal-gradient {
background: #39CCCC !important;
background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #39CCCC), color-stop(1, #7adddd)) !important;
background: -o-linear-gradient(#7adddd, #39CCCC) !important;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#7adddd', endColorstr='#39CCCC', GradientType=0) !important;
color: #fff;
}
.bg-light-blue-gradient {
background: #3c8dbc !important;
background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #3c8dbc), color-stop(1, #67a8ce)) !important;
background: -o-linear-gradient(#67a8ce, #3c8dbc) !important;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#67a8ce', endColorstr='#3c8dbc', GradientType=0) !important;
color: #fff;
}
.bg-blue-gradient {
background: #0073b7 !important;
background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #0073b7), color-stop(1, #0089db)) !important;
background: -o-linear-gradient(#0089db, #0073b7) !important;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0089db', endColorstr='#0073b7', GradientType=0) !important;
color: #fff;
}
.bg-aqua-gradient {
background: #00c0ef !important;
background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #00c0ef), color-stop(1, #14d1ff)) !important;
background: -o-linear-gradient(#14d1ff, #00c0ef) !important;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#14d1ff', endColorstr='#00c0ef', GradientType=0) !important;
color: #fff;
}
.bg-yellow-gradient {
background: #f39c12 !important;
background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #f39c12), color-stop(1, #f7bc60)) !important;
background: -o-linear-gradient(#f7bc60, #f39c12) !important;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f7bc60', endColorstr='#f39c12', GradientType=0) !important;
color: #fff;
}
.bg-purple-gradient {
background: #605ca8 !important;
background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #605ca8), color-stop(1, #9491c4)) !important;
background: -o-linear-gradient(#9491c4, #605ca8) !important;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#9491c4', endColorstr='#605ca8', GradientType=0) !important;
color: #fff;
}
.bg-green-gradient {
background: #00a65a !important;
background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #00a65a), color-stop(1, #00ca6d)) !important;
background: -o-linear-gradient(#00ca6d, #00a65a) !important;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ca6d', endColorstr='#00a65a', GradientType=0) !important;
color: #fff;
}
.bg-red-gradient {
background: #dd4b39 !important;
background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #dd4b39), color-stop(1, #e47365)) !important;
background: -o-linear-gradient(#e47365, #dd4b39) !important;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e47365', endColorstr='#dd4b39', GradientType=0) !important;
color: #fff;
}
.bg-black-gradient {
background: #111 !important;
background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #111), color-stop(1, #2b2b2b)) !important;
background: -o-linear-gradient(#2b2b2b, #111) !important;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#2b2b2b', endColorstr='#111', GradientType=0) !important;
color: #fff;
}
.bg-maroon-gradient {
background: #D81B60 !important;
background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #D81B60), color-stop(1, #e73f7c)) !important;
background: -o-linear-gradient(#e73f7c, #D81B60) !important;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e73f7c', endColorstr='#D81B60', GradientType=0) !important;
color: #fff;
}
.description-block .description-icon {
font-size: 16px;
}
.no-pad-top {
padding-top: 0;
}
.position-static {
position: static !important;
}
.list-header {
font-size: 15px;
padding: 10px 4px;
font-weight: bold;
color: #666;
}
.list-seperator {
height: 1px;
background: #f4f4f4;
margin: 15px 0 9px 0;
}
.list-link > a {
padding: 4px;
color: #777;
}
.list-link > a:hover {
color: #222;
}
.font-light {
font-weight: 300;
}
.user-block:before,
.user-block:after {
content: " ";
display: table;
}
.user-block:after {
clear: both;
}
.user-block img {
width: 40px;
height: 40px;
float: left;
}
.user-block .username,
.user-block .description,
.user-block .comment {
display: block;
margin-left: 50px;
}
.user-block .username {
font-size: 16px;
font-weight: 600;
}
.user-block .description {
color: #999;
font-size: 13px;
}
.user-block.user-block-sm .username,
.user-block.user-block-sm .description,
.user-block.user-block-sm .comment {
margin-left: 40px;
}
.user-block.user-block-sm .username {
font-size: 14px;
}
.img-sm,
.img-md,
.img-lg,
.box-comments .box-comment img,
.user-block.user-block-sm img {
float: left;
}
.img-sm,
.box-comments .box-comment img,
.user-block.user-block-sm img {
width: 30px !important;
height: 30px !important;
}
.img-sm + .img-push {
margin-left: 40px;
}
.img-md {
width: 60px;
height: 60px;
}
.img-md + .img-push {
margin-left: 70px;
}
.img-lg {
width: 100px;
height: 100px;
}
.img-lg + .img-push {
margin-left: 110px;
}
.img-bordered {
border: 3px solid #d2d6de;
padding: 3px;
}
.img-bordered-sm {
border: 2px solid #d2d6de;
padding: 2px;
}
.attachment-block {
border: 1px solid #f4f4f4;
padding: 5px;
margin-bottom: 10px;
background: #f7f7f7;
}
.attachment-block .attachment-img {
max-width: 100px;
max-height: 100px;
height: auto;
float: left;
}
.attachment-block .attachment-pushed {
margin-left: 110px;
}
.attachment-block .attachment-heading {
margin: 0;
}
.attachment-block .attachment-text {
color: #555;
}
.connectedSortable {
min-height: 100px;
}
.ui-helper-hidden-accessible {
border: 0;
clip: rect(0 0 0 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
}
.sort-highlight {
background: #f4f4f4;
border: 1px dashed #ddd;
margin-bottom: 10px;
}
.full-opacity-hover {
opacity: 0.65;
filter: alpha(opacity=65);
}
.full-opacity-hover:hover {
opacity: 1;
filter: alpha(opacity=100);
}
.chart {
position: relative;
overflow: hidden;
width: 100%;
}
.chart svg,
.chart canvas {
width: 100% !important;
}
/*
* Misc: print
* -----------
*/
@media print {
.no-print,
.main-sidebar,
.left-side,
.main-header,
.content-header {
display: none !important;
}
.content-wrapper,
.right-side,
.main-footer {
margin-left: 0 !important;
min-height: 0 !important;
-webkit-transform: translate(0, 0) !important;
transform: translate(0, 0) !important;
}
.fixed .content-wrapper,
.fixed .right-side {
padding-top: 0 !important;
}
.invoice {
width: 100%;
border: 0;
margin: 0;
padding: 0;
}
.invoice-col {
float: left;
width: 33.3333333%;
}
.table-responsive {
overflow: auto;
}
.table-responsive > .table tr th,
.table-responsive > .table tr td {
white-space: normal !important;
}
}
/*# sourceMappingURL=AdminLTE.css.map */
|
index.html
|
zhongchengjie/f7-vue-app
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no, minimal-ui">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<title>share</title>
<!-- built style files will be auto injected -->
</head>
<body>
<div id="app"></div>
<!-- built script files will be auto injected -->
</body>
</html>
|
_pages/speaker-profile-8.html
|
djangocon/2015.djangocon.us
|
---
permalink: /speaker/profile/8/
title: Lacey Williams Henschel | DjangoCon in Austin, TX
---
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="utf-8"/>
<title>Lacey Williams Henschel | DjangoCon in Austin, TX</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport"/>
<meta content="DjangoCon US 2015 in Austin, TX" property="og:title">
<meta content="website" property="og:type">
<meta content="https://2015.djangocon.us/" property="og:url"/>
<meta content="DjangoCon US 2015" property="og:site_name"/>
<meta content="A six-day not-for-profit by-the-community and for-the-community international conference for the Django web framework. " property="og:description"/>
<meta content="https://2015.djangocon.us/site_media/static/images/djangocon-logo-thumb.png" property="og:image"/>
<link href="/site_media/static/main.css" media="screen,projection" rel="stylesheet" type="text/css"/>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="//oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="//oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
<![endif]-->
<link href="/site_media/static/images/favicon.ico" rel="shortcut icon"/>
<script src="https://cdn.jsdelivr.net/jquery/1.11.2/jquery.min.js"></script>
</meta></meta></head>
<body class="full" id="">
<div class="poster-bg">
<div class="poster-shadow">
<div class="django-sticker"></div>
<!-- Fixed navbar -->
<div class="navbar-wrapper">
<div class="navbar navbar-default" role="navigation">
<div class="container">
<div class="navbar-header">
<button class="navbar-toggle" data-target=".navbar-collapse" data-toggle="collapse" type="button">
<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="/proposals/submit/">
<img alt="logo" class="img-responsive" src="/site_media/static/images/logo.png" width="180"/>
</a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li class="dropdown ">
<a class="dropdown-toggle" data-toggle="dropdown" href="/#">
About
<b class="caret"></b>
</a>
<ul class="dropdown-menu" role="menu">
<li role="presentation">
<a href="/about/" role="menuitem">What is Djangocon?</a>
</li>
<li role="presentation">
<a href="/organizers/" role="menuitem">DjangoCon Organizers</a>
</li>
<li role="presentation">
<a href="/code_of_conduct/" role="menuitem">Code of Conduct</a>
</li>
<li role="presentation">
<a href="/diversity/" role="menuitem">Diversity</a>
</li>
<li role="presentation">
<a href="/accessibility/" role="menuitem">Accessibility</a>
</li>
<li role="presentation">
<a href="/financial_aid/" role="menuitem">Financial Aid</a>
</li>
<li role="presentation">
<a href="/childcare/" role="menuitem">Childcare</a>
</li>
<li role="presentation">
<a href="/volunteers/" role="menuitem">Volunteers</a>
</li>
<li role="presentation">
<a href="/contact/" role="menuitem">Contact Us</a>
</li>
</ul>
</li>
<li class="dropdown ">
<a class="dropdown-toggle" data-toggle="dropdown" href="/#">
Schedule
<b class="caret"></b>
</a>
<ul class="dropdown-menu" role="menu">
<li role="presentation">
<a href="/schedule/tutorials/list/" role="menuitem">Tutorial Schedule</a>
</li>
<li role="presentation">
<a href="/schedule/general-sessions/" role="menuitem">Talk Schedule</a>
</li>
<li role="presentation">
<a href="/sprints/" role="menuitem">Sprints</a>
</li>
<li role="presentation">
<a href="https://djangogirls.org/philadelphia/" role="menuitem">DjangoGirls Austin Workshop</a>
</li>
<li role="presentation">
<a href="/beginners/" role="menuitem">Beginner's Guide</a>
</li>
</ul>
</li>
<li class="dropdown ">
<a class="dropdown-toggle" data-toggle="dropdown" href="/#">
Registration
<b class="caret"></b>
</a>
<ul class="dropdown-menu" role="menu">
<li role="presentation">
<a href="/registration/" role="menuitem">Register for DjangoCon US</a>
</li>
<li role="presentation">
<a href="https://djangogirls.org/philadelphia/apply/" role="menuitem">Register for DjangoGirls Austin Workshop</a>
</li>
<li role="presentation">
<a href="https://resweb.passkey.com/go/DJANGO0915" role="menuitem">Register for Hotel Accommodations</a>
</li>
</ul>
</li>
<li class="dropdown ">
<a class="dropdown-toggle" data-toggle="dropdown" href="/#">
Venue
<b class="caret"></b>
</a>
<ul class="dropdown-menu" role="menu">
<li role="presentation">
<a href="/hotels/" role="menuitem">Hotel Accommodations</a>
</li>
<li role="presentation">
<a href="/travel/" role="menuitem">Travel</a>
</li>
<li role="presentation">
<a href="/austin/" role="menuitem">City Guide to Austin</a>
</li>
</ul>
</li>
<li class="dropdown ">
<a class="dropdown-toggle" data-toggle="dropdown" href="/#">
Speaking
<b class="caret"></b>
</a>
<ul class="dropdown-menu" role="menu">
<li role="presentation">
<a href="/speaking/cfp/" role="menuitem">Call For Proposals</a>
</li>
<li role="presentation">
<a href="/speaking/mentors/" role="menuitem">Speaker Mentors</a>
</li>
<li role="presentation">
<a href="/lightning_talks/" role="menuitem">Lightning Talks</a>
</li>
</ul>
</li>
<li class="dropdown ">
<a class="dropdown-toggle" data-toggle="dropdown" href="/#">
Sponsors
<b class="caret"></b>
</a>
<ul class="dropdown-menu" role="menu">
<li role="presentation">
<a href="/become-sponsor/" role="menuitem">Become a Sponsor</a>
</li>
<li role="presentation">
<a href="/sponsors/" role="menuitem">DjangoCon Sponsors</a>
</li>
</ul>
</li>
<li class=" ">
<a href="/blog/">
News
</a>
</li>
</ul>
<div class="" id="capsules">
<ul class="nav navbar-nav navbar-right">
<li><a href="/account/login/">Log in</a></li>
<li><a href="/account/signup/">Sign up</a></li>
</ul>
</div>
<form action="https://2015.djangocon.us/account/logout/" id="accountLogOutForm" method="POST" style="display: none;">
<input name="csrfmiddlewaretoken" type="hidden" value="vKDUxSvBXQum2uTW0DN1QlXrjKdu8pjA"/>
</form>
</div>
<!--/.nav-collapse -->
</div>
</div>
</div>
<div class="row small-header">
<div class="container">
<h1 class="brdp"></h1>
</div>
</div>
<div class="row base-row">
<div class="container">
</div>
</div>
<div class="row base-row">
<div class="container">
<div class="span2">
<img alt="Lacey Williams Henschel" src="/site_media/media/speaker_photos/WqaqgNo0_400x400.jpg.128x128_q85.jpg"/>
</div>
<div class="span6">
<h1>Lacey Williams Henschel</h1>
<div class="bio"><p>Lacey is this year's DjangoCon US Diversity Chair, and has been developing in Django for three years at the University of Texas at Austin. She's co-organizer of Django Girls ATX, taking place at the conference. She also co-organized Django Girls PDX in Portland this past July. Her guest course for Treehouse, "Customizing Django Templates," comes out soon. She telecommutes full-time from Portland, Oregon.</p></div>
<h2>Presentations</h2>
<h3><a href="/schedule/presentation/61/">Jane Austen on PEP8: Tips from an English Major on Writing Better Code</a></h3>
<p>
Tuesday
10:30 a.m.–10:55 a.m.
in
Amphitheater 204
</p>
</div>
</div>
</div>
<div class="row" id="footer">
<div class="mainback">
<div class="turm">
<div class="outer">
<div class="inner">
<div class="container">
<div class="nail nail-bl"></div>
<div class="nail nail-br"></div>
<div class="col-md-6 col-centered footer-note">
<div class="contact-us">Questions? Comments?</div><a href="/contact/">Contact Us</a><br/>
Design + Build by
<a href="https://www.lincolnloop.com">Lincoln Loop</a> <br>
Hosted on <a href="https://gondor.io">Gondor</a> <br/>
Presented by <a href="https://www.defna.org">DEFNA</a>
<p>©2016 DjangoCon</p>
</br></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script charset="utf-8" src="/site_media/static/main.js" type="text/javascript"></script>
{% include analytics.html %}
</body>
</html>
|
data science/machine_learning_for_the_web/chapter_4/movie/9407.html
|
xianjunzhengbackup/code
|
<HTML><HEAD>
<TITLE>Review for Devil's Advocate, The (1997)</TITLE>
<LINK REL="STYLESHEET" TYPE="text/css" HREF="/ramr.css">
</HEAD>
<BODY BGCOLOR="#FFFFFF" TEXT="#000000">
<H1 ALIGN="CENTER" CLASS="title"><A HREF="/Title?0118971">Devil's Advocate, The (1997)</A></H1><H3 ALIGN=CENTER>reviewed by<BR><A HREF="/ReviewsBy?jon+ridge">jon ridge</A></H3><HR WIDTH="40%" SIZE="4">
<PRE>
favorite critics:</PRE>
<PRE>1. Roger Ebert (Chicago Suntimes)
2. Peter Travers (Rolling Stone)
3. Owen Gleiberman (EW)
4. Jeff Millar (Houston Chronicle)
5. Michael MacCambridge (...?)</PRE>
<P>Keanu Reeves - the anti-actor he proves himself to be on a continual
basis - has a dynamite scene in DEVIL'S ADVOCATE. His beautiful,
grace-fallen wife has been admitted to a mental hospital. She's seen
demons that even her husband is blind to (because of his ambition).
Every- one thinks she's crazy. She locks herself in a room, props a chair
under the doorknob, and takes a broken shard of glass from the floor to her
throat. Reeves is watching, from just outside, helplessly. He grabs a
chair, smashes it through the window on the door and the metal screen
behind it, until he has gotten to her. It's too late. He is screaming,
crying, holding her, calling out for help, while the life slips out of his
wife. I've no idea what Reeves did to prepare for this scene; he's never
done it before, and certainly nowhere else in this new film of his has
that has a thing to do with his character is it displayed. But, during
that one isolated stretch of film, he acts and reacts exactly like a
real person would, faced with a situation so traumatic.</P>
<PRE> It's a welcome relief from him, from the rest of the film.</PRE>
<P> DEVIL'S ADVOCATE does a good job setting up his character,
though. He plays Kevin Lomax, a lawyer from Florida with a perfect,
unbeaten record. At picture's start, we see him defending a blatant
pedophile - a teacher who has made sexual advances toward a student.
The girl is on the stand. Lomax knows what he's dealing with; he is
reasonably uncomfortable and angry with his client, and yet his pride
and ardor for profession are just as much at stake.</P>
<PRE> Morality and conscience take a back seat.</PRE>
<P> By the time this overlong film ended, I think I understood pretty
much what it was trying to get at, and I liked the intention. Lawyers
are evil, because they rescue other evil men. And leading them, at
the head of some big firm someplace may, in fact, be the evilest of
evil people.</P>
<P> That's who Kevin meets, when he is recruited by a renowned law
firm in upscale New York. Now only does Kevin win his cases, he
has a stong tendency to pick juries that will acquit, even when a case
would appear unwinnable. Unthinkable. "He's always been then.
I know that, now" Kevin says at one point, and I think the line doesn't
refer just to the big surprise in the film, but to Kevin himself, as a
person. Because of the people he defends, and for how he gets
his victory in court.</P>
<P> Anyway. This new company couldn't be any happier with Kevin,
and none within the company could be more overjoyed than one of
its partners, John Milton (Al Pacino). Kevin's ethics mesh well with
Milton's, because Milton knows how to pick really, really horrible
scum - depraved people, whom, because of who he is, Milton
wants to keep out there in the world. And Kevin knows how to
keep 'em right there.</P>
<P> Milton presents his protege a life impossible to resist: the
girls, the money, the fancy apartment, a perfect environment to mature
his considerable talent and feed the ego hand-in-hand "Because
the law, my boy, puts us into everything."</P>
<P> It's during a case involving triple homicide that Kevin goes full-
tilt, leaving responsibilities in his marriage in wait, breaking tiny
promises to his wife and distancing his knowing, religious mother.</P>
<P> "Never let 'em see you coming" Milton tells him, meaning
don't come off as anything special, and there's no threat. Yet,
that's where the real threat comes from. Makes sense. I liked
the subtle points made now and again, like a scene in which Kevin's
mother asks him to quote scripture; when it seems like he can't,
that must mean he isn't ready for what he has gone and gotten
hisself into - but then, he does quote the verse, which means he
is ready.</P>
<P> I also liked Charlize Theron, as the wife, though her character
was equally under- and overdeveloped; under, in that her insanity
seems to come out of left field (I think she mentioned something
about a panick attack, but that's all the preparation we receive);
over, in that the insanity is taken too far too quickly (what tells
us she's the kind of person that would try to kill herself?).</P>
<P> If there's a deadspot, besides Reeves in almost every scene
except the one I mentioned, it's the triple homicide thing. It
goes nowhere, slow, when the very thing to solve it becomes
and remains so obvious. The case merely serves as a turning-
point of sorts for Kevin, and it should've taken up less movie.</P>
<P> Hey, why would Kevin get disbarred? I mean, don't lawyers
sometimes do what he did?</P>
<PRE> Cool scene switching using a paint roller.</PRE>
<HR><P CLASS=flush><SMALL>The review above was posted to the
<A HREF="news:rec.arts.movies.reviews">rec.arts.movies.reviews</A> newsgroup (<A HREF="news:de.rec.film.kritiken">de.rec.film.kritiken</A> for German reviews).<BR>
The Internet Movie Database accepts no responsibility for the contents of the
review and has no editorial control. Unless stated otherwise, the copyright
belongs to the author.<BR>
Please direct comments/criticisms of the review to relevant newsgroups.<BR>
Broken URLs inthe reviews are the responsibility of the author.<BR>
The formatting of the review is likely to differ from the original due
to ASCII to HTML conversion.
</SMALL></P>
<P ALIGN=CENTER>Related links: <A HREF="/Reviews/">index of all rec.arts.movies.reviews reviews</A></P>
</P></BODY></HTML>
|
espace_libre_service.html
|
Simplon-Roubaix/AtelierYza
|
<!DOCTYPE html>
<html class="no-js" lang="fr">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>L'Atelier d'Yza café couture | Atelier couture</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="apple-touch-icon" href="img/apple-touch-icon.png">
<!-- Place favicon.ico in the root directory -->
<link rel="icon" href="img/favicon.ico">
<!-- Compiled and minified CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.7/css/materialize.min.css">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="font-awesome/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Abel" rel="stylesheet">
<script src="js/vendor/modernizr-2.8.3.min.js"></script>
</head>
<body>
<div class="wrap">
<!--[if lt IE 8]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<!-- header starts here===================================================== -->
<header>
<figure>
<a href="index.html" class="brand-logo"><img src="img/Logo_Ate_Yza_cu22.png" alt="Logo" /></a>
</figure>
<!--nav starts============================================================ -->
<nav>
<div class="nav-wrapper">
<a href="#" data-activates="mobile-demo" class="button-collapse"><i class="material-icons">menu</i></a>
<ul class="right hide-on-med-and-down">
<li><a href="index.html">Accueil</a></li>
<li><a href="actualities.html">Actualités</a></li>
<li><a href="agenda.html">Agenda</a></li>
<li><a href="gallery.html">Galerie</a></li>
<li><a href="tarif.html">Tarifs</a></li>
<li><a href="partners.html">Partenaires</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
<ul class="side-nav" id="mobile-demo">
<li><a href="index.html">Accueil</a></li>
<li><a href="actualities.html">Actualités</a></li>
<li><a href="agenda.html">Agenda</a></li>
<li><a href="gallery.html">Gallerie</a></li>
<li><a href="tarif.html">Tarifs</a></li>
<li><a href="partners.html">Partenaires</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</nav>
<!--nav ends here========================================================= -->
</header>
<!-- header ends here======================================================= -->
<div class="wrapper">
<!--section starts here===================================================== -->
<section class="section_a">
<div class="row">
<div class="col s12 m12">
<h4 class="header_salon_the">Espace Libre Service</h4>
<div class="card z-depth-3">
<div class="card-image">
<div id="cycler">
<img class="active" src="img/tea_time_1250_450.jpg"/>
<img src="img/20160910_152710_Richtone(HDR)_1250_450.jpg"/>
<img src="img/frame_work1250_450.jpg"/>
<img src="img/exposition_12508_450.jpg"/>
</div>
</div>
<div class="card-content">
<p>Le Lorem Ipsum est simplement du faux texte employé dans la composition et la mise en page avant impression. Le Lorem Ipsum est le faux texte standard de l'imprimerie depuis les années 1500, quand un peintre anonyme assembla ensemble des morceaux de texte pour réaliser un livre spécimen de polices de texte. Il n'a pas fait que survivre cinq siècles, mais s'est aussi adapté à la bureautique informatique, sans que son contenu n'en soit modifié. Il a été popularisé dans les années 1960 grâce à la vente de feuilles Letraset contenant des passages du Lorem Ipsum, et, plus récemment, par son inclusion dans des applications de mise en page de texte, comme Aldus PageMaker.</p>
</div>
<div class="card-action">
<a href="contact.html"><i class="tiny material-icons">mode_edit</i> Exprimez-vous</a>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
<!-- wrap ends here========================================================-->
<!-- footer starts here========================================================-->
<footer class="page-footer">
<div class="container">
<div class="row">
<div class="col l6 s12">
<h5 class="white-text">L'Atelier d'Yza</h5>
<p class="grey-text text-lighten-4">text ici</p>
<a href="contact.html" class="contact_link">Contact</a>
</div>
<div class="col l4 offset-l2 s12">
<h5 class="white-text">Social</h5>
<ul>
<li><a class="grey-text text-lighten-3" href="#!"><i class="fa fa-facebook" aria-hidden="true"></i>
Facebook</a></li>
<li><a class="grey-text text-lighten-3" href="#!"><i class="fa fa-google-plus" aria-hidden="true"></i>
Gmail</a></li>
</ul>
</div>
</div>
</div>
<div class="footer-copyright">
<div class="container">
© 2016 Copyleft
<a class="grey-text text-lighten-4 right" href="partners.html">Partenaires</a>
</div>
</div>
</footer>
<!-- footer ends here=======================================================-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="https://www.atlasestateagents.co.uk/javascript/tether.min.js"></script>
<script src="https://code.jquery.com/jquery-1.12.0.min.js"></script>
<script>
window.jQuery || document.write('<script src="js/vendor/jquery-1.12.0.min.js"><\/script>')
</script>
<script src="js/plugins.js"></script>
<script src="js/main.js"></script>
<script src="js/jQuery3.1.min.js"></script>
<!-- Google Analytics: change UA-XXXXX-X to be your site's ID. -->
<script>
(function(b, o, i, l, e, r) {
b.GoogleAnalyticsObject = l;
b[l] || (b[l] =
function() {
(b[l].q = b[l].q || []).push(arguments)
});
b[l].l = +new Date;
e = o.createElement(i);
r = o.getElementsByTagName(i)[0];
e.src = 'https://www.google-analytics.com/analytics.js';
r.parentNode.insertBefore(e, r)
}(window, document, 'script', 'ga'));
ga('create', 'UA-XXXXX-X', 'auto');
ga('send', 'pageview');
</script>
<!-- Compiled and minified JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.7/js/materialize.min.js"></script>
</body>
</html>
|
BOOST/boost_1_61_0/doc/html/boost/type_erasure/typeid_.html
|
calvinfarias/IC2015-2
|
<!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=US-ASCII">
<title>Struct template typeid_</title>
<link rel="stylesheet" href="../../../../doc/src/boostbook.css" type="text/css">
<meta name="generator" content="DocBook XSL Stylesheets V1.76.1">
<link rel="home" href="../../index.html" title="The Boost C++ Libraries BoostBook Documentation Subset">
<link rel="up" href="../../boost_typeerasure/reference.html#header.boost.type_erasure.builtin_hpp" title="Header <boost/type_erasure/builtin.hpp>">
<link rel="prev" href="assignable.html" title="Struct template assignable">
<link rel="next" href="call_idp314423328.html" title="Function call">
</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="assignable.html"><img src="../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../boost_typeerasure/reference.html#header.boost.type_erasure.builtin_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="call_idp314423328.html"><img src="../../../../doc/src/images/next.png" alt="Next"></a>
</div>
<div class="refentry">
<a name="boost.type_erasure.typeid_"></a><div class="titlepage"></div>
<div class="refnamediv">
<h2><span class="refentrytitle">Struct template typeid_</span></h2>
<p>boost::type_erasure::typeid_</p>
</div>
<h2 xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv-title">Synopsis</h2>
<div xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv"><pre class="synopsis"><span class="comment">// In header: <<a class="link" href="../../boost_typeerasure/reference.html#header.boost.type_erasure.builtin_hpp" title="Header <boost/type_erasure/builtin.hpp>">boost/type_erasure/builtin.hpp</a>>
</span><span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> T <span class="special">=</span> <a class="link" href="_self.html" title="Struct _self">_self</a><span class="special">></span>
<span class="keyword">struct</span> <a class="link" href="typeid_.html" title="Struct template typeid_">typeid_</a> <span class="special">{</span>
<span class="special">}</span><span class="special">;</span></pre></div>
<div class="refsect1">
<a name="idp448359600"></a><h2>Description</h2>
<p>Enables runtime type information. This is required if you want to use <a class="link" href="any_cast_idp323619904.html" title="Function any_cast">any_cast</a> or <a class="link" href="typeid_of.html" title="Function typeid_of">typeid_of</a>.</p>
<div class="note"><table border="0" summary="Note">
<tr>
<td rowspan="2" align="center" valign="top" width="25"><img alt="[Note]" src="../../../../doc/src/images/note.png"></td>
<th align="left">Note</th>
</tr>
<tr><td align="left" valign="top"><p><a class="link" href="typeid_.html" title="Struct template typeid_">typeid_</a> cannot be specialized because several library components including <a class="link" href="any_cast_idp323619904.html" title="Function any_cast">any_cast</a> would not work correctly if its behavior changed. There is no need to specialize it anyway, since it works for all types. <a class="link" href="typeid_.html" title="Struct template typeid_">typeid_</a> also cannot be passed to <a class="link" href="call_idp314423328.html" title="Function call">call</a>. To access it, use <a class="link" href="typeid_of.html" title="Function typeid_of">typeid_of</a>. </p></td></tr>
</table></div>
<p>
</p>
</div>
</div>
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
<td align="left"></td>
<td align="right"><div class="copyright-footer">Copyright © 2011-2013 Steven Watanabe<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="assignable.html"><img src="../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../boost_typeerasure/reference.html#header.boost.type_erasure.builtin_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="call_idp314423328.html"><img src="../../../../doc/src/images/next.png" alt="Next"></a>
</div>
</body>
</html>
|
src/app/equations/equation-list/equation-list.component.html
|
equation-cloud/equation-cloud-front-end
|
<div class="row">
<div class="col-2"></div>
<div class="col-8">
<app-equation-detail></app-equation-detail>
</div>
</div>
|
ocr_extracted/W29417_text/style.css
|
datamade/elpc_bakken
|
.styleSans12.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 12.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans10.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 10.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans11.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 11.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans9.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 9.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans18.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 18.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans8.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 8.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans1.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 1.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans36.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 36.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans84.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 84.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans758.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 758.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans751.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 751.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans7.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 7.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans12000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 12pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans14.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 14.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans469.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 469.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans693.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 693.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans124.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 124.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans474.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 474.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans205.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 205.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans475.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 475.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans17.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 17.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans655.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 655.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans6.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 6.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans4.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 4.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans39.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 39.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans24.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 24.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans35.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 35.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans125.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 125.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans19.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 19.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans29.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 29.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans145.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 145.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans15.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 15.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans16.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 16.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans5.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 5.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans297.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 297.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans71.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 71.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans33.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 33.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans53.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 53.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans161.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 161.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans122.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 122.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans56.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 56.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans133.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 133.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans44.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 44.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans28.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 28.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans41.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 41.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans57.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 57.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans134.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 134.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans307.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 307.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans25.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 25.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans30.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 30.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans144.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 144.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans286.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 286.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
|
src/shell/argos/argos-styles.css
|
mmfilesi/argos
|
.argos-hide {
display: none;
}
.argos-fade {
transition: all 1s ease;
opacity: 1;
}
.argos-fade-in {
opacity: 1;
}
.argos-fade-out {
opacity: 0;
}
/* todos */
#msgModal {
padding-left:10px;
padding-top:10px;
font-weight: bold;
display:none;
}
#msgModal.success .msgModal-msg {
color:#008100;
}
#msgModal.warning .msgModal-msg {
color:#dc0a23;
}
.has-error {
border-color: red;
background-color: #fbe1e1;
}
.has-error {
border-color: red;
background-color: #fbe1e1;
}
.form__component {
position: relative;
}
/*Error tooltip*/
.form__error {
position: absolute;
display: none;
top: 35px;
left: 0;
width: 100%;
padding: 10px;
font-size: 13px;
color: #000;
background: #fff;
border: 1px solid #ccc;
-webkit-box-shadow: 0 0 10px rgba(0,0,0,.3);
box-shadow: 0 0 10px rgba(0,0,0,.3);
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
z-index: 2;
}
.hasError ~ .form__error {
display: block;
}
.form__error__arrow, .form__error__arrow:after {
position: absolute;
display: block;
width: 0;
height: 0;
border-style: solid;
top: -7px;
left: 50%;
margin-left: -8px;
border-width: 8px;
border-top-width: 0;
border-color: transparent transparent rgba(0,0,0,.2) transparent;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
z-index: 2;
}
.form__error__arrow:after {
content: " ";
top: 1px;
left: 1px;
border-width: 7px;
border-top-width: 0;
border-color: transparent transparent #fff transparent;
}
/*Warnings*/
.hasSuccess{
border-color: #3c763d;
background-color: #f8fff7;
}
.hasError{
color: #dc0a23;
border-color: #dc0a23;
background-color: #fce4e6;
}
.hasWarning{
border-color: #f6df91;
background-color: #fefef2;
}
/*Warnings*/
.overlay {
visibility: hidden;
position: fixed;
top: 0;
left: 0;
bottom: 0;
right: 0;
overflow: visible;
background-color: rgba(0,0,0,.2);
}
.loader {
border-top: 1.1em solid rgba(0, 0, 0, .2);
border-right: 1.1em solid rgba(0, 0, 0, .2);
border-bottom: 1.1em solid rgba(0, 0, 0, .2);
border-left: 1.1em solid #eee;
-webkit-transform: translateZ(0);
transform: translateZ(0);
-webkit-animation: load8 2.1s infinite linear;
animation: load8 2.1s infinite linear;
border-radius: 50%;
position: absolute;
left: 50%;
top: 50%;
margin: -60px 0 0 -60px;
width: 120px;
height: 120px;
}
@-webkit-keyframes load8 {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg); }
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg); }
}
@keyframes load8 {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg); }
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg); }
}
|
src/index.html
|
liufulin90/react-admin
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>react-admin</title>
<link rel="stylesheet" href="/index.css" />
<link rel="icon" href="http://www.linxins.com/favicon.ico" type="image/x-icon">
<!--[if lte IE 10]>
<script
src="https://as.alipayobjects.com/g/component/??console-polyfill/0.2.2/index.js,media-match/2.0.2/media.match.min.js"></script>
<![endif]-->
</head>
<body>
<div id="root"></div>
<!-- <script src="/common.js"></script> -->
<script src="/index.js"></script>
</body>
</html>
|
TWLight/emails/templates/emails/comment_notification_coordinator-subject.html
|
WikipediaLibrary/TWLight
|
{% load i18n %}
{% comment %}Translators: This is the subject line of an email sent to coordinators when a comment is left on an application they processed.{% endcomment %}
{% trans 'New comment on a Wikipedia Library application you processed' %}
|
build/unbundled/bower_components/promise-polyfill/promise-polyfill-lite.html
|
UNArqui17i-B/FrontEnd
|
<html><head><link rel="import" href="../polymer/polymer.html"><script src="./Promise.js"></script><script>window.Promise||(window.Promise=MakePromise(Polymer.Base.async));</script></head><body></body></html>
|
public/style.css
|
HitoriSensei/redux-kanapka
|
/*
Testujemy czy działa
*/
html {
padding: 0;
}
body {
background: darkorange;
padding: 0;
margin: 0;
user-select: none;
}
.app{
display: flex;
flex-direction: row;
height: 100vh;
}
.app > * {
padding: 10px;
overflow: auto;
}
.app > *:last-child {
flex-grow: 1;
}
.kanapka{
display: flex;
}
@keyframes appearin {
from {
opacity: 0;
}
}
|
mirror/prvCode_07/cityCode_009-areaCode_01-deptCode_008/voteCode_20120101T1A2-qryType_ctks-prvCode_06-cityCode_009-areaCode_01-deptCode_008-liCode_0097.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=008&liCode=0097#"><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選區內埔鄉振豐村第0125投開票所</td>
<td nowrap align="center">陳俊豪</td>
<td nowrap align="center">1</td>
<td nowrap align="right">16</td>
<td nowrap align="right"> 2.58%</td>
</tr>
<!-- 投開票所內容 -->
<tr class="data">
<td nowrap align="center">蘇震清</td>
<td nowrap align="center">2</td>
<td nowrap align="right">330</td>
<td nowrap align="right"> 53.39%</td>
</tr>
<!-- 投開票所內容 -->
<tr class="data">
<td nowrap align="center">吳亮慶</td>
<td nowrap align="center">3</td>
<td nowrap align="right">17</td>
<td nowrap align="right"> 2.75%</td>
</tr>
<!-- 投開票所內容 -->
<tr class="data">
<td nowrap align="center">羅志明</td>
<td nowrap align="center">4</td>
<td nowrap align="right">255</td>
<td nowrap align="right"> 41.26%</td>
</tr>
<!-- 投開票所內容 -->
<tr class="data">
<td nowrap rowspan=4 align=center>屏東縣第01選區內埔鄉振豐村第0126投開票所</td>
<td nowrap align="center">陳俊豪</td>
<td nowrap align="center">1</td>
<td nowrap align="right">14</td>
<td nowrap align="right"> 2.12%</td>
</tr>
<!-- 投開票所內容 -->
<tr class="data">
<td nowrap align="center">蘇震清</td>
<td nowrap align="center">2</td>
<td nowrap align="right">357</td>
<td nowrap align="right"> 54.17%</td>
</tr>
<!-- 投開票所內容 -->
<tr class="data">
<td nowrap align="center">吳亮慶</td>
<td nowrap align="center">3</td>
<td nowrap align="right">12</td>
<td nowrap align="right"> 1.82%</td>
</tr>
<!-- 投開票所內容 -->
<tr class="data">
<td nowrap align="center">羅志明</td>
<td nowrap align="center">4</td>
<td nowrap align="right">276</td>
<td nowrap align="right"> 41.88%</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>
|
Reports/so/solissearch.episerver.web.2.0.109.448/SolisSearch.EPiServer.Web-net40.html
|
kuhlenh/port-to-core
|
<!DOCTYPE html>
<html xmlns:msxsl="urn:schemas-microsoft-com:xslt">
<head>
<meta content="en-us" http-equiv="Content-Language" />
<meta content="text/html; charset=utf-16" http-equiv="Content-Type" />
<title _locid="PortabilityAnalysis0">.NET Portability Report</title>
<style>
/* Body style, for the entire document */
body {
background: #F3F3F4;
color: #1E1E1F;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
padding: 0;
margin: 0;
}
/* Header1 style, used for the main title */
h1 {
padding: 10px 0px 10px 10px;
font-size: 21pt;
background-color: #E2E2E2;
border-bottom: 1px #C1C1C2 solid;
color: #201F20;
margin: 0;
font-weight: normal;
}
/* Header2 style, used for "Overview" and other sections */
h2 {
font-size: 18pt;
font-weight: normal;
padding: 15px 0 5px 0;
margin: 0;
}
/* Header3 style, used for sub-sections, such as project name */
h3 {
font-weight: normal;
font-size: 15pt;
margin: 0;
padding: 15px 0 5px 0;
background-color: transparent;
}
h4 {
font-weight: normal;
font-size: 12pt;
margin: 0;
padding: 0 0 0 0;
background-color: transparent;
}
/* Color all hyperlinks one color */
a {
color: #1382CE;
}
/* Paragraph text (for longer informational messages) */
p {
font-size: 10pt;
}
/* Table styles */
table {
border-spacing: 0 0;
border-collapse: collapse;
font-size: 10pt;
}
table th {
background: #E7E7E8;
text-align: left;
text-decoration: none;
font-weight: normal;
padding: 3px 6px 3px 6px;
}
table td {
vertical-align: top;
padding: 3px 6px 5px 5px;
margin: 0px;
border: 1px solid #E7E7E8;
background: #F7F7F8;
}
.NoBreakingChanges {
color: darkgreen;
font-weight:bold;
}
.FewBreakingChanges {
color: orange;
font-weight:bold;
}
.ManyBreakingChanges {
color: red;
font-weight:bold;
}
.BreakDetails {
margin-left: 30px;
}
.CompatMessage {
font-style: italic;
font-size: 10pt;
}
.GoodMessage {
color: darkgreen;
}
/* Local link is a style for hyperlinks that link to file:/// content, there are lots so color them as 'normal' text until the user mouse overs */
.localLink {
color: #1E1E1F;
background: #EEEEED;
text-decoration: none;
}
.localLink:hover {
color: #1382CE;
background: #FFFF99;
text-decoration: none;
}
/* Center text, used in the over views cells that contain message level counts */
.textCentered {
text-align: center;
}
/* The message cells in message tables should take up all avaliable space */
.messageCell {
width: 100%;
}
/* Padding around the content after the h1 */
#content {
padding: 0px 12px 12px 12px;
}
/* The overview table expands to width, with a max width of 97% */
#overview table {
width: auto;
max-width: 75%;
}
/* The messages tables are always 97% width */
#messages table {
width: 97%;
}
/* All Icons */
.IconSuccessEncoded, .IconInfoEncoded, .IconWarningEncoded, .IconErrorEncoded {
min-width: 18px;
min-height: 18px;
background-repeat: no-repeat;
background-position: center;
}
/* Success icon encoded */
.IconSuccessEncoded {
/* Note: Do not delete the comment below. It is used to verify the correctness of the encoded image resource below before the product is released */
/* [---XsltValidateInternal-Base64EncodedImage:IconSuccess#Begin#background-image: url(data:image/png;base64,#Separator#);#End#] */
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABPElEQVR4Xp1Tv0vDUBi8FqeA4NpBcBLcWnQSApncOnTo4FSnjP0DsnXpH5CxiwbHDg4Zuj4oOEXiJgiC4FDcCkLWmIMc1Pfw+eMgQ77v3Xf3Pe51YKGqqisAEwCR1TIAsiAIblSo6xrdHeJR85Xle3mdmCQKb0PsfqyxxzM8K15HZADl/H5+sHpZwYfxyRjTs+kWwKBx8yoHd2mRiuzF8mkJniWH/13u3Fjrs/EdhsdDFHGB/DLXEJBDLh1MWPAhPo1BLB4WX5yQywHR+m3tVe/t97D52CB/ziG0nIgD/qDuYg8WuCcVZ2YGwlJ3YDugkpR/VNcAEx6GEKhERSr71FuO4YCM4XBdwKvecjIlkSnsO0Hyp/GxSeJAdzBKzpOtnPwyyiPdAZhpZptT04tU+zk7s8czeges//s5C5+CwqrR4/gw+AAAAABJRU5ErkJggg==);
}
/* Information icon encoded */
.IconInfoEncoded {
/* Note: Do not delete the comment below. It is used to verify the correctness of the encoded image resource below before the product is released */
/* [---XsltValidateInternal-Base64EncodedImage:IconInformation#Begin#background-image: url(data:image/png;base64,#Separator#);#End#] */
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABHElEQVR4Xs2TsUoDQRRF7wwoziokjZUKadInhdhukR9YP8DMX1hYW+QvdsXa/QHBbcXC7W0CamWTQnclFutceIQJwwaWNLlwm5k5d94M76mmaeCrrmsLYOocY12FcxZFUeozCqKqqgYA8uevv1H6VuPxcwlfk5N92KHBxfFeCSAxxswlYAW/Xr989x/mv9gkhtyMDhcAxgzRsp7flj8B/HF1RsMXq+NZMkopaHe7lbKxQUEIGbKsYNoGn969060hZBkQex/W8oRQwsQaW2o3Ago2SVcJUzAgY3N0lTCZZm+zPS8HB51gMmS1DEYyOz9acKO1D8JWTlafKIMxdhvlfdyT94Vv5h7P8Ky7nQzACmhvKq3zk3PjW9asz9D/1oigecsioooAAAAASUVORK5CYII=);
}
/* Warning icon encoded */
.IconWarningEncoded {
/* Note: Do not delete the comment below. It is used to verify the correctness of the encoded image resource below before the product is released */
/* [---XsltValidateInternal-Base64EncodedImage:IconWarning#Begin#background-image: url(data:image/png;base64,#Separator#);#End#] */
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAACXBIWXMAAA7EAAAOxAGVKw4bAAAAx0lEQVR4XpWSMQ7CMAxFf4xAyBMLCxMrO8dhaBcuwdCJS3RJBw7SA/QGTCxdWJgiQYWKXJWKIXHIlyw5lqr34tQgEOdcBsCOx5yZK3hCCKdYXneQkh4pEfqzLfu+wVDSyyzFoJjfz9NB+pAF+eizx2Vruts0k15mPgvS6GYvpVtQhB61IB/dk6AF6fS4Ben0uIX5odtFe8Q/eW1KvFeH4e8khT6+gm5B+t3juyDt7n0jpe+CANTd+oTUjN/U3yVaABnSUjFz/gFq44JaVSCXeQAAAABJRU5ErkJggg==);
}
/* Error icon encoded */
.IconErrorEncoded {
/* Note: Do not delete the comment below. It is used to verify the correctness of the encoded image resource below before the product is released */
/* [---XsltValidateInternal-Base64EncodedImage:IconError#Begin#background-image: url(data:image/png;base64,#Separator#);#End#] */
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABQElEQVR4XqWTvUoEQRCE6wYPZUA80AfwAQz23uCMjA7MDRQEIzPBVEyNTQUFIw00vcQTTMzuAh/AxEQQT8HF/3G/oGGnEUGuoNnd6qoZuqltyKEsyzVJq5I6rnUp6SjGeGhESikzzlc1eL7opfuVbrqbU1Zw9NCgtQMaZpY0eNnaaL2fHusvTK5vKu7sjSS1Y4y3QUA6K3e3Mau5UFDyMP7tYF9o8cAHZv68vipoIJg971PZIZ5HiwdvYGGvFVFHmGmZ2MxwmQYPXubPl9Up0tfoMQGetXd6mRbvhBw+boZ6WF7Mbv1+GsHRk0fQmPAH1GfmZirbCfDJ61tw3Px8/8pZsPAG4jlVhcPgZ7adwNWBB68lkRQWFiTgFlbnLY3DGGM7izIJIyT/jjIvEJw6fdJTc6krDzh6aMwMP9bvDH4ADSsa9uSWVJkAAAAASUVORK5CYII=);
}
</style>
</head>
<body>
<h1 _locid="PortabilityReport">.NET Portability Report</h1>
<div id="content">
<div id="submissionId" style="font-size:8pt;">
<p>
<i>
Submission Id
4fec73b2-65d4-4c77-9981-1d0435026b3e
</i>
</p>
</div>
<h2 _locid="SummaryTitle">
<a name="Portability Summary"></a>Portability Summary
</h2>
<div id="summary">
<table>
<tbody>
<tr>
<th>Assembly</th>
<th>ASP.NET 5,Version=v1.0</th>
<th>Windows,Version=v8.1</th>
<th>.NET Framework,Version=v4.6</th>
<th>Windows Phone,Version=v8.1</th>
</tr>
<tr>
<td><strong><a href="#SolisSearch.EPiServer.Web">SolisSearch.EPiServer.Web</a></strong></td>
<td class="text-center">83.50 %</td>
<td class="text-center">76.70 %</td>
<td class="text-center">100.00 %</td>
<td class="text-center">76.70 %</td>
</tr>
</tbody>
</table>
</div>
<div id="details">
<a name="SolisSearch.EPiServer.Web"><h3>SolisSearch.EPiServer.Web</h3></a>
<table>
<tbody>
<tr>
<th>Target type</th>
<th>ASP.NET 5,Version=v1.0</th>
<th>Windows,Version=v8.1</th>
<th>.NET Framework,Version=v4.6</th>
<th>Windows Phone,Version=v8.1</th>
<th>Recommended changes</th>
</tr>
<tr>
<td>System.Collections.Specialized.NameValueCollection</td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">get_AllKeys</td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">get_Item(System.String)</td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>System.IO.File</td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">Exists(System.String)</td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">ReadAllText(System.String)</td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>System.Net.Sockets.SocketException</td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>System.Web.HttpServerUtility</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">MapPath(System.String)</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>System.Web.HttpUtility</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">HtmlEncode(System.String)</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>System.Web.UI.Control</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">get_Page</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">set_Visible(System.Boolean)</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>System.Web.UI.Page</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">#ctor</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">get_IsPostBack</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">get_Server</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>System.Web.UI.WebControls.Button</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>System.Web.UI.WebControls.Label</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">set_Text(System.String)</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>System.Web.UI.WebControls.Literal</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">set_Text(System.String)</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>System.Web.UI.WebControls.Panel</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
</tbody>
</table>
<p>
<a href="#Portability Summary">Back to Summary</a>
</p>
</div>
</div>
</body>
</html>
|
src/vs/workbench/browser/parts/panel/media/basepanelpart.css
|
microsoft/vscode
|
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
.monaco-workbench .part.basepanel > .composite.title > .title-actions .monaco-action-bar .actions-container {
justify-content: flex-end;
}
.monaco-workbench .part.basepanel > .composite.title > .title-actions .monaco-action-bar .action-item {
margin-right: 4px;
}
.monaco-workbench .part.basepanel > .composite.title > .title-actions .monaco-action-bar .action-item .action-label {
outline-offset: -2px;
}
/** Panel Switcher */
.monaco-workbench .part.basepanel > .composite.title > .panel-switcher-container.composite-bar > .monaco-action-bar .action-label.codicon-more {
display: flex;
align-items: center;
justify-content: center;
margin-left: 0px;
margin-right: 0px;
color: inherit !important;
}
.monaco-workbench .part.basepanel .empty-panel-message-area {
display: none;
height: 100%;
width: 100%;
}
.monaco-workbench .part.basepanel .empty-panel-message-area.visible {
display: flex;
align-items: center;
align-content: center;
justify-content: center;
}
.monaco-workbench .part.basepanel .empty-panel-message-area .empty-panel-message {
margin: 12px;
text-align: center;
}
.monaco-workbench .part.basepanel > .composite.title> .panel-switcher-container > .monaco-action-bar {
line-height: 27px; /* matches panel titles in settings */
height: 35px;
}
.monaco-workbench .part.basepanel > .composite.title> .panel-switcher-container > .monaco-action-bar .action-item {
text-transform: uppercase;
padding-left: 10px;
padding-right: 10px;
font-size: 11px;
padding-bottom: 2px; /* puts the bottom border down */
padding-top: 2px;
display: flex;
}
.monaco-workbench .part.basepanel > .composite.title> .panel-switcher-container > .monaco-action-bar .action-item.icon {
padding-left: 2px;
padding-right: 2px;
}
.monaco-workbench .part.basepanel > .composite.title> .panel-switcher-container > .monaco-action-bar .action-item.icon .action-label:not(.codicon) {
width: 16px;
height: 16px;
}
.monaco-workbench .part.basepanel > .composite.title> .panel-switcher-container > .monaco-action-bar .action-item::before,
.monaco-workbench .part.basepanel > .composite.title> .panel-switcher-container > .monaco-action-bar .action-item::after {
content: '';
width: 2px;
height: 24px;
position: absolute;
display: none;
opacity: 0;
background-color: var(--insert-border-color);
transition-property: opacity;
transition-duration: 0ms;
transition-delay: 100ms;
}
.monaco-workbench .part.basepanel > .composite.title.dragged-over > .panel-switcher-container > .monaco-action-bar .action-item::before,
.monaco-workbench .part.basepanel > .composite.title.dragged-over > .panel-switcher-container > .monaco-action-bar .action-item::after {
display: block;
}
.monaco-workbench .part.basepanel > .composite.title> .panel-switcher-container > .monaco-action-bar .action-item::before {
left: 1px;
margin-left: -2px;
}
.monaco-workbench .part.basepanel > .composite.title> .panel-switcher-container > .monaco-action-bar .action-item::after {
right: 1px;
margin-right: -2px;
}
.monaco-workbench .part.basepanel > .composite.title> .panel-switcher-container > .monaco-action-bar .action-item:first-of-type::before {
left: 2px;
margin-left: -2px;
}
.monaco-workbench .part.basepanel > .composite.title> .panel-switcher-container > .monaco-action-bar .action-item:last-of-type::after {
right: 2px;
margin-right: -2px;
}
.monaco-workbench .part.basepanel > .composite.title> .panel-switcher-container > .monaco-action-bar .action-item.right::before,
.monaco-workbench .part.basepanel > .composite.title> .panel-switcher-container > .monaco-action-bar .action-item.left::after,
.monaco-workbench .part.basepanel > .composite.title> .panel-switcher-container > .monaco-action-bar .action-item.left::before,
.monaco-workbench .part.basepanel > .composite.title> .panel-switcher-container > .monaco-action-bar .action-item.right::after {
transition-delay: 0s;
}
.monaco-workbench .part.basepanel > .composite.title> .panel-switcher-container > .monaco-action-bar .action-item.right + .action-item::before,
.monaco-workbench .part.basepanel > .composite.title> .panel-switcher-container > .monaco-action-bar .action-item.left::before,
.monaco-workbench .part.basepanel > .composite.title> .panel-switcher-container > .monaco-action-bar .action-item:last-of-type.right::after,
.monaco-workbench .part.basepanel > .composite.title.dragged-over-head > .panel-switcher-container > .monaco-action-bar .action-item:first-of-type::before,
.monaco-workbench .part.basepanel > .composite.title.dragged-over-tail > .panel-switcher-container > .monaco-action-bar .action-item:last-of-type::after {
opacity: 1;
}
.monaco-workbench .part.basepanel > .composite.title> .panel-switcher-container > .monaco-action-bar .action-item .action-label {
margin-right: 0;
padding: 2px;
}
.monaco-workbench .part.basepanel > .composite.title> .panel-switcher-container > .monaco-action-bar .action-item .action-label {
border-radius: 0;
}
.monaco-workbench .part.basepanel > .composite.title> .panel-switcher-container > .monaco-action-bar .action-item:not(.icon) .action-label,
.monaco-workbench .part.basepanel > .composite.title> .panel-switcher-container > .monaco-action-bar .action-item.icon .action-label.codicon {
background: none !important;
}
.monaco-workbench .part.basepanel > .composite.title> .panel-switcher-container > .monaco-action-bar .action-item.checked .action-label {
margin-right: 0;
}
.monaco-workbench .part.basepanel > .composite.title> .panel-switcher-container > .monaco-action-bar .badge {
margin-left: 8px;
display: flex;
align-items: center;
}
.monaco-workbench .part.basepanel > .composite.title> .panel-switcher-container > .monaco-action-bar .action-item.icon .badge {
margin-left: 0px;
}
.monaco-workbench .part.basepanel > .composite.title> .panel-switcher-container > .monaco-action-bar .badge .badge-content {
padding: 3px 5px;
border-radius: 11px;
font-size: 11px;
min-width: 18px;
height: 18px;
line-height: 11px;
font-weight: normal;
text-align: center;
display: inline-block;
box-sizing: border-box;
position: relative;
}
/* active item indicator */
.monaco-workbench .part.basepanel > .composite.title > .panel-switcher-container > .monaco-action-bar .action-item .active-item-indicator {
position: absolute;
z-index: 1;
bottom: 0;
overflow: hidden;
pointer-events: none;
height: 100%;
}
.monaco-workbench .part.basepanel > .composite.title > .panel-switcher-container > .monaco-action-bar .action-item .active-item-indicator {
top: -6px;
left: 10px;
width: calc(100% - 20px);
}
.monaco-workbench .part.basepanel > .composite.title > .panel-switcher-container > .monaco-action-bar .action-item.icon .active-item-indicator {
top: -1px;
left: 2px;
width: calc(100% - 4px);
}
.monaco-workbench .part.basepanel > .composite.title > .panel-switcher-container > .monaco-action-bar .action-item.checked .active-item-indicator:before,
.monaco-workbench .part.basepanel > .composite.title > .panel-switcher-container > .monaco-action-bar .action-item:focus .active-item-indicator:before {
content: "";
position: absolute;
z-index: 1;
bottom: 0;
width: 100%;
height: 0;
border-top-width: 1px;
border-top-style: solid;
}
.monaco-workbench .part.basepanel > .title > .panel-switcher-container > .monaco-action-bar .action-item.clicked:not(.checked):focus .active-item-indicator:before {
border-top-color: transparent !important; /* hides border on clicked state */
}
/* Rotate icons when panel is on right */
.monaco-workbench .part.basepanel.right .title-actions .codicon-split-horizontal::before,
.monaco-workbench .part.basepanel.right .global-actions .codicon-panel-maximize::before,
.monaco-workbench .part.basepanel.right .global-actions .codicon-panel-restore::before {
display: inline-block;
transform: rotate(-90deg);
}
/* Rotate icons when panel is on left */
.monaco-workbench .part.basepanel.left .title-actions .codicon-split-horizontal::before,
.monaco-workbench .part.basepanel.left .global-actions .codicon-panel-maximize::before,
.monaco-workbench .part.basepanel.left .global-actions .codicon-panel-restore::before {
display: inline-block;
transform: rotate(90deg);
}
|
clean/Linux-x86_64-4.11.2-2.0.7/extra-dev/dev/mathcomp-multinomials/1.5.4.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-multinomials: Error 🔥</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 / extra-dev</a></li>
<li class="active"><a href="">dev / mathcomp-multinomials - 1.5.4</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
mathcomp-multinomials
<small>
1.5.4
<span class="label label-danger">Error 🔥</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-01-19 18:24:42 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-01-19 18:24:42 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
conf-gmp 3 Virtual package relying on a GMP lib system installation
coq dev Formal proof management system
dune 2.9.1 Fast, portable, and opinionated build system
ocaml 4.11.2 The OCaml compiler (virtual package)
ocaml-base-compiler 4.11.2 Official release 4.11.2
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.1 A library manager for OCaml
zarith 1.12 Implements arithmetic and logical operations over arbitrary-precision integers
# opam file:
opam-version: "2.0"
maintainer: "pierre-yves@strub.nu"
homepage: "https://github.com/math-comp/multinomials"
bug-reports: "https://github.com/math-comp/multinomials/issues"
dev-repo: "git+https://github.com/math-comp/multinomials.git"
license: "CeCILL-B"
authors: ["Pierre-Yves Strub"]
build: [ "dune" "build" "-p" name "-j" jobs ]
depends: [
"coq" {(>= "8.10" & < "8.15~") | = "dev"}
"dune" {>= "2.5"}
"coq-mathcomp-ssreflect" {(>= "1.12" & < "1.14~") | = "dev"}
"coq-mathcomp-algebra"
"coq-mathcomp-bigenough" {(>= "1.0" & < "1.1~") | = "dev"}
"coq-mathcomp-finmap" {(>= "1.5" & < "1.6~") | = "dev"}
]
conflicts: [
"coq-native"
]
tags: [
"keyword:multinomials"
"keyword:monoid algebra"
"category:Math/Algebra/Multinomials"
"category:Math/Algebra/Monoid algebra"
"logpath:SsrMultinomials"
]
synopsis: "A Multivariate polynomial Library for the Mathematical Components Library"
url {
src: "https://github.com/math-comp/multinomials/archive/1.5.4.tar.gz"
checksum: "sha512=b92e76162316314653de4329b15a6cc535076e7f511e6e709cda2572381394b081a99207ce365eea034307eddacdf694486674f68d72cd5c29c7e4f40d1c01fc"
}
</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-multinomials.1.5.4 coq.dev</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-multinomials.1.5.4 coq.dev</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>11 m 53 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam list; echo; ulimit -Sv 16000000; timeout 4h opam install -y -v coq-mathcomp-multinomials.1.5.4 coq.dev</code></dd>
<dt>Return code</dt>
<dd>7936</dd>
<dt>Duration</dt>
<dd>1 m 16 s</dd>
<dt>Output</dt>
<dd><pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
conf-gmp 3 Virtual package relying on a GMP lib system installation
coq dev Formal proof management system
coq-mathcomp-algebra dev Mathematical Components Library on Algebra
coq-mathcomp-bigenough dev A small library to do epsilon - N reasonning
coq-mathcomp-fingroup dev Mathematical Components Library on finite groups
coq-mathcomp-finmap dev Finite sets, finite maps, finitely supported functions
coq-mathcomp-ssreflect dev Small Scale Reflection
dune 2.9.1 Fast, portable, and opinionated build system
ocaml 4.11.2 The OCaml compiler (virtual package)
ocaml-base-compiler 4.11.2 Official release 4.11.2
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.1 A library manager for OCaml
zarith 1.12 Implements arithmetic and logical operations over arbitrary-precision integers
[NOTE] Package coq is already installed (current version is dev).
The following actions will be performed:
- install coq-mathcomp-multinomials 1.5.4
<><> Gathering sources ><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/1: [coq-mathcomp-multinomials.1.5.4: http]
[coq-mathcomp-multinomials.1.5.4] downloaded from https://github.com/math-comp/multinomials/archive/1.5.4.tar.gz
Processing 1/1:
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/2: [coq-mathcomp-multinomials: dune build]
+ /home/bench/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "coq-mathcomp-multinomials" "-j" "4" (CWD=/home/bench/.opam/ocaml-base-compiler.4.11.2/.opam-switch/build/coq-mathcomp-multinomials.1.5.4)
- coqc src/.ssrcomplements.aux,src/ssrcomplements.{glob,vo}
- File "./src/ssrcomplements.v", line 190, characters 32-42:
- Warning: Notation prod_curry is deprecated since 8.13. Use uncurry instead.
- [deprecated-syntactic-definition,deprecated]
- File "./src/ssrcomplements.v", line 192, characters 0-29:
- Warning: The default value for hint locality is currently "local" in a
- section and "global" otherwise, but is scheduled to change in a future
- release. For the time being, adding hints outside of sections without
- specifying an explicit locality attribute is therefore deprecated. It is
- recommended to use "export" whenever possible. Use the attributes #[local],
- #[global] and #[export] depending on your choice. For example: "#[export]
- Hint Unfold foo : bar." [deprecated-hint-without-locality,deprecated]
- File "./src/ssrcomplements.v", line 197, characters 13-23:
- Warning: Notation prod_curry is deprecated since 8.13. Use uncurry instead.
- [deprecated-syntactic-definition,deprecated]
- coqc src/.mpoly.aux,src/mpoly.{glob,vo}
- File "./src/mpoly.v", line 984, characters 0-31:
- Warning: The default value for hint locality is currently "local" in a
- section and "global" otherwise, but is scheduled to change in a future
- release. For the time being, adding hints outside of sections without
- specifying an explicit locality attribute is therefore deprecated. It is
- recommended to use "export" whenever possible. Use the attributes #[local],
- #[global] and #[export] depending on your choice. For example: "#[export]
- Hint Unfold foo : bar." [deprecated-hint-without-locality,deprecated]
- File "./src/mpoly.v", line 1500, characters 20-30:
- Warning: Notation big_uncond is deprecated since mathcomp 1.13.0.
- Use big_rmcond instead. [deprecated-syntactic-definition,deprecated]
- File "./src/mpoly.v", line 1500, characters 20-30:
- Warning: Notation big_uncond is deprecated since mathcomp 1.13.0.
- Use big_rmcond instead. [deprecated-syntactic-definition,deprecated]
- File "./src/mpoly.v", line 1500, characters 20-30:
- Warning: Notation big_uncond is deprecated since mathcomp 1.13.0.
- Use big_rmcond instead. [deprecated-syntactic-definition,deprecated]
- File "./src/mpoly.v", line 1506, characters 20-30:
- Warning: Notation big_uncond is deprecated since mathcomp 1.13.0.
- Use big_rmcond instead. [deprecated-syntactic-definition,deprecated]
- File "./src/mpoly.v", line 1506, characters 20-30:
- Warning: Notation big_uncond is deprecated since mathcomp 1.13.0.
- Use big_rmcond instead. [deprecated-syntactic-definition,deprecated]
- File "./src/mpoly.v", line 1506, characters 20-30:
- Warning: Notation big_uncond is deprecated since mathcomp 1.13.0.
- Use big_rmcond instead. [deprecated-syntactic-definition,deprecated]
- File "./src/mpoly.v", line 1534, characters 10-20:
- Warning: Notation big_uncond is deprecated since mathcomp 1.13.0.
- Use big_rmcond instead. [deprecated-syntactic-definition,deprecated]
- File "./src/mpoly.v", line 1534, characters 10-20:
- Warning: Notation big_uncond is deprecated since mathcomp 1.13.0.
- Use big_rmcond instead. [deprecated-syntactic-definition,deprecated]
- File "./src/mpoly.v", line 1534, characters 10-20:
- Warning: Notation big_uncond is deprecated since mathcomp 1.13.0.
- Use big_rmcond instead. [deprecated-syntactic-definition,deprecated]
- File "./src/mpoly.v", line 1542, characters 10-20:
- Warning: Notation big_uncond is deprecated since mathcomp 1.13.0.
- Use big_rmcond instead. [deprecated-syntactic-definition,deprecated]
- File "./src/mpoly.v", line 1542, characters 10-20:
- Warning: Notation big_uncond is deprecated since mathcomp 1.13.0.
- Use big_rmcond instead. [deprecated-syntactic-definition,deprecated]
- File "./src/mpoly.v", line 1542, characters 10-20:
- Warning: Notation big_uncond is deprecated since mathcomp 1.13.0.
- Use big_rmcond instead. [deprecated-syntactic-definition,deprecated]
- File "./src/mpoly.v", line 1935, characters 11-21:
- Warning: Notation big_uncond is deprecated since mathcomp 1.13.0.
- Use big_rmcond instead. [deprecated-syntactic-definition,deprecated]
- File "./src/mpoly.v", line 1935, characters 11-21:
- Warning: Notation big_uncond is deprecated since mathcomp 1.13.0.
- Use big_rmcond instead. [deprecated-syntactic-definition,deprecated]
- File "./src/mpoly.v", line 1935, characters 11-21:
- Warning: Notation big_uncond is deprecated since mathcomp 1.13.0.
- Use big_rmcond instead. [deprecated-syntactic-definition,deprecated]
- File "./src/mpoly.v", line 1952, characters 8-18:
- Warning: Notation big_uncond is deprecated since mathcomp 1.13.0.
- Use big_rmcond instead. [deprecated-syntactic-definition,deprecated]
- File "./src/mpoly.v", line 1952, characters 8-18:
- Warning: Notation big_uncond is deprecated since mathcomp 1.13.0.
- Use big_rmcond instead. [deprecated-syntactic-definition,deprecated]
- File "./src/mpoly.v", line 1952, characters 8-18:
- Warning: Notation big_uncond is deprecated since mathcomp 1.13.0.
- Use big_rmcond instead. [deprecated-syntactic-definition,deprecated]
- File "./src/mpoly.v", line 1957, characters 8-18:
- Warning: Notation big_uncond is deprecated since mathcomp 1.13.0.
- Use big_rmcond instead. [deprecated-syntactic-definition,deprecated]
- File "./src/mpoly.v", line 1957, characters 8-18:
- Warning: Notation big_uncond is deprecated since mathcomp 1.13.0.
- Use big_rmcond instead. [deprecated-syntactic-definition,deprecated]
- File "./src/mpoly.v", line 1957, characters 8-18:
- Warning: Notation big_uncond is deprecated since mathcomp 1.13.0.
- Use big_rmcond instead. [deprecated-syntactic-definition,deprecated]
- File "./src/mpoly.v", line 2096, characters 27-39:
- Warning: Notation join_sup_seq is deprecated since mathcomp 1.13.0.
- Use joins_sup_seq instead. [deprecated-syntactic-definition,deprecated]
- File "./src/mpoly.v", line 2096, characters 27-39:
- Warning: Notation join_sup_seq is deprecated since mathcomp 1.13.0.
- Use joins_sup_seq instead. [deprecated-syntactic-definition,deprecated]
- File "./src/mpoly.v", line 2479, characters 8-18:
- Warning: Notation big_uncond is deprecated since mathcomp 1.13.0.
- Use big_rmcond instead. [deprecated-syntactic-definition,deprecated]
- File "./src/mpoly.v", line 2479, characters 8-18:
- Warning: Notation big_uncond is deprecated since mathcomp 1.13.0.
- Use big_rmcond instead. [deprecated-syntactic-definition,deprecated]
- File "./src/mpoly.v", line 2479, characters 8-18:
- Warning: Notation big_uncond is deprecated since mathcomp 1.13.0.
- Use big_rmcond instead. [deprecated-syntactic-definition,deprecated]
- File "./src/mpoly.v", line 2866, characters 8-18:
- Warning: Notation big_uncond is deprecated since mathcomp 1.13.0.
- Use big_rmcond instead. [deprecated-syntactic-definition,deprecated]
- File "./src/mpoly.v", line 2866, characters 8-18:
- Warning: Notation big_uncond is deprecated since mathcomp 1.13.0.
- Use big_rmcond instead. [deprecated-syntactic-definition,deprecated]
- File "./src/mpoly.v", line 2866, characters 8-18:
- Warning: Notation big_uncond is deprecated since mathcomp 1.13.0.
- Use big_rmcond instead. [deprecated-syntactic-definition,deprecated]
- File "./src/mpoly.v", line 4824, characters 10-22:
- Warning: Notation join_sup_seq is deprecated since mathcomp 1.13.0.
- Use joins_sup_seq instead. [deprecated-syntactic-definition,deprecated]
- File "./src/mpoly.v", line 4824, characters 10-22:
- Warning: Notation join_sup_seq is deprecated since mathcomp 1.13.0.
- Use joins_sup_seq instead. [deprecated-syntactic-definition,deprecated]
- File "./src/mpoly.v", line 5058, characters 25-35:
- Warning: Notation big_uncond is deprecated since mathcomp 1.13.0.
- Use big_rmcond instead. [deprecated-syntactic-definition,deprecated]
- File "./src/mpoly.v", line 5058, characters 25-35:
- Warning: Notation big_uncond is deprecated since mathcomp 1.13.0.
- Use big_rmcond instead. [deprecated-syntactic-definition,deprecated]
- File "./src/mpoly.v", line 5058, characters 25-35:
- Warning: Notation big_uncond is deprecated since mathcomp 1.13.0.
- Use big_rmcond instead. [deprecated-syntactic-definition,deprecated]
- File "./src/mpoly.v", line 5168, characters 0-82:
- Warning: The default value for hint locality is currently "local" in a
- section and "global" otherwise, but is scheduled to change in a future
- release. For the time being, adding hints outside of sections without
- specifying an explicit locality attribute is therefore deprecated. It is
- recommended to use "export" whenever possible. Use the attributes #[local],
- #[global] and #[export] depending on your choice. For example: "#[export]
- Hint Unfold foo : bar." [deprecated-hint-without-locality,deprecated]
- coqc src/.xfinmap.aux,src/xfinmap.{glob,vo} (exit 1)
- (cd _build/default && /home/bench/.opam/ocaml-base-compiler.4.11.2/bin/coqc -w -ambiguous-paths -w -notation-overridden -w -redundant-canonical-projection -w -projection-no-head-constant -R src SsrMultinomials src/xfinmap.v)
- File "./src/xfinmap.v", line 37, characters 64-70:
- Error: Syntax error: [ident] expected after 'in' (in [hloc]).
-
[ERROR] The compilation of coq-mathcomp-multinomials failed at "/home/bench/.opam/opam-init/hooks/sandbox.sh build dune build -p coq-mathcomp-multinomials -j 4".
#=== ERROR while compiling coq-mathcomp-multinomials.1.5.4 ====================#
# context 2.0.7 | linux/x86_64 | ocaml-base-compiler.4.11.2 | file:///home/bench/run/opam-coq-archive/released
# path ~/.opam/ocaml-base-compiler.4.11.2/.opam-switch/build/coq-mathcomp-multinomials.1.5.4
# command ~/.opam/opam-init/hooks/sandbox.sh build dune build -p coq-mathcomp-multinomials -j 4
# exit-code 1
# env-file ~/.opam/log/coq-mathcomp-multinomials-23493-335865.env
# output-file ~/.opam/log/coq-mathcomp-multinomials-23493-335865.out
### output ###
# [...]
# Warning: The default value for hint locality is currently "local" in a
# section and "global" otherwise, but is scheduled to change in a future
# release. For the time being, adding hints outside of sections without
# specifying an explicit locality attribute is therefore deprecated. It is
# recommended to use "export" whenever possible. Use the attributes #[local],
# #[global] and #[export] depending on your choice. For example: "#[export]
# Hint Unfold foo : bar." [deprecated-hint-without-locality,deprecated]
# coqc src/.xfinmap.aux,src/xfinmap.{glob,vo} (exit 1)
# (cd _build/default && /home/bench/.opam/ocaml-base-compiler.4.11.2/bin/coqc -w -ambiguous-paths -w -notation-overridden -w -redundant-canonical-projection -w -projection-no-head-constant -R src SsrMultinomials src/xfinmap.v)
# File "./src/xfinmap.v", line 37, characters 64-70:
# Error: Syntax error: [ident] expected after 'in' (in [hloc]).
#
<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
+- The following actions failed
| - build coq-mathcomp-multinomials 1.5.4
+-
- No changes have been performed
# Run eval $(opam env) to update the current shell environment
'opam install -y -v coq-mathcomp-multinomials.1.5.4 coq.dev' failed.
</pre></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.10.2-2.0.6/released/8.15.0/ptsf/8.7.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>ptsf: 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.15.0 / ptsf - 8.7.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
ptsf
<small>
8.7.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-02-20 02:33:22 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-02-20 02:33:22 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
conf-gmp 4 Virtual package relying on a GMP lib system installation
coq 8.15.0 Formal proof management system
dune 2.9.3 Fast, portable, and opinionated build system
ocaml 4.10.2 The OCaml compiler (virtual package)
ocaml-base-compiler 4.10.2 Official release 4.10.2
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.3 A library manager for OCaml
zarith 1.12 Implements arithmetic and logical operations over arbitrary-precision integers
# opam file:
opam-version: "2.0"
maintainer: "Hugo.Herbelin@inria.fr"
homepage: "https://github.com/coq-contribs/ptsf"
license: "BSD"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/PTSF"]
depends: [
"ocaml"
"coq" {>= "8.7" & < "8.8~"}
"coq-ptsatr" {>= "8.7" & < "8.8~"}
]
tags: [ "keyword: pure type systems" "keyword: judgmental equality" "keyword: explicit equality proofs" "keyword: proof relevance" "category: Mathematics/Logic/Type theory" ]
authors: [ "Floris van Doorn <fpv@andrew.cmu.edu> [http://www.andrew.cmu.edu/user/fpv/]" "Herman Geuvers <herman@cs.ru.nl> [http://www.cs.ru.nl/~herman/]" "Freek Wiedijk <freek@cs.ru.nl> [http://www.cs.ru.nl/~freek/]" ]
bug-reports: "https://github.com/coq-contribs/ptsf/issues"
dev-repo: "git+https://github.com/coq-contribs/ptsf.git"
synopsis: "Explicit Convertibility Proofs in Pure Type Systems"
description: """
http://www.andrew.cmu.edu/user/fpv/ptsf/
Formalization of the proof that PTS and PTS with explicit convertibility proofs (PTSf) are equivalent."""
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/ptsf/archive/v8.7.0.tar.gz"
checksum: "md5=06b61cab5293124feb4e335ae912f8b1"
}
</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-ptsf.8.7.0 coq.8.15.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.15.0).
The following dependencies couldn't be met:
- coq-ptsf -> coq < 8.8~ -> ocaml < 4.10
base of this switch (use `--unlock-base' to force)
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-ptsf.8.7.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
all-data/6000-6999/6795-22.html
|
BuzzAcademy/idioms-moe-unformatted-data
|
<table width="90%" border="0"><tr><td><script>function openfile(url) {fullwin = window.open(url, "fulltext", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes");}</script><div class="flayoutclass"><div class="flayoutclass_first"><table class="tableoutfmt2"><tr><th class="std1"><b>條目 </b></th><td class="std2">顧影自憐</td></tr>
<tr><th class="std1"><b>注音 </b></th><td class="std2">ㄍㄨ<sup class="subfont">ˋ</sup> |ㄥ<sup class="subfont">ˇ</sup> ㄗ<sup class="subfont">ˋ</sup> ㄌ|ㄢ<sup class="subfont">ˊ</sup></td></tr>
<tr><th class="std1"><b>漢語拼音 </b></th><td class="std2"><font class="english_word">gù yǐng zì lián</font></td></tr>
<tr><th class="std1"><b>釋義 </b></th><td class="std2"><img src=/cydic/dicword/fe59.jpg border=0 alt=* class=fontimg valign=center>看著自己的形影,自憐身世。形容孤獨失意的樣子。晉˙束<img src=/cydic/dicword/90d5.jpg border=0 alt=* class=fontimg valign=center>˙貧家賦:<img src=/cydic/dicword/fa40.gif border=0 alt=* class=fontimg valign=center>債家至而 相敦,乃取東而償西,行乞貸而無處,退顧影以自憐。<img src=/cydic/dicword/fa41.gif border=0 alt=* class=fontimg valign=center><img src=/cydic/dicword/fe5a.jpg border=0 alt=* class=fontimg valign=center>語本南朝梁˙張率˙繡賦:<img src=/cydic/dicword/fa40.gif border=0 alt=* class=fontimg valign=center>顧影自媚,窺鏡自憐。<img src=/cydic/dicword/fa41.gif border=0 alt=* class=fontimg valign=center>指自我欣賞。如:<img src=/cydic/dicword/fa40.gif border=0 alt=* class=fontimg valign=center>他閑來沒 事,就喜歡孤芳自賞、顧影自憐。<img src=/cydic/dicword/fa41.gif border=0 alt=* class=fontimg valign=center></td></tr>
<tr><th class="std1"><b><font class="fltypefont">附錄</font> </b></th><td class="std2">修訂本參考資料</td></tr>
</td></tr></table></div> <!-- flayoutclass_first --><div class="flayoutclass_second"></div> <!-- flayoutclass_second --></div> <!-- flayoutclass --></td></tr></table>
|
data/fromWeb/proposiciones/listsHtml/gp60_P_a1perma2.html
|
emagar/dipMexRepo
|
<html>
<head>
<title>Gaceta Parlamentaria, Cámara de Diputados</title>
</head>
<body text="#000000" bgcolor="#FFFFFF" link="#0000EE" vlink="#551A8B" alink="#FF0000">
<center><font color="#9C0000">
Proposiciones presentadas en el segundo periodo del primer año de la Comisión Permanente de la LX Legislatura
</font>
<hr><font color="#9C0000"><font size="-1">
Gaceta Parlamentaria de la Cámara de Diputados
actualizado 3/abr/2008
5628 1300, ext 54219 <A HREF="mailto:gaceta.parlamentaria@congreso.gob.mx">Correo</A>
</font></font>
</center>
<HR WIDTH="100%">
<font color="#CC0000">Miércoles 30 de mayo de 2007</font>
<ul><li>
Con punto de acuerdo, para que se instaure en la Cámara de Diputados una comisión especial de ética y transparencia, se instituya la figura de "oficial de ética parlamentaria".
<br>Presentada por los diputados Juan Abad de Jesús, Alberto Esteva Salinas, Cruz Humberto López Lena Cruz y Layda Elena Sansores San Román, Convergencia.
<br>Turnada a la Junta de Coordinación Política
<br><a href="/Gaceta/60/2007/jun/20070604.html#Prop20070604Etica">Gaceta Parlamentaria</a>, número 2267, lunes 4 de junio de 2007. (1004)
</li></ul>
<font color="#CC0000">Miércoles 13 de junio de 2007</font>
<ul><li>
Con punto de acuerdo, por el que se solicita investigar las presuntas violaciones a las disposiciones jurídicas en la materia y a la Norma Oficial Mexicana NOM-234-SSA1-2003 en el Hospital General de Navojoa, Sonora.
<br>Presentada por los diputados Mario Alberto Salazar Madera, José Antonio Muñoz Serrano y Luis Gerardo Serrato Castell, PAN.
<br>Turnada a la Comisión de Salud.
<br><A HREF="/Gaceta/60/2007/nov/20071112.html#DNP20071112Hospital">Dictaminada</a><font color="#ff6000"> en sentido negativo el lunes 12 de noviembre de 2007, se considera asunto totalmente concluido.</font>
<br><a href="/Gaceta/60/2007/jul/20070719.html#Prop20070719SaludSonora">Gaceta Parlamentaria</a>, número 2300, jueves 19 de julio de 2007. (1005)
</li></ul>
<ul><li>
Con punto de acuerdo, por el que se exhorta a la Secretaría de Salud a iniciar un registro y control sobre el síndrome de Turner.
<br>Presentada por los diputados Éctor Jaime Ramíerez Barba y Margarita Arenas Guzmán, PAN.
<br>Turnada a la Comisión de Salud.
<br><a href="/Gaceta/60/2007/jul/20070719.html#Prop20070719SaludTurner">Gaceta Parlamentaria</a>, número 2300, jueves 19 de julio de 2007. (1006)
</li></ul>
<font color="#CC0000">Miércoles 20 de junio de 2007</font>
<ul><li>
Con punto de acuerdo, para que se destinen recursos económicos para la construcción del primer hospital general de segundo nivel, en el municipio de Tultitlán de Mariano Escobedo, estado de México.
<br>Presentada por el diputado Francisco Martínez Martínez, PRD.
<br>Turnada a la Comisión de Salud.
<br><a href="/Gaceta/60/2007/jul/20070719.html#Prop20070719HospTult">Gaceta Parlamentaria</a>, número 2300, jueves 19 de julio de 2007. (1007)
</li></ul>
<font color="#CC0000">Miércoles 27 de junio de 2007</font>
<ul><li>
Con punto de acuerdo, por el que se exhorta a la Semarnat, a la Profeco y a la CNA a llevar a cabo acciones inmediatas para la protección y el saneamiento de la cuenca del río Laja.
<br>Presentada por el diputado Ramón Ignacio Lemus Muñoz Ledo, PAN.
<br>Turnada a la Comisión de Medio Ambiente y Recursos Naturales.
<br><A HREF="/Gaceta/60/2008/abr/20080403-III.html#Dictamen26">Dictaminada</a><font color="#ff6000"> y aprobada en la sesión del jueves 3 de abril de 2008.
</font>
<br><a href="/Gaceta/60/2007/jul/20070703.html#Prop20070703RioLaja">Gaceta Parlamentaria</a>, número 2288, martes 3 de julio de 2007. (1008)
</li></ul>
<font color="#CC0000">Miércoles 4 de julio de 2007</font>
<ul><li>
Con punto de acuerdo, en relación con la playa Delfines, situada en Cancún, Quintana Roo.
<br>Presentada por el diputado diputado Ramón Valdés Chávez, Convergencia.
<br>Turnada a la Comisión de Medio Ambiente y Recursos Naturales.
<br><A HREF="/Gaceta/60/2007/oct/20071029.html#DNP20071029Delfines">Dictaminada</a><font color="#ff6000"> en sentido negativo el martes 30 de octubre de 2007, se considera asunto totalmente concluido.</font>
<br><a href="/Gaceta/60/2007/jul/20070718.html#Prop20070718Valdez">Gaceta Parlamentaria</a>, número 2299, miércoles 18 de julio de 2007. (1009)
</li></ul>
<ul><li>
Con punto de acuerdo por el que se exhorta al titular del Poder Ejecutivo y a la Cámara de Diputados a elevar en términos reales un 3.5 por ciento del presupuesto para 2008 en todas las universidades que tengan a su cargo la conservación del patrimonio cultural e histórico de la nación, con la finalidad de apoyar y fortalecer, además de los compromisos educativos y de investigación, las responsabilidades de preservación, protección y difusión de las mismas.
<br>Presentada por los senadores Pablo Gómez Álvarez, Lázaro Mazón Alonso, Francisco Javier Castellón Fonseca, PRD.
<br>Turnada a la Comisión de Presupuesto y Cuenta Pública de la Cámara de Diputados.
<br><a href="/Gaceta/60/2007/jul/20070730.html#Prop20070730UNAM">Gaceta Parlamentaria</a>, número 2307, lunes 30 de julio de 2007. (1010)
</li></ul>
<font color="#CC0000">Miércoles 11 de julio de 2007</font>
<ul><li>
Con punto de acuerdo, por el que se cita a comparecer al titular de la Ssa y al comisionado de Protección Social en Salud; y se exhorta al secretario de la Función Pública a dar vista al Ministerio Público sobre las irregularidades en el Seguro Popular, y a la Comisión de Vigilancia de la Auditoría Superior de la Federación a fiscalizar dicho programa.
<br>Presentada por el diputado Marco Antonio Bernal Gutiérrez, y la diputada María del Carmen Pinete Vargas, PRI.
<br>Turnada a la Comisión de Salud.
<br><A HREF="/Gaceta/60/2007/oct/20071008.html#DNP20071008SrioSalud">Dictaminada</a><font color="#ff6000"> en sentido negativo el martes 9 de octubre de 2007, se considera asunto totalmente concluido.</font>
<br><a href="/Gaceta/60/2007/jul/20070716.html#Prop20070716SegPop">Gaceta Parlamentaria</a>, número 2297, lunes 16 de julio de 2007. (1011)
</li></ul>
<font color="#CC0000">Miércoles 17 de julio de 2007</font>
<ul><li>
Con punto de acuerdo, por el que se exhorta a la Auditoría Superior de la Federación y al gobierno del estado de Puebla a investigar y rendir un informe sobre la aplicación, durante el ejercicio 2006, de los recursos del Seguro Popular en esa entidad.
<br>Presentada por la diputada María del Carmen Parra Jiménez, PAN.
<br>Turnada a la Comisión de Salud.
<br><a href="/Gaceta/60/2007/jul/20070720.html#Prop20070720AuditPuebla">Gaceta Parlamentaria</a>, número 2301, viernes 20 de julio de 2007. (1012)
</li></ul>
<ul><li>
Con punto de acuerdo, por el que se exhorta a la Semarnat a atender y dar respuesta, a través de la Conagua y de la Profepa, en concurrencia con el gobierno del estado de Veracruz, a las demandas de la población de las márgenes del Río Blanco para revertir su contaminación.
<br>Presentada por el diputado Celso David Pulido Santiago, PRD.
<br>Turnada a la Comisión de Medio Ambiente y Recursos Naturales.
<br><a href="/Gaceta/60/2007/jul/20070720.html#Prop20070720RioContam">Gaceta Parlamentaria</a>, número 2301, viernes 20 de julio de 2007. (1013)
</li></ul>
<font color="#CC0000">Miércoles 25 de julio de 2007</font>
<ul><li>
Con punto de acuerdo, por el que se exhorta a la Subcomisión de Examen Previo de Juicios Políticos a dictaminar con la mayor brevedad la denuncia de juicio político en contra del ciudadano Ulises Ruiz Ortiz, gobernador de Oaxaca, por violaciones graves a la Constitución Política de los Estados Unidos Mexicanos.
<br>Prsentada por los diputados Aleida Alavez Ruiz y Javier González
Garza, PRD.
<br>Turnada a la Subcomisión de Examen Previo.
<br><a href="/Gaceta/60/2007/jul/20070730.html#Prop20070730JuicioUlises">Gaceta Parlamentaria</a>, número 2307, lunes 30 de julio de 2007. (1014)
</li></ul>
<ul><li>
Con punto de acuerdo, en relación con la isla Sacrificios, en Veracruz.
<br>Presentada por los diputados Jesús González Macías, Guadalupe García Noriega, Francisco Elizondo Garrido, Diego Cobo Terrazas, y del senador Javier Orozco Gómez, PVEM.
<br>Turnado a la Comisión de Medio Ambiente y Recursos Naturales.
<br><A HREF="/Gaceta/60/2007/nov/20071106-IV.html#DPP20071106-4">Dictaminada</a><font color="#ff6000"> y aprobada en la sesión del martes 6 de noviembre de 2007.
</font>
<br><a href="/Gaceta/60/2007/jul/20070730.html#Prop20070730Isla">Gaceta Parlamentaria</a>, número 2307, lunes 30 de julio de 2007. (1015)
</li></ul>
<ul><li>
Con punto de acuerdo, en relación en la Bahía de Banderas, en Nayarit.
<br>Presentada por el diputado Diego Cobo Terrazas, Jesús González Macías, senador Javier Orozco Gómez, PVEM, y de la diputada Maricela Contreras Julián, PRD.
<br>Turnado a la Comisión de Medio Ambiente y Recursos Naturales.
<br><A HREF="/Gaceta/60/2008/abr/20080403-III.html#Dictamen25">Dictaminada</a><font color="#ff6000"> y aprobada en la sesión del jueves 3 de abril de 2008.
</font>
<br><a href="/Gaceta/60/2007/jul/20070730.html#Prop20070730Nayarit">Gaceta Parlamentaria</a>, número 2307, lunes 30 de julio de 2007. (1016)
</li></ul>
<font color="#CC0000">Martes 31 de julio de 2007</font>
<ul><li>
Con punto de acuerdo, por el que se exhorta a la Auditoría Superior de la Federación a investigar por qué no fueron ejercidos todos los recursos aprobados por esta soberanía en el Presupuesto de Egresos de la Federación de 2005 para infraestructura en salud del estado de Michoacán.
<br>Presentada por el diputado Efraín Arizmendi Uribe, en nombre propio y de los diputados María del Pilar Ortega Martínez y José Antonio Muñoz Serrano, PAN.
<br>Turnada a la Comisión de Vigilancia de la Auditoría Superior de la Federación.
<br><a href="/Gaceta/60/2007/ago/20070813.html#Prop20070813SaludMich">Gaceta Parlamentaria</a>, número 2317, lunes 13 de agosto de 2007. (1017)
</li></ul>
<font color="#CC0000">Miércoles 8 de agosto de 2007</font>
<ul><li>
Con punto de acuerdo, a fin de que se cite a comparecer al secretario de Salud y al administrador general de Aduanas para que expliquen por qué se autorizó la entrada en territorio nacional de docenas de toneladas de precursores químicos.
<br>Presentada por el diputado Alejandro Sánchez Camacho, PRD.
<br>Turnada a la Comisión de Salud.
<br><A HREF="/Gaceta/60/2007/oct/20071008.html#DNP20071008Quimicos">Dictaminada</a><font color="#ff6000"> en sentido negativo el martes 9 de octubre de 2007, se considera asunto totalmente concluido.</font>
<br><a href="/Gaceta/60/2007/ago/20070813.html#Prop20070813SaludQuimic">Gaceta Parlamentaria</a>, número 2317, lunes 13 de agosto de 2007. (1018)
</li></ul>
<ul><li>
Con punto de acuerdo, por el que se solicita al jefe del Gobierno del Distrito Federal que remita a la Comisión del Distrito Federal de esta soberanía un informe pormenorizado sobre el proyecto de construcción de la Torre Bicentenario; y al Instituto Nacional de Bellas Artes, uno respecto a la situación del inmueble situado en Calle del Pedregal número 24.
<br>Presentada por el diputado Cruz Pérez Cuéllar, PAN.
<br>Turnada a la Comisión del Distrito Federal.
<br><a href="/Gaceta/60/2007/ago/20070813.html#Prop20070813InfoConstr">Gaceta Parlamentaria</a>, número 2317, lunes 13 de agosto de 2007. (1019)
</li></ul>
<ul><li>
Con punto de acuerdo, por el que se exhorta a la Comisión de Presupuesto y Cuenta Pública de esta soberanía a considerar y autorizar, en el marco de la discusión y aprobación del Presupuesto de Egresos de la Federación de 2008, mayores recursos para el Instituto Nacional de la Pesca.
<br>Presentada por del senador Luis Alberto Coppola Joffroy, PAN.
<br>Turnada a la Comisión de Presupuesto y Cuenta Pública.
<br><a href="/Gaceta/60/2007/ago/20070815.html#Prop20070815PresuPesca">Gaceta Parlamentaria</a>, número 2319, miércoles 15 de agosto de 2007. (1020)
</li></ul>
<font color="#CC0000">Miércoles 15 de agosto de 2007</font>
<ul><li>
Con punto de acuerdo por el que se solicita que en el Presupuesto de Egresos de 2008 se consideren los recursos necesarios para el establecimiento de un programa de cobertura total para los pacientes con hepatitis C.
<br>Presentada por la Senadora María Elena Orantes López, PRI.
<br>Turnada a la Comisión de Presupuesto y Cuenta Pública.
<br><a href="/Gaceta/60/2007/ago/20070827.html#Prop20070827Hepatit">Gaceta Parlamentaria</a>, número 2327, lunes 27 de agosto de 2007. (1021)
</li></ul>
<font color="#CC0000">Miércoles 22 de agosto de 2007</font>
<ul><li>
Con punto de acuerdo, por el que se exhorta al gobierno de Veracruz a realizar las acciones necesarias para promover el acceso e integración laboral de personas con discapacidad en el sector público.
<br>Presentada por la diputada María Victoria Gutiérrez Lagunes, PAN.
<br>Turnada a la Comisión de Atención a Grupos Vulnerables.
<br><A HREF="/Gaceta/60/2008/feb/20080214-IV.html#DPP20080214-2">Dictaminada</a><font color="#ff6000"> y aprobada en la sesión del jueves 14 de febrero de 2008.
</font>
<br><a href="/Gaceta/60/2007/ago/20070827.html#Prop20070827-1">Gaceta Parlamentaria</a>, número 2327, lunes 27 de agosto de 2007. (1022)
</li></ul>
<ul><li>
Con punto de acuerdo, sobre la región conocida como Cumbres de Monterrey.
<br>Presentada por el diputado Diego Cobo Terrazas, en nombre propio y del senador Javier Orozco Gómez, PVEM.
<br>Turnada a la Comisión de Medio Ambiente y Recursos Naturales.
<br><A HREF="/Gaceta/60/2008/abr/20080403-III.html#Dictamen24">Dictaminada</a><font color="#ff6000"> y aprobada en la sesión del jueves 3 de abril de 2008.
</font>
<br><a href="/Gaceta/60/2007/ago/20070827.html#Prop20070827-2">Gaceta Parlamentaria</a>, número 2327, lunes 27 de agosto de 2007. (1023)
</li></ul>
<ul><li>
Con punto de acuerdo, relativa a la intervención del gobierno federal en los procesos electorales locales.
<br>Presentada por el diputado Javier González Garza, PRD.
<br>Tturnada a la Comisión de Gobernación.
<br><a href="/Gaceta/60/2007/ago/20070827.html#Prop20070827-3">Gaceta Parlamentaria</a>, número 2327, lunes 27 de agosto de 2007. (1024)
</li></ul>
<ul><li>
Con punto de acuerdo, a fin de que las Comisiones de Comunicaciones y Transportes de ambas Cámaras formen subcomisiones que den seguimiento y evalúen el cumplimiento de los objetivos del acuerdo de convergencia de servicios fijos de telefonía local y televisión o audio restringidos que se proporcionan a través de redes públicas alámbricas e inalámbricas, y de que comparezcan el secretario de Comunicaciones y Transportes y el comisionado federal de Telecomunicaciones.
<br>Presentada por el diputado César Horacio Duarte Jáquez, PRI.
<br>Turnada a la Comisión de Comunicaciones.
<br><a href="/Gaceta/60/2007/ago/20070827.html#Prop20070827-4">Gaceta Parlamentaria</a>, número 2327, lunes 27 de agosto de 2007. (1025)
</li></ul>
<ul><li>
Con punto de acuerdo, por el que se solicita la comparecencia de los secretarios de la Defensa Nacional, y de Seguridad Pública federal, así como del procurador general de la República y del director del Centro de Investigación y Seguridad Nacional, para informar sobre el supuesto pacto entre las diversas organizaciones criminales dedicadas al narcotráfico.
<br>Presentada por el diputado Javier Hernández Manzanares, PRD.
<br>Turnada a la Comisión de Defensa Nacional.
<br><a href="/Gaceta/60/2007/ago/20070827.html#Prop20070827-5">Gaceta Parlamentaria</a>, número 2327, lunes 27 de agosto de 2007. (1026)
</li></ul>
<ul><li>
Con punto de acuerdo, para citar a comparecer a los secretarios de Relaciones Exteriores, y de Economía, así como al titular del Cisen, en relación con las negociaciones en la Cumbre de Líderes de América del Norte, celebrada el 20 y el 21 de agosto en Montebello, Quebec, Canadá.
<br>Presentada por el diputado Jesús Humberto Zazueta Aguilar, PRD.
<br>Turnada a la Comisión de Relaciones Exteriores.
<br><A HREF="/Gaceta/60/2007/oct/20071022.html#DNP20071022Cumbre">Dictaminada</a><font color="#ff6000"> en sentido negativo el jueves 25 de octubre de 2007, se considera asunto totalmente concluido.</font>
<br><a href="/Gaceta/60/2007/ago/20070827.html#Prop20070827-6">Gaceta Parlamentaria</a>, número 2327, lunes 27 de agosto de 2007. (1027)
</li></ul>
<ul><li>
Con punto de acuerdo, por el que se exhorta al Poder Ejecutivo federal a integrar y poner en marcha el Consejo Nacional de Producción Orgánica previsto en la Ley de Productos Orgánicos.
<br>Presentada por el diputado Carlos Ernesto Navarro López, PRD.
<br>Turnada a la Comisión de Agricultura y Ganadería.
<br><a href="/Gaceta/60/2007/ago/20070827.html#Prop20070827-7">Gaceta Parlamentaria</a>, número 2327, lunes 27 de agosto de 2007. (1028)
</li></ul>
<ul><li>
Con punto de acuerdo, por el que se solicita a la Secretaría de Gobernación información sobre los planes y las políticas por implantar durante esta temporada de huracanes.
<br>Presentada por la diputada María del Carmen Pinete Vargas, PRI.
<br>Turnada a la Comisión de Gobernación.
<br><A HREF="/Gaceta/60/2008/mar/20080326-III.html#DPP20080326-7">Dictaminada</a><font color="#ff6000"> y aprobada en la sesión del miércoles 26 de marzo de 2008.
</font>
<br><a href="/Gaceta/60/2007/ago/20070827.html#Prop20070827-8">Gaceta Parlamentaria</a>, número 2327, lunes 27 de agosto de 2007. (1029)
</li></ul>
<ul><li>
Con punto de acuerdo, para exhortar a las autoridades del país y a los actores públicos a respetar el principio de laicidad del Estado mexicano.
<br>Presentada por la diputada Maricela Contreras Julián, PRD.
<br>Turnada a la Comisión de Gobernación.
<br><a href="/Gaceta/60/2007/ago/20070827.html#Prop20070827-9">Gaceta Parlamentaria</a>, número 2327, lunes 27 de agosto de 2007. (1030)
</li></ul>
<font color="#CC0000">Viernes 31 de agosto de 2007</font>
<ul><li>
Con punto de acuerdo, por el se que resuelve interponer controversia constitucional contra el Poder Ejecutivo federal por no publicar los reglamentos de la Ley de Desarrollo Rural Sustentable.
<br>Presentada por el diputado Carlos Navarro López, PRD.
<br>Turnada a la Comisión de Gobernación.
<br><a href="/Gaceta/60/2007/sep/20070926.html#Prop20070926Controv">Gaceta Parlamentaria</a>, número 2349, miércoles 26 de septiembre de 2007. (1031)
</li></ul>
<ul><li>
Con punto de acuerdo, por el que se exhorta al Ejecutivo federal, a través de la Secretaría de la Función Pública, a informar a esta soberanía sobre el inicio de los procesos de fincamiento de responsabilidades resarcitorias contra la empresa Gutsa, Infraestructura, SA de CV, y la inhabilitación correspondiente.
<br>Presentada por el diputado Humberto Zazueta Aguilar, en nombre del diputado Hugo Eduardo Martínez Padilla, PRD.
<br>Turnada a la Comisión de la Función Pública.
<br><A HREF="/Gaceta/60/2007/dic/20071212-II.html#DPP20071212-5">Dictaminada</a><font color="#ff6000"> y aprobada en la sesión del miércoles 12 de diciembre de 2007.
</font>
<br><a href="/Gaceta/60/2007/sep/20070926.html#Prop20070926Gutsa">Gaceta Parlamentaria</a>, número 2349, miércoles 26 de septiembre de 2007. (1032)
</li></ul>
<ul><li>
Con punto de acuerdo, por el que se exhorta al Ejecutivo federal a retirar el anteproyecto de decreto mediante el que se reforman, adicionan y derogan diversas disposiciones del Reglamento de Insumos para la Salud.
<br>Presentada por el diputado César Horacio Duarte Jáquez, PRI.
<br>Turnada a la Comión de Salud.
<br><A HREF="/Gaceta/60/2007/oct/20071029.html#DNP20071029Insumos">Dictaminada</a><font color="#ff6000"> en sentido negativo el martes 30 de octubre de 2007, se considera asunto totalmente concluido.</font>
<br><a href="/Gaceta/60/2007/sep/20070926.html#Prop20070926Salud">Gaceta Parlamentaria</a>, número 2349, miércoles 26 de septiembre de 2007. (1033)
</li></ul>
<ul><li>
Con punto de acuerdo, por el que se solicita cumplir la Ley de Bioseguridad de Organismos Genéticamente Modificados y observar el principio precautorio; y se exhorta a las autoridades competentes a informar sobre su participación en los convenios signados por la Confederación Nacional de Productores de Maíz de México, filial de la CNC, y la empresa Monsanto.
<br>Presentada por los diputados Adriana Díaz Contreras y Carlos Navarro López, PRD.
<br>Turnada a la Comisión de Agricultura y Ganadería.
<br><a href="/Gaceta/60/2007/sep/20070926.html#Prop20070926Maiz">Gaceta Parlamentaria</a>, número 2349, miércoles 26 de septiembre de 2007. (1034)
</li></ul>
<ul><li>
Con punto de acuerdo, mediante el cual se exhorta al gobierno federal, a los estatales y los municipales, a las autoridades laborales y a las militares a respetar plenamente el derecho de huelga y los laborales y de seguridad de los mineros de Taxco, Guerrero; Sombrerete, Zacatecas; y Cananea, Sonora.
<br>Presentada por los diputados Carlos Navarro López y Modesto Brito González, PRD.
<br>Turnada a la Comisión de Trabajo y Previsión Social.
<br><a href="/Gaceta/60/2007/sep/20070926.html#Prop20070926Mineros">Gaceta Parlamentaria</a>, número 2349, miércoles 26 de septiembre de 2007. (1035)
</li></ul>
<ul><li>
Con punto de acuerdo, por el que se resuelve presentar controversia constitucional contra el Poder Ejecutivo federal por no publicar en tiempo los reglamentos de la Ley de Desarrollo Rural Sustentable.
<br>Presentada por el diputado Carlos Navarro López, PRD.
<br>Turnada a la Comisión de Gobernación
<br><a href="/Gaceta/60/2007/sep/20070926.html#Prop20070926TiempoRural">Gaceta Parlamentaria</a>, número 2349, miércoles 26 de septiembre de 2007. (1036)
</li></ul>
<ul><li>
Con punto de acuerdo, por el que se exhorta a la Procuraduría General de la República a iniciar una investigación sobre los casos no considerados en la averiguación previa en contra del general Arturo Acosta Chaparro Escápite, por violaciones de lesa humanidad.
<br>Presentada por los diputados Alliet Bautista Bravo y Humberto Zazueta Aguilar, PRD.
<br>Turnada a la Comisión de Derechos Humanos.
<br><a href="/Gaceta/60/2007/sep/20070926.html#Prop20070926LesaHum">Gaceta Parlamentaria</a>, número 2349, miércoles 26 de septiembre de 2007. (1037)
</li></ul>
<ul><li>
Con punto de acuerdo, mediante el cual se solicita a Capufe que informe sobre sus ingresos por la administración de las autopistas y el monto que destina al mantenimiento de éstas.
<br>Presentada por el diputado Carlos Navarro López, PRD.
<br>Turnada a la Comisión de Comunicaciones.
<br><a href="/Gaceta/60/2007/sep/20070926.html#Prop20070926Capufe">Gaceta Parlamentaria</a>, número 2349, miércoles 26 de septiembre de 2007. (1038)
</li></ul>
<ul><li>
Con punto de acuerdo, relativo a Bahía de Banderas, Nayarit.
<br>Presentada por los diputados Diego Cobo Terrazas y Jesús González Macías y del senador Javier Orozco Gómez, del PVEM, y de la diputada Maricela Contreras Julián, del PRD.
<br>Turnada a la Comisión de Medio Ambiente y Recursos Naturales.
<br><A HREF="/Gaceta/60/2008/abr/20080403-III.html#Dictamen25">Dictaminada</a><font color="#ff6000"> y aprobada en la sesión del jueves 3 de abril de 2008.
</font>
<br><a href="/Gaceta/60/2007/sep/20070926.html#Prop20070926BahiaBanderas">Gaceta Parlamentaria</a>, número 2349, miércoles 26 de septiembre de 2007. (1039)
</li></ul>
<ul><li>
Con punto de acuerdo, relativo a las acciones de inconstitucionalidad interpuestas por la CNDH y la PGR contra las reformas del Código Penal y de la Ley de Salud del Distrito Federal.
<br>Presentada por la diputada Maricela Contreras Julián, PRD.
<br>Turnada a la Comisión de Derechos Humanos.
<br><a href="/Gaceta/60/2007/sep/20070926.html#Prop20070926SaludDF">Gaceta Parlamentaria</a>, número 2349, miércoles 26 de septiembre de 2007. (1040)
</li></ul>
<ul><li>
Con punto de acuerdo, por el que la Comisión Permanente emite excitativa a la colegisladora para la pronta aprobación de una minuta sobre la Auditoría Superior de la Federación.
<br>Presentada por el senador Dante Delgado Rannauro y el diputado Alejandro Chanona Burguete, Convergencia.
<br>Turnada a la Comisión de Gobernación.
<br><a href="/Gaceta/60/2007/sep/20070926.html#Prop20070926ExciMInu">Gaceta Parlamentaria</a>, número 2349, miércoles 26 de septiembre de 2007. (1041)
</li></ul>
<ul><li>
Con punto de acuerdo, por el que se exhorta al Ejecutivo federal a liberar recursos del Fondo de Desastres Naturales en apoyo de las víctimas del huracán Dean en el estado de Puebla y a articular sus acciones con los programas del sector desarrollo social para impulsar una verdadera política de vivienda digna.
<br>Presentada por la diputada María del Carmen Pinete Vargas, en nombre de los diputados Wenceslao Herrera Coyac, Jorge Charbel Estefan Chidiac, Mario Mendoza Cortés y Alberto Amador Leal.
<br>Turnada a la Comisión de Gobernación.
<br><a href="/Gaceta/60/2007/ago/20070831-II.html#Prop20070831-1">Gaceta Parlamentaria</a>, número 2331-II, viernes 31 de agosto de 2007. (1042)
</li></ul>
<!-----
<ul><li>*****Quitar porque quedaria en el anexo III************
Con punto de acuerdo, con el que solicita al procurador General de la República, a instruir a los agentes del Ministerio Público que se encuentran integrando las averiguaciones previas seguidas en contra de María Dolores Creel Miranda, ex titular de la Unidad de Proyectos Especiales del Consejo Nacional de la Cultura y las Artes, para que den mayor celeridad a sus actuaciones y tomen en consideración la resolución emitida por la Auditoría Superior de la Federación, y el Informe del Resultado de la Revisión y Fiscalización Superior de la Cuenta Pública 2003 de la Auditoría Superior de la Federación.
<br>Presentada por el diputado Pablo Trejo Pérez, PRD.
<br><a href="/Gaceta/60/2007/ago/20070831-II.html#">Gaceta Parlamentaria</a>, número 2331-II, viernes 31 de agosto de 2007. (10XX)
</li></ul>
---->
<ul><li>
Con punto de acuerdo, para que comparezca, ante esta soberanía, el presidente de la Junta Federal de Conciliación y Arbitraje, licenciado Miguel Ángel Gutiérrez Cantú.
<br>Presentada por el diputado José Antonio Almazán González, PRD.
<br>Turnada a la Comisión de Trabajo y Previsión Social.
<br><a href="/Gaceta/60/2007/ago/20070831-II.html#Prop20070831-3">Gaceta Parlamentaria</a>, número 2331-II, viernes 31 de agosto de 2007. (1043)
</li></ul>
<ul><li>
Con punto de acuerdo, para exhortar al titular del Ejecutivo federal para que se acuñe la medalla conmemorativa del quincuagésimo aniversario de la muerte del muralista mexicano Diego Rivera.
<br>Presentada por el diputado José Alfonso Suárez del Real y Aguilera, PRD.
Turnada a la Comisión de Cultura.
<br><A HREF="/Gaceta/60/2007/oct/20071009-I.html#DPP20071009-1">Dictaminada</a><font color="#ff6000"> y aprobada en la sesión del martes 9 de octubre de 2007.</font>
<br><a href="/Gaceta/60/2007/ago/20070831-II.html#Prop20070831-4">Gaceta Parlamentaria</a>, número 2331-II, viernes 31 de agosto de 2007. (1044)
</li></ul>
<ul><li>
Con punto de acuerdo, para exhortar al Ejecutivo federal a agilizar la entrega de recursos del fondo revolvente del Fondo de Desastres Naturales (Fonden) a favor de los municipios afectados por el huracán "Dean", y a integrar una comisión especial que se traslade a las zonas de desastre para supervisar la correcta aplicación de los recursos federales.
<br>Presentada por el senador Dante Delgado Rannauro, y por el diputado José Manuel del Río Virgen, Convergencia.
<br>Turnada a la Comisión de Gobernación.
<br><a href="/Gaceta/60/2007/ago/20070831-II.html#Prop20070831-5">Gaceta Parlamentaria</a>, número 2331-II, viernes 31 de agosto de 2007. (1045)
</li></ul>
<ul><li>
Con punto de acuerdo, relativo a la vigilancia de la niñez mexicana, probablemente intoxicada por plomo contenido en juguetes de la empresa Mattel Inc., y la aplicación de sanciones a esta empresa estadounidense, así como a la creación de un programa emergente de verificación, supervisión y atención en torno a piezas de juguetes que contienen plomo de dicha empresa, para evitar que se comercialicen en México piezas contaminadas.
<br>Presentada por la diputada Claudia Cruz Santiago, PRD.
<br>Turnada a las Comisiones Unidas de Economía y Salud.
<br><a href="/Gaceta/60/2007/ago/20070831-II.html#Prop20070831-6">Gaceta Parlamentaria</a>, número 2331-II, viernes 31 de agosto de 2007. (1046)
</li></ul>
<ul><li>
Con punto de acuerdo, relativo a la discriminación en planteles educativos que padecen los niños con VIH/sida.
<br>Presentada por la diputada Gabriela González Martínez, PAN.
<br>Turnada a la Comisión de Derechos Humanos.
<br><A HREF="/Gaceta/60/2007/nov/20071122-II.html#DPP20071122-3">Dictaminada</a><font color="#ff6000"> y aprobada en la sesión del jueves 22 de noviembre de 2007.
</font>
<br><a href="/Gaceta/60/2007/ago/20070831-II.html#Prop20070831-7">Gaceta Parlamentaria</a>, número 2331-II, viernes 31 de agosto de 2007. (1047)
</li></ul>
<ul><li>
Con punto de acuerdo, a fin de exhortar al Infonavit, para que suspenda la venta de su cartera vencida, así como para que establezca una renegociación con aquellos deudores que deseen hacerlo en condiciones preferenciales y acordes con su nivel económico, y establezca las medidas necesarias a fin de suspender los procesos judiciales de desalojo.
<br>Presentada por el diputado Carlos Ernesto Navarro López, PRD.
<br>Turnada a la Comisión de Vivienda.
<br><A HREF="/Gaceta/60/2007/dic/20071204-III.html#DPP20071204-3">Dictaminada</a><font color="#ff6000"> y aprobada en la sesión del martes 4 de diciembre de 2007.
</font>
<br><a href="/Gaceta/60/2007/ago/20070831-II.html#Prop20070831-8">Gaceta Parlamentaria</a>, número 2331-II, viernes 31 de agosto de 2007. (1048)
</li></ul>
<ul><li>
Con punto de acuerdo, con relación al proceso de venta de la empresa Satmex.
<br>Presentada por el diputado César Duarte Jáquez, PRI.
<br>Turnada a la Comisión de Comunicaciones.
<br><a href="/Gaceta/60/2007/ago/20070831-II.html#Prop20070831-9">Gaceta Parlamentaria</a>, número 2331-II, viernes 31 de agosto de 2007. (1049)
</li></ul>
<!-- aaaaaaaaaaaaaaaaaaaaaaaaaaaaa -->
<ul> </ul>
<ul> </ul>
</body>
</html>
|
test/source-change.html
|
froderystad/fotballvarsel
|
<!DOCTYPE html><!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" xmlns:og="http://ogp.me/ns#" xmlns:fb="http://www.facebook.com/2008/fbml">
<head>
<link rel="icon" href="/kx/192/_layout/favicon.ico" type="image/x-icon">
<link rel="shortcut icon" href="/kx/192/_layout/favicon.ico" type="image/x-icon">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta property="og:title" content="Skeid"/>
<meta property="og:type" content="website"/>
<meta property="og:image" content="http://skeid.no/kx/_layout/theme/GUARD/fb_site_image.png"/>
<meta property="og:url" content="http://skeid.no/portal/theme/team/main.do?teamId=16047"/>
<meta property="og:site_name" content="http://skeid.no/"/>
<meta property="og:description" content="Besøk våre sider for siste nytt!"/>
<meta property="fb:admins" content="530594011"/>
<meta http-equiv="content-type" content="text/html;charset=UTF-8" />
<script>
window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date;
ga('create', 'UA-71956077-1', 'auto');
ga('send', 'pageview');
</script>
<script async src='//www.google-analytics.com/analytics.js'></script>
<style type="text/css">
@import url(/kx/_layout/theme/GUARD/stylesheets/ddsmoothmenu.css); /*link to the CSS file for dropdown menu */
@import url(/kx/_layout/theme/GUARD/stylesheets/main_styles.css); /*link to the main CSS file */
@import url(/kx/_layout/theme/GUARD/stylesheets/tipsy.css); /*link to the CSS file for tips */
@import url(/kx/_layout/theme/GUARD/stylesheets/nivo-slider.css); /*link to the CSS file for nivo-slider */
@import url(/kx/_layout/theme/GUARD/stylesheets/styles.css); /*link to the main CSS file */
</style>
<link rel="stylesheet" href="/kx/_layout/theme/GUARD/stylesheets/main_styles.css" type="text/css" title="orange" media="screen" />
<link rel="stylesheet" href="/kx/_layout/theme/GUARD/assets/colorpicker/css/bootstrap-colorpicker.min.css">
<link rel="stylesheet" href="/kx/_layout/theme/GUARD/assets/zabuto/zabuto_calendar.css">
<link rel="stylesheet" href="/kx/_layout/theme/GUARD/assets/video-js/video-js.css">
<link rel="stylesheet" href="/kx/_layout/theme/GUARD/stylesheets/bootstrapValidator.min.css" type="text/css" />
<link href="/kx/_layout/theme/GUARD/css/global-style.css" rel="stylesheet" type="text/css" media="screen">
<link href="/kx/_layout/theme/GUARD/assets/layerslider/css/layerslider.css" rel="stylesheet" type="text/css">
<link href="/kx/_layout/theme/GUARD/assets/layerslider/skins/borderlessdark3d/skin.css" rel="stylesheet" type="text/css">
<link href='http://fonts.googleapis.com/css?family=PT+Sans+Narrow&v1' rel='stylesheet' type='text/css' />
<link href='http://fonts.googleapis.com/css?family=Pacifico' rel='stylesheet' type='text/css' />
<style type="text/css">
.wp-theme-7 .btn-one:hover,
.wp-theme-7 .btn-one:focus,
.wp-theme-7 .btn-one:active,
.wp-theme-7 .btn-one.active,
.wp-theme-7 .open .dropdown-toggle.btn-one {
color: #f60a10;
}
.wp-theme-7 .btn-two {
background-color: #f60a10;
}
.wp-theme-7 .btn-four {
border: 2px solid #f60a10
color: #f60a10;
}
.wp-theme-7 .btn-four:hover,
.wp-theme-7 .btn-four:focus,
.wp-theme-7 .btn-four:active,
.wp-theme-7 .btn-four.active,
.wp-theme-7 .open .dropdown-toggle.btn-four {
background-color: #f60a10;
}
.wp-theme-7 a:hover {
color: #f60a10;
}
.wp-theme-7 .bg-2 {
background: #f60a10;
}
.wp-theme-7 .blockquote-1:hover {
border-color: #f60a10;
}
.wp-theme-7 .lw .navbar-wp .navbar-nav > li > a:hover,
.wp-theme-7 .lw .navbar-wp .navbar-nav > li > a:focus {
background-color: #f60a10;
}
.wp-theme-7 .ld .navbar-wp .navbar-nav > li > a:hover,
.wp-theme-7 .ld .navbar-wp .navbar-nav > li > a:focus {
color: #fff;
background-color: #f60a10;
}
.wp-theme-7 .navbar-wp .navbar-nav > .active > a,
.wp-theme-7 .navbar-wp .navbar-nav > .active > a:hover,
.wp-theme-7 .navbar-wp .navbar-nav > .active > a:focus {
background-color: #f60a10;
}
.wp-theme-7 .navbar-wp .navbar-nav > .open > a,
.wp-theme-7 .navbar-wp .navbar-nav > .open > a:hover,
.wp-theme-7 .navbar-wp .navbar-nav > .open > a:focus {
background-color: #f60a10;
}
.wp-theme-7 .navbar-wp .navbar-nav > li > a.dropdown-form-toggle,
.wp-theme-7 .navbar-wp .navbar-nav > li > a.dropdown-form-toggle:hover,
.wp-theme-7 .navbar-wp .navbar-nav > li > a.dropdown-form-toggle:focus {
color: #f60a10;
}
.wp-theme-7 .navbar-wp .navbar-toggle:hover,
.wp-theme-7 .navbar-wp .navbar-toggle:focus {
background-color: #f60a10;
border-color: #f60a10;
}
.wp-theme-7 .navbar-wp .dropdown-menu {
border-top: 1px solid #f60a10;
border-bottom: 3px solid #f60a10;
}
.wp-theme-7 .navbar-wp .dropdown-menu > li > a:hover {
background: #f60a10;
}
.wp-theme-7 .navbar-wp.navbar-contrasted .navbar-nav > li > a.dropdown-form-toggle:hover,
.wp-theme-7 .navbar-wp.navbar-contrasted .navbar-nav > li > a.dropdown-form-toggle:focus {
color: #f60a10;
}
.wp-theme-7 .navbar-wp.navbar-contrasted .dropdown-menu > li > a:hover {
background: #f60a10
}
.wp-theme-7 .nav > ul > li > a:hover {
color: #f60a10;
}
.wp-theme-7 .pg-opt .breadcrumb a {
color: #f60a10;
}
.wp-theme-7 .lw .w-box.w-box-inverse .thmb-img i {
color: #f60a10;
}
.wp-theme-7 .w-box.w-box-inverse .thmb-img:hover i {
background: #f60a10;
}
.wp-theme-7 .c-box {
border: 1px solid #f60a10;
}
.wp-theme-7 .c-box .c-box-header {
background: #f60a10;
}
.wp-theme-7 .w-section .aside-feature:hover .icon-feature,
.wp-theme-7 .w-section .aside-feature:hover h4 {
color: #f60a10;
}
.wp-theme-7 .layer-slider-wrapper .subtitle {
color: #f60a10;
}
.wp-theme-7 .layer-slider-wrapper .list-item {
color: #f60a10;
}
.wp-theme-7 .box-element.box-element-bordered {
border: 1px solid #f60a10;
}
.wp-theme-7 .carousel-2 .carousel-indicators .active {
background-color: #f60a10;
}
.wp-theme-7 .carousel-2 .carousel-nav a {
color: #f60a10;
}
.wp-theme-7 .carousel-3 .carousel-nav a {
color: #f60a10;
}
.wp-theme-7 .like-button .button.liked i {
color: #f60a10;
}
.wp-theme-7 ul.list-listings li.featured {
border-color: #f60a10;
}
.wp-theme-7 ul.list-check li i {
color: #f60a10;
}
.wp-theme-7 ul.categories li a:hover {
background: #f60a10;
}
.wp-theme-7 .timeline .event:nth-child(2n):before {
background: #f60a10;
}
.wp-theme-7 .timeline .event:nth-child(2n-1):before {
background: #f60a10;
}
.wp-theme-7 #toTopHover {
background: #f60a10;
}
.wp-theme-7 .tags-list li {
border: 1px solid #f60a10;
color: #f60a10;
}
.wp-theme-7 .tags-list li a {
color: #f60a10;
}
.wp-theme-7 .tags-list li:hover {
background: #f60a10;
}
#inner_container {background-color:#f60a10}
.footer h4 {color:#000000}
footer {background:#ffffff}
.wp-theme-7 .btn-two:hover,
.wp-theme-7 .btn-two:focus,
.wp-theme-7 .btn-two:active,
.wp-theme-7 .btn-two.active,
.wp-theme-7 .open .dropdown-toggle.btn-two {
color: #ffffff;
background-color: #193eb1;
border-color: #193eb1;
}
.wp-theme-7 .btn-two {
border-color: #f60a10;
}
body {background:#d5cdcd}
header .navbar-brand img {height:Skeid-logo-60px.jpg}
#navOne {background-color:#ffffff}
h4 {color:#000000}
.top-header h4 {font-size:18px}
.top-header-menu {font-size:13px}
.top-header .aux-text {font-size:13px}
.wp-theme-7 .lw .navbar-wp .navbar-nav > li > a {color:#000000}
</style>
<script type="text/javascript" src="/kx/_layout/theme/GUARD/js/jquery.js"></script>
<link rel="stylesheet" href="/kx/_layout/javascript/jquery/css/ui-lightness/jquery-ui-1.9.2.custom.min.css" />
<script type="text/javascript" src="/kx/_layout/javascript/jquery/js/jquery-ui-1.9.2.custom.min.js"></script>
<script type="text/javascript" src="/kx/_layout/theme/GUARD/js/jquery.backstretch.min.js"></script>
<script language="JavaScript" type="text/javascript" src="/kx/_layout/javascript/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-no.js"></script>
<script language="JavaScript" type="text/javascript" src="/kx/_layout/javascript/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-fr.js"></script>
<script type="text/javascript" src="/portal/javascript/overlibmws/overlibmws.js" ></script>
<script type="text/javascript" src="/portal/smartadmin/app/plugin/windowfocusblur/TabWindowVisibilityManager.min.js" ></script>
<script language="JavaScript">
$(window).TabWindowVisibilityManager({
onFocusCallback: function(){
$.post("/portal/ping.do");
// tween resume() code goes here
},
onBlurCallback: function(){
// tween pause() code goes here
}
});
</script>
<style>
#ui-datepicker-div {
z-index: 9999999!important;
}
</style>
<script>
function createCal(id) {
$(function() {
$("#"+id).datepicker({ dateFormat: "dd.mm.yy",showWeek: true,showButtonPanel: true });
$("#"+id).datepicker( "option",
$.datepicker.regional["no"] );
});
}
function createCalShort(id) {
$(function() {
$("#"+id).datepicker({ showWeek: true });
$("#"+id).datepicker( "option",
$.datepicker.regional["no"] );
$("#"+id).datepicker( "option",
"dateFormat", "dd.mm.y" );
});
}
function createCalAltDF(id) {
$(function() {
$("#"+id).datepicker({ dateFormat: "yy-mm-dd",showWeek: true });
$("#"+id).datepicker( "option",
$.datepicker.regional["no"] );
$("#"+id).datepicker( "option",
"dateFormat", "yy-mm-dd" );
});
}
function createCalButtonOnly(id) {
$(function() {
$("#"+id).datepicker({ showWeek: true,
showOn: 'button',
buttonImage: '/kx/_layout/icons/activity_calendar.gif',
buttonImageOnly: true,
onClose: function(dateText, inst) { } });
$("#"+id).datepicker( "option",
$.datepicker.regional["no"] );
$("#"+id).datepicker( "option",
"dateFormat", "yy-mm-dd" );
});
}
</script>
<script type="text/javascript">
function setActiveSport(sportId) {
$.ajax({
'async': false,
'type': 'POST',
'url': '/portal//setSport.do?setSportId='+sportId
});
}
function is_touch_device() {
return !!('ontouchstart' in window);
}
function setActiveTeam(teamId) {
$.ajax({
'async': false,
'type': 'POST',
'url': '/portal//setSport.do?setTeamId='+teamId
});
}
function resetToSport(sportId) {
$.ajax({
'async': false,
'type': 'POST',
'url': '/portal//setSport.do?setSportId='+sportId+'&setTeamId=-1'
});
}
</script>
<script type="text/javascript">
function keepSessionAlive() {
$.post("/portal/ping.do");
}
window.setInterval("keepSessionAlive()", 1200000);
</script>
<title>Skeid Gutter 8 år Gutter 2009</title>
</head>
<body class="wp-theme-7">
<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/nb_NO/all.js#xfbml=1&appId=274887589223306";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
</script>
<div class="wrapper lw boxed">
<div class="ad-topboard">
</div>
<!-- Logo + Menu -->
<!DOCTYPE html>
<script>
function login() {
$("#login").toggleClass('hide', false);
}
</script>
<div class="top-header">
<div class="container">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-12">
</div>
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-12">
<span class="aux-text pull-right">
<a href="javascript:resetToSport('1');location.href='/portal/theme/organization/main.do?siteId=192';">Fotball</a> > <a href="/portal/theme/team/main.do?teamId=16047">Skeid Gutter 8 år Gutter 2009</a>
</span>
</div>
</div>
</div>
</div>
<header>
<div id="navOne" class="navbar navbar-wp" role="navigation">
<div class="container">
<a class="navbar-brand" href="javascript:setActiveSport('-1');location.href='/portal/theme/organization/main.do?siteId=192';" class="logo">
<img src="/kx/_layout/theme/GUARD/site/192/Skeid-logo-60px.jpg" alt="Tilbake til forsiden" title="Tilbake til forsiden" />
</a>
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="navbar-collapse collapse" aria-expanded="false">
<ul class="nav navbar-nav navbar-left">
<li class="hide">
<a href="javascript:resetToSport('1');location.href='/portal/theme/organization/main.do?siteId=192';">Fotball</a>
</li>
<li class="">
<a href="javascript:login();" target="_self" data-toggle="collapse" data-target=".navbar-collapse" data-close-others="true">Logg Inn</a>
</li><!-- dropdown -->
</ul>
</div>
</div>
</div>
</header>
<section class="slice hide" id="login">
<div class="w-section inverse">
<div class="container">
<div class="row">
<div class="col-md-6 col-md-offset-3 col-sm-6 col-sm-offset-3">
<div class="w-section inverse">
<div class="w-box sign-in-wr bg-5">
<div class="form-header">
<h2>Logg på for å få tilgang til applikasjonen</h2>
</div>
<div class="form-body">
<p></p>
<form name="no.sc.kx.security.user" method="post" action="/portal/themeLogin.do">
<input type="hidden" name="j_hidden" value="true">
<input type="hidden" name="clientResolution">
<div class="form-group">
<label>Brukernavn</label>
<input name="j_username" type="text" class="form-control" id="txtEmail" placeholder="">
</div>
<div class="form-group">
<label>Passord</label>
<input name="j_password" type="password" class="form-control" id="txtPassword" placeholder="">
</div>
<div class="row">
<div class="col-md-6">
<!-- <label class="checkbox"><input type="checkbox"> Remember me</label> -->
</div>
<div class="col-md-12">
<a target="_blank" href="/portal/smartadmin/index.html#/login/site/192" class="btn pull-left">Logg inn ny versjon her - beta</a>
<button type="submit" class="btn btn-two pull-right">Logg på</button>
</div>
</div>
</form>
</div>
<div class="form-footer">
<p><a href="/portal/public/sendPassword.do">Glemt eller mangler passord?</a></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Slider -->
<!-- end TEAM_NEWS_SLIDER -->
<!-- Quicklinks -->
<section class="slice">
<div class="w-section inverse">
<div class="text-center">
</div>
</div>
</section>
<!-- Content section 8 + 4 -->
<section class="slice animate-hover-slide">
<div class="w-section inverse blog-grid">
<div class="container">
<div class="row">
<div class="col-md-8">
<div id="masonryWr" class="row">
<!-- NEW -->
<div class="item col-md-6">
<div class="w-box">
<h2>Trening Torsdag 25 mai avlyses.</h2>
<p></p>
<div class="w-footer">
<span class="pull-left"><small>24.05.2017 14:10 | Svein Flattun</small></span>
<a href="/portal/theme/organization/news/show.do?id=9383778" class="btn btn-xs btn-two pull-right">Les mer</a>
<span class="clearfix"></span>
</div>
</div>
</div>
<!-- MODIFIED -->
<div class="item col-md-6">
<div class="w-box">
<h2>Skeid Banekalender - OPPDATERT</h2>
<p></p>
<div class="w-footer">
<span class="pull-left"><small>24.05.2017 | Svein Flattun</small></span>
<a href="/portal/theme/organization/news/show.do?id=9383780" class="btn btn-xs btn-two pull-right">Les mer</a>
<span class="clearfix"></span>
</div>
</div>
</div>
<div class="item col-md-6">
<div class="w-box">
<h2>Første trening starter for fullt i dag</h2>
<p>Trening starter for fullt i dag, ref. tidligere oppslag:
</p>
<div class="w-footer">
<span class="pull-left"><small>18.04.2017 | Svein Flattun</small></span>
<a href="/portal/theme/organization/news/show.do?id=9380520" class="btn btn-xs btn-two pull-right">Les mer</a>
<span class="clearfix"></span>
</div>
</div>
</div>
<div class="item col-md-6">
<div class="w-box">
<h2>Treningstider og foreldremøte for G09</h2>
<p></p>
<div class="w-footer">
<span class="pull-left"><small>28.03.2017 10:40 | Svein Flattun</small></span>
<a href="/portal/theme/organization/news/show.do?id=9378936" class="btn btn-xs btn-two pull-right">Les mer</a>
<span class="clearfix"></span>
</div>
</div>
</div>
<div class="item col-md-6">
<div class="w-box">
<h2>Skal sønnen din fortsette/begynne på Skeid G09 våren 2017?</h2>
<p></p>
<div class="w-footer">
<span class="pull-left"><small>14.02.2017 | Svein Flattun</small></span>
<a href="/portal/theme/organization/news/show.do?id=9375512" class="btn btn-xs btn-two pull-right">Les mer</a>
<span class="clearfix"></span>
</div>
</div>
</div>
<div class="item col-md-6">
<div class="w-box">
<h2>Skeid Gutter 2009 trenger flere foreldre trenere</h2>
<p></p>
<div class="w-footer">
<span class="pull-left"><small>13.02.2017 14:30 | Svein Flattun</small></span>
<a href="/portal/theme/organization/news/show.do?id=9375439" class="btn btn-xs btn-two pull-right">Les mer</a>
<span class="clearfix"></span>
</div>
</div>
</div>
<div class="item col-md-6">
<div class="w-box">
<div class="figure">
<img class='img-responsive' src="/portal/upload/news/thumbnails/main/GUARD_sub_main_i186276_1478176372938.jpg" width="640" height="413" />
<div class="figcaption bg-2"></div>
<div class="figcaption-btn">
<a href="/portal//upload/news/images/i186276_1478176372938.jpg" class="btn btn-xs btn-one theater" rel="9368658"><i class="fa fa-plus-circle"></i> Vis bilde</a>
<a href="/portal/upload/news/images/i186276_1478176372938.jpg" title="<b>i186276_1478176372938.jpg</b><br>" class="theater" rel="9368658"></a>
<a href="/portal/theme/organization/news/show.do?id=9368658" class="btn btn-xs btn-one"><i class="fa fa-link"></i> Vis nyhet</a>
</div>
</div>
<h2>Skeidakademiet</h2>
<p>Nå kan man melde seg på Skeidakademiet. Treningene er mandag, onsdag og fredag kl. 15.00-16.30, og varer gjennom vinteren fram til og med uke 15.</p>
<div class="w-footer">
<span class="pull-left"><small>03.11.2016 13:31 | Kjetil Rohde</small></span>
<a href="/portal/theme/organization/news/show.do?id=9368658" class="btn btn-xs btn-two pull-right">Les mer</a>
<span class="clearfix"></span>
</div>
</div>
</div>
<div class="item col-md-6">
<div class="w-box">
<h2>Ber alle følge med på siden: Skeid Gutter 7 år VTF Gutt 2009 </h2>
<p>Lagre denne linken.</p>
<div class="w-footer">
<span class="pull-left"><small>02.05.2016 | Svein Flattun</small></span>
<a href="/portal/theme/organization/news/show.do?id=9354427" class="btn btn-xs btn-two pull-right">Les mer</a>
<span class="clearfix"></span>
</div>
</div>
</div>
<div class="item col-md-6">
<div class="w-box">
<h2>Facebook gruppe for Skeid Gutter 2009</h2>
<p>Denne gruppen er privat så den er kun tilgjengelig om man blir medlem av gruppa og har en Facebook konto. </p>
<div class="w-footer">
<span class="pull-left"><small>28.04.2016 | Svein Flattun</small></span>
<a href="/portal/theme/organization/news/show.do?id=9353890" class="btn btn-xs btn-two pull-right">Les mer</a>
<span class="clearfix"></span>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<a href="/portal//public/newsArchive.do?rows=100&siteId=192&sportId=1"
class="btn btn-xs btn-two pull-right">Nyhetsarkiv</a>
</div>
</div>
<!-- end TEAM_NEWS -->
<!-- end TEAM_CLUBTV -->
<!-- hideVideos -->
<!-- end TEAM_FBUSERS -->
<div class="row">
</div>
</div><!-- col-md-8 -->
<!-- Start Modules -->
<div class="col-md-4">
<div class="widget">
<div id="fb_like">
<div class="fb-like" data-href="http://skeid.no/portal/theme/team/main.do?teamId=16047" data-send="true" data-width="320" data-show-faces="true" data-font="arial"></div>
</div>
</div>
<h3 class="section-title">Besøk våre lagsider</h3>
<div class="panel-group" id="accordionThree">
<div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#accordionThree" href="#collapse31">
Fotball
</a>
</h4>
</div>
</div>
<div id="collapse31" class="panel-collapse collapse" style="height: auto;">
<div class="panel-body">
<div>
<a class="" href="/portal/theme/team/main.do?teamId=29988">
Skeid Fotball Fritidsordning Akademiet Jenter
</a>
</div>
<div>
<a class="" href="/portal/theme/team/main.do?teamId=28602">
Skeid Fotball Fritidsordning Akademiet vinter 2016/2017
</a>
</div>
<div>
<a class="" href="/portal/theme/team/main.do?teamId=28158">
Skeid Fotball Fritidsordning Fotballskole høstferie 2016
</a>
</div>
<div>
<a class="" href="/portal/theme/team/main.do?teamId=29414">
Skeid Fotball Fritidsordning Reise til Barcelona
</a>
</div>
<div>
<a class="" href="/portal/theme/team/main.do?teamId=18063">
Skeid Fotball Fritidsordning Skeid Fotballskole august 2016
</a>
</div>
<div>
<a class="" href="/portal/theme/team/main.do?teamId=17936">
Skeid Fotball Fritidsordning Skeid Fotballskole juni 2016
</a>
</div>
<div>
<a class="" href="/portal/theme/team/main.do?teamId=27077">
Skeid Fotball Fritidsordning Skeidakademiet 2016
</a>
</div>
<div>
<a class="" href="/portal/theme/team/main.do?teamId=25605">
Skeid Fotball Fritidsordning Skiskole 2016
</a>
</div>
<div>
<a class="" href="/portal/theme/team/main.do?teamId=29621">
Skeid Fotball Fritidsordning Skiskole 2017
</a>
</div>
<div>
<a class="" href="/portal/theme/team/main.do?teamId=11854">
Skeid Fotball Fritidsordning Vinterakademiet
</a>
</div>
<div>
<a class="" href="/portal/theme/team/main.do?teamId=29699">
Skeid Gutter 5 år VTF gutt 2012
</a>
</div>
<div>
<a class="" href="/portal/theme/team/main.do?teamId=29700">
Skeid Jenter 5 år VTF Jente 2012
</a>
</div>
<div>
<a class="" href="/portal/theme/team/main.do?teamId=25602">
Skeid Gutter 6 år VTF Gutt 2011
</a>
</div>
<div>
<a class="" href="/portal/theme/team/main.do?teamId=25603">
Skeid Jenter 6 år VTF Jente 2011
</a>
</div>
<div>
<a class="" href="/portal/theme/team/main.do?teamId=19957">
Skeid Gutter 7 år VTF Gutt 2010
</a>
</div>
<div>
<a class="" href="/portal/theme/team/main.do?teamId=19958">
Skeid Jenter 7 år VTF Jente 2010
</a>
</div>
<div>
<a class="" href="/portal/theme/team/main.do?teamId=16047">
Skeid Gutter 8 år Gutter 2009
</a>
</div>
<div>
<a class="" href="/portal/theme/team/main.do?teamId=16048">
Skeid Jenter 8 år Jenter 2009
</a>
</div>
<div>
<a class="" href="/portal/theme/team/main.do?teamId=16354">
Skeid Keeperskole Keepere G13-19
</a>
</div>
<div>
<a class="" href="/portal/theme/team/main.do?teamId=13039">
Skeid Gutter 9 år Gutter 2008
</a>
</div>
<div>
<a class="" href="/portal/theme/team/main.do?teamId=13040">
Skeid Jenter 9 år Jenter 2008
</a>
</div>
<div>
<a class="" href="/portal/theme/team/main.do?teamId=10489">
Skeid Gutter 10 år Gutter 2007
</a>
</div>
<div>
<a class="" href="/portal/theme/team/main.do?teamId=11640">
Skeid Jenter 10 år Jenter 2007
</a>
</div>
<div>
<a class="" href="/portal/theme/team/main.do?teamId=10159">
Skeid Gutter 11 år Gutter 2006
</a>
</div>
<div>
<a class="" href="/portal/theme/team/main.do?teamId=10170">
Skeid Jenter 11 år Jenter 2006
</a>
</div>
<div>
<a class="" href="/portal/theme/team/main.do?teamId=10158">
Skeid Gutter 12 år Gutter 2005
</a>
</div>
<div>
<a class="" href="/portal/theme/team/main.do?teamId=10169">
Skeid Jenter 12 år Jenter 2005
</a>
</div>
<div>
<a class="" href="/portal/theme/team/main.do?teamId=18109">
Skeid Gutter 13 år Gutter 2004
</a>
</div>
<div>
<a class="" href="/portal/theme/team/main.do?teamId=10168">
Skeid Jenter 13 år Jenter 2004
</a>
</div>
<div>
<a class="" href="/portal/theme/team/main.do?teamId=19179">
Skeid SPU13+ Infoside G-15-19
</a>
</div>
<div>
<a class="" href="/portal/theme/team/main.do?teamId=26564">
Skeid SPU13+ Infoside G13-15
</a>
</div>
<div>
<a class="" href="/portal/theme/team/main.do?teamId=10133">
Skeid Damer Damer A-lag
</a>
</div>
<div>
<a class="" href="/portal/theme/team/main.do?teamId=16049">
Skeid Damer B-Lag Damer 7er
</a>
</div>
<div>
<a class="" href="/portal/theme/team/main.do?teamId=10181">
Skeid Gutter 14 år Gutter 2003
</a>
</div>
<div>
<a class="" href="/portal/theme/team/main.do?teamId=10167">
Skeid Jenter 14 år Jenter 2003
</a>
</div>
<div>
<a class="" href="/portal/theme/team/main.do?teamId=10184">
Skeid Gutter 15 år G2002
</a>
</div>
<div>
<a class="" href="/portal/theme/team/main.do?teamId=10166">
Skeid Jenter 15 år J2002
</a>
</div>
<div>
<a class="" href="/portal/theme/team/main.do?teamId=10171">
Skeid D-Lag Menn 8.div
</a>
</div>
<div>
<a class="" href="/portal/theme/team/main.do?teamId=13350">
Skeid Gutter 16 år G2001
</a>
</div>
<div>
<a class="" href="/portal/theme/team/main.do?teamId=10194">
Skeid Jenter 16 år J2001
</a>
</div>
<div>
<a class="" href="/portal/theme/team/main.do?teamId=10132">
Skeid C-Lag Menn 6. divisjon
</a>
</div>
<div>
<a class="" href="/portal/theme/team/main.do?teamId=10208">
Skeid Junior G18.1
</a>
</div>
<div>
<a class="" href="/portal/theme/team/main.do?teamId=10196">
Skeid Junior G18.2
</a>
</div>
<div>
<a class="" href="/portal/theme/team/main.do?teamId=10212">
Skeid Junior Junior Elite
</a>
</div>
<div>
<a class="" href="/portal/theme/team/main.do?teamId=10131">
Skeid A-Lag Skeid Fotball
</a>
</div>
<div>
<a class="" href="/portal/theme/team/main.do?teamId=29362">
Skeid B-Lag Damer B-lag
</a>
</div>
<div>
<a class="" href="/portal/theme/team/main.do?teamId=10136">
Skeid Old-Boys Old Boys 33+
</a>
</div>
<div>
<a class="" href="/portal/theme/team/main.do?teamId=10213">
Skeid Veteran Veteran 40+
</a>
</div>
<div>
<a class="" href="/portal/theme/team/main.do?teamId=10214">
Skeid Administrasjon Ansatte
</a>
</div>
<div>
<a class="" href="/portal/theme/team/main.do?teamId=10215">
Skeid Administrasjon Dommere
</a>
</div>
<div>
<a class="" href="/portal/theme/team/main.do?teamId=10134">
Skeid Administrasjon Hovedstyret
</a>
</div>
</div>
</div>
</div>
</div>
<div class="widget">
<div class="tabs">
<ul class="nav nav-tabs">
<li class="active"><a href="#support" data-toggle="tab"><i class="icon-star"></i> Støtteapparatet</a></li>
<!-- hideCoaches -->
<li><a href="#players" data-toggle="tab">Utøvere</a></li>
</ul>
<div class="tab-content">
<div class="tab-pane active" id="support">
<ul class="popular">
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Svein F<br>
<b>Hovedlagleder, Trener</b><br>
<a href="mailto:"></a>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Joachim D<br>
<b>Trener</b><br>
<a href="mailto:"></a>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Gudmund W<br>
<b>Trener</b><br>
<a href="mailto:"></a>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Jarle E<br>
<b>Trener</b><br>
<a href="mailto:"></a>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Levon W<br>
<b>Trener</b><br>
<a href="mailto:"></a>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Liv Arnhild R<br>
<b>Trener</b><br>
<a href="mailto:"></a>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Tore Magnus O<br>
<b>Trener</b><br>
<a href="mailto:"></a>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Christian R<br>
<b>Trener</b><br>
<a href="mailto:"></a>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Sjur K<br>
<b>Trener</b><br>
<a href="mailto:"></a>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Øyvind B<br>
<b>Trener</b><br>
<a href="mailto:"></a>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Henrik L<br>
<b>Trener</b><br>
<a href="mailto:"></a>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Henning F<br>
<b>Trener</b><br>
<a href="mailto:"></a>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Ove D<br>
<b>Trener</b><br>
<a href="mailto:"></a>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Kjetil H<br>
<b>Trener</b><br>
<a href="mailto:"></a>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Ljubinko N<br>
<b>Trener</b><br>
<a href="mailto:"></a>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Bert S<br>
<b>Trener</b><br>
<a href="mailto:"></a>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Tellef I<br>
<b>Trener</b><br>
<a href="mailto:"></a>
</p>
</li>
</ul>
</div>
<!-- END TEAM_SUPPORT -->
<!-- hideCoaches -->
<div class="tab-pane" id="players">
<ul class="popular">
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Aksel D<br>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Aksel Eggen C<br>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Aleksander K<br>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Aleksander T<br>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Amanda Jet R<br>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Amund kloster D<br>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Axel W<br>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Benjamin H<br>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Conrad Sten M<br>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Daniel H<br>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Daniel Elias E<br>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Edvard Lekve S<br>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Eine Martinus R<br>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Elling K<br>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Erik L<br>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Erik Guttormsen F<br>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Even K<br>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Felix B<br>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Healme R<br>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Henrik H<br>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Henrik R<br>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Henrik S<br>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
hjalmar S<br>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Isak Bruno H<br>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Isak L. A<br>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Iver Aarnes H<br>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Iver Belgen S<br>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Jacob C<br>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Jacob E<br>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Jacob H<br>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Johannes Ulvin F<br>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Jonas B<br>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Jonas K<br>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Jonas Er-rachidi F<br>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Jonas Garcia d<br>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Jonas Gudmundsønn W<br>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Jonathan R<br>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Julian F<br>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Julian Hanem N<br>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Julian Nikolai Echeverria H<br>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Karl Oskar Storesletten J<br>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Kian Dasan Purvis W<br>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Kristoffer R<br>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Laurans F<br>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Lukas Q. E<br>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Magne v<br>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Martin F<br>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Mats Emrik G<br>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Mattis Wennberg L<br>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Moosa A<br>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Nils N<br>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Oscar Boel J<br>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Petter F<br>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Sebastian bråthen H<br>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Sivert Waage H<br>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Snorre O<br>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Sondre Skeie I<br>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Stefan N<br>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Szymon D<br>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Teodor N<br>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Theo Tokvam R<br>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Toralv B<br>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Torger C<br>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Troy Efe M<br>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Trym Elias K<br>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
Vemund R<br>
</p>
</li>
<li>
<img src="/portal/images/no_picture.gif" alt="" class="img-thumbnail pull-left" />
<p>
William B. U<br>
</p>
</li>
</ul>
</div>
<!-- END TEAM_PLAYERS -->
</div>
</div>
</div>
<div class="widget">
<div class="panel-group" id="teamaccordion">
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#teamaccordion" href="#collapseTeamExercise" class="collapsed">Ukens treninger</a>
</h4>
</div>
<div id="collapseTeamExercise" class="panel-collapse collapse" style="height: 0px;">
<div class="panel-body">
</div>
</div>
</div>
<!-- end TEAM_WEEK_TRAINING -->
<!-- hidePractices -->
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#teamaccordion" href="#collapseTeamNextGames" class="collapsed">Neste kamper</a>
</h4>
</div>
<div id="collapseTeamNextGames" class="panel-collapse collapse" style="height: 0px;">
<div class="panel-body">
</div>
</div>
</div>
<!-- end TEAM_NEXTGAMES -->
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#teamaccordion" href="#collapseTeamLastGames" class="collapsed">Siste Kamper</a>
</h4>
</div>
<div id="collapseTeamLastGames" class="panel-collapse collapse" style="height: 0px;">
<div class="panel-body">
</div>
</div>
</div>
<!-- end TEAM_LASTGAMES -->
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#teamaccordion" href="#collapseAllGames" class="collapsed">Sesongens kamper </a>
</h4>
</div>
<div id="collapseAllGames" class="panel-collapse collapse" style="height: 0px;">
<div class="panel-body">
</div>
</div>
</div>
<!-- end TEAM_ALLGAMES -->
<!-- hideGames -->
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#teamaccordion" href="#collapsePlayerStats" class="collapsed">Spillerstatistikk</a>
</h4>
</div>
<div id="collapsePlayerStats" class="panel-collapse collapse" style="height: 0px;">
<div class="panel-body">
<table class="table table-bordered table-striped table-comparision table-responsive">
<thead>
<tr>
<th class="col-md-8">
Spiller
</th>
<th class="col-md-1">
Alder
</th>
<th class="col-md-1">
Kamper
</th>
<th class="col-md-1">
Assists
</th>
<th class="col-md-1">
Mål
</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
</div>
<!-- end TEAM_PLAYERSTAT -->
<!-- hideGoalscorer -->
</div><!-- end teamaccordion -->
</div><!-- end widget -->
<!-- end TEAM_INFORMATION -->
</div><!-- col-md-4 -->
<!-- End Modules -->
</div><!-- row -->
</div><!-- container -->
</div>
</section>
<div id="ad_right_sidebar">
</div>
<footer class="footer" id="f_sidebar">
<div class="container">
<div class="row">
<div class="show">
<div class="col-md-8 text-center">
<div class="col">
<p>
<div><h1> </h1>
<p> </p>
</div>
</p>
</div>
</div>
<div class="col-md-4 text-center">
<div class="col col-social-icons">
<h4>Følg oss i sosiale medier</h4>
<a target="fb" href="https://www.facebook.com/skeid.fotball" title="Facebook"><i class="fa fa-facebook"></i></a>
<a target="twitter" href="https://twitter.com/skeidfotball" title="Twitter"><i class="fa fa-twitter"></i></a>
<a target="googleplus" href="https://plus.google.com/+skeid/posts" title="Google+"><i class="fa fa-google-plus"></i></a>
<a href="/portal/public/clubNewsFeed.do?rows=10&siteId=192" title="RSS Feed"><i class="fa fa-rss"></i></a>
</div>
</div>
</div>
</div>
</div>
</footer>
<style>
#company_promo {text-align:center;background-color:#ffffff;color:#000000;font:verdana;font-size:14px;font-weight:normal;padding:5px;}
</style>
<div id="company_promo">©2017 <a href="http://www.123klubb.no">123klubb</a> for effektiv klubbdrift leveres av <a href="http://www.kxp.no">KX Products</a></div>
<!-- End Footer -->
<script>
$.backstretch([
"/kx/192/galleries/3559/background-large.jpg"
], {
fade: 500,
duration: 8000
});
</script>
<!-- JavaScript -->
<script type="text/javascript" src="/kx/_layout/theme/GUARD/assets/bootstrap/js/bootstrap.min.js"></script>
<script type="text/javascript" src="/kx/_layout/theme/GUARD/js/modernizr.custom.js"></script>
<script type="text/javascript" src="/kx/_layout/theme/GUARD/js/jquery.mousewheel-3.0.6.pack.js"></script>
<script type="text/javascript" src="/kx/_layout/theme/GUARD/js/jquery.cookie.js"></script>
<script type="text/javascript" src="/kx/_layout/theme/GUARD/js/jquery.easing.js"></script>
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<script src="js/respond.min.js"></script>
<![endif]-->
<!-- Plugins -->
<script type="text/javascript" src="/kx/_layout/theme/GUARD/assets/hover-dropdown/bootstrap-hover-dropdown.min.js"></script>
<script type="text/javascript" src="/kx/_layout/theme/GUARD/assets/masonry/masonry.js"></script>
<script type="text/javascript" src="/kx/_layout/theme/GUARD/assets/page-scroller/jquery.ui.totop.min.js"></script>
<script type="text/javascript" src="/kx/_layout/theme/GUARD/assets/mixitup/jquery.mixitup.js"></script>
<script type="text/javascript" src="/kx/_layout/theme/GUARD/assets/mixitup/jquery.mixitup.init.js"></script>
<script type="text/javascript" src="/kx/_layout/theme/GUARD/assets/fancybox/jquery.fancybox.pack.js?v=2.1.5"></script>
<script type="text/javascript" src="/kx/_layout/theme/GUARD/assets/easy-pie-chart/jquery.easypiechart.js"></script>
<script type="text/javascript" src="/kx/_layout/theme/GUARD/assets/waypoints/waypoints.min.js"></script>
<script type="text/javascript" src="/kx/_layout/theme/GUARD/assets/sticky/jquery.sticky.js"></script>
<script type="text/javascript" src="/kx/_layout/theme/GUARD/js/jquery.wp.custom.js"></script>
<script type="text/javascript" src="/kx/_layout/theme/GUARD/js/jquery.wp.switcher.js"></script>
<script type="text/javascript" src="/kx/_layout/theme/GUARD/assets/layerslider/js/greensock.js"></script>
<script type="text/javascript" src="/kx/_layout/theme/GUARD/assets/zabuto/zabuto_calendar.js"></script>
<script type="text/javascript" src="/kx/_layout/theme/GUARD/assets/colorpicker/js/bootstrap-colorpicker.min.js"></script>
<script type="text/javascript" src="/kx/_layout/theme/GUARD/assets/video-js/video.js"></script>
<script type="text/javascript" src="/kx/_layout/theme/GUARD/js/bootstrapValidator.min.js"></script>
<!-- LayerSlider script files -->
<script type="text/javascript" src="/kx/_layout/theme/GUARD/assets/layerslider/js/layerslider.transitions.js"></script>
<script type="text/javascript" src="/kx/_layout/theme/GUARD/assets/layerslider/js/layerslider.kreaturamedia.jquery.js"></script>
<!-- Initializing the slider -->
<script>
jQuery("#layerslider").layerSlider({
pauseOnHover: false,
autoPlayVideos: false,
skinsPath: '/kx/_layout/theme/GUARD/assets/layerslider/skins/',
responsive: false,
responsiveUnder: 1280,
layersContainer: 1280,
skin: 'minimal',
hoverPrevNext: false,
});
</script>
<script>
function selectVideo(src, poster) {
var player = videojs('videoarea');
var type = detectVideoType(src);
player.src({"type":type, "src":src, "poster":poster});
player.play();
}
function detectVideoType(src) {
var fileextension = src.slice((src.lastIndexOf(".") - 1 >>> 0) + 2);
var filetype = "video/mp4";
switch (fileextension) {
case "3g2": filetype = "video/3gpp2"; break;
case "3gp": filetype = "video/3gpp"; break;
case "3gp2": filetype = "video/3gpp2"; break;
case "3gpp": filetype = "video/3gpp"; break;
case "asf": filetype = "video/x-ms-asf"; break;
case "asr": filetype = "video/x-ms-asf"; break;
case "asx": filetype = "video/x-ms-asf"; break;
case "avi": filetype = "video/x-msvideo"; break;
case "avi": filetype = "video/x-msvideo"; break;
case "dif": filetype = "video/x-dv"; break;
case "dv": filetype = "video/x-dv"; break;
case "flv": filetype = "video/x-flv"; break;
case "IVF": filetype = "video/x-ivf"; break;
case "lsf": filetype = "video/x-la-asf"; break;
case "lsx": filetype = "video/x-la-asf"; break;
case "m1v": filetype = "video/mpeg"; break;
case "m2t": filetype = "video/vnd.dlna.mpeg-tts"; break;
case "m2ts": filetype = "video/vnd.dlna.mpeg-tts"; break;
case "m2v": filetype = "video/mpeg"; break;
case "m4v": filetype = "video/x-m4v"; break;
case "mod": filetype = "video/mpeg"; break;
case "mov": filetype = "video/quicktime"; break;
case "movie": filetype = "video/x-sgi-movie"; break;
case "mp2": filetype = "video/mpeg"; break;
case "mp2v": filetype = "video/mpeg"; break;
case "mp4": filetype = "video/mp4"; break;
case "mp4v": filetype = "video/mp4"; break;
case "mpa": filetype = "video/mpeg"; break;
case "mpe": filetype = "video/mpeg"; break;
case "mpeg": filetype = "video/mpeg"; break;
case "mpg": filetype = "video/mpeg"; break;
case "mpv2": filetype = "video/mpeg"; break;
case "mqv": filetype = "video/quicktime"; break;
case "mts": filetype = "video/vnd.dlna.mpeg-tts"; break;
case "nsc": filetype = "video/x-ms-asf"; break;
case "ogv": filetype = "video/ogg"; break;
case "qt": filetype = "video/quicktime"; break;
case "ts": filetype = "video/vnd.dlna.mpeg-tts"; break;
case "tts": filetype = "video/vnd.dlna.mpeg-tts"; break;
case "vbk": filetype = "video/mpeg"; break;
case "webm": filetype = "video/webm"; break;
case "wm": filetype = "video/x-ms-wm"; break;
case "wmp": filetype = "video/x-ms-wmp"; break;
case "wmv": filetype = "video/x-ms-wmv"; break;
case "wmx": filetype = "video/x-ms-wmx"; break;
case "wvx": filetype = "video/x-ms-wvx"; break;
default:
return filetype = "video/"+fileextension;
}
return filetype;
}
</script>
<!-- End Container -->
</div><!-- End wrapper -->
<!-- Initializaing the event calendar -->
<script type="application/javascript">
$(document).ready(function () {
$("#eventCalendar").zabuto_calendar({
action_nav: function () {
return eventNavFunction(this.id);
},
action: function () {
return eventDateFunction(this.id);
},
legend: [
{type: "block", label: "Kamp", classname: "bg-2"},
{type: "block", label: "Trening", classname: "training"},
{type: "block", label: "Aktivitet", classname: "event"}
],
cell_border: true,
today: true,
show_days: true,
language: "no",
weekstartson: 1,
ajax: {
url: '/portal/public/eventsOverviewJson.do?orgId=192&teamId=16047&teamSeason=2017',
modal: false
},
nav_icon: {
prev: '<i class="fa fa-chevron-left"></i>',
next: '<i class="fa fa-chevron-right"></i>'
},
activities_headers: {
activities: "Aktiviteter",
no_activties: "Ingen aktviteter",
upcoming_activities: "Kommende aktiviteter (5 neste)"
},
activities_limit: 5
});
});
function eventNavFunction(id) {
$("#date-popover").hide();
var nav = $("#" + id).data("navigation");
var to = $("#" + id).data("to");
console.log(to.month + '/' + to.year);
}
function eventDateFunction(id) {
var date = $("#" + id).data("date");
var hasEvent = $("#" + id).data("hasEvent");
if (hasEvent) {
return false;
}
return true;
}
$('#newsletterSignup').bootstrapValidator({
feedbackIcons: {
},
fields: {
name: {
validators: {
notEmpty: {
message: 'Navn må fylles ut'
}
}
},
email: {
validators: {
notEmpty: {
message: 'Epost må fylles ut.'
},
emailAddress: {
message: 'Ugyldig epost adresse.'
}
}
}
}
});
</script>
</body>
</html>
|
src/html/team/laurie.html
|
colab-coop/colab-coop
|
---
title: Laurie Sterling Durant
---
@@include('../../templates/_head-team.tpl')
<body class="team-profile">
@@include('../../templates/_homenav.tpl')
<main>
<section class="panel-full panel-bg-pattern color-red-bg">
<div class="container clearfix">
<div class="team-profile-intro-block grid-parent">
<div class="team-profile-heading">
<h1 class="lubalin-bold">Laurie Sterling Durant</h1>
<div>(She/Her)</div>
<div>Owner, Developer</div>
</div>
<div class="team-profile-badges">
<div class="badge" data-tooltip="Development">
<img src="/assets/img/badges/badge-development.svg" alt="badge-development">
</div>
</div>
</div> <!-- /team-profile-intro-block -->
</div> <!-- /container -->
</section> <!-- /panel -->
<section>
<div class="container">
<div class="grid-parent clearfix">
<div class="team-profile-meta">
<img src="/assets/img/team/laurie.jpg" alt="Laurie Sterling Durant">
<div class="team-profile">
<div class="team-profile-each">
<h2 class="h2">CONNECT</h2>
<div class="team-profile-social">
<a href="https://www.linkedin.com/in/lauriesterlingjensen/">
<svg viewBox="0 0 20 20" class="ico-social">
<use xlink:href="/assets/img/ico-social.svg#ico-linkedin"></use>
</svg>
</a>
</div> <!-- /team-profile-social -->
</div>
</div> <!-- /team-profile -->
</div> <!-- /team-profile-meta -->
<div class="team-profile-bio">
<p>
Laurie Sterling Durant is an experienced full-stack WordPress Developer specializing in custom WordPress websites with Constituent Relationship Management system integration. After eight years working as a help desk tech for a well-known biological research institution and a software analyst for a major law firm, she studied Web Development at UCSD and started her own business to focus on supporting non-profit organizations making the world a better and more sustainable place. Ten years later, she was delighted to find a community of like-minded people to work with at CoLab.
</p>
<p>
Laurie is a passionate supporter of progressive causes and volunteers her time to build free websites for events like the People’s Climate March. She is an open-source enthusiast, eager to learn about any technology that might be leveraged to help facilitate activism and participation in democracy or used to help social impact clients succeed.
</p>
<p>
Raised in the San Francisco Bay area, Laurie moved southward to San Diego at age nineteen. She lives near the beach with her husband and child and enjoys growing food, cooking, reading, music, and hiking.
</p>
</div> <!-- /team-profile-bio -->
</div>
</div> <!-- /container -->
</section>
</main>
@@include('../../templates/_footer.tpl')
@@include('../../templates/_tail.tpl')
|
templates/pyquiz/feedback-mail.html
|
vivekhas3/python_quizzup
|
<pre style="font-family: Arial, Helvetica, sans-serif;font-size:16px;">
Bingo,
We have got a feed back from {{ username }} and the feedback is:
{{ message }}
Regards,
PyQuiz
</pre>
|
hornetq-2.4.0.Final/docs/api/hornetq-client/org/hornetq/spi/core/remoting/ConnectorFactory.html
|
Dauth/cs3219-JMS
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_25) on Mon Dec 16 08:10:30 GMT 2013 -->
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
<title>ConnectorFactory (HornetQ Core Client 2.4.0.Final API)</title>
<meta name="date" content="2013-12-16">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="ConnectorFactory (HornetQ Core Client 2.4.0.Final 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 class="navBarCell1Rev">Class</li>
<li><a href="class-use/ConnectorFactory.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../org/hornetq/spi/core/remoting/Connector.html" title="interface in org.hornetq.spi.core.remoting"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../../../org/hornetq/spi/core/remoting/ReadyListener.html" title="interface in org.hornetq.spi.core.remoting"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/hornetq/spi/core/remoting/ConnectorFactory.html" target="_top">Frames</a></li>
<li><a href="ConnectorFactory.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li>Field | </li>
<li>Constr | </li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li>Constr | </li>
<li><a href="#method_detail">Method</a></li>
</ul>
</div>
<a name="skip-navbar_top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">org.hornetq.spi.core.remoting</div>
<h2 title="Interface ConnectorFactory" class="title">Interface ConnectorFactory</h2>
</div>
<div class="contentContainer">
<map id="APIVIZ" name="APIVIZ">
<area shape="rect" id="node1" href="ConnectorFactory.html" title="«interface» ConnectorFactory" alt="" coords="5,5,131,45"/>
</map>
<div id="apivizContainer" style="text-align: center;"><img src="ConnectorFactory.png" usemap="#APIVIZ" border="0"></div>
<div class="description">
<ul class="blockList">
<li class="blockList">
<hr>
<br>
<pre>public interface <span class="strong">ConnectorFactory</span></pre>
<div class="block">A ConnectorFactory is used by the client for creating connectors.
<p/>
A Connector is used to connect to an <code>org.hornetq.spi.core.remoting.Acceptor</code>.</div>
<dl><dt><span class="strong">Author:</span></dt>
<dd><a href="mailto:tim.fox@jboss.com">Tim Fox</a></dd></dl>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method_summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span>Methods</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../org/hornetq/spi/core/remoting/Connector.html" title="interface in org.hornetq.spi.core.remoting">Connector</a></code></td>
<td class="colLast"><code><strong><a href="../../../../../org/hornetq/spi/core/remoting/ConnectorFactory.html#createConnector(java.util.Map, org.hornetq.spi.core.remoting.BufferHandler, org.hornetq.spi.core.remoting.ConnectionLifeCycleListener, java.util.concurrent.Executor, java.util.concurrent.Executor, java.util.concurrent.ScheduledExecutorService)">createConnector</a></strong>(<a href="http://docs.oracle.com/javase/7/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a><<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>,<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>> configuration,
<a href="../../../../../org/hornetq/spi/core/remoting/BufferHandler.html" title="interface in org.hornetq.spi.core.remoting">BufferHandler</a> handler,
<a href="../../../../../org/hornetq/spi/core/remoting/ConnectionLifeCycleListener.html" title="interface in org.hornetq.spi.core.remoting">ConnectionLifeCycleListener</a> listener,
<a href="http://docs.oracle.com/javase/7/docs/api/java/util/concurrent/Executor.html?is-external=true" title="class or interface in java.util.concurrent">Executor</a> closeExecutor,
<a href="http://docs.oracle.com/javase/7/docs/api/java/util/concurrent/Executor.html?is-external=true" title="class or interface in java.util.concurrent">Executor</a> threadPool,
<a href="http://docs.oracle.com/javase/7/docs/api/java/util/concurrent/ScheduledExecutorService.html?is-external=true" title="class or interface in java.util.concurrent">ScheduledExecutorService</a> scheduledThreadPool)</code>
<div class="block">creates a new instance of a connector.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/7/docs/api/java/util/Set.html?is-external=true" title="class or interface in java.util">Set</a><<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>></code></td>
<td class="colLast"><code><strong><a href="../../../../../org/hornetq/spi/core/remoting/ConnectorFactory.html#getAllowableProperties()">getAllowableProperties</a></strong>()</code>
<div class="block">Returns the allowable properties for this connector.</div>
</td>
</tr>
</table>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method_detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="createConnector(java.util.Map, org.hornetq.spi.core.remoting.BufferHandler, org.hornetq.spi.core.remoting.ConnectionLifeCycleListener, java.util.concurrent.Executor, java.util.concurrent.Executor, java.util.concurrent.ScheduledExecutorService)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>createConnector</h4>
<pre><a href="../../../../../org/hornetq/spi/core/remoting/Connector.html" title="interface in org.hornetq.spi.core.remoting">Connector</a> createConnector(<a href="http://docs.oracle.com/javase/7/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a><<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>,<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>> configuration,
<a href="../../../../../org/hornetq/spi/core/remoting/BufferHandler.html" title="interface in org.hornetq.spi.core.remoting">BufferHandler</a> handler,
<a href="../../../../../org/hornetq/spi/core/remoting/ConnectionLifeCycleListener.html" title="interface in org.hornetq.spi.core.remoting">ConnectionLifeCycleListener</a> listener,
<a href="http://docs.oracle.com/javase/7/docs/api/java/util/concurrent/Executor.html?is-external=true" title="class or interface in java.util.concurrent">Executor</a> closeExecutor,
<a href="http://docs.oracle.com/javase/7/docs/api/java/util/concurrent/Executor.html?is-external=true" title="class or interface in java.util.concurrent">Executor</a> threadPool,
<a href="http://docs.oracle.com/javase/7/docs/api/java/util/concurrent/ScheduledExecutorService.html?is-external=true" title="class or interface in java.util.concurrent">ScheduledExecutorService</a> scheduledThreadPool)</pre>
<div class="block">creates a new instance of a connector.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>configuration</code> - the configuration</dd><dd><code>handler</code> - the handler</dd><dd><code>listener</code> - the listener</dd><dd><code>closeExecutor</code> - the close executor</dd><dd><code>threadPool</code> - the thread pool</dd><dd><code>scheduledThreadPool</code> - the scheduled thread pool</dd>
<dt><span class="strong">Returns:</span></dt><dd>a new connector</dd></dl>
</li>
</ul>
<a name="getAllowableProperties()">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>getAllowableProperties</h4>
<pre><a href="http://docs.oracle.com/javase/7/docs/api/java/util/Set.html?is-external=true" title="class or interface in java.util">Set</a><<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>> getAllowableProperties()</pre>
<div class="block">Returns the allowable properties for this connector.
<p/>
This will differ between different connector implementations.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>the allowable properties.</dd></dl>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/ConnectorFactory.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../org/hornetq/spi/core/remoting/Connector.html" title="interface in org.hornetq.spi.core.remoting"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../../../org/hornetq/spi/core/remoting/ReadyListener.html" title="interface in org.hornetq.spi.core.remoting"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/hornetq/spi/core/remoting/ConnectorFactory.html" target="_top">Frames</a></li>
<li><a href="ConnectorFactory.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li>Field | </li>
<li>Constr | </li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li>Constr | </li>
<li><a href="#method_detail">Method</a></li>
</ul>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright © 2013 <a href="http://www.jboss.org/">JBoss, a division of Red Hat</a>. All Rights Reserved.</small></p>
</body>
</html>
|
clean/Linux-x86_64-4.05.0-2.0.6/extra-dev/8.10.dev/metacoq-erasure/8.8.dev.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>metacoq-erasure: 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 / extra-dev</a></li>
<li class="active"><a href="">8.10.dev / metacoq-erasure - 8.8.dev</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
metacoq-erasure
<small>
8.8.dev
<span class="label label-info">Not compatible</span>
</small>
</h1>
<p><em><script>document.write(moment("2020-08-22 02:22:20 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2020-08-22 02:22: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
conf-findutils 1 Virtual package relying on findutils
conf-m4 1 Virtual package relying on m4
coq 8.10.dev Formal proof management system
num 0 The Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.05.0 The OCaml compiler (virtual package)
ocaml-base-compiler 4.05.0 Official 4.05.0 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.8.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "matthieu.sozeau@inria.fr"
homepage: "https://metacoq.github.io/metacoq"
dev-repo: "git+https://github.com/MetaCoq/metacoq.git#coq-8.8"
bug-reports: "https://github.com/MetaCoq/metacoq/issues"
authors: ["Abhishek Anand <aa755@cs.cornell.edu>"
"Simon Boulier <simon.boulier@inria.fr>"
"Cyril Cohen <cyril.cohen@inria.fr>"
"Yannick Forster <forster@ps.uni-saarland.de>"
"Fabian Kunze <fkunze@fakusb.de>"
"Gregory Malecha <gmalecha@gmail.com>"
"Matthieu Sozeau <matthieu.sozeau@inria.fr>"
"Nicolas Tabareau <nicolas.tabareau@inria.fr>"
"Théo Winterhalter <theo.winterhalter@inria.fr>"
]
license: "MIT"
build: [
["sh" "./configure.sh"]
[make "-j%{jobs}%" "-C" "erasure"]
]
install: [
[make "-C" "erasure" "install"]
]
depends: [
"ocaml" {> "4.02.3"}
"coq" {>= "8.8" & < "8.9~"}
"coq-metacoq-template" {= version}
"coq-metacoq-checker" {= version}
"coq-metacoq-pcuic" {= version}
"coq-metacoq-safechecker" {= version}
]
synopsis: "Implementation and verification of an erasure procedure for Coq"
description: """
MetaCoq is a meta-programming framework for Coq.
The Erasure module provides a complete specification of Coq's so-called
\"extraction\" procedure, starting from the PCUIC calculus and targeting
untyped call-by-value lambda-calculus.
The `erasure` function translates types and proofs in well-typed terms
into a dummy `tBox` constructor, following closely P. Letouzey's PhD
thesis.
"""
url {
src: "git+https://github.com/MetaCoq/metacoq#coq-8.8"
}
</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-metacoq-erasure.8.8.dev coq.8.10.dev</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.10.dev).
The following dependencies couldn't be met:
- coq-metacoq-erasure -> coq < 8.9~ -> 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-metacoq-erasure.8.8.dev</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>
|
turismo/sitio/templates/registration/login.html
|
giocastagno/I.W._Delpuppo_Kopech_Castagno
|
{% extends 'base.html' %}
{% load static %}
{% block extra_html %}
{% endblock %}
{% block titulo %}Ingresá a Santa Fe por el mundo{% endblock %}
{% block content %}
{% load i18n %}
<form method="post" action=".">
{% csrf_token %}
{{ form.as_p }}
<input type="submit" class = "btn btn-danger" value="{% trans 'Log in' %}" />
<input type="hidden" name="next" value="{{ next }}" />
</form>
<p>{% trans "Olvido su clave" %}? <a href="{% url 'auth_password_reset' %}">{% trans "Reestablecer" %}</a>!</p>
<p>{% trans "Aun no es miembro" %}? <a href="{% url 'registration_register' %}">{% trans "Registrarse" %}</a>!</p>
{% endblock %}
{% block extra_js %}
{% endblock %}
|
TAIHAO2019/pub/SmallGame/AsFastAsYouCan2/3d666714b680285144cbb11a1f641952dc9b034f82daa9d72960ecaedda94198.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="./276483afc40f13214d8c84aa52269128b4160e8ec5ea755964ea4a88c904a46e.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>
|
story_corpus/prwe/prwe272.html
|
daphnei/nn_chatbot
|
<body>
<center>
<a href="../../../cdshop/index.htm"><img src="../../../cdshop/cdinfo.jpg" border="0"></a><br>
<a href="../../../index.htm">Sacred Texts</a>
<a href="../../index.htm">Sagas and Legends</a>
<a href="../index.htm">English Folklore</a>
<a href="index.htm">Index</a>
<a href="prwe271.htm">Previous</a>
<a href="prwe273.htm">Next</a>
</center>
<hr>
<p align="CENTER">TEA-STALKS AND SMUT</p>
<p>
STEMS of tea floating in that beverage indicate strangers.
Flakes of smut hanging loose to the fire-bars do the same thing.</p>
<p>The time of the stranger's arrival may be known by placing
the stem on the back of one hand and smacking it with the other:` the
number of blows given before it is removed indicates the number of days
before his arrival.</p>
<p>The flake of carbon is blown upon, and according as it is
removed by the first, second, or third blow, so is the time at the end of
which the visitor may be expected.</p>
<p></p>
<hr>
<center>
<a href="prwe273.htm">Next: An Old Cornish Rhyme</a>
</center>
</body>
|
_site/2014/07/02/immutable-infrastructure-with-docker-and-ec2.html
|
MDInsider/mdinsider.github.io
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>MDInsider ♥ Open Source / "Immutable Infrastructure with Docker and EC2": Gilt at Dockercon (Video)</title>
<meta name="author" content="MDInsider, Inc.">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="/assets/themes//img/favicon.ico">
<link href="/atom.xml" type="application/atom+xml" rel="alternate" title="Sitewide ATOM Feed">
<link href="/rss.xml" type="application/rss+xml" rel="alternate" title="Sitewide RSS Feed">
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<link rel="stylesheet" href="/assets/themes//css/github-light.css">
<link rel="stylesheet/less" href="/assets/themes//css/style.less">
<script src="//cdnjs.cloudflare.com/ajax/libs/less.js/2.5.0/less.min.js"></script>
<script src="/assets/themes//js/jekyll-search.js"></script>
<script>
var searchJsonPath = '/search.json',
searchTemplate = '<menuitem><a href="{url}">{title}</a></menuitem>';
</script>
<script>
(function() {
var shr = document.createElement('script');
shr.setAttribute('data-cfasync', 'false');
shr.src = '//dsms0mj1bbhn4.cloudfront.net/assets/pub/shareaholic.js';
shr.type = 'text/javascript'; shr.async = 'true';
shr.onload = shr.onreadystatechange = function() {
var rs = this.readyState;
if (rs && rs != 'complete' && rs != 'loaded') return;
var site_id = 'aed9a48340b830002b74641e868bfcec';
try { Shareaholic.init(site_id); } catch (e) {}
};
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(shr, s);
})();
</script>
</head>
<body>
<div id="body">
<header>
<nav>
<span>
<a href="http://www.mdinsider.com/careers/">Join MD Insider Tech</a>
<a href="http://mdinsider.com">MDInsider.com</a>
</span>
</nav>
<section id="subnav">
<span>
<a class="categories">Categories</a>
<p class="social github"><a href="https://github.com/mdinsider" title="Github"></a></p>
<p class="social twitter"><a href="https://twitter.com/mdinsidercorp" title="Twitter"></a></p>
<p class="social facebook"><a href="https://www.facebook.com/mdinsider" title="Facebook"></a></p>
<!-- <p class="social google"><a href="https://plus.google.com/109372432870680352734" title="Google+"></a></p> -->
<span id="search">
<input type="search" placeholder="Search …" title="Search for:" />
</span>
<menu id="categories-menu">
<menuitem>
<a href="/categories.html#AWS-ref">AWS</a>
</menuitem>
<menuitem>
<a href="/categories.html#Leadership-ref">Leadership</a>
</menuitem>
<menuitem>
<a href="/categories.html#agile-ref">agile</a>
</menuitem>
<menuitem>
<a href="/categories.html#analytics-ref">analytics</a>
</menuitem>
<menuitem>
<a href="/categories.html#aws-ref">aws</a>
</menuitem>
<menuitem>
<a href="/categories.html#blog-ref">blog</a>
</menuitem>
<menuitem>
<a href="/categories.html#conferences-ref">conferences</a>
</menuitem>
<menuitem>
<a href="/categories.html#culture-ref">culture</a>
</menuitem>
<menuitem>
<a href="/categories.html#deployment-ref">deployment</a>
</menuitem>
<menuitem>
<a href="/categories.html#front-end-ref">front-end</a>
</menuitem>
<menuitem>
<a href="/categories.html#mobile-ref">mobile</a>
</menuitem>
<menuitem>
<a href="/categories.html#scala-ref">scala</a>
</menuitem>
<menuitem>
<a href="/categories.html#swift-ref">swift</a>
</menuitem>
<menuitem>
<a href="/categories.html#tech-ref">tech</a>
</menuitem>
<menuitem>
<a href="/categories.html#tvOS-ref">tvOS</a>
</menuitem>
</menu>
<menu id="search-results">
</menu>
</span>
</section>
<a class="logo" href="/" class="logo"></a>
<h1>Tech Blog</h1>
</header>
<section id="main">
<article>
<h1><a href="/2014/07/02/immutable-infrastructure-with-docker-and-ec2">"Immutable Infrastructure with Docker and EC2": Gilt at Dockercon (Video)</a></h1>
<header>
<time>02 July 2014</time>
</header>
<div class="content">
<p><iframe frameborder="0" height="360" src="//www.youtube.com/embed/GaHzdqFithc" width="640"></iframe></p>
<p>Here’s Gilt Co-Founder and CTO Michael Bryzek at last month’s <a href="http://dockercon.com/" target="_blank">Dockercon14</a> conference in San Francisco, discussing how our engineering team has been experimenting with Docker to improve and simplify end-to-end continuous delivery of our micro-services architecture. Next week Michael will give an updated version of his talk at the <a href="http://www.meetup.com/Docker-Dublin/events/191234532/" target="_blank">inaugural Docker Dublin meetup</a>, hosted at Engine Yard!</p>
<p>Docker is releasing two videos per day from the conference–check them all out <a href="http://blog.docker.com/category/dockercon-2/" target="_blank">here</a>.</p>
</div>
<div class="shareaholic-canvas" data-app="share_buttons" data-app-id="18213596"></div>
<section class="tags">
<a href="/tags.html#Gilt-ref">Gilt <span>340</span></a>
<a href="/tags.html#Gilt Groupe-ref">Gilt Groupe <span>282</span></a>
<a href="/tags.html#Gilt Tech-ref">Gilt Tech <span>287</span></a>
<a href="/tags.html#gilttech-ref">gilttech <span>332</span></a>
<a href="/tags.html#Michael Bryzek-ref">Michael Bryzek <span>34</span></a>
<a href="/tags.html#Docker-ref">Docker <span>20</span></a>
<a href="/tags.html#Docker.io-ref">Docker.io <span>5</span></a>
<a href="/tags.html#dockercon-ref">dockercon <span>1</span></a>
<a href="/tags.html#dockercon14-ref">dockercon14 <span>1</span></a>
<a href="/tags.html#video-ref">video <span>42</span></a>
<a href="/tags.html#presentations-ref">presentations <span>42</span></a>
<a href="/tags.html#EC2-ref">EC2 <span>4</span></a>
<a href="/tags.html#immutability-ref">immutability <span>6</span></a>
<a href="/tags.html#immutable infrastructure-ref">immutable infrastructure <span>1</span></a>
<a href="/tags.html#Docker and EC2-ref">Docker and EC2 <span>1</span></a>
<a href="/tags.html#Docker Dublin-ref">Docker Dublin <span>3</span></a>
<a href="/tags.html#micro-services-ref">micro-services <span>21</span></a>
<a href="/tags.html#microservices-ref">microservices <span>18</span></a>
<a href="/tags.html#cloud technology-ref">cloud technology <span>3</span></a>
</section>
</article>
</section>
<footer>
<nav>
<span>
<a href="http://www.mdinsider.com/careers/">Join MD Insider Tech</a>
<a href="http://mdinsider.com">MDInsider.com</a>
</span>
</nav>
<section id="copyright">
© 2015 MDInsider, Inc. • <a href="/archive.html">Archives</a>
</section>
</footer>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="/assets/themes//js/main.js"></script>
</body>
</html>
|
test/fixtures/public/stylesheets/two.css
|
GoalSmashers/assets-include-ruby
|
.two {
color: red;
}
|
SkepsisWeb/Ihmeellinen/voodoo.html
|
nsdnwe/skepsis-web
|
<!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" lang="fi" xml:lang="fi">
<head>
<title>Ihmeellinen maailma: Voodoo</title>
<meta http-equiv="Content-Type" content />
<link type="image/x-icon" rel="shortcut icon" href="favicon.ico" />
<link rel="stylesheet" type="text/css" href="../main.css" />
<link rel="stylesheet" type="text/css" href="ihmeellinen.css" />
</head>
<body>
<h1>Voodoo</h1><p>(engl. vodoun, voodoo). Voodoo on haitilainen uskonto, joka syntyi afrikkalaisten orjien ja valkoisten katolisten kohtaamisesta: koska orjilta kiellettiin oman uskontonsa harjoittaminen, heidän jumalansa ottivat katolisten pyhimysten muodon. Vaikka musta magia ei ole voodoon keskeisin olemus, se on tullut tunnetuksi erityisesti voodoo-nukkien ja zombien myötä.</p><p>Katso: <a href="magia.html">Magia</a>; <a href="zombie.html">Zombie</a>.</p><p class="nonprint"><a href="../"><img alt="alkuun" src="../kuvat/top.png" style="border:0;width:20px;height:20px;" /></a> <a href="./"><img alt="palaa" src="../kuvat/back.png" style="border:0;width:20px;height:20px;" /></a></p>
</body>
</html>
|
9e2d85e/html/classv8_1_1PersistentValueMapBase.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 v6.11.3: v8::PersistentValueMapBase< K, V, Traits > Class Template 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 id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">V8 API Reference Guide for node.js v6.11.3
</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_1PersistentValueMapBase.html">PersistentValueMapBase</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="summary">
<a href="#nested-classes">Classes</a> |
<a href="#pub-methods">Public Member Functions</a> |
<a href="#pro-methods">Protected Member Functions</a> |
<a href="#pro-static-methods">Static Protected Member Functions</a> |
<a href="classv8_1_1PersistentValueMapBase-members.html">List of all members</a> </div>
<div class="headertitle">
<div class="title">v8::PersistentValueMapBase< K, V, Traits > Class Template Reference</div> </div>
</div><!--header-->
<div class="contents">
<p><code>#include <<a class="el" href="v8-util_8h_source.html">v8-util.h</a>></code></p>
<div class="dynheader">
Inheritance diagram for v8::PersistentValueMapBase< K, V, Traits >:</div>
<div class="dyncontent">
<div class="center"><img src="classv8_1_1PersistentValueMapBase__inherit__graph.png" border="0" usemap="#v8_1_1PersistentValueMapBase_3_01K_00_01V_00_01Traits_01_4_inherit__map" alt="Inheritance graph"/></div>
<map name="v8_1_1PersistentValueMapBase_3_01K_00_01V_00_01Traits_01_4_inherit__map" id="v8_1_1PersistentValueMapBase_3_01K_00_01V_00_01Traits_01_4_inherit__map">
</map>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>
<table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="nested-classes"></a>
Classes</h2></td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1PersistentValueMapBase_1_1PersistentValueReference.html">PersistentValueReference</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
</table><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:a80da7adc6e8bdb166912075346116978"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a80da7adc6e8bdb166912075346116978"></a>
<a class="el" href="classv8_1_1Isolate.html">Isolate</a> * </td><td class="memItemRight" valign="bottom"><b>GetIsolate</b> ()</td></tr>
<tr class="separator:a80da7adc6e8bdb166912075346116978"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ade5c5db2a968fdabe073649e85b837eb"><td class="memItemLeft" align="right" valign="top">size_t </td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1PersistentValueMapBase.html#ade5c5db2a968fdabe073649e85b837eb">Size</a> ()</td></tr>
<tr class="separator:ade5c5db2a968fdabe073649e85b837eb"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9f824b13dd30605589508db2740dd678"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1PersistentValueMapBase.html#a9f824b13dd30605589508db2740dd678">IsWeak</a> ()</td></tr>
<tr class="separator:a9f824b13dd30605589508db2740dd678"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a16b8f906ea42036c2f37d44813bf2a72"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classv8_1_1Local.html">Local</a>< V > </td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1PersistentValueMapBase.html#a16b8f906ea42036c2f37d44813bf2a72">Get</a> (const K &key)</td></tr>
<tr class="separator:a16b8f906ea42036c2f37d44813bf2a72"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8c68e5f99c4042541c6d32232c97282a"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1PersistentValueMapBase.html#a8c68e5f99c4042541c6d32232c97282a">Contains</a> (const K &key)</td></tr>
<tr class="separator:a8c68e5f99c4042541c6d32232c97282a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a85201649d2bbd0ffdebe8be3d5c6447a"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1PersistentValueMapBase.html#a85201649d2bbd0ffdebe8be3d5c6447a">SetReturnValue</a> (const K &key, <a class="el" href="classv8_1_1ReturnValue.html">ReturnValue</a>< <a class="el" href="classv8_1_1Value.html">Value</a> > returnValue)</td></tr>
<tr class="separator:a85201649d2bbd0ffdebe8be3d5c6447a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6fa5f720b283dd9fa626a67e7687dcd0"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1PersistentValueMapBase.html#a6fa5f720b283dd9fa626a67e7687dcd0">SetReference</a> (const K &key, const <a class="el" href="classv8_1_1Persistent.html">Persistent</a>< <a class="el" href="classv8_1_1Object.html">Object</a> > &parent)</td></tr>
<tr class="separator:a6fa5f720b283dd9fa626a67e7687dcd0"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:abd75a4c050416712167ba0bb9eace097"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classv8_1_1Global.html">Global</a>< V > </td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1PersistentValueMapBase.html#abd75a4c050416712167ba0bb9eace097">Remove</a> (const K &key)</td></tr>
<tr class="separator:abd75a4c050416712167ba0bb9eace097"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1bf074e7a7c24713c9a3d40ddce89e74"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1PersistentValueMapBase.html#a1bf074e7a7c24713c9a3d40ddce89e74">Clear</a> ()</td></tr>
<tr class="separator:a1bf074e7a7c24713c9a3d40ddce89e74"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a52e74c69b94c7ce77a65af9f32d68af4"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classv8_1_1PersistentValueMapBase_1_1PersistentValueReference.html">PersistentValueReference</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1PersistentValueMapBase.html#a52e74c69b94c7ce77a65af9f32d68af4">GetReference</a> (const K &key)</td></tr>
<tr class="separator:a52e74c69b94c7ce77a65af9f32d68af4"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pro-methods"></a>
Protected Member Functions</h2></td></tr>
<tr class="memitem:a1adee3f8b1ff929f07ddf9e94c6108ed"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a1adee3f8b1ff929f07ddf9e94c6108ed"></a>
 </td><td class="memItemRight" valign="bottom"><b>PersistentValueMapBase</b> (<a class="el" href="classv8_1_1Isolate.html">Isolate</a> *isolate)</td></tr>
<tr class="separator:a1adee3f8b1ff929f07ddf9e94c6108ed"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af2e83791955c6027213dd979eebeb8f4"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="af2e83791955c6027213dd979eebeb8f4"></a>
<a class="el" href="classv8_1_1Isolate.html">Isolate</a> * </td><td class="memItemRight" valign="bottom"><b>isolate</b> ()</td></tr>
<tr class="separator:af2e83791955c6027213dd979eebeb8f4"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aacd576258fbffaf366436a6ecdd8cdf5"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aacd576258fbffaf366436a6ecdd8cdf5"></a>
Traits::Impl * </td><td class="memItemRight" valign="bottom"><b>impl</b> ()</td></tr>
<tr class="separator:aacd576258fbffaf366436a6ecdd8cdf5"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5c16ace49c257f760c92a010a93b4884"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a5c16ace49c257f760c92a010a93b4884"></a>
void </td><td class="memItemRight" valign="bottom"><b>RemoveWeak</b> (const K &key)</td></tr>
<tr class="separator:a5c16ace49c257f760c92a010a93b4884"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pro-static-methods"></a>
Static Protected Member Functions</h2></td></tr>
<tr class="memitem:af8fcd471f2d53ffca9881f7c436044e8"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="af8fcd471f2d53ffca9881f7c436044e8"></a>
static V * </td><td class="memItemRight" valign="bottom"><b>FromVal</b> (PersistentContainerValue v)</td></tr>
<tr class="separator:af8fcd471f2d53ffca9881f7c436044e8"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7b083c75829bbc4177729ffe9827c4ac"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a7b083c75829bbc4177729ffe9827c4ac"></a>
static PersistentContainerValue </td><td class="memItemRight" valign="bottom"><b>ClearAndLeak</b> (<a class="el" href="classv8_1_1Global.html">Global</a>< V > *persistent)</td></tr>
<tr class="separator:a7b083c75829bbc4177729ffe9827c4ac"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:adacf68ca7b9fb19deab68711a70a8313"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="adacf68ca7b9fb19deab68711a70a8313"></a>
static PersistentContainerValue </td><td class="memItemRight" valign="bottom"><b>Leak</b> (<a class="el" href="classv8_1_1Global.html">Global</a>< V > *persistent)</td></tr>
<tr class="separator:adacf68ca7b9fb19deab68711a70a8313"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9ffa7a4e0c59121c0471d71c04112966"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="classv8_1_1Global.html">Global</a>< V > </td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1PersistentValueMapBase.html#a9ffa7a4e0c59121c0471d71c04112966">Release</a> (PersistentContainerValue v)</td></tr>
<tr class="separator:a9ffa7a4e0c59121c0471d71c04112966"><td class="memSeparator" colspan="2"> </td></tr>
</table>
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
<div class="textblock"><h3>template<typename K, typename V, typename Traits><br />
class v8::PersistentValueMapBase< K, V, Traits ></h3>
<p>A map wrapper that allows using <a class="el" href="classv8_1_1Global.html">Global</a> as a mapped value. C++11 embedders don't need this class, as they can use <a class="el" href="classv8_1_1Global.html">Global</a> directly in std containers.</p>
<p>The map relies on a backing map, whose type and accessors are described by the Traits class. The backing map will handle values of type PersistentContainerValue, with all conversion into and out of <a class="el" href="classv8_1_1V8.html">V8</a> handles being transparently handled by this class. </p>
</div><h2 class="groupheader">Member Function Documentation</h2>
<a class="anchor" id="a1bf074e7a7c24713c9a3d40ddce89e74"></a>
<div class="memitem">
<div class="memproto">
<div class="memtemplate">
template<typename K , typename V , typename Traits > </div>
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void <a class="el" href="classv8_1_1PersistentValueMapBase.html">v8::PersistentValueMapBase</a>< K, V, Traits >::Clear </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Traverses the map repeatedly, in case side effects of disposal cause insertions. </p>
</div>
</div>
<a class="anchor" id="a8c68e5f99c4042541c6d32232c97282a"></a>
<div class="memitem">
<div class="memproto">
<div class="memtemplate">
template<typename K , typename V , typename Traits > </div>
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">bool <a class="el" href="classv8_1_1PersistentValueMapBase.html">v8::PersistentValueMapBase</a>< K, V, Traits >::Contains </td>
<td>(</td>
<td class="paramtype">const K & </td>
<td class="paramname"><em>key</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Check whether a value is contained in the map. </p>
</div>
</div>
<a class="anchor" id="a16b8f906ea42036c2f37d44813bf2a72"></a>
<div class="memitem">
<div class="memproto">
<div class="memtemplate">
template<typename K , typename V , typename Traits > </div>
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classv8_1_1Local.html">Local</a><V> <a class="el" href="classv8_1_1PersistentValueMapBase.html">v8::PersistentValueMapBase</a>< K, V, Traits >::Get </td>
<td>(</td>
<td class="paramtype">const K & </td>
<td class="paramname"><em>key</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Get value stored in map. </p>
</div>
</div>
<a class="anchor" id="a52e74c69b94c7ce77a65af9f32d68af4"></a>
<div class="memitem">
<div class="memproto">
<div class="memtemplate">
template<typename K , typename V , typename Traits > </div>
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classv8_1_1PersistentValueMapBase_1_1PersistentValueReference.html">PersistentValueReference</a> <a class="el" href="classv8_1_1PersistentValueMapBase.html">v8::PersistentValueMapBase</a>< K, V, Traits >::GetReference </td>
<td>(</td>
<td class="paramtype">const K & </td>
<td class="paramname"><em>key</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Get a reference to a map value. This enables fast, repeated access to a value stored in the map while the map remains unchanged.</p>
<p>Careful: This is potentially unsafe, so please use with care. The value will become invalid if the value for this key changes in the underlying map, as a result of <a class="el" href="classv8_1_1Set.html">Set</a> or Remove for the same key; as a result of the weak callback for the same key; or as a result of calling <a class="el" href="classv8_1_1PersistentValueMapBase.html#a1bf074e7a7c24713c9a3d40ddce89e74">Clear()</a> or destruction of the map. </p>
</div>
</div>
<a class="anchor" id="a9f824b13dd30605589508db2740dd678"></a>
<div class="memitem">
<div class="memproto">
<div class="memtemplate">
template<typename K , typename V , typename Traits > </div>
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">bool <a class="el" href="classv8_1_1PersistentValueMapBase.html">v8::PersistentValueMapBase</a>< K, V, Traits >::IsWeak </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Return whether the map holds weak persistents. </p>
</div>
</div>
<a class="anchor" id="a9ffa7a4e0c59121c0471d71c04112966"></a>
<div class="memitem">
<div class="memproto">
<div class="memtemplate">
template<typename K , typename V , typename Traits > </div>
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">static <a class="el" href="classv8_1_1Global.html">Global</a><V> <a class="el" href="classv8_1_1PersistentValueMapBase.html">v8::PersistentValueMapBase</a>< K, V, Traits >::Release </td>
<td>(</td>
<td class="paramtype">PersistentContainerValue </td>
<td class="paramname"><em>v</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span><span class="mlabel">static</span><span class="mlabel">protected</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Return a container value as <a class="el" href="classv8_1_1Global.html">Global</a> and make sure the weak callback is properly disposed of. All remove functionality should go through this. </p>
</div>
</div>
<a class="anchor" id="abd75a4c050416712167ba0bb9eace097"></a>
<div class="memitem">
<div class="memproto">
<div class="memtemplate">
template<typename K , typename V , typename Traits > </div>
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classv8_1_1Global.html">Global</a><V> <a class="el" href="classv8_1_1PersistentValueMapBase.html">v8::PersistentValueMapBase</a>< K, V, Traits >::Remove </td>
<td>(</td>
<td class="paramtype">const K & </td>
<td class="paramname"><em>key</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Return value for key and remove it from the map. </p>
</div>
</div>
<a class="anchor" id="a6fa5f720b283dd9fa626a67e7687dcd0"></a>
<div class="memitem">
<div class="memproto">
<div class="memtemplate">
template<typename K , typename V , typename Traits > </div>
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void <a class="el" href="classv8_1_1PersistentValueMapBase.html">v8::PersistentValueMapBase</a>< K, V, Traits >::SetReference </td>
<td>(</td>
<td class="paramtype">const K & </td>
<td class="paramname"><em>key</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classv8_1_1Persistent.html">Persistent</a>< <a class="el" href="classv8_1_1Object.html">Object</a> > & </td>
<td class="paramname"><em>parent</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Call <a class="el" href="classv8_1_1Isolate.html#a055fc73d18747b96c51f00599cdd3ec1">Isolate::SetReference</a> with the given parent and the map value. </p>
</div>
</div>
<a class="anchor" id="a85201649d2bbd0ffdebe8be3d5c6447a"></a>
<div class="memitem">
<div class="memproto">
<div class="memtemplate">
template<typename K , typename V , typename Traits > </div>
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">bool <a class="el" href="classv8_1_1PersistentValueMapBase.html">v8::PersistentValueMapBase</a>< K, V, Traits >::SetReturnValue </td>
<td>(</td>
<td class="paramtype">const K & </td>
<td class="paramname"><em>key</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classv8_1_1ReturnValue.html">ReturnValue</a>< <a class="el" href="classv8_1_1Value.html">Value</a> > </td>
<td class="paramname"><em>returnValue</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Get value stored in map and set it in returnValue. Return true if a value was found. </p>
</div>
</div>
<a class="anchor" id="ade5c5db2a968fdabe073649e85b837eb"></a>
<div class="memitem">
<div class="memproto">
<div class="memtemplate">
template<typename K , typename V , typename Traits > </div>
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">size_t <a class="el" href="classv8_1_1PersistentValueMapBase.html">v8::PersistentValueMapBase</a>< K, V, Traits >::Size </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Return size of the map. </p>
</div>
</div>
<hr/>The documentation for this class was generated from the following file:<ul>
<li>deps/v8/include/<a class="el" href="v8-util_8h_source.html">v8-util.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.11
</small></address>
</body>
</html>
|
src/popup.html
|
hiroraba/zenbu_tojiru
|
<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8">
<title>Options</title>
<script src='javascript/jquery-1.10.2.min.js'></script>
<script src='javascript/contents.js'></script>
</head>
<body>
<input type="button" value="close" id="close">
</body>
</html>
|
docs/coverage/app/shared/no-content/index.html
|
darekf77/account-login
|
<!doctype html>
<html lang="en">
<head>
<title>Code coverage report for app/shared/no-content/</title>
<meta charset="utf-8" />
<link rel="stylesheet" href="../../../prettify.css" />
<link rel="stylesheet" href="../../../base.css" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<style type='text/css'>
.coverage-summary .sorter {
background-image: url(../../../sort-arrow-sprite.png);
}
</style>
</head>
<body>
<div class='wrapper'>
<div class='pad1'>
<h1>
<a href="../../../index.html">all files</a> app/shared/no-content/
</h1>
<div class='clearfix'>
<div class='fl pad1y space-right2'>
<span class="strong">100% </span>
<span class="quiet">Statements</span>
<span class='fraction'>6/6</span>
</div>
<div class='fl pad1y space-right2'>
<span class="strong">100% </span>
<span class="quiet">Branches</span>
<span class='fraction'>0/0</span>
</div>
<div class='fl pad1y space-right2'>
<span class="strong">100% </span>
<span class="quiet">Functions</span>
<span class='fraction'>1/1</span>
</div>
<div class='fl pad1y space-right2'>
<span class="strong">100% </span>
<span class="quiet">Lines</span>
<span class='fraction'>5/5</span>
</div>
</div>
</div>
<div class='status-line high'></div>
<div class="pad1">
<table class="coverage-summary">
<thead>
<tr>
<th data-col="file" data-fmt="html" data-html="true" class="file">File</th>
<th data-col="pic" data-type="number" data-fmt="html" data-html="true" class="pic"></th>
<th data-col="statements" data-type="number" data-fmt="pct" class="pct">Statements</th>
<th data-col="statements_raw" data-type="number" data-fmt="html" class="abs"></th>
<th data-col="branches" data-type="number" data-fmt="pct" class="pct">Branches</th>
<th data-col="branches_raw" data-type="number" data-fmt="html" class="abs"></th>
<th data-col="functions" data-type="number" data-fmt="pct" class="pct">Functions</th>
<th data-col="functions_raw" data-type="number" data-fmt="html" class="abs"></th>
<th data-col="lines" data-type="number" data-fmt="pct" class="pct">Lines</th>
<th data-col="lines_raw" data-type="number" data-fmt="html" class="abs"></th>
</tr>
</thead>
<tbody><tr>
<td class="file high" data-value="index.ts"><a href="index.ts.html">index.ts</a></td>
<td data-value="100" class="pic high"><div class="chart"><div class="cover-fill cover-full" style="width: 100%;"></div><div class="cover-empty" style="width:0%;"></div></div></td>
<td data-value="100" class="pct high">100%</td>
<td data-value="1" class="abs high">1/1</td>
<td data-value="100" class="pct high">100%</td>
<td data-value="0" class="abs high">0/0</td>
<td data-value="100" class="pct high">100%</td>
<td data-value="0" class="abs high">0/0</td>
<td data-value="100" class="pct high">100%</td>
<td data-value="1" class="abs high">1/1</td>
</tr>
<tr>
<td class="file high" data-value="no-content.ts"><a href="no-content.ts.html">no-content.ts</a></td>
<td data-value="100" class="pic high"><div class="chart"><div class="cover-fill cover-full" style="width: 100%;"></div><div class="cover-empty" style="width:0%;"></div></div></td>
<td data-value="100" class="pct high">100%</td>
<td data-value="5" class="abs high">5/5</td>
<td data-value="100" class="pct high">100%</td>
<td data-value="0" class="abs high">0/0</td>
<td data-value="100" class="pct high">100%</td>
<td data-value="1" class="abs high">1/1</td>
<td data-value="100" class="pct high">100%</td>
<td data-value="4" class="abs high">4/4</td>
</tr>
</tbody>
</table>
</div><div class='push'></div><!-- for sticky footer -->
</div><!-- /wrapper -->
<div class='footer quiet pad2 space-top1 center small'>
Code coverage
generated by <a href="http://istanbul-js.org/" target="_blank">istanbul</a> at Fri Dec 23 2016 16:47:43 GMT+0100 (CET)
</div>
</div>
<script src="../../../prettify.js"></script>
<script>
window.onload = function () {
if (typeof prettyPrint === 'function') {
prettyPrint();
}
};
</script>
<script src="../../../sorter.js"></script>
</body>
</html>
|
src/Web/Bundle/Resources/views/single-project-slider-full-width.html
|
Bernadskaya/muraveyweb
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Olin · Single Project Slider Full Width</title>
<link rel="icon" href="favicon.png">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Google Fonts (more: http://www.google.com/fonts) -->
<!-- Main Font -->
<link href="http://fonts.googleapis.com/css?family=Open+Sans:300,400,700" rel="stylesheet">
<!-- Headings -->
<link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro" rel="stylesheet">
<!-- Handwritten -->
<link href="http://fonts.googleapis.com/css?family=Marck+Script" rel="stylesheet">
<!-- Countdown, Pricing Table Price Tag -->
<link href="http://fonts.googleapis.com/css?family=Oswald:300,400,700" rel="stylesheet">
<!-- Logo -->
<link href="http://fonts.googleapis.com/css?family=Cantora+One" rel="stylesheet" type="text/css">
<!-- CDN Bootstrap & FontAwesome -->
<link href="http://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet">
<link href="http://netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.min.css" rel="stylesheet">
<!-- CSS Libraries -->
<link href="assets/css/animate.min.css" rel="stylesheet">
<link href="assets/css/bxslider.css" rel="stylesheet">
<link href="assets/css/magnific-popup.css" rel="stylesheet">
<!-- Theme Specific CSS -->
<link href="assets/css/styles.css" rel="stylesheet">
<link href="assets/css/custom.css" rel="stylesheet">
<!-- Predefined Color Scheme -->
<link href="assets/css/colors/default.css" rel="stylesheet" id="colors">
<!-- LESS - Development Only
<link href="assets/less/styles.less" rel="stylesheet/less" />
<script>less = { env: 'development' };</script>
<script src="assets/js/less.js"></script>
-->
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="assets/js/html5shiv.js"></script>
<script src="assets/js/respond.min.js"></script>
<link href="assets/css/ie8.css" rel="stylesheet"></link>
<![endif]-->
</head>
<body>
<header id="header" class="navbar">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Skip navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand logo" href="/">Logo</a>
</div>
<nav class="collapse navbar-collapse" role="navigation">
<ul class="nav navbar-nav">
<li class="dropdown">
<a href="#">Pages</a>
<ul class="dropdown-menu">
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact - Full Width</a></li>
<li><a href="#contact" data-toggle="modal">Contact - Popup (Modal)</a></li>
<li><a href="coming-soon.html">Coming Soon</a></li>
<li><a href="coming-soon-bg-image.html">Coming Soon (Background)</a></li>
<li><a href="pricing-tables.html">Pricing Tables</a></li>
<li><a href="faq.html">FAQ</a></li>
<li><a href="404.html">404 - Page not found</a></li>
</ul>
</li>
<li class="dropdown">
<a href="#">Features</a>
<ul class="dropdown-menu">
<li><a href="elements.html">Elements</a></li>
<li><a href="grid-system.html">Grid System</a></li>
<li><a href="icons.html">Icons</a></li>
<li><a href="typography.html">Typography</a></li>
</ul>
</li>
<li class="dropdown">
<a href="#">Portfolio</a>
<ul class="dropdown-menu">
<li><a href="portfolio-four-columns.html">Four Columns</a></li>
<li><a href="portfolio-three-columns.html">Three Columns</a></li>
<li><a href="portfolio-two-columns.html">Two Columns</a></li>
<li><a href="portfolio-one-column.html">One Column</a></li>
<li><a href="portfolio-masonry.html">Masonry Layout</a></li>
<li><a href="single-project-gallery.html">Single Project - Gallery</a></li>
<li><a href="single-project-slider.html">Single Project - Slider</a></li>
<li><a href="single-project-slider-full-width.html">Single Project - Slider Full Width</a></li>
</ul>
</li>
<li class="dropdown">
<a href="#">Blog</a>
<ul class="dropdown-menu">
<li><a href="blog.html">Blog Home</a></li>
<li><a href="blog-post-slider.html">Blog Post - Slider</a></li>
<li><a href="blog-post-gallery.html">Blog Post - Gallery</a></li>
<li><a href="blog-post-video.html">Blog Post - Video</a></li>
</ul>
</li>
<li class="dropdown header-search-form">
<a><i class="icon-search"></i></a>
<ul class="dropdown-menu">
<li>
<form action="404.html" method="post">
<input type="text" placeholder="Search for.." />
</form>
</li>
</ul>
</li>
</ul>
</nav>
</div>
</header><!-- .navbar-fixed-top -->
<div class="page-top">
<div class="container">
<h1 class="page-top-header">Single Project - Slider Full Width</h1>
<ol class="breadcrumb">
<li><a href="/">Home</a></li>
<li class="active">Single Project - Slider Full Width</li>
</ol>
</div>
</div>
<div class="container" id="main">
<div class="project-single">
<div id="carousel" class="carousel slide">
<!-- Wrapper for slides -->
<div class="carousel-inner">
<div class="item active">
<img src="http://placehold.it/1200x400&text=Slide+1" alt="" />
</div>
<div class="item">
<img src="http://placehold.it/1200x400&text=Slide+2" alt="" />
</div>
<div class="item">
<img src="http://placehold.it/1200x400&text=Slide+3" alt="" />
</div>
</div>
<!-- Controls -->
<a class="left carousel-control" href="#carousel" data-slide="prev">
<i class="icon-angle-left"></i>
</a>
<a class="right carousel-control" href="#carousel" data-slide="next">
<i class="icon-angle-right"></i>
</a>
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#carousel" data-slide-to="0" class="active"></li>
<li data-target="#carousel" data-slide-to="1"></li>
<li data-target="#carousel" data-slide-to="2"></li>
</ol>
</div>
</div>
<div class="row">
<div class="col-md-6 section-small">
<h5 class="page-header">Single Project with Full Width Slider</h5>
<p>
Use this space to explain a little bit about this certain project.
</p>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Laboriosam, molestias, asperiores, cumque blanditiis repellat tempore eligendi vel dolor error odit quam quas suscipit.
</p>
</div>
<div class="col-md-6 section-small">
<ul class="nav nav-tabs tab-header">
<li class="active"><a href="#1" data-toggle="tab"><i class="icon-user"></i> Client</a></li>
<li><a href="#2" data-toggle="tab"><i class="icon-star"></i> Our Expertise</a></li>
<li><a href="#3" data-toggle="tab"><i class="icon-quote-right"></i> Feedback</a></li>
</ul>
<div class="tab-content">
<div class="tab-pane active" id="1">
<p>
<strong>Great Company Inc.</strong>
</p>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Ducimus, odit libero quis facilis expedita voluptates maxime quaerat dolorum quas laudantium.
</p>
<p>
<a href="http://google.com">www.google.com</a>
</p>
<span class="project-date">September 2013</span>
</div>
<div class="tab-pane" id="2">
<p>
Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch.
</p>
<ul class="list-icon">
<li><i class="icon-ok-sign"></i>Awesome Skill #1</li>
<li><i class="icon-ok-sign"></i>Awesome Skill #2</li>
<li><i class="icon-ok-sign"></i>Awesome Skill #3</li>
</ul>
</div>
<div class="tab-pane" id="3">
<blockquote>
<p><strong>Incredible.</strong> What a team, what a result. I am so happy. Highly recommend those folks.</p>
<small>John Doe, CEO of <cite title="Source Title">"Great Company Inc."</cite></small>
</blockquote>
</div>
</div>
</div>
</div>
<div class="project-single-more">
<h3 class="hr2 text-center">More Projects</h3>
<div class="row">
<ul>
<li class="col-sm-3">
<a href="single-project-slider.html">
<img src="http://placehold.it/600x400&text=Slider+Project" alt="" />
</a>
<h6 class="header">Single Project - Slider</h6>
<p>
Short description, if you feel fancy.
</p>
</li>
<li class="col-sm-3">
<a href="single-project-gallery.html">
<img src="http://placehold.it/600x400&text=Gallery+Project" alt="" />
</a>
<h6 class="header">Single Project - Gallery</h6>
<p>
Short description, if you feel fancy.
</p>
</li>
<li class="col-sm-3">
<a href="single-project-slider.html">
<img src="http://placehold.it/600x400&text=Slider+Project" alt="" />
</a>
<h6 class="header">Single Project - Slider</h6>
<p>
Short description, if you feel fancy.
</p>
</li>
<li class="col-sm-3">
<a href="single-project-gallery.html">
<img src="http://placehold.it/600x400&text=Gallery+Project" alt="" />
</a>
<h6 class="header">Single Project - Gallery</h6>
<p>
Short description, if you feel fancy.
</p>
</li>
</ul>
</div>
</div>
</div><!-- .container -->
<footer id="footer">
<div class="newsletter">
<div class="container">
<div class="row">
<div class="col-md-8">
<h3 class="title"><i class="icon-envelope-alt"></i> Newsletter</h3>
<span class="lead">We will only send you good stuff. Promise!</span>
</div>
<div class="col-md-4">
<form class="input-group small" method="post" action="">
<input type="text" class="form-control" placeholder="Your Email Address" />
<div class="input-group-btn">
<button class="btn btn-default" type="button">Sign Up <i class="icon-angle-right"></i></button>
</div>
</form>
</div>
</div>
</div>
</div>
<div class="footer-top">
<div class="container">
<div class="row">
<div class="col-md-4">
<div class="social-networks">
<a href=""><i class="icon-facebook"></i></a>
<a href=""><i class="icon-twitter"></i></a>
<a href=""><i class="icon-google-plus"></i></a>
<a href=""><i class="icon-linkedin"></i></a>
<a href=""><i class="icon-tumblr"></i></a>
<a href=""><i class="icon-dribbble"></i></a>
<a href=""><i class="icon-instagram"></i></a>
<a href=""><i class="icon-pinterest"></i></a>
<a href=""><i class="icon-youtube-play"></i></a>
<a href=""><i class="icon-rss"></i></a>
</div>
</div>
<div class="col-md-4">
<h6 class="title">About</h6>
<p>
We are a small team of remarkable people doing great things. The people who worked with us, leave always happy. Get to know a little bit more <a href="about">about us</a>.
</p>
</div>
<div class="col-md-4">
<h6 class="title">Get in Touch</h6>
<address>
<i class="icon-map-marker"></i> <a class="lightbox-iframe" href="https://maps.google.com/maps?q=Main+Street,+New+York+City,+New+York&hl=en&t=v&hnear=Main+Street,+New+York+City,+New+York" data-toggle="tooltip" title="Show on Google Maps">Main Street, New York City, United States</a><br />
<i class="icon-envelope"></i> <a href="mailto:mail@yourcompany.com" data-toggle="tooltip" title="Email Us">mail@yourcompany.com</a><br />
<i class="icon-phone"></i> +1 555 1234 4556<br />
</address>
</div>
</div>
</div>
</div>
<div class="container footer-bottom">
<div class="footer-copyright">
<p>© 2013 by Olin. All Rights Reserved.</p>
</div>
</div>
</footer>
<a href="#" id="scrollToTop">
<i class="icon-angle-up icon-2x"></i>
</a>
<!-- Contact Popup (Modal) -->
<div class="modal fade" id="contact" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h4 class="modal-title">We would love to hear from you</h4>
</div>
<div class="modal-body">
<p class="lead">
Our qualified support is waiting for you, literally. Ask us anything you want. We will get back to you within 24h, seven days a week.</strong>
</p>
<form name="contactform" id="contactform" class="margin-bottom-large" method="post" action="contactform.php">
<div class="row">
<div class="form-group col-md-6">
<label for="name">Name</label>
<input type="text" name="name" id="name" placeholder="" class="form-control" />
</div>
<div class="form-group col-md-6">
<label for="email">Email <span class="text-warning">*</span></label>
<input type="text" name="email" id="email" placeholder="" class="form-control" />
<div id="email_error_empty" class="error">Please enter your email address.</div>
<div id="email_error_invalid" class="error">Please enter a valid email address.</div>
</div>
</div>
<div class="form-group">
<label for="subject">Subject</label>
<input type="text" name="subject" id="subject" class="form-control" placeholder="" />
</div>
<div class="form-group">
<label for="message">Message <span class="text-warning">*</span></label>
<textarea name="message" id="message" cols="30" rows="10" class="form-control" placeholder=""></textarea>
<div id="message_error_empty" class="error">Please enter a message.</div>
<div id="message_error_invalid" class="error">Please check your message for any errors.</div>
</div>
<div id="mailsuccess" class="success">Your message has been sent successfully.</div>
<div id="mailfail" class="error">Sorry, error occured this time sending your message.</div>
<div class="margin-top-base">
<input type="submit" id="submit_contact_form" class="btn btn-primary" value="Send">
<small class="pull-right text-muted">* required</small>
</div>
<script src="assets/js/validation.js"></script>
</form>
<div class="row">
<div class="col-sm-6">
<h4 class="invert">Great Company Inc.</h4>
<address>
<i class="icon-map-marker"></i> Main Street, New York City, United States<br />
<i class="icon-envelope"></i> mail@yourcompany.com<br />
<i class="icon-phone"></i> +1 555 1234 4556<br />
</address>
</div>
<div class="col-sm-6">
<h5 class="hr2 margin-bottom-base text-muted"><i class="icon-time"></i> Business Hours</h5>
<p class="lead">
<span class="color">Mon - Fri:</span> <span class="text-muted">9am to 5pm <em>(EST)</em></span><br />
<span class="color">Sat:</span> <span class="text-muted">9am to 2pm <em>(EST)</em></span><br />
<span class="color">Sun:</span> <span class="text-muted">closed</span>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- JavaScript Libraries & jQuery Plugins -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="http://netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script>
<script src="assets/js/jquery.bxslider.min.js"></script>
<script src="assets/js/jquery.isotope.min.js"></script>
<script src="assets/js/jquery.fittext.js"></script>
<script src="assets/js/jquery.fitvids.js"></script>
<script src="assets/js/jquery.magnific-popup.min.js"></script>
<script src="assets/js/jquery.hoverdir.js"></script>
<script src="assets/js/validation.js"></script>
<script src="assets/js/theme.js"></script>
</body>
</html>
|
src/Viteloge/CoreBundle/Resources/descriptions/02376.html
|
donaldinou/frontend
|
<div class="commune_descr limited">
<p>
Hauteville est
un village
localisé dans le département de l'Aisne en Picardie. On dénombrait 186 habitants en 2008.</p>
<p>À coté de Hauteville sont localisées les communes de
<a href="{{VLROOT}}/immobilier/montigny-en-arrouaise_02511/">Montigny-en-Arrouaise</a> localisée à 4 km, 285 habitants,
<a href="{{VLROOT}}/immobilier/bernot_02070/">Bernot</a> à 2 km, 444 habitants,
<a href="{{VLROOT}}/immobilier/macquigny_02450/">Macquigny</a> située à 2 km, 394 habitants,
<a href="{{VLROOT}}/immobilier/proix_02625/">Proix</a> localisée à 4 km, 143 habitants,
<a href="{{VLROOT}}/immobilier/neuvillette_02552/">Neuvillette</a> localisée à 4 km, 198 habitants,
<a href="{{VLROOT}}/immobilier/origny-sainte-benoite_02575/">Origny-Sainte-Benoite</a> à 4 km, 1 701 habitants,
entre autres. De plus, Hauteville est située à seulement 17 km de <a href="{{VLROOT}}/immobilier/saint-quentin_02691/">Saint-Quentin</a>.</p>
<p>Le nombre de logements, à Hauteville, se décomposait en 2011 en zero appartements et 79 maisons soit
un marché relativement équilibré.</p>
<p>Si vous pensez emmenager à Hauteville, vous pourrez facilement trouver une maison à vendre. </p>
</div>
|
1a894b3/html/process_8cc-example.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 v0.3.3: process.cc</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<script type="text/javascript">
$(document).ready(function() { init_search(); });
</script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td style="padding-left: 0.5em;">
<div id="projectname">V8 API Reference Guide for node.js v0.3.3
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.9.1 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "search",false,'Search');
</script>
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li><a href="annotated.html"><span>Classes</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
<li><a href="examples.html"><span>Examples</span></a></li>
<li>
<div id="MSearchBox" class="MSearchBoxInactive">
<span class="left">
<img id="MSearchSelect" src="search/mag_sel.png"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
<input type="text" id="MSearchField" value="Search" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
</span><span class="right">
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
</span>
</div>
</li>
</ul>
</div>
</div><!-- top -->
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div class="header">
<div class="headertitle">
<div class="title">process.cc</div> </div>
</div><!--header-->
<div class="contents">
<div class="fragment"></div><!-- fragment --> </div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Tue Aug 11 2015 23:46:45 for V8 API Reference Guide for node.js v0.3.3 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>
|
spanTab.html
|
mmoghaddam385/SpanishWordTab
|
<html>
<head>
<title>Word of the Tab</title>
<meta charset="UTF-8">
<meta http-equiv="Content-type" content="text/html; charset=UTF-8">
<script src="js/vendors/jquery-3.2.0.min.js"></script>
<script src="js/vendors/featherlight.min.js"></script>
<script src="js/net/net-utils.js"></script>
<script src="js/settings.js"></script>
<script src="js/spanTab.js"></script>
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/vendors/featherlight.min.css">
</head>
<body>
<table cellspacing="0" width="100%" height="100%">
<tr>
<td id="divLeftColor" class="parent">
<div class="half">
<img id="imgLeftFlag" class="child" style="display: none;">
<div class="child"></div>
<div id="divLeft" class="inside">
<b id="bLeft"></b>
<hr class="horizontal-divider">
<img style="display: none;" id="imgLeftLoading" src="images/loading.svg"></img>
<iframe scrolling="no" id="iframeLeftConjugations"></iframe>
<span id="divLeftNoNetwork" style="display: none;">Conjugations are only available when connected to the internet</span>
</div>
</div>
</td>
<td class="vertical-divider"></td>
<td id="divRightColor" class="parent">
<div class="half">
<img id="imgRightFlag" class="child" style="display: none;">
<div class="child"></div>
<div id="divRight" class="inside">
<b id="bRight"></b>
<hr class="horizontal-divider">
<img style="display: none;" id="imgRightLoading" src="images/loading.svg"></img>
<iframe scrolling="no" id="iframeRightConjugations"></iframe>
<span id="divRightNoNetwork" style="display: none;">Conjugations are only available when connected to the internet</span>
</div>
</div>
</td>
</tr>
</table>
<div class="icons">
<img id="imgAbout" class="icon about-icon" data-featherlight="#divAboutModal" src="images/about-icon.png">
<img id="imgSettings" class="icon settings-icon" src="images/settings-icon.png"/>
</div>
<div class="about-modal" id="divAboutModal" >
<h1>Word of the Tab</h1>
<hr>
<h3 id="h3Version"><h3>
<h3>Questions? Comments? Suggestions? <br /> Send me an email at <a href="mailto:mikeyinc1@gmail.com">mikeyinc1@gmail.com</a></h3>
<hr>
Conjugations provided by <a href="http://www.verbix.com/">Verbix</a>
</div>
</body>
</html>
|
xbarapp.com/public/docs/contributors/15cm.html
|
matryer/bitbar
|
<!doctype html>
<html lang='en' style='background: #111;'>
<head>
<meta charset='utf-8' />
<meta name='viewport' content='width=device-width' />
<meta http-equiv='X-UA-Compatible' content='ie=edge'>
<title>Sinkerine is on xbar</title>
<link rel='stylesheet' href='/public/css/xbar.css?cb=08%20Mar%2021%2015%3a22%20GMT'>
<link rel='preconnect' href='https://fonts.gstatic.com'>
<link rel='preconnect' href='https://fonts.googleapis.com'>
<link rel='stylesheet' href='https://fonts.googleapis.com/css2?family=Bodoni+Moda:wght@500&display=swap'>
<meta name='description' content='Sinkerine is on xbar.'>
<meta name='author' content='Sinkerine'>
<meta name='keywords' content='macos,menubar,xbar,bitbar'>
<meta itemprop='image' content='https://avatars.githubusercontent.com/u/7759556?v=4'>
<meta itemprop='name' content='Sinkerine is on xbar.'>
<meta itemprop='description' content='Sinkerine is on xbar.'>
<meta name='twitter:card' content='summary_large_image'>
<meta name='twitter:title' content='Sinkerine is on xbar.'>
<meta name='twitter:description' content='Sinkerine is on xbar.'>
<meta name='twitter:image' content='https://avatars.githubusercontent.com/u/7759556?v=4'>
<meta name='twitter:creator' content='matryer'>
<meta property='og:title' content='Sinkerine is on xbar.'>
<meta property='og:description' content='Sinkerine is on xbar.'>
<meta property='og:url' content='https://xbarapp.com/contributors/15cm.html'>
<meta property='og:site_name' content='Browse and install plugins by Sinkerine on xbar.'>
<meta property='og:type' content='article:author'>
<meta property='og:image' content='https://avatars.githubusercontent.com/u/7759556?v=4'>
<link rel='apple-touch-icon' sizes='180x180' href='https://avatars.githubusercontent.com/u/7759556?v=4'>
<link rel='icon' type='image/png' sizes='32x32' href='https://avatars.githubusercontent.com/u/7759556?v=4'>
<link rel='shortcut icon' href='https://avatars.githubusercontent.com/u/7759556?v=4'>
<meta name='msapplication-TileColor' content='#ffffff'>
<meta name='msapplication-config' content='/public/browserconfig.xml'>
<meta name='theme-color' content='#ffffff'>
</head>
<body>
<header class='flex flex-col'>
<div class='container mx-auto'>
<div class='flex items-center space-x-8 p-8 text-white'>
<a href='/' class='inline-block py-2 text-2xl flex items-center space-x-2 font-bold'>
<img alt='xbar logo: a circle with three dots inside it' src='/public/img/xbar-2048.png' style='width:48px;height:48px;' />
<span>xbar</span>
</a>
<div class='flex-grow'></div>
<div>
<a
target='github'
href='https://github.com/sponsors/matryer'
class='text-white px-4 py-2 whitespace-nowrap'
><span class='mr-1'>💜</span> Sponsor</a>
</div>
<div class='hidden md:block'>
<a
target='github'
href='/dl'
class='rounded bg-white text-gray-800 hover:text-black px-4 py-2 shadow hover:shadow-lg whitespace-nowrap'
>Coming soon</a>
</div>
</div>
</div>
</header>
<div id='menubar' class='text-white whitespace-nowrap overflow-hidden flex flex-wrap justify-end items-center text-right'>
<a
href='/docs/plugins/AWS.html'
>
AWS
</a>
<a
href='/docs/plugins/Cryptocurrency.html'
>
Cryptocurrency
</a>
<a
href='/docs/plugins/Dev.html'
>
Dev
</a>
<a
href='/docs/plugins/E-Commerce.html'
>
E-Commerce
</a>
<a
href='/docs/plugins/Email.html'
>
Email
</a>
<a
href='/docs/plugins/Environment.html'
>
Environment
</a>
<a
href='/docs/plugins/Finance.html'
>
Finance
</a>
<a
href='/docs/plugins/Games.html'
>
Games
</a>
<a
href='/docs/plugins/IoT.html'
>
IoT
</a>
<a
href='/docs/plugins/Lifestyle.html'
>
Lifestyle
</a>
<a
href='/docs/plugins/Music.html'
>
Music
</a>
<a
href='/docs/plugins/Network.html'
>
Network
</a>
<a
href='/docs/plugins/Politics.html'
>
Politics
</a>
<a
href='/docs/plugins/Science.html'
>
Science
</a>
<a
href='/docs/plugins/Sports.html'
>
Sports
</a>
<a
href='/docs/plugins/System.html'
>
System
</a>
<a
href='/docs/plugins/Time.html'
>
Time
</a>
<a
href='/docs/plugins/Tools.html'
>
Tools
</a>
<a
href='/docs/plugins/Travel.html'
>
Travel
</a>
<a
href='/docs/plugins/Weather.html'
>
Weather
</a>
<a
href='/docs/plugins/Web.html'
>
Web
</a>
</div>
<div class='container mx-auto p-8'>
<div class='flex md:space-x-8'>
<div class='pb-2 mb-4 hidden md:block'>
<img class='max-h-sm rounded-xl' src='https://avatars.githubusercontent.com/u/7759556?v=4' />
<p class='mt-8 text-white opacity-75'>
Meet other <a class='underline' href='/docs/contributors/index.html'>xbar contributors</a>.
</p>
</div>
<div class='pb-2 mb-4 text-white'>
<h1 class='hidden md:block text-3xl'>
Sinkerine—<span class='text-white opacity-50'>@15cm</span>
</h1>
<div class='md:hidden flex items-end space-x-4'>
<img class='md:hidden align-bottom inline max-h-sm rounded-xl w-24 h-24' src='https://avatars.githubusercontent.com/u/7759556?v=4' />
<div class='flex flex-col'>
<div class='flex-grow'></div>
<h1 class='text-3xl'>
Sinkerine—<span class='text-white opacity-50'>@15cm</span>
</h1>
</div>
</div>
<p class='text-xl py-4 max-w-md'>
Live & Sink
</p>
<p class='p-4'>
<a
class='text-sm text-gray-800 bg-white hover:bg-gray-100 active:text-black px-4 py-2 rounded border border-gray-300'
target='github'
href='https://github.com/15cm'
style='text-decoration:none;'
>Visit @15cm on GitHub</a>
</p>
<div class='flex space-x-4 rounded-lg mt-8 py-8 p-8 md:px-16 bg-black bg-opacity-25'>
<div class='w-24 h-24 overflow-hidden'>
<a href='/docs/plugins/Network/aria2.3s.py.html'>
<img
src='https://raw.githubusercontent.com/15cm/bitbar-plugin/master/aria2/screenshot.png'
onerror='this.onerror=null;this.src="/public/img/xbar-2048.png";'
>
</a>
</div>
<div class='flex-grow'>
<p>
<a
class='hover:underline'
href='/docs/plugins/Network/aria2.3s.py.html'
><strong class='text-xl'>Aria2</strong></a>
</p>
<p class='max-w-md'>
Monitor Aria2 Tasks
</p>
<p class='mt-4'>
<a class='flex space-x-2 items-center' href='/docs/contributors/15cm.html'>
<span class='flex-grow text-right'>
<strong>Sinkerine</strong>
(@15cm)
</span>
<img class='w-10 h-10 rounded-full inline' src='https://avatars.githubusercontent.com/u/7759556?v=4'>
</a>
</p>
</div>
</div>
</div>
</div>
</div>
<footer class='container mx-auto text-white text-lg opacity-75 mt-8'>
<div class='text-center p-16'>
<p>
<div>
<a target='github' class='underline hover:text-white' href='https://github.com/matryer/xbar'>GitHub project</a>
•
<a target='github' class='underline hover:text-white' href='https://github.com/matryer/xbar#writing-plugins'>Writing plugins guide</a>
</div>
<div class='mt-8'>
Copyright ©2021 Mat Ryer + contributors • <a target='twitter' class='underline hover:text-white' href='https://twitter.com/matryer'>@matryer</a>
</div>
<div class='opacity-50 mt-2'>
Last updated on 08 Mar 21 15:22 GMT
</div>
</p>
</div>
</footer>
</body>
</html>
|
src/success.html
|
lc8882972/webpack
|
<!DOCTYPE html>
<html lang="zh-cn">
<head>
<title>有品位支付</title>
<meta charset="UTF-8">
<meta name="format-detection" content="telephone=no" />
<script>
! function(a, b) {
function c() {
var b = f.getBoundingClientRect().width;
b / i > 540 && (b = 540 * i);
var c = b / 10;
f.style.fontSize = c + "px", k.rem = a.rem = c
}
var d, e = a.document,
f = e.documentElement,
g = e.querySelector('meta[name="viewport"]'),
h = e.querySelector('meta[name="flexible"]'),
i = 0,
j = 0,
k = b.flexible || (b.flexible = {});
if (g) {
console.warn("将根据已有的meta标签来设置缩放比例");
var l = g.getAttribute("content").match(/initial\-scale=([\d\.]+)/);
l && (j = parseFloat(l[1]), i = parseInt(1 / j))
} else if (h) {
var m = h.getAttribute("content");
if (m) {
var n = m.match(/initial\-dpr=([\d\.]+)/),
o = m.match(/maximum\-dpr=([\d\.]+)/);
n && (i = parseFloat(n[1]), j = parseFloat((1 / i).toFixed(2))), o && (i = parseFloat(o[1]), j = parseFloat((1 / i).toFixed(2)))
}
}
if (!i && !j) {
var p = (a.navigator.appVersion.match(/android/gi), a.navigator.appVersion.match(/iphone/gi)),
q = a.devicePixelRatio;
i = p ? q >= 3 && (!i || i >= 3) ? 3 : q >= 2 && (!i || i >= 2) ? 2 : 1 : 1, j = 1 / i
}
if (f.setAttribute("data-dpr", i), !g)
if (g = e.createElement("meta"), g.setAttribute("name", "viewport"), g.setAttribute("content", "initial-scale=" + j + ", maximum-scale=" + j + ", minimum-scale=" + j + ", user-scalable=no"), f.firstElementChild) f.firstElementChild.appendChild(g);
else {
var r = e.createElement("div");
r.appendChild(g), e.write(r.innerHTML)
}
a.addEventListener("resize", function() {
clearTimeout(d), d = setTimeout(c, 300)
}, !1), a.addEventListener("pageshow", function(a) {
a.persisted && (clearTimeout(d), d = setTimeout(c, 300))
}, !1), "complete" === e.readyState ? e.body.style.fontSize = 12 * i + "px" : e.addEventListener("DOMContentLoaded", function() {
e.body.style.fontSize = 12 * i + "px"
}, !1), c(), k.dpr = a.dpr = i, k.refreshRem = c, k.rem2px = function(a) {
var b = parseFloat(a) * this.rem;
return "string" == typeof a && a.match(/rem$/) && (b += "px"), b
}, k.px2rem = function(a) {
var b = parseFloat(a) / this.rem;
return "string" == typeof a && a.match(/px$/) && (b += "rem"), b
}
}(window, window.lib || (window.lib = {}));
</script>
<style>
html {
color: #000;
background: #fff;
overflow-y: scroll;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
}
html * {
outline: none;
-webkit-text-size-adjust: none;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
html,
body {
font-family: sans-serif;
}
/* 内外边距通常让各个浏览器样式的表现位置不同 */
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td,
hr,
button,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
margin: 0;
padding: 0;
}
input,
select,
textarea {
font-size: 100%;
}
/* 去掉各 Table cell 的边距并让其边重合 */
table {
border-collapse: collapse;
border-spacing: 0;
}
/* 去除默认边框 */
fieldset,
img {
border: 0;
}
/* 去掉 firefox 下此元素的边框 */
abbr,
acronym {
border: 0;
font-variant: normal;
}
/* 一致的 del 样式 */
del {
text-decoration: line-through;
}
address,
caption,
cite,
code,
dfn,
em,
th,
var {
font-style: normal;
font-weight: 500;
}
/* 去掉列表前的标识, li 会继承 */
ol,
ul {
list-style: none;
}
/* 对齐是排版最重要的因素, 别让什么都居中 */
caption,
th {
text-align: left;
}
/* 来自 yahoo, 让标题都自定义, 适应多个系统应用 */
h1,
h2,
h3,
h4,
h5,
h6 {
font-size: 100%;
font-weight: 500;
}
q:before,
q:after {
content: '';
}
/* 统一上标和下标 */
sub,
sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline;
}
sup {
top: -0.5em;
}
sub {
bottom: -0.25em;
}
/* 正常链接 未访问 */
/* 鼠标悬停 */
a:hover {
text-decoration: underline;
}
/* 默认不显示下划线,保持页面简洁 */
ins,
a {
text-decoration: none;
}
</style>
</head>
<body>
<div class="container">
<img class="img-success" src="assets/icon-success.png">
<p class="success-text">恭喜您购买成功!</p>
<img class="qrcode" src="assets/qrcode.png" />
<p class="qrcode-prompt">长按二维码激活</p>
<p class="service">客服电话:<a href="tel:400-648-9155">400-648-9155</a></p>
</div>
</body>
</html>
|
clean/Linux-x86_64-4.05.0-2.0.6/released/8.7.1+2/qcert/1.4.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>qcert: 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 / qcert - 1.4.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
qcert
<small>
1.4.0
<span class="label label-info">Not compatible</span>
</small>
</h1>
<p><em><script>document.write(moment("2020-08-02 19:48:15 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2020-08-02 19:48:15 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-num base Num library distributed with the OCaml compiler
base-threads base
base-unix base
camlp5 7.12 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-m4 1 Virtual package relying on m4
coq 8.7.1+2 Formal proof management system.
num 0 The Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.05.0 The OCaml compiler (virtual package)
ocaml-base-compiler 4.05.0 Official 4.05.0 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.8.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "Jerome Simeon <jeromesimeon@me.com>"
homepage: "https://querycert.github.io"
bug-reports: "https://github.com/querycert/qcert/issues"
dev-repo: "git+https://github.com/querycert/qcert"
license: "Apache-2.0"
build: [
[make "-j%{jobs}%" "qcert-coq"]
]
install: [
[make "install-coq"]
]
depends: [
"ocaml"
"coq" {>= "8.8.2" & < "8.9~"}
"coq-flocq" {>= "2.6.1" & < "3.0~"}
"coq-jsast" {>= "1.0.8"}
]
tags: [ "keyword:databases" "keyword:queries" "keyword:relational" "keyword:compiler" "date:2019-05-29" "logpath:Qcert" ]
authors: [ "Josh Auerbach <>" "Martin Hirzel <>" "Louis Mandel <>" "Avi Shinnar <>" "Jerome Simeon <>" ]
synopsis: "Verified compiler for data-centric languages"
description: """
This is the Coq library for Q*cert, a platform for implementing and verifying query compilers. It includes abstract syntax and semantics for several source query languages (OQL, SQL), for intermediate database representations (nested relational algebra and calculus), and correctness proofs for part of the compilation pipeline to JavaScript and Java.
"""
url {
src: "https://github.com/querycert/qcert/archive/v1.4.0.tar.gz"
checksum: "bca7708b6c455b0a1c1049cbf6c7473a"
}
</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-qcert.1.4.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-qcert -> coq >= 8.8.2
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-qcert.1.4.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>
|
clean/Linux-x86_64-4.09.1-2.0.6/released/8.7.1+2/tactician/1.0~beta1+8.13.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>tactician: 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 / tactician - 1.0~beta1+8.13</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
tactician
<small>
1.0~beta1+8.13
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2021-11-14 19:55:30 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-11-14 19:55:30 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+2 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"
name: "coq-tactician"
synopsis: "Tactician: A Seamless, Interactive Tactic Learner and Prover for Coq"
description: """
Tactician is a tactic learner and prover for the Coq Proof Assistant.
The system will help users make tactical proof decisions while they retain
control over the general proof strategy. To this end, Tactician will learn
from previously written tactic scripts, and either gives the user suggestions
about the next tactic to be executed or altogether takes over the burden of
proof synthesis. Tactician's goal is to provide the user with a seamless,
interactive, and intuitive experience together with strong, adaptive proof
automation.
"""
homepage: "https://coq-tactician.github.io"
dev-repo: "git+https://github.com/coq-tactician/coq-tactician"
bug-reports: "https://github.com/coq-tactician/coq-tactician/issues"
maintainer: "Lasse Blaauwbroek <lasse@blaauwbroek.eu>"
authors: "Lasse Blaauwbroek <lasse@blaauwbroek.eu"
depends: [
"ocaml" {>= "4.08"}
"dune" {>= "2.5"}
"opam-client" {>= "2.1.0~beta2"}
"cmdliner"
"coq" {>= "8.13" & < "8.14~"}
"coq-tactician-dummy"
]
depexts: ["git"]
build: [
["dune" "build" "--release" "-j" jobs]
]
post-messages: ["
--- Tactician was successfully installed ---
In order to enable Tactician, you should run
tactician enable
" {success}]
url {
src: "https://github.com/coq-tactician/coq-tactician/archive/1.0-beta1-8.13.tar.gz"
}
tags: [
"keyword:tactic-learning"
"keyword:machine-learning"
"keyword:automation"
"keyword:proof-synthesis"
"category:Miscellaneous/Coq Extensions"
"logpath:Tactician"
]
</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-tactician.1.0~beta1+8.13 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-tactician -> coq >= 8.13
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-tactician.1.0~beta1+8.13</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.07.1-2.0.6/released/8.14.0/error-handlers/1.1.1.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>error-handlers: 19 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.14.0 / error-handlers - 1.1.1</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
error-handlers
<small>
1.1.1
<span class="label label-success">19 s 🏆</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-01-01 12:01:13 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-01-01 12:01:13 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
conf-gmp 3 Virtual package relying on a GMP lib system installation
coq 8.14.0 Formal proof management system
dune 2.9.1 Fast, portable, and opinionated build system
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
ocaml-secondary-compiler 4.08.1-1 OCaml 4.08.1 Secondary Switch Compiler
ocamlfind 1.9.1 A library manager for OCaml
ocamlfind-secondary 1.9.1 Adds support for ocaml-secondary-compiler to ocamlfind
zarith 1.12 Implements arithmetic and logical operations over arbitrary-precision integers
# opam file:
opam-version: "2.0"
maintainer: "dev@clarus.me"
homepage: "https://github.com/clarus/coq-error-handlers"
dev-repo: "git+https://github.com/clarus/coq-error-handlers.git"
bug-reports: "https://github.com/clarus/coq-error-handlers/issues"
authors: ["Guillaume Claret"]
license: "MIT"
build: [
["./configure.sh"]
[make "-j%{jobs}%"]
]
install: [
[make "install"]
]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/ErrorHandlers"]
depends: [
"ocaml"
"coq" {>= "8.4pl4"}
]
synopsis: "Simple and robust error handling functions"
flags: light-uninstall
url {
src: "https://github.com/clarus/coq-error-handlers/archive/1.1.1.tar.gz"
checksum: "md5=1457d5cb1fce4f9a8b2b6de2dec4b8c6"
}
</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-error-handlers.1.1.1 coq.8.14.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-error-handlers.1.1.1 coq.8.14.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>12 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam list; echo; ulimit -Sv 16000000; timeout 4h opam install -y -v coq-error-handlers.1.1.1 coq.8.14.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>19 s</dd>
</dl>
<h2>Installation size</h2>
<p>Total: 9 K</p>
<ul>
<li>5 K <code>../ocaml-base-compiler.4.07.1/lib/coq/user-contrib/ErrorHandlers/All.vo</code></li>
<li>3 K <code>../ocaml-base-compiler.4.07.1/lib/coq/user-contrib/ErrorHandlers/All.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.07.1/lib/coq/user-contrib/ErrorHandlers/All.v</code></li>
</ul>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq-error-handlers.1.1.1</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>
|
docs/xref/com/namics/commons/random/generator/basic/DateTimeGenerator.html
|
namics/java-random
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head><meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<title>DateTimeGenerator xref</title>
<link type="text/css" rel="stylesheet" href="../../../../../../stylesheet.css" />
</head>
<body>
<div id="overview"><a href="../../../../../../../apidocs/com/namics/commons/random/generator/basic/DateTimeGenerator.html">View Javadoc</a></div><pre>
<a class="jxr_linenumber" name="L1" href="#L1">1</a> <em class="jxr_comment">/*</em>
<a class="jxr_linenumber" name="L2" href="#L2">2</a> <em class="jxr_comment"> * Copyright 2000-2014 Namics AG. All rights reserved.</em>
<a class="jxr_linenumber" name="L3" href="#L3">3</a> <em class="jxr_comment"> */</em>
<a class="jxr_linenumber" name="L4" href="#L4">4</a>
<a class="jxr_linenumber" name="L5" href="#L5">5</a> <strong class="jxr_keyword">package</strong> com.namics.commons.random.generator.basic;
<a class="jxr_linenumber" name="L6" href="#L6">6</a>
<a class="jxr_linenumber" name="L7" href="#L7">7</a> <strong class="jxr_keyword">import</strong> com.namics.commons.random.generator.RandomGenerator;
<a class="jxr_linenumber" name="L8" href="#L8">8</a> <strong class="jxr_keyword">import</strong> org.apache.commons.lang.math.RandomUtils;
<a class="jxr_linenumber" name="L9" href="#L9">9</a> <strong class="jxr_keyword">import</strong> org.joda.time.DateTime;
<a class="jxr_linenumber" name="L10" href="#L10">10</a> <strong class="jxr_keyword">import</strong> org.joda.time.Years;
<a class="jxr_linenumber" name="L11" href="#L11">11</a>
<a class="jxr_linenumber" name="L12" href="#L12">12</a> <strong class="jxr_keyword">import</strong> java.util.Arrays;
<a class="jxr_linenumber" name="L13" href="#L13">13</a>
<a class="jxr_linenumber" name="L14" href="#L14">14</a> <em class="jxr_javadoccomment">/**</em>
<a class="jxr_linenumber" name="L15" href="#L15">15</a> <em class="jxr_javadoccomment"> * IntegerGenerator.</em>
<a class="jxr_linenumber" name="L16" href="#L16">16</a> <em class="jxr_javadoccomment"> *</em>
<a class="jxr_linenumber" name="L17" href="#L17">17</a> <em class="jxr_javadoccomment"> * @author aschaefer</em>
<a class="jxr_linenumber" name="L18" href="#L18">18</a> <em class="jxr_javadoccomment"> * @since 20.02.14 16:58</em>
<a class="jxr_linenumber" name="L19" href="#L19">19</a> <em class="jxr_javadoccomment"> */</em>
<a class="jxr_linenumber" name="L20" href="#L20">20</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../../../com/namics/commons/random/generator/basic/DateTimeGenerator.html">DateTimeGenerator</a> <strong class="jxr_keyword">implements</strong> RandomGenerator<DateTime> {
<a class="jxr_linenumber" name="L21" href="#L21">21</a>
<a class="jxr_linenumber" name="L22" href="#L22">22</a> @Override
<a class="jxr_linenumber" name="L23" href="#L23">23</a> <strong class="jxr_keyword">public</strong> DateTime random() {
<a class="jxr_linenumber" name="L24" href="#L24">24</a> DateTime now = DateTime.now();
<a class="jxr_linenumber" name="L25" href="#L25">25</a> <strong class="jxr_keyword">long</strong> min = now.minus(Years.TWO).getMillis();
<a class="jxr_linenumber" name="L26" href="#L26">26</a> <strong class="jxr_keyword">long</strong> max = now.plus(Years.TWO).getMillis();
<a class="jxr_linenumber" name="L27" href="#L27">27</a> <strong class="jxr_keyword">double</strong> random = RandomUtils.nextDouble() * (max - min) + min;
<a class="jxr_linenumber" name="L28" href="#L28">28</a> <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">new</strong> DateTime(Double.valueOf(random).longValue());
<a class="jxr_linenumber" name="L29" href="#L29">29</a> }
<a class="jxr_linenumber" name="L30" href="#L30">30</a>
<a class="jxr_linenumber" name="L31" href="#L31">31</a> @Override
<a class="jxr_linenumber" name="L32" href="#L32">32</a> <strong class="jxr_keyword">public</strong> Iterable<Class<DateTime>> supportedTypes() {
<a class="jxr_linenumber" name="L33" href="#L33">33</a> <strong class="jxr_keyword">return</strong> Arrays.asList(DateTime.<strong class="jxr_keyword">class</strong>);
<a class="jxr_linenumber" name="L34" href="#L34">34</a> }
<a class="jxr_linenumber" name="L35" href="#L35">35</a>
<a class="jxr_linenumber" name="L36" href="#L36">36</a> }
</pre>
<hr/>
<div id="footer">Copyright © 2021. All rights reserved.</div>
</body>
</html>
|
archives/2018/06/index.html
|
NBR-hugh/NBR-hugh.github.io
|
<!DOCTYPE html>
<html class="theme-next muse 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" />
<link href="/lib/fancybox/source/jquery.fancybox.css?v=2.1.5" rel="stylesheet" type="text/css" />
<link href="/lib/font-awesome/css/font-awesome.min.css?v=4.6.2" rel="stylesheet" type="text/css" />
<link href="/css/main.css?v=5.1.2" rel="stylesheet" type="text/css" />
<meta name="keywords" content="Hexo, NexT" />
<link rel="alternate" href="/atom.xml" title="NBR's Blog" type="application/atom+xml" />
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico?v=5.1.2" />
<meta name="description" content="春风动百草,兰蕙生我篱.">
<meta property="og:type" content="website">
<meta property="og:title" content="NBR's Blog">
<meta property="og:url" content="http://yoursite.com/archives/2018/06/index.html">
<meta property="og:site_name" content="NBR's Blog">
<meta property="og:description" content="春风动百草,兰蕙生我篱.">
<meta property="og:locale" content="zh-Hans">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="NBR's Blog">
<meta name="twitter:description" content="春风动百草,兰蕙生我篱.">
<script type="text/javascript" id="hexo.configurations">
var NexT = window.NexT || {};
var CONFIG = {
root: '/',
scheme: 'Muse',
sidebar: {"position":"left","display":"post","offset":12,"offset_float":12,"b2t":false,"scrollpercent":false,"onmobile":false},
fancybox: true,
tabs: true,
motion: true,
duoshuo: {
userId: '0',
author: '博主'
},
algolia: {
applicationID: '6GNR6OS3T8',
apiKey: 'ae78a0a9fd32bcbbca3c3e457701cbab',
indexName: 'NBRhugh',
hits: {"per_page":10},
labels: {"input_placeholder":"Search for Posts","hits_empty":"We didn't find any results for the search: ${query}","hits_stats":"${hits} results found in ${time} ms"}
}
};
</script>
<link rel="canonical" href="http://yoursite.com/archives/2018/06/"/>
<title>归档 | NBR's Blog</title>
<script type="text/javascript">
var _hmt = _hmt || [];
(function() {
var hm = document.createElement("script");
hm.src = "https://hm.baidu.com/hm.js?41a1ddcf79e1adefc6d3cdc69acbbcb4";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
</script>
</head>
<body itemscope itemtype="http://schema.org/WebPage" lang="zh-Hans">
<div class="container sidebar-position-left page-archive ">
<div class="headband"></div>
<header id="header" class="header" itemscope itemtype="http://schema.org/WPHeader">
<div class="header-inner"><div class="site-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">NBR's Blog</span>
<span class="logo-line-after"><i></i></span>
</a>
</div>
<p class="site-subtitle">Be Water</p>
</div>
<div class="site-nav-toggle">
<button>
<span class="btn-bar"></span>
<span class="btn-bar"></span>
<span class="btn-bar"></span>
</button>
</div>
</div>
<nav class="site-nav">
<ul id="menu" class="menu">
<li class="menu-item menu-item-home">
<a href="/" rel="section">
<i class="menu-item-icon fa fa-fw fa-home"></i> <br />
首页
</a>
</li>
<li class="menu-item menu-item-categories">
<a href="/categories/" rel="section">
<i class="menu-item-icon fa fa-fw fa-th"></i> <br />
分类
</a>
</li>
<li class="menu-item menu-item-about">
<a href="/about/" rel="section">
<i class="menu-item-icon fa fa-fw fa-user"></i> <br />
关于
</a>
</li>
<li class="menu-item menu-item-archives">
<a href="/archives/" rel="section">
<i class="menu-item-icon fa fa-fw fa-archive"></i> <br />
归档
</a>
</li>
<li class="menu-item menu-item-tags">
<a href="/tags/" rel="section">
<i class="menu-item-icon fa fa-fw fa-tags"></i> <br />
标签
</a>
</li>
<li class="menu-item menu-item-search">
<a href="javascript:;" class="popup-trigger">
<i class="menu-item-icon fa fa-search fa-fw"></i> <br />
搜索
</a>
</li>
</ul>
<div class="site-search">
<div class="popup search-popup local-search-popup">
<div class="local-search-header clearfix">
<span class="search-icon">
<i class="fa fa-search"></i>
</span>
<span class="popup-btn-close">
<i class="fa fa-times-circle"></i>
</span>
<div class="local-search-input-wrapper">
<input autocomplete="off"
placeholder="搜索..." spellcheck="false"
type="text" id="local-search-input">
</div>
</div>
<div id="local-search-result"></div>
</div>
</div>
</nav>
</div>
</header>
<main id="main" class="main">
<div class="main-inner">
<div class="content-wrap">
<div id="content" class="content">
<div class="post-block archive">
<div id="posts" class="posts-collapse">
<span class="archive-move-on"></span>
<span class="archive-page-counter">
OK! 目前共计 38 篇日志。 继续努力。
</span>
<div class="collection-title">
<h2 class="archive-year motion-element" id="archive-year-2018">2018</h2>
</div>
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<header class="post-header">
<h2 class="post-title">
<a class="post-title-link" href="/2018-06-24-perfectionism/" itemprop="url">
<span itemprop="name">完美主义</span>
</a>
</h2>
<div class="post-meta">
<time class="post-time" itemprop="dateCreated"
datetime="2018-06-24T17:29:56+08:00"
content="2018-06-24" >
06-24
</time>
</div>
</header>
</article>
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<header class="post-header">
<h2 class="post-title">
<a class="post-title-link" href="/2018-06-18-RedirectCareer/" itemprop="url">
<span itemprop="name">转行</span>
</a>
</h2>
<div class="post-meta">
<time class="post-time" itemprop="dateCreated"
datetime="2018-06-18T17:11:37+08:00"
content="2018-06-18" >
06-18
</time>
</div>
</header>
</article>
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<header class="post-header">
<h2 class="post-title">
<a class="post-title-link" href="/2018-06-18-Impower/" itemprop="url">
<span itemprop="name">授权</span>
</a>
</h2>
<div class="post-meta">
<time class="post-time" itemprop="dateCreated"
datetime="2018-06-18T17:08:32+08:00"
content="2018-06-18" >
06-18
</time>
</div>
</header>
</article>
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<header class="post-header">
<h2 class="post-title">
<a class="post-title-link" href="/2018-06-18-OverInfo/" itemprop="url">
<span itemprop="name">信息过载</span>
</a>
</h2>
<div class="post-meta">
<time class="post-time" itemprop="dateCreated"
datetime="2018-06-18T17:00:24+08:00"
content="2018-06-18" >
06-18
</time>
</div>
</header>
</article>
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<header class="post-header">
<h2 class="post-title">
<a class="post-title-link" href="/2018-06-11-Stuck/" itemprop="url">
<span itemprop="name">卡顿</span>
</a>
</h2>
<div class="post-meta">
<time class="post-time" itemprop="dateCreated"
datetime="2018-06-11T15:22:22+08:00"
content="2018-06-11" >
06-11
</time>
</div>
</header>
</article>
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<header class="post-header">
<h2 class="post-title">
<a class="post-title-link" href="/2018-06-11-SocialImage/" itemprop="url">
<span itemprop="name">社会形象</span>
</a>
</h2>
<div class="post-meta">
<time class="post-time" itemprop="dateCreated"
datetime="2018-06-11T08:04:56+08:00"
content="2018-06-11" >
06-11
</time>
</div>
</header>
</article>
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<header class="post-header">
<h2 class="post-title">
<a class="post-title-link" href="/2018-06-04-LearnedHelplessness/" itemprop="url">
<span itemprop="name">习得性无助</span>
</a>
</h2>
<div class="post-meta">
<time class="post-time" itemprop="dateCreated"
datetime="2018-06-04T16:55:00+08:00"
content="2018-06-04" >
06-04
</time>
</div>
</header>
</article>
</div>
</div>
</div>
</div>
<div class="sidebar-toggle">
<div class="sidebar-toggle-line-wrap">
<span class="sidebar-toggle-line sidebar-toggle-line-first"></span>
<span class="sidebar-toggle-line sidebar-toggle-line-middle"></span>
<span class="sidebar-toggle-line sidebar-toggle-line-last"></span>
</div>
</div>
<aside id="sidebar" class="sidebar">
<div class="sidebar-inner">
<section class="site-overview sidebar-panel sidebar-panel-active">
<div class="site-author motion-element" itemprop="author" itemscope itemtype="http://schema.org/Person">
<img class="site-author-image" itemprop="image"
src="/images/avatar.jpg"
alt="NBR-hugh" />
<p class="site-author-name" itemprop="name">NBR-hugh</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">38</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">3</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">20</span>
<span class="site-state-item-name">标签</span>
</a>
</div>
</nav>
<div class="feed-link motion-element">
<a href="/atom.xml" rel="alternate">
<i class="fa fa-rss"></i>
RSS
</a>
</div>
<div class="links-of-author motion-element">
<span class="links-of-author-item">
<a href="https://github.com/NBR-hugh" target="_blank" title="GitHub">
<i class="fa fa-fw fa-github"></i>
GitHub
</a>
</span>
<span class="links-of-author-item">
<a href="https://twitter.com/9MKmavZvAAyleqm" target="_blank" title="Twitter">
<i class="fa fa-fw fa-twitter"></i>
Twitter
</a>
</span>
<span class="links-of-author-item">
<a href="http://weibo.com/u/2290137932?refer_flag=1005055010_" target="_blank" title="微博">
<i class="fa fa-fw fa-globe"></i>
微博
</a>
</span>
<span class="links-of-author-item">
<a href="https://www.douban.com/people/nbrnb/" target="_blank" title="豆瓣">
<i class="fa fa-fw fa-globe"></i>
豆瓣
</a>
</span>
<span class="links-of-author-item">
<a href="http://www.zhihu.com/people/ni-bi-rong" target="_blank" title="知乎">
<i class="fa fa-fw fa-globe"></i>
知乎
</a>
</span>
</div>
<div class="cc-license motion-element" itemprop="license">
<a href="https://creativecommons.org/licenses/by/4.0/" class="cc-opacity" target="_blank">
<img src="/images/cc-by.svg" alt="Creative Commons" />
</a>
</div>
</section>
</div>
</aside>
</div>
</main>
<footer id="footer" class="footer">
<div class="footer-inner">
<div class="copyright" >
© 2016 -
<span itemprop="copyrightYear">2019</span>
<span class="with-love">
<i class="fa fa-heart"></i>
</span>
<span class="author" itemprop="copyrightHolder">NBR-hugh</span>
</div>
<div class="powered-by">
由 <a class="theme-link" href="https://hexo.io">Hexo</a> 强力驱动
</div>
<div class="theme-info">
主题 -
<a class="theme-link" href="https://github.com/iissnan/hexo-theme-next">
NexT.Muse
</a>
</div>
<div class="busuanzi-count">
<script async src="https://dn-lbstatics.qbox.me/busuanzi/2.3/busuanzi.pure.mini.js"></script>
<span class="site-uv">
<i class="fa fa-user"></i> 总访客
<span class="busuanzi-value" id="busuanzi_value_site_uv"></span>
人次
</span>
<span class="site-pv">
<i class="fa fa-eye"></i> 总访问量
<span class="busuanzi-value" id="busuanzi_value_site_pv"></span>
次
</span>
</div>
</div>
</footer>
<div class="back-to-top">
<i class="fa fa-arrow-up"></i>
</div>
</div>
<script type="text/javascript">
if (Object.prototype.toString.call(window.Promise) !== '[object Function]') {
window.Promise = null;
}
</script>
<script type="text/javascript" src="/lib/jquery/index.js?v=2.1.3"></script>
<script type="text/javascript" src="/lib/fastclick/lib/fastclick.min.js?v=1.0.6"></script>
<script type="text/javascript" src="/lib/jquery_lazyload/jquery.lazyload.js?v=1.9.7"></script>
<script type="text/javascript" src="/lib/velocity/velocity.min.js?v=1.2.1"></script>
<script type="text/javascript" src="/lib/velocity/velocity.ui.min.js?v=1.2.1"></script>
<script type="text/javascript" src="/lib/fancybox/source/jquery.fancybox.pack.js?v=2.1.5"></script>
<script type="text/javascript" src="/js/src/utils.js?v=5.1.2"></script>
<script type="text/javascript" src="/js/src/motion.js?v=5.1.2"></script>
<script type="text/javascript" id="motion.page.archive">
$('.archive-year').velocity('transition.slideLeftIn');
</script>
<script type="text/javascript" src="/js/src/bootstrap.js?v=5.1.2"></script>
<script id="dsq-count-scr" src="https://https-nbr-hugh-github-io.disqus.com/count.js" async></script>
<script type="text/javascript">
// Popup Window;
var isfetched = false;
var isXml = true;
// Search DB path;
var search_path = "search.xml";
if (search_path.length === 0) {
search_path = "search.xml";
} else if (/json$/i.test(search_path)) {
isXml = false;
}
var path = "/" + search_path;
// monitor main search box;
var onPopupClose = function (e) {
$('.popup').hide();
$('#local-search-input').val('');
$('.search-result-list').remove();
$('#no-result').remove();
$(".local-search-pop-overlay").remove();
$('body').css('overflow', '');
}
function proceedsearch() {
$("body")
.append('<div class="search-popup-overlay local-search-pop-overlay"></div>')
.css('overflow', 'hidden');
$('.search-popup-overlay').click(onPopupClose);
$('.popup').toggle();
var $localSearchInput = $('#local-search-input');
$localSearchInput.attr("autocapitalize", "none");
$localSearchInput.attr("autocorrect", "off");
$localSearchInput.focus();
}
// search function;
var searchFunc = function(path, search_id, content_id) {
'use strict';
// start loading animation
$("body")
.append('<div class="search-popup-overlay local-search-pop-overlay">' +
'<div id="search-loading-icon">' +
'<i class="fa fa-spinner fa-pulse fa-5x fa-fw"></i>' +
'</div>' +
'</div>')
.css('overflow', 'hidden');
$("#search-loading-icon").css('margin', '20% auto 0 auto').css('text-align', 'center');
$.ajax({
url: path,
dataType: isXml ? "xml" : "json",
async: true,
success: function(res) {
// get the contents from search data
isfetched = true;
$('.popup').detach().appendTo('.header-inner');
var datas = isXml ? $("entry", res).map(function() {
return {
title: $("title", this).text(),
content: $("content",this).text(),
url: $("url" , this).text()
};
}).get() : res;
var input = document.getElementById(search_id);
var resultContent = document.getElementById(content_id);
var inputEventFunction = function() {
var searchText = input.value.trim().toLowerCase();
var keywords = searchText.split(/[\s\-]+/);
if (keywords.length > 1) {
keywords.push(searchText);
}
var resultItems = [];
if (searchText.length > 0) {
// perform local searching
datas.forEach(function(data) {
var isMatch = false;
var hitCount = 0;
var searchTextCount = 0;
var title = data.title.trim();
var titleInLowerCase = title.toLowerCase();
var content = data.content.trim().replace(/<[^>]+>/g,"");
var contentInLowerCase = content.toLowerCase();
var articleUrl = decodeURIComponent(data.url);
var indexOfTitle = [];
var indexOfContent = [];
// only match articles with not empty titles
if(title != '') {
keywords.forEach(function(keyword) {
function getIndexByWord(word, text, caseSensitive) {
var wordLen = word.length;
if (wordLen === 0) {
return [];
}
var startPosition = 0, position = [], index = [];
if (!caseSensitive) {
text = text.toLowerCase();
word = word.toLowerCase();
}
while ((position = text.indexOf(word, startPosition)) > -1) {
index.push({position: position, word: word});
startPosition = position + wordLen;
}
return index;
}
indexOfTitle = indexOfTitle.concat(getIndexByWord(keyword, titleInLowerCase, false));
indexOfContent = indexOfContent.concat(getIndexByWord(keyword, contentInLowerCase, false));
});
if (indexOfTitle.length > 0 || indexOfContent.length > 0) {
isMatch = true;
hitCount = indexOfTitle.length + indexOfContent.length;
}
}
// show search results
if (isMatch) {
// sort index by position of keyword
[indexOfTitle, indexOfContent].forEach(function (index) {
index.sort(function (itemLeft, itemRight) {
if (itemRight.position !== itemLeft.position) {
return itemRight.position - itemLeft.position;
} else {
return itemLeft.word.length - itemRight.word.length;
}
});
});
// merge hits into slices
function mergeIntoSlice(text, start, end, index) {
var item = index[index.length - 1];
var position = item.position;
var word = item.word;
var hits = [];
var searchTextCountInSlice = 0;
while (position + word.length <= end && index.length != 0) {
if (word === searchText) {
searchTextCountInSlice++;
}
hits.push({position: position, length: word.length});
var wordEnd = position + word.length;
// move to next position of hit
index.pop();
while (index.length != 0) {
item = index[index.length - 1];
position = item.position;
word = item.word;
if (wordEnd > position) {
index.pop();
} else {
break;
}
}
}
searchTextCount += searchTextCountInSlice;
return {
hits: hits,
start: start,
end: end,
searchTextCount: searchTextCountInSlice
};
}
var slicesOfTitle = [];
if (indexOfTitle.length != 0) {
slicesOfTitle.push(mergeIntoSlice(title, 0, title.length, indexOfTitle));
}
var slicesOfContent = [];
while (indexOfContent.length != 0) {
var item = indexOfContent[indexOfContent.length - 1];
var position = item.position;
var word = item.word;
// cut out 100 characters
var start = position - 20;
var end = position + 80;
if(start < 0){
start = 0;
}
if (end < position + word.length) {
end = position + word.length;
}
if(end > content.length){
end = content.length;
}
slicesOfContent.push(mergeIntoSlice(content, start, end, indexOfContent));
}
// sort slices in content by search text's count and hits' count
slicesOfContent.sort(function (sliceLeft, sliceRight) {
if (sliceLeft.searchTextCount !== sliceRight.searchTextCount) {
return sliceRight.searchTextCount - sliceLeft.searchTextCount;
} else if (sliceLeft.hits.length !== sliceRight.hits.length) {
return sliceRight.hits.length - sliceLeft.hits.length;
} else {
return sliceLeft.start - sliceRight.start;
}
});
// select top N slices in content
var upperBound = parseInt('1');
if (upperBound >= 0) {
slicesOfContent = slicesOfContent.slice(0, upperBound);
}
// highlight title and content
function highlightKeyword(text, slice) {
var result = '';
var prevEnd = slice.start;
slice.hits.forEach(function (hit) {
result += text.substring(prevEnd, hit.position);
var end = hit.position + hit.length;
result += '<b class="search-keyword">' + text.substring(hit.position, end) + '</b>';
prevEnd = end;
});
result += text.substring(prevEnd, slice.end);
return result;
}
var resultItem = '';
if (slicesOfTitle.length != 0) {
resultItem += "<li><a href='" + articleUrl + "' class='search-result-title'>" + highlightKeyword(title, slicesOfTitle[0]) + "</a>";
} else {
resultItem += "<li><a href='" + articleUrl + "' class='search-result-title'>" + title + "</a>";
}
slicesOfContent.forEach(function (slice) {
resultItem += "<a href='" + articleUrl + "'>" +
"<p class=\"search-result\">" + highlightKeyword(content, slice) +
"...</p>" + "</a>";
});
resultItem += "</li>";
resultItems.push({
item: resultItem,
searchTextCount: searchTextCount,
hitCount: hitCount,
id: resultItems.length
});
}
})
};
if (keywords.length === 1 && keywords[0] === "") {
resultContent.innerHTML = '<div id="no-result"><i class="fa fa-search fa-5x" /></div>'
} else if (resultItems.length === 0) {
resultContent.innerHTML = '<div id="no-result"><i class="fa fa-frown-o fa-5x" /></div>'
} else {
resultItems.sort(function (resultLeft, resultRight) {
if (resultLeft.searchTextCount !== resultRight.searchTextCount) {
return resultRight.searchTextCount - resultLeft.searchTextCount;
} else if (resultLeft.hitCount !== resultRight.hitCount) {
return resultRight.hitCount - resultLeft.hitCount;
} else {
return resultRight.id - resultLeft.id;
}
});
var searchResultList = '<ul class=\"search-result-list\">';
resultItems.forEach(function (result) {
searchResultList += result.item;
})
searchResultList += "</ul>";
resultContent.innerHTML = searchResultList;
}
}
if ('auto' === 'auto') {
input.addEventListener('input', inputEventFunction);
} else {
$('.search-icon').click(inputEventFunction);
input.addEventListener('keypress', function (event) {
if (event.keyCode === 13) {
inputEventFunction();
}
});
}
// remove loading animation
$(".local-search-pop-overlay").remove();
$('body').css('overflow', '');
proceedsearch();
}
});
}
// handle and trigger popup window;
$('.popup-trigger').click(function(e) {
e.stopPropagation();
if (isfetched === false) {
searchFunc(path, 'local-search-input', 'local-search-result');
} else {
proceedsearch();
};
});
$('.popup-btn-close').click(onPopupClose);
$('.popup').click(function(e){
e.stopPropagation();
});
$(document).on('keyup', function (event) {
var shouldDismissSearchPopup = event.which === 27 &&
$('.search-popup').is(':visible');
if (shouldDismissSearchPopup) {
onPopupClose();
}
});
</script>
<script src="https://cdn1.lncld.net/static/js/av-core-mini-0.6.4.js"></script>
<script>AV.initialize("DMxBlQrAc1GPVQISOv3bCQBr-gzGzoHsz", "kbUAzY19gOYz6wWaUy6mBE7B");</script>
<script>
function showTime(Counter) {
var query = new AV.Query(Counter);
var entries = [];
var $visitors = $(".leancloud_visitors");
$visitors.each(function () {
entries.push( $(this).attr("id").trim() );
});
query.containedIn('url', entries);
query.find()
.done(function (results) {
var COUNT_CONTAINER_REF = '.leancloud-visitors-count';
if (results.length === 0) {
$visitors.find(COUNT_CONTAINER_REF).text(0);
return;
}
for (var i = 0; i < results.length; i++) {
var item = results[i];
var url = item.get('url');
var time = item.get('time');
var element = document.getElementById(url);
$(element).find(COUNT_CONTAINER_REF).text(time);
}
for(var i = 0; i < entries.length; i++) {
var url = entries[i];
var element = document.getElementById(url);
var countSpan = $(element).find(COUNT_CONTAINER_REF);
if( countSpan.text() == '') {
countSpan.text(0);
}
}
})
.fail(function (object, error) {
console.log("Error: " + error.code + " " + error.message);
});
}
function addCount(Counter) {
var $visitors = $(".leancloud_visitors");
var url = $visitors.attr('id').trim();
var title = $visitors.attr('data-flag-title').trim();
var query = new AV.Query(Counter);
query.equalTo("url", url);
query.find({
success: function(results) {
if (results.length > 0) {
var counter = results[0];
counter.fetchWhenSave(true);
counter.increment("time");
counter.save(null, {
success: function(counter) {
var $element = $(document.getElementById(url));
$element.find('.leancloud-visitors-count').text(counter.get('time'));
},
error: function(counter, error) {
console.log('Failed to save Visitor num, with error message: ' + error.message);
}
});
} else {
var newcounter = new Counter();
/* Set ACL */
var acl = new AV.ACL();
acl.setPublicReadAccess(true);
acl.setPublicWriteAccess(true);
newcounter.setACL(acl);
/* End Set ACL */
newcounter.set("title", title);
newcounter.set("url", url);
newcounter.set("time", 1);
newcounter.save(null, {
success: function(newcounter) {
var $element = $(document.getElementById(url));
$element.find('.leancloud-visitors-count').text(newcounter.get('time'));
},
error: function(newcounter, error) {
console.log('Failed to create');
}
});
}
},
error: function(error) {
console.log('Error:' + error.code + " " + error.message);
}
});
}
$(function() {
var Counter = AV.Object.extend("Counter");
if ($('.leancloud_visitors').length == 1) {
addCount(Counter);
} else if ($('.post-title-link').length > 1) {
showTime(Counter);
}
});
</script>
</body>
</html>
|
v3/user-agent-detail/e5/42/e5422ed6-1509-42a7-bde1-a1fa489207e4.html
|
ThaDafinser/UserAgentParserComparison
|
<html>
<head>
<title>UCWEB/2.0 (Linux; U; Adr 4.1.1; en-US; CINK_SLIM) U2/1.0.0 UCBrowser/8.2.0.242 U2/1.0.0 Mobile</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">
UCWEB/2.0 (Linux; U; Adr 4.1.1; en-US; CINK_SLIM) U2/1.0.0 UCBrowser/8.2.0.242 U2/1.0.0 Mobile
<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>UC Browser 8.2</td><td>U2 </td><td>Android 4.1</td><td></td><td></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] => /^ucweb\/.*\(.*; u; adr 4\.1.*\) u2\/.* ucbrowser\/8\.2.* u2\/.*$/
[browser_name_pattern] => ucweb/*(*; u; adr 4.1*) u2/* ucbrowser/8.2* u2/*
[parent] => UC Browser 8.2
[comment] => UC Browser 8.2
[browser] => UC Browser
[browser_type] => Browser
[browser_bits] => 32
[browser_maker] => UC Web
[browser_modus] => unknown
[version] => 8.2
[majorver] => 8
[minorver] => 2
[platform] => Android
[platform_version] => 4.1
[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] => general Mobile Phone
[device_maker] => unknown
[device_type] => Mobile Phone
[device_pointing_method] => touchscreen
[device_code_name] => general Mobile Phone
[device_brand_name] => unknown
[renderingengine_name] => U2
[renderingengine_version] => unknown
[renderingengine_description] => a WebKit Fork by UC Web
[renderingengine_maker] => UC Web
)
</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>UCWEB 2.0</td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-6fae891b-b0d5-4415-b07d-355015c3af67">Detail</a>
<!-- Modal Structure -->
<div id="modal-6fae891b-b0d5-4415-b07d-355015c3af67" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>DonatjUAParser result detail</h4>
<p><pre><code class="php">Array
(
[platform] => Linux
[browser] => UCWEB
[version] => 2.0
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>PiwikDeviceDetector<br /><small>3.5.1</small></td><td>UC Browser 8.2</td><td> </td><td>Android 4.1</td><td>Wiko</td><td>Cink SLIM</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] => UC Browser
[short_name] => UC
[version] => 8.2
[engine] =>
)
[operatingSystem] => Array
(
[name] => Android
[short_name] => AND
[version] => 4.1
[platform] =>
)
[device] => Array
(
[brand] => WI
[brandName] => Wiko
[model] => Cink SLIM
[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> </td><td><i class="material-icons">close</i></td><td>Linux </td><td><i class="material-icons">close</i></td><td></td><td><i class="material-icons">close</i></td><td></td><td><i class="material-icons">close</i></td><td></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-8c08f104-4e61-421b-9405-291b09c383dc">Detail</a>
<!-- Modal Structure -->
<div id="modal-8c08f104-4e61-421b-9405-291b09c383dc" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>SinergiBrowserDetector result detail</h4>
<p><pre><code class="php">Array
(
[browser] => Sinergi\BrowserDetector\Browser Object
(
[userAgent:Sinergi\BrowserDetector\Browser:private] => Sinergi\BrowserDetector\UserAgent Object
(
[userAgentString:Sinergi\BrowserDetector\UserAgent:private] => UCWEB/2.0 (Linux; U; Adr 4.1.1; en-US; CINK_SLIM) U2/1.0.0 UCBrowser/8.2.0.242 U2/1.0.0 Mobile
)
[name:Sinergi\BrowserDetector\Browser:private] => unknown
[version:Sinergi\BrowserDetector\Browser:private] => unknown
[isRobot:Sinergi\BrowserDetector\Browser:private] =>
[isChromeFrame:Sinergi\BrowserDetector\Browser:private] =>
)
[operatingSystem] => Sinergi\BrowserDetector\Os Object
(
[name:Sinergi\BrowserDetector\Os:private] => Linux
[version:Sinergi\BrowserDetector\Os:private] => unknown
[isMobile:Sinergi\BrowserDetector\Os:private] =>
[userAgent:Sinergi\BrowserDetector\Os:private] => Sinergi\BrowserDetector\UserAgent Object
(
[userAgentString:Sinergi\BrowserDetector\UserAgent:private] => UCWEB/2.0 (Linux; U; Adr 4.1.1; en-US; CINK_SLIM) U2/1.0.0 UCBrowser/8.2.0.242 U2/1.0.0 Mobile
)
)
[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] => UCWEB/2.0 (Linux; U; Adr 4.1.1; en-US; CINK_SLIM) U2/1.0.0 UCBrowser/8.2.0.242 U2/1.0.0 Mobile
)
)
)
</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>UC Browser 8.2.0</td><td><i class="material-icons">close</i></td><td>Android 4.1.1</td><td></td><td></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td></td><td></td><td><i class="material-icons">close</i></td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-8f4c86c5-433e-4536-b799-ad26d77264e0">Detail</a>
<!-- Modal Structure -->
<div id="modal-8f4c86c5-433e-4536-b799-ad26d77264e0" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>UAParser result detail</h4>
<p><pre><code class="php">UAParser\Result\Client Object
(
[ua] => UAParser\Result\UserAgent Object
(
[major] => 8
[minor] => 2
[patch] => 0
[family] => UC Browser
)
[os] => UAParser\Result\OperatingSystem Object
(
[major] => 4
[minor] => 1
[patch] => 1
[patchMinor] =>
[family] => Android
)
[device] => UAParser\Result\Device Object
(
[brand] =>
[model] =>
[family] => Other
)
[originalUserAgent] => UCWEB/2.0 (Linux; U; Adr 4.1.1; en-US; CINK_SLIM) U2/1.0.0 UCBrowser/8.2.0.242 U2/1.0.0 Mobile
)
</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>UC Browser 8.2</td><td>Gecko </td><td>Android 4.1.1</td><td>Wiko</td><td>Cink Slim</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] => UC Browser
[version] => 8.2
[type] => browser
)
[engine] => Array
(
[name] => Gecko
)
[os] => Array
(
[name] => Android
[version] => 4.1.1
)
[device] => Array
(
[type] => mobile
[subtype] => smart
[manufacturer] => Wiko
[model] => Cink Slim
)
)
</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> </td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>pc</td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td></td><td></td><td><i class="material-icons">close</i></td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-bd437f52-91e9-4ce8-88f7-6e5206ed6635">Detail</a>
<!-- Modal Structure -->
<div id="modal-bd437f52-91e9-4ce8-88f7-6e5206ed6635" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>Woothee result detail</h4>
<p><pre><code class="php">Array
(
[category] => pc
[os] => Linux
[name] => UNKNOWN
[version] => UNKNOWN
[vendor] => UNKNOWN
[os_version] => UNKNOWN
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>Wurfl<br /><small>1.6.4</small></td><td>UC Browser 8</td><td><i class="material-icons">close</i></td><td>Android 2.3</td><td></td><td></td><td>Feature Phone</td><td>yes</td><td></td><td></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-3a72b31e-c3c1-4317-a357-7a6d5e3c7027">Detail</a>
<!-- Modal Structure -->
<div id="modal-3a72b31e-c3c1-4317-a357-7a6d5e3c7027" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>Wurfl result detail</h4>
<p><pre><code class="php">Array
(
[virtual] => Array
(
[is_android] => false
[is_ios] => false
[is_windows_phone] => false
[is_app] => false
[is_full_desktop] => false
[is_largescreen] => false
[is_mobile] => true
[is_robot] => false
[is_smartphone] => false
[is_touchscreen] => false
[is_wml_preferred] => false
[is_xhtmlmp_preferred] => true
[is_html_preferred] => false
[advertised_device_os] => Android
[advertised_device_os_version] => 2.3
[advertised_browser] => UC Browser
[advertised_browser_version] => 8
[complete_device_name] =>
[form_factor] => Feature Phone
[is_phone] => true
[is_app_webview] => false
)
[all] => Array
(
[brand_name] =>
[model_name] =>
[unique] => true
[ununiqueness_handler] =>
[is_wireless_device] => true
[device_claims_web_support] => false
[has_qwerty_keyboard] => false
[can_skip_aligned_link_row] => true
[uaprof] =>
[uaprof2] =>
[uaprof3] =>
[nokia_series] => 0
[nokia_edition] => 0
[device_os] =>
[mobile_browser] => UCWeb
[mobile_browser_version] => browser_root_ucweb
[device_os_version] =>
[pointing_method] =>
[release_date] => 2002_july
[marketing_name] =>
[model_extra_info] =>
[nokia_feature_pack] => 0
[can_assign_phone_number] => true
[is_tablet] => false
[manufacturer_name] =>
[is_bot] => false
[is_google_glass] => false
[proportional_font] => false
[built_in_back_button_support] => false
[card_title_support] => true
[softkey_support] => false
[table_support] => true
[numbered_menus] => false
[menu_with_select_element_recommended] => false
[menu_with_list_of_links_recommended] => true
[icons_on_menu_items_support] => false
[break_list_of_links_with_br_element_recommended] => true
[access_key_support] => false
[wrap_mode_support] => false
[times_square_mode_support] => false
[deck_prefetch_support] => false
[elective_forms_recommended] => true
[wizards_recommended] => false
[image_as_link_support] => false
[insert_br_element_after_widget_recommended] => false
[wml_can_display_images_and_text_on_same_line] => false
[wml_displays_image_in_center] => false
[opwv_wml_extensions_support] => false
[wml_make_phone_call_string] => wtai://wp/mc;
[chtml_display_accesskey] => false
[emoji] => false
[chtml_can_display_images_and_text_on_same_line] => false
[chtml_displays_image_in_center] => false
[imode_region] => none
[chtml_make_phone_call_string] => tel:
[chtml_table_support] => false
[xhtml_honors_bgcolor] => false
[xhtml_supports_forms_in_table] => false
[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] => false
[xhtml_supports_css_cell_table_coloring] => false
[xhtml_format_as_css_property] => false
[xhtml_format_as_attribute] => false
[xhtml_nowrap_mode] => false
[xhtml_marquee_as_css_property] => false
[xhtml_readable_background_color1] => #FFFFFF
[xhtml_readable_background_color2] => #FFFFFF
[xhtml_allows_disabled_form_elements] => false
[xhtml_document_title_support] => true
[xhtml_preferred_charset] => utf8
[opwv_xhtml_extensions_support] => false
[xhtml_make_phone_call_string] => tel:
[xhtmlmp_preferred_mime_type] => application/vnd.wap.xhtml+xml
[xhtml_table_support] => true
[xhtml_send_sms_string] => none
[xhtml_send_mms_string] => none
[xhtml_file_upload] => not_supported
[cookie_support] => true
[accept_third_party_cookie] => true
[xhtml_supports_iframe] => none
[xhtml_avoid_accesskeys] => false
[xhtml_can_embed_video] => none
[ajax_support_javascript] => false
[ajax_manipulate_css] => false
[ajax_support_getelementbyid] => false
[ajax_support_inner_html] => false
[ajax_xhr_type] => none
[ajax_manipulate_dom] => false
[ajax_support_events] => false
[ajax_support_event_listener] => false
[ajax_preferred_geoloc_api] => none
[xhtml_support_level] => 1
[preferred_markup] => html_wi_oma_xhtmlmp_1_0
[wml_1_1] => true
[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] => false
[html_web_4_0] => false
[voicexml] => false
[multipart_support] => false
[total_cache_disable_support] => false
[time_to_live_support] => false
[resolution_width] => 128
[resolution_height] => 92
[columns] => 11
[max_image_width] => 120
[max_image_height] => 92
[rows] => 6
[physical_screen_width] => 27
[physical_screen_height] => 27
[dual_orientation] => false
[density_class] => 1.0
[wbmp] => true
[bmp] => false
[epoc_bmp] => false
[gif_animated] => true
[jpg] => true
[png] => true
[tiff] => false
[transparent_png_alpha] => false
[transparent_png_index] => false
[svgt_1_1] => false
[svgt_1_1_plus] => false
[greyscale] => false
[gif] => true
[colors] => 256
[webp_lossy_support] => false
[webp_lossless_support] => false
[post_method_support] => true
[basic_authentication_support] => true
[empty_option_value_support] => true
[emptyok] => false
[nokia_voice_call] => false
[wta_voice_call] => false
[wta_phonebook] => false
[wta_misc] => false
[wta_pdc] => false
[https_support] => true
[phone_id_provided] => false
[max_data_rate] => 9
[wifi] => false
[sdio] => false
[vpn] => false
[has_cellular_radio] => true
[max_deck_size] => 10000
[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] => false
[inline_support] => false
[oma_support] => false
[ringtone] => false
[ringtone_3gpp] => false
[ringtone_midi_monophonic] => false
[ringtone_midi_polyphonic] => false
[ringtone_imelody] => false
[ringtone_digiplug] => false
[ringtone_compactmidi] => false
[ringtone_mmf] => false
[ringtone_rmf] => false
[ringtone_xmf] => false
[ringtone_amr] => false
[ringtone_awb] => false
[ringtone_aac] => false
[ringtone_wav] => false
[ringtone_mp3] => false
[ringtone_spmidi] => false
[ringtone_qcelp] => false
[ringtone_voices] => 1
[ringtone_df_size_limit] => 0
[ringtone_directdownload_size_limit] => 0
[ringtone_inline_size_limit] => 0
[ringtone_oma_size_limit] => 0
[wallpaper] => false
[wallpaper_max_width] => 0
[wallpaper_max_height] => 0
[wallpaper_preferred_width] => 0
[wallpaper_preferred_height] => 0
[wallpaper_resize] => none
[wallpaper_wbmp] => false
[wallpaper_bmp] => false
[wallpaper_gif] => false
[wallpaper_jpg] => false
[wallpaper_png] => false
[wallpaper_tiff] => false
[wallpaper_greyscale] => false
[wallpaper_colors] => 2
[wallpaper_df_size_limit] => 0
[wallpaper_directdownload_size_limit] => 0
[wallpaper_inline_size_limit] => 0
[wallpaper_oma_size_limit] => 0
[screensaver] => false
[screensaver_max_width] => 0
[screensaver_max_height] => 0
[screensaver_preferred_width] => 0
[screensaver_preferred_height] => 0
[screensaver_resize] => none
[screensaver_wbmp] => false
[screensaver_bmp] => false
[screensaver_gif] => false
[screensaver_jpg] => false
[screensaver_png] => false
[screensaver_greyscale] => false
[screensaver_colors] => 2
[screensaver_df_size_limit] => 0
[screensaver_directdownload_size_limit] => 0
[screensaver_inline_size_limit] => 0
[screensaver_oma_size_limit] => 0
[picture] => false
[picture_max_width] => 0
[picture_max_height] => 0
[picture_preferred_width] => 0
[picture_preferred_height] => 0
[picture_resize] => none
[picture_wbmp] => false
[picture_bmp] => false
[picture_gif] => false
[picture_jpg] => false
[picture_png] => false
[picture_greyscale] => false
[picture_colors] => 2
[picture_df_size_limit] => 0
[picture_directdownload_size_limit] => 0
[picture_inline_size_limit] => 0
[picture_oma_size_limit] => 0
[video] => false
[oma_v_1_0_forwardlock] => false
[oma_v_1_0_combined_delivery] => false
[oma_v_1_0_separate_delivery] => false
[streaming_video] => false
[streaming_3gpp] => false
[streaming_mp4] => false
[streaming_mov] => false
[streaming_video_size_limit] => 0
[streaming_real_media] => none
[streaming_flv] => false
[streaming_3g2] => false
[streaming_vcodec_h263_0] => -1
[streaming_vcodec_h263_3] => -1
[streaming_vcodec_mpeg4_sp] => -1
[streaming_vcodec_mpeg4_asp] => -1
[streaming_vcodec_h264_bp] => -1
[streaming_acodec_amr] => none
[streaming_acodec_aac] => none
[streaming_wmv] => none
[streaming_preferred_protocol] => rtsp
[streaming_preferred_http_protocol] => none
[wap_push_support] => false
[connectionless_service_indication] => false
[connectionless_service_load] => false
[connectionless_cache_operation] => false
[connectionoriented_unconfirmed_service_indication] => false
[connectionoriented_unconfirmed_service_load] => false
[connectionoriented_unconfirmed_cache_operation] => false
[connectionoriented_confirmed_service_indication] => false
[connectionoriented_confirmed_service_load] => false
[connectionoriented_confirmed_cache_operation] => false
[utf8_support] => true
[ascii_support] => false
[iso8859_support] => false
[expiration_date] => false
[j2me_cldc_1_0] => false
[j2me_cldc_1_1] => false
[j2me_midp_1_0] => false
[j2me_midp_2_0] => false
[doja_1_0] => false
[doja_1_5] => false
[doja_2_0] => false
[doja_2_1] => false
[doja_2_2] => false
[doja_3_0] => false
[doja_3_5] => false
[doja_4_0] => false
[j2me_jtwi] => false
[j2me_mmapi_1_0] => false
[j2me_mmapi_1_1] => false
[j2me_wmapi_1_0] => false
[j2me_wmapi_1_1] => false
[j2me_wmapi_2_0] => false
[j2me_btapi] => false
[j2me_3dapi] => false
[j2me_locapi] => false
[j2me_nokia_ui] => false
[j2me_motorola_lwt] => false
[j2me_siemens_color_game] => false
[j2me_siemens_extension] => false
[j2me_heap_size] => 0
[j2me_max_jar_size] => 0
[j2me_storage_size] => 0
[j2me_max_record_store_size] => 0
[j2me_screen_width] => 0
[j2me_screen_height] => 0
[j2me_canvas_width] => 0
[j2me_canvas_height] => 0
[j2me_bits_per_pixel] => 0
[j2me_audio_capture_enabled] => false
[j2me_video_capture_enabled] => false
[j2me_photo_capture_enabled] => false
[j2me_capture_image_formats] => none
[j2me_http] => false
[j2me_https] => false
[j2me_socket] => false
[j2me_udp] => false
[j2me_serial] => false
[j2me_gif] => false
[j2me_gif89a] => false
[j2me_jpg] => false
[j2me_png] => false
[j2me_bmp] => false
[j2me_bmp3] => false
[j2me_wbmp] => false
[j2me_midi] => false
[j2me_wav] => false
[j2me_amr] => false
[j2me_mp3] => false
[j2me_mp4] => false
[j2me_imelody] => false
[j2me_rmf] => false
[j2me_au] => false
[j2me_aac] => false
[j2me_realaudio] => false
[j2me_xmf] => false
[j2me_wma] => false
[j2me_3gpp] => false
[j2me_h263] => false
[j2me_svgt] => false
[j2me_mpeg4] => false
[j2me_realvideo] => false
[j2me_real8] => false
[j2me_realmedia] => false
[j2me_left_softkey_code] => 0
[j2me_right_softkey_code] => 0
[j2me_middle_softkey_code] => 0
[j2me_select_key_code] => 0
[j2me_return_key_code] => 0
[j2me_clear_key_code] => 0
[j2me_datefield_no_accepts_null_date] => false
[j2me_datefield_broken] => false
[receiver] => false
[sender] => false
[mms_max_size] => 0
[mms_max_height] => 0
[mms_max_width] => 0
[built_in_recorder] => false
[built_in_camera] => false
[mms_jpeg_baseline] => false
[mms_jpeg_progressive] => false
[mms_gif_static] => false
[mms_gif_animated] => false
[mms_png] => false
[mms_bmp] => false
[mms_wbmp] => false
[mms_amr] => false
[mms_wav] => false
[mms_midi_monophonic] => false
[mms_midi_polyphonic] => false
[mms_midi_polyphonic_voices] => 0
[mms_spmidi] => false
[mms_mmf] => false
[mms_mp3] => false
[mms_evrc] => false
[mms_qcelp] => false
[mms_ota_bitmap] => false
[mms_nokia_wallpaper] => false
[mms_nokia_operatorlogo] => false
[mms_nokia_3dscreensaver] => false
[mms_nokia_ringingtone] => false
[mms_rmf] => false
[mms_xmf] => false
[mms_symbian_install] => false
[mms_jar] => false
[mms_jad] => false
[mms_vcard] => false
[mms_vcalendar] => false
[mms_wml] => false
[mms_wbxml] => false
[mms_wmlc] => false
[mms_video] => false
[mms_mp4] => false
[mms_3gpp] => false
[mms_3gpp2] => false
[mms_max_frame_rate] => 0
[nokiaring] => false
[picturemessage] => false
[operatorlogo] => false
[largeoperatorlogo] => false
[callericon] => false
[nokiavcard] => false
[nokiavcal] => false
[sckl_ringtone] => false
[sckl_operatorlogo] => false
[sckl_groupgraphic] => false
[sckl_vcard] => false
[sckl_vcalendar] => false
[text_imelody] => false
[ems] => false
[ems_variablesizedpictures] => false
[ems_imelody] => false
[ems_odi] => false
[ems_upi] => false
[ems_version] => 0
[siemens_ota] => false
[siemens_logo_width] => 101
[siemens_logo_height] => 29
[siemens_screensaver_width] => 101
[siemens_screensaver_height] => 50
[gprtf] => false
[sagem_v1] => false
[sagem_v2] => false
[panasonic] => false
[sms_enabled] => 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] => false
[mp3] => false
[voices] => 1
[qcelp] => false
[evrc] => false
[flash_lite_version] =>
[fl_wallpaper] => false
[fl_screensaver] => false
[fl_standalone] => false
[fl_browser] => false
[fl_sub_lcd] => false
[full_flash_support] => false
[css_supports_width_as_percentage] => true
[css_border_image] => none
[css_rounded_corners] => none
[css_gradient] => none
[css_spriting] => false
[css_gradient_linear] => none
[is_transcoder] => false
[transcoder_ua_header] => user-agent
[rss_support] => false
[pdf_support] => false
[progressive_download] => false
[playback_vcodec_h263_0] => -1
[playback_vcodec_h263_3] => -1
[playback_vcodec_mpeg4_sp] => -1
[playback_vcodec_mpeg4_asp] => -1
[playback_vcodec_h264_bp] => -1
[playback_real_media] => none
[playback_3gpp] => false
[playback_3g2] => false
[playback_mp4] => false
[playback_mov] => false
[playback_acodec_amr] => none
[playback_acodec_aac] => none
[playback_df_size_limit] => 0
[playback_directdownload_size_limit] => 0
[playback_inline_size_limit] => 0
[playback_oma_size_limit] => 0
[playback_acodec_qcelp] => false
[playback_wmv] => none
[hinted_progressive_download] => false
[html_preferred_dtd] => xhtml_mp1
[viewport_supported] => false
[viewport_width] =>
[viewport_userscalable] =>
[viewport_initial_scale] =>
[viewport_maximum_scale] =>
[viewport_minimum_scale] =>
[mobileoptimized] => false
[handheldfriendly] => false
[canvas_support] => none
[image_inlining] => false
[is_smarttv] => false
[is_console] => false
[nfc_support] => false
[ux_full_desktop] => false
[jqm_grade] => none
[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:38:53</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>
|
css/easyfup.css
|
ollej/UploadBin
|
body
{
font-family: Optima, Geneva, Lucida, Verdana, Arial;
font-size: 0.8em;
text-align: center;
}
#contentDiv
{
padding-top: 10em;
text-align: center;
}
#errorDiv
{
border: .3em solid red;
padding: .5em;
background-image: url('../images/error.png');
background-repeat: no-repeat;
background-position: .5em .5em;
}
#infoDiv
{
border: .3em solid green;
padding: .5em;
background-image: url('../images/information.png');
background-repeat: no-repeat;
background-position: .5em .5em;
}
#warningDiv
{
border: .3em solid yellow;
}
#footerDiv
{
font-size: 0.8em;
}
.centerDiv
{
text-align: center;
}
#advancedDiv
{
background-color: #aaaaaa;
margin: 0 auto;
text-align: left;
width: 200px;
border: 1px dotted black;
}
#textDiv
{
margin: 0 auto;
max-width: 500px;
text-align: left;
width: 75%;
}
#menuDiv
{
font-weight: bold;
padding-bottom: 1em;
}
h2,h3
{
margin: 0;
}
h1
{
font-size: 1.2em;
}
h2
{
font-size: 1.0em;
padding-top: 0.6em;
}
h3
{
font-size: 0.8em;
}
#logo
{
border: 0;
}
.itemlist
{
text-align: left;
border-spacing: 0;
}
.itemlist td
{
padding: 0.2em;
}
.itemlist .numbers
{
text-align: right;
}
.itemlist .row_even
{
background-color: #ffffff;
background-image: none;
}
.itemlist .row_odd
{
background-color: #cccccc;
background-image: none;
}
#loadingimage
{
padding-left: 0.5em;
}
img.shareimage
{
border-style: none;
padding: 0.1em;
}
|
1e7769d/html/v8stdint_8h_source.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 v0.4.9: deps/v8/include/v8stdint.h Source File</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<script type="text/javascript">
$(document).ready(function() { init_search(); });
</script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td style="padding-left: 0.5em;">
<div id="projectname">V8 API Reference Guide for node.js v0.4.9
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.9.1 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "search",false,'Search');
</script>
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li><a href="annotated.html"><span>Classes</span></a></li>
<li class="current"><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="files.html"><span>File List</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="dir_94a36784afa54c0b50996002372b429e.html">deps</a></li><li class="navelem"><a class="el" href="dir_7edecdc49f3d0e5b35ff20670f3bf33e.html">v8</a></li><li class="navelem"><a class="el" href="dir_3debe4bd29323c1699f247c91661804b.html">include</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="headertitle">
<div class="title">v8stdint.h</div> </div>
</div><!--header-->
<div class="contents">
<div class="fragment"><div class="line"><a name="l00001"></a><span class="lineno"> 1</span> <span class="comment">// Copyright 2010 the V8 project authors. All rights reserved.</span></div>
<div class="line"><a name="l00002"></a><span class="lineno"> 2</span> <span class="comment">// Redistribution and use in source and binary forms, with or without</span></div>
<div class="line"><a name="l00003"></a><span class="lineno"> 3</span> <span class="comment">// modification, are permitted provided that the following conditions are</span></div>
<div class="line"><a name="l00004"></a><span class="lineno"> 4</span> <span class="comment">// met:</span></div>
<div class="line"><a name="l00005"></a><span class="lineno"> 5</span> <span class="comment">//</span></div>
<div class="line"><a name="l00006"></a><span class="lineno"> 6</span> <span class="comment">// * Redistributions of source code must retain the above copyright</span></div>
<div class="line"><a name="l00007"></a><span class="lineno"> 7</span> <span class="comment">// notice, this list of conditions and the following disclaimer.</span></div>
<div class="line"><a name="l00008"></a><span class="lineno"> 8</span> <span class="comment">// * Redistributions in binary form must reproduce the above</span></div>
<div class="line"><a name="l00009"></a><span class="lineno"> 9</span> <span class="comment">// copyright notice, this list of conditions and the following</span></div>
<div class="line"><a name="l00010"></a><span class="lineno"> 10</span> <span class="comment">// disclaimer in the documentation and/or other materials provided</span></div>
<div class="line"><a name="l00011"></a><span class="lineno"> 11</span> <span class="comment">// with the distribution.</span></div>
<div class="line"><a name="l00012"></a><span class="lineno"> 12</span> <span class="comment">// * Neither the name of Google Inc. nor the names of its</span></div>
<div class="line"><a name="l00013"></a><span class="lineno"> 13</span> <span class="comment">// contributors may be used to endorse or promote products derived</span></div>
<div class="line"><a name="l00014"></a><span class="lineno"> 14</span> <span class="comment">// from this software without specific prior written permission.</span></div>
<div class="line"><a name="l00015"></a><span class="lineno"> 15</span> <span class="comment">//</span></div>
<div class="line"><a name="l00016"></a><span class="lineno"> 16</span> <span class="comment">// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS</span></div>
<div class="line"><a name="l00017"></a><span class="lineno"> 17</span> <span class="comment">// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT</span></div>
<div class="line"><a name="l00018"></a><span class="lineno"> 18</span> <span class="comment">// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR</span></div>
<div class="line"><a name="l00019"></a><span class="lineno"> 19</span> <span class="comment">// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT</span></div>
<div class="line"><a name="l00020"></a><span class="lineno"> 20</span> <span class="comment">// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,</span></div>
<div class="line"><a name="l00021"></a><span class="lineno"> 21</span> <span class="comment">// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT</span></div>
<div class="line"><a name="l00022"></a><span class="lineno"> 22</span> <span class="comment">// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,</span></div>
<div class="line"><a name="l00023"></a><span class="lineno"> 23</span> <span class="comment">// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY</span></div>
<div class="line"><a name="l00024"></a><span class="lineno"> 24</span> <span class="comment">// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT</span></div>
<div class="line"><a name="l00025"></a><span class="lineno"> 25</span> <span class="comment">// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE</span></div>
<div class="line"><a name="l00026"></a><span class="lineno"> 26</span> <span class="comment">// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</span></div>
<div class="line"><a name="l00027"></a><span class="lineno"> 27</span> </div>
<div class="line"><a name="l00028"></a><span class="lineno"> 28</span> <span class="comment">// Load definitions of standard types.</span></div>
<div class="line"><a name="l00029"></a><span class="lineno"> 29</span> </div>
<div class="line"><a name="l00030"></a><span class="lineno"> 30</span> <span class="preprocessor">#ifndef V8STDINT_H_</span></div>
<div class="line"><a name="l00031"></a><span class="lineno"> 31</span> <span class="preprocessor">#define V8STDINT_H_</span></div>
<div class="line"><a name="l00032"></a><span class="lineno"> 32</span> </div>
<div class="line"><a name="l00033"></a><span class="lineno"> 33</span> <span class="preprocessor">#include <stdio.h></span></div>
<div class="line"><a name="l00034"></a><span class="lineno"> 34</span> </div>
<div class="line"><a name="l00035"></a><span class="lineno"> 35</span> <span class="preprocessor">#if defined(_WIN32) && !defined(__MINGW32__)</span></div>
<div class="line"><a name="l00036"></a><span class="lineno"> 36</span> </div>
<div class="line"><a name="l00037"></a><span class="lineno"> 37</span> <span class="keyword">typedef</span> <span class="keywordtype">signed</span> <span class="keywordtype">char</span> int8_t;</div>
<div class="line"><a name="l00038"></a><span class="lineno"> 38</span> <span class="keyword">typedef</span> <span class="keywordtype">unsigned</span> <span class="keywordtype">char</span> uint8_t;</div>
<div class="line"><a name="l00039"></a><span class="lineno"> 39</span> <span class="keyword">typedef</span> <span class="keywordtype">short</span> int16_t; <span class="comment">// NOLINT</span></div>
<div class="line"><a name="l00040"></a><span class="lineno"> 40</span> <span class="keyword">typedef</span> <span class="keywordtype">unsigned</span> <span class="keywordtype">short</span> uint16_t; <span class="comment">// NOLINT</span></div>
<div class="line"><a name="l00041"></a><span class="lineno"> 41</span> <span class="keyword">typedef</span> <span class="keywordtype">int</span> int32_t;</div>
<div class="line"><a name="l00042"></a><span class="lineno"> 42</span> <span class="keyword">typedef</span> <span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> uint32_t;</div>
<div class="line"><a name="l00043"></a><span class="lineno"> 43</span> <span class="keyword">typedef</span> __int64 int64_t;</div>
<div class="line"><a name="l00044"></a><span class="lineno"> 44</span> <span class="keyword">typedef</span> <span class="keywordtype">unsigned</span> __int64 uint64_t;</div>
<div class="line"><a name="l00045"></a><span class="lineno"> 45</span> <span class="comment">// intptr_t and friends are defined in crtdefs.h through stdio.h.</span></div>
<div class="line"><a name="l00046"></a><span class="lineno"> 46</span> </div>
<div class="line"><a name="l00047"></a><span class="lineno"> 47</span> <span class="preprocessor">#else</span></div>
<div class="line"><a name="l00048"></a><span class="lineno"> 48</span> </div>
<div class="line"><a name="l00049"></a><span class="lineno"> 49</span> <span class="preprocessor">#include <stdint.h></span></div>
<div class="line"><a name="l00050"></a><span class="lineno"> 50</span> </div>
<div class="line"><a name="l00051"></a><span class="lineno"> 51</span> <span class="preprocessor">#endif</span></div>
<div class="line"><a name="l00052"></a><span class="lineno"> 52</span> </div>
<div class="line"><a name="l00053"></a><span class="lineno"> 53</span> <span class="preprocessor">#endif // V8STDINT_H_</span></div>
</div><!-- fragment --></div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Tue Aug 11 2015 23:47:10 for V8 API Reference Guide for node.js v0.4.9 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>
|
docs/en/logging/shortcodes/index.html
|
ftvision/ftvision.github.io
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>
Shortcodes Update Logging
</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/normalize.css@8.0.1/normalize.css">
<link href="https://unpkg.com/@primer/css/dist/primer.css" rel="stylesheet" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/gitalk@1/dist/gitalk.css">
<script src="https://cdn.jsdelivr.net/npm/gitalk@1/dist/gitalk.min.js"></script>
<script defer src="https://use.fontawesome.com/releases/v5.3.1/js/all.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css"/>
<link rel="stylesheet" href="/css/style.css"/>
<script defer src="/js/tab.js"></script>
<script defer src="/js/gtalk.js"></script>
</head>
<body>
<div class="Header">
<div class="Header-item Header-item--full"> </div>
<div class="Header-item">
<a href="/blog" class="Header-link">Blog</a>
</div>
<div class="Header-item">
<a href="#" class="Header-link">Digest</a>
</div>
</div>
<div class="mx-auto my-2 col-10 col-md-7 col-lg-6 col-xl-5" >
<div class="p-2">
<nav aria-label="Breadcrumb">
<ol>
<li class="breadcrumb-item"><a href="/">Home</a></li>
<li class="breadcrumb-item"><a href="/logging">logging</a></li>
<li class="breadcrumb-item" aria-current="page"> Shortcodes Update Logging</li>
</ol>
</nav>
<h1 id="page-title">Shortcodes Update Logging</h1>
<div>
<strong>Also in:</strong>
<a href="http://ftvision.github.io/logging/shortcodes/">中文</a>
</div>
</div>
<div class="markdown-body p-2">
<p>Here is a list of <strong>shortcodes</strong> I’ve made for this blog.</p>
<h2 id="digest-title">Digest Title</h2>
<h4 id="code">Code</h4>
<div class="highlight"><pre style="background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4"><code class="language-md" data-lang="md">{{< <span style="color:#008000;font-weight:bold">digest-item</span> <span style="">"</span><span style="color:#b44">title</span><span style="">"="</span><span style="color:#b44">Title</span><span style="">"</span> <span style="">"</span><span style="color:#b44">source</span><span style="">"="#</span><span style="color:#b44">url</span><span style="">"</span> <span style="">"</span><span style="color:#b44">description</span><span style="">"="</span><span style="color:#b44">Description</span><span style="">"</span> >}}
</code></pre></div><h4 id="demo">Demo</h4>
<div>
<h3 class="p-2 border-left border-blue bg-blue-light"> Title <br>
<span class="h5">Description | <a href="#" role="button">Source</a> </span></h3>
</div>
<h2 id="code-tabs">Code Tabs</h2>
<h4 id="code-1">Code</h4>
<div class="highlight"><pre style="background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4"><code class="language-md" data-lang="md">{{< <span style="color:#008000;font-weight:bold">tabs</span> <span style="">"</span><span style="color:#b44">test_file</span><span style="">"</span> >}}
{{< <span style="color:#008000;font-weight:bold">tab</span> <span style="">"</span><span style="color:#b44">cpp</span><span style="">"</span> >}}
# cpp code here
{{< /<span style="color:#008000;font-weight:bold">tab</span> >}}
{{< <span style="color:#008000;font-weight:bold">tab</span> <span style="">"</span><span style="color:#b44">python</span><span style="">"</span> >}}
# python code here
{{< /<span style="color:#008000;font-weight:bold">tab</span> >}}
{{< /<span style="color:#008000;font-weight:bold">tabs</span> >}}
</code></pre></div><h4 id="demo-1">Demo</h4>
<div class='tabs'>
<nav class="UnderlineNav" aria-label="Foo bar">
<div class="UnderlineNav-actions">
<small class="text-mono">test_file</small>
</div>
<div class="tab-list UnderlineNav-body">
</div>
</nav>
<div class="tab-content">
<div class="tab-panel my-1" id="cpp">
<div class="highlight"><pre style="background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4"><code class="language-cpp" data-lang="cpp"><span style="color:#0b0;font-weight:bold">int</span> <span style="color:#00a000">main</span>(){
<span style="color:#a2f;font-weight:bold">return</span> <span style="color:#666">0</span>;
}
</code></pre></div>
</div>
<div class="tab-panel my-1" id="python">
<div class="highlight"><pre style="background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4"><code class="language-python" data-lang="python"><span style="color:#a2f;font-weight:bold">def</span> <span style="color:#00a000">main</span>():
<span style="color:#a2f;font-weight:bold">return</span> <span style="color:#666">0</span>
</code></pre></div>
</div>
</div>
</div>
<h2 id="box-highlight">Box Highlight</h2>
<h4 id="code-2">Code</h4>
<div class="highlight"><pre style="background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4"><code class="language-markdown" data-lang="markdown">{{< <span style="color:#008000;font-weight:bold">box-highlight</span> <span style="color:#b44">type</span><span style="color:#666">=</span><span style="color:#b44">"info"</span> >}}
This is a info box.
{{< /<span style="color:#008000;font-weight:bold">box-highlight</span> >}}
{{< <span style="color:#008000;font-weight:bold">box-highlight</span> <span style="color:#b44">type</span><span style="color:#666">=</span><span style="color:#b44">"warning"</span> >}}
This is a warning box.
{{< /<span style="color:#008000;font-weight:bold">box-highlight</span> >}}
{{< <span style="color:#008000;font-weight:bold">box-highlight</span> <span style="color:#b44">type</span><span style="color:#666">=</span><span style="color:#b44">"success"</span> >}}
This is a success box.
{{< /<span style="color:#008000;font-weight:bold">box-highlight</span> >}}
</code></pre></div><h4 id="demo-2">Demo</h4>
<div class="flash flash-full flash my-2">
This is a info box.
</div>
<div class="flash flash-full flash-warn my-2">
This is a warning box.
</div>
<div class="flash flash-full flash-success my-2">
This is a success box.
</div>
</div>
<div id="gitalk-container"></div>
<div class="Header border-top mt-2 bg-gray-light text-gray-dark">
<div class="Header-item">
<span ><strong>Thinking as Algorithm </strong> By <em>Feitong Yang</em> | 2014 - 2020</span>
</div>
<div class="Header-item Header-item--full"> </div>
<div class="Header-item">
<a href="/about/">About</a>
</div>
<div class="Header-item">
<a href="/logging/">Logging</a>
</div>
</div>
</body>
</html>
</div>
|
addons/web_clean_navbar/static/src/css/clean_navbar.css
|
csokt/odoo8
|
.navbar-inverse .navbar-nav > li > a {
color:white!important; /* ?? green */
}
ul.navbar-left li > a:hover, ul.navbar-right li > a:hover {
background-color:#777!important; /* ?? #F00 */
}
ul.navbar-left li.active {
background-color:#fff!important;
}
ul.navbar-left li.active > a, ul.navbar-right li.active > a {
background-color:#444!important;
background: rgba(119,119,119,1);
background: -moz-linear-gradient(top, rgba(119,119,119,1) 0%, rgba(68,68,68,1) 100%);
background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(119,119,119,1)), color-stop(100%, rgba(68,68,68,1)));
background: -webkit-linear-gradient(top, rgba(119,119,119,1) 0%, rgba(68,68,68,1) 100%);
background: -o-linear-gradient(top, rgba(119,119,119,1) 0%, rgba(68,68,68,1) 100%);
background: -ms-linear-gradient(top, rgba(119,119,119,1) 0%, rgba(68,68,68,1) 100%);
background: linear-gradient(to bottom, rgba(119,119,119,1) 0%, rgba(68,68,68,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#777777', endColorstr='#444444', GradientType=0 );
}
.dropdown-menu > li > a:hover, .dropdown-menu > li > a:hover {
color:blue!important;
}
.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
color:white!important;
}
|
angular/day1angularbase/16.ng-repeat.html
|
7fe/guide
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<script src="angular.min.js">
</script>
<style>
.grey {
background: #666;
}
.red {
background: red;
}
.green {
background: green;
}
.yellow {
background: yellow;
}
</style>
</head>
<body>
<div ng-app="app">
<div ng-controller="main">
<ul>
<li ng-repeat="item in colors" ng-class="{grey:$even,red:$first,green:$last,yellow:$odd}">
{{item}}
</li>
</ul>
</div>
</div>
<script>
var app = angular.module('app', []);
app.controller('main', function($scope) {
$scope.colors = ['red', 'yellow', 'green', 'orange', 'stark', 'shudong'];
});
//$even 表示奇数行
//$first 表示第一行
//$last 表示最后一行
//$odd 表示偶数行
//ng-repeat 表示遍历
</script>
</body>
</html>
|
clean/Linux-x86_64-4.08.1-2.0.5/released/8.10.2/waterproof/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>waterproof: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.10.2 / waterproof - 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>
waterproof
<small>
1.0.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2021-12-02 03:04:00 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-12-02 03:04:00 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
coq 8.10.2 Formal proof management system
num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.08.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.08.1 Official release 4.08.1
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
synopsis: "Waterproof library"
description: """
The Waterproof library provides tactics, notations, and mathematical theories geared towards use in Mathematics educational environments. It aims to provide syntax such that proof scripts mimic handwritten mathematical proofs.
"""
homepage: "https://github.com/impermeable/coq-waterproof"
dev-repo: "git+https://github.com/impermeable/coq-waterproof.git"
bug-reports: "https://github.com/impermeable/coq-waterproof/issues"
maintainer: "j.w.portegies@tue.nl"
authors: [
"Jim Portegies"
"Cosmin Manea"
"Lulof Pirée"
"Adrian Vrămuleţ"
"Tudor Voicu"
]
license: "LGPL 3.0"
depends: [
"coq" {>= "8.12" & < "8.14"}
]
build: [
[make "-j%{jobs}%"]
]
install: [
[make "install"]
]
url {
src: "https://github.com/impermeable/coq-waterproof/archive/1.0.0.tar.gz"
checksum: "sha256=bc2e6ec7b458ad491b7bf95186d1b440240ee5cc4c449feea002b53e9bb60ae9"
}
tags: [
"keyword:mathematics education"
"category:Math/Education"
"date:2021-06-24"
"logpath:Waterproof"
]
</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-waterproof.1.0.0 coq.8.10.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.10.2).
The following dependencies couldn't be met:
- coq-waterproof -> coq >= 8.12
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-waterproof.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">
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.11.2-2.0.7/released/8.13.1/stalmarck/8.9.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>stalmarck: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.13.1 / stalmarck - 8.9.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
stalmarck
<small>
8.9.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-02-02 06:18:51 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-02-02 06:18:51 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
conf-gmp 4 Virtual package relying on a GMP lib system installation
coq 8.13.1 Formal proof management system
num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.11.2 The OCaml compiler (virtual package)
ocaml-base-compiler 4.11.2 Official release 4.11.2
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.3 A library manager for OCaml
zarith 1.12 Implements arithmetic and logical operations over arbitrary-precision integers
# opam file:
opam-version: "2.0"
maintainer: "palmskog@gmail.com"
homepage: "https://github.com/coq-community/stalmarck"
dev-repo: "git+https://github.com/coq-community/stalmarck.git"
bug-reports: "https://github.com/coq-community/stalmarck/issues"
license: "LGPL-2.1-or-later"
synopsis: "Proof of Stålmarck's algorithm in Coq"
description: """
A two-level approach to prove tautologies using Stålmarck's algorithm in Coq.
"""
build: [make "-j%{jobs}%"]
install: [make "install"]
depends: [
"ocaml"
"coq" {>= "8.9" & < "8.10~"}
]
tags: [
"category:Computer Science/Decision Procedures and Certified Algorithms/Decision procedures"
"category:Miscellaneous/Extracted Programs/Decision procedures"
"keyword:boolean formula"
"keyword:tautology checker"
"logpath:Stalmarck"
"date:2019-05-19"
]
authors: [
"Pierre Letouzey"
"Laurent Théry"
]
url {
src: "https://github.com/coq-community/stalmarck/archive/v8.9.0.tar.gz"
checksum: "sha256=c0c6958e059d632cca0d0e67ff673d996abb0c9e389ecdffa9d1e1186884168b"
}
</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-stalmarck.8.9.0 coq.8.13.1</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.13.1).
The following dependencies couldn't be met:
- coq-stalmarck -> 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-stalmarck.8.9.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>
|
CrystalSDK_2.0_build-0215_sdk-4.3/API Docs/functions_prop.html
|
srr313/PinataSmash-Open
|
<!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"/>
<title>Crystal SDK for iOS: Class Members - Properties</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<!-- Generated by Doxygen 1.7.1 -->
<div class="navigation" id="top">
<div class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="pages.html"><span>Related Pages</span></a></li>
<li><a href="modules.html"><span>Modules</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>
</ul>
</div>
<div class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class List</span></a></li>
<li class="current"><a href="functions.html"><span>Class Members</span></a></li>
</ul>
</div>
<div class="tabs2">
<ul class="tablist">
<li><a href="functions.html"><span>All</span></a></li>
<li><a href="functions_func.html"><span>Functions</span></a></li>
<li><a href="functions_vars.html"><span>Variables</span></a></li>
<li><a href="functions_enum.html"><span>Enumerations</span></a></li>
<li class="current"><a href="functions_prop.html"><span>Properties</span></a></li>
</ul>
</div>
</div>
<div class="contents">
<ul>
<li>alias
: <a class="el" href="interface_crystal_player.html#a620d19560557dfdb4e1d81e0a1662a02">CrystalPlayer</a>
</li>
<li>badgeNumber
: <a class="el" href="interface_crystal_player.html#a76ba302bc6d2b1fc22fc880f6ec36424">CrystalPlayer</a>
</li>
<li>balances
: <a class="el" href="interface_crystal_virtual_goods.html#aa92860ca957de2370e91eee11edc662e">CrystalVirtualGoods</a>
</li>
<li>categoriesToGet
: <a class="el" href="interface_crystal_leaderboards.html#a4e77fc7c73ba969d26ee4d75463f3d61">CrystalLeaderboards</a>
</li>
<li>crystalPlayerId
: <a class="el" href="interface_crystal_player.html#a9747d714506e029e8ff5501f4f79acdb">CrystalPlayer</a>
</li>
<li>CurrentCrystalPlayer
: <a class="el" href="class_crystal_unity_basic.html#adf9ae6b2d65c9a0a3f051b724a3db7f6">CrystalUnityBasic</a>
</li>
<li>CurrentRandom20ForLeaderboard
: <a class="el" href="class_crystal_unity_basic.html#ac8debb29bf3df6ec03f2de7b34281bfb">CrystalUnityBasic</a>
</li>
<li>CurrentTop20EntriesForLeaderboard
: <a class="el" href="class_crystal_unity_basic.html#a5790eed2823a1ed88cc2721c1c4e472b">CrystalUnityBasic</a>
</li>
<li>CurrentTop20FriendsForLeaderboard
: <a class="el" href="class_crystal_unity_basic.html#aeff05fe2c288f4a6aeaeb544ebd49876">CrystalUnityBasic</a>
</li>
<li>CurrentUserEntryForLeaderboard
: <a class="el" href="group__get.html#ga9aaf484370c6e9778f3f952c1e6abe7a">CrystalUnityBasic</a>
</li>
<li>CurrentVirtualBalances
: <a class="el" href="class_crystal_unity_basic.html#a2acf7f69720c22945dfc40467916f4eb">CrystalUnityBasic</a>
</li>
<li>CurrentVirtualGoods
: <a class="el" href="class_crystal_unity_basic.html#a047233486f930cc50e40e97cf6c8470a">CrystalUnityBasic</a>
</li>
<li>delegate
: <a class="el" href="interface_crystal_achievements.html#a842b8015ac3b7a2cc00d666b6aa01171">CrystalAchievements</a>
, <a class="el" href="interface_crystal_virtual_goods.html#a0723119a9d17cc8a6ea4b909af24981f">CrystalVirtualGoods</a>
, <a class="el" href="interface_crystal_player.html#a7d76b5bc8c527179e6d8e107d5fb71ce">CrystalPlayer</a>
, <a class="el" href="interface_crystal_leaderboards.html#a5db0370171524c01181f87b9dd773f77">CrystalLeaderboards</a>
</li>
<li>gifts
: <a class="el" href="interface_crystal_player.html#abcf66774d631f0346fc7d602b8738d1a">CrystalPlayer</a>
</li>
<li>goods
: <a class="el" href="interface_crystal_virtual_goods.html#a3b6180d7d33e13268d6d11cab7ea1bbd">CrystalVirtualGoods</a>
</li>
<li>Instance
: <a class="el" href="class_crystal_unity_basic.html#a6774bf977fa7aed27d06c8f448feca01">CrystalUnityBasic</a>
</li>
<li>isCrystalUser
: <a class="el" href="interface_crystal_player.html#ad9d129163b27cdb022fb4fad3af719c4">CrystalPlayer</a>
</li>
<li>isFacebookUser
: <a class="el" href="interface_crystal_player.html#a9b5b06193d18c9afaaa54c25163bf4d5">CrystalPlayer</a>
</li>
<li>isSignedIn
: <a class="el" href="interface_crystal_player.html#a36dae715f6cf9c2720d7d9b97c20b970">CrystalPlayer</a>
</li>
<li>isTwitterUser
: <a class="el" href="interface_crystal_player.html#a95d077e967c1a3dfb1c4e478763fd4e9">CrystalPlayer</a>
</li>
<li>numberOfCrystalFriends
: <a class="el" href="interface_crystal_player.html#ae710276053f506aedad72390c0de0a99">CrystalPlayer</a>
</li>
<li>numberOfCrystalFriendsWithGame
: <a class="el" href="interface_crystal_player.html#a544760ff7be10244b4c62902a50b61c5">CrystalPlayer</a>
</li>
</ul>
</div>
<hr class="footer"/><address class="footer"><small>Generated on Thu Mar 24 2011 11:51:14 for Crystal SDK for iOS by
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.1 </small></address>
</body>
</html>
|
clean/Linux-x86_64-4.05.0-2.0.1/released/8.6/dictionaries/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>dictionaries: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.6 / dictionaries - 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>
dictionaries
<small>
8.10.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-02-03 17:13:05 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-02-03 17:13:05 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.6 Formal proof management system
num 0 The Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.05.0 The OCaml compiler (virtual package)
ocaml-base-compiler 4.05.0 Official 4.05.0 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.3 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "Hugo.Herbelin@inria.fr"
homepage: "https://github.com/coq-contribs/dictionaries"
license: "LGPL 2.1"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/Dictionaries"]
depends: [
"ocaml"
"coq" {>= "8.10" & < "8.11~"}
]
tags: [
"keyword: modules"
"keyword: functors"
"keyword: search trees"
"category: Computer Science/Data Types and Data Structures"
"category: Miscellaneous/Extracted Programs/Data structures"
"date: 2003-02-6"
]
authors: [
"Pierre Castéran <casteran@labri.fr>"
]
bug-reports: "https://github.com/coq-contribs/dictionaries/issues"
dev-repo: "git+https://github.com/coq-contribs/dictionaries.git"
synopsis: "Dictionaries (with modules)"
description: """
This file contains a specification for dictionaries, and
an implementation using binary search trees. Coq's module system,
with module types and functors, is heavily used. It can be considered
as a certified version of an example proposed by Paulson in Standard ML.
A detailed description (in French) can be found in the chapter 11 of
The Coq'Art, the book written by Yves Bertot and Pierre Castéran
(please follow the link http://coq.inria.fr/doc-eng.html)"""
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/dictionaries/archive/v8.10.0.tar.gz"
checksum: "md5=f3526b8bd66cfea5d80f86ddda5a866f"
}
</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-dictionaries.8.10.0 coq.8.6</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.6).
The following dependencies couldn't be met:
- coq-dictionaries -> coq >= 8.10
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-dictionaries.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>
|
clean/Linux-x86_64-4.03.0-2.0.5/released/8.5.0~camlp4/fcsl-pcm/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>fcsl-pcm: 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 / fcsl-pcm - 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>
fcsl-pcm
<small>
1.0.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2021-12-23 07:49:00 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-12-23 07:49:00 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.03+1 Camlp4 is a system for writing extensible parsers for programming languages
conf-findutils 1 Virtual package relying on findutils
conf-which 1 Virtual package relying on which
coq 8.5.0~camlp4 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
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: "FCSL <fcsl@software.imdea.org>"
homepage: "http://software.imdea.org/fcsl/"
bug-reports: "https://github.com/imdea-software/fcsl-pcm/issues"
dev-repo: "git+https://github.com/imdea-software/fcsl-pcm.git"
license: "Apache-2.0"
build: [ make "-j%{jobs}%" ]
install: [ make "install" ]
depends: [
"ocaml"
"coq" {>= "8.7" & < "8.10~"}
"coq-mathcomp-ssreflect" {>= "1.6.2" & < "1.8~"}
]
tags: [
"keyword:separation logic"
"keyword:partial commutative monoid"
"category:Computer Science/Data Types and Data Structures"
"logpath:fcsl"
]
authors: [
"Aleksandar Nanevski"
]
synopsis: "Partial Commutative Monoids"
description: """
The PCM library provides a formalisation of Partial Commutative Monoids (PCMs),
a common algebraic structure used in separation logic for verification of
pointer-manipulating sequential and concurrent programs.
The library provides lemmas for mechanised and automated reasoning about PCMs
in the abstract, but also supports concrete common PCM instances, such as heaps,
histories and mutexes.
This library relies on extensionality axioms: propositional and
functional extentionality."""
url {
src: "https://github.com/imdea-software/fcsl-pcm/archive/v1.0.0.tar.gz"
checksum: "sha256=2c47a61af567fd9d53a3b9d36bec3d422173d54516b847e0bae4103951c90b41"
}
</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-fcsl-pcm.1.0.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-fcsl-pcm -> coq >= 8.7 -> 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-fcsl-pcm.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">
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.06.1-2.0.5/released/8.7.1/metacoq/1.0~alpha1+8.8.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>metacoq: 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 / metacoq - 1.0~alpha1+8.8</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
metacoq
<small>
1.0~alpha1+8.8
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-02-24 17:13:48 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-02-24 17:13:48 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
camlp5 7.14 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-perl 2 Virtual package relying on perl
coq 8.7.1 Formal proof management system
num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.06.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.06.1 Official 4.06.1 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.3 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "matthieu.sozeau@inria.fr"
homepage: "https://metacoq.github.io/metacoq"
dev-repo: "git+https://github.com/MetaCoq/metacoq.git#coq-8.8"
bug-reports: "https://github.com/MetaCoq/metacoq/issues"
authors: ["Abhishek Anand <aa755@cs.cornell.edu>"
"Simon Boulier <simon.boulier@inria.fr>"
"Cyril Cohen <cyril.cohen@inria.fr>"
"Yannick Forster <forster@ps.uni-saarland.de>"
"Fabian Kunze <fkunze@fakusb.de>"
"Gregory Malecha <gmalecha@gmail.com>"
"Matthieu Sozeau <matthieu.sozeau@inria.fr>"
"Nicolas Tabareau <nicolas.tabareau@inria.fr>"
"Théo Winterhalter <theo.winterhalter@inria.fr>"
]
license: "MIT"
depends: [
"ocaml" {> "4.02.3"}
"coq" {>= "8.8" & < "8.9~"}
"coq-metacoq-template" {= version}
"coq-metacoq-checker" {= version}
"coq-metacoq-pcuic" {= version}
"coq-metacoq-safechecker" {= version}
"coq-metacoq-erasure" {= version}
"coq-metacoq-translations" {= version}
]
synopsis: "A meta-programming framework for Coq"
description: """
MetaCoq is a meta-programming framework for Coq.
The meta-package includes the template-coq library, unverified checker for Coq,
PCUIC development including a verified translation from Coq to PCUIC,
safe checker and erasure for PCUIC and example translations.
See individual packages for more detailed descriptions.
"""
url {
src: "https://github.com/MetaCoq/metacoq/archive/1.0-alpha+8.8.tar.gz"
checksum: "sha256=c2fe122ad30849e99c1e5c100af5490cef0e94246f8eb83f6df3f2ccf9edfc04"
}</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-metacoq.1.0~alpha1+8.8 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-metacoq -> coq-metacoq-safechecker < 1.0~alpha1+8.9 -> coq >= 8.8
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-metacoq.1.0~alpha1+8.8</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>
|
src/index.css
|
Aldlevine/uber-console
|
html, body
{
background: #1C1D21;
color: #CBCDD2;
font-family: Consolas, monaco, monospace;
width: 100%;
height: 100%;
box-sizing: border-box;
margin: 0;
}
#stdout
{
white-space: pre-wrap;
word-break: break-word;
}
#stdout > div
{
padding-left: 1rem;
box-sizing: border-box;
margin-bottom: 0.5rem;
min-height: 1rem;
}
#stdout > div:before
{
content: '<';
left: 0;
position: absolute;
color: gray;
}
#stdout > div[data-type="command"]:before
{
content: '>';
color: teal;
}
#stdin
{
position: relative;
bottom: 0 ;
left: 0;
display: inline-block;;
width: 100%;
min-height: 1em;
padding-left: 1rem;
box-sizing: border-box;
}
#stdin:focus
{
outline: none;
}
#stdin:before
{
content: '>';
left: 0;
position: absolute;
}
[data-type="key"]
{
margin-left: 1rem;
}
[data-type="key"] > div
{
display: inline-block;
vertical-align: top;
}
[data-type="regexp"], [data-type="null"], [data-type="undefined"], [data-type="buffer"], [data-type="boolean"]
{
color: orange;
}
[data-type="number"]
{
color: cyan;
}
[data-type="string"]
{
color: lime;
}
[data-error="true"]
{
color: red;
}
|
doc/classes/LS.CompositePattern.html
|
jagenjo/litescene.js
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>LS.CompositePattern</title>
<link rel="stylesheet" href="http://yui.yahooapis.com/3.9.1/build/cssgrids/cssgrids-min.css">
<link rel="stylesheet" href="../assets/vendor/prettify/prettify-min.css">
<link rel="stylesheet" href="../assets/css/main.css" id="site_styles">
<link rel="icon" href="../assets/favicon.ico">
<script src="http://yui.yahooapis.com/combo?3.9.1/build/yui/yui-min.js"></script>
</head>
<body class="yui3-skin-sam">
<div id="doc">
<div id="hd" class="yui3-g header">
<div class="yui3-u-3-4">
<h1><img src="../assets/css/logo.png" title="" width="117" height="52"></h1>
</div>
<div class="yui3-u-1-4 version">
<em>API Docs for: </em>
</div>
</div>
<div id="bd" class="yui3-g">
<div class="yui3-u-1-4">
<div id="docs-sidebar" class="sidebar apidocs">
<div id="api-list">
<h2 class="off-left">APIs</h2>
<div id="api-tabview" class="tabview">
<ul class="tabs">
<li><a href="#api-classes">Classes</a></li>
<li><a href="#api-modules">Modules</a></li>
</ul>
<div id="api-tabview-filter">
<input type="search" id="api-filter" placeholder="Type to filter APIs">
</div>
<div id="api-tabview-panel">
<ul id="api-classes" class="apis classes">
<li><a href="../classes/LS.Animation.html">LS.Animation</a></li>
<li><a href="../classes/LS.Animation.Take.html">LS.Animation.Take</a></li>
<li><a href="../classes/LS.Animation.Track.html">LS.Animation.Track</a></li>
<li><a href="../classes/LS.BaseComponent.html">LS.BaseComponent</a></li>
<li><a href="../classes/LS.Collision.html">LS.Collision</a></li>
<li><a href="../classes/LS.ComponentContainer.html">LS.ComponentContainer</a></li>
<li><a href="../classes/LS.Components.Camera.html">LS.Components.Camera</a></li>
<li><a href="../classes/LS.Components.CameraController.html">LS.Components.CameraController</a></li>
<li><a href="../classes/LS.Components.CameraDirector.html">LS.Components.CameraDirector</a></li>
<li><a href="../classes/LS.Components.CameraFX.html">LS.Components.CameraFX</a></li>
<li><a href="../classes/LS.Components.Canvas3D.html">LS.Components.Canvas3D</a></li>
<li><a href="../classes/LS.Components.CustomData.html">LS.Components.CustomData</a></li>
<li><a href="../classes/LS.Components.FollowNode.html">LS.Components.FollowNode</a></li>
<li><a href="../classes/LS.Components.FrameFX.html">LS.Components.FrameFX</a></li>
<li><a href="../classes/LS.Components.FXGraphComponent.html">LS.Components.FXGraphComponent</a></li>
<li><a href="../classes/LS.Components.FXStack.html">LS.Components.FXStack</a></li>
<li><a href="../classes/LS.Components.GeometricPrimitive.html">LS.Components.GeometricPrimitive</a></li>
<li><a href="../classes/LS.Components.GraphComponent.html">LS.Components.GraphComponent</a></li>
<li><a href="../classes/LS.Components.Light.html">LS.Components.Light</a></li>
<li><a href="../classes/LS.Components.LightFX.html">LS.Components.LightFX</a></li>
<li><a href="../classes/LS.Components.LinesRenderer.html">LS.Components.LinesRenderer</a></li>
<li><a href="../classes/LS.Components.MeshRenderer.html">LS.Components.MeshRenderer</a></li>
<li><a href="../classes/LS.Components.MorphDeformer.html">LS.Components.MorphDeformer</a></li>
<li><a href="../classes/LS.Components.NodeManipulator.html">LS.Components.NodeManipulator</a></li>
<li><a href="../classes/LS.Components.ParticlesEmissor.html">LS.Components.ParticlesEmissor</a></li>
<li><a href="../classes/LS.Components.PlayAnimation.html">LS.Components.PlayAnimation</a></li>
<li><a href="../classes/LS.Components.Poser.html">LS.Components.Poser</a></li>
<li><a href="../classes/LS.Components.RealtimeReflector.html">LS.Components.RealtimeReflector</a></li>
<li><a href="../classes/LS.Components.Rotator.html">LS.Components.Rotator</a></li>
<li><a href="../classes/LS.Components.SceneInclude.html">LS.Components.SceneInclude</a></li>
<li><a href="../classes/LS.Components.Script.html">LS.Components.Script</a></li>
<li><a href="../classes/LS.Components.SkinDeformer.html">LS.Components.SkinDeformer</a></li>
<li><a href="../classes/LS.Components.Skybox.html">LS.Components.Skybox</a></li>
<li><a href="../classes/LS.Components.Spline.html">LS.Components.Spline</a></li>
<li><a href="../classes/LS.Components.SVGRenderer.html">LS.Components.SVGRenderer</a></li>
<li><a href="../classes/LS.Components.Target.html">LS.Components.Target</a></li>
<li><a href="../classes/LS.Components.Transform.html">LS.Components.Transform</a></li>
<li><a href="../classes/LS.Components.VRCameraController.html">LS.Components.VRCameraController</a></li>
<li><a href="../classes/LS.CompositePattern.html">LS.CompositePattern</a></li>
<li><a href="../classes/LS.DebugRender.html">LS.DebugRender</a></li>
<li><a href="../classes/LS.Draw.html">LS.Draw</a></li>
<li><a href="../classes/LS.Formats.html">LS.Formats</a></li>
<li><a href="../classes/LS.GLSLCode.html">LS.GLSLCode</a></li>
<li><a href="../classes/LS.GraphCode.html">LS.GraphCode</a></li>
<li><a href="../classes/LS.GUI.html">LS.GUI</a></li>
<li><a href="../classes/LS.Input.html">LS.Input</a></li>
<li><a href="../classes/LS.InteractiveController.html">LS.InteractiveController</a></li>
<li><a href="../classes/LS.Knob.html">LS.Knob</a></li>
<li><a href="../classes/LS.LS.html">LS.LS</a></li>
<li><a href="../classes/LS.LScript.html">LS.LScript</a></li>
<li><a href="../classes/LS.Material.html">LS.Material</a></li>
<li><a href="../classes/LS.oldStandardMaterial.html">LS.oldStandardMaterial</a></li>
<li><a href="../classes/LS.Pack.html">LS.Pack</a></li>
<li><a href="../classes/LS.Particle.html">LS.Particle</a></li>
<li><a href="../classes/LS.Physics.html">LS.Physics</a></li>
<li><a href="../classes/LS.PhysicsInstance.html">LS.PhysicsInstance</a></li>
<li><a href="../classes/LS.Picking.html">LS.Picking</a></li>
<li><a href="../classes/LS.Player.html">LS.Player</a></li>
<li><a href="../classes/LS.Prefab.html">LS.Prefab</a></li>
<li><a href="../classes/LS.Project.html">LS.Project</a></li>
<li><a href="../classes/LS.Ray.html">LS.Ray</a></li>
<li><a href="../classes/LS.Renderer.html">LS.Renderer</a></li>
<li><a href="../classes/LS.RenderFrameContext.html">LS.RenderFrameContext</a></li>
<li><a href="../classes/LS.RenderInstance.html">LS.RenderInstance</a></li>
<li><a href="../classes/LS.RenderSettings.html">LS.RenderSettings</a></li>
<li><a href="../classes/LS.RenderState.html">LS.RenderState</a></li>
<li><a href="../classes/LS.Resource.html">LS.Resource</a></li>
<li><a href="../classes/LS.ResourcesManager.html">LS.ResourcesManager</a></li>
<li><a href="../classes/LS.Scene.html">LS.Scene</a></li>
<li><a href="../classes/LS.SceneNode.html">LS.SceneNode</a></li>
<li><a href="../classes/LS.ShaderBlock.html">LS.ShaderBlock</a></li>
<li><a href="../classes/LS.ShaderCode.html">LS.ShaderCode</a></li>
<li><a href="../classes/LS.ShaderMaterial.html">LS.ShaderMaterial</a></li>
<li><a href="../classes/LS.Shaders.html">LS.Shaders</a></li>
<li><a href="../classes/LS.SpatialContainer.html">LS.SpatialContainer</a></li>
<li><a href="../classes/LS.StandardMaterial.html">LS.StandardMaterial</a></li>
<li><a href="../classes/LS.Tween.html">LS.Tween</a></li>
<li><a href="../classes/LS.UnityMaterial.html">LS.UnityMaterial</a></li>
<li><a href="../classes/LS.WBin.html">LS.WBin</a></li>
<li><a href="../classes/LSQ.html">LSQ</a></li>
</ul>
<ul id="api-modules" class="apis modules">
<li><a href="../modules/LS.html">LS</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="yui3-u-3-4">
<div id="api-options">
Show:
<label for="api-show-inherited">
<input type="checkbox" id="api-show-inherited" checked>
Inherited
</label>
<label for="api-show-protected">
<input type="checkbox" id="api-show-protected">
Protected
</label>
<label for="api-show-private">
<input type="checkbox" id="api-show-private">
Private
</label>
<label for="api-show-deprecated">
<input type="checkbox" id="api-show-deprecated">
Deprecated
</label>
</div>
<div class="apidocs">
<div id="docs-main">
<div class="content">
<h1>LS.CompositePattern Class</h1>
<div class="box meta">
<div class="foundat">
Defined in: <a href="../files/.._src_compositePattern.js.html#l2"><code>../src/compositePattern.js:2</code></a>
</div>
Module: <a href="../modules/LS.html">LS</a>
</div>
<div class="box intro">
<p>CompositePattern implements the Composite Pattern, which allows to one class to contain instances of its own class
creating a tree-like structure.</p>
</div>
<div class="constructor">
<h2>Constructor</h2>
<div id="method_LS.CompositePattern" class="method item">
<h3 class="name"><code>LS.CompositePattern</code></h3>
<span class="paren">()</span>
<div class="meta">
<p>
Defined in
<a href="../files/.._src_compositePattern.js.html#l2"><code>../src/compositePattern.js:2</code></a>
</p>
</div>
<div class="description">
</div>
</div>
</div>
<div id="classdocs" class="tabview">
<ul class="api-class-tabs">
<li class="api-class-tab index"><a href="#index">Index</a></li>
<li class="api-class-tab methods"><a href="#methods">Methods</a></li>
</ul>
<div>
<div id="index" class="api-class-tabpanel index">
<h2 class="off-left">Item Index</h2>
<div class="index-section methods">
<h3>Methods</h3>
<ul class="index-list methods">
<li class="index-item method">
<a href="#method_addChild">addChild</a>
</li>
<li class="index-item method">
<a href="#method_configureChildren">configureChildren</a>
</li>
<li class="index-item method">
<a href="#method_findNode">findNode</a>
</li>
<li class="index-item method">
<a href="#method_findNodeByName">findNodeByName</a>
</li>
<li class="index-item method">
<a href="#method_findNodeByUId">findNodeByUId</a>
</li>
<li class="index-item method">
<a href="#method_getChildByIndex">getChildByIndex</a>
</li>
<li class="index-item method">
<a href="#method_getChildByName">getChildByName</a>
</li>
<li class="index-item method">
<a href="#method_getChildIndex">getChildIndex</a>
</li>
<li class="index-item method">
<a href="#method_getChildren">getChildren</a>
</li>
<li class="index-item method">
<a href="#method_getDescendants">getDescendants</a>
</li>
<li class="index-item method">
<a href="#method_getHierarchyLevel">getHierarchyLevel</a>
</li>
<li class="index-item method">
<a href="#method_getParent">getParent</a>
</li>
<li class="index-item method">
<a href="#method_getPathName">getPathName</a>
</li>
<li class="index-item method">
<a href="#method_moveAfter">moveAfter</a>
</li>
<li class="index-item method">
<a href="#method_moveBefore">moveBefore</a>
</li>
<li class="index-item method">
<a href="#method_removeAllChildren">removeAllChildren</a>
</li>
<li class="index-item method">
<a href="#method_removeChild">removeChild</a>
</li>
<li class="index-item method">
<a href="#method_serializeChildren">serializeChildren</a>
</li>
</ul>
</div>
</div>
<div id="methods" class="api-class-tabpanel">
<h2 class="off-left">Methods</h2>
<div id="method_addChild" class="method item">
<h3 class="name"><code>addChild</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code>child</code>
</li>
<li class="arg">
<code>index</code>
</li>
<li class="arg">
<code>options</code>
</li>
</ul><span class="paren">)</span>
</div>
<div class="meta">
<p>
Defined in
<a href="../files/.._src_compositePattern.js.html#l28"><code>../src/compositePattern.js:28</code></a>
</p>
</div>
<div class="description">
<p>Adds one child to this instance</p>
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name">child</code>
<span class="type"></span>
<div class="param-description">
</div>
</li>
<li class="param">
<code class="param-name">index</code>
<span class="type">Number</span>
<div class="param-description">
<p>[optional] in which position you want to insert it, if not specified it goes to the last position</p>
</div>
</li>
<li class="param">
<code class="param-name">options</code>
<span class="type"></span>
<div class="param-description">
<p>[optional] data to be passed when adding it, used for special cases when moving nodes around</p>
</div>
</li>
</ul>
</div>
</div>
<div id="method_configureChildren" class="method item">
<h3 class="name"><code>configureChildren</code></h3>
<span class="paren">()</span>
<span class="returns-inline">
<span class="type">Array</span>
</span>
<div class="meta">
<p>
Defined in
<a href="../files/.._src_compositePattern.js.html#l206"><code>../src/compositePattern.js:206</code></a>
</p>
</div>
<div class="description">
<p>Configure every children with the data</p>
</div>
<div class="returns">
<h4>Returns:</h4>
<div class="returns-description">
<span class="type">Array</span>:
<p>o array containing all serialized data</p>
</div>
</div>
</div>
<div id="method_findNode" class="method item">
<h3 class="name"><code>findNode</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code>name_or_uid</code>
</li>
</ul><span class="paren">)</span>
</div>
<span class="returns-inline">
<span class="type">SceneNode</span>
</span>
<div class="meta">
<p>
Defined in
<a href="../files/.._src_compositePattern.js.html#l441"><code>../src/compositePattern.js:441</code></a>
</p>
</div>
<div class="description">
<p>Search for a node using a string that could be a name, a fullname or a uid</p>
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name">name_or_uid</code>
<span class="type">String</span>
<div class="param-description">
</div>
</li>
</ul>
</div>
<div class="returns">
<h4>Returns:</h4>
<div class="returns-description">
<span class="type">SceneNode</span>:
<p>the node or null</p>
</div>
</div>
</div>
<div id="method_findNodeByName" class="method item">
<h3 class="name"><code>findNodeByName</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code>name</code>
</li>
</ul><span class="paren">)</span>
</div>
<span class="returns-inline">
<span class="type">SceneNode</span>
</span>
<div class="meta">
<p>
Defined in
<a href="../files/.._src_compositePattern.js.html#l458"><code>../src/compositePattern.js:458</code></a>
</p>
</div>
<div class="description">
<p>search a node by its name
this function gets called a lot when using animations</p>
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name">name</code>
<span class="type">String</span>
<div class="param-description">
</div>
</li>
</ul>
</div>
<div class="returns">
<h4>Returns:</h4>
<div class="returns-description">
<span class="type">SceneNode</span>:
<p>the node or null</p>
</div>
</div>
</div>
<div id="method_findNodeByUId" class="method item">
<h3 class="name"><code>findNodeByUId</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code>id</code>
</li>
</ul><span class="paren">)</span>
</div>
<span class="returns-inline">
<span class="type">SceneNode</span>
</span>
<div class="meta">
<p>
Defined in
<a href="../files/.._src_compositePattern.js.html#l493"><code>../src/compositePattern.js:493</code></a>
</p>
</div>
<div class="description">
<p>search a node by its uid</p>
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name">id</code>
<span class="type">String</span>
<div class="param-description">
</div>
</li>
</ul>
</div>
<div class="returns">
<h4>Returns:</h4>
<div class="returns-description">
<span class="type">SceneNode</span>:
<p>the node or null</p>
</div>
</div>
</div>
<div id="method_getChildByIndex" class="method item">
<h3 class="name"><code>getChildByIndex</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code>index</code>
</li>
</ul><span class="paren">)</span>
</div>
<span class="returns-inline">
<span class="type">SceneNode</span>
</span>
<div class="meta">
<p>
Defined in
<a href="../files/.._src_compositePattern.js.html#l267"><code>../src/compositePattern.js:267</code></a>
</p>
</div>
<div class="description">
<p>Returns the child in the index position</p>
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name">index</code>
<span class="type">Number</span>
<div class="param-description">
<p>the index in the array</p>
</div>
</li>
</ul>
</div>
<div class="returns">
<h4>Returns:</h4>
<div class="returns-description">
<span class="type">SceneNode</span>:
<p>the child in that position</p>
</div>
</div>
</div>
<div id="method_getChildByName" class="method item">
<h3 class="name"><code>getChildByName</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code>name</code>
</li>
</ul><span class="paren">)</span>
</div>
<span class="returns-inline">
<span class="type">SceneNode</span>
</span>
<div class="meta">
<p>
Defined in
<a href="../files/.._src_compositePattern.js.html#l278"><code>../src/compositePattern.js:278</code></a>
</p>
</div>
<div class="description">
<p>Returns the child that matches that name</p>
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name">name</code>
<span class="type">String</span>
<div class="param-description">
</div>
</li>
</ul>
</div>
<div class="returns">
<h4>Returns:</h4>
<div class="returns-description">
<span class="type">SceneNode</span>:
<p>the child with that name otherwise returns null;</p>
</div>
</div>
</div>
<div id="method_getChildIndex" class="method item">
<h3 class="name"><code>getChildIndex</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code>child</code>
</li>
</ul><span class="paren">)</span>
</div>
<span class="returns-inline">
<span class="type">Number</span>
</span>
<div class="meta">
<p>
Defined in
<a href="../files/.._src_compositePattern.js.html#l256"><code>../src/compositePattern.js:256</code></a>
</p>
</div>
<div class="description">
<p>returns the index of a child in the children array</p>
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name">child</code>
<span class="type">SceneNode</span>
<div class="param-description">
<p>the child to search for</p>
</div>
</li>
</ul>
</div>
<div class="returns">
<h4>Returns:</h4>
<div class="returns-description">
<span class="type">Number</span>:
<p>the index of this child in the array, if it is not inside returns -1</p>
</div>
</div>
</div>
<div id="method_getChildren" class="method item">
<h3 class="name"><code>getChildren</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code>Original</code>
</li>
</ul><span class="paren">)</span>
</div>
<div class="meta">
<p>
Defined in
<a href="../files/.._src_compositePattern.js.html#l246"><code>../src/compositePattern.js:246</code></a>
</p>
</div>
<div class="description">
<p>returns a list with all direct children (if you want below that use getDescendants)</p>
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name">Original</code>
<span class="type">Array</span>
<div class="param-description">
<p>array containing the children</p>
</div>
</li>
</ul>
</div>
</div>
<div id="method_getDescendants" class="method item">
<h3 class="name"><code>getDescendants</code></h3>
<span class="paren">()</span>
<span class="returns-inline">
<span class="type">Array</span>
</span>
<div class="meta">
<p>
Defined in
<a href="../files/.._src_compositePattern.js.html#l352"><code>../src/compositePattern.js:352</code></a>
</p>
</div>
<div class="description">
<p>get all nodes below this in the hierarchy (children and children of children)</p>
</div>
<div class="returns">
<h4>Returns:</h4>
<div class="returns-description">
<span class="type">Array</span>:
<p>array containing all descendants</p>
</div>
</div>
</div>
<div id="method_getHierarchyLevel" class="method item">
<h3 class="name"><code>getHierarchyLevel</code></h3>
<span class="paren">()</span>
<span class="returns-inline">
<span class="type">Number</span>
</span>
<div class="meta">
<p>
Defined in
<a href="../files/.._src_compositePattern.js.html#l525"><code>../src/compositePattern.js:525</code></a>
</p>
</div>
<div class="description">
<p>returns how many levels deep is the node in the hierarchy</p>
</div>
<div class="returns">
<h4>Returns:</h4>
<div class="returns-description">
<span class="type">Number</span>:
<p>the level, 0 if it is the root</p>
</div>
</div>
</div>
<div id="method_getParent" class="method item">
<h3 class="name"><code>getParent</code></h3>
<span class="paren">()</span>
<span class="returns-inline">
<span class="type">SceneNode</span>
</span>
<div class="meta">
<p>
Defined in
<a href="../files/.._src_compositePattern.js.html#l235"><code>../src/compositePattern.js:235</code></a>
</p>
</div>
<div class="description">
<p>Returns parent node</p>
</div>
<div class="returns">
<h4>Returns:</h4>
<div class="returns-description">
<span class="type">SceneNode</span>:
<p>parent node</p>
</div>
</div>
</div>
<div id="method_getPathName" class="method item">
<h3 class="name"><code>getPathName</code></h3>
<span class="paren">()</span>
<span class="returns-inline">
<span class="type">String</span>
</span>
<div class="meta">
<p>
Defined in
<a href="../files/.._src_compositePattern.js.html#l296"><code>../src/compositePattern.js:296</code></a>
</p>
</div>
<div class="description">
<p>Returns the path name of the node (a path name is a concatenation of the name of the nodes an its ancestors: "root|parent|child"</p>
</div>
<div class="returns">
<h4>Returns:</h4>
<div class="returns-description">
<span class="type">String</span>:
<p>the pathname</p>
</div>
</div>
</div>
<div id="method_moveAfter" class="method item">
<h3 class="name"><code>moveAfter</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code>sibling</code>
</li>
</ul><span class="paren">)</span>
</div>
<span class="returns-inline">
<span class="type">Number</span>
</span>
<div class="meta">
<p>
Defined in
<a href="../files/.._src_compositePattern.js.html#l404"><code>../src/compositePattern.js:404</code></a>
</p>
</div>
<div class="description">
<p>Swaps the index in the children array so it is before</p>
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name">sibling</code>
<span class="type">SceneNode</span>
<div class="param-description">
<p>[optional] allows to put after given node, otherwise it will be moved one position after current position</p>
</div>
</li>
</ul>
</div>
<div class="returns">
<h4>Returns:</h4>
<div class="returns-description">
<span class="type">Number</span>:
<p>new index</p>
</div>
</div>
</div>
<div id="method_moveBefore" class="method item">
<h3 class="name"><code>moveBefore</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code>sibling</code>
</li>
</ul><span class="paren">)</span>
</div>
<span class="returns-inline">
<span class="type">Number</span>
</span>
<div class="meta">
<p>
Defined in
<a href="../files/.._src_compositePattern.js.html#l368"><code>../src/compositePattern.js:368</code></a>
</p>
</div>
<div class="description">
<p>Swaps the index in the children array so it is before</p>
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name">sibling</code>
<span class="type">SceneNode</span>
<div class="param-description">
<p>[optional] allows to put before given node, otherwise it will be moved one position before of current position</p>
</div>
</li>
</ul>
</div>
<div class="returns">
<h4>Returns:</h4>
<div class="returns-description">
<span class="type">Number</span>:
<p>new index</p>
</div>
</div>
</div>
<div id="method_removeAllChildren" class="method item">
<h3 class="name"><code>removeAllChildren</code></h3>
<span class="paren">()</span>
<div class="meta">
<p>
Defined in
<a href="../files/.._src_compositePattern.js.html#l179"><code>../src/compositePattern.js:179</code></a>
</p>
</div>
<div class="description">
<p>Remove every child node</p>
</div>
</div>
<div id="method_removeChild" class="method item">
<h3 class="name"><code>removeChild</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code>node</code>
</li>
<li class="arg">
<code>param1</code>
</li>
<li class="arg">
<code>param2</code>
</li>
</ul><span class="paren">)</span>
</div>
<span class="returns-inline">
<span class="type">Boolean</span>
</span>
<div class="meta">
<p>
Defined in
<a href="../files/.._src_compositePattern.js.html#l122"><code>../src/compositePattern.js:122</code></a>
</p>
</div>
<div class="description">
<p>Removes the node from its parent (and from the scene tree)</p>
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name">node</code>
<span class="type">Node</span>
<div class="param-description">
<p>this child to remove</p>
</div>
</li>
<li class="param">
<code class="param-name">param1</code>
<span class="type"></span>
<div class="param-description">
<p>data passed to onChildRemoved</p>
</div>
</li>
<li class="param">
<code class="param-name">param2</code>
<span class="type"></span>
<div class="param-description">
<p>data passed to onChildRemoved as second parameter</p>
</div>
</li>
</ul>
</div>
<div class="returns">
<h4>Returns:</h4>
<div class="returns-description">
<span class="type">Boolean</span>:
<p>returns true if it was found and removed</p>
</div>
</div>
</div>
<div id="method_serializeChildren" class="method item">
<h3 class="name"><code>serializeChildren</code></h3>
<span class="paren">()</span>
<span class="returns-inline">
<span class="type">Array</span>
</span>
<div class="meta">
<p>
Defined in
<a href="../files/.._src_compositePattern.js.html#l191"><code>../src/compositePattern.js:191</code></a>
</p>
</div>
<div class="description">
<p>Serialize the data from all the children</p>
</div>
<div class="returns">
<h4>Returns:</h4>
<div class="returns-description">
<span class="type">Array</span>:
<p>array containing all serialized data from every children</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="../assets/vendor/prettify/prettify-min.js"></script>
<script>prettyPrint();</script>
<script src="../assets/js/yui-prettify.js"></script>
<script src="../assets/../api.js"></script>
<script src="../assets/js/api-filter.js"></script>
<script src="../assets/js/api-list.js"></script>
<script src="../assets/js/api-search.js"></script>
<script src="../assets/js/apidocs.js"></script>
</body>
</html>
|
hashs-database/hashs/core___themes___stable___css___system___system.diff.css
|
GoZOo/Drupaloscopy
|
8.0.0-rc4:2fee02c31495e6b5df8bf497ddb3a2c4bffe990c341bc32cf51f2737c14e146c
8.0.1:2fee02c31495e6b5df8bf497ddb3a2c4bffe990c341bc32cf51f2737c14e146c
8.0.2:2fee02c31495e6b5df8bf497ddb3a2c4bffe990c341bc32cf51f2737c14e146c
8.0.3:2fee02c31495e6b5df8bf497ddb3a2c4bffe990c341bc32cf51f2737c14e146c
8.0.4:2fee02c31495e6b5df8bf497ddb3a2c4bffe990c341bc32cf51f2737c14e146c
8.0.5:2fee02c31495e6b5df8bf497ddb3a2c4bffe990c341bc32cf51f2737c14e146c
8.0.6:2fee02c31495e6b5df8bf497ddb3a2c4bffe990c341bc32cf51f2737c14e146c
8.1.0-beta1:2fee02c31495e6b5df8bf497ddb3a2c4bffe990c341bc32cf51f2737c14e146c
8.1.0-beta2:2fee02c31495e6b5df8bf497ddb3a2c4bffe990c341bc32cf51f2737c14e146c
8.1.0-rc1:2fee02c31495e6b5df8bf497ddb3a2c4bffe990c341bc32cf51f2737c14e146c
8.1.1:2fee02c31495e6b5df8bf497ddb3a2c4bffe990c341bc32cf51f2737c14e146c
8.1.2:2fee02c31495e6b5df8bf497ddb3a2c4bffe990c341bc32cf51f2737c14e146c
8.1.3:2fee02c31495e6b5df8bf497ddb3a2c4bffe990c341bc32cf51f2737c14e146c
8.1.4:2fee02c31495e6b5df8bf497ddb3a2c4bffe990c341bc32cf51f2737c14e146c
8.1.5:2fee02c31495e6b5df8bf497ddb3a2c4bffe990c341bc32cf51f2737c14e146c
8.1.6:2fee02c31495e6b5df8bf497ddb3a2c4bffe990c341bc32cf51f2737c14e146c
8.1.7:2fee02c31495e6b5df8bf497ddb3a2c4bffe990c341bc32cf51f2737c14e146c
8.1.8:2fee02c31495e6b5df8bf497ddb3a2c4bffe990c341bc32cf51f2737c14e146c
8.1.9:2fee02c31495e6b5df8bf497ddb3a2c4bffe990c341bc32cf51f2737c14e146c
8.1.10:2fee02c31495e6b5df8bf497ddb3a2c4bffe990c341bc32cf51f2737c14e146c
8.2.0-beta1:2fee02c31495e6b5df8bf497ddb3a2c4bffe990c341bc32cf51f2737c14e146c
8.2.0-beta2:2fee02c31495e6b5df8bf497ddb3a2c4bffe990c341bc32cf51f2737c14e146c
8.2.0-beta3:2fee02c31495e6b5df8bf497ddb3a2c4bffe990c341bc32cf51f2737c14e146c
8.2.0-rc1:2fee02c31495e6b5df8bf497ddb3a2c4bffe990c341bc32cf51f2737c14e146c
8.2.0-rc2:2fee02c31495e6b5df8bf497ddb3a2c4bffe990c341bc32cf51f2737c14e146c
8.2.1:2fee02c31495e6b5df8bf497ddb3a2c4bffe990c341bc32cf51f2737c14e146c
8.2.2:2fee02c31495e6b5df8bf497ddb3a2c4bffe990c341bc32cf51f2737c14e146c
8.2.3:2fee02c31495e6b5df8bf497ddb3a2c4bffe990c341bc32cf51f2737c14e146c
8.2.4:2fee02c31495e6b5df8bf497ddb3a2c4bffe990c341bc32cf51f2737c14e146c
8.2.5:2fee02c31495e6b5df8bf497ddb3a2c4bffe990c341bc32cf51f2737c14e146c
8.2.6:2fee02c31495e6b5df8bf497ddb3a2c4bffe990c341bc32cf51f2737c14e146c
8.3.0-alpha1:2fee02c31495e6b5df8bf497ddb3a2c4bffe990c341bc32cf51f2737c14e146c
8.3.0-beta1:2fee02c31495e6b5df8bf497ddb3a2c4bffe990c341bc32cf51f2737c14e146c
8.3.0-rc1:2fee02c31495e6b5df8bf497ddb3a2c4bffe990c341bc32cf51f2737c14e146c
8.2.7:2fee02c31495e6b5df8bf497ddb3a2c4bffe990c341bc32cf51f2737c14e146c
8.3.0-rc2:2fee02c31495e6b5df8bf497ddb3a2c4bffe990c341bc32cf51f2737c14e146c
8.0.0:2fee02c31495e6b5df8bf497ddb3a2c4bffe990c341bc32cf51f2737c14e146c
8.1.0:2fee02c31495e6b5df8bf497ddb3a2c4bffe990c341bc32cf51f2737c14e146c
8.2.0:2fee02c31495e6b5df8bf497ddb3a2c4bffe990c341bc32cf51f2737c14e146c
8.3.0:2fee02c31495e6b5df8bf497ddb3a2c4bffe990c341bc32cf51f2737c14e146c
|
20127e0/html/classv8_1_1String_1_1ExternalStringResource-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 v7.6.0: 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 v7.6.0
</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_1String.html">String</a></li><li class="navelem"><a class="el" href="classv8_1_1String_1_1ExternalStringResource.html">ExternalStringResource</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="headertitle">
<div class="title">v8::String::ExternalStringResource Member List</div> </div>
</div><!--header-->
<div class="contents">
<p>This is the complete list of members for <a class="el" href="classv8_1_1String_1_1ExternalStringResource.html">v8::String::ExternalStringResource</a>, including all inherited members.</p>
<table class="directory">
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1String_1_1ExternalStringResource.html#a987309199b848511adb708e221e0fb0a">data</a>() const =0</td><td class="entry"><a class="el" href="classv8_1_1String_1_1ExternalStringResource.html">v8::String::ExternalStringResource</a></td><td class="entry"><span class="mlabel">pure virtual</span></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1String_1_1ExternalStringResourceBase.html#af4720342ae31e1ab4656df3f15d069c0">Dispose</a>()</td><td class="entry"><a class="el" href="classv8_1_1String_1_1ExternalStringResourceBase.html">v8::String::ExternalStringResourceBase</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">protected</span><span class="mlabel">virtual</span></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>ExternalStringResource</b>() (defined in <a class="el" href="classv8_1_1String_1_1ExternalStringResource.html">v8::String::ExternalStringResource</a>)</td><td class="entry"><a class="el" href="classv8_1_1String_1_1ExternalStringResource.html">v8::String::ExternalStringResource</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">protected</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>ExternalStringResourceBase</b>() (defined in <a class="el" href="classv8_1_1String_1_1ExternalStringResourceBase.html">v8::String::ExternalStringResourceBase</a>)</td><td class="entry"><a class="el" href="classv8_1_1String_1_1ExternalStringResourceBase.html">v8::String::ExternalStringResourceBase</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">protected</span></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>ExternalStringResourceBase</b>(const ExternalStringResourceBase &)=delete (defined in <a class="el" href="classv8_1_1String_1_1ExternalStringResourceBase.html">v8::String::ExternalStringResourceBase</a>)</td><td class="entry"><a class="el" href="classv8_1_1String_1_1ExternalStringResourceBase.html">v8::String::ExternalStringResourceBase</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>IsCompressible</b>() const (defined in <a class="el" href="classv8_1_1String_1_1ExternalStringResourceBase.html">v8::String::ExternalStringResourceBase</a>)</td><td class="entry"><a class="el" href="classv8_1_1String_1_1ExternalStringResourceBase.html">v8::String::ExternalStringResourceBase</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">virtual</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1String_1_1ExternalStringResource.html#ab5ca300fea077d7c7774ec49d32e4da1">length</a>() const =0</td><td class="entry"><a class="el" href="classv8_1_1String_1_1ExternalStringResource.html">v8::String::ExternalStringResource</a></td><td class="entry"><span class="mlabel">pure virtual</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>operator=</b>(const ExternalStringResourceBase &)=delete (defined in <a class="el" href="classv8_1_1String_1_1ExternalStringResourceBase.html">v8::String::ExternalStringResourceBase</a>)</td><td class="entry"><a class="el" href="classv8_1_1String_1_1ExternalStringResourceBase.html">v8::String::ExternalStringResourceBase</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1String_1_1ExternalStringResource.html#a6b7ef9e33a47059092e1447b10c35416">~ExternalStringResource</a>()</td><td class="entry"><a class="el" href="classv8_1_1String_1_1ExternalStringResource.html">v8::String::ExternalStringResource</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">virtual</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>~ExternalStringResourceBase</b>() (defined in <a class="el" href="classv8_1_1String_1_1ExternalStringResourceBase.html">v8::String::ExternalStringResourceBase</a>)</td><td class="entry"><a class="el" href="classv8_1_1String_1_1ExternalStringResourceBase.html">v8::String::ExternalStringResourceBase</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>
|
templates/404.html
|
nims11/Spoj-User-Tool
|
{% extends "base.html" %}
{% block title %}Error 404 | Spoj User Tool by nims11{% endblock %}
{% block content %}
<h1>404</h1>
<p>Page Not Found</p>
{% endblock %}
|
doc/doxy/functions_func_m.html
|
saenridanra/inet-dns-extension
|
<!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>inet_dns_extension: Class Members - Functions</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="navtree.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="resize.js"></script>
<script type="text/javascript" src="navtreedata.js"></script>
<script type="text/javascript" src="navtree.js"></script>
<script type="text/javascript">
$(document).ready(initResizable);
$(window).load(resizeHeight);
</script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<script type="text/javascript">
$(document).ready(function() { init_search(); });
</script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td style="padding-left: 0.5em;">
<div id="projectname">inet_dns_extension
</div>
<div id="projectbrief">OmnetPPDNSExtension</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="pages.html"><span>Related Pages</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>
<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 class="current"><a href="functions.html"><span>Class Members</span></a></li>
</ul>
</div>
<div id="navrow3" class="tabs2">
<ul class="tablist">
<li><a href="functions.html"><span>All</span></a></li>
<li class="current"><a href="functions_func.html"><span>Functions</span></a></li>
<li><a href="functions_vars.html"><span>Variables</span></a></li>
<li><a href="functions_enum.html"><span>Enumerations</span></a></li>
<li><a href="functions_eval.html"><span>Enumerator</span></a></li>
</ul>
</div>
<div id="navrow4" class="tabs3">
<ul class="tablist">
<li><a href="functions_func.html#index_a"><span>a</span></a></li>
<li><a href="functions_func_c.html#index_c"><span>c</span></a></li>
<li><a href="functions_func_d.html#index_d"><span>d</span></a></li>
<li><a href="functions_func_e.html#index_e"><span>e</span></a></li>
<li><a href="functions_func_f.html#index_f"><span>f</span></a></li>
<li><a href="functions_func_g.html#index_g"><span>g</span></a></li>
<li><a href="functions_func_h.html#index_h"><span>h</span></a></li>
<li><a href="functions_func_i.html#index_i"><span>i</span></a></li>
<li class="current"><a href="functions_func_m.html#index_m"><span>m</span></a></li>
<li><a href="functions_func_n.html#index_n"><span>n</span></a></li>
<li><a href="functions_func_o.html#index_o"><span>o</span></a></li>
<li><a href="functions_func_p.html#index_p"><span>p</span></a></li>
<li><a href="functions_func_q.html#index_q"><span>q</span></a></li>
<li><a href="functions_func_r.html#index_r"><span>r</span></a></li>
<li><a href="functions_func_s.html#index_s"><span>s</span></a></li>
<li><a href="functions_func_t.html#index_t"><span>t</span></a></li>
<li><a href="functions_func_u.html#index_u"><span>u</span></a></li>
<li><a href="functions_func_w.html#index_w"><span>w</span></a></li>
<li><a href="functions_func_z.html#index_z"><span>z</span></a></li>
<li><a href="functions_func_~.html#index_~"><span>~</span></a></li>
</ul>
</div>
</div><!-- top -->
<div id="side-nav" class="ui-resizable side-nav-resizable">
<div id="nav-tree">
<div id="nav-tree-contents">
<div id="nav-sync" class="sync"></div>
</div>
</div>
<div id="splitbar" style="-moz-user-select:none;"
class="ui-resizable-handle">
</div>
</div>
<script type="text/javascript">
$(document).ready(function(){initNavTree('functions_func_m.html','');});
</script>
<div id="doc-content">
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div class="contents">
 
<h3><a class="anchor" id="index_m"></a>- m -</h3><ul>
<li>MDNSAnnouncer()
: <a class="el" href="d4/dd9/classINETDNS_1_1MDNSAnnouncer.html#a1866530c0dd9173f8f58df488092c891">INETDNS::MDNSAnnouncer</a>
</li>
<li>MDNSKey()
: <a class="el" href="d1/d7c/structINETDNS_1_1MDNSKey.html#a76318798627303b0702657d84600875e">INETDNS::MDNSKey</a>
</li>
<li>MDNSProbeJob()
: <a class="el" href="d2/d63/structINETDNS_1_1MDNSProbeJob.html#aadb8ea8dc1004faf43eb13b67f10cc1f">INETDNS::MDNSProbeJob</a>
</li>
<li>MDNSProbeScheduler()
: <a class="el" href="d3/db2/classINETDNS_1_1MDNSProbeScheduler.html#ae4c30096a84f4d1f675411b8df219d0d">INETDNS::MDNSProbeScheduler</a>
</li>
<li>MDNSQueryJob()
: <a class="el" href="d0/dbe/structINETDNS_1_1MDNSQueryJob.html#aa27c693a0b9edc58771627d59a835968">INETDNS::MDNSQueryJob</a>
</li>
<li>MDNSQueryScheduler()
: <a class="el" href="da/d51/classINETDNS_1_1MDNSQueryScheduler.html#a0eb43f9a876c1ce8f9d5d4b3a5817c5c">INETDNS::MDNSQueryScheduler</a>
</li>
<li>MDNSResolver()
: <a class="el" href="dc/d51/classMDNSResolver.html#a99ac15e032827d6336c96e79825805f0">MDNSResolver</a>
</li>
<li>MDNSResponseJob()
: <a class="el" href="d1/d30/structINETDNS_1_1MDNSResponseJob.html#a44524a175eab5f95c531fff446c3ce20">INETDNS::MDNSResponseJob</a>
</li>
<li>MDNSResponseScheduler()
: <a class="el" href="d8/d3f/classINETDNS_1_1MDNSResponseScheduler.html#a578fe9ebad6bf6157eecc603b33e453d">INETDNS::MDNSResponseScheduler</a>
</li>
<li>MDNSService()
: <a class="el" href="d0/dff/structINETDNS_1_1MDNSService.html#a0748759236b63db2c534d0a07a5f6eca">INETDNS::MDNSService</a>
</li>
<li>MDNSTrafficGenerator()
: <a class="el" href="d4/dea/classINETDNS_1_1MDNSTrafficGenerator.html#a15496c4484a2fde9ad9b858f1d0783a0">INETDNS::MDNSTrafficGenerator</a>
</li>
</ul>
</div><!-- contents -->
</div><!-- doc-content -->
<!-- start footer part -->
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
<ul>
<li class="footer">Generated on Wed Jun 3 2015 12:38:03 for inet_dns_extension by
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.9.1 </li>
</ul>
</div>
</body>
</html>
|
clean/Linux-x86_64-4.07.1-2.0.6/released/8.7.1/mod-red/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>mod-red: 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 / mod-red - 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>
mod-red
<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/mod-red"
license: "GNU Lesser General Public License"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/ModRed"]
depends: [
"ocaml"
"coq" {>= "8.6" & < "8.7~"}
]
tags: [ "keyword: Algorithms" "keyword: Performance" "keyword: Computer Arithmetic" "keyword: Modular Reduction" "keyword: Optimization" "category: Mathematics/Arithmetic and Number Theory/Miscellaneous" "date: 2007-12; Updated in April 2009" ]
authors: [ "Luc Rutten" ]
bug-reports: "https://github.com/coq-contribs/mod-red/issues"
dev-repo: "git+https://github.com/coq-contribs/mod-red.git"
synopsis: "Efficient Reduction of Large Integers by Small Moduli"
description:
"Fast reduction of integers by moduli up to 2^(w-1), where w is a processor's word size."
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/mod-red/archive/v8.6.0.tar.gz"
checksum: "md5=9ba9cc5fa8083b558fbcbd3000a691f5"
}
</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-mod-red.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-mod-red -> 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-mod-red.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>
|
api/source-class-Symfony.Bridge.Doctrine.Tests.Form.DoctrineOrmTypeGuesserTest.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" />
<meta name="robots" content="noindex" />
<title>File vendor/symfony/symfony/src/Symfony/Bridge/Doctrine/Tests/Form/DoctrineOrmTypeGuesserTest.php | 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><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 class="active"><a href="namespace-Symfony.html">Symfony<span></span></a>
<ul>
<li class="active"><a href="namespace-Symfony.Bridge.html">Bridge<span></span></a>
<ul>
<li class="active"><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 class="active"><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 class="active"><a href="namespace-Symfony.Bridge.Doctrine.Tests.Form.html">Form<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Doctrine.Tests.Form.ChoiceList.html">ChoiceList</a>
</li>
<li><a href="namespace-Symfony.Bridge.Doctrine.Tests.Form.DataTransformer.html">DataTransformer</a>
</li>
<li><a href="namespace-Symfony.Bridge.Doctrine.Tests.Form.Type.html">Type</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bridge.Doctrine.Tests.HttpFoundation.html">HttpFoundation</a>
</li>
<li><a href="namespace-Symfony.Bridge.Doctrine.Tests.Logger.html">Logger</a>
</li>
<li><a href="namespace-Symfony.Bridge.Doctrine.Tests.Security.html">Security<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Doctrine.Tests.Security.User.html">User</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bridge.Doctrine.Tests.Validator.html">Validator<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Doctrine.Tests.Validator.Constraints.html">Constraints</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Bridge.Doctrine.Validator.html">Validator<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Doctrine.Validator.Constraints.html">Constraints</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Bridge.Monolog.html">Monolog<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Monolog.Formatter.html">Formatter</a>
</li>
<li><a href="namespace-Symfony.Bridge.Monolog.Handler.html">Handler</a>
</li>
<li><a href="namespace-Symfony.Bridge.Monolog.Processor.html">Processor</a>
</li>
<li><a href="namespace-Symfony.Bridge.Monolog.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Monolog.Tests.Handler.html">Handler</a>
</li>
<li><a href="namespace-Symfony.Bridge.Monolog.Tests.Processor.html">Processor</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Bridge.Propel1.html">Propel1<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Propel1.DataCollector.html">DataCollector</a>
</li>
<li><a href="namespace-Symfony.Bridge.Propel1.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Propel1.DependencyInjection.Security.html">Security<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Propel1.DependencyInjection.Security.UserProvider.html">UserProvider</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Bridge.Propel1.Form.html">Form<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Propel1.Form.ChoiceList.html">ChoiceList</a>
</li>
<li><a href="namespace-Symfony.Bridge.Propel1.Form.DataTransformer.html">DataTransformer</a>
</li>
<li><a href="namespace-Symfony.Bridge.Propel1.Form.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Symfony.Bridge.Propel1.Form.Type.html">Type</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bridge.Propel1.Logger.html">Logger</a>
</li>
<li><a href="namespace-Symfony.Bridge.Propel1.Security.html">Security<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Propel1.Security.User.html">User</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bridge.Propel1.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Propel1.Tests.DataCollector.html">DataCollector</a>
</li>
<li><a href="namespace-Symfony.Bridge.Propel1.Tests.Fixtures.html">Fixtures</a>
</li>
<li><a href="namespace-Symfony.Bridge.Propel1.Tests.Form.html">Form<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Propel1.Tests.Form.ChoiceList.html">ChoiceList</a>
</li>
<li><a href="namespace-Symfony.Bridge.Propel1.Tests.Form.DataTransformer.html">DataTransformer</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-Symfony.Bridge.ProxyManager.html">ProxyManager<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.ProxyManager.LazyProxy.html">LazyProxy<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.ProxyManager.LazyProxy.Instantiator.html">Instantiator</a>
</li>
<li><a href="namespace-Symfony.Bridge.ProxyManager.LazyProxy.PhpDumper.html">PhpDumper</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bridge.ProxyManager.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.ProxyManager.Tests.LazyProxy.html">LazyProxy<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.ProxyManager.Tests.LazyProxy.Dumper.html">Dumper</a>
</li>
<li><a href="namespace-Symfony.Bridge.ProxyManager.Tests.LazyProxy.Instantiator.html">Instantiator</a>
</li>
<li><a href="namespace-Symfony.Bridge.ProxyManager.Tests.LazyProxy.PhpDumper.html">PhpDumper</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-Symfony.Bridge.Twig.html">Twig<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Twig.Extension.html">Extension</a>
</li>
<li><a href="namespace-Symfony.Bridge.Twig.Form.html">Form</a>
</li>
<li><a href="namespace-Symfony.Bridge.Twig.Node.html">Node</a>
</li>
<li><a href="namespace-Symfony.Bridge.Twig.NodeVisitor.html">NodeVisitor</a>
</li>
<li><a href="namespace-Symfony.Bridge.Twig.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Twig.Tests.Extension.html">Extension<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Twig.Tests.Extension.Fixtures.html">Fixtures</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bridge.Twig.Tests.Node.html">Node</a>
</li>
<li><a href="namespace-Symfony.Bridge.Twig.Tests.NodeVisitor.html">NodeVisitor</a>
</li>
<li><a href="namespace-Symfony.Bridge.Twig.Tests.TokenParser.html">TokenParser</a>
</li>
<li><a href="namespace-Symfony.Bridge.Twig.Tests.Translation.html">Translation</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bridge.Twig.TokenParser.html">TokenParser</a>
</li>
<li><a href="namespace-Symfony.Bridge.Twig.Translation.html">Translation</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Bundle.html">Bundle<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.html">AsseticBundle<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.CacheWarmer.html">CacheWarmer</a>
</li>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Command.html">Command</a>
</li>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Config.html">Config</a>
</li>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Controller.html">Controller</a>
</li>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.DependencyInjection.Compiler.html">Compiler</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Factory.html">Factory<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Factory.Loader.html">Loader</a>
</li>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Factory.Resource.html">Resource</a>
</li>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Factory.Worker.html">Worker</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Routing.html">Routing</a>
</li>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Templating.html">Templating</a>
</li>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Tests.CacheWarmer.html">CacheWarmer</a>
</li>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Tests.Command.html">Command</a>
</li>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Tests.Controller.html">Controller</a>
</li>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Tests.DependencyInjection.html">DependencyInjection</a>
</li>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Tests.Factory.html">Factory<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Tests.Factory.Resource.html">Resource</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Tests.Templating.html">Templating</a>
</li>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Tests.TestBundle.html">TestBundle</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Twig.html">Twig</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.html">FrameworkBundle<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.CacheWarmer.html">CacheWarmer</a>
</li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Command.html">Command</a>
</li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Console.html">Console<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Console.Descriptor.html">Descriptor</a>
</li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Console.Helper.html">Helper</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Controller.html">Controller</a>
</li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.DataCollector.html">DataCollector</a>
</li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.DependencyInjection.Compiler.html">Compiler</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Fragment.html">Fragment</a>
</li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.HttpCache.html">HttpCache</a>
</li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Routing.html">Routing</a>
</li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Templating.html">Templating<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Templating.Asset.html">Asset</a>
</li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Templating.Helper.html">Helper</a>
</li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Templating.Loader.html">Loader</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Test.html">Test</a>
</li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.CacheWarmer.html">CacheWarmer</a>
</li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Console.html">Console<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Console.Descriptor.html">Descriptor</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Controller.html">Controller</a>
</li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.DependencyInjection.Compiler.html">Compiler</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Fixtures.html">Fixtures<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Fixtures.BaseBundle.html">BaseBundle</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Fragment.html">Fragment</a>
</li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Functional.html">Functional<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Functional.app.html">app</a>
</li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Functional.Bundle.html">Bundle<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Functional.Bundle.TestBundle.html">TestBundle<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Functional.Bundle.TestBundle.Controller.html">Controller</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Routing.html">Routing</a>
</li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Templating.html">Templating<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Templating.Helper.html">Helper<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Templating.Helper.Fixtures.html">Fixtures</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Templating.Loader.html">Loader</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Translation.html">Translation</a>
</li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Validator.html">Validator</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Translation.html">Translation</a>
</li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Validator.html">Validator</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.MonologBundle.html">MonologBundle<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.MonologBundle.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.MonologBundle.DependencyInjection.Compiler.html">Compiler</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.MonologBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.MonologBundle.Tests.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.MonologBundle.Tests.DependencyInjection.Compiler.html">Compiler</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.html">SecurityBundle<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Command.html">Command</a>
</li>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.DataCollector.html">DataCollector</a>
</li>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.DependencyInjection.Compiler.html">Compiler</a>
</li>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.DependencyInjection.Security.html">Security<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.DependencyInjection.Security.Factory.html">Factory</a>
</li>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.DependencyInjection.Security.UserProvider.html">UserProvider</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Security.html">Security</a>
</li>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Templating.html">Templating<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Templating.Helper.html">Helper</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Tests.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Tests.DependencyInjection.Security.html">Security<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Tests.DependencyInjection.Security.Factory.html">Factory</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Tests.Functional.html">Functional<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Tests.Functional.app.html">app</a>
</li>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Tests.Functional.Bundle.html">Bundle<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Tests.Functional.Bundle.CsrfFormLoginBundle.html">CsrfFormLoginBundle<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Tests.Functional.Bundle.CsrfFormLoginBundle.Controller.html">Controller</a>
</li>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Tests.Functional.Bundle.CsrfFormLoginBundle.Form.html">Form</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Tests.Functional.Bundle.FormLoginBundle.html">FormLoginBundle<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Tests.Functional.Bundle.FormLoginBundle.Controller.html">Controller</a>
</li>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Tests.Functional.Bundle.FormLoginBundle.DependencyInjection.html">DependencyInjection</a>
</li>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Tests.Functional.Bundle.FormLoginBundle.Security.html">Security</a>
</li>
</ul></li></ul></li></ul></li></ul></li>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Twig.html">Twig<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Twig.Extension.html">Extension</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Bundle.SwiftmailerBundle.html">SwiftmailerBundle<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.SwiftmailerBundle.Command.html">Command</a>
</li>
<li><a href="namespace-Symfony.Bundle.SwiftmailerBundle.DataCollector.html">DataCollector</a>
</li>
<li><a href="namespace-Symfony.Bundle.SwiftmailerBundle.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.SwiftmailerBundle.DependencyInjection.Compiler.html">Compiler</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.SwiftmailerBundle.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Symfony.Bundle.SwiftmailerBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.SwiftmailerBundle.Tests.DependencyInjection.html">DependencyInjection</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Bundle.TwigBundle.html">TwigBundle<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.TwigBundle.CacheWarmer.html">CacheWarmer</a>
</li>
<li><a href="namespace-Symfony.Bundle.TwigBundle.Command.html">Command</a>
</li>
<li><a href="namespace-Symfony.Bundle.TwigBundle.Controller.html">Controller</a>
</li>
<li><a href="namespace-Symfony.Bundle.TwigBundle.Debug.html">Debug</a>
</li>
<li><a href="namespace-Symfony.Bundle.TwigBundle.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.TwigBundle.DependencyInjection.Compiler.html">Compiler</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.TwigBundle.Extension.html">Extension</a>
</li>
<li><a href="namespace-Symfony.Bundle.TwigBundle.Loader.html">Loader</a>
</li>
<li><a href="namespace-Symfony.Bundle.TwigBundle.Node.html">Node</a>
</li>
<li><a href="namespace-Symfony.Bundle.TwigBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.TwigBundle.Tests.Controller.html">Controller</a>
</li>
<li><a href="namespace-Symfony.Bundle.TwigBundle.Tests.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.TwigBundle.Tests.DependencyInjection.Compiler.html">Compiler</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.TwigBundle.Tests.Loader.html">Loader</a>
</li>
<li><a href="namespace-Symfony.Bundle.TwigBundle.Tests.TokenParser.html">TokenParser</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.TwigBundle.TokenParser.html">TokenParser</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.WebProfilerBundle.html">WebProfilerBundle<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.WebProfilerBundle.Controller.html">Controller</a>
</li>
<li><a href="namespace-Symfony.Bundle.WebProfilerBundle.DependencyInjection.html">DependencyInjection</a>
</li>
<li><a href="namespace-Symfony.Bundle.WebProfilerBundle.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Symfony.Bundle.WebProfilerBundle.Profiler.html">Profiler</a>
</li>
<li><a href="namespace-Symfony.Bundle.WebProfilerBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.WebProfilerBundle.Tests.Controller.html">Controller</a>
</li>
<li><a href="namespace-Symfony.Bundle.WebProfilerBundle.Tests.DependencyInjection.html">DependencyInjection</a>
</li>
<li><a href="namespace-Symfony.Bundle.WebProfilerBundle.Tests.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Symfony.Bundle.WebProfilerBundle.Tests.Profiler.html">Profiler</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-Symfony.Component.html">Component<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.BrowserKit.html">BrowserKit<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.BrowserKit.Tests.html">Tests</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.ClassLoader.html">ClassLoader<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.ClassLoader.Tests.html">Tests</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Config.html">Config<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Config.Definition.html">Definition<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Config.Definition.Builder.html">Builder</a>
</li>
<li><a href="namespace-Symfony.Component.Config.Definition.Dumper.html">Dumper</a>
</li>
<li><a href="namespace-Symfony.Component.Config.Definition.Exception.html">Exception</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Config.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.Config.Loader.html">Loader</a>
</li>
<li><a href="namespace-Symfony.Component.Config.Resource.html">Resource</a>
</li>
<li><a href="namespace-Symfony.Component.Config.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Config.Tests.Definition.html">Definition<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Config.Tests.Definition.Builder.html">Builder</a>
</li>
<li><a href="namespace-Symfony.Component.Config.Tests.Definition.Dumper.html">Dumper</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Config.Tests.Fixtures.html">Fixtures<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Config.Tests.Fixtures.Configuration.html">Configuration</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Config.Tests.Loader.html">Loader</a>
</li>
<li><a href="namespace-Symfony.Component.Config.Tests.Resource.html">Resource</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Config.Util.html">Util</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Console.html">Console<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Console.Command.html">Command</a>
</li>
<li><a href="namespace-Symfony.Component.Console.Descriptor.html">Descriptor</a>
</li>
<li><a href="namespace-Symfony.Component.Console.Event.html">Event</a>
</li>
<li><a href="namespace-Symfony.Component.Console.Formatter.html">Formatter</a>
</li>
<li><a href="namespace-Symfony.Component.Console.Helper.html">Helper</a>
</li>
<li><a href="namespace-Symfony.Component.Console.Input.html">Input</a>
</li>
<li><a href="namespace-Symfony.Component.Console.Output.html">Output</a>
</li>
<li><a href="namespace-Symfony.Component.Console.Tester.html">Tester</a>
</li>
<li><a href="namespace-Symfony.Component.Console.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Console.Tests.Command.html">Command</a>
</li>
<li><a href="namespace-Symfony.Component.Console.Tests.Descriptor.html">Descriptor</a>
</li>
<li><a href="namespace-Symfony.Component.Console.Tests.Fixtures.html">Fixtures</a>
</li>
<li><a href="namespace-Symfony.Component.Console.Tests.Formatter.html">Formatter</a>
</li>
<li><a href="namespace-Symfony.Component.Console.Tests.Helper.html">Helper</a>
</li>
<li><a href="namespace-Symfony.Component.Console.Tests.Input.html">Input</a>
</li>
<li><a href="namespace-Symfony.Component.Console.Tests.Output.html">Output</a>
</li>
<li><a href="namespace-Symfony.Component.Console.Tests.Tester.html">Tester</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Component.CssSelector.html">CssSelector<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.CssSelector.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.CssSelector.Node.html">Node</a>
</li>
<li><a href="namespace-Symfony.Component.CssSelector.Parser.html">Parser<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.CssSelector.Parser.Handler.html">Handler</a>
</li>
<li><a href="namespace-Symfony.Component.CssSelector.Parser.Shortcut.html">Shortcut</a>
</li>
<li><a href="namespace-Symfony.Component.CssSelector.Parser.Tokenizer.html">Tokenizer</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.CssSelector.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.CssSelector.Tests.Node.html">Node</a>
</li>
<li><a href="namespace-Symfony.Component.CssSelector.Tests.Parser.html">Parser<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.CssSelector.Tests.Parser.Handler.html">Handler</a>
</li>
<li><a href="namespace-Symfony.Component.CssSelector.Tests.Parser.Shortcut.html">Shortcut</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.CssSelector.Tests.XPath.html">XPath</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.CssSelector.XPath.html">XPath<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.CssSelector.XPath.Extension.html">Extension</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Component.Debug.html">Debug<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Debug.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.Debug.FatalErrorHandler.html">FatalErrorHandler</a>
</li>
<li><a href="namespace-Symfony.Component.Debug.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Debug.Tests.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.Debug.Tests.FatalErrorHandler.html">FatalErrorHandler</a>
</li>
<li><a href="namespace-Symfony.Component.Debug.Tests.Fixtures.html">Fixtures</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Component.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.DependencyInjection.Compiler.html">Compiler</a>
</li>
<li><a href="namespace-Symfony.Component.DependencyInjection.Dump.html">Dump</a>
</li>
<li><a href="namespace-Symfony.Component.DependencyInjection.Dumper.html">Dumper</a>
</li>
<li><a href="namespace-Symfony.Component.DependencyInjection.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.DependencyInjection.Extension.html">Extension</a>
</li>
<li><a href="namespace-Symfony.Component.DependencyInjection.LazyProxy.html">LazyProxy<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.DependencyInjection.LazyProxy.Instantiator.html">Instantiator</a>
</li>
<li><a href="namespace-Symfony.Component.DependencyInjection.LazyProxy.PhpDumper.html">PhpDumper</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.DependencyInjection.Loader.html">Loader</a>
</li>
<li><a href="namespace-Symfony.Component.DependencyInjection.ParameterBag.html">ParameterBag</a>
</li>
<li><a href="namespace-Symfony.Component.DependencyInjection.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.DependencyInjection.Tests.Compiler.html">Compiler</a>
</li>
<li><a href="namespace-Symfony.Component.DependencyInjection.Tests.Dumper.html">Dumper</a>
</li>
<li><a href="namespace-Symfony.Component.DependencyInjection.Tests.Extension.html">Extension</a>
</li>
<li><a href="namespace-Symfony.Component.DependencyInjection.Tests.LazyProxy.html">LazyProxy<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.DependencyInjection.Tests.LazyProxy.Instantiator.html">Instantiator</a>
</li>
<li><a href="namespace-Symfony.Component.DependencyInjection.Tests.LazyProxy.PhpDumper.html">PhpDumper</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.DependencyInjection.Tests.Loader.html">Loader</a>
</li>
<li><a href="namespace-Symfony.Component.DependencyInjection.Tests.ParameterBag.html">ParameterBag</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Component.DomCrawler.html">DomCrawler<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.DomCrawler.Field.html">Field</a>
</li>
<li><a href="namespace-Symfony.Component.DomCrawler.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.DomCrawler.Tests.Field.html">Field</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Component.EventDispatcher.html">EventDispatcher<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.EventDispatcher.Debug.html">Debug</a>
</li>
<li><a href="namespace-Symfony.Component.EventDispatcher.Tests.html">Tests</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.ExpressionLanguage.html">ExpressionLanguage<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.ExpressionLanguage.Node.html">Node</a>
</li>
<li><a href="namespace-Symfony.Component.ExpressionLanguage.ParserCache.html">ParserCache</a>
</li>
<li><a href="namespace-Symfony.Component.ExpressionLanguage.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.ExpressionLanguage.Tests.Node.html">Node</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Component.Filesystem.html">Filesystem<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Filesystem.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.Filesystem.Tests.html">Tests</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Finder.html">Finder<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Finder.Adapter.html">Adapter</a>
</li>
<li><a href="namespace-Symfony.Component.Finder.Comparator.html">Comparator</a>
</li>
<li><a href="namespace-Symfony.Component.Finder.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.Finder.Expression.html">Expression</a>
</li>
<li><a href="namespace-Symfony.Component.Finder.Iterator.html">Iterator</a>
</li>
<li><a href="namespace-Symfony.Component.Finder.Shell.html">Shell</a>
</li>
<li><a href="namespace-Symfony.Component.Finder.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Finder.Tests.Comparator.html">Comparator</a>
</li>
<li><a href="namespace-Symfony.Component.Finder.Tests.Expression.html">Expression</a>
</li>
<li><a href="namespace-Symfony.Component.Finder.Tests.FakeAdapter.html">FakeAdapter</a>
</li>
<li><a href="namespace-Symfony.Component.Finder.Tests.Iterator.html">Iterator</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Component.Form.html">Form<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Form.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Extension.html">Extension<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Form.Extension.Core.html">Core<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Form.Extension.Core.ChoiceList.html">ChoiceList</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Extension.Core.DataMapper.html">DataMapper</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Extension.Core.DataTransformer.html">DataTransformer</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Extension.Core.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Extension.Core.Type.html">Type</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Extension.Core.View.html">View</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Form.Extension.Csrf.html">Csrf<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Form.Extension.Csrf.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Extension.Csrf.Type.html">Type</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Form.Extension.DataCollector.html">DataCollector<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Form.Extension.DataCollector.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Extension.DataCollector.Proxy.html">Proxy</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Extension.DataCollector.Type.html">Type</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Form.Extension.DependencyInjection.html">DependencyInjection</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Extension.HttpFoundation.html">HttpFoundation<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Form.Extension.HttpFoundation.Type.html">Type</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Form.Extension.Templating.html">Templating</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Extension.Validator.html">Validator<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Form.Extension.Validator.Constraints.html">Constraints</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Extension.Validator.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Extension.Validator.Type.html">Type</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Extension.Validator.Util.html">Util</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Extension.Validator.ViolationMapper.html">ViolationMapper</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Component.Form.Guess.html">Guess</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Test.html">Test</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.html">Extension<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.Core.html">Core<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.Core.ChoiceList.html">ChoiceList</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.Core.DataMapper.html">DataMapper</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.Core.DataTransformer.html">DataTransformer</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.Core.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.Core.Type.html">Type</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.Csrf.html">Csrf<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.Csrf.CsrfProvider.html">CsrfProvider</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.Csrf.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.Csrf.Type.html">Type</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.DataCollector.html">DataCollector<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.DataCollector.Type.html">Type</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.HttpFoundation.html">HttpFoundation<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.HttpFoundation.EventListener.html">EventListener</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.Validator.html">Validator<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.Validator.Constraints.html">Constraints</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.Validator.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.Validator.Type.html">Type</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.Validator.Util.html">Util</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.Validator.ViolationMapper.html">ViolationMapper</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Component.Form.Tests.Fixtures.html">Fixtures</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Tests.Guess.html">Guess</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Tests.Util.html">Util</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Form.Util.html">Util</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.HttpFoundation.html">HttpFoundation<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.HttpFoundation.File.html">File<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.HttpFoundation.File.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.HttpFoundation.File.MimeType.html">MimeType</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.HttpFoundation.Session.html">Session<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.HttpFoundation.Session.Attribute.html">Attribute</a>
</li>
<li><a href="namespace-Symfony.Component.HttpFoundation.Session.Flash.html">Flash</a>
</li>
<li><a href="namespace-Symfony.Component.HttpFoundation.Session.Storage.html">Storage<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.HttpFoundation.Session.Storage.Handler.html">Handler</a>
</li>
<li><a href="namespace-Symfony.Component.HttpFoundation.Session.Storage.Proxy.html">Proxy</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Component.HttpFoundation.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.HttpFoundation.Tests.File.html">File<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.HttpFoundation.Tests.File.MimeType.html">MimeType</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.HttpFoundation.Tests.Session.html">Session<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.HttpFoundation.Tests.Session.Attribute.html">Attribute</a>
</li>
<li><a href="namespace-Symfony.Component.HttpFoundation.Tests.Session.Flash.html">Flash</a>
</li>
<li><a href="namespace-Symfony.Component.HttpFoundation.Tests.Session.Storage.html">Storage<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.HttpFoundation.Tests.Session.Storage.Handler.html">Handler</a>
</li>
<li><a href="namespace-Symfony.Component.HttpFoundation.Tests.Session.Storage.Proxy.html">Proxy</a>
</li>
</ul></li></ul></li></ul></li></ul></li>
<li><a href="namespace-Symfony.Component.HttpKernel.html">HttpKernel<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.HttpKernel.Bundle.html">Bundle</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.CacheClearer.html">CacheClearer</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.CacheWarmer.html">CacheWarmer</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Config.html">Config</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Controller.html">Controller</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.DataCollector.html">DataCollector<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.HttpKernel.DataCollector.Util.html">Util</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.HttpKernel.Debug.html">Debug</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.DependencyInjection.html">DependencyInjection</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Event.html">Event</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Fragment.html">Fragment</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.HttpCache.html">HttpCache</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Log.html">Log</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Profiler.html">Profiler</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.Bundle.html">Bundle</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.CacheClearer.html">CacheClearer</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.CacheWarmer.html">CacheWarmer</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.Config.html">Config</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.Controller.html">Controller</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.DataCollector.html">DataCollector</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.Debug.html">Debug</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.DependencyInjection.html">DependencyInjection</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.Fixtures.html">Fixtures<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.Fixtures.ExtensionAbsentBundle.html">ExtensionAbsentBundle</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.Fixtures.ExtensionLoadedBundle.html">ExtensionLoadedBundle<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.Fixtures.ExtensionLoadedBundle.DependencyInjection.html">DependencyInjection</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.Fixtures.ExtensionPresentBundle.html">ExtensionPresentBundle<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.Fixtures.ExtensionPresentBundle.Command.html">Command</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.Fixtures.ExtensionPresentBundle.DependencyInjection.html">DependencyInjection</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.Fragment.html">Fragment</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.HttpCache.html">HttpCache</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.Profiler.html">Profiler<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.Profiler.Mock.html">Mock</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-Symfony.Component.Icu.html">Icu<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Icu.Tests.html">Tests</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Intl.html">Intl<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Intl.Collator.html">Collator</a>
</li>
<li><a href="namespace-Symfony.Component.Intl.DateFormatter.html">DateFormatter<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Intl.DateFormatter.DateFormat.html">DateFormat</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Intl.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.Intl.Globals.html">Globals</a>
</li>
<li><a href="namespace-Symfony.Component.Intl.Locale.html">Locale</a>
</li>
<li><a href="namespace-Symfony.Component.Intl.NumberFormatter.html">NumberFormatter</a>
</li>
<li><a href="namespace-Symfony.Component.Intl.ResourceBundle.html">ResourceBundle<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Intl.ResourceBundle.Compiler.html">Compiler</a>
</li>
<li><a href="namespace-Symfony.Component.Intl.ResourceBundle.Reader.html">Reader</a>
</li>
<li><a href="namespace-Symfony.Component.Intl.ResourceBundle.Transformer.html">Transformer<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Intl.ResourceBundle.Transformer.Rule.html">Rule</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Intl.ResourceBundle.Util.html">Util</a>
</li>
<li><a href="namespace-Symfony.Component.Intl.ResourceBundle.Writer.html">Writer</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Intl.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Intl.Tests.Collator.html">Collator<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Intl.Tests.Collator.Verification.html">Verification</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Intl.Tests.DateFormatter.html">DateFormatter<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Intl.Tests.DateFormatter.Verification.html">Verification</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Intl.Tests.Globals.html">Globals<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Intl.Tests.Globals.Verification.html">Verification</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Intl.Tests.Locale.html">Locale<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Intl.Tests.Locale.Verification.html">Verification</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Intl.Tests.NumberFormatter.html">NumberFormatter<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Intl.Tests.NumberFormatter.Verification.html">Verification</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Intl.Tests.ResourceBundle.html">ResourceBundle<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Intl.Tests.ResourceBundle.Reader.html">Reader</a>
</li>
<li><a href="namespace-Symfony.Component.Intl.Tests.ResourceBundle.Util.html">Util</a>
</li>
<li><a href="namespace-Symfony.Component.Intl.Tests.ResourceBundle.Writer.html">Writer</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Intl.Tests.Util.html">Util</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Intl.Util.html">Util</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Locale.html">Locale<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Locale.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Locale.Tests.Stub.html">Stub</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Component.OptionsResolver.html">OptionsResolver<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.OptionsResolver.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.OptionsResolver.Tests.html">Tests</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Process.html">Process<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Process.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.Process.Tests.html">Tests</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.PropertyAccess.html">PropertyAccess<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.PropertyAccess.Exception.html">Exception</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Routing.html">Routing<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Routing.Annotation.html">Annotation</a>
</li>
<li><a href="namespace-Symfony.Component.Routing.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.Routing.Generator.html">Generator<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Routing.Generator.Dumper.html">Dumper</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Routing.Loader.html">Loader</a>
</li>
<li><a href="namespace-Symfony.Component.Routing.Matcher.html">Matcher<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Routing.Matcher.Dumper.html">Dumper</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Routing.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Routing.Tests.Annotation.html">Annotation</a>
</li>
<li><a href="namespace-Symfony.Component.Routing.Tests.Fixtures.html">Fixtures<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Routing.Tests.Fixtures.AnnotatedClasses.html">AnnotatedClasses</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Routing.Tests.Generator.html">Generator<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Routing.Tests.Generator.Dumper.html">Dumper</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Routing.Tests.Loader.html">Loader</a>
</li>
<li><a href="namespace-Symfony.Component.Routing.Tests.Matcher.html">Matcher<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Routing.Tests.Matcher.Dumper.html">Dumper</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-Symfony.Component.Security.html">Security<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Security.Acl.html">Acl<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Security.Acl.Dbal.html">Dbal</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Acl.Domain.html">Domain</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Acl.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Acl.Model.html">Model</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Acl.Permission.html">Permission</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Acl.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Security.Acl.Tests.Dbal.html">Dbal</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Acl.Tests.Domain.html">Domain</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Acl.Tests.Permission.html">Permission</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Acl.Tests.Voter.html">Voter</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Security.Acl.Voter.html">Voter</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Security.Core.html">Core<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Security.Core.Authentication.html">Authentication<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Security.Core.Authentication.Provider.html">Provider</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Core.Authentication.RememberMe.html">RememberMe</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Core.Authentication.Token.html">Token</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Security.Core.Authorization.html">Authorization<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Security.Core.Authorization.Voter.html">Voter</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Security.Core.Encoder.html">Encoder</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Core.Event.html">Event</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Core.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Core.Role.html">Role</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Core.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Security.Core.Tests.Authentication.html">Authentication<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Security.Core.Tests.Authentication.Provider.html">Provider</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Core.Tests.Authentication.RememberMe.html">RememberMe</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Core.Tests.Authentication.Token.html">Token</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Security.Core.Tests.Authorization.html">Authorization<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Security.Core.Tests.Authorization.Voter.html">Voter</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Security.Core.Tests.Encoder.html">Encoder</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Core.Tests.Role.html">Role</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Core.Tests.User.html">User</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Core.Tests.Util.html">Util</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Core.Tests.Validator.html">Validator<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Security.Core.Tests.Validator.Constraints.html">Constraints</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Component.Security.Core.User.html">User</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Core.Util.html">Util</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Core.Validator.html">Validator<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Security.Core.Validator.Constraints.html">Constraints</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Component.Security.Csrf.html">Csrf<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Security.Csrf.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Csrf.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Security.Csrf.Tests.TokenGenerator.html">TokenGenerator</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Csrf.Tests.TokenStorage.html">TokenStorage</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Security.Csrf.TokenGenerator.html">TokenGenerator</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Csrf.TokenStorage.html">TokenStorage</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Security.Http.html">Http<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Security.Http.Authentication.html">Authentication</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Http.Authorization.html">Authorization</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Http.EntryPoint.html">EntryPoint</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Http.Event.html">Event</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Http.Firewall.html">Firewall</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Http.Logout.html">Logout</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Http.RememberMe.html">RememberMe</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Http.Session.html">Session</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Http.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Security.Http.Tests.Authentication.html">Authentication</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Http.Tests.EntryPoint.html">EntryPoint</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Http.Tests.Firewall.html">Firewall</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Http.Tests.Logout.html">Logout</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Http.Tests.RememberMe.html">RememberMe</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Http.Tests.Session.html">Session</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Component.Security.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Security.Tests.Core.html">Core<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Security.Tests.Core.Authentication.html">Authentication<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Security.Tests.Core.Authentication.Token.html">Token</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Security.Tests.Core.User.html">User</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Security.Tests.Http.html">Http<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Security.Tests.Http.Firewall.html">Firewall</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-Symfony.Component.Serializer.html">Serializer<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Serializer.Encoder.html">Encoder</a>
</li>
<li><a href="namespace-Symfony.Component.Serializer.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.Serializer.Normalizer.html">Normalizer</a>
</li>
<li><a href="namespace-Symfony.Component.Serializer.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Serializer.Tests.Encoder.html">Encoder</a>
</li>
<li><a href="namespace-Symfony.Component.Serializer.Tests.Fixtures.html">Fixtures</a>
</li>
<li><a href="namespace-Symfony.Component.Serializer.Tests.Normalizer.html">Normalizer</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Component.Stopwatch.html">Stopwatch</a>
</li>
<li><a href="namespace-Symfony.Component.Templating.html">Templating<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Templating.Asset.html">Asset</a>
</li>
<li><a href="namespace-Symfony.Component.Templating.Helper.html">Helper</a>
</li>
<li><a href="namespace-Symfony.Component.Templating.Loader.html">Loader</a>
</li>
<li><a href="namespace-Symfony.Component.Templating.Storage.html">Storage</a>
</li>
<li><a href="namespace-Symfony.Component.Templating.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Templating.Tests.Fixtures.html">Fixtures</a>
</li>
<li><a href="namespace-Symfony.Component.Templating.Tests.Helper.html">Helper</a>
</li>
<li><a href="namespace-Symfony.Component.Templating.Tests.Loader.html">Loader</a>
</li>
<li><a href="namespace-Symfony.Component.Templating.Tests.Storage.html">Storage</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Component.Translation.html">Translation<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Translation.Catalogue.html">Catalogue</a>
</li>
<li><a href="namespace-Symfony.Component.Translation.Dumper.html">Dumper</a>
</li>
<li><a href="namespace-Symfony.Component.Translation.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.Translation.Extractor.html">Extractor</a>
</li>
<li><a href="namespace-Symfony.Component.Translation.Loader.html">Loader</a>
</li>
<li><a href="namespace-Symfony.Component.Translation.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Translation.Tests.Catalogue.html">Catalogue</a>
</li>
<li><a href="namespace-Symfony.Component.Translation.Tests.Dumper.html">Dumper</a>
</li>
<li><a href="namespace-Symfony.Component.Translation.Tests.Loader.html">Loader</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Translation.Writer.html">Writer</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Validator.html">Validator<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Validator.Constraints.html">Constraints</a>
</li>
<li><a href="namespace-Symfony.Component.Validator.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.Validator.Mapping.html">Mapping<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Validator.Mapping.Cache.html">Cache</a>
</li>
<li><a href="namespace-Symfony.Component.Validator.Mapping.Loader.html">Loader</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Validator.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Validator.Tests.Constraints.html">Constraints</a>
</li>
<li><a href="namespace-Symfony.Component.Validator.Tests.Fixtures.html">Fixtures</a>
</li>
<li><a href="namespace-Symfony.Component.Validator.Tests.Mapping.html">Mapping<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Validator.Tests.Mapping.Cache.html">Cache</a>
</li>
<li><a href="namespace-Symfony.Component.Validator.Tests.Mapping.Loader.html">Loader</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-Symfony.Component.Yaml.html">Yaml<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Yaml.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.Yaml.Tests.html">Tests</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-Tecnocreaciones.html">Tecnocreaciones<span></span></a>
<ul>
<li><a href="namespace-Tecnocreaciones.Bundle.html">Bundle<span></span></a>
<ul>
<li><a href="namespace-Tecnocreaciones.Bundle.AjaxFOSUserBundle.html">AjaxFOSUserBundle<span></span></a>
<ul>
<li><a href="namespace-Tecnocreaciones.Bundle.AjaxFOSUserBundle.Controller.html">Controller</a>
</li>
<li><a href="namespace-Tecnocreaciones.Bundle.AjaxFOSUserBundle.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Tecnocreaciones.Bundle.AjaxFOSUserBundle.DependencyInjection.Compiler.html">Compiler</a>
</li>
</ul></li>
<li><a href="namespace-Tecnocreaciones.Bundle.AjaxFOSUserBundle.Event.html">Event</a>
</li>
<li><a href="namespace-Tecnocreaciones.Bundle.AjaxFOSUserBundle.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Tecnocreaciones.Bundle.AjaxFOSUserBundle.Handler.html">Handler</a>
</li>
<li><a href="namespace-Tecnocreaciones.Bundle.AjaxFOSUserBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Tecnocreaciones.Bundle.AjaxFOSUserBundle.Tests.Controller.html">Controller</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Tecnocreaciones.Bundle.InstallBundle.html">InstallBundle<span></span></a>
<ul>
<li><a href="namespace-Tecnocreaciones.Bundle.InstallBundle.Command.html">Command</a>
</li>
<li><a href="namespace-Tecnocreaciones.Bundle.InstallBundle.DependencyInjection.html">DependencyInjection</a>
</li>
<li><a href="namespace-Tecnocreaciones.Bundle.InstallBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Tecnocreaciones.Bundle.InstallBundle.Tests.Controller.html">Controller</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Tecnocreaciones.Bundle.TemplateBundle.html">TemplateBundle<span></span></a>
<ul>
<li><a href="namespace-Tecnocreaciones.Bundle.TemplateBundle.Controller.html">Controller</a>
</li>
<li><a href="namespace-Tecnocreaciones.Bundle.TemplateBundle.DependencyInjection.html">DependencyInjection</a>
</li>
<li><a href="namespace-Tecnocreaciones.Bundle.TemplateBundle.Menu.html">Menu<span></span></a>
<ul>
<li><a href="namespace-Tecnocreaciones.Bundle.TemplateBundle.Menu.Template.html">Template<span></span></a>
<ul>
<li><a href="namespace-Tecnocreaciones.Bundle.TemplateBundle.Menu.Template.Developer.html">Developer</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Tecnocreaciones.Bundle.TemplateBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Tecnocreaciones.Bundle.TemplateBundle.Tests.Controller.html">Controller</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-Tecnocreaciones.Vzla.html">Vzla<span></span></a>
<ul>
<li><a href="namespace-Tecnocreaciones.Vzla.GovernmentBundle.html">GovernmentBundle<span></span></a>
<ul>
<li><a href="namespace-Tecnocreaciones.Vzla.GovernmentBundle.DependencyInjection.html">DependencyInjection</a>
</li>
<li><a href="namespace-Tecnocreaciones.Vzla.GovernmentBundle.Form.html">Form<span></span></a>
<ul>
<li><a href="namespace-Tecnocreaciones.Vzla.GovernmentBundle.Form.Type.html">Type</a>
</li>
</ul></li>
<li><a href="namespace-Tecnocreaciones.Vzla.GovernmentBundle.Menu.html">Menu<span></span></a>
<ul>
<li><a href="namespace-Tecnocreaciones.Vzla.GovernmentBundle.Menu.Template.html">Template<span></span></a>
<ul>
<li><a href="namespace-Tecnocreaciones.Vzla.GovernmentBundle.Menu.Template.Developer.html">Developer</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Tecnocreaciones.Vzla.GovernmentBundle.Model.html">Model</a>
</li>
<li><a href="namespace-Tecnocreaciones.Vzla.GovernmentBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Tecnocreaciones.Vzla.GovernmentBundle.Tests.Controller.html">Controller</a>
</li>
</ul></li>
<li><a href="namespace-Tecnocreaciones.Vzla.GovernmentBundle.Twig.html">Twig<span></span></a>
<ul>
<li><a href="namespace-Tecnocreaciones.Vzla.GovernmentBundle.Twig.Extension.html">Extension</a>
</li>
</ul></li></ul></li></ul></li></ul></li>
<li><a href="namespace-TestBundle.html">TestBundle<span></span></a>
<ul>
<li><a href="namespace-TestBundle.Fabpot.html">Fabpot<span></span></a>
<ul>
<li><a href="namespace-TestBundle.Fabpot.FooBundle.html">FooBundle<span></span></a>
<ul>
<li><a href="namespace-TestBundle.Fabpot.FooBundle.Controller.html">Controller</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-TestBundle.FooBundle.html">FooBundle<span></span></a>
<ul>
<li><a href="namespace-TestBundle.FooBundle.Controller.html">Controller<span></span></a>
<ul>
<li><a href="namespace-TestBundle.FooBundle.Controller.Sub.html">Sub</a>
</li>
<li><a href="namespace-TestBundle.FooBundle.Controller.Test.html">Test</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-TestBundle.Sensio.html">Sensio<span></span></a>
<ul>
<li><a href="namespace-TestBundle.Sensio.Cms.html">Cms<span></span></a>
<ul>
<li><a href="namespace-TestBundle.Sensio.Cms.FooBundle.html">FooBundle<span></span></a>
<ul>
<li><a href="namespace-TestBundle.Sensio.Cms.FooBundle.Controller.html">Controller</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-TestBundle.Sensio.FooBundle.html">FooBundle<span></span></a>
<ul>
<li><a href="namespace-TestBundle.Sensio.FooBundle.Controller.html">Controller</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-TestFixtures.html">TestFixtures</a>
</li>
<li><a href="namespace-Timestampable.html">Timestampable<span></span></a>
<ul>
<li><a href="namespace-Timestampable.Fixture.html">Fixture<span></span></a>
<ul>
<li><a href="namespace-Timestampable.Fixture.Document.html">Document</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Tool.html">Tool</a>
</li>
<li><a href="namespace-Translatable.html">Translatable<span></span></a>
<ul>
<li><a href="namespace-Translatable.Fixture.html">Fixture<span></span></a>
<ul>
<li><a href="namespace-Translatable.Fixture.Document.html">Document<span></span></a>
<ul>
<li><a href="namespace-Translatable.Fixture.Document.Personal.html">Personal</a>
</li>
</ul></li>
<li><a href="namespace-Translatable.Fixture.Issue114.html">Issue114</a>
</li>
<li><a href="namespace-Translatable.Fixture.Issue138.html">Issue138</a>
</li>
<li><a href="namespace-Translatable.Fixture.Issue165.html">Issue165</a>
</li>
<li><a href="namespace-Translatable.Fixture.Issue173.html">Issue173</a>
</li>
<li><a href="namespace-Translatable.Fixture.Issue75.html">Issue75</a>
</li>
<li><a href="namespace-Translatable.Fixture.Issue922.html">Issue922</a>
</li>
<li><a href="namespace-Translatable.Fixture.Personal.html">Personal</a>
</li>
<li><a href="namespace-Translatable.Fixture.Template.html">Template</a>
</li>
<li><a href="namespace-Translatable.Fixture.Type.html">Type</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Translator.html">Translator<span></span></a>
<ul>
<li><a href="namespace-Translator.Fixture.html">Fixture</a>
</li>
</ul></li>
<li><a href="namespace-Tree.html">Tree<span></span></a>
<ul>
<li><a href="namespace-Tree.Fixture.html">Fixture<span></span></a>
<ul>
<li><a href="namespace-Tree.Fixture.Closure.html">Closure</a>
</li>
<li><a href="namespace-Tree.Fixture.Document.html">Document</a>
</li>
<li><a href="namespace-Tree.Fixture.Genealogy.html">Genealogy</a>
</li>
<li><a href="namespace-Tree.Fixture.Mock.html">Mock</a>
</li>
<li><a href="namespace-Tree.Fixture.Repository.html">Repository</a>
</li>
<li><a href="namespace-Tree.Fixture.Transport.html">Transport</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Uploadable.html">Uploadable<span></span></a>
<ul>
<li><a href="namespace-Uploadable.Fixture.html">Fixture<span></span></a>
<ul>
<li><a href="namespace-Uploadable.Fixture.Entity.html">Entity</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Wrapper.html">Wrapper<span></span></a>
<ul>
<li><a href="namespace-Wrapper.Fixture.html">Fixture<span></span></a>
<ul>
<li><a href="namespace-Wrapper.Fixture.Document.html">Document</a>
</li>
<li><a href="namespace-Wrapper.Fixture.Entity.html">Entity</a>
</li>
</ul></li></ul></li>
</ul>
</div>
<hr />
<div id="elements">
<h3>Classes</h3>
<ul>
<li class="active"><a href="class-Symfony.Bridge.Doctrine.Tests.Form.DoctrineOrmTypeGuesserTest.html">DoctrineOrmTypeGuesserTest</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-Symfony.Bridge.Doctrine.Tests.Form.html" title="Summary of Symfony\Bridge\Doctrine\Tests\Form"><span>Namespace</span></a>
</li>
<li>
<a href="class-Symfony.Bridge.Doctrine.Tests.Form.DoctrineOrmTypeGuesserTest.html" title="Summary of Symfony\Bridge\Doctrine\Tests\Form\DoctrineOrmTypeGuesserTest"><span>Class</span></a>
</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>
<pre><code><span id="1" class="l"><a class="l" href="#1"> 1: </a><span class="xlang"><?php</span>
</span><span id="2" class="l"><a class="l" href="#2"> 2: </a>
</span><span id="3" class="l"><a class="l" href="#3"> 3: </a><span class="php-comment">/*
</span></span><span id="4" class="l"><a class="l" href="#4"> 4: </a><span class="php-comment"> * This file is part of the Symfony package.
</span></span><span id="5" class="l"><a class="l" href="#5"> 5: </a><span class="php-comment"> *
</span></span><span id="6" class="l"><a class="l" href="#6"> 6: </a><span class="php-comment"> * (c) Fabien Potencier <fabien@symfony.com>
</span></span><span id="7" class="l"><a class="l" href="#7"> 7: </a><span class="php-comment"> *
</span></span><span id="8" class="l"><a class="l" href="#8"> 8: </a><span class="php-comment"> * For the full copyright and license information, please view the LICENSE
</span></span><span id="9" class="l"><a class="l" href="#9"> 9: </a><span class="php-comment"> * file that was distributed with this source code.
</span></span><span id="10" class="l"><a class="l" href="#10">10: </a><span class="php-comment"> */</span>
</span><span id="11" class="l"><a class="l" href="#11">11: </a>
</span><span id="12" class="l"><a class="l" href="#12">12: </a><span class="php-keyword1">namespace</span> Symfony\Bridge\Doctrine\Tests\Form;
</span><span id="13" class="l"><a class="l" href="#13">13: </a>
</span><span id="14" class="l"><a class="l" href="#14">14: </a><span class="php-keyword1">use</span> Doctrine\Common\Persistence\Mapping\ClassMetadata;
</span><span id="15" class="l"><a class="l" href="#15">15: </a><span class="php-keyword1">use</span> Symfony\Bridge\Doctrine\Form\DoctrineOrmTypeGuesser;
</span><span id="16" class="l"><a class="l" href="#16">16: </a><span class="php-keyword1">use</span> Symfony\Component\Form\Guess\Guess;
</span><span id="17" class="l"><a class="l" href="#17">17: </a><span class="php-keyword1">use</span> Symfony\Component\Form\Guess\ValueGuess;
</span><span id="18" class="l"><a class="l" href="#18">18: </a>
</span><span id="19" class="l"><a class="l" href="#19">19: </a><span class="php-keyword1">class</span> <a id="DoctrineOrmTypeGuesserTest" href="#DoctrineOrmTypeGuesserTest">DoctrineOrmTypeGuesserTest</a> <span class="php-keyword1">extends</span> \PHPUnit_Framework_TestCase
</span><span id="20" class="l"><a class="l" href="#20">20: </a>{
</span><span id="21" class="l"><a class="l" href="#21">21: </a> <span class="php-comment">/**
</span></span><span id="22" class="l"><a class="l" href="#22">22: </a><span class="php-comment"> * @dataProvider requiredProvider
</span></span><span id="23" class="l"><a class="l" href="#23">23: </a><span class="php-comment"> */</span>
</span><span id="24" class="l"><a class="l" href="#24">24: </a> <span class="php-keyword1">public</span> <span class="php-keyword1">function</span> <a id="_testRequiredGuesser" href="#_testRequiredGuesser">testRequiredGuesser</a>(<span class="php-var">$classMetadata</span>, <span class="php-var">$expected</span>)
</span><span id="25" class="l"><a class="l" href="#25">25: </a> {
</span><span id="26" class="l"><a class="l" href="#26">26: </a> <span class="php-var">$this</span>->assertEquals(<span class="php-var">$expected</span>, <span class="php-var">$this</span>->getGuesser(<span class="php-var">$classMetadata</span>)->guessRequired(<span class="php-quote">'TestEntity'</span>, <span class="php-quote">'field'</span>));
</span><span id="27" class="l"><a class="l" href="#27">27: </a> }
</span><span id="28" class="l"><a class="l" href="#28">28: </a>
</span><span id="29" class="l"><a class="l" href="#29">29: </a> <span class="php-keyword1">public</span> <span class="php-keyword1">function</span> <a id="_requiredProvider" href="#_requiredProvider">requiredProvider</a>()
</span><span id="30" class="l"><a class="l" href="#30">30: </a> {
</span><span id="31" class="l"><a class="l" href="#31">31: </a> <span class="php-var">$return</span> = <span class="php-keyword1">array</span>();
</span><span id="32" class="l"><a class="l" href="#32">32: </a>
</span><span id="33" class="l"><a class="l" href="#33">33: </a> <span class="php-comment">// Simple field, not nullable</span>
</span><span id="34" class="l"><a class="l" href="#34">34: </a> <span class="php-var">$classMetadata</span> = <span class="php-var">$this</span>->getMockBuilder(<span class="php-quote">'Doctrine\ORM\Mapping\ClassMetadata'</span>)->disableOriginalConstructor()->getMock();
</span><span id="35" class="l"><a class="l" href="#35">35: </a> <span class="php-var">$classMetadata</span>->expects(<span class="php-var">$this</span>->once())->method(<span class="php-quote">'hasField'</span>)->with(<span class="php-quote">'field'</span>)->will(<span class="php-var">$this</span>->returnValue(<span class="php-keyword1">true</span>));
</span><span id="36" class="l"><a class="l" href="#36">36: </a> <span class="php-var">$classMetadata</span>->expects(<span class="php-var">$this</span>->once())->method(<span class="php-quote">'isNullable'</span>)->with(<span class="php-quote">'field'</span>)->will(<span class="php-var">$this</span>->returnValue(<span class="php-keyword1">false</span>));
</span><span id="37" class="l"><a class="l" href="#37">37: </a>
</span><span id="38" class="l"><a class="l" href="#38">38: </a> <span class="php-var">$return</span>[] = <span class="php-keyword1">array</span>(<span class="php-var">$classMetadata</span>, <span class="php-keyword1">new</span> ValueGuess(<span class="php-keyword1">true</span>, Guess::HIGH_CONFIDENCE));
</span><span id="39" class="l"><a class="l" href="#39">39: </a>
</span><span id="40" class="l"><a class="l" href="#40">40: </a> <span class="php-comment">// Simple field, nullable</span>
</span><span id="41" class="l"><a class="l" href="#41">41: </a> <span class="php-var">$classMetadata</span> = <span class="php-var">$this</span>->getMockBuilder(<span class="php-quote">'Doctrine\ORM\Mapping\ClassMetadata'</span>)->disableOriginalConstructor()->getMock();
</span><span id="42" class="l"><a class="l" href="#42">42: </a> <span class="php-var">$classMetadata</span>->expects(<span class="php-var">$this</span>->once())->method(<span class="php-quote">'hasField'</span>)->with(<span class="php-quote">'field'</span>)->will(<span class="php-var">$this</span>->returnValue(<span class="php-keyword1">true</span>));
</span><span id="43" class="l"><a class="l" href="#43">43: </a> <span class="php-var">$classMetadata</span>->expects(<span class="php-var">$this</span>->once())->method(<span class="php-quote">'isNullable'</span>)->with(<span class="php-quote">'field'</span>)->will(<span class="php-var">$this</span>->returnValue(<span class="php-keyword1">true</span>));
</span><span id="44" class="l"><a class="l" href="#44">44: </a>
</span><span id="45" class="l"><a class="l" href="#45">45: </a> <span class="php-var">$return</span>[] = <span class="php-keyword1">array</span>(<span class="php-var">$classMetadata</span>, <span class="php-keyword1">new</span> ValueGuess(<span class="php-keyword1">false</span>, Guess::MEDIUM_CONFIDENCE));
</span><span id="46" class="l"><a class="l" href="#46">46: </a>
</span><span id="47" class="l"><a class="l" href="#47">47: </a> <span class="php-comment">// One-to-one, nullable (by default)</span>
</span><span id="48" class="l"><a class="l" href="#48">48: </a> <span class="php-var">$classMetadata</span> = <span class="php-var">$this</span>->getMockBuilder(<span class="php-quote">'Doctrine\ORM\Mapping\ClassMetadata'</span>)->disableOriginalConstructor()->getMock();
</span><span id="49" class="l"><a class="l" href="#49">49: </a> <span class="php-var">$classMetadata</span>->expects(<span class="php-var">$this</span>->once())->method(<span class="php-quote">'hasField'</span>)->with(<span class="php-quote">'field'</span>)->will(<span class="php-var">$this</span>->returnValue(<span class="php-keyword1">false</span>));
</span><span id="50" class="l"><a class="l" href="#50">50: </a> <span class="php-var">$classMetadata</span>->expects(<span class="php-var">$this</span>->once())->method(<span class="php-quote">'isAssociationWithSingleJoinColumn'</span>)->with(<span class="php-quote">'field'</span>)->will(<span class="php-var">$this</span>->returnValue(<span class="php-keyword1">true</span>));
</span><span id="51" class="l"><a class="l" href="#51">51: </a>
</span><span id="52" class="l"><a class="l" href="#52">52: </a> <span class="php-var">$mapping</span> = <span class="php-keyword1">array</span>(<span class="php-quote">'joinColumns'</span> => <span class="php-keyword1">array</span>(<span class="php-keyword1">array</span>()));
</span><span id="53" class="l"><a class="l" href="#53">53: </a> <span class="php-var">$classMetadata</span>->expects(<span class="php-var">$this</span>->once())->method(<span class="php-quote">'getAssociationMapping'</span>)->with(<span class="php-quote">'field'</span>)->will(<span class="php-var">$this</span>->returnValue(<span class="php-var">$mapping</span>));
</span><span id="54" class="l"><a class="l" href="#54">54: </a>
</span><span id="55" class="l"><a class="l" href="#55">55: </a> <span class="php-var">$return</span>[] = <span class="php-keyword1">array</span>(<span class="php-var">$classMetadata</span>, <span class="php-keyword1">new</span> ValueGuess(<span class="php-keyword1">false</span>, Guess::HIGH_CONFIDENCE));
</span><span id="56" class="l"><a class="l" href="#56">56: </a>
</span><span id="57" class="l"><a class="l" href="#57">57: </a> <span class="php-comment">// One-to-one, nullable (explicit)</span>
</span><span id="58" class="l"><a class="l" href="#58">58: </a> <span class="php-var">$classMetadata</span> = <span class="php-var">$this</span>->getMockBuilder(<span class="php-quote">'Doctrine\ORM\Mapping\ClassMetadata'</span>)->disableOriginalConstructor()->getMock();
</span><span id="59" class="l"><a class="l" href="#59">59: </a> <span class="php-var">$classMetadata</span>->expects(<span class="php-var">$this</span>->once())->method(<span class="php-quote">'hasField'</span>)->with(<span class="php-quote">'field'</span>)->will(<span class="php-var">$this</span>->returnValue(<span class="php-keyword1">false</span>));
</span><span id="60" class="l"><a class="l" href="#60">60: </a> <span class="php-var">$classMetadata</span>->expects(<span class="php-var">$this</span>->once())->method(<span class="php-quote">'isAssociationWithSingleJoinColumn'</span>)->with(<span class="php-quote">'field'</span>)->will(<span class="php-var">$this</span>->returnValue(<span class="php-keyword1">true</span>));
</span><span id="61" class="l"><a class="l" href="#61">61: </a>
</span><span id="62" class="l"><a class="l" href="#62">62: </a> <span class="php-var">$mapping</span> = <span class="php-keyword1">array</span>(<span class="php-quote">'joinColumns'</span> => <span class="php-keyword1">array</span>(<span class="php-keyword1">array</span>(<span class="php-quote">'nullable'</span>=><span class="php-keyword1">true</span>)));
</span><span id="63" class="l"><a class="l" href="#63">63: </a> <span class="php-var">$classMetadata</span>->expects(<span class="php-var">$this</span>->once())->method(<span class="php-quote">'getAssociationMapping'</span>)->with(<span class="php-quote">'field'</span>)->will(<span class="php-var">$this</span>->returnValue(<span class="php-var">$mapping</span>));
</span><span id="64" class="l"><a class="l" href="#64">64: </a>
</span><span id="65" class="l"><a class="l" href="#65">65: </a> <span class="php-var">$return</span>[] = <span class="php-keyword1">array</span>(<span class="php-var">$classMetadata</span>, <span class="php-keyword1">new</span> ValueGuess(<span class="php-keyword1">false</span>, Guess::HIGH_CONFIDENCE));
</span><span id="66" class="l"><a class="l" href="#66">66: </a>
</span><span id="67" class="l"><a class="l" href="#67">67: </a> <span class="php-comment">// One-to-one, not nullable</span>
</span><span id="68" class="l"><a class="l" href="#68">68: </a> <span class="php-var">$classMetadata</span> = <span class="php-var">$this</span>->getMockBuilder(<span class="php-quote">'Doctrine\ORM\Mapping\ClassMetadata'</span>)->disableOriginalConstructor()->getMock();
</span><span id="69" class="l"><a class="l" href="#69">69: </a> <span class="php-var">$classMetadata</span>->expects(<span class="php-var">$this</span>->once())->method(<span class="php-quote">'hasField'</span>)->with(<span class="php-quote">'field'</span>)->will(<span class="php-var">$this</span>->returnValue(<span class="php-keyword1">false</span>));
</span><span id="70" class="l"><a class="l" href="#70">70: </a> <span class="php-var">$classMetadata</span>->expects(<span class="php-var">$this</span>->once())->method(<span class="php-quote">'isAssociationWithSingleJoinColumn'</span>)->with(<span class="php-quote">'field'</span>)->will(<span class="php-var">$this</span>->returnValue(<span class="php-keyword1">true</span>));
</span><span id="71" class="l"><a class="l" href="#71">71: </a>
</span><span id="72" class="l"><a class="l" href="#72">72: </a> <span class="php-var">$mapping</span> = <span class="php-keyword1">array</span>(<span class="php-quote">'joinColumns'</span> => <span class="php-keyword1">array</span>(<span class="php-keyword1">array</span>(<span class="php-quote">'nullable'</span>=><span class="php-keyword1">false</span>)));
</span><span id="73" class="l"><a class="l" href="#73">73: </a> <span class="php-var">$classMetadata</span>->expects(<span class="php-var">$this</span>->once())->method(<span class="php-quote">'getAssociationMapping'</span>)->with(<span class="php-quote">'field'</span>)->will(<span class="php-var">$this</span>->returnValue(<span class="php-var">$mapping</span>));
</span><span id="74" class="l"><a class="l" href="#74">74: </a>
</span><span id="75" class="l"><a class="l" href="#75">75: </a> <span class="php-var">$return</span>[] = <span class="php-keyword1">array</span>(<span class="php-var">$classMetadata</span>, <span class="php-keyword1">new</span> ValueGuess(<span class="php-keyword1">true</span>, Guess::HIGH_CONFIDENCE));
</span><span id="76" class="l"><a class="l" href="#76">76: </a>
</span><span id="77" class="l"><a class="l" href="#77">77: </a> <span class="php-comment">// One-to-many, no clue</span>
</span><span id="78" class="l"><a class="l" href="#78">78: </a> <span class="php-var">$classMetadata</span> = <span class="php-var">$this</span>->getMockBuilder(<span class="php-quote">'Doctrine\ORM\Mapping\ClassMetadata'</span>)->disableOriginalConstructor()->getMock();
</span><span id="79" class="l"><a class="l" href="#79">79: </a> <span class="php-var">$classMetadata</span>->expects(<span class="php-var">$this</span>->once())->method(<span class="php-quote">'hasField'</span>)->with(<span class="php-quote">'field'</span>)->will(<span class="php-var">$this</span>->returnValue(<span class="php-keyword1">false</span>));
</span><span id="80" class="l"><a class="l" href="#80">80: </a> <span class="php-var">$classMetadata</span>->expects(<span class="php-var">$this</span>->once())->method(<span class="php-quote">'isAssociationWithSingleJoinColumn'</span>)->with(<span class="php-quote">'field'</span>)->will(<span class="php-var">$this</span>->returnValue(<span class="php-keyword1">false</span>));
</span><span id="81" class="l"><a class="l" href="#81">81: </a>
</span><span id="82" class="l"><a class="l" href="#82">82: </a> <span class="php-var">$return</span>[] = <span class="php-keyword1">array</span>(<span class="php-var">$classMetadata</span>, <span class="php-keyword1">null</span>);
</span><span id="83" class="l"><a class="l" href="#83">83: </a>
</span><span id="84" class="l"><a class="l" href="#84">84: </a> <span class="php-keyword1">return</span> <span class="php-var">$return</span>;
</span><span id="85" class="l"><a class="l" href="#85">85: </a> }
</span><span id="86" class="l"><a class="l" href="#86">86: </a>
</span><span id="87" class="l"><a class="l" href="#87">87: </a> <span class="php-keyword1">private</span> <span class="php-keyword1">function</span> <a id="_getGuesser" href="#_getGuesser">getGuesser</a>(ClassMetadata <span class="php-var">$classMetadata</span>)
</span><span id="88" class="l"><a class="l" href="#88">88: </a> {
</span><span id="89" class="l"><a class="l" href="#89">89: </a> <span class="php-var">$em</span> = <span class="php-var">$this</span>->getMock(<span class="php-quote">'Doctrine\Common\Persistence\ObjectManager'</span>);
</span><span id="90" class="l"><a class="l" href="#90">90: </a> <span class="php-var">$em</span>->expects(<span class="php-var">$this</span>->once())->method(<span class="php-quote">'getClassMetaData'</span>)->with(<span class="php-quote">'TestEntity'</span>)->will(<span class="php-var">$this</span>->returnValue(<span class="php-var">$classMetadata</span>));
</span><span id="91" class="l"><a class="l" href="#91">91: </a>
</span><span id="92" class="l"><a class="l" href="#92">92: </a> <span class="php-var">$registry</span> = <span class="php-var">$this</span>->getMock(<span class="php-quote">'Doctrine\Common\Persistence\ManagerRegistry'</span>);
</span><span id="93" class="l"><a class="l" href="#93">93: </a> <span class="php-var">$registry</span>->expects(<span class="php-var">$this</span>->once())->method(<span class="php-quote">'getManagers'</span>)->will(<span class="php-var">$this</span>->returnValue(<span class="php-keyword1">array</span>(<span class="php-var">$em</span>)));
</span><span id="94" class="l"><a class="l" href="#94">94: </a>
</span><span id="95" class="l"><a class="l" href="#95">95: </a> <span class="php-keyword1">return</span> <span class="php-keyword1">new</span> DoctrineOrmTypeGuesser(<span class="php-var">$registry</span>);
</span><span id="96" class="l"><a class="l" href="#96">96: </a> }
</span><span id="97" class="l"><a class="l" href="#97">97: </a>
</span><span id="98" class="l"><a class="l" href="#98">98: </a>}
</span><span id="99" class="l"><a class="l" href="#99">99: </a></span></code></pre>
<div id="footer">
seip API documentation generated by <a href="http://apigen.org">ApiGen 2.8.0</a>
</div>
</div>
</div>
</body>
</html>
|
www/templates/alliance.html
|
Team1325/ScoutingViewer
|
<ion-view title="Alliance" hide-nav-bar="false">
<ion-nav-buttons side="left">
<button class="button button-clear button-positive" ng-click="menu()">
Menu
</button>
</ion-nav-buttons>
<ion-nav-buttons side="right">
</ion-nav-buttons>
<ion-content class="padding" style="text-align: center;">
<form ng-submit="newTeam(filterTeamOne, 1)" name="filterFormOne">
<div class="item item-input-inset">
<label class="item-input-wrapper">
<input type="text" placeholder="Select First Team..." ng-model="filterTeamOne" required>
</label>
<button class="button button-small" ng-disabled="filterForm.$invalid">
Submit
</button>
</div>
</form>
<form ng-submit="newTeam(filterTeamTwo, 2)" name="filterFormTwo">
<div class="item item-input-inset">
<label class="item-input-wrapper">
<input type="text" placeholder="Select Second Team..." ng-model="filterTeamTwo" required>
</label>
<button class="button button-small" ng-disabled="filterForm.$invalid">
Submit
</button>
</div>
</form>
<form ng-submit="newTeam(filterTeamThree, 3)" name="filterFormThree">
<div class="item item-input-inset">
<label class="item-input-wrapper">
<input type="text" placeholder="Select Third Team..." ng-model="filterTeamThree" required>
</label>
<button class="button button-small" ng-disabled="filterForm.$invalid">
Submit
</button>
</div>
</form>
<br>
<label>
{{notAvailable}}
</label>
<div class="row header" style="width: 100%">
<div class="col padding" style="background-color: #000000;color: #FFFFFF">Alliance</div>
<div class="col padding">First Team: {{teamsOne.team}}</div>
<div class="col padding">Second Team: {{teamsTwo.team}}</div>
<div class="col padding">Third Team: {{teamsThree.team}}</div>
</div>
<div class="row" style="width:100%">
<div class="col padding" style="background-color: #99FF99">Games Played</div>
<div class="col padding" style="background-color: #FFFFFF">{{teamsOne.totalGameCount}}</div>
<div class="col padding" style="background-color: #FFFFFF">{{teamsTwo.totalGameCount}}</div>
<div class="col padding" style="background-color: #FFFFFF">{{teamsThree.totalGameCount}}</div>
</div>
<div class="row" style="width:100%">
<div class="col padding" style="background-color: #FFFF99">Avg Auto Boulders</div>
<div class="col padding" style="background-color: #FFFFFF">
Low: {{teamsOne.autoLowBallAverage | number:2}}/{{teamsOne.autoLowShotAverage | number:2}} <br>
High: {{teamsOne.autoHighBallAverage | number:2}}/{{teamsOne.autoHighShotAverage | number:2}}
</div>
<div class="col padding" style="background-color: #FFFFFF">
Low: {{teamsTwo.autoLowBallAverage | number:2}}/{{teamsTwo.autoLowShotAverage | number:2}} <br>
High: {{teamsTwo.autoHighBallAverage | number:2}}/{{teamsTwo.autoHighShotAverage | number:2}}
</div>
<div class="col padding" style="background-color: #FFFFFF">
Low: {{teamsThree.autoLowBallAverage | number:2}}/{{teamsThree.autoLowShotAverage | number:2}} <br>
High: {{teamsThree.autoHighBallAverage | number:2}}/{{teamsThree.autoHighShotAverage | number:2}}
</div>
</div>
<div class="row" style="width:100%">
<div class="col padding" style="background-color: #99CCFF">Avg Teleop Boulders</div>
<div class="col padding" style="background-color: #FFFFFF">
Low: {{teamsOne.teleopLowBallAverage | number:2}}/{{teamsOne.teleopLowShotAverage | number:2}} <br>
High: {{teamsOne.teleopHighBallAverage | number:2}}/{{teamsOne.teleopHighShotAverage | number:2}}
</div>
<div class="col padding" style="background-color: #FFFFFF">
Low: {{teamsTwo.teleopLowBallAverage | number:2}}/{{teamsTwo.teleopLowShotAverage | number:2}} <br>
High: {{teamsTwo.teleopHighBallAverage | number:2}}/{{teamsTwo.teleopHighShotAverage | number:2}}
</div>
<div class="col padding" style="background-color: #FFFFFF">
Low: {{teamsThree.teleopLowBallAverage | number:2}}/{{teamsThree.teleopLowShotAverage | number:2}} <br>
High: {{teamsThree.teleopHighBallAverage | number:2}}/{{teamsThree.teleopHighShotAverage | number:2}}
</div>
</div>
<div class="row" style="width:100%">
<div class="col padding" style="background-color: #99FFFF">Avg Total Damage to Defenses</div>
<div class="col padding" style="background-color: #FFFFFF">{{teamsOne.teleopTotalDamageAverage | number:2}}</div>
<div class="col padding" style="background-color: #FFFFFF">{{teamsTwo.teleopTotalDamageAverage | number:2}}</div>
<div class="col padding" style="background-color: #FFFFFF">{{teamsThree.teleopTotalDamageAverage | number:2}}</div>
</div>
<div class="row" style="width:100%">
<div class="col padding" style="background-color: #99FFFF">Avg Cycle Time (Seconds)</div>
<div class="col padding" style="background-color: #FFFFFF">{{teamsOne.teleopCycleTimeAverage | number:2}}</div>
<div class="col padding" style="background-color: #FFFFFF">{{teamsTwo.teleopCycleTimeAverage | number:2}}</div>
<div class="col padding" style="background-color: #FFFFFF">{{teamsThree.teleopCycleTimeAverage | number:2}}</div>
</div>
<div class="row" style="width:100%">
<div class="col padding" style="background-color: #99FFFF">Tower Fail Count</div>
<div class="col padding" style="background-color: #FFFFFF">{{teamsOne.teleopTowerAttackFailCount}}</div>
<div class="col padding" style="background-color: #FFFFFF">{{teamsTwo.teleopTowerAttackFailCount}}</div>
<div class="col padding" style="background-color: #FFFFFF">{{teamsThree.teleopTowerAttackFailCount}}</div>
</div>
<div class="row" style="width:100%">
<div class="col padding" style="background-color: #99FFFF">Tower Challenge Count</div>
<div class="col padding" style="background-color: #FFFFFF">{{teamsOne.teleopTowerAttackChallengeCount}}</div>
<div class="col padding" style="background-color: #FFFFFF">{{teamsTwo.teleopTowerAttackChallengeCount}}</div>
<div class="col padding" style="background-color: #FFFFFF">{{teamsThree.teleopTowerAttackChallengeCount}}</div>
</div>
<div class="row" style="width:100%">
<div class="col padding" style="background-color: #99FFFF">Tower Scale Count</div>
<div class="col padding" style="background-color: #FFFFFF">{{teamsOne.teleopTowerAttackScaleCount}}</div>
<div class="col padding" style="background-color: #FFFFFF">{{teamsTwo.teleopTowerAttackScaleCount}}</div>
<div class="col padding" style="background-color: #FFFFFF">{{teamsThree.teleopTowerAttackScaleCount}}</div>
</div>
<div class="row" style="width:100%">
<div class="col padding" style="background-color: #CC99FF">Avg Total Score</div>
<div class="col padding" style="background-color: #FFFFFF">{{teamsOne.averageTotalScore | number:2}}</div>
<div class="col padding" style="background-color: #FFFFFF">{{teamsTwo.averageTotalScore | number:2}}</div>
<div class="col padding" style="background-color: #FFFFFF">{{teamsThree.averageTotalScore | number:2}}</div>
</div>
<div class="row" style="width:100%">
<div class="col padding" style="background-color: #FF9999">Low Bar</div>
<div class="col padding" style="background-color: #FFFFFF">
Auto: {{teamsOne.autoLowBarAch}} -> {{teamsOne.autoLowBarCrossCount}}/{{teamsOne.autoLowBarAppearCount}}<br>
Teleop: {{teamsOne.teleopLowBarAch}} -> {{teamsOne.teleopLowBarCrossCount}}/{{teamsOne.teleopLowBarAppearCount}}
</div>
<div class="col padding" style="background-color: #FFFFFF">
Auto: {{teamsTwo.autoLowBarAch}} -> {{teamsTwo.autoLowBarCrossCount}}/{{teamsTwo.autoLowBarAppearCount}}<br>
Teleop: {{teamsTwo.teleopLowBarAch}} -> {{teamsTwo.teleopLowBarCrossCount}}/{{teamsTwo.teleopLowBarAppearCount}}
</div>
<div class="col padding" style="background-color: #FFFFFF">
Auto: {{teamsThree.autoLowBarAch}} -> {{teamsThree.autoLowBarCrossCount}}/{{teamsThree.autoLowBarAppearCount}}<br>
Teleop: {{teamsThree.teleopLowBarAch}} -> {{teamsThree.teleopLowBarCrossCount}}/{{teamsThree.teleopLowBarAppearCount}}
</div>
</div>
<div class="row" style="width:100%">
<div class="col padding" style="background-color: #FF9999">Portcullis</div>
<div class="col padding" style="background-color: #FFFFFF">
Auto: {{teamsOne.autoPortcullisAch}} -> {{teamsOne.autoPortcullisCrossCount}}/{{teamsOne.autoPortcullisAppearCount}}<br>
Teleop: {{teamsOne.teleopPortcullisAch}} -> {{teamsOne.teleopPortcullisCrossCount}}/{{teamsOne.teleopPortcullisAppearCount}}
</div>
<div class="col padding" style="background-color: #FFFFFF">
Auto: {{teamsTwo.autoPortcullisAch}} -> {{teamsTwo.autoPortcullisCrossCount}}/{{teamsTwo.autoPortcullisAppearCount}}<br>
Teleop: {{teamsTwo.teleopPortcullisAch}} -> {{teamsTwo.teleopPortcullisCrossCount}}/{{teamsTwo.teleopPortcullisAppearCount}}
</div>
<div class="col padding" style="background-color: #FFFFFF">
Auto: {{teamsThree.autoPortcullisAch}} -> {{teamsThree.autoPortcullisCrossCount}}/{{teamsThree.autoPortcullisAppearCount}}<br>
Teleop: {{teamsThree.teleopPortcullisAch}} -> {{teamsThree.teleopPortcullisCrossCount}}/{{teamsThree.teleopPortcullisAppearCount}}
</div>
</div>
<div class="row" style="width:100%">
<div class="col padding" style="background-color: #FF9999">Cheval de Frise</div>
<div class="col padding" style="background-color: #FFFFFF">
Auto: {{teamsOne.autoChevalDeFriseAch}} -> {{teamsOne.autoChevalDeFriseCrossCount}}/{{teamsOne.autoChevalDeFriseAppearCount}}<br>
Teleop: {{teamsOne.teleopChevalDeFriseAch}} -> {{teamsOne.teleopChevalDeFriseCrossCount}}/{{teamsOne.teleopChevalDeFriseAppearCount}}
</div>
<div class="col padding" style="background-color: #FFFFFF">
Auto: {{teamsTwo.autoChevalDeFriseAch}} -> {{teamsTwo.autoChevalDeFriseCrossCount}}/{{teamsTwo.autoChevalDeFriseAppearCount}}<br>
Teleop: {{teamsTwo.teleopChevalDeFriseAch}} -> {{teamsTwo.teleopChevalDeFriseCrossCount}}/{{teamsTwo.teleopChevalDeFriseAppearCount}}
</div>
<div class="col padding" style="background-color: #FFFFFF">
Auto: {{teamsThree.autoChevalDeFriseAch}} -> {{teamsThree.autoChevalDeFriseCrossCount}}/{{teamsThree.autoChevalDeFriseAppearCount}}<br>
Teleop: {{teamsThree.teleopChevalDeFriseAch}} -> {{teamsThree.teleopChevalDeFriseCrossCount}}/{{teamsThree.teleopChevalDeFriseAppearCount}}
</div>
</div>
<div class="row" style="width:100%">
<div class="col padding" style="background-color: #FF9999">Moat</div>
<div class="col padding" style="background-color: #FFFFFF">
Auto: {{teamsOne.autoMoatAch}} -> {{teamsOne.autoMoatCrossCount}}/{{teamsOne.autoMoatAppearCount}}<br>
Teleop: {{teamsOne.teleopMoatAch}} -> {{teamsOne.teleopMoatCrossCount}}/{{teamsOne.teleopMoatAppearCount}}
</div>
<div class="col padding" style="background-color: #FFFFFF">
Auto: {{teamsTwo.autoMoatAch}} -> {{teamsTwo.autoMoatCrossCount}}/{{teamsTwo.autoMoatAppearCount}}<br>
Teleop: {{teamsTwo.teleopMoatAch}} -> {{teamsTwo.teleopMoatCrossCount}}/{{teamsTwo.teleopMoatAppearCount}}
</div>
<div class="col padding" style="background-color: #FFFFFF">
Auto: {{teamsThree.autoMoatAch}} -> {{teamsThree.autoMoatCrossCount}}/{{teamsThree.autoMoatAppearCount}}<br>
Teleop: {{teamsThree.teleopMoatAch}} -> {{teamsThree.teleopMoatCrossCount}}/{{teamsThree.teleopMoatAppearCount}}
</div>
</div>
<div class="row" style="width:100%">
<div class="col padding" style="background-color: #FF9999">Ramparts</div>
<div class="col padding" style="background-color: #FFFFFF">
Auto: {{teamsOne.autoRampartsAch}} -> {{teamsOne.autoRampartsCrossCount}}/{{teamsOne.autoRampartsAppearCount}}<br>
Teleop: {{teamsOne.teleopRampartsAch}} -> {{teamsOne.teleopRampartsCrossCount}}/{{teamsOne.teleopRampartsAppearCount}}
</div>
<div class="col padding" style="background-color: #FFFFFF">
Auto: {{teamsTwo.autoRampartsAch}} -> {{teamsTwo.autoRampartsCrossCount}}/{{teamsTwo.autoRampartsAppearCount}}<br>
Teleop: {{teamsTwo.teleopRampartsAch}} -> {{teamsTwo.teleopRampartsCrossCount}}/{{teamsTwo.teleopRampartsAppearCount}}
</div>
<div class="col padding" style="background-color: #FFFFFF">
Auto: {{teamsThree.autoRampartsAch}} -> {{teamsThree.autoRampartsCrossCount}}/{{teamsThree.autoRampartsAppearCount}}<br>
Teleop: {{teamsThree.teleopRampartsAch}} -> {{teamsThree.teleopRampartsCrossCount}}/{{teamsThree.teleopRampartsAppearCount}}
</div>
</div>
<div class="row" style="width:100%">
<div class="col padding" style="background-color: #FF9999">Drawbridge</div>
<div class="col padding" style="background-color: #FFFFFF">
Auto: {{teamsOne.autoDrawbridgeAch}} -> {{teamsOne.autoDrawbridgeCrossCount}}/{{teamsOne.autoDrawbridgeAppearCount}}<br>
Teleop: {{teamsOne.teleopDrawbridgeAch}} -> {{teamsOne.teleopDrawbridgeCrossCount}}/{{teamsOne.teleopDrawbridgeAppearCount}}
</div>
<div class="col padding" style="background-color: #FFFFFF">
Auto: {{teamsTwo.autoDrawbridgeAch}} -> {{teamsTwo.autoDrawbridgeCrossCount}}/{{teamsTwo.autoDrawbridgeAppearCount}}<br>
Teleop: {{teamsTwo.teleopDrawbridgeAch}} -> {{teamsTwo.teleopDrawbridgeCrossCount}}/{{teamsTwo.teleopDrawbridgeAppearCount}}
</div>
<div class="col padding" style="background-color: #FFFFFF">
Auto: {{teamsThree.autoDrawbridgeAch}} -> {{teamsThree.autoDrawbridgeCrossCount}}/{{teamsThree.autoDrawbridgeAppearCount}}<br>
Teleop: {{teamsThree.teleopDrawbridgeAch}} -> {{teamsThree.teleopDrawbridgeCrossCount}}/{{teamsThree.teleopDrawbridgeAppearCount}}
</div>
</div>
<div class="row" style="width:100%">
<div class="col padding" style="background-color: #FF9999">Sally Port</div>
<div class="col padding" style="background-color: #FFFFFF">
Auto: {{teamsOne.autoSallyPortAch}} -> {{teamsOne.autoSallyPortCrossCount}}/{{teamsOne.autoSallyPortAppearCount}}<br>
Teleop: {{teamsOne.teleopSallyPortAch}} -> {{teamsOne.teleopSallyPortCrossCount}}/{{teamsOne.teleopSallyPortAppearCount}}
</div>
<div class="col padding" style="background-color: #FFFFFF">
Auto: {{teamsTwo.autoSallyPortAch}} -> {{teamsTwo.autoSallyPortCrossCount}}/{{teamsTwo.autoSallyPortAppearCount}}<br>
Teleop: {{teamsTwo.teleopSallyPortAch}} -> {{teamsTwo.teleopSallyPortCrossCount}}/{{teamsTwo.teleopSallyPortAppearCount}}
</div>
<div class="col padding" style="background-color: #FFFFFF">
Auto: {{teamsThree.autoSallyPortAch}} -> {{teamsThree.autoSallyPortCrossCount}}/{{teamsThree.autoSallyPortAppearCount}}<br>
Teleop: {{teamsThree.teleopSallyPortAch}} -> {{teamsThree.teleopSallyPortCrossCount}}/{{teamsThree.teleopSallyPortAppearCount}}
</div>
</div>
<div class="row" style="width:100%">
<div class="col padding" style="background-color: #FF9999">Rock Wall</div>
<div class="col padding" style="background-color: #FFFFFF">
Auto: {{teamsOne.autoRockWallAch}} -> {{teamsOne.autoRockWallCrossCount}}/{{teamsOne.autoRockWallAppearCount}}<br>
Teleop: {{teamsOne.teleopRockWallAch}} -> {{teamsOne.teleopRockWallCrossCount}}/{{teamsOne.teleopRockWallAppearCount}}
</div>
<div class="col padding" style="background-color: #FFFFFF">
Auto: {{teamsTwo.autoRockWallAch}} -> {{teamsTwo.autoRockWallCrossCount}}/{{teamsTwo.autoRockWallAppearCount}}<br>
Teleop: {{teamsTwo.teleopRockWallAch}} -> {{teamsTwo.teleopRockWallCrossCount}}/{{teamsTwo.teleopRockWallAppearCount}}
</div>
<div class="col padding" style="background-color: #FFFFFF">
Auto: {{teamsThree.autoRockWallAch}} -> {{teamsThree.autoRockWallCrossCount}}/{{teamsThree.autoRockWallAppearCount}}<br>
Teleop: {{teamsThree.teleopRockWallAch}} -> {{teamsThree.teleopRockWallCrossCount}}/{{teamsThree.teleopRockWallAppearCount}}
</div>
</div>
<div class="row" style="width:100%">
<div class="col padding" style="background-color: #FF9999">Rough Terrain</div>
<div class="col padding" style="background-color: #FFFFFF">
Auto: {{teamsOne.autoRoughTerrainAch}} -> {{teamsOne.autoRoughTerrainCrossCount}}/{{teamsOne.autoRoughTerrainAppearCount}}<br>
Teleop: {{teamsOne.teleopRoughTerrainAch}} -> {{teamsOne.teleopRoughTerrainCrossCount}}/{{teamsOne.teleopRoughTerrainAppearCount}}
</div>
<div class="col padding" style="background-color: #FFFFFF">
Auto: {{teamsTwo.autoRoughTerrainAch}} -> {{teamsTwo.autoRoughTerrainCrossCount}}/{{teamsTwo.autoRoughTerrainAppearCount}}<br>
Teleop: {{teamsTwo.teleopRoughTerrainAch}} -> {{teamsTwo.teleopRoughTerrainCrossCount}}/{{teamsTwo.teleopRoughTerrainAppearCount}}
</div>
<div class="col padding" style="background-color: #FFFFFF">
Auto: {{teamsThree.autoRoughTerrainAch}} -> {{teamsThree.autoRoughTerrainCrossCount}}/{{teamsThree.autoRoughTerrainAppearCount}}<br>
Teleop: {{teamsThree.teleopRoughTerrainAch}} -> {{teamsThree.teleopRoughTerrainCrossCount}}/{{teamsThree.teleopRoughTerrainAppearCount}}
</div>
</div>
</ion-content>
</ion-view>
|
clean/Linux-x86_64-4.03.0-2.0.5/released/8.8.0/compcert-64/3.7~coq-platform~open-source.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>compcert-64: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.8.0 / compcert-64 - 3.7~coq-platform~open-source</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
compcert-64
<small>
3.7~coq-platform~open-source
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-02-28 15:52:49 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-02-28 15:52:49 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.8.0 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.3 A library manager for OCaml
# opam file:
opam-version: "2.0"
authors: "Xavier Leroy <xavier.leroy@inria.fr>"
maintainer: "Jacques-Henri Jourdan <jacques-Henri.jourdan@normalesup.org>"
homepage: "http://compcert.inria.fr/"
dev-repo: "git+https://github.com/AbsInt/CompCert.git"
bug-reports: "https://github.com/AbsInt/CompCert/issues"
license: "INRIA Non-Commercial License Agreement"
version: "3.7"
build: [
["./configure" "amd64-linux" {os = "linux"}
"amd64-macosx" {os = "macos"}
"amd64-cygwin" {os = "cygwin"}
"-prefix" "%{prefix}%/variants/compcert64"
"-install-coqdev"
"-clightgen"
"-coqdevdir" "%{lib}%/coq-variant/compcert64/compcert"
"-ignore-coq-version"]
[make "depend"]
[make "-j%{jobs}%" {ocaml:version >= "4.06"} "proof_open_source"]
]
patches: [
"0001-Install-compcert.config-file-along-the-Coq-developme.patch"
"0007-Dual-license-aarch64-Archi.v-Cbuiltins.ml-extraction.patch"
"0008-Update-the-list-of-dual-licensed-files.patch"
"0010-Added-open-source-build-to-makefile.patch"
"0011-Use-Coq-platform-supplied-Flocq.patch"
"0012-Use-platform-supplied-menhirlib-as-suggested-by-jhjo.patch"
]
extra-files: [
["0001-Install-compcert.config-file-along-the-Coq-developme.patch" "sha256=32ba8c21c84ae6a2075ecb0a039f05150e87db40728e64a81ea8d5daba6df541"]
["0007-Dual-license-aarch64-Archi.v-Cbuiltins.ml-extraction.patch" "sha256=fd66f444b4097e4f20f53df9439ea5c66eb889183d271f6c1d45ce25793094d7"]
["0008-Update-the-list-of-dual-licensed-files.patch" "sha256=406d241f0e9eb31d02a4be6ec5700044000a176ffe6cfeccf1ca52b42bdedb7d"]
["0010-Added-open-source-build-to-makefile.patch" "sha256=fc3b8c1e097b53f209e7cf2e9b2e822609e8370857dbf1a4b34d909c37dcdfb5"]
["0011-Use-Coq-platform-supplied-Flocq.patch" "sha256=1fd53e11083ca566e30b810acc68fc93d4fd5b5c55c2d493a86e0691c50fdff0"]
["0012-Use-platform-supplied-menhirlib-as-suggested-by-jhjo.patch" "sha256=854f1ebbfed8829063f59c26c6e37dc164f98ecf60a572db0531a0d1f56b0981"]
]
install: [
[make "install_open_source"]
]
depends: [
"coq" {>= "8.7.0" & < "8.12"}
"coq-flocq" {>= "3.2.1"}
"coq-menhirlib" {>= "20190626" & < "20200123"}
"menhir" {>= "20190626" & < "20200123"}
"ocaml" {>= "4.05.0"}
]
synopsis: "The CompCert C compiler (64 bit, only open source files + using coq-platform)"
description: "This package installs the 64 bit version of CompCert.
For coexistence with the 32 bit version, the files are installed in:
%{prefix}%/variants/compcert64/bin (ccomp and clightgen binaries)
%{prefix}%/variants/compcert64/lib/compcert (C library)
%{lib}%/coq/user-contrib/compcert64 (Coq library)
Please note that the coq module path is compcert and not compcert64,
so the files cannot be directly Required as compcert64.
Instead -Q or -R options must be used to bind the compcert64 folder
to the module path compcert. This is more convenient if one development
uses both 32 and 64 bit versions. Otherwise all files would have to
be duplicated with module paths compcert and compcert64.
Please also note that the binary folder is usually not in the path."
tags: [
"category:Computer Science/Semantics and Compilation/Compilation"
"category:Computer Science/Semantics and Compilation/Semantics"
"keyword:C"
"keyword:compiler"
"logpath:compcert64"
"date:2020-04-29"
]
url {
src: "https://github.com/AbsInt/CompCert/archive/v3.7.tar.gz"
checksum: "sha256=ceee1b2ed6c2576cb66eb7a0f2669dcf85e65c0fc68385f0781b0ca4edb87eb0"
}
</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-compcert-64.3.7~coq-platform~open-source coq.8.8.0</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.8.0).
The following dependencies couldn't be met:
- coq-compcert-64 -> ocaml >= 4.05.0
base of this switch (use `--unlock-base' to force)
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-compcert-64.3.7~coq-platform~open-source</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>
|
tags/future/index.html
|
caorong/caorong.github.io
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>lelouchcr's blog</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link rel="shortcut icon" href="/favicon.ico">
<link rel="stylesheet" href="/css/app.css">
<!-- <link rel='stylesheet' href='http://fonts.useso.com/css?family=Source+Code+Pro'> -->
</head>
<body>
<nav class="app-nav">
<a href="/.">home</a>
<a href="/archives">archive</a>
<a href="/atom.xml">rss</a>
</nav>
<main class="archive">
<article class="grid">
<h1 class="article-title grid-item">
<a href="/2016/07/23/pure-async/">pure async</a>
</h1>
<div class="article-meta">
<span class="article-date">Jul 23 2016</span>
</div>
</article>
<nav class="page-nav">
<span class="page-number current">1</span>
</nav>
</main>
</body>
</html>
|
doc/jdk6_cn/javax/security/auth/spi/package-frame.html
|
piterlin/piterlin.github.io
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0-beta2) on Mon Mar 19 19:25:45 CST 2007 -->
<META http-equiv="Content-Type" content="text/html; charset=utf-8">
<TITLE>
javax.security.auth.spi (Java Platform SE 6)
</TITLE><script>var _hmt = _hmt || [];(function() {var hm = document.createElement("script");hm.src = "//hm.baidu.com/hm.js?dd1361ca20a10cc161e72d4bc4fef6df";var s = document.getElementsByTagName("script")[0];s.parentNode.insertBefore(hm, s);})();</script>
<META NAME="date" CONTENT="2007-03-19">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
</HEAD>
<BODY BGCOLOR="white">
<FONT size="+1" CLASS="FrameTitleFont">
<A HREF="../../../../javax/security/auth/spi/package-summary.html" target="classFrame">javax.security.auth.spi</A></FONT>
<TABLE BORDER="0" WIDTH="100%" SUMMARY="">
<TR>
<TD NOWRAP><FONT size="+1" CLASS="FrameHeadingFont">
接口</FONT>
<FONT CLASS="FrameItemFont">
<BR>
<A HREF="LoginModule.html" title="javax.security.auth.spi 中的接口" target="classFrame"><I>LoginModule</I></A></FONT></TD>
</TR>
</TABLE>
</BODY>
</HTML>
|
public/Windows 10 x64 (19041.508)/_LPCP_MESSAGE.html
|
epikcraw/ggool
|
<html><body>
<h4>Windows 10 x64 (19041.508)</h4><br>
<h2>_LPCP_MESSAGE</h2>
<font face="arial"> +0x000 Entry : <a href="./_LIST_ENTRY.html">_LIST_ENTRY</a><br>
+0x000 FreeEntry : <a href="./_SINGLE_LIST_ENTRY.html">_SINGLE_LIST_ENTRY</a><br>
+0x008 Reserved0 : Uint4B<br>
+0x010 SenderPort : Ptr64 Void<br>
+0x018 RepliedToThread : Ptr64 <a href="./_ETHREAD.html">_ETHREAD</a><br>
+0x020 PortContext : Ptr64 Void<br>
+0x028 Request : <a href="./_PORT_MESSAGE.html">_PORT_MESSAGE</a><br>
</font></body></html>
|
doc/html/dir_000003_000004.html
|
codeOverFlow/Stickman-project
|
<!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.4"/>
<title>Stickman Project: include/Singleton -> Strategy Relation</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="navtree.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="resize.js"></script>
<script type="text/javascript" src="navtree.js"></script>
<script type="text/javascript">
$(document).ready(initResizable);
$(window).load(resizeHeight);
</script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/search.js"></script>
<script type="text/javascript">
$(document).ready(function() { searchBox.OnSelectItem(0); });
</script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="normal_gauche.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Stickman Project
 <span id="projectnumber">1.0</span>
</div>
<div id="projectbrief">2D platformer games</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.4 -->
<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="annotated.html"><span>Classes</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
<li>
<div id="MSearchBox" class="MSearchBoxInactive">
<span class="left">
<img id="MSearchSelect" src="search/mag_sel.png"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
<input type="text" id="MSearchField" value="Search" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
</span><span class="right">
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
</span>
</div>
</li>
</ul>
</div>
</div><!-- top -->
<div id="side-nav" class="ui-resizable side-nav-resizable">
<div id="nav-tree">
<div id="nav-tree-contents">
<div id="nav-sync" class="sync"></div>
</div>
</div>
<div id="splitbar" style="-moz-user-select:none;"
class="ui-resizable-handle">
</div>
</div>
<script type="text/javascript">
$(document).ready(function(){initNavTree('dir_d98a6d18add594ebb43f96267fa3e1b1.html','');});
</script>
<div id="doc-content">
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
<a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark"> </span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark"> </span>Classes</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark"> </span>Files</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(3)"><span class="SelectionMark"> </span>Functions</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(4)"><span class="SelectionMark"> </span>Variables</a></div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div class="contents">
<h3>Singleton → Strategy Relation</h3><table class="dirtab"><tr class="dirtab"><th class="dirtab">File in include/Singleton</th><th class="dirtab">Includes file in include/Strategy</th></tr><tr class="dirtab"><td class="dirtab"><a class="el" href="_game_manager_8h.html">GameManager.h</a></td><td class="dirtab"><a class="el" href="_i_level_8h.html">ILevel.h</a></td></tr><tr class="dirtab"><td class="dirtab"><a class="el" href="_game_manager_8h.html">GameManager.h</a></td><td class="dirtab"><a class="el" href="_level_one_8h.html">LevelOne.h</a></td></tr><tr class="dirtab"><td class="dirtab"><a class="el" href="_game_manager_8h.html">GameManager.h</a></td><td class="dirtab"><a class="el" href="_level_two_8h.html">LevelTwo.h</a></td></tr></table></div><!-- contents -->
</div><!-- doc-content -->
<!-- start footer part -->
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
<ul>
<li class="navelem"><a class="el" href="dir_d44c64559bbebec7f509842c48db8b23.html">include</a></li><li class="navelem"><a class="el" href="dir_d98a6d18add594ebb43f96267fa3e1b1.html">Singleton</a></li>
<li class="footer">Generated on Wed Nov 27 2013 19:35:18 for Stickman Project by
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.4 </li>
</ul>
</div>
</body>
</html>
|
clean/Linux-x86_64-4.11.2-2.0.7/released/8.12.1/compcert-64/3.7+8.12~coq_platform.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>compcert-64: 35 m 26 s 🏆</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.12.1 / compcert-64 - 3.7+8.12~coq_platform</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
compcert-64
<small>
3.7+8.12~coq_platform
<span class="label label-success">35 m 26 s 🏆</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2021-12-19 00:31:13 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-12-19 00:31:13 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.1 Formal proof management system
num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.11.2 The OCaml compiler (virtual package)
ocaml-base-compiler 4.11.2 Official release 4.11.2
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
authors: "Xavier Leroy <xavier.leroy@inria.fr>"
maintainer: "Jacques-Henri Jourdan <jacques-Henri.jourdan@normalesup.org>"
homepage: "http://compcert.inria.fr/"
dev-repo: "git+https://github.com/AbsInt/CompCert.git"
bug-reports: "https://github.com/AbsInt/CompCert/issues"
license: "INRIA Non-Commercial License Agreement"
version: "3.7"
build: [
["./configure"
"amd64-linux" {os = "linux"}
"amd64-macosx" {os = "macos"}
"amd64-linux" {os = "win32"}
"-prefix" "%{prefix}%/variants/compcert64"
"-install-coqdev"
"-clightgen"
"-coqdevdir" "%{lib}%/coq-variant/compcert64/compcert"
"-ignore-coq-version"]
[make "-j%{jobs}%" {ocaml:version >= "4.06"}]
]
patches: [
"0001-Install-compcert.config-file-along-the-Coq-developme.patch"
"0002-Dual-license-aarch64-Archi.v-Cbuiltins.ml-extraction.patch"
"0003-Update-the-list-of-dual-licensed-files.patch"
"0004-Use-Coq-platform-supplied-Flocq.patch"
"0005-Import-ListNotations-explicitly.patch"
"0006-Coq-MenhirLib-explicit-import-ListNotations-354.patch"
"0007-Use-ocamlfind-to-find-menhirLib.patch"
"0008-Use-platform-supplied-menhirlib-as-suggested-by-jhjo.patch"
"0009-Don-t-build-MenhirLib-platform-version-is-used.patch"
]
extra-files: [
["0001-Install-compcert.config-file-along-the-Coq-developme.patch" "sha256=62e36964ed3d06a213caea8639be51641c25df3c4ea384e01ce57d015de698d3"]
["0002-Dual-license-aarch64-Archi.v-Cbuiltins.ml-extraction.patch" "sha256=1af58e827aa24be60e115878b9f70f1bf715f83bb1b91da8e2a9d749f4195d29"]
["0003-Update-the-list-of-dual-licensed-files.patch" "sha256=bf91c7d3e2177620296838658cafbeffdd50d8d1ef56649b56a35644410e1337"]
["0004-Use-Coq-platform-supplied-Flocq.patch" "sha256=83261a1fae459c319c0288a543787d3abcadaa2cccb1c34543c9784fe645f942"]
["0005-Import-ListNotations-explicitly.patch" "sha256=c4f29203e8dcaa17c76543ad77dabefdb555588567d4f6055cd53e19a9c81081"]
["0006-Coq-MenhirLib-explicit-import-ListNotations-354.patch" "sha256=3b7f59d4736d36878bbe3c0fed80e7db1ae75b9c8a5a9c90a57df2c1a4f4ae78"]
["0007-Use-ocamlfind-to-find-menhirLib.patch" "sha256=df3f103977fa02bd339f6a8537da6bd4eaf1baa54c9675508e3bd16dbe11464e"]
["0008-Use-platform-supplied-menhirlib-as-suggested-by-jhjo.patch" "sha256=bcd2eb6eafb5a71fd0ee8ecf6f1b100b06723c636adb0ef2f915fa0ac3585c64"]
["0009-Don-t-build-MenhirLib-platform-version-is-used.patch" "sha256=77835a85124eb1e8afefdcaf9eaa5beab64ed0fea22fceab78b7fd550778c857"]
]
install: [
[make "install"]
]
depends: [
"coq" {>= "8.12" & < "8.13"}
"coq-flocq" {>= "3.2.1" & < "4~"}
"coq-menhirlib" {>= "20190626" & <= "20210310" }
"menhir" {>= "20190626" & <= "20210310" }
"ocaml" {>= "4.05.0"}
]
synopsis: "The CompCert C compiler (64 bit, using coq-platform supplied version of Flocq)"
description: "This package installs the 64 bit version of CompCert.
For coexistence with the 32 bit version, the files are installed in:
%{prefix}%/variants/compcert64/bin (ccomp and clightgen binaries)
%{prefix}%/variants/compcert64/lib/compcert (C library)
%{lib}%/coq/user-contrib/compcert64 (Coq library)
Please note that the coq module path is compcert and not compcert64,
so the files cannot be directly Required as compcert64.
Instead -Q or -R options must be used to bind the compcert64 folder
to the module path compcert. This is more convenient if one development
uses both 32 and 64 bit versions. Otherwise all files would have to
be duplicated with module paths compcert and compcert64.
Please also note that the binary folder is usually not in the path."
tags: [
"category:Computer Science/Semantics and Compilation/Compilation"
"category:Computer Science/Semantics and Compilation/Semantics"
"keyword:C"
"keyword:compiler"
"logpath:compcert64"
"date:2020-04-29"
]
url {
src: "https://github.com/AbsInt/CompCert/archive/v3.7.tar.gz"
checksum: "sha256=ceee1b2ed6c2576cb66eb7a0f2669dcf85e65c0fc68385f0781b0ca4edb87eb0"
}
</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-compcert-64.3.7+8.12~coq_platform coq.8.12.1</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam list; echo; ulimit -Sv 4000000; timeout 4h opam install -y --deps-only coq-compcert-64.3.7+8.12~coq_platform coq.8.12.1</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>10 m 32 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam list; echo; ulimit -Sv 16000000; timeout 4h opam install -y -v coq-compcert-64.3.7+8.12~coq_platform coq.8.12.1</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>35 m 26 s</dd>
</dl>
<h2>Installation size</h2>
<p>Total: 102 M</p>
<ul>
<li>11 M <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/cparser/Parser.vo</code></li>
<li>10 M <code>../ocaml-base-compiler.4.11.2/variants/compcert64/bin/ccomp</code></li>
<li>7 M <code>../ocaml-base-compiler.4.11.2/variants/compcert64/bin/clightgen</code></li>
<li>4 M <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/x86/SelectOp.vo</code></li>
<li>4 M <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/x86/SelectLong.vo</code></li>
<li>4 M <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/cfrontend/SimplExprproof.vo</code></li>
<li>3 M <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/backend/ValueDomain.vo</code></li>
<li>3 M <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/x86/Op.vo</code></li>
<li>2 M <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/x86/CombineOp.vo</code></li>
<li>1 M <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/lib/Integers.vo</code></li>
<li>1 M <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/cfrontend/Cminorgenproof.vo</code></li>
<li>1 M <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/flocq/Prop/Double_rounding.vo</code></li>
<li>1 M <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/cfrontend/Cexec.vo</code></li>
<li>1 M <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/backend/Allocation.vo</code></li>
<li>1 M <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/backend/Allocproof.vo</code></li>
<li>1 M <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/cfrontend/SimplLocalsproof.vo</code></li>
<li>1 M <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/cfrontend/Ctyping.vo</code></li>
<li>1 M <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/x86/Asmgenproof1.vo</code></li>
<li>1 M <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/cfrontend/Cstrategy.vo</code></li>
<li>1 M <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/x86/Machregs.vo</code></li>
<li>1 M <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/common/Events.vo</code></li>
<li>1 M <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/backend/RTLgenproof.vo</code></li>
<li>1 M <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/common/Memory.vo</code></li>
<li>1 M <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/backend/Selectionproof.vo</code></li>
<li>975 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/backend/SplitLong.vo</code></li>
<li>924 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/cfrontend/Cshmgenproof.vo</code></li>
<li>811 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/backend/Inliningproof.vo</code></li>
<li>802 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/x86/SelectOpproof.vo</code></li>
<li>733 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/x86/ConstpropOp.vo</code></li>
<li>732 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/common/Values.vo</code></li>
<li>708 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/cfrontend/Cop.vo</code></li>
<li>697 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/lib/FSetAVLplus.vo</code></li>
<li>660 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/x86/Asm.vo</code></li>
<li>656 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/x86/Asmgenproof.vo</code></li>
<li>629 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/backend/Selection.vo</code></li>
<li>603 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/cfrontend/Ctypes.vo</code></li>
<li>603 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/lib/IEEE754_extra.vo</code></li>
<li>580 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/backend/Cminor.vo</code></li>
<li>578 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/cfrontend/Initializersproof.vo</code></li>
<li>569 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/backend/Stackingproof.vo</code></li>
<li>556 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/cfrontend/SimplExprspec.vo</code></li>
<li>543 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/flocq/IEEE754/Binary.vo</code></li>
<li>536 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/backend/SplitLongproof.vo</code></li>
<li>526 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/backend/ValueAnalysis.vo</code></li>
<li>502 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/backend/Deadcodeproof.vo</code></li>
<li>484 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/common/Linking.vo</code></li>
<li>470 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/common/Smallstep.vo</code></li>
<li>466 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/backend/CSEproof.vo</code></li>
<li>464 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/backend/Unusedglobproof.vo</code></li>
<li>461 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/backend/Bounds.vo</code></li>
<li>445 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/x86/SelectLongproof.vo</code></li>
<li>438 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/backend/RTLgenspec.vo</code></li>
<li>437 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/backend/Linearize.vo</code></li>
<li>432 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/common/Globalenvs.vo</code></li>
<li>431 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/cfrontend/SimplLocals.vo</code></li>
<li>419 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/backend/Inliningspec.vo</code></li>
<li>419 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/backend/Unusedglob.vo</code></li>
<li>408 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/lib/Heaps.vo</code></li>
<li>407 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/backend/Registers.vo</code></li>
<li>404 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/backend/CleanupLabels.vo</code></li>
<li>400 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/backend/Cminortyping.vo</code></li>
<li>388 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/x86/ValueAOp.vo</code></li>
<li>388 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/backend/SelectDivproof.vo</code></li>
<li>379 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/backend/Constpropproof.vo</code></li>
<li>379 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/common/AST.vo</code></li>
<li>364 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/backend/NeedDomain.vo</code></li>
<li>364 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/backend/RTLtyping.vo</code></li>
<li>353 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/lib/Floats.vo</code></li>
<li>345 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/x86/ConstpropOpproof.vo</code></li>
<li>324 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/lib/Maps.vo</code></li>
<li>318 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/backend/Asmgenproof0.vo</code></li>
<li>312 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/common/Memdata.vo</code></li>
<li>309 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/lib/Parmov.vo</code></li>
<li>303 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/backend/Tailcallproof.vo</code></li>
<li>295 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/backend/Linearizeproof.vo</code></li>
<li>278 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/common/Separation.vo</code></li>
<li>269 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/lib/Coqlib.vo</code></li>
<li>267 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/x86/NeedOp.vo</code></li>
<li>265 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/backend/Kildall.vo</code></li>
<li>260 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/backend/Tunnelingproof.vo</code></li>
<li>253 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/lib/Zbits.vo</code></li>
<li>246 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/cfrontend/ClightBigstep.vo</code></li>
<li>237 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/backend/Debugvarproof.vo</code></li>
<li>236 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/common/Builtins0.vo</code></li>
<li>235 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/cfrontend/Csem.vo</code></li>
<li>233 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/flocq/Core/Ulp.vo</code></li>
<li>225 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/backend/Debugvar.vo</code></li>
<li>222 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/x86/Asmgen.vo</code></li>
<li>220 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/cfrontend/Clight.vo</code></li>
<li>201 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/backend/CleanupLabelsproof.vo</code></li>
<li>200 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/backend/RTL.vo</code></li>
<li>198 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/backend/Deadcode.vo</code></li>
<li>198 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/driver/Compiler.vo</code></li>
<li>197 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/flocq/Core/Generic_fmt.vo</code></li>
<li>195 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/lib/IntvSets.vo</code></li>
<li>186 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/common/Determinism.vo</code></li>
<li>185 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/flocq/Core/Raux.vo</code></li>
<li>183 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/common/Behaviors.vo</code></li>
<li>183 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/backend/Mach.vo</code></li>
<li>182 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/backend/CminorSel.vo</code></li>
<li>181 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/common/Unityping.vo</code></li>
<li>179 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/backend/Locations.vo</code></li>
<li>176 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/cfrontend/SimplExpr.vo</code></li>
<li>170 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/flocq/IEEE754/Bits.vo</code></li>
<li>162 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/backend/Lineartyping.vo</code></li>
<li>159 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/flocq/Prop/Div_sqrt_error.vo</code></li>
<li>156 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/common/Switch.vo</code></li>
<li>151 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/flocq/Calc/Round.vo</code></li>
<li>150 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/lib/Intv.vo</code></li>
<li>150 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/flocq/Core/Digits.vo</code></li>
<li>147 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/lib/Lattice.vo</code></li>
<li>142 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/backend/RTLgen.vo</code></li>
<li>142 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/cfrontend/Cshmgen.vo</code></li>
<li>141 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/x86/CombineOpproof.vo</code></li>
<li>140 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/flocq/Prop/Round_odd.vo</code></li>
<li>132 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/backend/Renumberproof.vo</code></li>
<li>129 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/flocq/Core/FLT.vo</code></li>
<li>127 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/x86/Stacklayout.vo</code></li>
<li>126 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/driver/Complements.vo</code></li>
<li>126 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/flocq/Prop/Relative.vo</code></li>
<li>124 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/cfrontend/Csharpminor.vo</code></li>
<li>124 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/common/Memtype.vo</code></li>
<li>124 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/backend/Inlining.vo</code></li>
<li>120 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/lib/Postorder.vo</code></li>
<li>115 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/flocq/Core/Round_pred.vo</code></li>
<li>114 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/flocq/Calc/Bracket.vo</code></li>
<li>113 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/lib/UnionFind.vo</code></li>
<li>110 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/cfrontend/Initializers.vo</code></li>
<li>107 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/flocq/Core/Zaux.vo</code></li>
<li>107 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/backend/CSE.vo</code></li>
<li>104 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/backend/SelectDiv.vo</code></li>
<li>99 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/flocq/Core/Round_NE.vo</code></li>
<li>98 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/backend/Linear.vo</code></li>
<li>98 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/backend/LTL.vo</code></li>
<li>96 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/flocq/Prop/Plus_error.vo</code></li>
<li>96 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/x86/Conventions1.vo</code></li>
<li>92 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/backend/CSEdomain.vo</code></li>
<li>91 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/cfrontend/Cminorgen.vo</code></li>
<li>90 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/lib/Ordered.vo</code></li>
<li>89 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/flocq/Prop/Mult_error.vo</code></li>
<li>89 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/backend/Conventions.vo</code></li>
<li>86 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/backend/Constprop.vo</code></li>
<li>84 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/flocq/Core/FTZ.vo</code></li>
<li>83 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/flocq/Core/FLX.vo</code></li>
<li>81 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/backend/Liveness.vo</code></li>
<li>76 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/cparser/Cabs.vo</code></li>
<li>76 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/cfrontend/Csyntax.vo</code></li>
<li>75 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/backend/Stacking.vo</code></li>
<li>75 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/flocq/Core/Float_prop.vo</code></li>
<li>72 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/flocq/Calc/Div.vo</code></li>
<li>72 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/flocq/Calc/Sqrt.vo</code></li>
<li>67 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/backend/Tailcall.vo</code></li>
<li>66 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/backend/Tunneling.vo</code></li>
<li>65 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/lib/Decidableplus.vo</code></li>
<li>65 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/backend/Renumber.vo</code></li>
<li>62 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/lib/Iteration.vo</code></li>
<li>61 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/common/Errors.vo</code></li>
<li>58 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/exportclight/Clightdefs.vo</code></li>
<li>57 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/flocq/Calc/Operations.vo</code></li>
<li>55 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/flocq/Prop/Sterbenz.vo</code></li>
<li>55 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/common/Builtins.vo</code></li>
<li>53 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/x86/Builtins1.vo</code></li>
<li>49 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/flocq/Core/FIX.vo</code></li>
<li>49 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/lib/BoolEqual.vo</code></li>
<li>48 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/flocq/Core/Defs.vo</code></li>
<li>48 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/x86_64/Archi.vo</code></li>
<li>42 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/flocq/Core/Core.vo</code></li>
<li>15 K <code>../ocaml-base-compiler.4.11.2/variants/compcert64/share/man/man1/ccomp.1</code></li>
<li>15 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/lib/Wfsimpl.vo</code></li>
<li>13 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/lib/Axioms.vo</code></li>
<li>4 K <code>../ocaml-base-compiler.4.11.2/variants/compcert64/lib/compcert/include/stddef.h</code></li>
<li>4 K <code>../ocaml-base-compiler.4.11.2/variants/compcert64/lib/compcert/libcompcert.a</code></li>
<li>3 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/driver/Compopts.vo</code></li>
<li>3 K <code>../ocaml-base-compiler.4.11.2/variants/compcert64/lib/compcert/include/float.h</code></li>
<li>2 K <code>../ocaml-base-compiler.4.11.2/variants/compcert64/lib/compcert/include/stdarg.h</code></li>
<li>2 K <code>../ocaml-base-compiler.4.11.2/variants/compcert64/lib/compcert/include/stdalign.h</code></li>
<li>2 K <code>../ocaml-base-compiler.4.11.2/variants/compcert64/lib/compcert/include/stdbool.h</code></li>
<li>2 K <code>../ocaml-base-compiler.4.11.2/variants/compcert64/lib/compcert/include/varargs.h</code></li>
<li>2 K <code>../ocaml-base-compiler.4.11.2/variants/compcert64/lib/compcert/include/stdnoreturn.h</code></li>
<li>1 K <code>../ocaml-base-compiler.4.11.2/variants/compcert64/share/compcert.ini</code></li>
<li>1 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/compcert.config</code></li>
<li>1 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/README</code></li>
<li>1 K <code>../ocaml-base-compiler.4.11.2/lib/coq-variant/compcert64/compcert/VERSION</code></li>
</ul>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq-compcert-64.3.7+8.12~coq_platform</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>
|
docs/index-files/index-7.html
|
ConradWeiser/Unofficial-Robinhood-Api
|
<!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_73) on Tue Jun 20 00:57:42 EDT 2017 -->
<title>H-Index</title>
<meta name="date" content="2017-06-20">
<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="H-Index";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../overview-summary.html">Overview</a></li>
<li>Package</li>
<li>Class</li>
<li><a href="../overview-tree.html">Tree</a></li>
<li><a href="../deprecated-list.html">Deprecated</a></li>
<li class="navBarCell1Rev">Index</li>
<li><a href="../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="index-6.html">Prev Letter</a></li>
<li><a href="index-8.html">Next Letter</a></li>
</ul>
<ul class="navList">
<li><a href="../index.html?index-files/index-7.html" target="_top">Frames</a></li>
<li><a href="index-7.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="contentContainer"><a href="index-1.html">A</a> <a href="index-2.html">B</a> <a href="index-3.html">C</a> <a href="index-4.html">D</a> <a href="index-5.html">F</a> <a href="index-6.html">G</a> <a href="index-7.html">H</a> <a href="index-8.html">I</a> <a href="index-9.html">L</a> <a href="index-10.html">M</a> <a href="index-11.html">O</a> <a href="index-12.html">P</a> <a href="index-13.html">Q</a> <a href="index-14.html">R</a> <a href="index-15.html">S</a> <a href="index-16.html">T</a> <a href="index-17.html">U</a> <a href="index-18.html">V</a> <a name="I:H">
<!-- -->
</a>
<h2 class="title">H</h2>
<dl>
<dt><a href="../conrad/weiser/robinhood/api/parameters/HttpHeaderParameter.html" title="class in conrad.weiser.robinhood.api.parameters"><span class="typeNameLink">HttpHeaderParameter</span></a> - Class in <a href="../conrad/weiser/robinhood/api/parameters/package-summary.html">conrad.weiser.robinhood.api.parameters</a></dt>
<dd>
<div class="block">Class which acts as a wrapper to store HTTP header data</div>
</dd>
<dt><span class="memberNameLink"><a href="../conrad/weiser/robinhood/api/parameters/HttpHeaderParameter.html#HttpHeaderParameter-java.lang.String-java.lang.String-">HttpHeaderParameter(String, String)</a></span> - Constructor for class conrad.weiser.robinhood.api.parameters.<a href="../conrad/weiser/robinhood/api/parameters/HttpHeaderParameter.html" title="class in conrad.weiser.robinhood.api.parameters">HttpHeaderParameter</a></dt>
<dd>
<div class="block">Since HTTP headers can only handle Strings, no overloads are needed for this wrapper</div>
</dd>
</dl>
<a href="index-1.html">A</a> <a href="index-2.html">B</a> <a href="index-3.html">C</a> <a href="index-4.html">D</a> <a href="index-5.html">F</a> <a href="index-6.html">G</a> <a href="index-7.html">H</a> <a href="index-8.html">I</a> <a href="index-9.html">L</a> <a href="index-10.html">M</a> <a href="index-11.html">O</a> <a href="index-12.html">P</a> <a href="index-13.html">Q</a> <a href="index-14.html">R</a> <a href="index-15.html">S</a> <a href="index-16.html">T</a> <a href="index-17.html">U</a> <a href="index-18.html">V</a> </div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../overview-summary.html">Overview</a></li>
<li>Package</li>
<li>Class</li>
<li><a href="../overview-tree.html">Tree</a></li>
<li><a href="../deprecated-list.html">Deprecated</a></li>
<li class="navBarCell1Rev">Index</li>
<li><a href="../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="index-6.html">Prev Letter</a></li>
<li><a href="index-8.html">Next Letter</a></li>
</ul>
<ul class="navList">
<li><a href="../index.html?index-files/index-7.html" target="_top">Frames</a></li>
<li><a href="index-7.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>
|
clean/Linux-x86_64-4.08.1-2.0.5/released/8.8.2/dpdgraph/0.6.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>dpdgraph: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.8.2 / dpdgraph - 0.6</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
dpdgraph
<small>
0.6
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-02-06 22:40:21 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-02-06 22:40:21 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
camlp5 7.14 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-perl 2 Virtual package relying on perl
coq 8.8.2 Formal proof management system
num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.08.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.08.1 Official release 4.08.1
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.3 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "yves.bertot@inria.fr"
license: "LGPL 2.1"
homepage: "https://github.com/karmaki/coq-dpdgraph"
build: [
["./configure"]
["echo" "%{jobs}%" "jobs for the linter"]
[make]
]
bug-reports: "https://github.com/karmaki/coq-dpdgraph/issues"
dev-repo: "git+https://github.com/karmaki/coq-dpdgraph.git"
install: [
[make "install" "BINDIR=%{bin}%"]
]
remove: [
["rm" "%{bin}%/dpd2dot" "%{bin}%/dpdusage"]
["rm" "-R" "%{lib}%/coq/user-contrib/dpdgraph"]
]
depends: [
"ocaml"
"coq" {>= "8.5" & < "8.6~"}
"ocamlgraph"
]
authors: [ "Anne Pacalet" "Yves Bertot"]
synopsis: "Compute dependencies between Coq objects (definitions, theorems) and produce graphs"
flags: light-uninstall
url {
src:
"https://github.com/ybertot/coq-dpdgraph/archive/coq-dpdgraph-0.6.rc1.zip"
checksum: "md5=959e3fbe425fc8c4189635db736fbc9e"
}
</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-dpdgraph.0.6 coq.8.8.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.8.2).
The following dependencies couldn't be met:
- coq-dpdgraph -> coq < 8.6~ -> ocaml < 4.06.0
base of this switch (use `--unlock-base' to force)
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-dpdgraph.0.6</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
style.css
|
adam041/buckle
|
/* reference jQuery UI theme styling */
@import url(https://code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css);
body {
font-family: "Trebuchet MS", "Helvetica", "Arial", "Verdana", "sans-serif";
font-size: 80%;
background-color: #D3D3D3;
}
th {
font-weight: bold;
}
td.TopHeading {
text-transform: uppercase;
text-decoration: underline;
padding-top:inherit;
}
td.Heading {
text-transform: uppercase;
text-decoration: underline;
padding-top:20px;
}
td.Participants {
min-width: 250px;
}
button {
display:inline-block;
width:75px;
height:25px;
background-color:slategray;
color:mediumblue;
font-size:16px;
}
#accordion {
width: 90%;
max-width: 800px;
}
|
static/index.html
|
kwangkim/KaTeX
|
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>KaTeX Test</title>
<script src="katex.js" type="text/javascript"></script>
<link href="main.css" rel="stylesheet" type="text/css">
</head>
<body>
<textarea id="input" rows="5">
\left( x \right) \left( x^2 \right) % comment
\left( \frac{a}{b} \right) \left( \frac{a^2}{b} \right)
\left( \dfrac{a}{b} \right) \left( \dfrac{a^2}{b} \right)
</textarea>
<div id="math"></div>
<input id="permalink" type="button" value="permalink">
<script src="main.js" type="text/javascript"></script>
</body>
</html>
|
apps/client/src/app/pages/list-details/item-details/voyages/voyages.component.html
|
Supamiu/ffxiv-teamcraft
|
<nz-list [nzDataSource]="item.voyages" [nzRenderItem]="voyageTemplate">
<ng-template #voyageTemplate let-voyage>
<nz-list-item>
<nz-list-item-meta [nzTitle]="voyage | i18n">
</nz-list-item-meta>
</nz-list-item>
</ng-template>
</nz-list>
|
clean/Linux-x86_64-4.09.1-2.0.6/released/8.13.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.13.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-12-05 18:22:55 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-12-05 18:22:55 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
conf-gmp 3 Virtual package relying on a GMP lib system installation
coq 8.13.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
zarith 1.12 Implements arithmetic and logical operations over arbitrary-precision integers
# opam file:
opam-version: "2.0"
maintainer: "Hugo.Herbelin@inria.fr"
homepage: "https://github.com/coq-contribs/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.13.0</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.13.0).
The following dependencies couldn't be met:
- coq-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.07.1-2.0.6/released/8.13.0/mathcomp-algebra/1.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>mathcomp-algebra: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.13.0 / mathcomp-algebra - 1.8.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
mathcomp-algebra
<small>
1.8.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2021-12-22 08:53:51 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-12-22 08:53:51 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
conf-gmp 3 Virtual package relying on a GMP lib system installation
coq 8.13.0 Formal proof management system
num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.07.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.07.1 Official release 4.07.1
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.1 A library manager for OCaml
zarith 1.12 Implements arithmetic and logical operations over arbitrary-precision integers
# opam file:
opam-version: "2.0"
name: "coq-mathcomp-algebra"
version: "1.8.0"
maintainer: "Mathematical Components <mathcomp-dev@sympa.inria.fr>"
homepage: "https://math-comp.github.io/"
bug-reports: "https://github.com/math-comp/math-comp/issues"
dev-repo: "git+https://github.com/math-comp/math-comp.git"
license: "CeCILL-B"
build: [ make "-C" "mathcomp/algebra" "-j" "%{jobs}%" ]
install: [ make "-C" "mathcomp/algebra" "install" ]
remove: [ "sh" "-c" "rm -rf '%{lib}%/coq/user-contrib/mathcomp/algebra'" ]
depends: [ "coq-mathcomp-fingroup" { = "1.8.0" } ]
tags: [ "keyword:algebra" "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 Algebra"
description: """
This library contains definitions and theorems about discrete
(i.e. with decidable equality) algebraic structures : ring, fields,
ordered fields, real fields, modules, algebras, integers, rational
numbers, polynomials, matrices, vector spaces...
"""
url {
src: "http://github.com/math-comp/math-comp/archive/mathcomp-1.8.0.tar.gz"
checksum: "sha256=dcb3b29041d61084d21451cd38c0aeb61ef61dd136efaec96055a1ceea3b9162"
}
</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-algebra.1.8.0 coq.8.13.0</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.13.0).
The following dependencies couldn't be met:
- coq-mathcomp-algebra -> coq-mathcomp-fingroup = 1.8.0 -> coq-mathcomp-ssreflect = 1.8.0 -> coq < 8.10~ -> 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-mathcomp-algebra.1.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>
|
_includes/header.html
|
bgohman/portfolio
|
<header class="site-header">
<div class="branding">
<a href="{{ site.baseurl }}/">
<img class="avatar" src="/portfolio/img/avatar.png" alt=""/>
</a>
<h1 class="site-title">
<a href="{{ site.baseurl }}/">{{ site.theme.title }}</a>
</h1>
<br>
<br>
<p>
web developer | problem solver | creative thinker
</p>
</div>
<nav class="site-nav">
<ul>
{% for page in site.pages %}
{% if page.title and page.hide != true %}
<li>
<a class="page-link" href="{{ page.url | prepend: site.baseurl }}">
{{ page.title }}
</a>
</li>
{% endif %}
{% endfor %}
<!-- Social icons from Font Awesome, if enabled -->
{% include icons.html %}
</ul>
</nav>
</header>
|
clean/Linux-x86_64-4.05.0-2.0.1/released/8.7.1/elpi/1.10.1.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>elpi: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.7.1 / elpi - 1.10.1</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
elpi
<small>
1.10.1
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-01-22 02:24:22 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-01-22 02:24:22 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-num base Num library distributed with the OCaml compiler
base-threads base
base-unix base
camlp5 7.14 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-perl 1 Virtual package relying on perl
coq 8.7.1 Formal proof management system
num 0 The Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.05.0 The OCaml compiler (virtual package)
ocaml-base-compiler 4.05.0 Official 4.05.0 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "Enrico Tassi <enrico.tassi@inria.fr>"
authors: [ "Enrico Tassi" ]
license: "LGPL-2.1-or-later"
homepage: "https://github.com/LPCIC/coq-elpi"
bug-reports: "https://github.com/LPCIC/coq-elpi/issues"
dev-repo: "git+https://github.com/LPCIC/coq-elpi"
build: [ [ make "build" "COQBIN=%{bin}%/" "ELPIDIR=%{prefix}%/lib/elpi" "OCAMLWARN=" ]
[ make "test" "COQBIN=%{bin}%/" "ELPIDIR=%{prefix}%/lib/elpi" ] {with-test}
]
install: [ make "install" "COQBIN=%{bin}%/" "ELPIDIR=%{prefix}%/lib/elpi" ]
depends: [
"elpi" {>= "1.13.5" & < "1.14.0~"}
"coq" {>= "8.13" & < "8.14~" }
]
tags: [ "logpath:elpi" ]
synopsis: "Elpi extension language for Coq"
description: """
Coq-elpi provides a Coq plugin that embeds ELPI.
It also provides a way to embed Coq's terms into λProlog using
the Higher-Order Abstract Syntax approach
and a way to read terms back. In addition to that it exports to ELPI a
set of Coq's primitives, e.g. printing a message, accessing the
environment of theorems and data types, defining a new constant and so on.
For convenience it also provides a quotation and anti-quotation for Coq's
syntax in λProlog. E.g. `{{nat}}` is expanded to the type name of natural
numbers, or `{{A -> B}}` to the representation of a product by unfolding
the `->` notation. Finally it provides a way to define new vernacular commands
and
new tactics."""
url {
src: "https://github.com/LPCIC/coq-elpi/archive/v1.10.1.tar.gz"
checksum: "sha256=e6743e11cca651f384eb3cdc89a41e9a62c75300fa80a28cd07d7076957a0620"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-elpi.1.10.1 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-elpi -> coq >= 8.13
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-elpi.1.10.1</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
clean/Linux-x86_64-4.12.1-2.0.8/released/8.13.0/bits/1.1.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>bits: 49 s 🏆</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.13.0 / bits - 1.1.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
bits
<small>
1.1.0
<span class="label label-success">49 s 🏆</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-03-08 23:52:51 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-03-08 23:52:51 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
conf-gmp 4 Virtual package relying on a GMP lib system installation
coq 8.13.0 Formal proof management system
num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.12.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.12.1 Official release 4.12.1
ocaml-config 2 OCaml Switch Configuration
ocaml-options-vanilla 1 Ensure that OCaml is compiled with no special options enabled
ocamlfind 1.9.3 A library manager for OCaml
zarith 1.12 Implements arithmetic and logical operations over arbitrary-precision integers
# opam file:
opam-version: "2.0"
maintainer: "anton.a.trunov@gmail.com"
homepage: "https://github.com/coq-community/bits"
dev-repo: "git+https://github.com/coq-community/bits.git"
bug-reports: "https://github.com/coq-community/bits/issues"
license: "Apache-2.0"
synopsis: "A bit vector library"
description: """
A formalization of bitset operations in Coq and the corresponding
axiomatization and extraction to OCaml native integers"""
build: [make "-j%{jobs}%"]
install: [make "install"]
depends: [
"coq" {(>= "8.10" & < "8.15~")}
"coq-mathcomp-algebra" {(>= "1.12" & < "1.14~")}
]
tags: [
"category:Computer Science/Data Types and Data Structures"
"keyword:bit arithmetic"
"keyword:bitset"
"keyword:bit vector"
"keyword:extraction"
"logpath:Bits"
"date:2021-07-11"
]
authors: [
"Andrew Kennedy <akenn@microsoft.com>"
"Arthur Blot <arthur.blot@ens-lyon.fr>"
"Pierre-Évariste Dagand <pierre-evariste.dagand@lip6.fr>"
]
url {
src: "https://github.com/coq-community/bits/archive/1.1.0.tar.gz"
checksum: "sha512=7e7ff1503c936977ce77e8d74e5aa9bec375e33d640d20baa3ea277dc5db3724aaa52aa16d09dbd9ccbdf2192bcc133d86bbfb0cca79164a8921e2643c27a855"
}
</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-bits.1.1.0 coq.8.13.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-bits.1.1.0 coq.8.13.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>8 m 10 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam list; echo; ulimit -Sv 16000000; timeout 4h opam install -y -v coq-bits.1.1.0 coq.8.13.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>49 s</dd>
</dl>
<h2>Installation size</h2>
<p>Total: 2 M</p>
<ul>
<li>556 K <code>../ocaml-base-compiler.4.12.1/lib/coq/user-contrib/Bits/spec/operations/properties.vo</code></li>
<li>464 K <code>../ocaml-base-compiler.4.12.1/lib/coq/user-contrib/Bits/spec/operations/properties.glob</code></li>
<li>157 K <code>../ocaml-base-compiler.4.12.1/lib/coq/user-contrib/Bits/spec/spec/properties.vo</code></li>
<li>138 K <code>../ocaml-base-compiler.4.12.1/lib/coq/user-contrib/Bits/spec/spec/properties.glob</code></li>
<li>87 K <code>../ocaml-base-compiler.4.12.1/lib/coq/user-contrib/Bits/extraction/axioms32.glob</code></li>
<li>87 K <code>../ocaml-base-compiler.4.12.1/lib/coq/user-contrib/Bits/extraction/axioms16.glob</code></li>
<li>86 K <code>../ocaml-base-compiler.4.12.1/lib/coq/user-contrib/Bits/extraction/axioms8.glob</code></li>
<li>81 K <code>../ocaml-base-compiler.4.12.1/lib/coq/user-contrib/Bits/extraction/axioms32.vo</code></li>
<li>81 K <code>../ocaml-base-compiler.4.12.1/lib/coq/user-contrib/Bits/extraction/axioms16.vo</code></li>
<li>81 K <code>../ocaml-base-compiler.4.12.1/lib/coq/user-contrib/Bits/extraction/axioms8.vo</code></li>
<li>78 K <code>../ocaml-base-compiler.4.12.1/lib/coq/user-contrib/Bits/spec/spec.vo</code></li>
<li>69 K <code>../ocaml-base-compiler.4.12.1/lib/coq/user-contrib/Bits/spec/operations/properties.v</code></li>
<li>54 K <code>../ocaml-base-compiler.4.12.1/lib/coq/user-contrib/Bits/spec/spec.glob</code></li>
<li>52 K <code>../ocaml-base-compiler.4.12.1/lib/coq/user-contrib/Bits/spec/operations.vo</code></li>
<li>44 K <code>../ocaml-base-compiler.4.12.1/lib/coq/user-contrib/Bits/ssrextra/tuple.vo</code></li>
<li>36 K <code>../ocaml-base-compiler.4.12.1/lib/coq/user-contrib/Bits/spec/operations.glob</code></li>
<li>31 K <code>../ocaml-base-compiler.4.12.1/lib/coq/user-contrib/Bits/ssrextra/nat.vo</code></li>
<li>23 K <code>../ocaml-base-compiler.4.12.1/lib/coq/user-contrib/Bits/spec/spec/properties.v</code></li>
<li>22 K <code>../ocaml-base-compiler.4.12.1/lib/coq/user-contrib/Bits/bits.vo</code></li>
<li>20 K <code>../ocaml-base-compiler.4.12.1/lib/coq/user-contrib/Bits/ssrextra/nat.glob</code></li>
<li>20 K <code>../ocaml-base-compiler.4.12.1/lib/coq/user-contrib/Bits/extraction/axioms32.v</code></li>
<li>19 K <code>../ocaml-base-compiler.4.12.1/lib/coq/user-contrib/Bits/extraction/axioms16.v</code></li>
<li>19 K <code>../ocaml-base-compiler.4.12.1/lib/coq/user-contrib/Bits/extraction/axioms8.v</code></li>
<li>18 K <code>../ocaml-base-compiler.4.12.1/lib/coq/user-contrib/Bits/ssrextra/tuple.glob</code></li>
<li>14 K <code>../ocaml-base-compiler.4.12.1/lib/coq/user-contrib/Bits/spec/spec.v</code></li>
<li>8 K <code>../ocaml-base-compiler.4.12.1/lib/coq/user-contrib/Bits/spec/operations.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.12.1/lib/coq/user-contrib/Bits/ssrextra/nat.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.12.1/lib/coq/user-contrib/Bits/ssrextra/tuple.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.12.1/lib/coq/user-contrib/Bits/bits.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.12.1/lib/coq/user-contrib/Bits/bits.v</code></li>
</ul>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq-bits.1.1.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
Reports/bl/bluecollar.1.1.0/BlueCollar.SQLiteRepository-net35.html
|
kuhlenh/port-to-core
|
<!DOCTYPE html>
<html xmlns:msxsl="urn:schemas-microsoft-com:xslt">
<head>
<meta content="en-us" http-equiv="Content-Language" />
<meta content="text/html; charset=utf-16" http-equiv="Content-Type" />
<title _locid="PortabilityAnalysis0">.NET Portability Report</title>
<style>
/* Body style, for the entire document */
body {
background: #F3F3F4;
color: #1E1E1F;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
padding: 0;
margin: 0;
}
/* Header1 style, used for the main title */
h1 {
padding: 10px 0px 10px 10px;
font-size: 21pt;
background-color: #E2E2E2;
border-bottom: 1px #C1C1C2 solid;
color: #201F20;
margin: 0;
font-weight: normal;
}
/* Header2 style, used for "Overview" and other sections */
h2 {
font-size: 18pt;
font-weight: normal;
padding: 15px 0 5px 0;
margin: 0;
}
/* Header3 style, used for sub-sections, such as project name */
h3 {
font-weight: normal;
font-size: 15pt;
margin: 0;
padding: 15px 0 5px 0;
background-color: transparent;
}
h4 {
font-weight: normal;
font-size: 12pt;
margin: 0;
padding: 0 0 0 0;
background-color: transparent;
}
/* Color all hyperlinks one color */
a {
color: #1382CE;
}
/* Paragraph text (for longer informational messages) */
p {
font-size: 10pt;
}
/* Table styles */
table {
border-spacing: 0 0;
border-collapse: collapse;
font-size: 10pt;
}
table th {
background: #E7E7E8;
text-align: left;
text-decoration: none;
font-weight: normal;
padding: 3px 6px 3px 6px;
}
table td {
vertical-align: top;
padding: 3px 6px 5px 5px;
margin: 0px;
border: 1px solid #E7E7E8;
background: #F7F7F8;
}
.NoBreakingChanges {
color: darkgreen;
font-weight:bold;
}
.FewBreakingChanges {
color: orange;
font-weight:bold;
}
.ManyBreakingChanges {
color: red;
font-weight:bold;
}
.BreakDetails {
margin-left: 30px;
}
.CompatMessage {
font-style: italic;
font-size: 10pt;
}
.GoodMessage {
color: darkgreen;
}
/* Local link is a style for hyperlinks that link to file:/// content, there are lots so color them as 'normal' text until the user mouse overs */
.localLink {
color: #1E1E1F;
background: #EEEEED;
text-decoration: none;
}
.localLink:hover {
color: #1382CE;
background: #FFFF99;
text-decoration: none;
}
/* Center text, used in the over views cells that contain message level counts */
.textCentered {
text-align: center;
}
/* The message cells in message tables should take up all avaliable space */
.messageCell {
width: 100%;
}
/* Padding around the content after the h1 */
#content {
padding: 0px 12px 12px 12px;
}
/* The overview table expands to width, with a max width of 97% */
#overview table {
width: auto;
max-width: 75%;
}
/* The messages tables are always 97% width */
#messages table {
width: 97%;
}
/* All Icons */
.IconSuccessEncoded, .IconInfoEncoded, .IconWarningEncoded, .IconErrorEncoded {
min-width: 18px;
min-height: 18px;
background-repeat: no-repeat;
background-position: center;
}
/* Success icon encoded */
.IconSuccessEncoded {
/* Note: Do not delete the comment below. It is used to verify the correctness of the encoded image resource below before the product is released */
/* [---XsltValidateInternal-Base64EncodedImage:IconSuccess#Begin#background-image: url(data:image/png;base64,#Separator#);#End#] */
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABPElEQVR4Xp1Tv0vDUBi8FqeA4NpBcBLcWnQSApncOnTo4FSnjP0DsnXpH5CxiwbHDg4Zuj4oOEXiJgiC4FDcCkLWmIMc1Pfw+eMgQ77v3Xf3Pe51YKGqqisAEwCR1TIAsiAIblSo6xrdHeJR85Xle3mdmCQKb0PsfqyxxzM8K15HZADl/H5+sHpZwYfxyRjTs+kWwKBx8yoHd2mRiuzF8mkJniWH/13u3Fjrs/EdhsdDFHGB/DLXEJBDLh1MWPAhPo1BLB4WX5yQywHR+m3tVe/t97D52CB/ziG0nIgD/qDuYg8WuCcVZ2YGwlJ3YDugkpR/VNcAEx6GEKhERSr71FuO4YCM4XBdwKvecjIlkSnsO0Hyp/GxSeJAdzBKzpOtnPwyyiPdAZhpZptT04tU+zk7s8czeges//s5C5+CwqrR4/gw+AAAAABJRU5ErkJggg==);
}
/* Information icon encoded */
.IconInfoEncoded {
/* Note: Do not delete the comment below. It is used to verify the correctness of the encoded image resource below before the product is released */
/* [---XsltValidateInternal-Base64EncodedImage:IconInformation#Begin#background-image: url(data:image/png;base64,#Separator#);#End#] */
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABHElEQVR4Xs2TsUoDQRRF7wwoziokjZUKadInhdhukR9YP8DMX1hYW+QvdsXa/QHBbcXC7W0CamWTQnclFutceIQJwwaWNLlwm5k5d94M76mmaeCrrmsLYOocY12FcxZFUeozCqKqqgYA8uevv1H6VuPxcwlfk5N92KHBxfFeCSAxxswlYAW/Xr989x/mv9gkhtyMDhcAxgzRsp7flj8B/HF1RsMXq+NZMkopaHe7lbKxQUEIGbKsYNoGn969060hZBkQex/W8oRQwsQaW2o3Ago2SVcJUzAgY3N0lTCZZm+zPS8HB51gMmS1DEYyOz9acKO1D8JWTlafKIMxdhvlfdyT94Vv5h7P8Ky7nQzACmhvKq3zk3PjW9asz9D/1oigecsioooAAAAASUVORK5CYII=);
}
/* Warning icon encoded */
.IconWarningEncoded {
/* Note: Do not delete the comment below. It is used to verify the correctness of the encoded image resource below before the product is released */
/* [---XsltValidateInternal-Base64EncodedImage:IconWarning#Begin#background-image: url(data:image/png;base64,#Separator#);#End#] */
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAACXBIWXMAAA7EAAAOxAGVKw4bAAAAx0lEQVR4XpWSMQ7CMAxFf4xAyBMLCxMrO8dhaBcuwdCJS3RJBw7SA/QGTCxdWJgiQYWKXJWKIXHIlyw5lqr34tQgEOdcBsCOx5yZK3hCCKdYXneQkh4pEfqzLfu+wVDSyyzFoJjfz9NB+pAF+eizx2Vruts0k15mPgvS6GYvpVtQhB61IB/dk6AF6fS4Ben0uIX5odtFe8Q/eW1KvFeH4e8khT6+gm5B+t3juyDt7n0jpe+CANTd+oTUjN/U3yVaABnSUjFz/gFq44JaVSCXeQAAAABJRU5ErkJggg==);
}
/* Error icon encoded */
.IconErrorEncoded {
/* Note: Do not delete the comment below. It is used to verify the correctness of the encoded image resource below before the product is released */
/* [---XsltValidateInternal-Base64EncodedImage:IconError#Begin#background-image: url(data:image/png;base64,#Separator#);#End#] */
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABQElEQVR4XqWTvUoEQRCE6wYPZUA80AfwAQz23uCMjA7MDRQEIzPBVEyNTQUFIw00vcQTTMzuAh/AxEQQT8HF/3G/oGGnEUGuoNnd6qoZuqltyKEsyzVJq5I6rnUp6SjGeGhESikzzlc1eL7opfuVbrqbU1Zw9NCgtQMaZpY0eNnaaL2fHusvTK5vKu7sjSS1Y4y3QUA6K3e3Mau5UFDyMP7tYF9o8cAHZv68vipoIJg971PZIZ5HiwdvYGGvFVFHmGmZ2MxwmQYPXubPl9Up0tfoMQGetXd6mRbvhBw+boZ6WF7Mbv1+GsHRk0fQmPAH1GfmZirbCfDJ61tw3Px8/8pZsPAG4jlVhcPgZ7adwNWBB68lkRQWFiTgFlbnLY3DGGM7izIJIyT/jjIvEJw6fdJTc6krDzh6aMwMP9bvDH4ADSsa9uSWVJkAAAAASUVORK5CYII=);
}
</style>
</head>
<body>
<h1 _locid="PortabilityReport">.NET Portability Report</h1>
<div id="content">
<div id="submissionId" style="font-size:8pt;">
<p>
<i>
Submission Id
a2df6b6c-0cd7-4440-8d0c-6e906c71f34d
</i>
</p>
</div>
<h2 _locid="SummaryTitle">
<a name="Portability Summary"></a>Portability Summary
</h2>
<div id="summary">
<table>
<tbody>
<tr>
<th>Assembly</th>
<th>ASP.NET 5,Version=v1.0</th>
<th>Windows,Version=v8.1</th>
<th>.NET Framework,Version=v4.6</th>
<th>Windows Phone,Version=v8.1</th>
</tr>
<tr>
<td><strong><a href="#BlueCollar.SQLiteRepository">BlueCollar.SQLiteRepository</a></strong></td>
<td class="text-center">92.73 %</td>
<td class="text-center">85.47 %</td>
<td class="text-center">100.00 %</td>
<td class="text-center">85.47 %</td>
</tr>
</tbody>
</table>
</div>
<div id="details">
<a name="BlueCollar.SQLiteRepository"><h3>BlueCollar.SQLiteRepository</h3></a>
<table>
<tbody>
<tr>
<th>Target type</th>
<th>ASP.NET 5,Version=v1.0</th>
<th>Windows,Version=v8.1</th>
<th>.NET Framework,Version=v4.6</th>
<th>Windows Phone,Version=v8.1</th>
<th>Recommended changes</th>
</tr>
<tr>
<td>System.ApplicationException</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td>Use other exception types.</td>
</tr>
<tr>
<td style="padding-left:2em">#ctor(System.String)</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td>Use other exception types.</td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>System.ComponentModel.BrowsableAttribute</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td>Remove usage. This is a deprecated attribute from Winforms for design-time property window support</td>
</tr>
<tr>
<td style="padding-left:2em">#ctor(System.Boolean)</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td>Remove usage. This is a deprecated attribute from Winforms for design-time property window support</td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>System.Data.CommandType</td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>System.Data.Common.DbConnection</td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">Open</td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>System.Data.Common.DbConnectionStringBuilder</td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">get_ConnectionString</td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>System.Data.DataException</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">#ctor(System.String,System.Exception)</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>System.Data.DbType</td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>System.Data.IDataParameter</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">get_ParameterName</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">get_Value</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">set_DbType(System.Data.DbType)</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">set_Direction(System.Data.ParameterDirection)</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">set_ParameterName(System.String)</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">set_Value(System.Object)</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>System.Data.IDataParameterCollection</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">Contains(System.String)</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">get_Item(System.String)</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>System.Data.IDataReader</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">NextResult</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">Read</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>System.Data.IDataRecord</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">get_FieldCount</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">GetName(System.Int32)</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">GetValue(System.Int32)</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>System.Data.IDbCommand</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">CreateParameter</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">ExecuteNonQuery</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">ExecuteReader</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">get_CommandText</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">get_CommandType</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">get_Parameters</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">set_CommandText(System.String)</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">set_CommandTimeout(System.Int32)</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">set_CommandType(System.Data.CommandType)</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">set_Transaction(System.Data.IDbTransaction)</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>System.Data.IDbConnection</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">BeginTransaction</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">BeginTransaction(System.Data.IsolationLevel)</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">CreateCommand</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">get_ConnectionString</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">Open</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>System.Data.IDbDataParameter</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">set_Size(System.Int32)</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>System.Data.IDbTransaction</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">Commit</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">Rollback</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>System.Data.IsolationLevel</td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>System.Data.ParameterDirection</td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>System.DBNull</td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">Value</td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>System.IO.File</td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">Exists(System.String)</td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>System.Reflection.Binder</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td>Use an overload that does not take a Binder.</td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>System.Reflection.BindingFlags</td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>System.Reflection.Emit.DynamicMethod</td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">#ctor(System.String,System.Type,System.Type[])</td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">#ctor(System.String,System.Type,System.Type[],System.Boolean)</td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">#ctor(System.String,System.Type,System.Type[],System.Type,System.Boolean)</td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">CreateDelegate(System.Type)</td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">GetILGenerator</td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>System.Reflection.Emit.ILGenerator</td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">BeginCatchBlock(System.Type)</td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">BeginExceptionBlock</td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">DeclareLocal(System.Type)</td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">DefineLabel</td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">Emit(System.Reflection.Emit.OpCode)</td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">Emit(System.Reflection.Emit.OpCode,System.Byte)</td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">Emit(System.Reflection.Emit.OpCode,System.Int32)</td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">Emit(System.Reflection.Emit.OpCode,System.Reflection.ConstructorInfo)</td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">Emit(System.Reflection.Emit.OpCode,System.Reflection.Emit.Label)</td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">Emit(System.Reflection.Emit.OpCode,System.Reflection.FieldInfo)</td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">Emit(System.Reflection.Emit.OpCode,System.Reflection.MethodInfo)</td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">Emit(System.Reflection.Emit.OpCode,System.SByte)</td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">Emit(System.Reflection.Emit.OpCode,System.String)</td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">Emit(System.Reflection.Emit.OpCode,System.Type)</td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">EmitCall(System.Reflection.Emit.OpCode,System.Reflection.MethodInfo,System.Type[])</td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">EndExceptionBlock</td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">MarkLabel(System.Reflection.Emit.Label)</td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>System.Reflection.Emit.Label</td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>System.Reflection.Emit.LocalBuilder</td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>System.Reflection.ParameterModifier</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td>Use an overload that does not take a ParameterModifier array.</td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>System.Reflection.PropertyInfo</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td>Use PropertyInfo.SetMethod property</td>
</tr>
<tr>
<td style="padding-left:2em">GetGetMethod</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td>Use PropertyInfo.GetMethod property</td>
</tr>
<tr>
<td style="padding-left:2em">GetSetMethod</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td>Use PropertyInfo.SetMethod property</td>
</tr>
<tr>
<td style="padding-left:2em">GetSetMethod(System.Boolean)</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td>Use PropertyInfo.SetMethod property</td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>System.Threading.Thread</td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">get_CurrentThread</td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">get_ManagedThreadId</td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>System.Type</td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">EmptyTypes</td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td>new Type[0] (or create your own static property which returns a cached version of this)</td>
</tr>
<tr>
<td style="padding-left:2em">get_Assembly</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td>.GetTypeInfo().Assembly</td>
</tr>
<tr>
<td style="padding-left:2em">get_IsEnum</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td>.GetTypeInfo().IsEnum</td>
</tr>
<tr>
<td style="padding-left:2em">get_IsValueType</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td>.GetTypeInfo().IsValueType</td>
</tr>
<tr>
<td style="padding-left:2em">GetConstructor(System.Reflection.BindingFlags,System.Reflection.Binder,System.Type[],System.Reflection.ParameterModifier[])</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td>Use GetConstructor(Type[]) to search for public constructors by parameter type or filter the results of GetConstructors(BindingFlags) using LINQ for other queries.</td>
</tr>
<tr>
<td style="padding-left:2em">GetConstructor(System.Type[])</td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">GetField(System.String)</td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">GetFields(System.Reflection.BindingFlags)</td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">GetMethod(System.String)</td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">GetMethod(System.String,System.Reflection.BindingFlags)</td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td>Equivalent available: Add using for System.Reflection, and reference System.Reflection.TypeExtensions </td>
</tr>
<tr>
<td style="padding-left:2em">GetMethod(System.String,System.Type[])</td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">GetProperties</td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">GetProperties(System.Reflection.BindingFlags)</td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">GetProperty(System.String)</td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">GetProperty(System.String,System.Reflection.BindingFlags)</td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">GetTypeCode(System.Type)</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td>Use Type or RuntimeTypeHandle instead.</td>
</tr>
<tr>
<td style="padding-left:2em">IsAssignableFrom(System.Type)</td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>System.TypeCode</td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td>Use Type or RuntimeTypeHandle instead.</td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
</tbody>
</table>
<p>
<a href="#Portability Summary">Back to Summary</a>
</p>
</div>
</div>
</body>
</html>
|
all-data/2000-2999/2365-31.html
|
BuzzAcademy/idioms-moe-unformatted-data
|
<table width="90%" border="0"><tr><td><script>function openfile(url) {fullwin = window.open(url, "fulltext", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes");}</script><div class="layoutclass_pic"><div class="layoutclass_first_pic"><table class="ztable"><tr><th class="ztd1"><b>成語 </b></th><td class="ztd2">目空一世</td></tr>
<tr><th class="ztd1"><b>典源 </b></th><td class="ztd2"> 此處所列為「<a href="/cgi-bin/cydic/gsweb.cgi?o=dcydic&schfmt=text&gourl=%3De0%26sec%3Dsec1%26op%3Dsid%3D%22CW0000000613%22.%26v%3D-1" class="clink" target=_blank>目空一切</a>」之典源,提供參考。</font> ※#宋.陳亮<font class="dianuan_mark">《陳亮集.卷一六.題跋.題喻季直文編》</font><font size=-2 color="#999900"><font class="dianyuanfont"><b><i>1></i></b></font></font><br><font size=4 color="#808080">烏傷固多士,而稱雄於其間者,余熟其四人焉,蓋非特烏傷之雄也。喻叔奇於人煦煦有恩意,能使人別去三日,念之輒不釋。其為文精深簡雅,讀之愈久而意若新。</font>何茂恭目空四海,獨能降意<font size=-2 color="#999900"><font class="dianyuanfont"><b><i>2></i></b></font></font>於一世豪傑,而士亦樂親之。<font size=4 color="#808080">其文奇壯精緻,反覆開闔,而卒能自闡其意者。陳德先舉一世不足以當其意,而人亦不願從之游,然其文清新勁麗,要不可少。喻季直遇人無親疏貴賤皆與之盡,而於余尤好。其文蔚茂馳騁,蓋將包羅眾體,而一字不苟,讀之亹亹而無厭也。</font></font> <br><font class="dianuan_mark2">〔注解〕</font><br></font>
<div class="Rulediv"><font class="english_word">(1)</font> 典故或見於宋.蘇軾〈書丹元子所示李太白真〉詩。</font></div>
<div class="Rulediv"><font class="english_word">(2)</font> 降意:屈意、降心相從。</font><font size=4 ></div><br><font class="dianuan_mark2">〔參考資料〕</font><br></font> 宋.蘇軾〈書丹元子所示李太白真〉詩(據<font class="dianuan_mark">《蘇東坡全集.後集.卷三》</font>引)<br>天人幾何同一漚,謫仙非謫乃其游。麾斥八極隘九州,化為兩鳥鳴相酬。一鳴一止三千秋,開元有道為少留,縻之不可矧肯求?西望太白橫峨岷,眼高四海空無人。大兒汾陽中令君,小兒天臺坐忘真。生年不知高將軍,手汙吾足乃敢瞋,作詩一笑君應聞。</font></td></tr>
</td></tr></table></div> <!-- layoutclass_first_pic --><div class="layoutclass_second_pic"></div> <!-- layoutclass_second_pic --></div> <!-- layoutclass_pic --></td></tr></table>
|
src/animate_demos/suspension.html
|
thx/minecraft-animation
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Suspension</title>
<script src="http://g.tbcdn.cn/thx/brix-release/0.1.5/require-config-css-debug.js"></script>
<link href="../../dist/css/base.css" rel="stylesheet">
<link href="../../dist/css/animate.css" rel="stylesheet">
</head>
<body>
<div class="desc">
<div class="animate-class">
<h5><strong>动画样式名</strong></h5>
<ul>
<li>悬浮:<code>.bx-anim-suspension</code></li>
</ul>
</div>
</div>
<div class="animate-content clearfix">
<div class="arrow-wrap">
浏览更多
<span class="iconfont-base bx-anim-suspension"></span>
</div>
</div>
</body>
</html>
|
Reports/ca/caramel.web.mvc.bootstrap.1.0.0.52/Caramel.Web.Mvc.Bootstrap-net45.html
|
kuhlenh/port-to-core
|
<!DOCTYPE html>
<html xmlns:msxsl="urn:schemas-microsoft-com:xslt">
<head>
<meta content="en-us" http-equiv="Content-Language" />
<meta content="text/html; charset=utf-16" http-equiv="Content-Type" />
<title _locid="PortabilityAnalysis0">.NET Portability Report</title>
<style>
/* Body style, for the entire document */
body {
background: #F3F3F4;
color: #1E1E1F;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
padding: 0;
margin: 0;
}
/* Header1 style, used for the main title */
h1 {
padding: 10px 0px 10px 10px;
font-size: 21pt;
background-color: #E2E2E2;
border-bottom: 1px #C1C1C2 solid;
color: #201F20;
margin: 0;
font-weight: normal;
}
/* Header2 style, used for "Overview" and other sections */
h2 {
font-size: 18pt;
font-weight: normal;
padding: 15px 0 5px 0;
margin: 0;
}
/* Header3 style, used for sub-sections, such as project name */
h3 {
font-weight: normal;
font-size: 15pt;
margin: 0;
padding: 15px 0 5px 0;
background-color: transparent;
}
h4 {
font-weight: normal;
font-size: 12pt;
margin: 0;
padding: 0 0 0 0;
background-color: transparent;
}
/* Color all hyperlinks one color */
a {
color: #1382CE;
}
/* Paragraph text (for longer informational messages) */
p {
font-size: 10pt;
}
/* Table styles */
table {
border-spacing: 0 0;
border-collapse: collapse;
font-size: 10pt;
}
table th {
background: #E7E7E8;
text-align: left;
text-decoration: none;
font-weight: normal;
padding: 3px 6px 3px 6px;
}
table td {
vertical-align: top;
padding: 3px 6px 5px 5px;
margin: 0px;
border: 1px solid #E7E7E8;
background: #F7F7F8;
}
.NoBreakingChanges {
color: darkgreen;
font-weight:bold;
}
.FewBreakingChanges {
color: orange;
font-weight:bold;
}
.ManyBreakingChanges {
color: red;
font-weight:bold;
}
.BreakDetails {
margin-left: 30px;
}
.CompatMessage {
font-style: italic;
font-size: 10pt;
}
.GoodMessage {
color: darkgreen;
}
/* Local link is a style for hyperlinks that link to file:/// content, there are lots so color them as 'normal' text until the user mouse overs */
.localLink {
color: #1E1E1F;
background: #EEEEED;
text-decoration: none;
}
.localLink:hover {
color: #1382CE;
background: #FFFF99;
text-decoration: none;
}
/* Center text, used in the over views cells that contain message level counts */
.textCentered {
text-align: center;
}
/* The message cells in message tables should take up all avaliable space */
.messageCell {
width: 100%;
}
/* Padding around the content after the h1 */
#content {
padding: 0px 12px 12px 12px;
}
/* The overview table expands to width, with a max width of 97% */
#overview table {
width: auto;
max-width: 75%;
}
/* The messages tables are always 97% width */
#messages table {
width: 97%;
}
/* All Icons */
.IconSuccessEncoded, .IconInfoEncoded, .IconWarningEncoded, .IconErrorEncoded {
min-width: 18px;
min-height: 18px;
background-repeat: no-repeat;
background-position: center;
}
/* Success icon encoded */
.IconSuccessEncoded {
/* Note: Do not delete the comment below. It is used to verify the correctness of the encoded image resource below before the product is released */
/* [---XsltValidateInternal-Base64EncodedImage:IconSuccess#Begin#background-image: url(data:image/png;base64,#Separator#);#End#] */
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABPElEQVR4Xp1Tv0vDUBi8FqeA4NpBcBLcWnQSApncOnTo4FSnjP0DsnXpH5CxiwbHDg4Zuj4oOEXiJgiC4FDcCkLWmIMc1Pfw+eMgQ77v3Xf3Pe51YKGqqisAEwCR1TIAsiAIblSo6xrdHeJR85Xle3mdmCQKb0PsfqyxxzM8K15HZADl/H5+sHpZwYfxyRjTs+kWwKBx8yoHd2mRiuzF8mkJniWH/13u3Fjrs/EdhsdDFHGB/DLXEJBDLh1MWPAhPo1BLB4WX5yQywHR+m3tVe/t97D52CB/ziG0nIgD/qDuYg8WuCcVZ2YGwlJ3YDugkpR/VNcAEx6GEKhERSr71FuO4YCM4XBdwKvecjIlkSnsO0Hyp/GxSeJAdzBKzpOtnPwyyiPdAZhpZptT04tU+zk7s8czeges//s5C5+CwqrR4/gw+AAAAABJRU5ErkJggg==);
}
/* Information icon encoded */
.IconInfoEncoded {
/* Note: Do not delete the comment below. It is used to verify the correctness of the encoded image resource below before the product is released */
/* [---XsltValidateInternal-Base64EncodedImage:IconInformation#Begin#background-image: url(data:image/png;base64,#Separator#);#End#] */
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABHElEQVR4Xs2TsUoDQRRF7wwoziokjZUKadInhdhukR9YP8DMX1hYW+QvdsXa/QHBbcXC7W0CamWTQnclFutceIQJwwaWNLlwm5k5d94M76mmaeCrrmsLYOocY12FcxZFUeozCqKqqgYA8uevv1H6VuPxcwlfk5N92KHBxfFeCSAxxswlYAW/Xr989x/mv9gkhtyMDhcAxgzRsp7flj8B/HF1RsMXq+NZMkopaHe7lbKxQUEIGbKsYNoGn969060hZBkQex/W8oRQwsQaW2o3Ago2SVcJUzAgY3N0lTCZZm+zPS8HB51gMmS1DEYyOz9acKO1D8JWTlafKIMxdhvlfdyT94Vv5h7P8Ky7nQzACmhvKq3zk3PjW9asz9D/1oigecsioooAAAAASUVORK5CYII=);
}
/* Warning icon encoded */
.IconWarningEncoded {
/* Note: Do not delete the comment below. It is used to verify the correctness of the encoded image resource below before the product is released */
/* [---XsltValidateInternal-Base64EncodedImage:IconWarning#Begin#background-image: url(data:image/png;base64,#Separator#);#End#] */
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAACXBIWXMAAA7EAAAOxAGVKw4bAAAAx0lEQVR4XpWSMQ7CMAxFf4xAyBMLCxMrO8dhaBcuwdCJS3RJBw7SA/QGTCxdWJgiQYWKXJWKIXHIlyw5lqr34tQgEOdcBsCOx5yZK3hCCKdYXneQkh4pEfqzLfu+wVDSyyzFoJjfz9NB+pAF+eizx2Vruts0k15mPgvS6GYvpVtQhB61IB/dk6AF6fS4Ben0uIX5odtFe8Q/eW1KvFeH4e8khT6+gm5B+t3juyDt7n0jpe+CANTd+oTUjN/U3yVaABnSUjFz/gFq44JaVSCXeQAAAABJRU5ErkJggg==);
}
/* Error icon encoded */
.IconErrorEncoded {
/* Note: Do not delete the comment below. It is used to verify the correctness of the encoded image resource below before the product is released */
/* [---XsltValidateInternal-Base64EncodedImage:IconError#Begin#background-image: url(data:image/png;base64,#Separator#);#End#] */
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABQElEQVR4XqWTvUoEQRCE6wYPZUA80AfwAQz23uCMjA7MDRQEIzPBVEyNTQUFIw00vcQTTMzuAh/AxEQQT8HF/3G/oGGnEUGuoNnd6qoZuqltyKEsyzVJq5I6rnUp6SjGeGhESikzzlc1eL7opfuVbrqbU1Zw9NCgtQMaZpY0eNnaaL2fHusvTK5vKu7sjSS1Y4y3QUA6K3e3Mau5UFDyMP7tYF9o8cAHZv68vipoIJg971PZIZ5HiwdvYGGvFVFHmGmZ2MxwmQYPXubPl9Up0tfoMQGetXd6mRbvhBw+boZ6WF7Mbv1+GsHRk0fQmPAH1GfmZirbCfDJ61tw3Px8/8pZsPAG4jlVhcPgZ7adwNWBB68lkRQWFiTgFlbnLY3DGGM7izIJIyT/jjIvEJw6fdJTc6krDzh6aMwMP9bvDH4ADSsa9uSWVJkAAAAASUVORK5CYII=);
}
</style>
</head>
<body>
<h1 _locid="PortabilityReport">.NET Portability Report</h1>
<div id="content">
<div id="submissionId" style="font-size:8pt;">
<p>
<i>
Submission Id
55546f3b-883c-491e-b4a3-caa316fb786a
</i>
</p>
</div>
<h2 _locid="SummaryTitle">
<a name="Portability Summary"></a>Portability Summary
</h2>
<div id="summary">
<table>
<tbody>
<tr>
<th>Assembly</th>
<th>ASP.NET 5,Version=v1.0</th>
<th>Windows,Version=v8.1</th>
<th>.NET Framework,Version=v4.6</th>
<th>Windows Phone,Version=v8.1</th>
</tr>
<tr>
<td><strong><a href="#Caramel.Web.Mvc.Bootstrap">Caramel.Web.Mvc.Bootstrap</a></strong></td>
<td class="text-center">100.00 %</td>
<td class="text-center">100.00 %</td>
<td class="text-center">100.00 %</td>
<td class="text-center">100.00 %</td>
</tr>
</tbody>
</table>
</div>
<div id="details">
</div>
</div>
</body>
</html>
|
kb_seed/tutorials/command_line_pipes.html
|
kbase/docs
|
<h1>Advanced Methods for Retrieving Data</h1>
<p><strong>Purpose: </strong>To learn the <a name="CDM222">CDM</a> <a href="http://pubseed.theseed.org/ErdbDocWidget.cgi?xmlFileName=/home/parrello/CdmiData/Published/KSaplingDBD.xml" name="Entity-Relationship Model223">Entity-Relationship Model</a> and
how to run command-line tools to expose data. </p>
<p><strong>Required Prerequisite Activities: </strong>
<a href="/get-started/iris-quick-start">Get Started with IRIS</a> </p>
<p> <strong>Suggested Prerequisite Activities: </strong> <a href="/user-support/tutorials/retrieving-data/basics-in-retrieving-data-from-kbase/">Basics in Retrieving Data from KBase</a> </p>
<p><strong>Related Tutorials:</strong> <a href="/user-support/tutorials/retrieving-data/advanced-methods-for-retrieving-data-ii/">Advanced Methods for Retrieving Data II</a> </p>
<h2>Introduction</h2>
The <a name="Central Store224">Central Store</a> (<b>CS</b>) is the KBase integration of the data needed to support the creation
and validation of <a name="metabolic225">metabolic</a> and regulatory
models. It will certainly be used for many other purposes, but its
creation is being driven by the needs of the modelling community. <br>
<br>
We have described many details of how to access the contents of the CS
via command-line tools in <a href="/for-users/tutorials/retrieving-data/basics-in-retrieving-data-from-kbase/">Basics in Retrieving Data from KBase</a>.
This document is designed to complement that tutorial. We hope to
explain an overview of the approach of piping KBase tools together on
the command-line, as well as some very minimal notes relating to a
subset of the Unix tools. <br>
<br>
To understand the contents of either tutorial you really do need to be
able to bring up the entity-relationship model describing the contents
of the CS and understand the contents of that model, which is often
called the <a name="Central Data Model226">Central Data Model</a> (<b><a name="CDM227">CDM</a></b>). See the start of the companion tutorial to get an overview of the <a name="CDM228">CDM</a> and how to get started. <br>
<br>
We realize that most users will utlimately use user interfaces that
obviate the need to do anything at the command-line. We look forward to
that day. Until then, there is a great deal of use that can be made of
the CS in its present form, using the rather primitive environment
supported by the command-line.
<h2>The Basic Philosophy of the CS Command-line Tools</h2>
We think of most of the KBase command-line tools as taking in a file
containing a tab-separated table and outputting a modified table. The
most common modification is the addition of one or more columns. We
create "pipelines" of these tools to implement fairly complex
transformations leading to the final table containing the desired
output. For example, consider the following little <a name="pipeline229">pipeline</a> : <br>
<pre> <a href="/developer-zone/documentation/cdm-entity-relationship-command-scripts/#all_entities_Genome" target="_blank">all_entities_Genome</a> -f scientific_name | grep "Streptococcus pneumoniae"<br>
</pre>
The <i><a href="/developer-zone/documentation/cdm-entity-relationship-command-scripts/#all_entities_Genome" target="_blank">all_entities_Genome</a></i> command is thought of as
producing a table in which the first column (by default) is the genome
ID, and any extra columns come from the arguments of the command. In
this case, we get a 2-column table <br>
<pre> [genome-ID,genome-name]<br>
</pre>
This 2-column table is fed into a Unix command called <i><a name="grep230">grep</a></i> , which keeps lines that "match" its argument. In this case, the <i><a name="grep231">grep</a></i> extracts rows in the table that "match"
the string "Streptococcus pneumoniae." Thus, we get as a result a
2-column table in which each row contains "Streptococcus pneumoniae."
Upon running the command, we got <br>
<pre> kb|g.1340 Streptococcus pneumoniae SP19-BS75<br> kb|g.1880 Streptococcus pneumoniae BS457<br> kb|g.3485 Streptococcus pneumoniae SPN7465<br> kb|g.9772 Streptococcus pneumoniae SP18-BS74<br> kb|g.3478 Streptococcus pneumoniae SPN034183<br> kb|g.1784 Streptococcus pneumoniae JJA<br> kb|g.9944 Streptococcus pneumoniae CDC1873-00<br> kb|g.3474 Streptococcus pneumoniae OXC141<br> kb|g.3484 Streptococcus pneumoniae SPN033038<br> kb|g.1881 Streptococcus pneumoniae BS458<br> kb|g.110 Streptococcus pneumoniae OXC141<br> kb|g.1334 Streptococcus pneumoniae SP3-BS71<br> .<br> .<br> .<br>
</pre>
Transforming tables by extracting rows that contain a given string (or,
more generally, a pattern), extracting columns from a table, or sorting
the rows in a table is the basic style we advocate. For example,
suppose that you wanted to find all features of <i>Streptococcus
pneumoniae</i> that had been assigned a specific function (say, <i>triosephosphate
isomerase</i> ). You might try using (as one long command) <br>
<pre>
<a href="/developer-zone/documentation/cdm-entity-relationship-command-scripts/#all_entities_Genome" target="_blank">all_entities_Genome</a> -f scientific_name |<br> grep "Streptococcus pneumoniae" |<br> <a href="/developer-zone/documentation/cdm-command-line-scripts/#genomes_to_fids" target="_blank">genomes_to_fids</a> CDS -c 1 | <br> <a href="/developer-zone/documentation/cdm-command-line-scripts/#fids_to_functions" target="_blank">fids_to_functions</a> | <br> grep -i "triosephosphate isomerase"<br>
</pre>
This command may take a few minutes. You can issue other commands while waiting for this command to finish. An alternate way to do the above, is to break it into a series of intermediate steps.
<pre>
<a href="/developer-zone/documentation/cdm-entity-relationship-command-scripts/#all_entities_Genome" target="_blank">all_entities_Genome</a> -f scientific_name | grep "Streptococcus pneumoniae" > Strep_genomes
cat Strep_genomes | <a href="/developer-zone/documentation/cdm-command-line-scripts/#genomes_to_fids" target="_blank">genomes_to_fids</a> CDS -c 1 > Strep_genomes_with_fids
cat Strep_genomes_with_fids | <a href="/developer-zone/documentation/cdm-command-line-scripts/#fids_to_functions" target="_blank">fids_to_functions</a> > Strep_genomes_with_functions
grep -i "triosephosphate isomerase" Strep_genomes_with_functions<br>
</pre>
Either of these approaches should produce output like <br>
<pre> kb|g.1340 Streptococcus pneumoniae SP19-BS75 kb|g.1340.peg.783 Triosephosphate isomerase (EC 5.3.1.1)<br> kb|g.9772 Streptococcus pneumoniae SP18-BS74 kb|g.9772.peg.1261 triosephosphate isomerase<br> kb|g.9772 Streptococcus pneumoniae SP18-BS74 kb|g.9772.peg.1663 triosephosphate isomerase<br> kb|g.9772 Streptococcus pneumoniae SP18-BS74 kb|g.9772.peg.2175 triosephosphate isomerase<br> kb|g.9772 Streptococcus pneumoniae SP18-BS74 kb|g.9772.peg.2207 triosephosphate isomerase<br> kb|g.3478 Streptococcus pneumoniae SPN034183 kb|g.3478.peg.287 Triosephosphate isomerase (EC 5.3.1.1)<br> .<br> .<br> .<br>
</pre>
Here, some extra comments are necessary.
<ol>
<li><i><a href="/developer-zone/documentation/cdm-command-line-scripts/#genomes_to_fids" target="_blank">genomes_to_fids</a></i> is a KBase command that takes
a tab-separated table as input, and one of the columns in the table
must contain KBase genome IDs. By default, that column is the last
column in the table (i.e., the rightmost). If the column of genome IDs
is not the last, use the "-c N" argument to say that the column is the
Nth. </li>
<li><i><a href="/developer-zone/documentation/cdm-command-line-scripts/#fids_to_functions" target="_blank">fids_to_functions</a></i> is a KBase command that
takes a table containing a column of feature ids (i.e., fids), which by
default is the last column, and extends the table with one more column,
the function assigned to the feature. </li>
<li> Finally, the "-i" argument to <i><a name="grep232">grep</a></i> makes the match case insensitive. <i><a name="grep233">grep</a></i> is
an extremely powerful command with a number of useful options (you can
select all rows that do not match, rows that match some specified
pattern, etc.) </li>
</ol>
<h2> A Short Exercise</h2>
Now, as an exercise, try to show the IDs and functions of all fids that
have precisely the same function as <i>kb|g.9772.<a name="peg234">peg</a>.2175</i>. <br>
<br>
We would likely use the following <a name="pipeline235">pipeline</a> : <br>
<pre> echo 'kb|g.9772.peg.2175' | <a href="/developer-zone/documentation/cdm-command-line-scripts/#fids_to_proteins" target="_blank">fids_to_proteins</a> | <a href="/developer-zone/documentation/cdm-command-line-scripts/#proteins_to_fids" target="_blank">proteins_to_fids</a> | <a href="/developer-zone/documentation/cdm-command-line-scripts/#fids_to_functions" target="_blank">fids_to_functions</a>
<br>
</pre>
In some sense, this is probably not terribly efficient, but you do get
the answer back in a few seconds (and, we think that the answer itself
poses at least one interesting question). <br>
<br>
<h2>The Abstract View</h2>
A <a name="pipeline236">pipeline</a> begins with a <i><a name="generator237">generator</a></i> -- that is, a command that takes
no input, but outputs a table. <i>Generators</i> come in two flavors:
one generates a table for every instance of a designated entity, and
the other a single instance of an entity. For example, <br>
<pre> <a href="/developer-zone/documentation/cdm-entity-relationship-command-scripts/#all_entities_Genome" target="_blank">all_entities_Genome</a> <br>
</pre>
is a <a name="generator238">generator</a> that outputs a single column
containing the IDs of all genomes in KBase. Similarly, <br>
<pre> <a href="/developer-zone/documentation/cdm-entity-relationship-command-scripts/#all_entities_Genome" target="_blank">all_entities_Genome</a> -f 'dna_size,contigs,scientific_name'<br>
</pre>
is a <a name="generator239">generator</a> that would output a 4-column
table. (Try it.) The <i>all_entities_ENTITY</i> commands are <a name="generators240">generators</a> that you may depend on being
present (i.e., if you see the entity in the ER-model, the corresponding <a name="generator241">generator</a> may be assumed to be present). <br>
<pre> echo 'kb|g.9772.peg.2175'<br>
</pre>
was an example of a <a name="generator242">generator</a> that produced
a single instance of an entity. Now, it is true that you might begin a <a name="pipeline243">pipeline</a> wihout a <a name="generator244">generator</a> , using something like <br>
<pre> <a href="/developer-zone/documentation/cdm-command-line-scripts/#fids_to_proteins" target="_blank">fids_to_proteins</a> < file.of.saved.fid.ids<br>
</pre>
<p>In this case, you might consider this a "restarted <a name="pipeline245">pipeline</a>", or you might amend our previous
assertion that pipelines begin with <a name="generators246">generators</a>.
In either case, if you wish to debate the issue, we claim to have
succeeded in clarifying the concepts. <br>
<br>
There is one more type of <a name="generator247">generator</a> that
you will occasionally find extremely useful. Suppose that you wished to
find all of the Features (fids) that have been assigned the function <br>
<br>
</p>
<pre> SSU ribosomal protein S9p (S16e)<br>
</pre>
Using the tools we have described so far, this is not easy to do (and
the results are quite inefficient). To search for instances of an
Entity that have a desired value of one of the fields, you can use
commands like <br>
<br>
<pre> <a href="/developer-zone/documentation/cdm-entity-relationship-command-scripts/#query_entity_Feature" target="_blank">query_entity_Feature</a> -is 'function,SSU ribosomal protein S9p (S16e)'<br><br> <a href="/developer-zone/documentation/cdm-entity-relationship-command-scripts/#query_entity_Feature" target="_blank">query_entity_Feature</a> -like 'function,SSU ribosomal protein%'<br>
</pre>
The first command looks up the fids for features that have been
assigned the given function, while the second locates all SSDU ribsomal
proteins. <br>
<p><br>
There are two classes of KBase <b>transformation commands</b> that you
may depend on being present. These transformation commands take as
input a table and add columns to it: </p>
<ol>
<li><b>get_entity_ENTITY</b> commands are used to take as input a
table that contains a column containing <b>ENTITY</b> IDs. These
commands are used to add columns corresponding to fields from the
referenced <b>ENTITY</b>. Thus, <br>
<pre> echo 'kb|g.9772.peg.2175' | <a href="/developer-zone/documentation/cdm-entity-relationship-command-scripts/#get_entity_Feature" target="_blank">get_entity_Feature</a> -f 'function,source_id'<br>
</pre>
is an example <i><a href="/developer-zone/documentation/cdm-entity-relationship-command-scripts/#get_entity_Feature" target="_blank">get_entity_Feature</a></i> that adds two columns to
the (admittedly limited) input stream. <br>
<br>
</li>
<li> The <b>get_relationship_RELATIONSHIP</b> commands are used for
"crossing" a relationship from one type of entity (called the <i>from
entity</i>) to another (called the <i>to entity</i>). The input must
be a table with a column containing IDs of the <i>from entity</i>. The
output is formed by tacking on columns of data from three sources: the <i>from
entity</i>, the relationship, and the <i>to entity</i>. For example, <br>
<pre> echo 'kb|g.9772.peg.2175' | <a href="/developer-zone/documentation/cdm-entity-relationship-command-scripts/#get_relationship_IsOwnedBy" target="_blank">get_relationship_IsOwnedBy</a> -from source_id -to 'scientific_name,id'<br>
</pre>
takes the input IDs of Features, crosses the IsOwnedBy relationship,
and adds three columns (one from the <i>from entity</i> and two from
the <i>to entity</i>). </li>
</ol>
<br>
We have supplemented the standard <a name="generators248">generators</a> (all_entity_ENTITY routines) and the standard transformation commands
(get_entity_ENTITY and get_relationship_RELATIONSHIP) with a set of
commands representing what we call "well-trodden paths." When we see
these recurring patterns of use, sometimes we can reduce the requirred
effort to extract the desired data. Thus, <br>
<pre> <a href="/developer-zone/documentation/cdm-command-line-scripts/#all_roles_used_in_models" target="_blank">all_roles_used_in_models</a>
<br>
</pre>
is a customized <a name="generator249">generator</a> that outputs a
table containing roles that are used in building models. If you wanted
to get the number of unique protein sequences that connect to these
roles, you might use <br>
<pre> <a href="/developer-zone/documentation/cdm-command-line-scripts/#all_roles_used_in_models" target="_blank">all_roles_used_in_models</a> | <a href="/developer-zone/documentation/cdm-command-line-scripts/#roles_to_proteins" target="_blank">roles_to_proteins</a> | cut -f 2 | sort -u | wc<br>
</pre>
<p>(Note that the command above may take between 10 to 20 minutes. If
preferred, route the output to a file.) </p>
<p>The <i><a href="/developer-zone/documentation/cdm-command-line-scripts/#roles_to_proteins" target="_blank">roles_to_proteins</a></i> transformation command is an
example of one of these commands added to transformation commands. The
following Unix commands are worth noting: </p>
<ul>
<li><b><a name="cut250">cut</a> -f 2</b> says "extract just the
second column" (the one containing <a name="md5251">md5</a> values
representing protein sequences). </li>
<li><b><a name="sort252">sort</a> -u</b> says "<a name="sort253">sort</a> the input table removing duplicate lines", and </li>
<li><b><a name="wc254">wc</a></b> says "count the lines, word, and
characters in the input file" </li>
</ul>
<br>
Well, that is basically it. We end by attempting to convey just one
picky detail. The <a name="sort255">sort</a> command allows you to <a name="sort256">sort</a> lines on specific fields using the <b>-k N</b> argument. The problem is that it breaks a line into fields using
transitions between whitespace characters and non-whitespace
characters, and this is not the behavior you always want. If you are
dealing with tab-delimited fields (as we are), then you want the <i><a name="sort257">sort</a></i> command to split the line into fields
properly. This can be done by executing <br>
<pre> export TAB=`echo -e "\t"`<br>
</pre>
and then using something like <br>
<pre> sort -t "$TAB" -k 4 <br>
</pre>
to <a name="sort258">sort</a> on the 4th field in a tab-delimited
table. Within our KBase exercises, you will usually need to worry about
this only if you have "role" or "function" columns in your tables (they
have embedded whitespace).
|
clean/Linux-x86_64-4.03.0-2.0.5/released/8.8.2/reduction-effects/0.1.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>reduction-effects: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.8.2 / reduction-effects - 0.1.2</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
reduction-effects
<small>
0.1.2
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-02-08 15:53:49 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-02-08 15:53:49 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.8.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.3 A library manager for OCaml
# opam file:
opam-version: "2.0"
synopsis: "A Coq plugin to add reduction side effects to some Coq reduction strategies"
maintainer: "Yishuai Li <yishuai@cis.upenn.edu>"
authors: "Hugo Herbelin <Hugo.Herbelin@inria.fr>"
license: "LGPL-2.1"
homepage: "https://github.com/coq-community/reduction-effects"
bug-reports: "https://github.com/coq-community/reduction-effects/issues"
depends: [
"coq" { >= "8.10" }
]
build: [make "-j%{jobs}%"]
install: [make "-j%{jobs}%" "install"]
run-test:[make "-j%{jobs}%" "test"]
dev-repo: "git+https://github.com/coq-community/reduction-effects"
url {
src: "https://github.com/coq-community/reduction-effects/archive/v0.1.2.tar.gz"
checksum: "md5=c371e8adeb7d749035a2dd55ede49eb4"
}
tags: [
"logpath:ReductionEffect"
]
</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-reduction-effects.0.1.2 coq.8.8.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.8.2).
The following dependencies couldn't be met:
- coq-reduction-effects -> coq >= 8.10 -> ocaml >= 4.05.0
base of this switch (use `--unlock-base' to force)
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-reduction-effects.0.1.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">
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>
|
e5b787e/html/classv8_1_1_template-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 v0.6.16 - v0.6.17: 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 v0.6.16 - v0.6.17
</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="hierarchy.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_1_template.html">Template</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="headertitle">
<div class="title">v8::Template Member List</div> </div>
</div><!--header-->
<div class="contents">
<p>This is the complete list of members for <a class="el" href="classv8_1_1_template.html">v8::Template</a>, including all inherited members.</p>
<table class="directory">
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>FunctionTemplate</b> (defined in <a class="el" href="classv8_1_1_template.html">v8::Template</a>)</td><td class="entry"><a class="el" href="classv8_1_1_template.html">v8::Template</a></td><td class="entry"><span class="mlabel">friend</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>ObjectTemplate</b> (defined in <a class="el" href="classv8_1_1_template.html">v8::Template</a>)</td><td class="entry"><a class="el" href="classv8_1_1_template.html">v8::Template</a></td><td class="entry"><span class="mlabel">friend</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1_template.html#a8a29557db5d0bc980752084b925a9b01">Set</a>(Handle< String > name, Handle< Data > value, PropertyAttribute attributes=None)</td><td class="entry"><a class="el" href="classv8_1_1_template.html">v8::Template</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>Set</b>(const char *name, Handle< Data > value) (defined in <a class="el" href="classv8_1_1_template.html">v8::Template</a>)</td><td class="entry"><a class="el" href="classv8_1_1_template.html">v8::Template</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
</table></div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Tue Aug 11 2015 23:47:38 for V8 API Reference Guide for node.js v0.6.16 - v0.6.17 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>
|
service/ui/tournaments/tournamentModal.html
|
jtibble/pabtc
|
<div class="modal-header">
<h3>{{Model.name}} Tournament</h3>
</div>
<div class="modal-body">
<p>Created by {{Model.createdBy}}</p>
<p>Tournament Registration: {{Model.status}}</p>
<p>
<div ng-show="Model.prizeCurrency == 'BTC'">
Prize: <i class="fa fa-btc"></i>
{{Model.prizeAmount | number:8}}
<a ng-href="https://www.google.com/search?q={{Model.prizeAmount}}+BTC+in+USD" target="_blank">
<i class="fa fa-question"></i>
</a>
</div>
<div ng-show="Model.prizeCurrency == 'mBTC'">
Prize: m<i class="fa fa-btc"></i>{{Model.prizeAmount | number:5}}
<a ng-href="https://www.google.com/search?q={{Model.prizeAmount/1000}}+BTC+in+USD" target="_blank">
<i class="fa fa-question"></i>
</a>
</div>
<div ng-show="Model.prizeCurrency == 'μBTC'">
Prize: μ<i class="fa fa-btc"></i>{{Model.prizeAmount | number:2}}
<a ng-href="https://www.google.com/search?q={{Model.prizeAmount/1000000}}+BTC+in+USD" target="_blank">
<i class="fa fa-question"></i>
</a>
</div>
<div ng-show="Model.prizeCurrency == 'USD'">
Prize: <i class="fa fa-dollar"></i>{{Model.prizeAmount | number:2}}
</div>
</p>
<p>
Registered Players: {{Model.registrations.length}} / {{Model.totalPlayers}}
<ol>
<li ng-repeat="registration in Model.registrations">
{{registration.username}}: {{registration.status}}
</li>
</ol>
</p>
<p ng-show="Model.status != 'finished'">
Change tournament status:<br>
<button ng-show="Model.status == 'new' || Model.status == 'closed'" ng-click="Actions.setStatus('open')" class="btn btn-default">
Registration Open
</button>
<button ng-show="Model.status == 'new' || Model.status == 'open'" ng-click="Actions.setStatus('closed')" class="btn btn-default">
Registration Closed
</button>
<button ng-show="Model.status == 'new' || Model.status == 'closed' || Model.status == 'open'" ng-click="Actions.setStatus('active')" class="btn btn-default">
Active
</button>
<button ng-show="Model.status != 'finished'" ng-click="Actions.setStatus('finished')" class="btn btn-default">
Finished
</button>
</p>
</div>
<div class="modal-footer">
<span class="text-danger" ng-show="Model.errorText">{{Model.errorText}}</span>
<button ng-show="Model.status == 'open' && Model.registrations.length < Model.totalPlayers" class="btn btn-success" ng-click="Actions.register()">
Register For Tournament
</button>
<button ng-show="Model.status == 'open' && Model.registrations.length == Model.totalPlayers" disabled class="btn btn-primary">
Registration Full
</button>
</div>
|
war/css/galleriffic.css
|
AndySze/DesignBlocksJS
|
/* See license.txt for license */
/* GALLERIFFIC */
div#player {
/* The display of content is enabled using jQuery so that the slideshow content won't display unless javascript is enabled. */
float: right;
width: 500px;
height: 500px;
border: 1px solid #ccc;
padding: 2px;
margin-top: 4px;
}
div#playerwrapper {
/* The display of content is enabled using jQuery so that the slideshow content won't display unless javascript is enabled. */
float: right;
border: 1px solid #ccc;
width: 500px;
padding: 2px;
}
div#projectplayer {
/* The display of content is enabled using jQuery so that the slideshow content won't display unless javascript is enabled. */
/*float: right;*/
/*width: 550px;*/
margin: 0 auto;
border: 1px solid #ccc;
padding: 2px;
width: 500px;
}
div#projectinfo {
width: 500px;
height: 35px;
background-color: #FFF;
float: right;
/*display: inline;*/
}
div#author {
float: left;
padding-left: 10px;
padding-top: 3px;
}
div#goodies {
float: right;
padding-right: 10px;
padding-top: 5px;
}
div.navigation a {
text-decoration: none;
color: #444;
}
div.navigation a#newcreate{
text-decoration: underline;
color: #2222BB;
}
div.navigation {
/* The navigation style is set using jQuery so that the javascript specific styles won't be applied unless javascript is enabled. */
height: 485px;
float: left;
width: 460px;
margin-left: 0px;
margin-top: 0px;
background-color: #555;
background-color: #333;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
padding-left: 10px;
padding-top: 15px;
}
div.navigation-allusers {
/* The navigation style is set using jQuery so that the javascript specific styles won't be applied unless javascript is enabled. */
height: 528px;
width: 750px;
background-color: #FFF;
float: left;
padding-left: 45px;
padding-right: 20px;
}
div.navigation-recentdesigns {
/* The navigation style is set using jQuery so that the javascript specific styles won't be applied unless javascript is enabled. */
height: 528px;
width: 930px;
background-color: #FFF;
float: left;
padding-left: 25px;
padding-right: 0px;
}
ul.thumbs {
clear: both;
padding: 0;
-webkit-padding-start: 0px;
margin: 0px;
height: 455px;
}
ul.thumbs li {
float: left;
padding: 0;
margin: 5px 10px 5px 0;
list-style: none;
}
a.thumb {
padding: 3px;
display: block;
background-color: #444;
/*border: 1px solid #ccc;*/
}
ul.thumbs li.selected a.thumb {
/*background: #000;*/
}
a.thumb:focus {
outline: none;
}
ul.thumbs img {
border: none;
display: block;
}
div.thumbframe {
height: 105px;
background-color: #333;
padding: 5px;
}
div.wrapper {
position: relative;
}
img.playoverlay {
z-index: 4;
position: absolute;
left: 3px;
top: 3px;
}
img.lock {
z-index: 2;
position: absolute;
left: 3px;
top: 3px;
}
img.delete {
z-index: 3;
position: absolute;
left: 61px;
top: 3px;
}
img.playthumb {
z-index: 1;
}
div.username a{
color: #FFF;
font-weight: bold;
}
p.projecttitle {
color: #FFF;
font-weight: bold;
padding: 0px;
margin: 0px;
display: inline;
}
p.projectuser {
color: #DDD;
padding: 0px;
margin: 0px;
display: inline;
}
p.projectuser a{
color: #76AACC;
}
div.pagination {
clear: both;
float: right;
margin-right: 12px;
}
div.navigation div.top {
margin-bottom: 12px;
height: 11px;
}
div.navigation div.bottom {
margin-top: 12px;
}
div.pagination a, div.pagination span.current {
display: block;
float: left;
margin-right: 2px;
padding: 4px 7px 2px 7px;
/*border: 1px solid #ccc;*/
color: #FFF;
background-color: #777;
}
div.pagination span.ellipsis {
display: block;
float: left;
margin-right: 2px;
padding: 4px 7px 2px 7px;
/*border: 1px solid #ccc;*/
color: #FFF;
}
div.pagination a:hover {
background-color: #eee;
text-decoration: none;
color: #333;
}
div.pagination span.current {
font-weight: bold;
background-color: #444;
border-color: #444;
color: #fff;
}
div.pagination span.ellipsis {
border: none;
padding: 5px 0 3px 2px;
}
|
clean/Linux-x86_64-4.05.0-2.0.6/released/8.10.0/demos/8.9.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>demos: Not compatible</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.10.0 / demos - 8.9.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
demos
<small>
8.9.0
<span class="label label-info">Not compatible</span>
</small>
</h1>
<p><em><script>document.write(moment("2020-07-16 08:04:26 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2020-07-16 08:04:26 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-num base Num library distributed with the OCaml compiler
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
conf-m4 1 Virtual package relying on m4
coq 8.10.0 Formal proof management system
num 0 The Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.05.0 The OCaml compiler (virtual package)
ocaml-base-compiler 4.05.0 Official 4.05.0 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.8.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "Hugo.Herbelin@inria.fr"
homepage: "https://github.com/coq-contribs/demos"
license: "LGPL 2.1"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/Demos"]
depends: [
"ocaml"
"coq" {>= "8.9" & < "8.10~"}
]
tags: [
"keyword: sorting"
"keyword: Cases"
"keyword: Tauto"
"keyword: AutoRewrite"
"keyword: Prolog"
"category: Miscellaneous/Coq Use Examples"
]
authors: [
"Coq group"
]
bug-reports: "https://github.com/coq-contribs/demos/issues"
dev-repo: "git+https://github.com/coq-contribs/demos.git"
synopsis: "Demos of some Coq tools appeared in version V6.0"
description: """
Example of sorting algorithms defined using the Cases
(pattern-matching) construction. Demo of the decision tactic Tauto for
intuitionistic propositional calculus. Demo of the AutoRewrite tactic. Demo of
the Prolog tactic applied to the compilation of miniML programs."""
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/demos/archive/v8.9.0.tar.gz"
checksum: "md5=e195ef7c40a80296120a54beff118d98"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-demos.8.9.0 coq.8.10.0</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.10.0).
The following dependencies couldn't be met:
- coq-demos -> coq < 8.10~ -> ocaml < 4.03.0
base of this switch (use `--unlock-base' to force)
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-demos.8.9.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>
|
clean/Linux-x86_64-4.12.1-2.0.8/released/8.15.0/otway-rees/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>otway-rees: 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.15.0 / otway-rees - 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>
otway-rees
<small>
8.6.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-02-01 04:13:48 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-02-01 04:13:48 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
conf-gmp 4 Virtual package relying on a GMP lib system installation
coq 8.15.0 Formal proof management system
dune 2.9.3 Fast, portable, and opinionated build system
ocaml 4.12.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.12.1 Official release 4.12.1
ocaml-config 2 OCaml Switch Configuration
ocaml-options-vanilla 1 Ensure that OCaml is compiled with no special options enabled
ocamlfind 1.9.3 A library manager for OCaml
zarith 1.12 Implements arithmetic and logical operations over arbitrary-precision integers
# opam file:
opam-version: "2.0"
maintainer: "Hugo.Herbelin@inria.fr"
homepage: "https://github.com/coq-contribs/otway-rees"
license: "Unknown"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/OtwayRees"]
depends: [
"ocaml"
"coq" {>= "8.6" & < "8.7~"}
]
tags: [ "keyword: Otway-Rees" "keyword: protocols" "keyword: cryptography" "category: Computer Science/Concurrent Systems and Protocols/Correctness of specific protocols" ]
authors: [ "Dominique Bolignano and Valérie Ménissier-Morain" ]
bug-reports: "https://github.com/coq-contribs/otway-rees/issues"
dev-repo: "git+https://github.com/coq-contribs/otway-rees.git"
synopsis: "Otway-Rees cryptographic protocol"
description: """
A description and a proof of correctness for
the Otway-Rees cryptographic protocol, usually used as an example for
formalisation of such protocols."""
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/otway-rees/archive/v8.6.0.tar.gz"
checksum: "md5=4915ebcc29d1af0b0f3c60ae6491d943"
}
</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-otway-rees.8.6.0 coq.8.15.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.15.0).
The following dependencies couldn't be met:
- coq-otway-rees -> 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-otway-rees.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>
|
v3/user-agent-detail/bd/ee/bdee3541-5fbb-4f1a-a90f-d62aa90a59f7.html
|
ThaDafinser/UserAgentParserComparison
|
<html>
<head>
<title>Mozilla/5.0 (compatible; MSIE 10.0; Windows Phone 8.0; Trident/6.0; IEMobile/10.0; ARM; Touch; HTC; C625b)</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.3/css/materialize.min.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="section">
<h1 class="header center orange-text">User agent detail</h1>
<div class="row center">
Mozilla/5.0 (compatible; MSIE 10.0; Windows Phone 8.0; Trident/6.0; IEMobile/10.0; ARM; Touch; HTC; C625b)
<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>IEMobile 10.0</td><td>Trident 6.0</td><td>WinPhone8 8.0</td><td></td><td></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 \(compatible.*; msie 10.*; .*windows phone 8.* .*trident\/6\.0; iemobile.10.*; arm; touch; .*\)$/
[browser_name_pattern] => mozilla/5.0 (compatible*; msie 10*; *windows phone 8* *trident/6.0; iemobile?10*; arm; touch; *)
[parent] => IEMobile 10.0
[comment] => IEMobile
[browser] => IEMobile
[browser_type] => Browser
[browser_bits] => 32
[browser_maker] => Microsoft Corporation
[browser_modus] => unknown
[version] => 10.0
[majorver] => 10
[minorver] => 0
[platform] => WinPhone8
[platform_version] => 8.0
[platform_description] => Windows Phone OS 8
[platform_bits] => 32
[platform_maker] => Microsoft Corporation
[alpha] =>
[beta] =>
[win16] =>
[win32] =>
[win64] =>
[frames] => 1
[iframes] => 1
[tables] => 1
[cookies] => 1
[backgroundsounds] => 1
[javascript] => 1
[vbscript] => 1
[javaapplets] => 1
[activexcontrols] => 1
[ismobiledevice] => 1
[istablet] =>
[issyndicationreader] =>
[crawler] =>
[cssversion] => 3
[aolversion] => 0
[device_name] => general Mobile Phone
[device_maker] => unknown
[device_type] => Mobile Phone
[device_pointing_method] => touchscreen
[device_code_name] => general Mobile Phone
[device_brand_name] => unknown
[renderingengine_name] => Trident
[renderingengine_version] => 6.0
[renderingengine_description] => For Internet Explorer since version 4.0 and embedded WebBrowser controls (such as Internet Explorer shells, Maxthon and some media players).
[renderingengine_maker] => Microsoft Corporation
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>DonatjUAParser<br /><small>v0.5.0</small></td><td>IEMobile 10.0</td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-6fae891b-b0d5-4415-b07d-355015c3af67">Detail</a>
<!-- Modal Structure -->
<div id="modal-6fae891b-b0d5-4415-b07d-355015c3af67" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>DonatjUAParser result detail</h4>
<p><pre><code class="php">Array
(
[platform] => Windows Phone
[browser] => IEMobile
[version] => 10.0
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>PiwikDeviceDetector<br /><small>3.5.1</small></td><td>IE Mobile 10.0</td><td>Trident </td><td>Windows Phone 8.0</td><td>HTC</td><td>C625b</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] => IE Mobile
[short_name] => IM
[version] => 10.0
[engine] => Trident
)
[operatingSystem] => Array
(
[name] => Windows Phone
[short_name] => WPH
[version] => 8.0
[platform] => ARM
)
[device] => Array
(
[brand] => HT
[brandName] => HTC
[model] => C625b
[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] => Array
(
[0] => Touch
)
)
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>SinergiBrowserDetector<br /><small>6.0.0</small></td><td>Internet Explorer 10.0</td><td><i class="material-icons">close</i></td><td>Windows Phone 8</td><td><i class="material-icons">close</i></td><td>Windows Phone</td><td><i class="material-icons">close</i></td><td></td><td><i class="material-icons">close</i></td><td></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-8c08f104-4e61-421b-9405-291b09c383dc">Detail</a>
<!-- Modal Structure -->
<div id="modal-8c08f104-4e61-421b-9405-291b09c383dc" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>SinergiBrowserDetector result detail</h4>
<p><pre><code class="php">Array
(
[browser] => Sinergi\BrowserDetector\Browser Object
(
[userAgent:Sinergi\BrowserDetector\Browser:private] => Sinergi\BrowserDetector\UserAgent Object
(
[userAgentString:Sinergi\BrowserDetector\UserAgent:private] => Mozilla/5.0 (compatible; MSIE 10.0; Windows Phone 8.0; Trident/6.0; IEMobile/10.0; ARM; Touch; HTC; C625b)
)
[name:Sinergi\BrowserDetector\Browser:private] => Internet Explorer
[version:Sinergi\BrowserDetector\Browser:private] => 10.0
[isRobot:Sinergi\BrowserDetector\Browser:private] =>
[isChromeFrame:Sinergi\BrowserDetector\Browser:private] =>
)
[operatingSystem] => Sinergi\BrowserDetector\Os Object
(
[name:Sinergi\BrowserDetector\Os:private] => Windows Phone
[version:Sinergi\BrowserDetector\Os:private] => 8
[isMobile:Sinergi\BrowserDetector\Os:private] =>
[userAgent:Sinergi\BrowserDetector\Os:private] => Sinergi\BrowserDetector\UserAgent Object
(
[userAgentString:Sinergi\BrowserDetector\UserAgent:private] => Mozilla/5.0 (compatible; MSIE 10.0; Windows Phone 8.0; Trident/6.0; IEMobile/10.0; ARM; Touch; HTC; C625b)
)
)
[device] => Sinergi\BrowserDetector\Device Object
(
[name:Sinergi\BrowserDetector\Device:private] => Windows Phone
[userAgent:Sinergi\BrowserDetector\Device:private] => Sinergi\BrowserDetector\UserAgent Object
(
[userAgentString:Sinergi\BrowserDetector\UserAgent:private] => Mozilla/5.0 (compatible; MSIE 10.0; Windows Phone 8.0; Trident/6.0; IEMobile/10.0; ARM; Touch; HTC; C625b)
)
)
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>UAParser<br /><small>v3.4.5</small></td><td>IE Mobile 10.0</td><td><i class="material-icons">close</i></td><td>Windows Phone 8.0</td><td>HTC</td><td>C625b</td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td></td><td></td><td><i class="material-icons">close</i></td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-8f4c86c5-433e-4536-b799-ad26d77264e0">Detail</a>
<!-- Modal Structure -->
<div id="modal-8f4c86c5-433e-4536-b799-ad26d77264e0" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>UAParser result detail</h4>
<p><pre><code class="php">UAParser\Result\Client Object
(
[ua] => UAParser\Result\UserAgent Object
(
[major] => 10
[minor] => 0
[patch] =>
[family] => IE Mobile
)
[os] => UAParser\Result\OperatingSystem Object
(
[major] => 8
[minor] => 0
[patch] =>
[patchMinor] =>
[family] => Windows Phone
)
[device] => UAParser\Result\Device Object
(
[brand] => HTC
[model] => C625b
[family] => HTC C625b
)
[originalUserAgent] => Mozilla/5.0 (compatible; MSIE 10.0; Windows Phone 8.0; Trident/6.0; IEMobile/10.0; ARM; Touch; HTC; C625b)
)
</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>Mobile Internet Explorer 10.0</td><td>Trident 6.0</td><td>Windows Phone 8.0</td><td>HTC</td><td>8X</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] => Mobile Internet Explorer
[version] => 10.0
[type] => browser
)
[engine] => Array
(
[name] => Trident
[version] => 6.0
)
[os] => Array
(
[name] => Windows Phone
[version] => 8.0
)
[device] => Array
(
[type] => mobile
[subtype] => smart
[manufacturer] => HTC
[model] => 8X
)
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>Woothee<br /><small>v1.2.0</small></td><td>Internet Explorer 10.0</td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>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] => Internet Explorer
[vendor] => Microsoft
[version] => 10.0
[category] => smartphone
[os] => Windows Phone OS
[os_version] => 8.0
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>Wurfl<br /><small>1.6.4</small></td><td>IE Mobile 10.0</td><td><i class="material-icons">close</i></td><td>Windows Phone 8.0</td><td>HTC</td><td>C625b</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] => false
[is_ios] => false
[is_windows_phone] => true
[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] => Windows Phone
[advertised_device_os_version] => 8.0
[advertised_browser] => IE Mobile
[advertised_browser_version] => 10.0
[complete_device_name] => HTC C625b
[form_factor] => Smartphone
[is_phone] => true
[is_app_webview] => false
)
[all] => Array
(
[brand_name] => HTC
[model_name] => C625b
[unique] => true
[ununiqueness_handler] =>
[is_wireless_device] => true
[device_claims_web_support] => true
[has_qwerty_keyboard] => true
[can_skip_aligned_link_row] => true
[uaprof] =>
[uaprof2] =>
[uaprof3] =>
[nokia_series] => 0
[nokia_edition] => 0
[device_os] => Windows Phone OS
[mobile_browser] => IEMobile
[mobile_browser_version] => 10
[device_os_version] => 8
[pointing_method] => touchscreen
[release_date] => 2012_october
[marketing_name] =>
[model_extra_info] =>
[nokia_feature_pack] => 0
[can_assign_phone_number] => true
[is_tablet] => false
[manufacturer_name] =>
[is_bot] => false
[is_google_glass] => false
[proportional_font] => false
[built_in_back_button_support] => false
[card_title_support] => true
[softkey_support] => false
[table_support] => true
[numbered_menus] => false
[menu_with_select_element_recommended] => false
[menu_with_list_of_links_recommended] => true
[icons_on_menu_items_support] => false
[break_list_of_links_with_br_element_recommended] => true
[access_key_support] => false
[wrap_mode_support] => false
[times_square_mode_support] => false
[deck_prefetch_support] => false
[elective_forms_recommended] => true
[wizards_recommended] => false
[image_as_link_support] => false
[insert_br_element_after_widget_recommended] => false
[wml_can_display_images_and_text_on_same_line] => false
[wml_displays_image_in_center] => false
[opwv_wml_extensions_support] => false
[wml_make_phone_call_string] => wtai://wp/mc;
[chtml_display_accesskey] => false
[emoji] => false
[chtml_can_display_images_and_text_on_same_line] => false
[chtml_displays_image_in_center] => false
[imode_region] => none
[chtml_make_phone_call_string] => tel:
[chtml_table_support] => false
[xhtml_honors_bgcolor] => false
[xhtml_supports_forms_in_table] => false
[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] => false
[xhtml_supports_css_cell_table_coloring] => false
[xhtml_format_as_css_property] => false
[xhtml_format_as_attribute] => false
[xhtml_nowrap_mode] => false
[xhtml_marquee_as_css_property] => false
[xhtml_readable_background_color1] => #FFFFFF
[xhtml_readable_background_color2] => #FFFFFF
[xhtml_allows_disabled_form_elements] => false
[xhtml_document_title_support] => true
[xhtml_preferred_charset] => utf8
[opwv_xhtml_extensions_support] => false
[xhtml_make_phone_call_string] => tel:
[xhtmlmp_preferred_mime_type] => application/vnd.wap.xhtml+xml
[xhtml_table_support] => true
[xhtml_send_sms_string] => sms:
[xhtml_send_mms_string] => none
[xhtml_file_upload] => not_supported
[cookie_support] => true
[accept_third_party_cookie] => true
[xhtml_supports_iframe] => full
[xhtml_avoid_accesskeys] => false
[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] => none
[xhtml_support_level] => 4
[preferred_markup] => html_web_4_0
[wml_1_1] => false
[wml_1_2] => false
[wml_1_3] => false
[html_wi_w3_xhtmlbasic] => true
[html_wi_oma_xhtmlmp_1_0] => 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] => false
[html_web_4_0] => true
[voicexml] => false
[multipart_support] => false
[total_cache_disable_support] => false
[time_to_live_support] => false
[resolution_width] => 480
[resolution_height] => 800
[columns] => 12
[max_image_width] => 320
[max_image_height] => 480
[rows] => 20
[physical_screen_width] => 50
[physical_screen_height] => 84
[dual_orientation] => true
[density_class] => 1.5
[wbmp] => false
[bmp] => false
[epoc_bmp] => false
[gif_animated] => true
[jpg] => true
[png] => true
[tiff] => false
[transparent_png_alpha] => false
[transparent_png_index] => false
[svgt_1_1] => true
[svgt_1_1_plus] => false
[greyscale] => false
[gif] => true
[colors] => 65536
[webp_lossy_support] => false
[webp_lossless_support] => false
[post_method_support] => true
[basic_authentication_support] => true
[empty_option_value_support] => true
[emptyok] => false
[nokia_voice_call] => false
[wta_voice_call] => false
[wta_phonebook] => false
[wta_misc] => false
[wta_pdc] => false
[https_support] => true
[phone_id_provided] => false
[max_data_rate] => 384
[wifi] => true
[sdio] => false
[vpn] => false
[has_cellular_radio] => true
[max_deck_size] => 100000
[max_url_length_in_requests] => 512
[max_url_length_homepage] => 0
[max_url_length_bookmark] => 0
[max_url_length_cached_page] => 0
[max_no_of_connection_settings] => 0
[max_no_of_bookmarks] => 0
[max_length_of_username] => 0
[max_length_of_password] => 0
[max_object_size] => 0
[downloadfun_support] => false
[directdownload_support] => false
[inline_support] => false
[oma_support] => false
[ringtone] => false
[ringtone_3gpp] => false
[ringtone_midi_monophonic] => false
[ringtone_midi_polyphonic] => false
[ringtone_imelody] => false
[ringtone_digiplug] => false
[ringtone_compactmidi] => false
[ringtone_mmf] => false
[ringtone_rmf] => false
[ringtone_xmf] => false
[ringtone_amr] => false
[ringtone_awb] => false
[ringtone_aac] => false
[ringtone_wav] => false
[ringtone_mp3] => false
[ringtone_spmidi] => false
[ringtone_qcelp] => false
[ringtone_voices] => 1
[ringtone_df_size_limit] => 0
[ringtone_directdownload_size_limit] => 0
[ringtone_inline_size_limit] => 0
[ringtone_oma_size_limit] => 0
[wallpaper] => false
[wallpaper_max_width] => 0
[wallpaper_max_height] => 0
[wallpaper_preferred_width] => 0
[wallpaper_preferred_height] => 0
[wallpaper_resize] => none
[wallpaper_wbmp] => false
[wallpaper_bmp] => false
[wallpaper_gif] => false
[wallpaper_jpg] => false
[wallpaper_png] => false
[wallpaper_tiff] => false
[wallpaper_greyscale] => false
[wallpaper_colors] => 2
[wallpaper_df_size_limit] => 0
[wallpaper_directdownload_size_limit] => 0
[wallpaper_inline_size_limit] => 0
[wallpaper_oma_size_limit] => 0
[screensaver] => false
[screensaver_max_width] => 0
[screensaver_max_height] => 0
[screensaver_preferred_width] => 0
[screensaver_preferred_height] => 0
[screensaver_resize] => none
[screensaver_wbmp] => false
[screensaver_bmp] => false
[screensaver_gif] => false
[screensaver_jpg] => false
[screensaver_png] => false
[screensaver_greyscale] => false
[screensaver_colors] => 2
[screensaver_df_size_limit] => 0
[screensaver_directdownload_size_limit] => 0
[screensaver_inline_size_limit] => 0
[screensaver_oma_size_limit] => 0
[picture] => false
[picture_max_width] => 0
[picture_max_height] => 0
[picture_preferred_width] => 0
[picture_preferred_height] => 0
[picture_resize] => none
[picture_wbmp] => false
[picture_bmp] => false
[picture_gif] => false
[picture_jpg] => false
[picture_png] => false
[picture_greyscale] => false
[picture_colors] => 2
[picture_df_size_limit] => 0
[picture_directdownload_size_limit] => 0
[picture_inline_size_limit] => 0
[picture_oma_size_limit] => 0
[video] => false
[oma_v_1_0_forwardlock] => false
[oma_v_1_0_combined_delivery] => false
[oma_v_1_0_separate_delivery] => false
[streaming_video] => true
[streaming_3gpp] => true
[streaming_mp4] => true
[streaming_mov] => false
[streaming_video_size_limit] => 0
[streaming_real_media] => none
[streaming_flv] => false
[streaming_3g2] => true
[streaming_vcodec_h263_0] => 10
[streaming_vcodec_h263_3] => -1
[streaming_vcodec_mpeg4_sp] => 0
[streaming_vcodec_mpeg4_asp] => -1
[streaming_vcodec_h264_bp] => -1
[streaming_acodec_amr] => nb
[streaming_acodec_aac] => lc
[streaming_wmv] => 9
[streaming_preferred_protocol] => http
[streaming_preferred_http_protocol] => microsoft_smooth_streaming
[wap_push_support] => true
[connectionless_service_indication] => true
[connectionless_service_load] => true
[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] => true
[sender] => true
[mms_max_size] => 614400
[mms_max_height] => 1600
[mms_max_width] => 1600
[built_in_recorder] => false
[built_in_camera] => true
[mms_jpeg_baseline] => true
[mms_jpeg_progressive] => false
[mms_gif_static] => true
[mms_gif_animated] => true
[mms_png] => true
[mms_bmp] => true
[mms_wbmp] => false
[mms_amr] => false
[mms_wav] => true
[mms_midi_monophonic] => false
[mms_midi_polyphonic] => false
[mms_midi_polyphonic_voices] => 0
[mms_spmidi] => false
[mms_mmf] => false
[mms_mp3] => true
[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] => true
[mms_mp4] => true
[mms_3gpp] => true
[mms_3gpp2] => true
[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] => true
[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] => none
[css_rounded_corners] => none
[css_gradient] => none
[css_spriting] => true
[css_gradient_linear] => none
[is_transcoder] => false
[transcoder_ua_header] => user-agent
[rss_support] => true
[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] => 1
[playback_real_media] => none
[playback_3gpp] => true
[playback_3g2] => true
[playback_mp4] => true
[playback_mov] => false
[playback_acodec_amr] => nb
[playback_acodec_aac] => lc
[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] => 9
[hinted_progressive_download] => false
[html_preferred_dtd] => html4
[viewport_supported] => true
[viewport_width] => device_width_token
[viewport_userscalable] => no
[viewport_initial_scale] =>
[viewport_maximum_scale] =>
[viewport_minimum_scale] =>
[mobileoptimized] => false
[handheldfriendly] => false
[canvas_support] => full
[image_inlining] => true
[is_smarttv] => false
[is_console] => false
[nfc_support] => false
[ux_full_desktop] => false
[jqm_grade] => A
[is_sencha_touch_ok] => false
[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:39:40</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>
|
docs/3.2/d5/d50/group__videostab.html
|
lucasbrsa/OpenCV-3.2
|
<!-- HTML header for doxygen 1.8.6-->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.12"/>
<title>OpenCV: Video Stabilization</title>
<link href="../../opencv.ico" rel="shortcut icon" type="image/x-icon" />
<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/x-mathjax-config">
MathJax.Hub.Config({
extensions: ["tex2jax.js", "TeX/AMSmath.js", "TeX/AMSsymbols.js"],
jax: ["input/TeX","output/HTML-CSS"],
});
//<![CDATA[
MathJax.Hub.Config(
{
TeX: {
Macros: {
matTT: [ "\\[ \\left|\\begin{array}{ccc} #1 & #2 & #3\\\\ #4 & #5 & #6\\\\ #7 & #8 & #9 \\end{array}\\right| \\]", 9],
fork: ["\\left\\{ \\begin{array}{l l} #1 & \\mbox{#2}\\\\ #3 & \\mbox{#4}\\\\ \\end{array} \\right.", 4],
forkthree: ["\\left\\{ \\begin{array}{l l} #1 & \\mbox{#2}\\\\ #3 & \\mbox{#4}\\\\ #5 & \\mbox{#6}\\\\ \\end{array} \\right.", 6],
vecthree: ["\\begin{bmatrix} #1\\\\ #2\\\\ #3 \\end{bmatrix}", 3],
vecthreethree: ["\\begin{bmatrix} #1 & #2 & #3\\\\ #4 & #5 & #6\\\\ #7 & #8 & #9 \\end{bmatrix}", 9],
hdotsfor: ["\\dots", 1],
mathbbm: ["\\mathbb{#1}", 1],
bordermatrix: ["\\matrix{#1}", 1]
}
}
}
);
//]]>
</script><script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js"></script>
<link href="../../doxygen.css" rel="stylesheet" type="text/css" />
<link href="../../stylesheet.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<!--#include virtual="/google-search.html"-->
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="../../opencv-logo-small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">OpenCV
 <span id="projectnumber">3.2.0</span>
</div>
<div id="projectbrief">Open Source Computer Vision</div>
</td>
</tr>
</tbody>
</table>
</div>
<script type="text/javascript">
//<![CDATA[
function getLabelName(innerHTML) {
var str = innerHTML.toLowerCase();
// Replace all '+' with 'p'
str = str.split('+').join('p');
// Replace all ' ' with '_'
str = str.split(' ').join('_');
// Replace all '#' with 'sharp'
str = str.split('#').join('sharp');
// Replace other special characters with 'ascii' + code
for (var i = 0; i < str.length; i++) {
var charCode = str.charCodeAt(i);
if (!(charCode == 95 || (charCode > 96 && charCode < 123) || (charCode > 47 && charCode < 58)))
str = str.substr(0, i) + 'ascii' + charCode + str.substr(i + 1);
}
return str;
}
function addToggle() {
var $getDiv = $('div.newInnerHTML').last();
var buttonName = $getDiv.html();
var label = getLabelName(buttonName.trim());
$getDiv.attr("title", label);
$getDiv.hide();
$getDiv = $getDiv.next();
$getDiv.attr("class", "toggleable_div label_" + label);
$getDiv.hide();
}
//]]>
</script>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.12 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "../../search",false,'Search');
</script>
<script type="text/javascript" src="../../menudata.js"></script>
<script type="text/javascript" src="../../menu.js"></script>
<script type="text/javascript">
$(function() {
initMenu('../../',true,false,'search.php','Search');
$(document).ready(function() { init_search(); });
});
</script>
<div id="main-nav"></div>
</div><!-- top -->
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div class="header">
<div class="summary">
<a href="#groups">Modules</a> |
<a href="#nested-classes">Classes</a> |
<a href="#func-members">Functions</a> </div>
<div class="headertitle">
<div class="title">Video Stabilization</div> </div>
</div><!--header-->
<div class="contents">
<table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="groups"></a>
Modules</h2></td></tr>
<tr class="memitem:d4/d2c/group__videostab__motion"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="../../d4/d2c/group__videostab__motion.html">Global Motion Estimation</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:db/d18/group__videostab__marching"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="../../db/d18/group__videostab__marching.html">Fast Marching Method</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="nested-classes"></a>
Classes</h2></td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="../../d1/dc6/classcv_1_1videostab_1_1ColorAverageInpainter.html">cv::videostab::ColorAverageInpainter</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="../../d3/d2b/classcv_1_1videostab_1_1ColorInpainter.html">cv::videostab::ColorInpainter</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="../../d9/dba/classcv_1_1videostab_1_1ConsistentMosaicInpainter.html">cv::videostab::ConsistentMosaicInpainter</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="../../dd/d05/classcv_1_1videostab_1_1DeblurerBase.html">cv::videostab::DeblurerBase</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="../../de/d24/classcv_1_1videostab_1_1IDenseOptFlowEstimator.html">cv::videostab::IDenseOptFlowEstimator</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="../../d1/d81/classcv_1_1videostab_1_1IFrameSource.html">cv::videostab::IFrameSource</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="../../d8/d95/classcv_1_1videostab_1_1ILog.html">cv::videostab::ILog</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="../../d5/d00/classcv_1_1videostab_1_1InpainterBase.html">cv::videostab::InpainterBase</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="../../dc/dc0/classcv_1_1videostab_1_1InpaintingPipeline.html">cv::videostab::InpaintingPipeline</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="../../d9/dbb/classcv_1_1videostab_1_1IOutlierRejector.html">cv::videostab::IOutlierRejector</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="../../df/de2/classcv_1_1videostab_1_1ISparseOptFlowEstimator.html">cv::videostab::ISparseOptFlowEstimator</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="../../d5/de0/classcv_1_1videostab_1_1LogToStdout.html">cv::videostab::LogToStdout</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="../../d8/da1/classcv_1_1videostab_1_1MoreAccurateMotionWobbleSuppressor.html">cv::videostab::MoreAccurateMotionWobbleSuppressor</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="../../d0/d53/classcv_1_1videostab_1_1MoreAccurateMotionWobbleSuppressorBase.html">cv::videostab::MoreAccurateMotionWobbleSuppressorBase</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="../../da/d37/classcv_1_1videostab_1_1MotionInpainter.html">cv::videostab::MotionInpainter</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="../../dc/d86/classcv_1_1videostab_1_1NullDeblurer.html">cv::videostab::NullDeblurer</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="../../dd/d5b/classcv_1_1videostab_1_1NullFrameSource.html">cv::videostab::NullFrameSource</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="../../d4/d1d/classcv_1_1videostab_1_1NullInpainter.html">cv::videostab::NullInpainter</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="../../d6/d78/classcv_1_1videostab_1_1NullLog.html">cv::videostab::NullLog</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="../../d3/de9/classcv_1_1videostab_1_1NullOutlierRejector.html">cv::videostab::NullOutlierRejector</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="../../d0/da4/classcv_1_1videostab_1_1NullWobbleSuppressor.html">cv::videostab::NullWobbleSuppressor</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="../../d3/db1/classcv_1_1videostab_1_1OnePassStabilizer.html">cv::videostab::OnePassStabilizer</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="../../d2/d86/classcv_1_1videostab_1_1PyrLkOptFlowEstimatorBase.html">cv::videostab::PyrLkOptFlowEstimatorBase</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="../../d1/d4b/classcv_1_1videostab_1_1SparsePyrLkOptFlowEstimator.html">cv::videostab::SparsePyrLkOptFlowEstimator</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="../../d2/d6c/classcv_1_1videostab_1_1StabilizerBase.html">cv::videostab::StabilizerBase</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="../../dd/d13/classcv_1_1videostab_1_1TranslationBasedLocalOutlierRejector.html">cv::videostab::TranslationBasedLocalOutlierRejector</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="../../d8/d9c/classcv_1_1videostab_1_1TwoPassStabilizer.html">cv::videostab::TwoPassStabilizer</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="../../da/d0b/classcv_1_1videostab_1_1VideoFileSource.html">cv::videostab::VideoFileSource</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="../../df/d5b/classcv_1_1videostab_1_1WeightingDeblurer.html">cv::videostab::WeightingDeblurer</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="../../d8/d16/classcv_1_1videostab_1_1WobbleSuppressorBase.html">cv::videostab::WobbleSuppressorBase</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="func-members"></a>
Functions</h2></td></tr>
<tr class="memitem:ga23ab7e15cf5caaf624a90607d863c07e"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="../../d5/d50/group__videostab.html#ga23ab7e15cf5caaf624a90607d863c07e">cv::videostab::ColorInpainter::ColorInpainter</a> (int method=<a class="el" href="../../d1/d0d/group__photo.html#gga7b31a379c097fb87997d28266762f12fa892824c38e258feb5e72f308a358d52e">INPAINT_TELEA</a>, double <a class="el" href="../../d5/d00/classcv_1_1videostab_1_1InpainterBase.html#a830eac11b77be3224f6fcd2fd996f9d0">radius</a>=2.)</td></tr>
<tr class="separator:ga23ab7e15cf5caaf624a90607d863c07e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga64715f89ad837e2b6b5649d0f833172d"><td class="memTemplParams" colspan="2">template<typename T > </td></tr>
<tr class="memitem:ga64715f89ad837e2b6b5649d0f833172d"><td class="memTemplItemLeft" align="right" valign="top">T & </td><td class="memTemplItemRight" valign="bottom"><a class="el" href="../../d5/d50/group__videostab.html#ga64715f89ad837e2b6b5649d0f833172d">cv::videostab::at</a> (int idx, std::vector< T > &items)</td></tr>
<tr class="separator:ga64715f89ad837e2b6b5649d0f833172d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga45b7337858133cf230ad65a10c9ea63e"><td class="memTemplParams" colspan="2">template<typename T > </td></tr>
<tr class="memitem:ga45b7337858133cf230ad65a10c9ea63e"><td class="memTemplItemLeft" align="right" valign="top">const T & </td><td class="memTemplItemRight" valign="bottom"><a class="el" href="../../d5/d50/group__videostab.html#ga45b7337858133cf230ad65a10c9ea63e">cv::videostab::at</a> (int idx, const std::vector< T > &items)</td></tr>
<tr class="separator:ga45b7337858133cf230ad65a10c9ea63e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga527fd10de0ee99ed7585d4a7dc23c470"><td class="memItemLeft" align="right" valign="top">float </td><td class="memItemRight" valign="bottom"><a class="el" href="../../d5/d50/group__videostab.html#ga527fd10de0ee99ed7585d4a7dc23c470">cv::videostab::calcBlurriness</a> (const <a class="el" href="../../d3/d63/classcv_1_1Mat.html">Mat</a> &frame)</td></tr>
<tr class="separator:ga527fd10de0ee99ed7585d4a7dc23c470"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga682d54675bbbffe349241bd6887892b1"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="../../d5/d50/group__videostab.html#ga682d54675bbbffe349241bd6887892b1">cv::videostab::calcFlowMask</a> (const <a class="el" href="../../d3/d63/classcv_1_1Mat.html">Mat</a> &flowX, const <a class="el" href="../../d3/d63/classcv_1_1Mat.html">Mat</a> &flowY, const <a class="el" href="../../d3/d63/classcv_1_1Mat.html">Mat</a> &errors, float maxError, const <a class="el" href="../../d3/d63/classcv_1_1Mat.html">Mat</a> &mask0, const <a class="el" href="../../d3/d63/classcv_1_1Mat.html">Mat</a> &mask1, <a class="el" href="../../d3/d63/classcv_1_1Mat.html">Mat</a> &flowMask)</td></tr>
<tr class="separator:ga682d54675bbbffe349241bd6887892b1"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gac7e9d9a4c1095962a1b4780b4fb859df"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="../../d5/d50/group__videostab.html#gac7e9d9a4c1095962a1b4780b4fb859df">cv::videostab::completeFrameAccordingToFlow</a> (const <a class="el" href="../../d3/d63/classcv_1_1Mat.html">Mat</a> &flowMask, const <a class="el" href="../../d3/d63/classcv_1_1Mat.html">Mat</a> &flowX, const <a class="el" href="../../d3/d63/classcv_1_1Mat.html">Mat</a> &flowY, const <a class="el" href="../../d3/d63/classcv_1_1Mat.html">Mat</a> &frame1, const <a class="el" href="../../d3/d63/classcv_1_1Mat.html">Mat</a> &mask1, float distThresh, <a class="el" href="../../d3/d63/classcv_1_1Mat.html">Mat</a> &frame0, <a class="el" href="../../d3/d63/classcv_1_1Mat.html">Mat</a> &mask0)</td></tr>
<tr class="separator:gac7e9d9a4c1095962a1b4780b4fb859df"><td class="memSeparator" colspan="2"> </td></tr>
</table>
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
<p>The video stabilization module contains a set of functions and classes that can be used to solve the problem of video stabilization. There are a few methods implemented, most of them are described in the papers <a class="el" href="../../d0/de3/citelist.html#CITEREF_OF06">[108]</a> and <a class="el" href="../../d0/de3/citelist.html#CITEREF_G11">[64]</a> . However, there are some extensions and deviations from the original paper methods.</p>
<h3>References</h3>
<ol type="1">
<li>"Full-Frame Video Stabilization with Motion Inpainting" Yasuyuki Matsushita, Eyal Ofek, Weina Ge, Xiaoou Tang, Senior Member, and Heung-Yeung Shum</li>
<li>"Auto-Directed Video Stabilization with Robust L1 Optimal Camera Paths" Matthias Grundmann, Vivek Kwatra, Irfan Essa </li>
</ol>
<h2 class="groupheader">Function Documentation</h2>
<a id="ga23ab7e15cf5caaf624a90607d863c07e"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ga23ab7e15cf5caaf624a90607d863c07e">§ </a></span>ColorInpainter()</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">cv::videostab::ColorInpainter::ColorInpainter </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>method</em> = <code><a class="el" href="../../d1/d0d/group__photo.html#gga7b31a379c097fb87997d28266762f12fa892824c38e258feb5e72f308a358d52e">INPAINT_TELEA</a></code>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">double </td>
<td class="paramname"><em>radius</em> = <code>2.</code> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a id="ga64715f89ad837e2b6b5649d0f833172d"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ga64715f89ad837e2b6b5649d0f833172d">§ </a></span>at() <span class="overload">[1/2]</span></h2>
<div class="memitem">
<div class="memproto">
<div class="memtemplate">
template<typename T > </div>
<table class="memname">
<tr>
<td class="memname">T& cv::videostab::at </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>idx</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">std::vector< T > & </td>
<td class="paramname"><em>items</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a id="ga45b7337858133cf230ad65a10c9ea63e"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ga45b7337858133cf230ad65a10c9ea63e">§ </a></span>at() <span class="overload">[2/2]</span></h2>
<div class="memitem">
<div class="memproto">
<div class="memtemplate">
template<typename T > </div>
<table class="memname">
<tr>
<td class="memname">const T& cv::videostab::at </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>idx</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const std::vector< T > & </td>
<td class="paramname"><em>items</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a id="ga527fd10de0ee99ed7585d4a7dc23c470"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ga527fd10de0ee99ed7585d4a7dc23c470">§ </a></span>calcBlurriness()</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">float cv::videostab::calcBlurriness </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="../../d3/d63/classcv_1_1Mat.html">Mat</a> & </td>
<td class="paramname"><em>frame</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a id="ga682d54675bbbffe349241bd6887892b1"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ga682d54675bbbffe349241bd6887892b1">§ </a></span>calcFlowMask()</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void cv::videostab::calcFlowMask </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="../../d3/d63/classcv_1_1Mat.html">Mat</a> & </td>
<td class="paramname"><em>flowX</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="../../d3/d63/classcv_1_1Mat.html">Mat</a> & </td>
<td class="paramname"><em>flowY</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="../../d3/d63/classcv_1_1Mat.html">Mat</a> & </td>
<td class="paramname"><em>errors</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">float </td>
<td class="paramname"><em>maxError</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="../../d3/d63/classcv_1_1Mat.html">Mat</a> & </td>
<td class="paramname"><em>mask0</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="../../d3/d63/classcv_1_1Mat.html">Mat</a> & </td>
<td class="paramname"><em>mask1</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="../../d3/d63/classcv_1_1Mat.html">Mat</a> & </td>
<td class="paramname"><em>flowMask</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a id="gac7e9d9a4c1095962a1b4780b4fb859df"></a>
<h2 class="memtitle"><span class="permalink"><a href="#gac7e9d9a4c1095962a1b4780b4fb859df">§ </a></span>completeFrameAccordingToFlow()</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void cv::videostab::completeFrameAccordingToFlow </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="../../d3/d63/classcv_1_1Mat.html">Mat</a> & </td>
<td class="paramname"><em>flowMask</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="../../d3/d63/classcv_1_1Mat.html">Mat</a> & </td>
<td class="paramname"><em>flowX</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="../../d3/d63/classcv_1_1Mat.html">Mat</a> & </td>
<td class="paramname"><em>flowY</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="../../d3/d63/classcv_1_1Mat.html">Mat</a> & </td>
<td class="paramname"><em>frame1</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="../../d3/d63/classcv_1_1Mat.html">Mat</a> & </td>
<td class="paramname"><em>mask1</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">float </td>
<td class="paramname"><em>distThresh</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="../../d3/d63/classcv_1_1Mat.html">Mat</a> & </td>
<td class="paramname"><em>frame0</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="../../d3/d63/classcv_1_1Mat.html">Mat</a> & </td>
<td class="paramname"><em>mask0</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
</div><!-- contents -->
<!-- HTML footer for doxygen 1.8.6-->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 23 2016 13:00:26 for OpenCV by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
</a> 1.8.12
</small></address>
<script type="text/javascript">
//<![CDATA[
function addButton(label, buttonName) {
var b = document.createElement("BUTTON");
b.innerHTML = buttonName;
b.setAttribute('class', 'toggleable_button label_' + label);
b.onclick = function() {
$('.toggleable_button').css({
border: '2px outset',
'border-radius': '4px'
});
$('.toggleable_button.label_' + label).css({
border: '2px inset',
'border-radius': '4px'
});
$('.toggleable_div').css('display', 'none');
$('.toggleable_div.label_' + label).css('display', 'block');
};
b.style.border = '2px outset';
b.style.borderRadius = '4px';
b.style.margin = '2px';
return b;
}
function buttonsToAdd($elements, $heading, $type) {
if ($elements.length === 0) {
$elements = $("" + $type + ":contains(" + $heading.html() + ")").parent().prev("div.newInnerHTML");
}
var arr = jQuery.makeArray($elements);
var seen = {};
arr.forEach(function(e) {
var txt = e.innerHTML;
if (!seen[txt]) {
$button = addButton(e.title, txt);
if (Object.keys(seen).length == 0) {
var linebreak1 = document.createElement("br");
var linebreak2 = document.createElement("br");
($heading).append(linebreak1);
($heading).append(linebreak2);
}
($heading).append($button);
seen[txt] = true;
}
});
return;
}
$("h2").each(function() {
$heading = $(this);
$smallerHeadings = $(this).nextUntil("h2").filter("h3").add($(this).nextUntil("h2").find("h3"));
if ($smallerHeadings.length) {
$smallerHeadings.each(function() {
var $elements = $(this).nextUntil("h3").filter("div.newInnerHTML");
buttonsToAdd($elements, $(this), "h3");
});
} else {
var $elements = $(this).nextUntil("h2").filter("div.newInnerHTML");
buttonsToAdd($elements, $heading, "h2");
}
});
$(".toggleable_button").first().click();
var $clickDefault = $('.toggleable_button.label_python').first();
if ($clickDefault.length) {
$clickDefault.click();
}
$clickDefault = $('.toggleable_button.label_cpp').first();
if ($clickDefault.length) {
$clickDefault.click();
}
//]]>
</script>
</body>
</html>
|
583f2e5/html/classv8_1_1_persistent-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 v0.4.0: 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 v0.4.0
</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="hierarchy.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_1_persistent.html">Persistent</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="headertitle">
<div class="title">v8::Persistent< T > Member List</div> </div>
</div><!--header-->
<div class="contents">
<p>This is the complete list of members for <a class="el" href="classv8_1_1_persistent.html">v8::Persistent< T ></a>, including all inherited members.</p>
<table class="directory">
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>As</b>() (defined in <a class="el" href="classv8_1_1_persistent.html">v8::Persistent< T ></a>)</td><td class="entry"><a class="el" href="classv8_1_1_persistent.html">v8::Persistent< T ></a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>Cast</b>(Persistent< S > that) (defined in <a class="el" href="classv8_1_1_persistent.html">v8::Persistent< T ></a>)</td><td class="entry"><a class="el" href="classv8_1_1_persistent.html">v8::Persistent< T ></a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">static</span></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>Cast</b>(Handle< S > that) (defined in <a class="el" href="classv8_1_1_handle.html">v8::Handle< T ></a>)</td><td class="entry"><a class="el" href="classv8_1_1_handle.html">v8::Handle< T ></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_1_handle.html#a452516a09df056438c3d3a177ebd1977">Clear</a>()</td><td class="entry"><a class="el" href="classv8_1_1_handle.html">v8::Handle< T ></a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1_persistent.html#a30806c1125371c269a02ec03d47c69ab">ClearWeak</a>()</td><td class="entry"><a class="el" href="classv8_1_1_persistent.html">v8::Persistent< T ></a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1_persistent.html#a33e53191844272ba0f2da4f55fc12297">Dispose</a>()</td><td class="entry"><a class="el" href="classv8_1_1_persistent.html">v8::Persistent< T ></a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1_handle.html#aa7543a3d572565806a66e922634cc2f4">Handle</a>()</td><td class="entry"><a class="el" href="classv8_1_1_handle.html">v8::Handle< T ></a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1_handle.html#aac16277f1131898a4a2ef664d051cc18">Handle</a>(T *val)</td><td class="entry"><a class="el" href="classv8_1_1_handle.html">v8::Handle< T ></a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">explicit</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1_handle.html#a64aee8fcde243c8a5abebfe534b3797a">Handle</a>(Handle< S > that)</td><td class="entry"><a class="el" href="classv8_1_1_handle.html">v8::Handle< T ></a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>ImplementationUtilities</b> (defined in <a class="el" href="classv8_1_1_persistent.html">v8::Persistent< T ></a>)</td><td class="entry"><a class="el" href="classv8_1_1_persistent.html">v8::Persistent< T ></a></td><td class="entry"><span class="mlabel">friend</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1_handle.html#ab3b20b28e7f672de83a2dc8d6809f815">IsEmpty</a>() const </td><td class="entry"><a class="el" href="classv8_1_1_handle.html">v8::Handle< T ></a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1_persistent.html#a1f60b982c5e734df7e4fe22ccd5b62cf">IsNearDeath</a>() const </td><td class="entry"><a class="el" href="classv8_1_1_persistent.html">v8::Persistent< T ></a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1_persistent.html#aa636a55b81eee222f86866dd5ae8c06f">IsWeak</a>() const </td><td class="entry"><a class="el" href="classv8_1_1_persistent.html">v8::Persistent< T ></a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1_persistent.html#ab04609812113450bece2640ad0b27658">MakeWeak</a>(void *parameters, WeakReferenceCallback callback)</td><td class="entry"><a class="el" href="classv8_1_1_persistent.html">v8::Persistent< T ></a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1_persistent.html#ad309269ccaeffa6dec338093752ca539">New</a>(Handle< T > that)</td><td class="entry"><a class="el" href="classv8_1_1_persistent.html">v8::Persistent< T ></a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">static</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>ObjectTemplate</b> (defined in <a class="el" href="classv8_1_1_persistent.html">v8::Persistent< T ></a>)</td><td class="entry"><a class="el" href="classv8_1_1_persistent.html">v8::Persistent< T ></a></td><td class="entry"><span class="mlabel">friend</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1_handle.html#ab550353b4a7bc3ad3df53fe80df7ea61">operator!=</a>(Handle< S > that) const </td><td class="entry"><a class="el" href="classv8_1_1_handle.html">v8::Handle< T ></a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>operator*</b>() const (defined in <a class="el" href="classv8_1_1_handle.html">v8::Handle< T ></a>)</td><td class="entry"><a class="el" href="classv8_1_1_handle.html">v8::Handle< T ></a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>operator-></b>() const (defined in <a class="el" href="classv8_1_1_handle.html">v8::Handle< T ></a>)</td><td class="entry"><a class="el" href="classv8_1_1_handle.html">v8::Handle< T ></a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1_handle.html#afcc79738c6fff05c70e958a471f2b7d9">operator==</a>(Handle< S > that) const </td><td class="entry"><a class="el" href="classv8_1_1_handle.html">v8::Handle< T ></a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1_persistent.html#aff7516636baaf209885220f7cff34463">Persistent</a>()</td><td class="entry"><a class="el" href="classv8_1_1_persistent.html">v8::Persistent< T ></a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1_persistent.html#aea24de4ad0e6cd8e102411e11fbc3948">Persistent</a>(Persistent< S > that)</td><td class="entry"><a class="el" href="classv8_1_1_persistent.html">v8::Persistent< T ></a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>Persistent</b>(S *that) (defined in <a class="el" href="classv8_1_1_persistent.html">v8::Persistent< T ></a>)</td><td class="entry"><a class="el" href="classv8_1_1_persistent.html">v8::Persistent< T ></a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1_persistent.html#a89b49f1b1903a2d625d5c3100238276e">Persistent</a>(Handle< S > that)</td><td class="entry"><a class="el" href="classv8_1_1_persistent.html">v8::Persistent< T ></a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">explicit</span></td></tr>
</table></div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Tue Aug 11 2015 23:46:54 for V8 API Reference Guide for node.js v0.4.0 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>
|
d4000e7/html/process_8cc-example.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 v7.7.0 - v7.7.3: process.cc</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 v7.7.0 - v7.7.3
</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><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><!-- top -->
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div class="header">
<div class="headertitle">
<div class="title">process.cc</div> </div>
</div><!--header-->
<div class="contents">
<div class="fragment"></div><!-- fragment --> </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>
|
ab00559/html/md_deps_v8_include_APIDesign.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.11.2: The V8 public C++ API</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.11.2
</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 class="current"><a href="pages.html"><span>Related Pages</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li><a href="annotated.html"><span>Classes</span></a></li>
<li><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>
<!-- 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><!-- top -->
<div class="header">
<div class="headertitle">
<div class="title">The V8 public C++ API </div> </div>
</div><!--header-->
<div class="contents">
<div class="textblock"><h1>Overview</h1>
<p>The V8 public C++ API aims to support four use cases:</p>
<ol type="1">
<li>Enable applications that embed V8 (called the embedder) to configure and run one or more instances of V8.</li>
<li>Expose ECMAScript-like capabilities to the embedder.</li>
<li>Enable the embedder to interact with ECMAScript by exposing API objects.</li>
<li>Provide access to the V8 debugger (inspector).</li>
</ol>
<h1>Configuring and running an instance of V8</h1>
<p>V8 requires access to certain OS-level primitives such as the ability to schedule work on threads, or allocate memory.</p>
<p>The embedder can define how to access those primitives via the <a class="el" href="classv8_1_1Platform.html">v8::Platform</a> interface. While V8 bundles a basic implementation, embedders are highly encouraged to implement <a class="el" href="classv8_1_1Platform.html">v8::Platform</a> themselves.</p>
<p>Currently, the <a class="el" href="classv8_1_1ArrayBuffer_1_1Allocator.html">v8::ArrayBuffer::Allocator</a> is passed to the <a class="el" href="classv8_1_1Isolate.html">v8::Isolate</a> factory method, however, conceptually it should also be part of the <a class="el" href="classv8_1_1Platform.html">v8::Platform</a> since all instances of V8 should share one allocator.</p>
<p>Once the <a class="el" href="classv8_1_1Platform.html">v8::Platform</a> is configured, an <a class="el" href="classv8_1_1Isolate.html">v8::Isolate</a> can be created. All further interactions with V8 should explicitly reference the <a class="el" href="classv8_1_1Isolate.html">v8::Isolate</a> they refer to. All API methods should eventually take an <a class="el" href="classv8_1_1Isolate.html">v8::Isolate</a> parameter.</p>
<p>When a given instance of V8 is no longer needed, it can be destroyed by disposing the respective <a class="el" href="classv8_1_1Isolate.html">v8::Isolate</a>. If the embedder wishes to free all memory associated with the <a class="el" href="classv8_1_1Isolate.html">v8::Isolate</a>, it has to first clear all global handles associated with that <a class="el" href="classv8_1_1Isolate.html">v8::Isolate</a>.</p>
<h1>ECMAScript-like capabilities</h1>
<p>In general, the C++ API shouldn't enable capabilities that aren't available to scripts running in V8. Experience has shown that it's not possible to maintain such API methods in the long term. However, capabilities also available to scripts, i.e., ones that are defined in the ECMAScript standard are there to stay, and we can safely expose them to embedders.</p>
<p>The C++ API should also be pleasant to use, and not require learning new paradigms. Similarly to how the API exposed to scripts aims to provide good ergonomics, we should aim to provide a reasonable developer experience for this API surface.</p>
<p>ECMAScript makes heavy use of exceptions, however, V8's C++ code doesn't use C++ exceptions. Therefore, all API methods that can throw exceptions should indicate so by returning a <a class="el" href="classv8_1_1Maybe.html">v8::Maybe</a><> or <a class="el" href="classv8_1_1MaybeLocal.html">v8::MaybeLocal</a><> result, and by taking a <a class="el" href="classv8_1_1Local.html">v8::Local</a><<a class="el" href="classv8_1_1Context.html">v8::Context</a>> parameter that indicates in which context a possible exception should be thrown.</p>
<h1>API objects</h1>
<p>V8 allows embedders to define special objects that expose additional capabilities and APIs to scripts. The most prominent example is exposing the HTML DOM in Blink. Other examples are e.g. node.js. It is less clear what kind of capabilities we want to expose via this API surface. As a rule of thumb, we want to expose operations as defined in the WebIDL and HTML spec: we assume that those requirements are somewhat stable, and that they are a superset of the requirements of other embedders including node.js.</p>
<p>Ideally, the API surfaces defined in those specs hook into the ECMAScript spec which in turn guarantees long-term stability of the API.</p>
<h1>The V8 inspector</h1>
<p>All debugging capabilities of V8 should be exposed via the inspector protocol. </p>
</div></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.