text
stringlengths 2
1.05M
| repo_name
stringlengths 5
101
| path
stringlengths 4
991
| language
stringclasses 3
values | license
stringclasses 5
values | size
int64 2
1.05M
|
---|---|---|---|---|---|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Owl Carousel - Progress Bar</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="jQuery Responsive Carousel - Owl Carusel">
<meta name="author" content="Bartosz Wojciechowski">
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400italic,400,300,600,700' rel='stylesheet' type='text/css'>
<link href="../assets/css/bootstrapTheme.css" rel="stylesheet">
<link href="../assets/css/custom.css" rel="stylesheet">
<!-- Owl Carousel Assets -->
<link href="../owl-carousel/owl.carousel.css" rel="stylesheet">
<link href="../owl-carousel/owl.theme.css" rel="stylesheet">
<link href="../assets/js/google-code-prettify/prettify.css" rel="stylesheet">
<!-- Le fav and touch icons -->
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="../assets/ico/apple-touch-icon-144-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="../assets/ico/apple-touch-icon-114-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="../assets/ico/apple-touch-icon-72-precomposed.png">
<link rel="apple-touch-icon-precomposed" href="../assets/ico/apple-touch-icon-57-precomposed.png">
<link rel="shortcut icon" href="../assets/ico/favicon.png">
</head>
<body>
<div id="top-nav" class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<button type="button" class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<div class="nav-collapse collapse">
<ul class="nav pull-right">
<li><a href="../index.html"><i class="icon-chevron-left"></i> Back to Frontpage</a></li>
<li><a href="../owl.carousel.zip" class="download download-on" data-spy="affix" data-offset-top="450">Download</a></li>
</ul>
<ul class="nav pull-left">
</ul>
</div>
</div>
</div>
</div>
<div id="title">
<div class="container">
<div class="row">
<div class="span12">
<h1>Progress Bar</h1>
</div>
</div>
</div>
</div>
<div id="demo">
<div class="container">
<div class="row">
<div class="span12">
<div id="owl-demo" class="owl-carousel">
<div class="item"><img src="assets/fullimage1.jpg" alt="The Last of us"></div>
<div class="item"><img src="assets/fullimage2.jpg" alt="GTA V"></div>
<div class="item"><img src="assets/fullimage3.jpg" alt="Mirror Edge"></div>
</div>
</div>
</div>
</div>
</div>
<div id="example-info">
<div class="container">
<div class="row">
<div class="span12">
<h1>Setup</h1>
<p>Progress Bar made by three callbacks: <code>afterInit</code>, <code>afterMove</code> and <code>startDragging</code>.</p>
<ul class="nav nav-tabs" id="myTab">
<li class="active"><a href="#javascript">Javascript</a></li>
<li><a href="#HTML">HTML</a></li>
<li><a href="#CSS">CSS</a></li>
</ul>
<div class="tab-content">
<div class="tab-pane active" id="javascript">
<pre class="pre-show prettyprint linenums">
$(document).ready(function() {
var time = 7; // time in seconds
var $progressBar,
$bar,
$elem,
isPause,
tick,
percentTime;
//Init the carousel
$("#owl-demo").owlCarousel({
slideSpeed : 500,
paginationSpeed : 500,
singleItem : true,
afterInit : progressBar,
afterMove : moved,
startDragging : pauseOnDragging
});
//Init progressBar where elem is $("#owl-demo")
function progressBar(elem){
$elem = elem;
//build progress bar elements
buildProgressBar();
//start counting
start();
}
//create div#progressBar and div#bar then prepend to $("#owl-demo")
function buildProgressBar(){
$progressBar = $("<div>",{
id:"progressBar"
});
$bar = $("<div>",{
id:"bar"
});
$progressBar.append($bar).prependTo($elem);
}
function start() {
//reset timer
percentTime = 0;
isPause = false;
//run interval every 0.01 second
tick = setInterval(interval, 10);
};
function interval() {
if(isPause === false){
percentTime += 1 / time;
$bar.css({
width: percentTime+"%"
});
//if percentTime is equal or greater than 100
if(percentTime >= 100){
//slide to next item
$elem.trigger('owl.next')
}
}
}
//pause while dragging
function pauseOnDragging(){
isPause = true;
}
//moved callback
function moved(){
//clear interval
clearTimeout(tick);
//start again
start();
}
//uncomment this to make pause on mouseover
// $elem.on('mouseover',function(){
// isPause = true;
// })
// $elem.on('mouseout',function(){
// isPause = false;
// })
});
</pre>
</div>
<div class="tab-pane" id="HTML">
<pre class="pre-show prettyprint linenums">
<div id="owl-demo" class="owl-carousel owl-theme">
<div class="item"><img src="assets/fullimage1.jpg" alt="The Last of us"></div>
<div class="item"><img src="assets/fullimage2.jpg" alt="GTA V"></div>
<div class="item"><img src="assets/fullimage3.jpg" alt="Mirror Edge"></div>
</div>
</pre>
</div>
<div class="tab-pane" id="CSS">
<pre class="pre-show prettyprint linenums">
#owl-demo .item img{
display: block;
width: 100%;
height: auto;
}
#bar{
width: 0%;
max-width: 100%;
height: 4px;
background: #7fc242;
}
#progressBar{
width: 100%;
background: #EDEDED;
}
</pre>
</div>
</div><!--End Tab Content-->
</div>
</div>
</div>
</div>
<div id="more">
<div class="container">
<div class="row">
<div class="span12">
<h1>More Demos</h1>
</div>
</div>
<div class="row demos-row">
<div class="span3">
<a href="images.html" class="demo-box">
<div class="demo-wrapper demo-images clearfix">
<div class="demo-slide"><div class="bg"></div></div>
<div class="demo-slide"><div class="bg"></div></div>
<div class="demo-slide"><div class="bg"></div></div>
</div>
<h3>Images</h3>
</a>
</div>
<div class="span3">
<a href="custom.html" class="demo-box">
<div class="demo-wrapper demo-custom clearfix">
<div class="demo-slide"><div class="bg"></div></div>
<div class="demo-slide"><div class="bg"></div></div>
<div class="demo-slide"><div class="bg"></div></div>
<div class="demo-slide"><div class="bg"></div></div>
<div class="demo-slide"><div class="bg"></div></div>
<div class="demo-slide"><div class="bg"></div></div>
<div class="demo-slide"><div class="bg"></div></div>
<div class="demo-slide"><div class="bg"></div></div>
<div class="demo-slide"><div class="bg"></div></div>
<div class="demo-slide"><div class="bg"></div></div>
</div>
<h3>Custom</h3>
</a>
</div>
<div class="span3">
<a href="itemsCustom.html" class="demo-box">
<div class="demo-wrapper demo-full clearfix">
<div class="demo-slide"><div class="bg"></div></div>
<div class="demo-slide"><div class="bg"></div></div>
<div class="demo-slide"><div class="bg"></div></div>
<div class="demo-slide"><div class="bg"></div></div>
</div>
<h3>Custom 2</h3>
</a>
</div>
<div class="span3">
<a href="one.html" class="demo-box">
<div class="demo-wrapper demo-one clearfix">
<div class="demo-slide"><div class="bg"></div></div>
</div>
<h3>One Slide</h3>
</a>
</div>
</div>
<div class="row demos-row">
<div class="span3">
<a href="json.html" class="demo-box">
<div class="demo-wrapper demo-Json clearfix">
<div class="demo-slide"><div class="bg"></div></div>
<div class="demo-slide"><div class="bg"></div></div>
<div class="demo-slide"><div class="bg"></div></div>
<div class="demo-slide"><div class="bg"></div></div>
<div class="demo-slide"><div class="bg"></div></div>
</div>
<h3>JSON</h3>
</a>
</div>
<div class="span3">
<a href="customJson.html" class="demo-box">
<div class="demo-wrapper demo-Json-custom clearfix">
<div class="demo-slide"><div class="bg"></div></div>
<div class="demo-slide"><div class="bg"></div></div>
<div class="demo-slide"><div class="bg"></div></div>
</div>
<h3>JSON Custom</h3>
</a>
</div>
<div class="span3">
<a href="lazyLoad.html" class="demo-box">
<div class="demo-wrapper demo-lazy clearfix">
<div class="demo-slide"><div class="bg"></div></div>
<div class="demo-slide"><div class="bg"></div></div>
<div class="demo-slide"><div class="bg"></div></div>
</div>
<h3>Lazy Load</h3>
</a>
</div>
<div class="span3">
<a href="autoHeight.html" class="demo-box">
<div class="demo-wrapper demo-height clearfix">
<div class="demo-slide"><div class="bg"></div></div>
</div>
<h3>Auto Height</h3>
</a>
</div>
</div>
</div>
</div>
<div id="footer">
<div class="container">
<div class="row">
<div class="span12">
<h5>Bartosz Wojciechowski 2013 / @OwlFonk /
<a href="mailto:[email protected]?subject=Hey Owl!">email</a> /
<a href="../changelog.html">changelog</a> /
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=EFSGXZS7V2U9N">donate</a> /
<a href="https://twitter.com/share" class="twitter-share-button" data-url="http://owlgraphic.com/owlcarousel/" data-text="Awesome jQuery Owl Carousel Responsive Plugin" data-via="OwlFonk" data-count="none" data-hashtags="owlcarousel"></a>
<script>
var owldomain = window.location.hostname.indexOf("owlgraphic");
if(owldomain !== -1){
!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');
}
</script>
</h5>
</div>
</div>
</div>
</div>
<script src="../assets/js/jquery-1.9.1.min.js"></script>
<script src="../owl-carousel/owl.carousel.js"></script>
<!-- Demo -->
<style>
#owl-demo .item img{
display: block;
width: 100%;
height: auto;
}
#bar{
width: 0%;
max-width: 100%;
height: 4px;
background: #7fc242;
}
#progressBar{
width: 100%;
background: #EDEDED;
}
</style>
<script>
$(document).ready(function() {
var time = 7; // time in seconds
var $progressBar,
$bar,
$elem,
isPause,
tick,
percentTime;
//Init the carousel
$("#owl-demo").owlCarousel({
slideSpeed : 500,
paginationSpeed : 500,
singleItem : true,
afterInit : progressBar,
afterMove : moved,
startDragging : pauseOnDragging
});
//Init progressBar where elem is $("#owl-demo")
function progressBar(elem){
$elem = elem;
<<<<<<< HEAD
//build progress bar elements
=======
<<<<<<< HEAD
//build progress bar elements
=======
<<<<<<< HEAD
//build progress bar elements
=======
<<<<<<< HEAD
//build progress bar elements
=======
//build progress bar partial
>>>>>>> 018f6b9d81e5d7bc15aa547482fadde9312e8040
>>>>>>> 065b76f90b2ff7ee69815b4ce700376e708acc55
>>>>>>> a1de9b143e16067bb77e823064c94d33d825d54e
>>>>>>> 0ca9bd85c649a9ede4372c3aeeb41ef4b7aae6e4
buildProgressBar();
//start counting
start();
}
//create div#progressBar and div#bar then prepend to $("#owl-demo")
function buildProgressBar(){
$progressBar = $("<div>",{
id:"progressBar"
});
$bar = $("<div>",{
id:"bar"
});
$progressBar.append($bar).prependTo($elem);
}
function start() {
//reset timer
percentTime = 0;
isPause = false;
//run interval every 0.01 second
tick = setInterval(interval, 10);
};
function interval() {
if(isPause === false){
percentTime += 1 / time;
$bar.css({
width: percentTime+"%"
});
//if percentTime is equal or greater than 100
if(percentTime >= 100){
//slide to next item
$elem.trigger('owl.next')
}
}
}
//pause while dragging
function pauseOnDragging(){
isPause = true;
}
//moved callback
function moved(){
//clear interval
clearTimeout(tick);
//start again
start();
}
//uncomment this to make pause on mouseover
// $elem.on('mouseover',function(){
// isPause = true;
// })
// $elem.on('mouseout',function(){
// isPause = false;
// })
});
</script>
<script src="../assets/js/bootstrap-collapse.js"></script>
<script src="../assets/js/bootstrap-transition.js"></script>
<script src="../assets/js/bootstrap-tab.js"></script>
<script src="../assets/js/google-code-prettify/prettify.js"></script>
<script src="../assets/js/application.js"></script>
</body>
</html>
| aafahad/laravel | resources/assets/global/plugins/carousel-owl-carousel/demos/progressBar.html | HTML | mit | 15,304 |
<ol class="breadcrumb">
<li>
<a class="badge badge-type" href="#">Master</a>
</li>
<li>
<a class="badge badge-type" href="#/agents/{{agent_id}}" title="{{agent_id}}">
Agent</a>
</li>
<li class="active">
Browse
</li>
</ol>
<ol class="breadcrumb">
<!-- We want to ensure that if the user highlights the path breadcrumb,
and copies it, they will receive a /path/without/spaces that they
can then paste into a terminal, or elsewhere. In order to do this,
we have to ensure there is no whitespace within the <a> tag contents.
Also, we have to inject a hidden '/' character because the slashes
in the breadcrumb are not copied.
-->
<li ng-repeat="dir in path.split('/')"><a
href="#/agents/{{agent_id}}/browse?path={{
encodeURIComponent(path.split('/').slice(0, $index + 1).join('/'))
}}">{{dir}}</a><span class="hidden-text">/</span></li>
</ol>
<div class="alert alert-error hidden" id="alert">
<button class="close" data-dismiss="alert">×</button>
<strong>{{alert_message}}</strong>
</div>
<div class="row" id="listing">
<div class="col-md-9">
<div class="well">
<div data-ng-show="listing.length == 0">
No files in this directory.
</div>
<table class="table table-condensed" data-ng-show="listing.length > 0">
<thead>
<tr>
<th>mode</th>
<th class="text-right">nlink</th>
<th>uid</th>
<th>gid</th>
<th class="text-right">size</th>
<th class="text-right">mtime</th>
<th></th>
<th></th>
</tr>
</thead>
<tbody>
<tr ng-repeat="file in listing | orderBy:['-mode', 'path']">
<td>{{file.mode}}</td>
<td class="text-right">{{file.nlink}}</td>
<td>{{file.uid}}</td>
<td>{{file.gid}}</td>
<td class="text-right">{{file.size | dataSize}}</td>
<td class="text-right">{{file.mtime * 1000 | unixDate}}</td>
<td>
<span data-ng-show="file.mode[0] == 'd'">
<i class="glyphicon glyphicon-folder-close"></i>
<a href="#/agents/{{agent_id}}/browse?path={{encodeURIComponent(file.path)}}">
{{basename(file.path)}}
</a>
</span>
<span data-ng-show="file.mode[0] != 'd'">
<i class="glyphicon glyphicon-file" style="visibility: hidden;"></i>
<a href="" ng-click="pail($event, encodeURIComponent(file.path))">
{{basename(file.path)}}
</a>
</span>
</td>
<td>
<a data-ng-show="file.mode[0] != 'd'"
href="{{agent_url_prefix}}/files/download?path={{encodeURIComponent(file.path)}}">
<button class="btn btn-xs btn-default" type="button">
Download
</button>
</a>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
| shakamunyi/mesos | src/webui/master/static/browse.html | HTML | apache-2.0 | 3,090 |
<HTML>
<HEAD>
<TITLE>Comparison of positioning schemes</TITLE>
<STYLE>
body { display: block; font-size:12px; line-height: 200%;
width: 400px; height: 400px }
p { display: block }
span { display: inline }
#outer { position: relative; top: -12px; color: red }
#inner { position: relative; top: 12px; color: blue }
</STYLE>
</HEAD>
<BODY>
<P>Beginning of body contents.
<SPAN id="outer"> Start of outer contents.
<SPAN id="inner"> Inner contents.</SPAN>
End of outer contents.</SPAN>
End of body contents.
</P>
</BODY>
</HTML> | esrille/escudo | testdata/9.8.2.html | HTML | apache-2.0 | 622 |
<!DOCTYPE html>
<html>
<head>
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.2.16/angular.min.js" type="text/javascript"> </script>
<script src="//cdn.auth0.com/js/lock-7.1.js" type="text/javascript"> </script>
<script src="//cdn.rawgit.com/auth0/angular-storage/master/dist/angular-storage.js" type="text/javascript"> </script>
<script src="//cdn.rawgit.com/auth0/angular-jwt/master/dist/angular-jwt.js" type="text/javascript"> </script>
<script src="//code.angularjs.org/1.2.16/angular-route.min.js" type="text/javascript"> </script>
<script src="//code.angularjs.org/1.2.16/angular-cookies.min.js" type="text/javascript"> </script>
<script src="./scripts/myApp.js" type="text/javascript"> </script>
<script src="./scripts/auth0-angular.js" type="text/javascript"> </script>
<script src="./scripts/controllers.js" type="text/javascript"> </script>
<title>Sample Angular App with Auth0</title>
</head>
<body>
<div ng-app="myApp">
<div ng-controller="MenuCtrl">
<a href="" ng-controller="LoginCtrl" ng-click="login()">click to login</a>
<br />
<a href="" ng-click="go('/')">main</a>
<a href="" ng-click="go('/logout')">logout</a>
</div>
<div style="margin-top: 10px;">{{message}}</div>
<div ng-view>
</div>
</div>
</body>
</html>
| suntorytime/global_marathon | www/lib/auth0-angular/examples/sso/index.html | HTML | mit | 1,314 |
<!DOCTYPE html>
<html>
<body>
<div style="position:absolute; transform-origin: 0px 0px; transform: matrix(0.9, 0, 0, 0.9, -210, -777);">
<svg width="2384" height="1684" style="position:absolute; left:0; top:0;">
<circle cx="475" cy="975" r="40" stroke="black" stroke-width="2" fill="none" />
<text fill="red" style="font-size: 40px;" transform="matrix(1, 0, 0, 1, 468, 988)">A</text>
</svg>
</div>
<svg width="500" height="400" style="transform-origin: 0px 0px; transform: scale(2) translate(-300px, -300px);">
<text x="300" y="350" font-size="50" fill="green">PASS</text>
</svg>
</body>
</html>
| chromium/chromium | third_party/blink/web_tests/external/wpt/svg/text/reftests/transform-dynamic-change-ref.html | HTML | bsd-3-clause | 611 |
<div class="module-section">
{% for(var i=0, j= data.items.length; i < j; i++) { var item = data.items[i]; %}
<div class="row module-item" data-item-index={%= i %}>
{% if (item.description) { %}
<div class="col-xs-8">
<h4>{%= item.label || item.name %}</h4>
{% if (item.type==="doctype") { %}
<span class="open-notification hide" data-doctype="{%= item.name %}"></span>
{% } %}
<p class="text-muted small module-item-description hidden-xs">{%= item.description %}</p>
</div>
<div class="col-xs-4 text-muted text-right small" style="padding-top: 5px;">
{% if (item.last_modified) { %}
{%= comment_when(item.last_modified) %}
{% } %}
</div>
{% } else { %}
<div class="col-xs-12">
<h4>{%= item.label || item.name %}</h4>
</div>
{% } %}
</div>
{% } %}
<div class="row visible-sm visible-xs" style="padding: 15px;">
<div class="col-xs-12">
<a onclick="frappe.ui.toolbar.toggle_left_sidebar();" class="text-primary">
{%= __("More") %}</a>
</div>
</div>
</div>
| reachalpineswift/frappe-bench | frappe/public/js/frappe/views/module/module_section.html | HTML | mit | 1,055 |
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<title>File: checklist.rb [RDoc Documentation]</title>
<link type="text/css" media="screen" href="../../rdoc.css" rel="stylesheet" />
<script src="../../js/jquery.js" type="text/javascript"
charset="utf-8"></script>
<script src="../../js/thickbox-compressed.js" type="text/javascript"
charset="utf-8"></script>
<script src="../../js/quicksearch.js" type="text/javascript"
charset="utf-8"></script>
<script src="../../js/darkfish.js" type="text/javascript"
charset="utf-8"></script>
</head>
<body class="file file-popup">
<div id="metadata">
<dl>
<dt class="modified-date">Last Modified</dt>
<dd class="modified-date">2012-02-13 00:16:22 -0600</dd>
<dt class="requires">Requires</dt>
<dd class="requires">
<ul>
</ul>
</dd>
</dl>
</div>
<div id="documentation">
<div class="description">
<h2>Description</h2>
</div>
</div>
</body>
</html>
| ksamc/ruby-trello | doc/lib/trello/checklist_rb.html | HTML | mit | 1,221 |
<!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.8"/>
<title>BlackBone: 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="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 style="padding-left: 0.5em;">
<div id="projectname">BlackBone
</div>
<div id="projectbrief">Windows memory hacking library</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.8 -->
<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="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="hierarchy.html"><span>Class Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class Members</span></a></li>
</ul>
</div>
</div><!-- top -->
<div id="side-nav" class="ui-resizable side-nav-resizable">
<div id="nav-tree">
<div id="nav-tree-contents">
<div id="nav-sync" class="sync"></div>
</div>
</div>
<div id="splitbar" style="-moz-user-select:none;"
class="ui-resizable-handle">
</div>
</div>
<script type="text/javascript">
$(document).ready(function(){initNavTree('struct___a_p_i___s_e_t___n_a_m_e_s_p_a_c_e___a_r_r_a_y.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>Functions</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="header">
<div class="headertitle">
<div class="title">_API_SET_NAMESPACE_ARRAY Member List</div> </div>
</div><!--header-->
<div class="contents">
<p>This is the complete list of members for <a class="el" href="struct___a_p_i___s_e_t___n_a_m_e_s_p_a_c_e___a_r_r_a_y.html">_API_SET_NAMESPACE_ARRAY</a>, including all inherited members.</p>
<table class="directory">
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>apiName</b>(PAPI_SET_NAMESPACE_ENTRY pEntry, wchar_t *output) (defined in <a class="el" href="struct___a_p_i___s_e_t___n_a_m_e_s_p_a_c_e___a_r_r_a_y.html">_API_SET_NAMESPACE_ARRAY</a>)</td><td class="entry"><a class="el" href="struct___a_p_i___s_e_t___n_a_m_e_s_p_a_c_e___a_r_r_a_y.html">_API_SET_NAMESPACE_ARRAY</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>Array</b> (defined in <a class="el" href="struct___a_p_i___s_e_t___n_a_m_e_s_p_a_c_e___a_r_r_a_y.html">_API_SET_NAMESPACE_ARRAY</a>)</td><td class="entry"><a class="el" href="struct___a_p_i___s_e_t___n_a_m_e_s_p_a_c_e___a_r_r_a_y.html">_API_SET_NAMESPACE_ARRAY</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>Count</b> (defined in <a class="el" href="struct___a_p_i___s_e_t___n_a_m_e_s_p_a_c_e___a_r_r_a_y.html">_API_SET_NAMESPACE_ARRAY</a>)</td><td class="entry"><a class="el" href="struct___a_p_i___s_e_t___n_a_m_e_s_p_a_c_e___a_r_r_a_y.html">_API_SET_NAMESPACE_ARRAY</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>entry</b>(DWORD i) (defined in <a class="el" href="struct___a_p_i___s_e_t___n_a_m_e_s_p_a_c_e___a_r_r_a_y.html">_API_SET_NAMESPACE_ARRAY</a>)</td><td class="entry"><a class="el" href="struct___a_p_i___s_e_t___n_a_m_e_s_p_a_c_e___a_r_r_a_y.html">_API_SET_NAMESPACE_ARRAY</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>Flags</b> (defined in <a class="el" href="struct___a_p_i___s_e_t___n_a_m_e_s_p_a_c_e___a_r_r_a_y.html">_API_SET_NAMESPACE_ARRAY</a>)</td><td class="entry"><a class="el" href="struct___a_p_i___s_e_t___n_a_m_e_s_p_a_c_e___a_r_r_a_y.html">_API_SET_NAMESPACE_ARRAY</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>Size</b> (defined in <a class="el" href="struct___a_p_i___s_e_t___n_a_m_e_s_p_a_c_e___a_r_r_a_y.html">_API_SET_NAMESPACE_ARRAY</a>)</td><td class="entry"><a class="el" href="struct___a_p_i___s_e_t___n_a_m_e_s_p_a_c_e___a_r_r_a_y.html">_API_SET_NAMESPACE_ARRAY</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>valArray</b>(PAPI_SET_NAMESPACE_ENTRY pEntry) (defined in <a class="el" href="struct___a_p_i___s_e_t___n_a_m_e_s_p_a_c_e___a_r_r_a_y.html">_API_SET_NAMESPACE_ARRAY</a>)</td><td class="entry"><a class="el" href="struct___a_p_i___s_e_t___n_a_m_e_s_p_a_c_e___a_r_r_a_y.html">_API_SET_NAMESPACE_ARRAY</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>Version</b> (defined in <a class="el" href="struct___a_p_i___s_e_t___n_a_m_e_s_p_a_c_e___a_r_r_a_y.html">_API_SET_NAMESPACE_ARRAY</a>)</td><td class="entry"><a class="el" href="struct___a_p_i___s_e_t___n_a_m_e_s_p_a_c_e___a_r_r_a_y.html">_API_SET_NAMESPACE_ARRAY</a></td><td class="entry"></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="footer">Generated on Tue Jul 21 2015 12:31:40 for BlackBone by
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.8 </li>
</ul>
</div>
</body>
</html>
| dthongvl/Blackbone | doc/lib/html/struct___a_p_i___s_e_t___n_a_m_e_s_p_a_c_e___a_r_r_a_y-members.html | HTML | mit | 8,293 |
<?xml version="1.0"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<title>Rangy - Serializer Tests</title>
<script type="text/javascript" src="../external/log4javascript.js"></script>
<script type="text/javascript" src="../external/jshashtable.js"></script>
<script type="text/javascript">
//var appender = new log4javascript.InPageAppender();
var appender = new log4javascript.BrowserConsoleAppender();
//log4javascript.getRootLogger().addAppender(appender);
var log = log4javascript.getRootLogger();
log4javascript.setShowStackTraces(true);
//log4javascript.setEnabled(false);
</script>
<script type="text/javascript" src="xntest.js"></script>
<script type="text/javascript" src="testutils.js"></script>
<script type="text/javascript">
xn.test.enableStackTraces = true;
</script>
<script type="text/javascript" src="../src/core/core.js"></script>
<script type="text/javascript" src="../src/core/dom.js"></script>
<script type="text/javascript" src="../src/core/domrange.js"></script>
<script type="text/javascript" src="../src/core/wrappedrange.js"></script>
<script type="text/javascript" src="../src/core/wrappedselection.js"></script>
<script type="text/javascript" src="../src/modules/rangy-serializer.js"></script>
<script type="text/javascript" src="serializertests.js"></script>
<link rel="stylesheet" type="text/css" href="tests.css"/>
</head>
<body>
<div id="test"></div>
<div id="messages"></div>
</body>
</html>
| shuizhongyueming/rangy | test/serializertests.html | HTML | mit | 1,857 |
<ul class="UIAPIPlugin-toc">
<li><a href="#overview">Overview</a></li>
<li><a href="#options">Options</a></li>
<li><a href="#events">Events</a></li>
<li><a href="#methods">Methods</a></li>
<li><a href="#theming">Theming</a></li>
</ul>
<div class="UIAPIPlugin">
<h1>jQuery UI Selectable</h1>
<div id="overview">
<h2 class="top-header">Overview</h2>
<div id="overview-main">
<p>The jQuery UI Selectable plugin allows for elements to be selected by dragging a box (sometimes called a lasso) with the mouse over the elements. Also, elements can be selected by click or drag while holding the Ctrl/Meta key, allowing for multiple (non-contiguous) selections.</p>
</div>
<div id="overview-dependencies">
<h3>Dependencies</h3>
<ul>
<li>UI Core</li>
<li>UI Widget</li>
<li>UI Mouse</li>
</ul>
</div>
<div id="overview-example">
<h3>Example</h3>
<div id="overview-example" class="example">
<ul><li><a href="#demo"><span>Demo</span></a></li><li><a href="#source"><span>View Source</span></a></li></ul>
<p><div id="demo" class="tabs-container" rel="">
A simple jQuery UI Selectable.<br />
</p>
<pre>$("#selectable").selectable();
</pre>
<p></div><div id="source" class="tabs-container">
</p>
<pre><!DOCTYPE html>
<html>
<head>
<link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css" rel="stylesheet" type="text/css"/>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script>
<style type="text/css">
#selectable .ui-selecting {
background: silver;
}
#selectable .ui-selected {
background: gray;
}
</style>
<script>
$(document).ready(function() {
$("#selectable").selectable();
});
</script>
</head>
<body style="font-size:62.5%;">
<ul id="selectable">
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
<li>Item 4</li>
<li>Item 5</li>
</ul>
</body>
</html>
</pre>
<p></div>
</p><p></div>
</div>
</div>
<div id="options">
<h2 class="top-header">Options</h2>
<ul class="options-list">
<li class="option" id="option-disabled">
<div class="option-header">
<h3 class="option-name"><a href="#option-disabled">disabled</a></h3>
<dl>
<dt class="option-type-label">Type:</dt>
<dd class="option-type">Boolean</dd>
<dt class="option-default-label">Default:</dt>
<dd class="option-default">false</dd>
</dl>
</div>
<div class="option-description">
<p>Disables (true) or enables (false) the selectable. Can be set when initialising (first creating) the selectable.</p>
</div>
<div class="option-examples">
<h4>Code examples</h4>
<dl class="option-examples-list">
<dt>
Initialize a selectable with the <code>disabled</code> option specified.
</dt>
<dd>
<pre><code>$( ".selector" ).selectable({ disabled: true });</code></pre>
</dd>
<dt>
Get or set the <code>disabled</code> option, after init.
</dt>
<dd>
<pre><code>//getter
var disabled = $( ".selector" ).selectable( "option", "disabled" );
//setter
$( ".selector" ).selectable( "option", "disabled", true );</code></pre>
</dd>
</dl>
</div>
</li>
<li class="option" id="option-autoRefresh">
<div class="option-header">
<h3 class="option-name"><a href="#option-autoRefresh">autoRefresh</a></h3>
<dl>
<dt class="option-type-label">Type:</dt>
<dd class="option-type">Boolean</dd>
<dt class="option-default-label">Default:</dt>
<dd class="option-default">true</dd>
</dl>
</div>
<div class="option-description">
<p>This determines whether to refresh (recalculate) the position and size of each selectee at the beginning of each select operation. If you have many many items, you may want to set this to false and call the refresh method manually.</p>
</div>
<div class="option-examples">
<h4>Code examples</h4>
<dl class="option-examples-list">
<dt>
Initialize a selectable with the <code>autoRefresh</code> option specified.
</dt>
<dd>
<pre><code>$( ".selector" ).selectable({ autoRefresh: false });</code></pre>
</dd>
<dt>
Get or set the <code>autoRefresh</code> option, after init.
</dt>
<dd>
<pre><code>//getter
var autoRefresh = $( ".selector" ).selectable( "option", "autoRefresh" );
//setter
$( ".selector" ).selectable( "option", "autoRefresh", false );</code></pre>
</dd>
</dl>
</div>
</li>
<li class="option" id="option-cancel">
<div class="option-header">
<h3 class="option-name"><a href="#option-cancel">cancel</a></h3>
<dl>
<dt class="option-type-label">Type:</dt>
<dd class="option-type">Selector</dd>
<dt class="option-default-label">Default:</dt>
<dd class="option-default">':input,option'</dd>
</dl>
</div>
<div class="option-description">
<p>Prevents selecting if you start on elements matching the selector.</p>
</div>
<div class="option-examples">
<h4>Code examples</h4>
<dl class="option-examples-list">
<dt>
Initialize a selectable with the <code>cancel</code> option specified.
</dt>
<dd>
<pre><code>$( ".selector" ).selectable({ cancel: ':input,option' });</code></pre>
</dd>
<dt>
Get or set the <code>cancel</code> option, after init.
</dt>
<dd>
<pre><code>//getter
var cancel = $( ".selector" ).selectable( "option", "cancel" );
//setter
$( ".selector" ).selectable( "option", "cancel", ':input,option' );</code></pre>
</dd>
</dl>
</div>
</li>
<li class="option" id="option-delay">
<div class="option-header">
<h3 class="option-name"><a href="#option-delay">delay</a></h3>
<dl>
<dt class="option-type-label">Type:</dt>
<dd class="option-type">Integer</dd>
<dt class="option-default-label">Default:</dt>
<dd class="option-default">0</dd>
</dl>
</div>
<div class="option-description">
<p>Time in milliseconds to define when the selecting should start. It helps preventing unwanted selections when clicking on an element.</p>
</div>
<div class="option-examples">
<h4>Code examples</h4>
<dl class="option-examples-list">
<dt>
Initialize a selectable with the <code>delay</code> option specified.
</dt>
<dd>
<pre><code>$( ".selector" ).selectable({ delay: 20 });</code></pre>
</dd>
<dt>
Get or set the <code>delay</code> option, after init.
</dt>
<dd>
<pre><code>//getter
var delay = $( ".selector" ).selectable( "option", "delay" );
//setter
$( ".selector" ).selectable( "option", "delay", 20 );</code></pre>
</dd>
</dl>
</div>
</li>
<li class="option" id="option-distance">
<div class="option-header">
<h3 class="option-name"><a href="#option-distance">distance</a></h3>
<dl>
<dt class="option-type-label">Type:</dt>
<dd class="option-type">Integer</dd>
<dt class="option-default-label">Default:</dt>
<dd class="option-default">0</dd>
</dl>
</div>
<div class="option-description">
<p>Tolerance, in pixels, for when selecting should start. If specified, selecting will not start until after mouse is dragged beyond distance.</p>
</div>
<div class="option-examples">
<h4>Code examples</h4>
<dl class="option-examples-list">
<dt>
Initialize a selectable with the <code>distance</code> option specified.
</dt>
<dd>
<pre><code>$( ".selector" ).selectable({ distance: 20 });</code></pre>
</dd>
<dt>
Get or set the <code>distance</code> option, after init.
</dt>
<dd>
<pre><code>//getter
var distance = $( ".selector" ).selectable( "option", "distance" );
//setter
$( ".selector" ).selectable( "option", "distance", 20 );</code></pre>
</dd>
</dl>
</div>
</li>
<li class="option" id="option-filter">
<div class="option-header">
<h3 class="option-name"><a href="#option-filter">filter</a></h3>
<dl>
<dt class="option-type-label">Type:</dt>
<dd class="option-type">Selector</dd>
<dt class="option-default-label">Default:</dt>
<dd class="option-default">'*'</dd>
</dl>
</div>
<div class="option-description">
<p>The matching child elements will be made selectees (able to be selected).</p>
</div>
<div class="option-examples">
<h4>Code examples</h4>
<dl class="option-examples-list">
<dt>
Initialize a selectable with the <code>filter</code> option specified.
</dt>
<dd>
<pre><code>$( ".selector" ).selectable({ filter: 'li' });</code></pre>
</dd>
<dt>
Get or set the <code>filter</code> option, after init.
</dt>
<dd>
<pre><code>//getter
var filter = $( ".selector" ).selectable( "option", "filter" );
//setter
$( ".selector" ).selectable( "option", "filter", 'li' );</code></pre>
</dd>
</dl>
</div>
</li>
<li class="option" id="option-tolerance">
<div class="option-header">
<h3 class="option-name"><a href="#option-tolerance">tolerance</a></h3>
<dl>
<dt class="option-type-label">Type:</dt>
<dd class="option-type">String</dd>
<dt class="option-default-label">Default:</dt>
<dd class="option-default">'touch'</dd>
</dl>
</div>
<div class="option-description">
<p>Possible values: 'touch', 'fit'.
</p>
<ul>
<li><b>fit</b>: draggable overlaps the droppable entirely</li>
<li><b>touch</b>: draggable overlaps the droppable any amount</li>
</ul>
<p></p>
</div>
<div class="option-examples">
<h4>Code examples</h4>
<dl class="option-examples-list">
<dt>
Initialize a selectable with the <code>tolerance</code> option specified.
</dt>
<dd>
<pre><code>$( ".selector" ).selectable({ tolerance: 'fit' });</code></pre>
</dd>
<dt>
Get or set the <code>tolerance</code> option, after init.
</dt>
<dd>
<pre><code>//getter
var tolerance = $( ".selector" ).selectable( "option", "tolerance" );
//setter
$( ".selector" ).selectable( "option", "tolerance", 'fit' );</code></pre>
</dd>
</dl>
</div>
</li>
</ul>
</div>
<div id="events">
<h2 class="top-header">Events</h2>
<ul class="events-list">
<li class="event" id="event-create">
<div class="event-header">
<h3 class="event-name"><a href="#event-create">create</a></h3>
<dl>
<dt class="event-type-label">Type:</dt>
<dd class="event-type">selectablecreate</dd>
</dl>
</div>
<div class="event-description">
<p>This event is triggered when selectable is created.</p>
</div>
<div class="event-examples">
<h4>Code examples</h4>
<dl class="event-examples-list">
<dt>
Supply a callback function to handle the <code>create</code> event as an init option.
</dt>
<dd>
<pre><code>$( ".selector" ).selectable({
create: function(event, ui) { ... }
});</code></pre>
</dd>
<dt>
Bind to the <code>create</code> event by type: <code>selectablecreate</code>.
</dt>
<dd>
<pre><code>$( ".selector" ).bind( "selectablecreate", function(event, ui) {
...
});</code></pre>
</dd>
</dl>
</div>
</li>
<li class="event" id="event-selected">
<div class="event-header">
<h3 class="event-name"><a href="#event-selected">selected</a></h3>
<dl>
<dt class="event-type-label">Type:</dt>
<dd class="event-type">selectableselected</dd>
</dl>
</div>
<div class="event-description">
<p>This event is triggered at the end of the select operation, on each element added to the selection.</p>
</div>
<div class="event-examples">
<h4>Code examples</h4>
<dl class="event-examples-list">
<dt>
Supply a callback function to handle the <code>selected</code> event as an init option.
</dt>
<dd>
<pre><code>$( ".selector" ).selectable({
selected: function(event, ui) { ... }
});</code></pre>
</dd>
<dt>
Bind to the <code>selected</code> event by type: <code>selectableselected</code>.
</dt>
<dd>
<pre><code>$( ".selector" ).bind( "selectableselected", function(event, ui) {
...
});</code></pre>
</dd>
</dl>
</div>
</li>
<li class="event" id="event-selecting">
<div class="event-header">
<h3 class="event-name"><a href="#event-selecting">selecting</a></h3>
<dl>
<dt class="event-type-label">Type:</dt>
<dd class="event-type">selectableselecting</dd>
</dl>
</div>
<div class="event-description">
<p>This event is triggered during the select operation, on each element added to the selection.</p>
</div>
<div class="event-examples">
<h4>Code examples</h4>
<dl class="event-examples-list">
<dt>
Supply a callback function to handle the <code>selecting</code> event as an init option.
</dt>
<dd>
<pre><code>$( ".selector" ).selectable({
selecting: function(event, ui) { ... }
});</code></pre>
</dd>
<dt>
Bind to the <code>selecting</code> event by type: <code>selectableselecting</code>.
</dt>
<dd>
<pre><code>$( ".selector" ).bind( "selectableselecting", function(event, ui) {
...
});</code></pre>
</dd>
</dl>
</div>
</li>
<li class="event" id="event-start">
<div class="event-header">
<h3 class="event-name"><a href="#event-start">start</a></h3>
<dl>
<dt class="event-type-label">Type:</dt>
<dd class="event-type">selectablestart</dd>
</dl>
</div>
<div class="event-description">
<p>This event is triggered at the beginning of the select operation.</p>
</div>
<div class="event-examples">
<h4>Code examples</h4>
<dl class="event-examples-list">
<dt>
Supply a callback function to handle the <code>start</code> event as an init option.
</dt>
<dd>
<pre><code>$( ".selector" ).selectable({
start: function(event, ui) { ... }
});</code></pre>
</dd>
<dt>
Bind to the <code>start</code> event by type: <code>selectablestart</code>.
</dt>
<dd>
<pre><code>$( ".selector" ).bind( "selectablestart", function(event, ui) {
...
});</code></pre>
</dd>
</dl>
</div>
</li>
<li class="event" id="event-stop">
<div class="event-header">
<h3 class="event-name"><a href="#event-stop">stop</a></h3>
<dl>
<dt class="event-type-label">Type:</dt>
<dd class="event-type">selectablestop</dd>
</dl>
</div>
<div class="event-description">
<p>This event is triggered at the end of the select operation.</p>
</div>
<div class="event-examples">
<h4>Code examples</h4>
<dl class="event-examples-list">
<dt>
Supply a callback function to handle the <code>stop</code> event as an init option.
</dt>
<dd>
<pre><code>$( ".selector" ).selectable({
stop: function(event, ui) { ... }
});</code></pre>
</dd>
<dt>
Bind to the <code>stop</code> event by type: <code>selectablestop</code>.
</dt>
<dd>
<pre><code>$( ".selector" ).bind( "selectablestop", function(event, ui) {
...
});</code></pre>
</dd>
</dl>
</div>
</li>
<li class="event" id="event-unselected">
<div class="event-header">
<h3 class="event-name"><a href="#event-unselected">unselected</a></h3>
<dl>
<dt class="event-type-label">Type:</dt>
<dd class="event-type">selectableunselected</dd>
</dl>
</div>
<div class="event-description">
<p>This event is triggered at the end of the select operation, on each element removed from the selection.</p>
</div>
<div class="event-examples">
<h4>Code examples</h4>
<dl class="event-examples-list">
<dt>
Supply a callback function to handle the <code>unselected</code> event as an init option.
</dt>
<dd>
<pre><code>$( ".selector" ).selectable({
unselected: function(event, ui) { ... }
});</code></pre>
</dd>
<dt>
Bind to the <code>unselected</code> event by type: <code>selectableunselected</code>.
</dt>
<dd>
<pre><code>$( ".selector" ).bind( "selectableunselected", function(event, ui) {
...
});</code></pre>
</dd>
</dl>
</div>
</li>
<li class="event" id="event-unselecting">
<div class="event-header">
<h3 class="event-name"><a href="#event-unselecting">unselecting</a></h3>
<dl>
<dt class="event-type-label">Type:</dt>
<dd class="event-type">selectableunselecting</dd>
</dl>
</div>
<div class="event-description">
<p>This event is triggered during the select operation, on each element removed from the selection.</p>
</div>
<div class="event-examples">
<h4>Code examples</h4>
<dl class="event-examples-list">
<dt>
Supply a callback function to handle the <code>unselecting</code> event as an init option.
</dt>
<dd>
<pre><code>$( ".selector" ).selectable({
unselecting: function(event, ui) { ... }
});</code></pre>
</dd>
<dt>
Bind to the <code>unselecting</code> event by type: <code>selectableunselecting</code>.
</dt>
<dd>
<pre><code>$( ".selector" ).bind( "selectableunselecting", function(event, ui) {
...
});</code></pre>
</dd>
</dl>
</div>
</li>
</ul>
</div>
<div id="methods">
<h2 class="top-header">Methods</h2>
<ul class="methods-list">
<li class="method" id="method-destroy">
<div class="method-header">
<h3 class="method-name"><a href="#method-destroy">destroy</a></h3>
<dl>
<dt class="method-signature-label">Signature:</dt>
<dd class="method-signature">.selectable( "destroy"
)</dd>
</dl>
</div>
<div class="method-description">
<p>Remove the selectable functionality completely. This will return the element back to its pre-init state.</p>
</div>
</li>
<li class="method" id="method-disable">
<div class="method-header">
<h3 class="method-name"><a href="#method-disable">disable</a></h3>
<dl>
<dt class="method-signature-label">Signature:</dt>
<dd class="method-signature">.selectable( "disable"
)</dd>
</dl>
</div>
<div class="method-description">
<p>Disable the selectable.</p>
</div>
</li>
<li class="method" id="method-enable">
<div class="method-header">
<h3 class="method-name"><a href="#method-enable">enable</a></h3>
<dl>
<dt class="method-signature-label">Signature:</dt>
<dd class="method-signature">.selectable( "enable"
)</dd>
</dl>
</div>
<div class="method-description">
<p>Enable the selectable.</p>
</div>
</li>
<li class="method" id="method-option">
<div class="method-header">
<h3 class="method-name"><a href="#method-option">option</a></h3>
<dl>
<dt class="method-signature-label">Signature:</dt>
<dd class="method-signature">.selectable( "option"
, optionName
, <span class="optional">[</span>value<span class="optional">] </span>
)</dd>
</dl>
</div>
<div class="method-description">
<p>Get or set any selectable option. If no value is specified, will act as a getter.</p>
</div>
</li>
<li class="method" id="method-option">
<div class="method-header">
<h3 class="method-name"><a href="#method-option">option</a></h3>
<dl>
<dt class="method-signature-label">Signature:</dt>
<dd class="method-signature">.selectable( "option"
, options
)</dd>
</dl>
</div>
<div class="method-description">
<p>Set multiple selectable options at once by providing an options object.</p>
</div>
</li>
<li class="method" id="method-widget">
<div class="method-header">
<h3 class="method-name"><a href="#method-widget">widget</a></h3>
<dl>
<dt class="method-signature-label">Signature:</dt>
<dd class="method-signature">.selectable( "widget"
)</dd>
</dl>
</div>
<div class="method-description">
<p>Returns the .ui-selectable element.</p>
</div>
</li>
<li class="method" id="method-refresh">
<div class="method-header">
<h3 class="method-name"><a href="#method-refresh">refresh</a></h3>
<dl>
<dt class="method-signature-label">Signature:</dt>
<dd class="method-signature">.selectable( "refresh"
)</dd>
</dl>
</div>
<div class="method-description">
<p>Refresh the position and size of each selectee element. This method can be used to manually recalculate the position and size of each selectee element. Very useful if autoRefresh is set to false.</p>
</div>
</li>
</ul>
</div>
<div id="theming">
<h2 class="top-header">Theming</h2>
<p>The jQuery UI Selectable plugin uses the jQuery UI CSS Framework to style its look and feel, including colors and background textures. We recommend using the ThemeRoller tool to create and download custom themes that are easy to build and maintain.
</p>
<p>If a deeper level of customization is needed, there are widget-specific classes referenced within the jquery.ui.selectable.css stylesheet that can be modified. These classes are highlighed in bold below.
</p>
<h3>Sample markup with jQuery UI CSS Framework classes</h3>
<ul class="<strong>ui-selectable</strong>"><br />
   <li class="<strong>ui-selectee</strong>"></li><br />
   <li class="<strong>ui-selectee</strong>"></li><br />
   <li class="<strong>ui-selectee</strong>"></li><br />
</ul>
<p class="theme-note">
<strong>
Note: This is a sample of markup generated by the selectable plugin, not markup you should use to create a selectable. The only markup needed for that is <br /><ul><br />
   <li></li><br />
   <li></li><br />
   <li></li><br />
</ul>.
</strong>
</p>
</div>
</div>
</p><!--
Pre-expand include size: 34703 bytes
Post-expand include size: 54220 bytes
Template argument size: 27222 bytes
Maximum: 2097152 bytes
-->
<!-- Saved in parser cache with key jqdocs_docs:pcache:idhash:3771-1!1!0!!en!2 and timestamp 20110413160311 -->
| csgf/myjobs-portlet | web/ui/development-bundle/docs/selectable.html | HTML | apache-2.0 | 22,157 |
Thanks for registering! | mromanoff/equifit | public/apps/equifit/bower_components/backbone-forms/examples/register-form-custom-template/submit.html | HTML | mit | 23 |
<!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_79) on Mon Jun 01 05:18:47 EDT 2015 -->
<title>net.majorkernelpanic.streaming.hw Class Hierarchy</title>
<meta name="date" content="2015-06-01">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="net.majorkernelpanic.streaming.hw Class Hierarchy";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li>Class</li>
<li class="navBarCell1Rev">Tree</li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../net/majorkernelpanic/streaming/gl/package-tree.html">Prev</a></li>
<li><a href="../../../../net/majorkernelpanic/streaming/mp4/package-tree.html">Next</a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?net/majorkernelpanic/streaming/hw/package-tree.html" target="_top">Frames</a></li>
<li><a href="package-tree.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h1 class="title">Hierarchy For Package net.majorkernelpanic.streaming.hw</h1>
<span class="strong">Package Hierarchies:</span>
<ul class="horizontal">
<li><a href="../../../../overview-tree.html">All Packages</a></li>
</ul>
</div>
<div class="contentContainer">
<h2 title="Class Hierarchy">Class Hierarchy</h2>
<ul>
<li type="circle">java.lang.Object
<ul>
<li type="circle">net.majorkernelpanic.streaming.hw.<a href="../../../../net/majorkernelpanic/streaming/hw/CodecManager.html" title="class in net.majorkernelpanic.streaming.hw"><span class="strong">CodecManager</span></a></li>
<li type="circle">net.majorkernelpanic.streaming.hw.<a href="../../../../net/majorkernelpanic/streaming/hw/EncoderDebugger.html" title="class in net.majorkernelpanic.streaming.hw"><span class="strong">EncoderDebugger</span></a></li>
<li type="circle">net.majorkernelpanic.streaming.hw.<a href="../../../../net/majorkernelpanic/streaming/hw/NV21Convertor.html" title="class in net.majorkernelpanic.streaming.hw"><span class="strong">NV21Convertor</span></a></li>
</ul>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li>Class</li>
<li class="navBarCell1Rev">Tree</li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../net/majorkernelpanic/streaming/gl/package-tree.html">Prev</a></li>
<li><a href="../../../../net/majorkernelpanic/streaming/mp4/package-tree.html">Next</a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?net/majorkernelpanic/streaming/hw/package-tree.html" target="_top">Frames</a></li>
<li><a href="package-tree.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>
| mrtensai/sosapp | libstreaming/doc/net/majorkernelpanic/streaming/hw/package-tree.html | HTML | mit | 4,910 |
<html xmlns:wicket>
<body>
<a href="../../myImage.gif">mein Label</a>
<a href="/myImage.gif">mein Label</a>
</body>
</html>
| topicusonderwijs/wicket | wicket-core/src/test/java/org/apache/wicket/markup/parser/PageExpectedResult_1.html | HTML | apache-2.0 | 128 |
<!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_26) on Thu Nov 08 03:57:19 PST 2012 -->
<TITLE>
com.intel.hadoop.graphbuilder.partition.mapreduce.edge
</TITLE>
<META NAME="date" CONTENT="2012-11-08">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="com.intel.hadoop.graphbuilder.partition.mapreduce.edge";
}
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<HR>
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Package</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-use.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../../com/intel/hadoop/graphbuilder/parser/package-summary.html"><B>PREV PACKAGE</B></A>
<A HREF="../../../../../../../com/intel/hadoop/graphbuilder/partition/mapreduce/keyvalue/package-summary.html"><B>NEXT PACKAGE</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../../index.html?com/intel/hadoop/graphbuilder/partition/mapreduce/edge/package-summary.html" target="_top"><B>FRAMES</B></A>
<A HREF="package-summary.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<H2>
Package com.intel.hadoop.graphbuilder.partition.mapreduce.edge
</H2>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Class Summary</B></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD WIDTH="15%"><B><A HREF="../../../../../../../com/intel/hadoop/graphbuilder/partition/mapreduce/edge/EdgeIngressCombiner.html" title="class in com.intel.hadoop.graphbuilder.partition.mapreduce.edge">EdgeIngressCombiner<KeyType extends IngressKeyType,ValType extends IngressValueType></A></B></TD>
<TD>Combines intermediate IngressValues.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD WIDTH="15%"><B><A HREF="../../../../../../../com/intel/hadoop/graphbuilder/partition/mapreduce/edge/EdgeIngressMapper.html" title="class in com.intel.hadoop.graphbuilder.partition.mapreduce.edge">EdgeIngressMapper<VidType extends WritableComparable<VidType>,VertexData extends Writable,EdgeData extends Writable,KeyType extends IngressKeyType<VidType>,ValueType extends IngressValueType<VidType,VertexData,EdgeData>></A></B></TD>
<TD>This mapper class maps edge and vertex list into intermediate key, value
pairs.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD WIDTH="15%"><B><A HREF="../../../../../../../com/intel/hadoop/graphbuilder/partition/mapreduce/edge/EdgeIngressMR.html" title="class in com.intel.hadoop.graphbuilder.partition.mapreduce.edge">EdgeIngressMR</A></B></TD>
<TD>The MapRedue class takes from input directory a list of edges and vertices,
and output 2 parts: partitioned graphs and a list of distributed vertex
records.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD WIDTH="15%"><B><A HREF="../../../../../../../com/intel/hadoop/graphbuilder/partition/mapreduce/edge/EdgeIngressReducer.html" title="class in com.intel.hadoop.graphbuilder.partition.mapreduce.edge">EdgeIngressReducer<VidType extends WritableComparable<VidType>,VertexData extends Writable,EdgeData extends Writable,KeyType extends IngressKeyType<VidType>,ValueType extends IngressValueType<VidType,VertexData,EdgeData>></A></B></TD>
<TD>This reduce task has 2 subroutines: edges are reduced into a <code>Graph</code>
and vertices are reduced into <code>VertexRecord</code>.</TD>
</TR>
</TABLE>
<P>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Enum Summary</B></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD WIDTH="15%"><B><A HREF="../../../../../../../com/intel/hadoop/graphbuilder/partition/mapreduce/edge/EdgeIngressMR.COUNTER.html" title="enum in com.intel.hadoop.graphbuilder.partition.mapreduce.edge">EdgeIngressMR.COUNTER</A></B></TD>
<TD>MapReduce Job Counters.</TD>
</TR>
</TABLE>
<P>
<DL>
</DL>
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Package</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-use.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../../com/intel/hadoop/graphbuilder/parser/package-summary.html"><B>PREV PACKAGE</B></A>
<A HREF="../../../../../../../com/intel/hadoop/graphbuilder/partition/mapreduce/keyvalue/package-summary.html"><B>NEXT PACKAGE</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../../index.html?com/intel/hadoop/graphbuilder/partition/mapreduce/edge/package-summary.html" target="_top"><B>FRAMES</B></A>
<A HREF="package-summary.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
</BODY>
</HTML>
| drtobbe/graphbuilder | doc/com/intel/hadoop/graphbuilder/partition/mapreduce/edge/package-summary.html | HTML | apache-2.0 | 9,091 |
<!DOCTYPE html>
<!-- DO NOT EDIT! Generated by `common/security-features/tools/generate.py --spec referrer-policy/` -->
<html>
<head>
<meta charset="utf-8">
<meta name="timeout" content="long">
<meta name="referrer" content="unsafe-url">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/common/security-features/resources/common.sub.js"></script>
<script src="../../../generic/test-case.sub.js"></script>
</head>
<body>
<script>
TestCase(
[
{
"expectation": "origin",
"origin": "cross-http",
"redirection": "keep-origin",
"source_context_list": [
{
"policyDeliveries": [
{
"deliveryType": "meta",
"key": "referrerPolicy",
"value": "strict-origin"
}
],
"sourceContextType": "iframe"
}
],
"source_scheme": "http",
"subresource": "xhr",
"subresource_policy_deliveries": [],
"test_description": "Referrer Policy: Expects origin for xhr to cross-http origin and keep-origin redirection from http context."
},
{
"expectation": "origin",
"origin": "cross-http",
"redirection": "no-redirect",
"source_context_list": [
{
"policyDeliveries": [
{
"deliveryType": "meta",
"key": "referrerPolicy",
"value": "strict-origin"
}
],
"sourceContextType": "iframe"
}
],
"source_scheme": "http",
"subresource": "xhr",
"subresource_policy_deliveries": [],
"test_description": "Referrer Policy: Expects origin for xhr to cross-http origin and no-redirect redirection from http context."
},
{
"expectation": "origin",
"origin": "cross-http",
"redirection": "swap-origin",
"source_context_list": [
{
"policyDeliveries": [
{
"deliveryType": "meta",
"key": "referrerPolicy",
"value": "strict-origin"
}
],
"sourceContextType": "iframe"
}
],
"source_scheme": "http",
"subresource": "xhr",
"subresource_policy_deliveries": [],
"test_description": "Referrer Policy: Expects origin for xhr to cross-http origin and swap-origin redirection from http context."
},
{
"expectation": "origin",
"origin": "cross-https",
"redirection": "keep-origin",
"source_context_list": [
{
"policyDeliveries": [
{
"deliveryType": "meta",
"key": "referrerPolicy",
"value": "strict-origin"
}
],
"sourceContextType": "iframe"
}
],
"source_scheme": "http",
"subresource": "xhr",
"subresource_policy_deliveries": [],
"test_description": "Referrer Policy: Expects origin for xhr to cross-https origin and keep-origin redirection from http context."
},
{
"expectation": "origin",
"origin": "cross-https",
"redirection": "no-redirect",
"source_context_list": [
{
"policyDeliveries": [
{
"deliveryType": "meta",
"key": "referrerPolicy",
"value": "strict-origin"
}
],
"sourceContextType": "iframe"
}
],
"source_scheme": "http",
"subresource": "xhr",
"subresource_policy_deliveries": [],
"test_description": "Referrer Policy: Expects origin for xhr to cross-https origin and no-redirect redirection from http context."
},
{
"expectation": "origin",
"origin": "cross-https",
"redirection": "swap-origin",
"source_context_list": [
{
"policyDeliveries": [
{
"deliveryType": "meta",
"key": "referrerPolicy",
"value": "strict-origin"
}
],
"sourceContextType": "iframe"
}
],
"source_scheme": "http",
"subresource": "xhr",
"subresource_policy_deliveries": [],
"test_description": "Referrer Policy: Expects origin for xhr to cross-https origin and swap-origin redirection from http context."
},
{
"expectation": "origin",
"origin": "same-http",
"redirection": "keep-origin",
"source_context_list": [
{
"policyDeliveries": [
{
"deliveryType": "meta",
"key": "referrerPolicy",
"value": "strict-origin"
}
],
"sourceContextType": "iframe"
}
],
"source_scheme": "http",
"subresource": "xhr",
"subresource_policy_deliveries": [],
"test_description": "Referrer Policy: Expects origin for xhr to same-http origin and keep-origin redirection from http context."
},
{
"expectation": "origin",
"origin": "same-http",
"redirection": "no-redirect",
"source_context_list": [
{
"policyDeliveries": [
{
"deliveryType": "meta",
"key": "referrerPolicy",
"value": "strict-origin"
}
],
"sourceContextType": "iframe"
}
],
"source_scheme": "http",
"subresource": "xhr",
"subresource_policy_deliveries": [],
"test_description": "Referrer Policy: Expects origin for xhr to same-http origin and no-redirect redirection from http context."
},
{
"expectation": "origin",
"origin": "same-http",
"redirection": "swap-origin",
"source_context_list": [
{
"policyDeliveries": [
{
"deliveryType": "meta",
"key": "referrerPolicy",
"value": "strict-origin"
}
],
"sourceContextType": "iframe"
}
],
"source_scheme": "http",
"subresource": "xhr",
"subresource_policy_deliveries": [],
"test_description": "Referrer Policy: Expects origin for xhr to same-http origin and swap-origin redirection from http context."
},
{
"expectation": "origin",
"origin": "same-https",
"redirection": "keep-origin",
"source_context_list": [
{
"policyDeliveries": [
{
"deliveryType": "meta",
"key": "referrerPolicy",
"value": "strict-origin"
}
],
"sourceContextType": "iframe"
}
],
"source_scheme": "http",
"subresource": "xhr",
"subresource_policy_deliveries": [],
"test_description": "Referrer Policy: Expects origin for xhr to same-https origin and keep-origin redirection from http context."
},
{
"expectation": "origin",
"origin": "same-https",
"redirection": "no-redirect",
"source_context_list": [
{
"policyDeliveries": [
{
"deliveryType": "meta",
"key": "referrerPolicy",
"value": "strict-origin"
}
],
"sourceContextType": "iframe"
}
],
"source_scheme": "http",
"subresource": "xhr",
"subresource_policy_deliveries": [],
"test_description": "Referrer Policy: Expects origin for xhr to same-https origin and no-redirect redirection from http context."
},
{
"expectation": "origin",
"origin": "same-https",
"redirection": "swap-origin",
"source_context_list": [
{
"policyDeliveries": [
{
"deliveryType": "meta",
"key": "referrerPolicy",
"value": "strict-origin"
}
],
"sourceContextType": "iframe"
}
],
"source_scheme": "http",
"subresource": "xhr",
"subresource_policy_deliveries": [],
"test_description": "Referrer Policy: Expects origin for xhr to same-https origin and swap-origin redirection from http context."
}
],
new SanityChecker()
).start();
</script>
<div id="log"></div>
</body>
</html>
| scheib/chromium | third_party/blink/web_tests/external/wpt/referrer-policy/gen/iframe.meta/strict-origin/xhr.http.html | HTML | bsd-3-clause | 9,832 |
<div class="col-lg-3 col-md-6">
<div class="panel panel-{{colour}}">
<div class="panel-heading">
<div class="row">
<div class="col-xs-3">
<i class="fa fa-{{type}} fa-5x"></i>
</div>
<div class="col-xs-9 text-right">
<div class="huge">{{number}}</div>
<div>{{comments}}</div>
</div>
</div>
</div>
<a href="#">
<div class="panel-footer">
<span class="pull-left">View Details</span>
<span class="pull-right"><i class="fa fa-arrow-circle-right"></i></span>
<div class="clearfix"></div>
</div>
</a>
</div>
</div> | vcarreno96/directives-demo | public/app/scripts/directives/dashboard/stats/stats.html | HTML | mit | 767 |
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Example - example-example89-jquery</title>
<script src="../../components/jquery-2.1.1/jquery.js"></script>
<script src="../../../angular.js"></script>
<script src="script.js"></script>
</head>
<body ng-app="dragModule">
<span my-draggable>Drag ME</span>
</body>
</html> | petervyvey/portfolio | webkit/app/vendor/angular/lib/docs/examples/example-example89/index-jquery.html | HTML | mit | 364 |
<html>
<body>
<canvas id="c"></canvas>
<script>
var canvas = document.getElementById("c");
canvas.setAttribute("width", "250");
canvas.setAttribute("height", "200");
var ctx = canvas.getContext("2d");
ctx.fillStyle = 'green';
ctx.fillRect(0, 0, 100, 100);
ctx.fillRect(120, 0, 150, 150);
</script>
<p>Two green squares with no color bleeding should be visible.</p>
</body>
</html>
| modulexcite/blink | LayoutTests/fast/canvas/canvas-createImageBitmap-colorClamping-expected.html | HTML | bsd-3-clause | 382 |
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>is_const</title>
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
<link rel="home" href="../../index.html" title="Chapter 1. Boost.TypeTraits">
<link rel="up" href="../reference.html" title="Alphabetical Reference">
<link rel="prev" href="is_compound.html" title="is_compound">
<link rel="next" href="is_convertible.html" title="is_convertible">
</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="is_compound.html"><img src="../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../reference.html"><img src="../../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="is_convertible.html"><img src="../../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
<div class="section">
<div class="titlepage"><div><div><h3 class="title">
<a name="boost_typetraits.reference.is_const"></a><a class="link" href="is_const.html" title="is_const">is_const</a>
</h3></div></div></div>
<pre class="programlisting"><span class="keyword">template</span> <span class="special"><</span><span class="keyword">class</span> <span class="identifier">T</span><span class="special">></span>
<span class="keyword">struct</span> <span class="identifier">is_const</span> <span class="special">:</span> <span class="keyword">public</span> <em class="replaceable"><code><a class="link" href="integral_constant.html" title="integral_constant">true_type</a>-or-<a class="link" href="integral_constant.html" title="integral_constant">false_type</a></code></em> <span class="special">{};</span>
</pre>
<p>
<span class="bold"><strong>Inherits:</strong></span> If T is a (top level) const-qualified
type then inherits from <a class="link" href="integral_constant.html" title="integral_constant">true_type</a>,
otherwise inherits from <a class="link" href="integral_constant.html" title="integral_constant">false_type</a>.
</p>
<p>
<span class="bold"><strong>C++ Standard Reference:</strong></span> 3.9.3.
</p>
<p>
<span class="bold"><strong>Header:</strong></span> <code class="computeroutput"> <span class="preprocessor">#include</span>
<span class="special"><</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">type_traits</span><span class="special">/</span><span class="identifier">is_const</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">></span></code>
or <code class="computeroutput"> <span class="preprocessor">#include</span> <span class="special"><</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">type_traits</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">></span></code>
</p>
<p>
<span class="bold"><strong>Examples:</strong></span>
</p>
<div class="blockquote"><blockquote class="blockquote"><p>
<code class="computeroutput"><span class="identifier">is_const</span><span class="special"><</span><span class="keyword">int</span> <span class="keyword">const</span><span class="special">></span></code> inherits from <code class="computeroutput"><a class="link" href="integral_constant.html" title="integral_constant">true_type</a></code>.
</p></blockquote></div>
<div class="blockquote"><blockquote class="blockquote"><p>
<code class="computeroutput"><span class="identifier">is_const</span><span class="special"><</span><span class="keyword">int</span> <span class="keyword">const</span> <span class="keyword">volatile</span><span class="special">>::</span><span class="identifier">type</span></code> is the type <code class="computeroutput"><a class="link" href="integral_constant.html" title="integral_constant">true_type</a></code>.
</p></blockquote></div>
<div class="blockquote"><blockquote class="blockquote"><p>
<code class="computeroutput"><span class="identifier">is_const</span><span class="special"><</span><span class="keyword">int</span><span class="special">*</span> <span class="keyword">const</span><span class="special">>::</span><span class="identifier">value</span></code>
is an integral constant expression that evaluates to <span class="emphasis"><em>true</em></span>.
</p></blockquote></div>
<div class="blockquote"><blockquote class="blockquote"><p>
<code class="computeroutput"><span class="identifier">is_const</span><span class="special"><</span><span class="keyword">int</span> <span class="keyword">const</span><span class="special">*>::</span><span class="identifier">value</span></code>
is an integral constant expression that evaluates to <span class="emphasis"><em>false</em></span>:
the const-qualifier is not at the top level in this case.
</p></blockquote></div>
<div class="blockquote"><blockquote class="blockquote"><p>
<code class="computeroutput"><span class="identifier">is_const</span><span class="special"><</span><span class="keyword">int</span> <span class="keyword">const</span><span class="special">&>::</span><span class="identifier">value</span></code>
is an integral constant expression that evaluates to <span class="emphasis"><em>false</em></span>:
the const-qualifier is not at the top level in this case.
</p></blockquote></div>
<div class="blockquote"><blockquote class="blockquote"><p>
<code class="computeroutput"><span class="identifier">is_const</span><span class="special"><</span><span class="keyword">int</span><span class="special">>::</span><span class="identifier">value</span></code> is an integral constant expression
that evaluates to <span class="emphasis"><em>false</em></span>.
</p></blockquote></div>
<div class="blockquote"><blockquote class="blockquote"><p>
<code class="computeroutput"><span class="identifier">is_const</span><span class="special"><</span><span class="identifier">T</span><span class="special">>::</span><span class="identifier">value_type</span></code> is the type <code class="computeroutput"><span class="keyword">bool</span></code>.
</p></blockquote></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 © 2000, 2011 Adobe Systems Inc, David Abrahams,
Frederic Bron, Steve Cleary, Beman Dawes, Aleksey Gurtovoy, Howard Hinnant,
Jesse Jones, Mat Marcus, Itay Maman, John Maddock, Alexander Nasonov, Thorsten
Ottosen, Roman Perepelitsa, Robert Ramey, Jeremy Siek, Robert Stewart and 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="is_compound.html"><img src="../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../reference.html"><img src="../../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="is_convertible.html"><img src="../../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
</body>
</html>
| rkq/cxxexp | third-party/src/boost_1_56_0/libs/type_traits/doc/html/boost_typetraits/reference/is_const.html | HTML | mit | 8,436 |
<!DOCTYPE html>
<!--
Copyright (c) 2014 Intel Corporation.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
* Redistributions of works must retain the original copyright notice, this list
of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the original copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name of Intel Corporation nor the names of its contributors
may be used to endorse or promote products derived from this work without
specific prior written permission.
THIS SOFTWARE IS PROVIDED BY INTEL CORPORATION "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL INTEL CORPORATION BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Authors:
Cao, Jun <[email protected]>
-->
<html>
<head>
<title>WebGL Test: webglrenderingcontext_BLEND_EQUATION_ALPHA_value</title>
<link rel="author" title="Intel" href="http://www.intel.com" />
<link rel="help" href="https://www.khronos.org/registry/webgl/specs/1.0/" />
<meta name="flags" content="" />
<meta name="assert" content="Check if WebGLRenderingContext.BLEND_EQUATION_ALPHA constant value is 0x883D"/>
<script src="../resources/testharness.js"></script>
<script src="../resources/testharnessreport.js"></script>
<script src="support/webgl.js"></script>
</head>
<body>
<div id="log"></div>
<canvas id="canvas" width="200" height="100" style="border:1px solid #c3c3c3;">
Your browser does not support the canvas element.
</canvas>
<script>
getwebgl();
webgl_constant_value(webgl, 'BLEND_EQUATION_ALPHA', 0x883D);
</script>
</body>
</html> | hgl888/web-testing-service | wts/tests/webgl/webglrenderingcontext_BLEND_EQUATION_ALPHA_value.html | HTML | bsd-3-clause | 2,390 |
<div class="box">
<div class="inner" align="center">
<div style="width: 240px; text-align: left" >
<span style="font-weight: bold; font-size: 10px; color: #e2e2e2;">Sponsored by</span>
<div class="sep10"></div>
{% if rnd|divisibleby:3 %}
<a href="http://itunes.apple.com/us/app/60-seconds/id349845481?mt=8" target="_blank"><img src="http://web.me.com/luokai/resource/60Seconds_120x90.png" border="0" width="120" height="90" alt="60 Seconds!" /></a>
<div class="sep5"></div>
<span style="font-size: 11px; color: #666;">
<strong style="color: #000;"><a href="http://itunes.apple.com/us/app/60-seconds/id349845481?mt=8" class="black">60 Seconds!</a></strong><div class="sep3"></div><span style="font-size: 12px;">A game about challenging yourself!</span>
</span>
{% else %}
{% if rnd|divisibleby:2 %}
<a href="http://itunes.apple.com/us/app/style-clock/id353431465?mt=8" target="_blank"><img src="http://web.me.com/luokai/resource/StyleClock_animation.gif" border="0" width="120" height="90" alt="Style Clock" /></a>
<div class="sep5"></div>
<span style="font-size: 11px; color: #666;">
<strong style="color: #000;"><a href="http://itunes.apple.com/us/app/style-clock/id353431465?mt=8" class="black">Style Clock</a></strong><div class="sep3"></div><span style="font-size: 12px;">A stylish table clock on your desktop.</span>
</span>
{% else %}
<a href="http://itunes.apple.com/us/app/chn-laws/id365686640?mt=8" target="_blank"><img src="http://web.me.com/luokai/resource/CHNLaws_120x90.png" border="0" width="120" height="90" alt="CHN Laws 中国常用法律" /></a>
<div class="sep5"></div>
<span style="font-size: 11px; color: #666;">
<strong style="color: #000;"><a href="http://itunes.apple.com/us/app/chn-laws/id365686640?mt=8" class="black">CHN Laws 中国常用法律</a></strong><div class="sep3"></div><span style="font-size: 12px;">这里收录最常用的中国法律。</span>
</span>
{% endif %}
{% endif %}
<div class="sep3"></div>
<small class="fade">Promoted by <a href="http://apps.luokai.info/" target="_blank">lK Design</a></small>
</div>
</div>
</div> | selboo/v2ex | tpl/desktop/rightbar/ads_lkdesign.html | HTML | bsd-3-clause | 2,404 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>CSS Exam - Task 1</title>
<link rel="stylesheet" href="main.css">
</head>
<body>
<div id="root">
<ul class="avengers">
<li>
<input type="radio" name="avengers[]" name="" id="avenger-1" checked>
<label for="avenger-1">Ironman</label>
<div class="preview">
<img src="images/avenger-1.jpg" alt="">
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Magnam illum dolorum, quisquam at voluptatum reprehenderit minima dolorem culpa corrupti veniam ipsam odit eum asperiores iusto facilis maiores eos, voluptas ducimus porro ipsum sequi eveniet in. Eum reprehenderit saepe aliquam mollitia, corporis delectus, quae ipsa nemo excepturi adipisci laboriosam velit necessitatibus eligendi sint porro. Repudiandae qui aut nostrum voluptatibus, temporibus in rerum natus voluptatum nulla, ad perspiciatis doloribus et itaque autem! Id quis veniam dolore maxime hic modi amet a eum soluta. Nam consequuntur, dolorem atque ullam sed sit. Rerum nesciunt tenetur quasi hic excepturi, cum accusamus! Sint impedit incidunt, quae?</p>
</div>
</li>
<li>
<input type="radio" name="avengers[]" name="" id="avenger-2">
<label for="avenger-2">Thor</label>
<div class="preview">
<img src="images/avenger-2.jpg" alt="">
<p>Animi illo, ipsum, saepe recusandae quas architecto sunt molestias, atque, temporibus adipisci quia laboriosam beatae quae. Animi illo, ipsam ex ullam suscipit totam, quasi magnam quidem accusantium alias voluptas quod beatae nemo aliquam, explicabo ut facere quam. Aspernatur libero cumque tenetur, nostrum, vel saepe ad illo labore aut necessitatibus accusamus quis harum voluptate sequi magni cupiditate recusandae. Eum nisi, tempore eius maiores animi. Et id, dignissimos neque quo a reiciendis, blanditiis delectus alias deserunt debitis, dolor tempora. Ducimus quae consequuntur qui libero, quos consequatur autem porro corporis ad, molestias soluta minus quod, repellat ratione. Porro repellat sint adipisci ipsa iure?</p>
</div>
</li>
<li>
<input type="radio" name="avengers[]" name="" id="avenger-3">
<label for="avenger-3">Black Widow</label>
<div class="preview">
<img src="images/avenger-3.jpg" alt="">
<p>Maxime ad expedita quisquam consectetur quidem dolore, id distinctio consequuntur minus cupiditate nulla reprehenderit commodi voluptatibus, illo quia quasi eum deserunt. Excepturi error, id, quidem, sint delectus dolor numquam nostrum hic ut magni laborum ipsam. Doloribus delectus accusantium consequuntur nemo, assumenda eos deleniti adipisci perferendis ipsum doloremque consectetur vitae. Facere dolorum facilis aliquid saepe numquam aperiam debitis ad architecto laborum magni impedit repudiandae quisquam eius, sapiente error quae neque nisi asperiores eum! Ipsa perferendis doloremque quisquam molestiae ab consequuntur fugiat dolores laboriosam possimus voluptate, eius placeat, quae magni nulla incidunt sit commodi quis accusantium, architecto fuga eum hic neque. Voluptatibus.</p>
</div>
</li>
<li>
<input type="radio" name="avengers[]" name="" id="avenger-4">
<label for="avenger-4">Captain America</label>
<div class="preview">
<img src="images/avenger-4.jpg" alt="">
<p>Quidem consectetur minus dolor harum natus repellendus! Repellendus eveniet nulla quo quasi odit mollitia, id et, culpa illo assumenda in possimus exercitationem voluptate placeat eaque iste ea velit. Facere pariatur quis vero, impedit quos dolorum voluptas dignissimos illo at esse aperiam amet necessitatibus et aut atque sint vitae repellendus, labore aliquid rerum eos consectetur placeat officiis. Nobis facilis, minus reiciendis sapiente alias nihil temporibus magnam dolorem mollitia odio ut, eaque omnis libero recusandae, incidunt esse. Adipisci sit, accusantium, impedit modi magni qui necessitatibus doloremque optio odit fugit, doloribus placeat! Dolores similique ut earum cum soluta, delectus culpa perspiciatis cumque repudiandae?</p>
</div>
</li>
<li>
<input type="radio" name="avengers[]" name="" id="avenger-5">
<label for="avenger-5">Hawkeye</label>
<div class="preview">
<img src="images/avenger-5.jpg" alt="">
<p>Hic odit consequatur vitae incidunt reiciendis dolores consequuntur at molestias pariatur. Ipsam dolores, minus saepe, tenetur consectetur dolorum eius. Quibusdam recusandae accusantium dolores soluta distinctio officia ipsa earum, impedit similique sapiente magnam non provident vero ducimus eius tempora aliquid debitis repellendus consequatur ipsum error odio, cumque est. Dolore odit mollitia harum, fugit vero odio molestiae corporis! Eveniet autem odit non quod dolores, est reiciendis totam aliquam assumenda consequatur omnis eligendi quaerat exercitationem tempora. Placeat aut minus distinctio? Voluptate libero voluptatum, architecto est, laboriosam quos ut sunt dicta vel esse. Cupiditate neque perferendis ab aliquam totam illum quia, perspiciatis, delectus laboriosam.</p>
</div>
</li>
<li>
<input type="radio" name="avengers[]" name="" id="avenger-6">
<label for="avenger-6">The Hulk</label>
<div class="preview">
<img src="images/avenger-6.jpg" alt="">
<p>Nemo sed totam recusandae officia aliquam voluptatum ea deserunt vel, voluptates, eum atque ipsum est doloribus nisi, libero culpa. Distinctio et quae nisi iusto error tenetur sequi reiciendis, ipsa commodi nobis itaque? Sapiente nihil sunt ipsam rem nemo aut veniam, totam distinctio neque, qui accusamus esse iusto animi illum soluta itaque voluptate quis, nesciunt possimus maxime corporis quos. Quia earum ducimus, molestias voluptates illo nam temporibus repellat facilis vero, modi culpa laudantium nulla recusandae explicabo nisi. Porro ex, doloribus vel temporibus, ducimus esse veritatis alias necessitatibus excepturi architecto quae explicabo, accusantium qui nihil maiores ipsa corporis. Aut magni asperiores voluptatem!</p>
</div>
</li>
</ul>
</div>
</body>
</html>
| shakuu/Homework | [CSS]-01-Basics/CSS-Exams/15-May-13-Exam-2/Task 1_Description/template/index.html | HTML | mit | 6,269 |
<!-- HTML header for doxygen 1.8.5-->
<!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.5"/>
<title>Fat-Free Framework: 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="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">Fat-Free Framework
 <span id="projectnumber">3.2.0</span>
 <span class="menu"><a href="index.html">Overview</a> <a href="annotated.html">Class List</a> <a href="hierarchy.html">Hierarchy</a></span>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.5 -->
</div><!-- top -->
<div class="contents">
 
<h3><a class="anchor" id="index_h"></a>- h -</h3><ul>
<li>hash()
: <a class="el" href="classBase.html#a235487fb89d2d6fa63375bdf6dfcd8f9">Base</a>
, <a class="el" href="classBcrypt.html#adfde3babee4bf0fce0c2e161204a9779">Bcrypt</a>
</li>
<li>height()
: <a class="el" href="classImage.html#a50738b4f19600b46c4db73c49d3ac0bf">Image</a>
</li>
<li>hflip()
: <a class="el" href="classImage.html#a32c2745c81acbed3f99e3198b7cc7f15">Image</a>
</li>
<li>highlight()
: <a class="el" href="classBase.html#a5ca3af2a18e2f828e1522f92446e1171">Base</a>
</li>
<li>hive()
: <a class="el" href="classBase.html#a78fdab7afe66dd894c3dee07681f3988">Base</a>
</li>
</ul>
</div><!-- contents -->
| nussland/bbs | www/api/lib/api/functions_func_0x68.html | HTML | mit | 1,972 |
<!DOCTYPE html>
<html>
<head>
<title>SVG sizing: <object></title>
<script src="../../../resources/testharness.js"></script>
<script src="../../../resources/testharnessreport.js"></script>
<style>
#testContainer {
position: absolute;
left: 0;
top: 0;
width: 800px;
height: 600px;
}
</style>
<link rel="help" href="http://www.w3.org/TR/CSS2/visudet.html#inline-replaced-width">
<link rel="help" href="http://www.w3.org/TR/CSS2/visudet.html#inline-replaced-height">
<link rel="help" href="http://www.whatwg.org/specs/web-apps/current-work/#replaced-elements">
<link rel="help" href="http://www.whatwg.org/specs/web-apps/current-work/#attr-dim-width">
<link rel="help" href="http://www.w3.org/TR/SVG/coords.html#ViewportSpace">
</head>
<body>
<div id="log"></div>
<div id="testContainer"></div>
<script src="svg-in-object.js"></script>
<script>testSVGInObjectWithPlaceholderHeightAttr(null)</script>
</body>
</html>
| vadimtk/chrome4sdp | third_party/WebKit/LayoutTests/svg/as-object/sizing/svg-in-object-placeholder-height-auto.html | HTML | bsd-3-clause | 1,041 |
<!DOCTYPE html>
<title>Shadow DOM: slotchange Events</title>
<meta name="author" title="Hayato Ito" href="mailto:[email protected]">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="resources/shadow-dom.js"></script>
<div id="test1">
<div id="host1">
<template data-mode="open">
<slot id="s1" name="slot1"></slot>
</template>
<div id="c1" slot="slot1"></div>
</div>
</div>
<script>
function arraysEqual(a, b) {
if (a === b) return true;
if (a == null || b == null) return false;
if (a.length !== b.length) return false;
for (var i = 0; i < a.length; ++i) {
if (a[i] !== b[i]) return false;
}
return true;
}
function doneIfSlotChange(slots, expectedAssignedNodes, test) {
let matched = Array(slots.length).fill(false);
for (let i=0; i<slots.length; i++) {
slots[i].addEventListener('slotchange', test.step_func((e) => {
matched[i] = arraysEqual(slots[i].assignedNodes(), expectedAssignedNodes[i]);
if (matched.every(v => v)) {
test.done();
}
}))
}
}
async_test((test) => {
let n = createTestTree(test1);
removeWhiteSpaceOnlyTextNodes(n.test1);
let d1 = document.createElement('div');
d1.setAttribute('slot', 'slot1');
doneIfSlotChange([n.s1], [[n.c1, d1]], test);
n.host1.appendChild(d1);
}, 'slotchange event: Append a child to a host.');
async_test((test) => {
let n = createTestTree(test1);
removeWhiteSpaceOnlyTextNodes(n.test1);
doneIfSlotChange([n.s1], [[]], test);
n.c1.remove();
}, 'slotchange event: Remove a child from a host.');
async_test((test) => {
let n = createTestTree(test1);
removeWhiteSpaceOnlyTextNodes(n.test1);
n.c1.remove();
doneIfSlotChange([n.s1], [[]], test);
}, 'slotchange event: Remove a child before adding an event listener.');
async_test((test) => {
let n = createTestTree(test1);
removeWhiteSpaceOnlyTextNodes(n.test1);
doneIfSlotChange([n.s1], [[]], test);
n.c1.setAttribute('slot', 'slot-none');
}, 'slotchange event: Change slot= attribute to make it un-assigned.');
async_test((test) => {
let n = createTestTree(test1);
removeWhiteSpaceOnlyTextNodes(n.test1);
doneIfSlotChange([n.s1], [[]], test);
n.s1.setAttribute('name', 'slot-none');
}, 'slotchange event: Change slot\'s name= attribute so that none is assigned.');
</script>
<div id="test2">
<div id="host1">
<template data-mode="open">
<slot id="s1" name="slot1"></slot>
</template>
<div id="c2" slot="slot2"></div>
</div>
</div>
<script>
async_test((test) => {
let n = createTestTree(test2);
removeWhiteSpaceOnlyTextNodes(n.test2);
doneIfSlotChange([n.s1], [[n.c2]], test);
n.c2.setAttribute('slot', 'slot1');
}, 'slotchange event: Change slot= attribute to make it assigned.');
async_test((test) => {
let n = createTestTree(test2);
removeWhiteSpaceOnlyTextNodes(n.test2);
doneIfSlotChange([n.s1], [[n.c2]], test);
n.s1.setAttribute('name', 'slot2');
}, 'slotchange event: Change slot\'s name= attribute so that a node is assigned to the slot.');
</script>
<div id="test_fallback">
<div id="host1">
<template data-mode="open">
<slot id="s1"></slot>
</template>
</div>
</div>
<script>
async_test((test) => {
let n = createTestTree(test_fallback);
removeWhiteSpaceOnlyTextNodes(n.test_fallback);
doneIfSlotChange([n.s1], [[]], test);
n.s1.appendChild(document.createElement('div'));
}, 'slotchange event: Change fallback content - assignedNodes still empty.');
</script>
<div id="test_fallback2">
<div id="host1">
<template data-mode="open">
<slot id="s1">
<div id="f1"></div>
</slot>
</template>
</div>
</div>
<script>
async_test((test) => {
let n = createTestTree(test_fallback2);
removeWhiteSpaceOnlyTextNodes(n.test_fallback2);
doneIfSlotChange([n.s1], [[]], test);
n.f1.remove();
}, 'slotchange event: Remove a fallback content - assignedNodes still empty.');
</script>
<div id="test_fallback3">
<div id="host1">
<template data-mode="open">
<slot id="s2">
<slot id="s1">
<div id="f1"></div>
</slot>
</slot>
</template>
</div>
</div>
<script>
async_test((test) => {
let n = createTestTree(test_fallback3);
removeWhiteSpaceOnlyTextNodes(n.test_fallback3);
doneIfSlotChange([n.s1, n.s2], [[],[]], test);
n.s1.appendChild(document.createElement('div'));
}, 'slotchange event: Add a fallback content to nested slots - assignedNodes still empty.');
async_test((test) => {
let n = createTestTree(test_fallback3);
removeWhiteSpaceOnlyTextNodes(n.test_fallback3);
doneIfSlotChange([n.s1, n.s2], [[],[]], test);
n.f1.remove();
}, 'slotchange event: Remove a fallback content from nested slots - assignedNodes still empty.');
</script>
<div id="test3">
<div id="host1">
<template id="shadowroot" data-mode="open">
<slot id="s1" name="slot1"></slot>
</template>
<div id="c1" slot="slot1"></div>
</div>
</div>
<script>
async_test((test) => {
let n = createTestTree(test3);
removeWhiteSpaceOnlyTextNodes(n.test3);
doneIfSlotChange([n.s1], [[]], test);
let slot = document.createElement('slot');
slot.setAttribute('name', 'slot1');
n.shadowroot.insertBefore(slot, n.s1);
}, "slotchange event: Insert a slot before an existing slot.");
</script>
<div id="test4">
<div id="host1">
<template id="shadowroot" data-mode="open">
<slot id="s1" name="slot1"></slot>
<slot id="s2" name="slot1"></slot>
</template>
<div id="c1" slot="slot1"></div>
</div>
</div>
<script>
async_test((test) => {
let n = createTestTree(test4);
removeWhiteSpaceOnlyTextNodes(n.test4);
doneIfSlotChange([n.s2], [[n.c1]], test);
n.s1.remove();
}, "slotchange event: Remove a preceding slot.");
</script>
<div id="test5">
<div id="host1">
<template data-mode="open">
<div id="host2">
<template data-mode="open">
<slot id="s2" name="slot2"></slot>
</template>
<slot id="s1" name="slot1" slot="slot2"></slot>
</div>
</template>
<div id="c1" slot="slot1"></div>
</div>
</div>
<script>
async_test((test) => {
let n = createTestTree(test5);
removeWhiteSpaceOnlyTextNodes(n.test5);
doneIfSlotChange([n.s1, n.s2], [[],[n.s1]], test);
n.c1.remove();
}, "slotchange event: A slot is assigned to another slot.");
</script>
<div id="test6">
<div id="host1">
<template data-mode="open">
<div id="host2">
<template data-mode="open">
<slot id="s2" name="slot2"></slot>
</template>
<slot id="s1" name="slot1" slot="slot2"></slot>
</div>
</template>
</div>
</div>
<script>
async_test((test) => {
let n = createTestTree(test6);
removeWhiteSpaceOnlyTextNodes(n.test6);
doneIfSlotChange([n.s2], [[]], test);
n.s1.remove();
}, "slotchange event: Slotchange should be fired if assigned nodes are changed.");
</script>
<div id="test7">
<div id="host1">
<template data-mode="open">
<div id="host2">
<template data-mode="open">
<slot id="s2" name="slot2"></slot>
</template>
<slot id="s1" name="slot1" slot="slot2"></slot>
</div>
</template>
</div>
</div>
<script>
async_test((test) => {
let n = createTestTree(test7);
removeWhiteSpaceOnlyTextNodes(n.test7);
let d1 = document.createElement('div');
d1.setAttribute('slot', 'slot1');
doneIfSlotChange([n.s1, n.s2], [[d1],[n.s1]], test);
n.host1.appendChild(d1);
}, "slotchange event: Child content is added to nested slots.");
</script> | chromium/chromium | third_party/blink/web_tests/external/wpt/shadow-dom/slotchange.html | HTML | bsd-3-clause | 7,608 |
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Example - example-example32-jquery</title>
<script src="../../components/jquery-2.1.1/jquery.js"></script>
<script src="../../../angular.js"></script>
<script src="script.js"></script>
</head>
<body ng-app="customTriggerExample">
<div ng-controller="ExampleController">
<form>
Name:
<input type="text" ng-model="user.name" ng-model-options="{ updateOn: 'blur' }" /><br />
Other data:
<input type="text" ng-model="user.data" /><br />
</form>
<pre>username = "{{user.name}}"</pre>
<pre>userdata = "{{user.data}}"</pre>
</div>
</body>
</html> | viral810/ngSimpleCMS | web/bundles/sunraangular/js/angular/angular-1.3.2/docs/examples/example-example32/index-jquery.html | HTML | mit | 676 |
<!DOCTYPE html>
<title>SVG root as flex item</title>
<link rel="author" title="David Grogan" href="mailto:[email protected]">
<link rel="help" href="https://drafts.csswg.org/css-flexbox/#algo-main-item" title="Part E">
<link rel="help" href="https://www.w3.org/TR/css-sizing-3/#intrinsic-sizes" title="For boxes with an intrinsic aspect ratio, but no intrinsic size">
<link rel="match" href="../reference/ref-filled-green-100px-square.xht">
<meta name="assert" content="SVG's intrinsic width when used as flex base size stretches into the available size when it has no specified intrinsic sizes." />
<style>
#reference-overlapped-red {
position: absolute;
background-color: red;
width: 100px;
height: 100px;
z-index: -1;
}
</style>
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
<div id="reference-overlapped-red"></div>
<div style="display: flex; width: 100px;">
<svg viewBox="0 0 200 200">
<rect width="100%" height="100%" fill="green" />
</svg>
</div>
| scheib/chromium | third_party/blink/web_tests/external/wpt/css/css-flexbox/svg-root-as-flex-item-002.html | HTML | bsd-3-clause | 1,015 |
<!DOCTYPE html>
<link rel="stylesheet" href="/adorn/adorn.css"/>
<script src="/adorn/adorn.js" async></script>
<script src="../client_ids.js"></script>
<div id="fb-root"></div>
<h1>Facebook proprietary SDK</h1>
<p>SignIn</p>
<button id="login" onclick="FB.login();">Login Facebook</button>
<p>SignOut: of this app and Facebook.com</p>
<button onclick="FB.logout();">Logout</button>
<p>Include the SDK's</p>
<script src="//connect.facebook.net/en_US/all.js" class="pre"></script>
<p>FB.Event.subscribe</p>
<script class="pre">
// Login event
function authResponse(response){
if (response.status === 'connected'|| response.authResponse) {
document.body.className = "signedin";
// Get Profile
FB.api('me', function(r){
document.getElementById('login').innerHTML = "Connected to FaceBook as " + r.name;
});
}
else{
document.body.className = "";
document.getElementById('login').innerHTML = "Login Facebook";
}
}
FB.Event.subscribe('auth.login', authResponse);
</script>
<p>FB.init</p>
<script class="pre">
// Initiate the facebook app
FB.init({
appId: FACEBOOK_CLIENT_ID,
scope: "basic",
status : true
});
</script>
<p>FB.init</p>
<script class="pre">
FB.getLoginStatus(authResponse);
</script> | simondelamarre/LV2 | node_modules/hellojs/demos/sdk/facebook.html | HTML | mit | 1,221 |
<!--
@license
Copyright (c) 2015 The Polymer Project Authors. All rights reserved.
This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
Code distributed by Google as part of the polymer project is also
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
-->
<link rel="import" href="../polymer/polymer.html">
<link rel="import" href="../iron-ajax/iron-ajax.html">
<script>
/*
``<iron-form>` is an HTML `<form>` element that can validate and submit any custom
elements that implement `Polymer.IronFormElementBehavior`, as well as any
native HTML elements.
It supports both `get` and `post` methods, and uses an `iron-ajax` element to
submit the form data to the action URL.
Example:
<form is="iron-form" id="form" method="post" action="/form/handler">
<paper-input name="name" label="name"></paper-input>
<input name="address">
...
</form>
By default, a native `<button>` element will submit this form. However, if you
want to submit it from a custom element's click handler, you need to explicitly
call the form's `submit` method.
Example:
<paper-button raised onclick="submitForm()">Submit</paper-button>
function submitForm() {
document.getElementById('form').submit();
}
@demo demo/index.html
*/
Polymer({
is: 'iron-form',
extends: 'form',
properties: {
/**
* Content type to use when sending data.
*/
contentType: {
type: String,
value: "application/x-www-form-urlencoded"
},
/**
* By default, the form will display the browser's native validation
* UI (i.e. popup bubbles and invalid styles on invalid fields). You can
* manually disable this; however, if you do, note that you will have to
* manually style invalid *native* HTML fields yourself, as you are
* explicitly preventing the native form from doing so.
*/
disableNativeValidationUi: {
type: Boolean,
value: false
},
/**
* Set the withCredentials flag when sending data.
*/
withCredentials: {
type: Boolean,
value: false
}
},
/**
* Fired if the form cannot be submitted because it's invalid.
*
* @event iron-form-invalid
*/
/**
* Fired after the form is submitted.
*
* @event iron-form-submit
*/
/**
* Fired after the form is submitted and a response is received.
*
* @event iron-form-response
*/
/**
* Fired after the form is submitted and an error is received.
*
* @event iron-form-error
*/
listeners: {
'iron-form-element-register': '_registerElement',
'iron-form-element-unregister': '_unregisterElement',
'submit': '_onSubmit'
},
ready: function() {
// Object that handles the ajax form submission request.
this._requestBot = document.createElement('iron-ajax');
this._requestBot.addEventListener('response', this._handleFormResponse.bind(this));
this._requestBot.addEventListener('error', this._handleFormError.bind(this));
// Holds all the custom elements registered with this form.
this._customElements = [];
},
/**
* Called to submit the form.
*/
submit: function() {
if (!this.noValidate && !this.validate()) {
// In order to trigger the native browser invalid-form UI, we need
// to do perform a fake form submit.
if (!this.disableNativeValidationUi) {
this._doFakeSubmitForValidation();
}
this.fire('iron-form-invalid');
return;
}
var json = this.serialize();
this._requestBot.url = this.action;
this._requestBot.method = this.method;
this._requestBot.contentType = this.contentType;
this._requestBot.withCredentials = this.withCredentials;
if (this.method.toUpperCase() == 'POST') {
this._requestBot.body = json;
} else {
this._requestBot.params = json;
}
this._requestBot.generateRequest();
this.fire('iron-form-submit', json);
},
_onSubmit: function(event) {
this.submit();
// Don't perform a page refresh.
if (event) {
event.preventDefault();
}
return false;
},
/**
* Returns a json object containing name/value pairs for all the registered
* custom components and native elements of the form. If there are elements
* with duplicate names, then their values will get aggregated into an
* array of values.
*/
serialize: function() {
var json = {};
function addSerializedElement(el) {
// If the name doesn't exist, add it. Otherwise, serialize it to
// an array,
if (!json[el.name]) {
json[el.name] = el.value;
} else {
if (!Array.isArray(json[el.name])) {
json[el.name] = [json[el.name]];
}
json[el.name].push(el.value);
}
}
// Go through all of the registered custom components.
for (var el, i = 0; el = this._customElements[i], i < this._customElements.length; i++) {
if (this._useValue(el)) {
addSerializedElement(el);
}
}
// Also go through the form's native elements.
for (var el, i = 0; el = this.elements[i], i < this.elements.length; i++) {
// Checkboxes and radio buttons should only use their value if they're checked.
// Also, custom elements that extend native elements (like an
// `<input is="fancy-input">`) will appear in both lists. Since they
// were already added as a custom element, they don't need
// to be re-added.
if (!this._useValue(el) ||
(el.hasAttribute('is') && json[el.name])) {
continue;
}
addSerializedElement(el);
}
return json;
},
_handleFormResponse: function (event) {
this.fire('iron-form-response', event.detail.response);
},
_handleFormError: function (event) {
this.fire('iron-form-error', event.detail);
},
_registerElement: function(e) {
e.target._parentForm = this;
this._customElements.push(e.target);
},
_unregisterElement: function(e) {
var target = e.detail.target;
if (target) {
var index = this._customElements.indexOf(target);
if (index > -1) {
this._customElements.splice(index, 1);
}
}
},
/**
* Validates all the required elements (custom and native) in the form.
* @return {boolean} True if all the elements are valid.
*/
validate: function() {
var valid = true;
// Validate all the custom elements.
var validatable;
for (var el, i = 0; el = this._customElements[i], i < this._customElements.length; i++) {
if (el.required && this._useValue(el)) {
validatable = /** @type {{validate: (function() : boolean)}} */ (el);
// Some elements may not have correctly defined a validate method.
if (validatable.validate)
valid = !!validatable.validate() && valid;
}
}
// Validate the form's native elements.
for (var el, i = 0; el = this.elements[i], i < this.elements.length; i++) {
// Custom elements that extend a native element will also appear in
// this list, but they've already been validated.
if (!el.hasAttribute('is') && el.willValidate && el.checkValidity && el.name) {
valid = el.checkValidity() && valid;
}
}
return valid;
},
_useValue: function(el) {
// Skip disabled elements or elements that don't have a `name` attribute.
if (el.disabled || !el.name) {
return false;
}
// Checkboxes and radio buttons should only use their value if they're
// checked. Custom paper-checkbox and paper-radio-button elements
// don't have a type, but they have the correct role set.
if (el.type == 'checkbox' ||
el.type == 'radio' ||
el.getAttribute('role') == 'checkbox' ||
el.getAttribute('role') == 'radio') {
return el.checked;
}
return true;
},
_doFakeSubmitForValidation: function() {
var fakeSubmit = document.createElement('input');
fakeSubmit.setAttribute('type', 'submit');
fakeSubmit.style.display = 'none';
this.appendChild(fakeSubmit);
fakeSubmit.click();
this.removeChild(fakeSubmit);
}
});
</script>
| zacharyfmarion/Graviton | www/lib/iron-form/iron-form.html | HTML | bsd-3-clause | 8,796 |
<h3>Dropzone {{$index + 1}}</h3>
<ul dnd-list="containers"
dnd-allowed-types="['containerType']"
dnd-external-sources="true"
dnd-dragover="dragoverCallback(event, index, external, type)"
dnd-drop="dropCallback(event, index, item, external, type, 'containerType')">
<li ng-repeat="items in containers"
dnd-draggable="items"
dnd-type="'containerType'"
dnd-effect-allowed="copyMove"
dnd-dragstart="logEvent('Started to drag a container', event)"
dnd-moved="containers.splice($index, 1); logEvent('Container moved', event)"
dnd-copied="logEvent('Container copied', event)">
<div class="container-element box box-blue">
<h3>Container</h3>
<ul dnd-list="items"
dnd-allowed-types="['itemType']"
dnd-horizontal-list="true"
dnd-external-sources="true"
dnd-dragover="dragoverCallback(event, index, external, type)"
dnd-drop="dropCallback(event, index, item, external, type, 'itemType')"
class="itemlist">
<li ng-repeat="item in items"
dnd-draggable="item"
dnd-type="'itemType'"
dnd-effect-allowed="copyMove"
dnd-dragstart="logEvent('Started to drag an item', event)"
dnd-moved="items.splice($index, 1); logEvent('Item moved', event)"
dnd-copied="logEvent('Item copied', event)">
{{item.label}}
</li>
</ul>
<div class="clearfix"></div>
</div>
</li>
</ul>
| lwp8800/wechat | vendor/bower/bower-asset/angular-drag-and-drop-lists/demo/advanced/advanced.html | HTML | bsd-3-clause | 1,648 |
<h1>demo.html content</h1> | wbh5/fis | test/ft/fis-quickstart-demo/demo.html | HTML | mit | 26 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--
Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
-->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Samples List - CKEditor</title>
<link type="text/css" rel="stylesheet" href="sample.css" />
</head>
<body>
<h1>
CKEditor Samples List
</h1>
<h2>
Basic Samples
</h2>
<ul>
<li><a href="replacebyclass.html">Replace textareas by class name</a></li>
<li><a href="replacebycode.html">Replace textareas by code</a></li>
<li><a href="fullpage.html">Full page support (editing from <html> to </html>)</a></li>
</ul>
<h2>
Basic Customization
</h2>
<ul>
<li><a href="skins.html">Skins</a></li>
<li><a href="ui_color.html">User Interface Color</a></li>
<li><a href="ui_languages.html">User Interface Languages</a></li>
</ul>
<h2>
Advanced Samples
</h2>
<ul>
<li><a href="divreplace.html">Replace DIV elements on the fly</a> </li>
<li><a href="ajax.html">Create and destroy editor instances for Ajax applications</a></li>
<li><a href="api.html">Basic usage of the API</a></li>
<li><a href="api_dialog.html">Using the JavaScript API to customize dialogs</a></li>
<li><a href="enterkey.html">Using the "Enter" key in CKEditor</a></li>
<li><a href="sharedspaces.html">Shared toolbars</a></li>
<li><a href="jqueryadapter.html">jQuery adapter example</a></li>
<li><a href="output_xhtml.html">Output XHTML</a></li>
<li><a href="output_html.html">Output HTML</a></li>
<li><a href="output_for_flash.html">Output for Flash</a></li>
<li><a href="autogrow.html">AutoGrow plugin</a></li>
<li><a href="placeholder.html">Placeholder plugin</a></li>
</ul>
<div id="footer">
<hr />
<p>
CKEditor - The text editor for Internet - <a href="http://ckeditor.com/">http://ckeditor.com</a>
</p>
<p id="copy">
Copyright © 2003-2010, <a href="http://cksource.com/">CKSource</a> - Frederico Knabben. All rights reserved.
</p>
</div>
</body>
</html>
| SallyU/footprints | togetherwork/protected/extensions/editor/source/ckeditor/_samples/index.html | HTML | bsd-2-clause | 2,197 |
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Text level 3 Test: U+2003 at the end of line with white-space:break-spaces</title>
<link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net/">
<link rel="help" href="https://drafts.csswg.org/css-text-3/#white-space-phase-2">
<link rel="match" href="reference/trailing-other-space-separators-break-spaces-002-ref.html">
<meta name="assert" content="U+2003 at the end of the line must not hang or be discarded if white-space is break-spaces. It thus keeps its usual line breaking properties, as defined in UAX14.">
<meta name="flags" content="should">
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style>
div {
white-space: break-spaces;
font-size: 10px;
line-height: 1;
width: 2em;
}
section {
font-family: Ahem;
float: left;
margin: 0 1em;
color: blue;
}
.ref {
color: orange;
}
.ref div {
white-space: pre;
}
</style>
<p>Test passes if the orange and blue parts of this page are identical.
<!--
* There is no line breaking opportunity between two "x"
* There is a line breaking opportunity between two "あ"
* There is a line breaking opportunity after "x" or "あ"
unless suppressed by the next character (BA, GL).
* There is a line breaking opportunity before "x" or "あ"
unless suppressed by the previous character (BB, GL).
-->
<section class=ref>
<div>xx <br>あ<br>あ <br>あ<br>あ <br>xx</div><!-- BA, tailorable -->
</section>
<section>
<div>xx ああ ああ xx</div>
</section>
| scheib/chromium | third_party/blink/web_tests/external/wpt/css/css-text/white-space/trailing-other-space-separators-break-spaces-005.html | HTML | bsd-3-clause | 1,557 |
<!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"/>
<title>RakNet: 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="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">RakNet
 <span id="projectnumber">4.0</span>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.2 -->
<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="modules.html"><span>Modules</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
</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>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><a class="el" href="namespaceRakNet.html">RakNet</a></li><li class="navelem"><a class="el" href="classRakNet_1_1NatPunchthroughClient.html">NatPunchthroughClient</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="headertitle">
<div class="title">RakNet::NatPunchthroughClient Member List</div> </div>
</div><!--header-->
<div class="contents">
<p>This is the complete list of members for <a class="el" href="classRakNet_1_1NatPunchthroughClient.html">RakNet::NatPunchthroughClient</a>, including all inherited members.</p>
<table class="directory">
<tr class="even"><td class="entry"><a class="el" href="classRakNet_1_1NatPunchthroughClient.html#ab830402dee86fc7b557e098f4ccdd4f1">FindRouterPortStride</a>(const SystemAddress &facilitator)</td><td class="entry"><a class="el" href="classRakNet_1_1NatPunchthroughClient.html">RakNet::NatPunchthroughClient</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classRakNet_1_1NatPunchthroughClient.html#a6131cc61e5af13399db4358fbb7b0d15">GetPunchthroughConfiguration</a>(void)</td><td class="entry"><a class="el" href="classRakNet_1_1NatPunchthroughClient.html">RakNet::NatPunchthroughClient</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classRakNet_1_1NatPunchthroughClient.html#a621163bc6be3e7d6f6c6b4d9c8e5f938">GetUPNPPortMappings</a>(char *externalPort, char *internalPort, const SystemAddress &natPunchthroughServerAddress)</td><td class="entry"><a class="el" href="classRakNet_1_1NatPunchthroughClient.html">RakNet::NatPunchthroughClient</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classRakNet_1_1PluginInterface2.html#ae0b0cad31cfc209c48197c77d6b46345">OnAck</a>(unsigned int messageNumber, SystemAddress remoteSystemAddress, RakNet::TimeMS time)</td><td class="entry"><a class="el" href="classRakNet_1_1PluginInterface2.html">RakNet::PluginInterface2</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="classRakNet_1_1NatPunchthroughClient.html#abec4863d26aa274f92e710245669d13b">OnAttach</a>(void)</td><td class="entry"><a class="el" href="classRakNet_1_1NatPunchthroughClient.html">RakNet::NatPunchthroughClient</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr>
<tr><td class="entry"><a class="el" href="classRakNet_1_1NatPunchthroughClient.html#a67db8e781fea747763df43240a29a84f">OnClosedConnection</a>(const SystemAddress &systemAddress, RakNetGUID rakNetGUID, PI2_LostConnectionReason lostConnectionReason)</td><td class="entry"><a class="el" href="classRakNet_1_1NatPunchthroughClient.html">RakNet::NatPunchthroughClient</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classRakNet_1_1NatPunchthroughClient.html#a5f57399d9383c6bb3ff9a3ce64326572">OnDetach</a>(void)</td><td class="entry"><a class="el" href="classRakNet_1_1NatPunchthroughClient.html">RakNet::NatPunchthroughClient</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr>
<tr><td class="entry"><a class="el" href="classRakNet_1_1PluginInterface2.html#a9aac1101ad58e8443516588e96e066ec">OnDirectSocketReceive</a>(const char *data, const BitSize_t bitsUsed, SystemAddress remoteSystemAddress)</td><td class="entry"><a class="el" href="classRakNet_1_1PluginInterface2.html">RakNet::PluginInterface2</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="classRakNet_1_1PluginInterface2.html#a7a6f69c6fc3a121e3676298a63a9ef78">OnDirectSocketSend</a>(const char *data, const BitSize_t bitsUsed, SystemAddress remoteSystemAddress)</td><td class="entry"><a class="el" href="classRakNet_1_1PluginInterface2.html">RakNet::PluginInterface2</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">virtual</span></td></tr>
<tr><td class="entry"><a class="el" href="classRakNet_1_1PluginInterface2.html#a9504489498df14b6efa5ca9bd39aede4">OnFailedConnectionAttempt</a>(Packet *packet, PI2_FailedConnectionAttemptReason failedConnectionAttemptReason)</td><td class="entry"><a class="el" href="classRakNet_1_1PluginInterface2.html">RakNet::PluginInterface2</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="classRakNet_1_1PluginInterface2.html#a399b8c93daa0236599961e754742e2f7">OnInternalPacket</a>(InternalPacket *internalPacket, unsigned frameNumber, SystemAddress remoteSystemAddress, RakNet::TimeMS time, int isSend)</td><td class="entry"><a class="el" href="classRakNet_1_1PluginInterface2.html">RakNet::PluginInterface2</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">virtual</span></td></tr>
<tr><td class="entry"><a class="el" href="classRakNet_1_1NatPunchthroughClient.html#a9819ed681b72317c2c97fc1f2abfc947">OnNewConnection</a>(const SystemAddress &systemAddress, RakNetGUID rakNetGUID, bool isIncoming)</td><td class="entry"><a class="el" href="classRakNet_1_1NatPunchthroughClient.html">RakNet::NatPunchthroughClient</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classRakNet_1_1PluginInterface2.html#a5c976aea56ed85055a17c19d91b90727">OnPushBackPacket</a>(const char *data, const BitSize_t bitsUsed, SystemAddress remoteSystemAddress)</td><td class="entry"><a class="el" href="classRakNet_1_1PluginInterface2.html">RakNet::PluginInterface2</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">virtual</span></td></tr>
<tr><td class="entry"><a class="el" href="classRakNet_1_1NatPunchthroughClient.html#a1563e46fb5626c93da63a39e549f9147">OnRakPeerShutdown</a>(void)</td><td class="entry"><a class="el" href="classRakNet_1_1NatPunchthroughClient.html">RakNet::NatPunchthroughClient</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classRakNet_1_1PluginInterface2.html#a14825e69f0560996327e4dd351842c06">OnRakPeerStartup</a>(void)</td><td class="entry"><a class="el" href="classRakNet_1_1PluginInterface2.html">RakNet::PluginInterface2</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">virtual</span></td></tr>
<tr><td class="entry"><a class="el" href="classRakNet_1_1NatPunchthroughClient.html#a417a0812408c178e1e95d8983389e286">OnReceive</a>(Packet *packet)</td><td class="entry"><a class="el" href="classRakNet_1_1NatPunchthroughClient.html">RakNet::NatPunchthroughClient</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classRakNet_1_1PluginInterface2.html#abf51e60546bd74d21c91dc0d6f9f3a4b">OnReliabilityLayerNotification</a>(const char *errorMessage, const BitSize_t bitsUsed, SystemAddress remoteSystemAddress, bool isError)</td><td class="entry"><a class="el" href="classRakNet_1_1PluginInterface2.html">RakNet::PluginInterface2</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">virtual</span></td></tr>
<tr><td class="entry"><a class="el" href="classRakNet_1_1NatPunchthroughClient.html#a92dbda7c976d5973c5cd6a3e0aea95c0">OpenNAT</a>(RakNetGUID destination, const SystemAddress &facilitator)</td><td class="entry"><a class="el" href="classRakNet_1_1NatPunchthroughClient.html">RakNet::NatPunchthroughClient</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classRakNet_1_1NatPunchthroughClient.html#a7bc339aacd4c7f355ebfbab17059c4a0">SetDebugInterface</a>(NatPunchthroughDebugInterface *i)</td><td class="entry"><a class="el" href="classRakNet_1_1NatPunchthroughClient.html">RakNet::NatPunchthroughClient</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classRakNet_1_1NatPunchthroughClient.html#afdb000c77864073b54260e4e882a3010">Update</a>(void)</td><td class="entry"><a class="el" href="classRakNet_1_1NatPunchthroughClient.html">RakNet::NatPunchthroughClient</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classRakNet_1_1PluginInterface2.html#accfca7d25262c48a87a30114383284aa">UsesReliabilityLayer</a>(void) const </td><td class="entry"><a class="el" href="classRakNet_1_1PluginInterface2.html">RakNet::PluginInterface2</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 on Mon Jun 2 2014 20:10:28 for RakNet by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.2
</small></address>
</body>
</html>
| JayStilla/AIEComplexSystems | dep/RakNet/Help/Doxygen/html/classRakNet_1_1NatPunchthroughClient-members.html | HTML | mit | 10,957 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="en">
<head>
<title>Apache License, Version 2.0</title>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<meta property="og:image" content="http://www.apache.org/images/asf_logo.gif" />
<link rel="stylesheet" type="text/css" media="screen" href="/css/style.css">
<link rel="stylesheet" type="text/css" media="screen" href="/css/code.css">
<script type="text/javascript" src="/js/jquery.js"></script>
<script type="text/javascript" src="/js/apache_boot.js"></script>
<!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at . http://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. -->
</head>
<body>
<div id="page" class="container_16">
<div id="header" class="grid_8">
<img src="/images/feather-small.gif" alt="The Apache Software Foundation">
<h1>The Apache Software Foundation</h1>
<h2>Apache License, Version 2.0</h2>
</div>
<div id="nav" class="grid_8">
<ul>
<!-- <li><a href="/" title="Welcome!">Home</a></li> -->
<li><a href="/foundation/" title="The Foundation">Foundation</a></li>
<li><a href="http://projects.apache.org" title="The Projects">Projects</a></li>
<li><a href="http://people.apache.org" title="The People">People</a></li>
<li><a href="/foundation/getinvolved.html" title="Get Involved">Get Involved</a></li>
<li><a href="/dyn/closer.cgi" title="Download">Download</a></li>
<li><a href="/foundation/sponsorship.html" title="Support Apache">Support Apache</a></li>
</ul>
<p><a href="/">Home</a> » <a href="/licenses/">Licenses</a></p>
<form name="search" id="search" action="http://www.google.com/search" method="get">
<input value="apache.org" name="sitesearch" type="hidden"/>
<input type="text" name="q" id="query">
<input type="submit" id="submit" value="Search">
</form>
</div>
<div class="clear"></div>
<div id="content" class="grid_16"><div class="section-content"><p>Apache License<br></br>Version 2.0, January 2004<br></br>
<a href="http://www.apache.org/licenses/">http://www.apache.org/licenses/</a> </p>
<p>TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION</p>
<p><strong><a name="definitions">1. Definitions</a></strong>.</p>
<p>"License" shall mean the terms and conditions for use, reproduction, and
distribution as defined by Sections 1 through 9 of this document.</p>
<p>"Licensor" shall mean the copyright owner or entity authorized by the
copyright owner that is granting the License.</p>
<p>"Legal Entity" shall mean the union of the acting entity and all other
entities that control, are controlled by, or are under common control with
that entity. For the purposes of this definition, "control" means (i) the
power, direct or indirect, to cause the direction or management of such
entity, whether by contract or otherwise, or (ii) ownership of fifty
percent (50%) or more of the outstanding shares, or (iii) beneficial
ownership of such entity.</p>
<p>"You" (or "Your") shall mean an individual or Legal Entity exercising
permissions granted by this License.</p>
<p>"Source" form shall mean the preferred form for making modifications,
including but not limited to software source code, documentation source,
and configuration files.</p>
<p>"Object" form shall mean any form resulting from mechanical transformation
or translation of a Source form, including but not limited to compiled
object code, generated documentation, and conversions to other media types.</p>
<p>"Work" shall mean the work of authorship, whether in Source or Object form,
made available under the License, as indicated by a copyright notice that
is included in or attached to the work (an example is provided in the
Appendix below).</p>
<p>"Derivative Works" shall mean any work, whether in Source or Object form,
that is based on (or derived from) the Work and for which the editorial
revisions, annotations, elaborations, or other modifications represent, as
a whole, an original work of authorship. For the purposes of this License,
Derivative Works shall not include works that remain separable from, or
merely link (or bind by name) to the interfaces of, the Work and Derivative
Works thereof.</p>
<p>"Contribution" shall mean any work of authorship, including the original
version of the Work and any modifications or additions to that Work or
Derivative Works thereof, that is intentionally submitted to Licensor for
inclusion in the Work by the copyright owner or by an individual or Legal
Entity authorized to submit on behalf of the copyright owner. For the
purposes of this definition, "submitted" means any form of electronic,
verbal, or written communication sent to the Licensor or its
representatives, including but not limited to communication on electronic
mailing lists, source code control systems, and issue tracking systems that
are managed by, or on behalf of, the Licensor for the purpose of discussing
and improving the Work, but excluding communication that is conspicuously
marked or otherwise designated in writing by the copyright owner as "Not a
Contribution."</p>
<p>"Contributor" shall mean Licensor and any individual or Legal Entity on
behalf of whom a Contribution has been received by Licensor and
subsequently incorporated within the Work.</p>
<p><strong><a name="copyright">2. Grant of Copyright License</a></strong>. Subject to the
terms and conditions of this License, each Contributor hereby grants to You
a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable
copyright license to reproduce, prepare Derivative Works of, publicly
display, publicly perform, sublicense, and distribute the Work and such
Derivative Works in Source or Object form.</p>
<p><strong><a name="patent">3. Grant of Patent License</a></strong>. Subject to the terms
and conditions of this License, each Contributor hereby grants to You a
perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable
(except as stated in this section) patent license to make, have made, use,
offer to sell, sell, import, and otherwise transfer the Work, where such
license applies only to those patent claims licensable by such Contributor
that are necessarily infringed by their Contribution(s) alone or by
combination of their Contribution(s) with the Work to which such
Contribution(s) was submitted. If You institute patent litigation against
any entity (including a cross-claim or counterclaim in a lawsuit) alleging
that the Work or a Contribution incorporated within the Work constitutes
direct or contributory patent infringement, then any patent licenses
granted to You under this License for that Work shall terminate as of the
date such litigation is filed.</p>
<p><strong><a name="redistribution">4. Redistribution</a></strong>. You may reproduce and
distribute copies of the Work or Derivative Works thereof in any medium,
with or without modifications, and in Source or Object form, provided that
You meet the following conditions:</p>
<ol style="list-style: lower-latin;">
<li>You must give any other recipients of the Work or Derivative Works a
copy of this License; and</li>
<li>You must cause any modified files to carry prominent notices stating
that You changed the files; and</li>
<li>You must retain, in the Source form of any Derivative Works that You
distribute, all copyright, patent, trademark, and attribution notices from
the Source form of the Work, excluding those notices that do not pertain to
any part of the Derivative Works; and</li>
<li>If the Work includes a "NOTICE" text file as part of its distribution,
then any Derivative Works that You distribute must include a readable copy
of the attribution notices contained within such NOTICE file, excluding
those notices that do not pertain to any part of the Derivative Works, in
at least one of the following places: within a NOTICE text file distributed
as part of the Derivative Works; within the Source form or documentation,
if provided along with the Derivative Works; or, within a display generated
by the Derivative Works, if and wherever such third-party notices normally
appear. The contents of the NOTICE file are for informational purposes only
and do not modify the License. You may add Your own attribution notices
within Derivative Works that You distribute, alongside or as an addendum to
the NOTICE text from the Work, provided that such additional attribution
notices cannot be construed as modifying the License.
<br/>
<br/>
You may add Your own copyright statement to Your modifications and may
provide additional or different license terms and conditions for use,
reproduction, or distribution of Your modifications, or for any such
Derivative Works as a whole, provided Your use, reproduction, and
distribution of the Work otherwise complies with the conditions stated in
this License.
</li>
</ol>
<p><strong><a name="contributions">5. Submission of Contributions</a></strong>. Unless You
explicitly state otherwise, any Contribution intentionally submitted for
inclusion in the Work by You to the Licensor shall be under the terms and
conditions of this License, without any additional terms or conditions.
Notwithstanding the above, nothing herein shall supersede or modify the
terms of any separate license agreement you may have executed with Licensor
regarding such Contributions.</p>
<p><strong><a name="trademarks">6. Trademarks</a></strong>. This License does not grant
permission to use the trade names, trademarks, service marks, or product
names of the Licensor, except as required for reasonable and customary use
in describing the origin of the Work and reproducing the content of the
NOTICE file.</p>
<p><strong><a name="no-warranty">7. Disclaimer of Warranty</a></strong>. Unless required by
applicable law or agreed to in writing, Licensor provides the Work (and
each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT
WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including,
without limitation, any warranties or conditions of TITLE,
NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You
are solely responsible for determining the appropriateness of using or
redistributing the Work and assume any risks associated with Your exercise
of permissions under this License.</p>
<p><strong><a name="no-liability">8. Limitation of Liability</a></strong>. In no event and
under no legal theory, whether in tort (including negligence), contract, or
otherwise, unless required by applicable law (such as deliberate and
grossly negligent acts) or agreed to in writing, shall any Contributor be
liable to You for damages, including any direct, indirect, special,
incidental, or consequential damages of any character arising as a result
of this License or out of the use or inability to use the Work (including
but not limited to damages for loss of goodwill, work stoppage, computer
failure or malfunction, or any and all other commercial damages or losses),
even if such Contributor has been advised of the possibility of such
damages.</p>
<p><strong><a name="additional">9. Accepting Warranty or Additional Liability</a></strong>.
While redistributing the Work or Derivative Works thereof, You may choose
to offer, and charge a fee for, acceptance of support, warranty, indemnity,
or other liability obligations and/or rights consistent with this License.
However, in accepting such obligations, You may act only on Your own behalf
and on Your sole responsibility, not on behalf of any other Contributor,
and only if You agree to indemnify, defend, and hold each Contributor
harmless for any liability incurred by, or claims asserted against, such
Contributor by reason of your accepting any such warranty or additional
liability.</p>
<p>END OF TERMS AND CONDITIONS</p>
<h1 id="apply">APPENDIX: How to apply the Apache License to your work</h1>
<p>To apply the Apache License to your work, attach the following boilerplate
notice, with the fields enclosed by brackets "[]" replaced with your own
identifying information. (Don't include the brackets!) The text should be
enclosed in the appropriate comment syntax for the file format. We also
recommend that a file or class name and description of purpose be included
on the same "printed page" as the copyright notice for easier
identification within third-party archives.</p>
<div class="codehilite"><pre>Copyright [yyyy] [name of copyright owner]
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
</pre></div></div></div>
<div class="clear"></div>
</div>
<div id="footer" class="container_16">
<div class="links grid_16">
<div class="grid_3">
<h4>Projects</h4>
<ul>
<li><a href="http://httpd.apache.org/" title="Apache Web Server (httpd)">HTTP Server</a></li>
<li><a href="http://abdera.apache.org/" title="Atom Publishing Protocol Implementation">Abdera</a></li>
<li><a href="http://accumulo.apache.org/" title="Sorted, distributed key/value store">Accumulo</a></li>
<li><a href="http://ace.apache.org/" title="Centralized life cycle management and deployment of OSGi based and related modular software artifacts for distribution.">ACE</a></li>
<li><a href="http://activemq.apache.org/" title="Distributed Messaging System">ActiveMQ</a></li>
<li><a href="http://airavata.apache.org/" title="Workflow and Computational Job Management Middleware">Airavata</a></li>
<li><a href="http://allura.apache.org/" title="Forge software for hosting software projects">Allura</a></li>
<li><a href="http://ambari.apache.org/" title="Hadoop cluster management">Ambari</a></li>
<li><a href="http://ant.apache.org/" title="Java-based build tool">Ant</a></li>
<li><a href="http://any23.apache.org/" title="Anything to Triples">Any23</a></li>
<li><a href="http://apr.apache.org/" title="Apache Portable Runtime libraries">APR</a></li>
<li><a href="http://archiva.apache.org/" title="Build Artifact Repository Manager">Archiva</a></li>
<li><a href="http://aries.apache.org/" title="Enterprise OSGi application programming model">Aries</a></li>
<li><a href="http://avro.apache.org/" title="A Serialization System">Avro</a></li>
<li><a href="http://axis.apache.org/" title="Java SOAP Engine">Axis</a></li>
<li><a href="http://bigtop.apache.org/" title="Apache Hadoop ecosystem integration and distribution project">Bigtop</a></li>
<li><a href="http://bloodhound.apache.org/" title="Issue tracking, wiki and repository browser">Bloodhound</a></li>
<li><a href="http://buildr.apache.org/" title="Simple and intuitive build system for Java applications">Buildr</a></li>
<li><a href="http://bval.apache.org/" title="Apache BVal: JSR-303 Bean Validation Implementation and Extensions">BVal</a></li>
<li><a href="http://camel.apache.org/" title="Spring based Integration Framework which implements the Enterprise Integration Patterns">Camel</a></li>
<li><a href="http://cassandra.apache.org/" title="Highly scalable second-generation distributed database">Cassandra</a></li>
<li><a href="http://cayenne.apache.org/" title="User-friendly Java ORM with Tools">Cayenne</a></li>
<li><a href="http://chemistry.apache.org/" title="CMIS (Content Managment Interoperability Services) Clients and Servers">Chemistry</a></li>
<li><a href="http://chukwa.apache.org/" title="Open source data collection system for monitoring large distributed systems.">Chukwa</a></li>
<li><a href="http://clerezza.apache.org/" title="Semantically linked data for OSGi">Clerezza</a></li>
<li><a href="http://cloudstack.apache.org/" title="Infrastructure as a Service solution">CloudStack</a></li>
<li><a href="http://cocoon.apache.org/" title="Web development framework: separation of concerns, component-based">Cocoon</a></li>
<li><a href="http://commons.apache.org/" title="Reusable Java components">Commons</a></li>
<li><a href="http://continuum.apache.org/" title="Continuous Integration and Build Server">Continuum</a></li>
<li><a href="http://cordova.apache.org/" title="Platform for building native mobile applications using HTML, CSS and JavaScript">Cordova</a></li>
<li><a href="http://couchdb.apache.org/" title="RESTful document database">CouchDB</a></li>
<li><a href="http://creadur.apache.org/" title="Comprehension and auditing of software distributions">Creadur</a></li>
<li><a href="http://crunch.apache.org/" title="Simple and Efficient MapReduce Pipelines">Crunch</a></li>
<li><a href="http://ctakes.apache.org/" title="Natural language processing (NLP) tool for information extraction from electronic medical record clinical free-text">cTAKES</a></li>
<li><a href="http://curator.apache.org/" title="Java libraries that make using Apache ZooKeeper easier">Curator</a></li>
<li><a href="http://cxf.apache.org/" title="Service Framework">CXF</a></li>
<li><a href="http://db.apache.org/" title="Database access">DB</a></li>
<li><a href="http://deltacloud.apache.org/" title="RESTful cloud management interface">Deltacloud</a></li>
<li><a href="http://deltaspike.apache.org/" title="Portable CDI extensions that provide useful features for Java application developers">DeltaSpike</a></li>
<li><a href="http://directmemory.apache.org/" title="An off-heap cache for the Java Virtual Machine">DirectMemory</a></li>
<li><a href="http://directory.apache.org/" title="Apache Directory Server">Directory</a></li>
<li><a href="http://empire-db.apache.org/" title="Relational Data Persistence">Empire-db</a></li>
<li><a href="http://etch.apache.org/" title="Cross-platform, language- and transport-independent RPC-like messaging framework">Etch</a></li>
<li><a href="http://felix.apache.org/" title="OSGi Framework and components.">Felix</a></li>
<li><a href="http://flex.apache.org/" title="Application framework for expressive web applications that deploy to all major browsers, desktops and devices.">Flex</a></li>
<li><a href="http://flume.apache.org/" title="A reliable service for efficiently collecting, aggregating, and moving large amounts of log data">Flume</a></li>
<li><a href="http://forrest.apache.org/" title="Aggregated multi-channel documentation, separation of concerns">Forrest</a></li>
<li><a href="http://geronimo.apache.org/" title="Java2, Enterprise Edition (J2EE) container">Geronimo</a></li>
<li><a href="http://giraph.apache.org/" title="Iterative graph processing system built for high scalability">Giraph</a></li>
<li><a href="http://gora.apache.org/" title="ORM framework for column stores such as Apache HBase and Apache Cassandra with a specific focus on Hadoop">Gora</a></li>
<li><a href="http://gump.apache.org/" title="Continuous integration of open source projects">Gump</a></li>
<li><a href="http://hadoop.apache.org/" title="Distributed computing platform">Hadoop</a></li>
<li><a href="http://hama.apache.org/" title="a Bulk Synchronous Parallel computing framework on top of Hadoop">Hama</a></li>
<li><a href="http://hbase.apache.org/" title="Hadoop Database">HBase</a></li>
<li><a href="http://helix.apache.org/" title="A cluster management framework for partitioned and replicated distributed resources">Helix</a></li>
<li><a href="http://hive.apache.org/" title="Data warehouse infrastructure using the Hadoop Database">Hive</a></li>
<li><a href="http://hc.apache.org/" title="Java toolset of low level HTTP components">HttpComponents</a></li>
<li><a href="http://isis.apache.org/" title="Framework for rapidly developing domain-driven apps in Java">Isis</a></li>
<li><a href="http://jackrabbit.apache.org/" title="Content Repository for Java">Jackrabbit</a></li>
<li><a href="http://james.apache.org/" title="Java Apache Mail Enterprise Server">James</a></li>
<li><a href="http://jclouds.apache.org/" title="Java cloud APIs and abstractions">jclouds</a></li>
<li><a href="http://jena.apache.org/" title="Java framework for building Semantic Web applications">Jena</a></li>
<li><a href="http://jmeter.apache.org/" title="Java performance and functional testing">JMeter</a></li>
<li><a href="http://jspwiki.apache.org/" title="Leading open source WikiWiki engine, feature-rich and built around standard J2EE components (Java, servlets, JSP). ">JSPWiki</a></li>
<li><a href="http://juddi.apache.org/" title="Java implementation of the Universal Description, Discovery, and Integration specification">jUDDI</a></li>
<li><a href="http://kafka.apache.org/" title="Distributed publish-subscribe messaging system">Kafka</a></li>
<li><a href="http://karaf.apache.org/" title="Server-side OSGi distribution">Karaf</a></li>
<li><a href="http://knox.apache.org/" title="Simplify and normalize the deployment and implementation of secure Hadoop clusters">Knox</a></li>
<li><a href="http://lenya.apache.org/" title="Content Management System">Lenya</a></li>
<li><a href="http://libcloud.apache.org/" title="Unified interface to the cloud">Libcloud</a></li>
<li><a href="http://logging.apache.org/" title="Cross-language logging services">Logging</a></li>
<li><a href="http://lucene.apache.org/" title="Search engine library">Lucene</a></li>
<li><a href="http://lucenenet.apache.org/" title="Search engine library targeted at .NET runtime users.">Lucene.Net</a></li>
<li><a href="http://lucy.apache.org/" title="Search engine library for dynamic languages">Lucy</a></li>
<li><a href="http://mahout.apache.org/" title="Scalable machine learning library">Mahout</a></li>
<li><a href="http://manifoldcf.apache.org/" title="Framework for connecting source content repositories to target repositories or indexes.">ManifoldCF</a></li>
<li><a href="http://marmotta.apache.org/" title="An Open Platform for Linked Data">Marmotta</a></li>
<li><a href="http://maven.apache.org/" title="Java project management and comprehension tools">Maven</a></li>
<li><a href="http://mesos.apache.org/" title="a cluster manager that provides efficient resource isolation and sharing across distributed applications">Mesos</a></li>
<li><a href="http://mina.apache.org/" title="Multipurpose Infrastructure for Network Application">MINA</a></li>
<li><a href="http://mrunit.apache.org/" title="Java library that helps developers unit test Apache Hadoop map reduce jobs">MRUnit</a></li>
<li><a href="http://myfaces.apache.org/" title="JavaServer(tm) Faces implementation and components">MyFaces</a></li>
<li><a href="http://nutch.apache.org/" title="Open Source Web Search Software">Nutch</a></li>
<li><a href="http://ode.apache.org/" title="Orchestration Director Engine: Business Process Management (BPM), Process Orchestration and Workflow through service composition.">ODE</a></li>
<li><a href="http://ofbiz.apache.org/" title="Open for Business: enterprise automation software">OFBiz</a></li>
<li><a href="http://olingo.apache.org/" title="OASIS OData protocol libraries">Olingo</a></li>
<li><a href="http://oltu.apache.org/" title="OAuth protocol implementation in Java">Oltu</a></li>
<li><a href="http://onami.apache.org/" title="Development and maintenance of a set of Google Guice extensions">Onami</a></li>
<li><a href="http://oodt.apache.org/" title="Object Oriented Data Technology (middleware metadata)">OODT</a></li>
<li><a href="http://oozie.apache.org/" title="A workflow scheduler system to manage Apache Hadoop jobs.">Oozie</a></li>
<li><a href="http://climate.apache.org/" title="Climate model evaluation">Open Climate Workbench</a></li>
<li><a href="http://openjpa.apache.org/" title="OpenJPA: Object Relational Mapping for Java">OpenJPA</a></li>
<li><a href="http://openmeetings.apache.org/" title="OpenMeetings: Web-Conferencing and real-time collaboration">OpenMeetings</a></li>
<li><a href="http://opennlp.apache.org/" title="Machine learning based toolkit for the processing of natural language text">OpenNLP</a></li>
<li><a href="http://openoffice.apache.org/" title="An open-source, office-document productivity suite">OpenOffice</a></li>
<li><a href="http://openwebbeans.apache.org/" title="OpenWebBeans: JSR-299 Context and Dependency Injection for Java EE Platform Implementation">OpenWebBeans</a></li>
<li><a href="http://pdfbox.apache.org/" title="Java library for working with PDF documents">PDFBox</a></li>
<li><a href="http://perl.apache.org/" title="Dynamic websites using Perl">Perl</a></li>
<li><a href="http://pig.apache.org/" title="Platform for analyzing large data sets">Pig</a></li>
<li><a href="http://pivot.apache.org/" title="Rich Internet applications in Java">Pivot</a></li>
<li><a href="http://poi.apache.org/" title="Java API for OLE 2 Compound and OOXML Documents">POI</a></li>
<li><a href="http://portals.apache.org/" title="Portal technology">Portals</a></li>
<li><a href="http://qpid.apache.org/" title="Multiple language implementation of the latest Advanced Message Queuing Protocol (AMQP)">Qpid</a></li>
<li><a href="http://rave.apache.org/" title="Web and social mashup engine">Rave</a></li>
<li><a href="http://river.apache.org/" title="Jini service oriented architecture">River</a></li>
<li><a href="http://roller.apache.org/" title="Java blog server">Roller</a></li>
<li><a href="http://santuario.apache.org/" title="XML Security in Java and C++">Santuario</a></li>
<li><a href="http://servicemix.apache.org/" title="Enterprise Service Bus">ServiceMix</a></li>
<li><a href="http://shindig.apache.org/" title="Opensocial Reference Implementation">Shindig</a></li>
<li><a href="http://shiro.apache.org/" title="Powerful and easy-to-use application security framework">Shiro</a></li>
<li><a href="http://sis.apache.org/" title="Spatial Information System">SIS</a></li>
<li><a href="http://sling.apache.org/" title="Web Framework for JCR Content Repositories">Sling</a></li>
<li><a href="http://spamassassin.apache.org/" title="Mail filter to identify spam">SpamAssassin</a></li>
<li><a href="http://spark.apache.org/" title="Fast and general engine for large-scale data processing">Spark</a></li>
<li><a href="http://sqoop.apache.org/" title="Bulk Data Transfer for Hadoop and Structured Datastores">Sqoop</a></li>
<li><a href="http://stanbol.apache.org/" title="Reusable components for semantic content management">Stanbol</a></li>
<li><a href="http://steve.apache.org/" title="Apache's Python based single transferable vote software system">STeVe</a></li>
<li><a href="http://struts.apache.org/" title="Model 2 framework for building Java web applications">Struts</a></li>
<li><a href="http://subversion.apache.org/" title="Version Control">Subversion</a></li>
<li><a href="http://synapse.apache.org/" title="Enterprise Service Bus and Mediation Framework">Synapse</a></li>
<li><a href="http://syncope.apache.org/" title="Managing digital identities in enterprise environments">Syncope</a></li>
<li><a href="http://tapestry.apache.org/" title="Component-based Java Web Application Framework">Tapestry</a></li>
<li><a href="http://tcl.apache.org/" title="Dynamic websites using TCL">Tcl</a></li>
<li><a href="http://thrift.apache.org/" title="Framework for scalable cross-language services development">Thrift</a></li>
<li><a href="http://tika.apache.org" title="Content Analysis and Detection Toolkit">Tika</a></li>
<li><a href="http://tiles.apache.org/" title="A templating framework for web application user interfaces">Tiles</a></li>
<li><a href="http://tomcat.apache.org/" title="A Java Servlet and JSP Container">Tomcat</a></li>
<li><a href="http://tomee.apache.org/" title="Java EE Web Profile built on Tomcat">TomEE</a></li>
<li><a href="http://trafficserver.apache.org/" title="A fast, scalable and extensible HTTP/1.1 compliant caching proxy server">Traffic Server</a></li>
<li><a href="http://turbine.apache.org/" title="A Java Servlet Web Application Framework and associated component library">Turbine</a></li>
<li><a href="http://tuscany.apache.org/" title="An SCA based Service Composition Framework">Tuscany</a></li>
<li><a href="http://uima.apache.org/" title="Framework and annotators for unstructured information analysis">UIMA</a></li>
<li><a href="http://vcl.apache.org/" title="Virtual Computing Lab">VCL</a></li>
<li><a href="http://velocity.apache.org/" title="A Java Templating Engine">Velocity</a></li>
<li><a href="http://ws.apache.org/" title="Projects related to Web Services">Web Services</a></li>
<li><a href="http://whirr.apache.org/" title="Libraries for running Cloud Services">Whirr</a></li>
<li><a href="http://wicket.apache.org/" title="Component-based Java Web Application Framework.">Wicket</a></li>
<li><a href="http://wink.apache.org/" title="RESTful Web services Framework">Wink</a></li>
<li><a href="http://wookie.apache.org/" title="Widgets for Applications">Wookie</a></li>
<li><a href="http://xalan.apache.org/" title="XSLT processors in Java and C++">Xalan</a></li>
<li><a href="http://xerces.apache.org/" title="XML parsers in Java, C++ and Perl">Xerces</a></li>
<li><a href="http://xmlbeans.apache.org/" title="XML-Java binding tool">XMLBeans</a></li>
<li><a href="http://xmlgraphics.apache.org/" title="Conversion from XML to graphical output">XML Graphics</a></li>
<li><a href="http://zookeeper.apache.org/" title="Centralized service for maintaining configuration information">ZooKeeper</a></li>
</ul>
</div>
<div class="grid_3">
<h4>Foundation</h4>
<ul>
<li><a href="/foundation/faq.html">FAQ</a></li>
<li><a href="/foundation/glossary.html">Glossary</a></li>
<li><a href="/licenses/" title="Overview of the Apache Licenese">Licenses</a></li>
<li><a href="/foundation/marks/" title="Apache marks policies and listing">Trademarks</a></li>
<li><a href="/foundation/news.html" title="Official news feed of Foundation announcements">News</a></li>
<li><a href="/press/" title="Press, Media, and Analyst contact">Press Inquiries</a></li>
<li><a href="/foundation/records/" title="Formal corporate records and board meeting minutes">Public Records</a></li>
<li><a href="/foundation/mailinglists.html" title="Mailing lists and Apache">Mailing Lists</a></li>
<li><a href="/foundation/sponsorship.html" title="Sponsor the Foundation">Sponsorship</a></li>
<li><a href="/foundation/contributing.html" title="Donate to the Foundation">Donations</a></li>
<li><a href="/foundation/buy_stuff.html" title="Buy Apache branded merchandise">Buy Stuff</a></li>
<li><a href="/foundation/thanks.html" title="Thank you to our Sponsors">Thanks</a></li>
<li><a href="/foundation/contact.html" title="Contact Us">Contact</a></li>
</ul>
</div>
<div class="grid_3 suffix_1">
<h4>Foundation Projects</h4>
<ul>
<li><a href="http://attic.apache.org/" title="Inactive projects repository">Attic</a></li>
<li><a href="/foundation/conferences.html" title="Meetings of developers and users">Conferences</a></li>
<li><a href="http://community.apache.org/" title="Helping newcomers to the ASF">Community Development</a></li>
<li><a href="http://incubator.apache.org/" title="Shepherd for new projects">Incubator</a></li>
<li><a href="/dev/" title="ASF Infrastructure: Operations and howto documents for PMCs and contributors">Infrastructure</a></li>
<li><a href="http://labs.apache.org/" title="The Innovation Laboratories of the Apache Software Foundation">Labs</a></li>
<li><a href="/legal/" title="Legal Affairs">Legal Affairs</a></li>
<li><a href="/press/" title="Public Relations">Public Relations</a></li>
<li><a href="/security/" title="Security">Security</a></li>
<li><a href="/travel/" title="Travel Assistance">Travel Assistance</a></li>
</ul>
</div>
<div class="grid_3">
<h4>Community</h4>
<ul>
<li><a href="http://people.apache.org/" title="Apache committer homepages">People</a></li>
<li><a href="/memorials/" title="In memoriam of past committers">Memorials</a></li>
<li><a href="http://feathercast.apache.org/" title="Apache Podcasts">Feathercast</a></li>
<li><a href="http://blogs.apache.org/" title="Apache Project Blogs">Project Blogs</a></li>
<li><a href="http://planet.apache.org/committers/" title="Apache Committers' Blogs">PlanetApache</a></li>
</ul>
</div>
<div class="grid_3">
<h4>How It Works</h4>
<ul>
<li><a href="/foundation/how-it-works.html">Introduction</a></li>
<li><a href="/foundation/how-it-works.html#meritocracy">Meritocracy</a></li>
<li><a href="/foundation/how-it-works.html#structure">Structure</a></li>
<li><a href="/foundation/how-it-works.html#roles">Roles</a></li>
<li><a href="/foundation/how-it-works.html#management">Collaboration</a></li>
<li><a href="/foundation/how-it-works.html#incubator">Incubator</a></li>
<li><a href="/foundation/how-it-works.html#other">Other entities</a></li>
<li><a href="/foundation/glossary.html">Glossary</a></li>
<li><a href="/foundation/voting.html">Voting</a></li>
</ul>
</div>
</div>
<div class="clear"></div>
</div>
<div id="copyright" class="container_16">
<p>Copyright © 2012 The Apache Software Foundation, Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.<br/>Apache and the Apache feather logo are trademarks of The Apache Software Foundation.</p>
</div>
</body>
</html>
| zangsir/ANNIS | annis-widgets/THIRD-PARTY/licenses/apache license, version 2.0 - license-2.0.html | HTML | apache-2.0 | 34,696 |
<!DOCTYPE html>
<!--
Copyright (c) 2012 Intel Corporation.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
* Redistributions of works must retain the original copyright notice, this list
of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the original copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name of Intel Corporation nor the names of its contributors
may be used to endorse or promote products derived from this work without
specific prior written permission.
THIS SOFTWARE IS PROVIDED BY INTEL CORPORATION "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL INTEL CORPORATION BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Authors:
Ge, WeiX A <[email protected]>
Li, HaoX <[email protected]>
-->
<html>
<head>
<title>WebSocket Test: websocket_WebSocket_onerror_exists</title>
<link rel="author" title="Intel" href="http://www.intel.com" />
<link rel="help" href="http://www.w3.org/TR/2012/CR-websockets-20120920/#handler-websocket-onerror" />
<meta name="flags" content=" " />
<meta name="assert" content="Check if WebSocket.onerror event exists" />
<script type="text/javascript" src="../resources/testharness.js"></script>
<script type="text/javascript" src="../resources/testharnessreport.js"></script>
<script type="text/javascript" src="support/websocket.js?pipe=sub"></script>
</head>
<body>
<div id="log"></div>
<script type="text/javascript">
test(function () {
var webSocket = CreateWebSocket(false, false, false);
assert_true("onerror" in webSocket, "WebSocket.onerror attribute exists");
});
</script>
</body>
</html>
| hgl888/web-testing-service | wts/tests/websocket/websocket_WebSocket_onerror_exists.html | HTML | bsd-3-clause | 2,465 |
{% load nonce %}
<h2>Find some friends</h2>
<div id="find-friends">
<form id="form-find-friends" action="" method="post">
<div class="box">
<p>
{{SITE_NAME}} is able to look at list of your friends to see which are
already using {{SITE_NAME}}. You will be redirected to another site
so that you can authorize {{SITE_NAME}} to access a list of your contacts.
</p>
<p>
We don't store any of this information.
</p>
</div>
<div class="buttons">
{{request.user|noncefield:"lookup_remote_contacts"}}
<input type="hidden" name="lookup_remote_contacts" />
<input type="hidden" name="nick" value="{{view.nick}}" />
{% block buttons %}
<input type="submit" value="Lookup Contacts" />
{% endblock %}
</div>
</form>
</div>
| codegooglecom/jaikuengine | common/templates/form_find_contacts.html | HTML | apache-2.0 | 818 |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Test everything.amp.html as iframed embed.</title>
<style>
iframe {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 100%;
height: 100%;
}
</style>
</head>
<body>
<iframe src="everything.amp.html#paddingTop=54&webview=1"
frameborder="0" width="100%" height="100%"
scrolling="no">
</iframe>
</body>
</html>
| lannka/amphtml | examples/everything.iframed.html | HTML | apache-2.0 | 484 |
<!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"/>
<title>rapidjson: rapidjson::GenericReader< Encoding, Allocator > 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/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 style="padding-left: 0.5em;">
<div id="projectname">rapidjson
</div>
<div id="projectbrief">A fast JSON parser/generator for C++ with both SAX/DOM style API</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.1.2 -->
<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 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="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)">
<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>Functions</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(3)"><span class="SelectionMark"> </span>Variables</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(4)"><span class="SelectionMark"> </span>Typedefs</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(5)"><span class="SelectionMark"> </span>Pages</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 id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>rapidjson</b></li><li class="navelem"><a class="el" href="classrapidjson_1_1_generic_reader.html">GenericReader</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="summary">
<a href="#pub-types">Public Types</a> |
<a href="#pub-methods">Public Member Functions</a> |
<a href="classrapidjson_1_1_generic_reader-members.html">List of all members</a> </div>
<div class="headertitle">
<div class="title">rapidjson::GenericReader< Encoding, Allocator > Class Template Reference</div> </div>
</div><!--header-->
<div class="contents">
<p>SAX-style JSON parser. Use Reader for <a class="el" href="structrapidjson_1_1_u_t_f8.html" title="UTF-8 encoding.">UTF8</a> encoding and default allocator.
<a href="classrapidjson_1_1_generic_reader.html#details">More...</a></p>
<p><code>#include <<a class="el" href="reader_8h_source.html">reader.h</a>></code></p>
<table class="memberdecls">
<tr class="heading"><td colspan="2"><h2><a name="pub-types"></a>
Public Types</h2></td></tr>
<tr class="memitem:a78b168d1221917d1c4545cd79275f2c1"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a78b168d1221917d1c4545cd79275f2c1"></a>
typedef Encoding::Ch </td><td class="memItemRight" valign="bottom"><b>Ch</b></td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr class="memitem:aba3910976c0dc79134ee715d6075684b"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classrapidjson_1_1_generic_reader.html#aba3910976c0dc79134ee715d6075684b">GenericReader</a> (<a class="el" href="classrapidjson_1_1_allocator.html">Allocator</a> *allocator=0, size_t stackCapacity=kDefaultStackCapacity)</td></tr>
<tr class="memdesc:aba3910976c0dc79134ee715d6075684b"><td class="mdescLeft"> </td><td class="mdescRight">Constructor. <a href="#aba3910976c0dc79134ee715d6075684b"></a><br/></td></tr>
<tr class="memitem:a62a1014258b1f716acc22782ee1cb269"><td class="memTemplParams" colspan="2">template<unsigned parseFlags, typename Stream , typename Handler > </td></tr>
<tr class="memitem:a62a1014258b1f716acc22782ee1cb269"><td class="memTemplItemLeft" align="right" valign="top">bool </td><td class="memTemplItemRight" valign="bottom"><a class="el" href="classrapidjson_1_1_generic_reader.html#a62a1014258b1f716acc22782ee1cb269">Parse</a> (<a class="el" href="classrapidjson_1_1_stream.html">Stream</a> &stream, <a class="el" href="classrapidjson_1_1_handler.html">Handler</a> &handler)</td></tr>
<tr class="memdesc:a62a1014258b1f716acc22782ee1cb269"><td class="mdescLeft"> </td><td class="mdescRight">Parse JSON text. <a href="#a62a1014258b1f716acc22782ee1cb269"></a><br/></td></tr>
<tr class="memitem:aa21dc3e432f6d178495e3d37e38cd6da"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aa21dc3e432f6d178495e3d37e38cd6da"></a>
bool </td><td class="memItemRight" valign="bottom"><b>HasParseError</b> () const </td></tr>
<tr class="memitem:aa08f6cb381c9de7f580792016c245068"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aa08f6cb381c9de7f580792016c245068"></a>
const char * </td><td class="memItemRight" valign="bottom"><b>GetParseError</b> () const </td></tr>
<tr class="memitem:a68d9cb6809b5f185b9c6f85c88683776"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a68d9cb6809b5f185b9c6f85c88683776"></a>
size_t </td><td class="memItemRight" valign="bottom"><b>GetErrorOffset</b> () const </td></tr>
</table>
<a name="details" id="details"></a><h2>Detailed Description</h2>
<div class="textblock"><h3>template<typename Encoding, typename Allocator = MemoryPoolAllocator<>><br/>
class rapidjson::GenericReader< Encoding, Allocator ></h3>
<p>SAX-style JSON parser. Use Reader for <a class="el" href="structrapidjson_1_1_u_t_f8.html" title="UTF-8 encoding.">UTF8</a> encoding and default allocator. </p>
<p><a class="el" href="classrapidjson_1_1_generic_reader.html" title="SAX-style JSON parser. Use Reader for UTF8 encoding and default allocator.">GenericReader</a> parses JSON text from a stream, and send events synchronously to an object implementing <a class="el" href="classrapidjson_1_1_handler.html" title="Concept for receiving events from GenericReader upon parsing.">Handler</a> concept.</p>
<p>It needs to allocate a stack for storing a single decoded string during non-destructive parsing.</p>
<p>For in-situ parsing, the decoded string is directly written to the source text string, no temporary buffer is required.</p>
<p>A <a class="el" href="classrapidjson_1_1_generic_reader.html" title="SAX-style JSON parser. Use Reader for UTF8 encoding and default allocator.">GenericReader</a> object can be reused for parsing multiple JSON text.</p>
<dl class="tparams"><dt>Template Parameters</dt><dd>
<table class="tparams">
<tr><td class="paramname"><a class="el" href="classrapidjson_1_1_encoding.html" title="Concept for encoding of Unicode characters.">Encoding</a></td><td><a class="el" href="classrapidjson_1_1_encoding.html" title="Concept for encoding of Unicode characters.">Encoding</a> of both the stream and the parse output. </td></tr>
<tr><td class="paramname"><a class="el" href="classrapidjson_1_1_allocator.html" title="Concept for allocating, resizing and freeing memory block.">Allocator</a></td><td><a class="el" href="classrapidjson_1_1_allocator.html" title="Concept for allocating, resizing and freeing memory block.">Allocator</a> type for stack. </td></tr>
</table>
</dd>
</dl>
</div><h2>Constructor & Destructor Documentation</h2>
<a class="anchor" id="aba3910976c0dc79134ee715d6075684b"></a>
<div class="memitem">
<div class="memproto">
<div class="memtemplate">
template<typename Encoding, typename Allocator = MemoryPoolAllocator<>> </div>
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classrapidjson_1_1_generic_reader.html">rapidjson::GenericReader</a>< <a class="el" href="classrapidjson_1_1_encoding.html">Encoding</a>, <a class="el" href="classrapidjson_1_1_allocator.html">Allocator</a> >::<a class="el" href="classrapidjson_1_1_generic_reader.html">GenericReader</a> </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classrapidjson_1_1_allocator.html">Allocator</a> * </td>
<td class="paramname"><em>allocator</em> = <code>0</code>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">size_t </td>
<td class="paramname"><em>stackCapacity</em> = <code>kDefaultStackCapacity</code> </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>Constructor. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">allocator</td><td>Optional allocator for allocating stack memory. (Only use for non-destructive parsing) </td></tr>
<tr><td class="paramname">stackCapacity</td><td>stack capacity in bytes for storing a single decoded string. (Only use for non-destructive parsing) </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<h2>Member Function Documentation</h2>
<a class="anchor" id="a62a1014258b1f716acc22782ee1cb269"></a>
<div class="memitem">
<div class="memproto">
<div class="memtemplate">
template<typename Encoding, typename Allocator = MemoryPoolAllocator<>> </div>
<div class="memtemplate">
template<unsigned parseFlags, typename Stream , typename Handler > </div>
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">bool <a class="el" href="classrapidjson_1_1_generic_reader.html">rapidjson::GenericReader</a>< <a class="el" href="classrapidjson_1_1_encoding.html">Encoding</a>, <a class="el" href="classrapidjson_1_1_allocator.html">Allocator</a> >::Parse </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classrapidjson_1_1_stream.html">Stream</a> & </td>
<td class="paramname"><em>stream</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classrapidjson_1_1_handler.html">Handler</a> & </td>
<td class="paramname"><em>handler</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>Parse JSON text. </p>
<dl class="tparams"><dt>Template Parameters</dt><dd>
<table class="tparams">
<tr><td class="paramname">parseFlags</td><td>Combination of ParseFlag. </td></tr>
<tr><td class="paramname"><a class="el" href="classrapidjson_1_1_stream.html" title="Concept for reading and writing characters.">Stream</a></td><td>Type of input stream. </td></tr>
<tr><td class="paramname"><a class="el" href="classrapidjson_1_1_handler.html" title="Concept for receiving events from GenericReader upon parsing.">Handler</a></td><td>Type of handler which must implement <a class="el" href="classrapidjson_1_1_handler.html" title="Concept for receiving events from GenericReader upon parsing.">Handler</a> concept. </td></tr>
</table>
</dd>
</dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">stream</td><td>Input stream to be parsed. </td></tr>
<tr><td class="paramname">handler</td><td>The handler to receive events. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Whether the parsing is successful. </dd></dl>
</div>
</div>
<hr/>The documentation for this class was generated from the following file:<ul>
<li>D:/rapidjson_version0.1x/include/rapidjson/<a class="el" href="reader_8h_source.html">reader.h</a></li>
</ul>
</div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Fri Nov 16 2012 21:08:20 for rapidjson by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.1.2
</small></address>
</body>
</html>
| brightchen/Impala | thirdparty/rapidjson/doc/html/classrapidjson_1_1_generic_reader.html | HTML | apache-2.0 | 15,047 |
{% assign author = page.author | default: page.authors[0] | default: site.author %}
{% assign author = site.data.authors[author] | default: author %}
<div itemscope itemtype="https://schema.org/Person">
{% if author.avatar %}
<div class="author__avatar">
{% if author.home %}
<a href="{{ author.home | relative_url }}">
<img src="{{ author.avatar | relative_url }}" alt="{{ author.name }}" itemprop="image">
</a>
{% else %}
<img src="{{ author.avatar | relative_url }}" alt="{{ author.name }}" itemprop="image">
{% endif %}
</div>
{% endif %}
<div class="author__content">
{% if author.home %}
<a href="{{ author.home | relative_url }}"><h3 class="author__name" itemprop="name">{{ author.name }}</h3></a>
{% else %}
<h3 class="author__name" itemprop="name">{{ author.name }}</h3>
{% endif %}
{% if author.bio %}
<div class="author__bio" itemprop="description">
{{ author.bio | markdownify }}
</div>
{% endif %}
</div>
<div class="author__urls-wrapper">
<button class="btn btn--inverse">{{ site.data.ui-text[site.locale].follow_label | remove: ":" | default: "Follow" }}</button>
<ul class="author__urls social-icons">
{% if author.location %}
<li itemprop="homeLocation" itemscope itemtype="https://schema.org/Place">
<i class="fas fa-fw fa-map-marker-alt" aria-hidden="true"></i> <span itemprop="name">{{ author.location }}</span>
</li>
{% endif %}
{% if author.links %}
{% for link in author.links %}
{% if link.label and link.url %}
<li><a href="{{ link.url }}" rel="nofollow noopener noreferrer"><i class="{{ link.icon | default: 'fas fa-link' }}" aria-hidden="true"></i><span class="label">{{ link.label }}</span></a></li>
{% endif %}
{% endfor %}
{% endif %}
{% if author.uri %}
<li>
<a href="{{ author.uri }}" itemprop="url">
<i class="fas fa-fw fa-link" aria-hidden="true"></i><span class="label">{{ site.data.ui-text[site.locale].website_label | default: "Website" }}</span>
</a>
</li>
{% endif %}
{% if author.email %}
<li>
<a href="mailto:{{ author.email }}">
<meta itemprop="email" content="{{ author.email }}" />
<i class="fas fa-fw fa-envelope-square" aria-hidden="true"></i><span class="label">{{ site.data.ui-text[site.locale].email_label | default: "Email" }}</span>
</a>
</li>
{% endif %}
{% if author.keybase %}
<li>
<a href="https://keybase.io/{{ author.keybase }}" itemprop="sameAs" rel="nofollow noopener noreferrer">
<i class="fas fa-fw fa-key" aria-hidden="true"></i><span class="label">Keybase</span>
</a>
</li>
{% endif %}
{% if author.twitter %}
<li>
<a href="https://twitter.com/{{ author.twitter }}" itemprop="sameAs" rel="nofollow noopener noreferrer">
<i class="fab fa-fw fa-twitter-square" aria-hidden="true"></i><span class="label">Twitter</span>
</a>
</li>
{% endif %}
{% if author.facebook %}
<li>
<a href="https://www.facebook.com/{{ author.facebook }}" itemprop="sameAs" rel="nofollow noopener noreferrer">
<i class="fab fa-fw fa-facebook-square" aria-hidden="true"></i><span class="label">Facebook</span>
</a>
</li>
{% endif %}
{% if author.linkedin %}
<li>
<a href="https://www.linkedin.com/in/{{ author.linkedin }}" itemprop="sameAs" rel="nofollow noopener noreferrer">
<i class="fab fa-fw fa-linkedin" aria-hidden="true"></i><span class="label">LinkedIn</span>
</a>
</li>
{% endif %}
{% if author.xing %}
<li>
<a href="https://www.xing.com/profile/{{ author.xing }}" itemprop="sameAs" rel="nofollow noopener noreferrer">
<i class="fab fa-fw fa-xing-square" aria-hidden="true"></i><span class="label">XING</span>
</a>
</li>
{% endif %}
{% if author.instagram %}
<li>
<a href="https://instagram.com/{{ author.instagram }}" itemprop="sameAs" rel="nofollow noopener noreferrer">
<i class="fab fa-fw fa-instagram" aria-hidden="true"></i><span class="label">Instagram</span>
</a>
</li>
{% endif %}
{% if author.tumblr %}
<li>
<a href="https://{{ author.tumblr }}.tumblr.com" itemprop="sameAs" rel="nofollow noopener noreferrer">
<i class="fab fa-fw fa-tumblr-square" aria-hidden="true"></i><span class="label">Tumblr</span>
</a>
</li>
{% endif %}
{% if author.bitbucket %}
<li>
<a href="https://bitbucket.org/{{ author.bitbucket }}" itemprop="sameAs" rel="nofollow noopener noreferrer">
<i class="fab fa-fw fa-bitbucket" aria-hidden="true"></i><span class="label">Bitbucket</span>
</a>
</li>
{% endif %}
{% if author.github %}
<li>
<a href="https://github.com/{{ author.github }}" itemprop="sameAs" rel="nofollow noopener noreferrer">
<i class="fab fa-fw fa-github" aria-hidden="true"></i><span class="label">GitHub</span>
</a>
</li>
{% endif %}
{% if author.gitlab %}
<li>
<a href="https://gitlab.com/{{ author.gitlab }}" itemprop="sameAs" rel="nofollow noopener noreferrer">
<i class="fab fa-fw fa-gitlab" aria-hidden="true"></i><span class="label">GitLab</span>
</a>
</li>
{% endif %}
{% if author.stackoverflow %}
<li>
<a href="https://stackoverflow.com/users/{{ author.stackoverflow }}" itemprop="sameAs" rel="nofollow noopener noreferrer">
<i class="fab fa-fw fa-stack-overflow" aria-hidden="true"></i><span class="label">Stack Overflow</span>
</a>
</li>
{% endif %}
{% if author.lastfm %}
<li>
<a href="https://last.fm/user/{{ author.lastfm }}" itemprop="sameAs" rel="nofollow noopener noreferrer">
<i class="fab fa-fw fa-lastfm-square" aria-hidden="true"></i><span class="label">Last.fm</span>
</a>
</li>
{% endif %}
{% if author.dribbble %}
<li>
<a href="https://dribbble.com/{{ author.dribbble }}" itemprop="sameAs" rel="nofollow noopener noreferrer">
<i class="fab fa-fw fa-dribbble" aria-hidden="true"></i><span class="label">Dribbble</span>
</a>
</li>
{% endif %}
{% if author.pinterest %}
<li>
<a href="https://www.pinterest.com/{{ author.pinterest }}" itemprop="sameAs" rel="nofollow noopener noreferrer">
<i class="fab fa-fw fa-pinterest" aria-hidden="true"></i><span class="label">Pinterest</span>
</a>
</li>
{% endif %}
{% if author.foursquare %}
<li>
<a href="https://foursquare.com/{{ author.foursquare }}" itemprop="sameAs" rel="nofollow noopener noreferrer">
<i class="fab fa-fw fa-foursquare" aria-hidden="true"></i><span class="label">Foursquare</span>
</a>
</li>
{% endif %}
{% if author.steam %}
<li>
<a href="https://steamcommunity.com/id/{{ author.steam }}" itemprop="sameAs" rel="nofollow noopener noreferrer">
<i class="fab fa-fw fa-steam" aria-hidden="true"></i><span class="label">Steam</span>
</a>
</li>
{% endif %}
{% if author.youtube %}
{% if author.youtube contains "://" %}
<li>
<a href="{{ author.youtube }}" itemprop="sameAs" rel="nofollow noopener noreferrer">
<i class="fab fa-fw fa-youtube" aria-hidden="true"></i><span class="label">YouTube</span>
</a>
</li>
{% elsif author.youtube %}
<li>
<a href="https://www.youtube.com/user/{{ author.youtube }}" itemprop="sameAs" rel="nofollow noopener noreferrer">
<i class="fab fa-fw fa-youtube" aria-hidden="true"></i><span class="label">YouTube</span>
</a>
</li>
{% endif %}
{% endif %}
{% if author.soundcloud %}
<li>
<a href="https://soundcloud.com/{{ author.soundcloud }}" itemprop="sameAs" rel="nofollow noopener noreferrer">
<i class="fab fa-fw fa-soundcloud" aria-hidden="true"></i><span class="label">SoundCloud</span>
</a>
</li>
{% endif %}
{% if author.weibo %}
<li>
<a href="https://www.weibo.com/{{ author.weibo }}" itemprop="sameAs" rel="nofollow noopener noreferrer">
<i class="fab fa-fw fa-weibo" aria-hidden="true"></i><span class="label">Weibo</span>
</a>
</li>
{% endif %}
{% if author.flickr %}
<li>
<a href="https://www.flickr.com/{{ author.flickr }}" itemprop="sameAs" rel="nofollow noopener noreferrer">
<i class="fab fa-fw fa-flickr" aria-hidden="true"></i><span class="label">Flickr</span>
</a>
</li>
{% endif %}
{% if author.codepen %}
<li>
<a href="https://codepen.io/{{ author.codepen }}" itemprop="sameAs" rel="nofollow noopener noreferrer">
<i class="fab fa-fw fa-codepen" aria-hidden="true"></i><span class="label">CodePen</span>
</a>
</li>
{% endif %}
{% if author.vine %}
<li>
<a href="https://vine.co/u/{{ author.vine }}" itemprop="sameAs" rel="nofollow noopener noreferrer">
<i class="fab fa-fw fa-vine" aria-hidden="true"></i><span class="label">{{ site.data.ui-text[site.locale].email_label | default: "Email" }}</span>
</a>
</li>
{% endif %}
{% include author-profile-custom-links.html %}
</ul>
</div>
</div>
| phischroeder/phischroeder.github.io | _includes/author-profile.html | HTML | mit | 9,981 |
{{#if analyticsId}}
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', '{{#if analyticsAltId}}{{analyticsAltId}}{{else}}{{analyticsId}}{{/if}}', 'jsbin.com');
ga('require', 'linkid', 'linkid.js');
ga('require', 'displayfeatures');
ga('send', 'pageview');
{{#if user}}ga('set', 'dimension1', '{{user.id}}');{{/if}}
</script>
{{/if}} | mlucool/jsbin | views/partials/analytics.html | HTML | mit | 615 |
<!DOCTYPE html>
<style>
div {
border: solid 1px #000;
position: absolute;
top: 127.223px;
left: 80.334px;
width: 360.4px;
height: 170.3px;
overflow: hidden;
}
</style>
<div></div>
| nwjs/chromium.src | third_party/blink/web_tests/fast/sub-pixel/fractional-border-location-and-size-expected.html | HTML | bsd-3-clause | 244 |
<!DOCTYPE html>
<p>Test that an inner multicol that's also a spanner is rendered correctly.</p>
<p>There should be a green cross below. The word "PASS" should be seen on its right arm.</p>
<div style="-webkit-column-count:2; line-height:50px; width:300px; -webkit-column-rule:100px solid green;">
<br>
<br>
<br>
<div style="-webkit-column-span:all; -webkit-columns:3; -webkit-column-gap:0; text-align:center; color:white; background:green;">
<br><br><br><br><br>PASS
</div>
<br>
<br>
<br>
</div>
| scheib/chromium | third_party/blink/web_tests/fast/multicol/span/as-inner-multicol.html | HTML | bsd-3-clause | 536 |
---
layout: example.html
title: WMS GetFeatureInfo (Image Layer)
shortdesc: Using an image WMS source with GetFeatureInfo requests
docs: >
This example shows how to trigger WMS GetFeatureInfo requests on click for a WMS image layer. Additionally <code>map.forEachLayerAtPixel</code> is used to change the mouse pointer when hovering a non-transparent pixel on the map.
tags: "getfeatureinfo, forEachLayerAtPixel"
---
<div id="map" class="map"></div>
<div id="info"> </div>
| LeoLombardi/tos-laimas-compass | tos-laimas-compass-win32-x64/resources/app/node_modules/openlayers/examples/getfeatureinfo-image.html | HTML | mit | 481 |
<!doctype html>
<html lang=en>
<meta charset=utf-8>
<title>CSS-contain test: style containment and break-before</title>
<link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net">
<meta name=flags content="">
<meta name=assert content="style containment is not (any longer) supposed to have any effect on the break-before property.">
<link rel="match" href="reference/contain-style-breaks-004-ref.html">
<link rel=help href="https://drafts.csswg.org/css-contain-1/#containment-style">
<style>
article {
columns: 2 1ch;
column-gap: 0;
float: left;
font-family: monospace;
margin-right: 3em;
line-height: 1;
height: 4em;
column-fill: auto;
}
div > div:last-of-type {
break-before: column;
}
#test > div {
contain: style;
}
</style>
<p>Test passes if there are two identical blocks “A” letters below.
<article id=ref>
<div>
<div>A<br>A</div>
<div>A<br>A</div>
</div>
</article>
<article id=test>
<div>
<div>A<br>A</div>
<div>A<br>A</div>
</div>
</article>
<!--
Having two blocks to avoid making browsers that don't support the property at all fail.
Since containment is supposed to have no effect, failing such browsers would not be useful.
-->
| nwjs/chromium.src | third_party/blink/web_tests/external/wpt/css/css-contain/contain-style-breaks-004.html | HTML | bsd-3-clause | 1,223 |
<!doctype html>
<html>
<head>
<meta charset='utf-8'>
<title>Manual Column Freeze - Handsontable</title>
<!--
Loading Handsontable (full distribution that includes all dependencies)
-->
<link data-jsfiddle="common" rel="stylesheet" media="screen" href="../dist/handsontable.css">
<link data-jsfiddle="common" rel="stylesheet" media="screen" href="../dist/pikaday/pikaday.css">
<script data-jsfiddle="common" src="../dist/pikaday/pikaday.js"></script>
<script data-jsfiddle="common" src="../dist/moment/moment.js"></script>
<script data-jsfiddle="common" src="../dist/zeroclipboard/ZeroClipboard.js"></script>
<script data-jsfiddle="common" src="../dist/handsontable.js"></script>
<!--
Loading demo dependencies. They are used here only to enhance the examples on this page
-->
<link data-jsfiddle="common" rel="stylesheet" media="screen" href="css/samples.css?20140331">
<script src="js/samples.js"></script>
<script src="js/highlight/highlight.pack.js"></script>
<link rel="stylesheet" media="screen" href="js/highlight/styles/github.css">
<link rel="stylesheet" href="css/font-awesome/css/font-awesome.min.css">
<!--
Facebook open graph. Don't copy this to your project :)
-->
<meta property="og:title" content="Manual Column Freeze">
<meta property="og:description"
content="This page shows how to configure Handsontable Manual Column Freeze Plugin">
<meta property="og:url" content="http://handsontable.com/demo/column_freeze.html">
<meta property="og:image" content="http://handsontable.com/demo/image/og-image.png">
<meta property="og:image:type" content="image/png">
<meta property="og:image:width" content="409">
<meta property="og:image:height" content="164">
<link rel="canonical" href="http://handsontable.com/demo/column_freeze.html">
<!--
Google Analytics for GitHub Page. Don't copy this to your project :)
-->
<script src="js/ga.js"></script>
</head>
<body>
<div class="wrapper">
<div class="wrapper-row">
<div id="global-menu-clone">
<h1><a href="../index.html">Handsontable</a></h1>
</div>
<div id="container">
<div class="columnLayout">
<div class="rowLayout">
<div class="descLayout">
<div class="pad" data-jsfiddle="example1">
<h2>Manual Column Freeze</h2>
<p>In order to manually freeze a column (in another words - make it fixed), you need to set the <code>manualColumnFreeze</code>
config item to <code>true</code> in Handsontable initialization.</p>
<p>When the Manual Column Freeze plugin is enabled, you can freeze any non-fixed column and unfreeze any
fixed column in your Handsontable instance using the Context Menu.</p>
<p>Note: to properly use this plugin, you need to have the Context Menu plugin enabled.</p>
<div id="example1" style="width: 400px; height: 300px; overflow: hidden;"></div>
<p>
<button name="dump" data-instance="ht" data-dump="#example1"
title="Prints current data source to Firebug/Chrome Dev Tools">
Dump data to console
</button>
</p>
</div>
</div>
<div class="codeLayout">
<div class="pad">
<div class="jsFiddle">
<button class="jsFiddleLink" data-runfiddle="example1">Edit in jsFiddle</button>
</div>
<script data-jsfiddle="example1">
var myData = Handsontable.helper.createSpreadsheetData(1000, 100);
var container = document.getElementById('example1');
var ht = new Handsontable(container, {
data: myData,
rowHeaders: true,
colHeaders: true,
fixedColumnsLeft: 2,
contextMenu: true,
manualColumnFreeze: true
});
</script>
</div>
</div>
</div>
<div class="footer-text">
</div>
</div>
</div>
</div>
</div>
<div id="outside-links-wrapper"></div>
</body>
</html>
| siansell/perch-cms-fieldtype-piechart | simona_piechart/handsontable-0.19.0/demo/column_freeze.html | HTML | mit | 4,220 |
<!DOCTYPE html>
<html>
<body>
<p>This test ensures WebKit does not fire click event on a node that has been removed and inserted back in mouseup event.</p>
<div id="test"><span id="target" onmouseup="mouseup()" onclick="test.innerHTML = 'FAIL';">click here</span></div>
<script>
var test = document.getElementById('test');
var target = document.getElementById('target');
function mouseup() {
test.appendChild(document.createTextNode('PASS'));
test.removeChild(target);
test.appendChild(target);
}
if (window.testRunner) {
testRunner.dumpAsText();
if (!window.eventSender)
test.innerHTML = 'FAIL - this test requires eventSender';
else {
eventSender.mouseMoveTo(target.offsetLeft + target.offsetWidth / 2, target.offsetTop + target.offsetHeight / 2);
eventSender.mouseDown();
eventSender.leapForward(200);
eventSender.mouseUp();
test.removeChild(target);
}
}
</script>
</body>
</html>
| js0701/chromium-crosswalk | third_party/WebKit/LayoutTests/fast/events/remove-target-in-mouseup-insertback.html | HTML | bsd-3-clause | 964 |
<html>
<head>
<meta charset="ISO-8859-8">
<body>
<p>Test rendering of ISO-8859-8.
<p>
<div class="test">ùðá</div>
<div class="test">ùðá â÷ë </div>
<div class="test">ùðá abc â÷ë</div>
<div class="test">abc ùðá def</div>
<div class="test">ùðá <span dir=ltr>â÷ë</span></div>
<div class="test">ùðá <span dir=rtl>â÷ë</span></div>
<ul id="console" dir=ltr></ul>
<script src="../../../resources/js-test.js"></script>
<script>
var succeed = true;
function checkClientRect(test, index, offset, dir, char)
{
if (test.nodeType == 3) {
for (var i = 0; i < test.textContent.length; ++i) {
range.setStart(test, i);
range.setEnd(test, i+1);
rects = range.getClientRects();
if (dir == "ltr") {
if (rects[0].left < offset) {
testFailed("Test " + index + " LTR: character " + range.toString() + " should be rendered right of " + char);
succeed = false;
}
} else {
if (rects[0].left > offset) {
testFailed("Test " + index + " RTL: character " + range.toString() + " should be rendered left of " + char);
succeed = false;
}
}
offset = rects[0].left;
char = range.toString();
}
} else if (test.nodeType == 1) {
for (var node = test.firstChild; node; node = node.nextSibling) {
checkClientRect(node, index, offset, dir, char);
}
}
}
if (window.testRunner)
testRunner.dumpAsText();
var tests = document.getElementsByClassName('test');
var range = document.createRange();
for (var i = 0; i < tests.length; ++i) {
checkClientRect(tests[i], i, -1, "ltr", " ");
tests[i].style.direction = "rtl";
checkClientRect(tests[i], i, 10000, "rtl", " ");
tests[i].style.display = "none";
}
if (succeed == true)
testPassed("Test completed successfully");
</script>
</body>
</html>
| scheib/chromium | third_party/blink/web_tests/virtual/text-antialias/international/iso-8859-8.html | HTML | bsd-3-clause | 2,170 |
<html>
<head>
<script src="../../../resources/js-test.js"></script>
</head>
<body>
<script>
worker = startWorker('../resources/simple-persistent.js');
</script>
</body>
</html>
| scheib/chromium | third_party/blink/web_tests/fast/filesystem/workers/simple-persistent.html | HTML | bsd-3-clause | 177 |
<div>
{% if site.fb-share %}
<div style="float:left; padding: 0 5px; vertical-align:top">
<div class="fb-share-button" data-href="{{ site.url }}{{ page.url }}" data-layout="button_count"></div>
</div>
{% endif %}
{% if site.twitter-share %}
<div style="float:left; padding: 0 5px; vertical-align:top">
<a href="https://twitter.com/share" class="twitter-share-button" data-url="{{ site.url }}{{ page.url }}" data-text="{{ page.title }} {% for tag in page.tags%}#{{ tag }} {% endfor %}"></a>
</div>
{% endif %}
{% if site.reddit-share %}
<div style="float:left; padding: 0 5px; vertical-align:top">
<script type="text/javascript">reddit_newwindow='1'</script>
<script type="text/javascript">reddit_title='{{ page.title }}'</script>
<script type="text/javascript">reddit_url='{{ site.url }}/{{ page.url }}'</script>
<script type="text/javascript" src="//www.redditstatic.com/button/button1.js"></script>
</div>
{% endif %}
</div>
| chmullig/chmullig.github.io | _includes/share.html | HTML | mit | 963 |
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="do-not-crash-when-checking-frame-view-is-scrollable.css">
<script>
document.createElement("div").offsetParent;
if (window.testRunner)
testRunner.dumpAsText();
</script>
</head>
<body>
</body>
</html>
| scheib/chromium | third_party/blink/web_tests/compositing/overflow/do-not-crash-when-checking-frame-view-is-scrollable.html | HTML | bsd-3-clause | 298 |
<html ng-app="nameApp">
<head>
<meta charset="utf-8">
<title>Angular.js Example</title>
<script src="//cdnjs.cloudflare.com/ajax/libs/angular.js/1.2.1/angular.min.js"></script>
<script>
var nameApp = angular.module('nameApp', []);
nameApp.controller('NameCtrl', function ($scope){
$scope.names = ['Larry', 'Curly', 'Moe'];
$scope.addName = function() {
$scope.names.push($scope.enteredName);
};
});
</script>
</head>
<body ng-controller="NameCtrl">
<ul>
<li ng-repeat="name in names">{{name}}</li>
</ul>
<form ng-submit="addName()">
<input type="text" ng-model="enteredName">
<input type="submit" value="add">
</form>
</body>
</html>
| theclinicdotcom/screencasts | introToAngular/examples/snapshots/snapshot15/index.html | HTML | mit | 749 |
<dom-module id="x-child">
<template>
<div id="simple">simple</div>
<div id="complex1" class="scoped">complex1</div>
<div id="complex2" selected>complex2</div>
<div id="media">media</div>
<div id="shadow" class="shadowTarget">shadowTarget</div>
<div id="deep" class="deepTarget">deepTarget</div>
</template>
</dom-module>
<script>
Polymer({
is: 'x-child',
hostAttributes: {
class: 'nug'
}
});
</script>
<dom-module id="x-child2">
<style>
:host(.wide) #target{
border: none;
}
</style>
<template>
<div id="target">x-child2</div>
</template>
</dom-module>
<script>
Polymer({
is: 'x-child2',
_scopeCssViaAttr: true
});
</script>
<dom-module id="x-styled">
<style>
:host {
display: block;
border: 1px solid orange;
}
:host(.wide) {
border-width: 2px;
}
#simple {
border: 3px solid orange;
}
.scoped, [selected] {
border: 4px solid pink;
}
@media(max-width: 10000px) {
.media {
border: 5px solid brown;
}
}
.container ::content > * {
border: 6px solid navy;
}
x-child::shadow .shadowTarget {
border: 7px solid tomato;
}
x-child /deep/ .deepTarget {
border: 8px solid red;
}
#priority {
border: 9px solid orange;
}
x-child2.wide::shadow #target {
border: 12px solid brown;
}
.container1 > ::content > .content1 {
border: 13px solid navy;
}
.container2 > ::content .content2 {
border: 14px solid navy;
}
.computed {
border: 15px solid orange;
}
.computeda {
border: 20px solid orange;
}
#child {
border: 16px solid tomato;
display: block;
}
</style>
<template>
<content select=".blank"></content>
<div id="simple">simple</div>
<div id="complex1" class="scoped">complex1</div>
<div id="complex2" selected>complex2</div>
<div id="media" class="media">media</div>
<div class="container1">
<content select=".content1"></content>
</div>
<div class="container2">
<content select=".content2"></content>
</div>
<div class="container">
<content></content>
</div>
<x-child id="child"></x-child>
<div id="priority">priority</div>
<x-child2 class="wide" id="child2"></x-child2>
<div id="computed" class$="{{computeClass(aClass)}}">Computed</div>
<div id="repeatContainer">
<template id="repeat" is="x-repeat" items="{{items}}">
<a class$="{{parent.aaClass}}">A Computed</a>
</template>
</div>
</template>
</dom-module>
<script>
Polymer({
is: 'x-styled',
properties: {
items: {value: [{}]}
},
computeClass: function(className) {
return className;
}
});
</script>
<dom-module id="x-button">
<style>
:host {
border: 10px solid beige;
}
:host(.special) {
border: 11px solid beige;
}
</style>
<template>
Button!
</template>
</dom-module>
<script>
Polymer({
is: 'x-button',
extends: 'button'
});
</script>
<template id="dynamic">
<div class="added">
Added
<div class="sub-added">
Sub-added
</div>
</div>
</div>
</template>
<dom-module id="x-dynamic-scope">
<style>
.added {
border: 17px solid beige;
}
.sub-added {
border: 18px solid #fafafa;
}
</style>
<template>
<div id="container"></div>
</template>
</dom-module>
<script>
(function() {
var doc = document._currentScript.ownerDocument;
var dynamic = doc.querySelector('template#dynamic');
Polymer({
is: 'x-dynamic-scope',
ready: function() {
// setup node for scope watching
this.scopeSubtree(this.$.container, true);
// simulate 3rd party action by using normal dom to add to element.
var dom = document.importNode(dynamic.content, true);
this.$.container.appendChild(dom);
}
});
})();
</script> | soracoder/wallpapp | www/bower_components/polymer/test/unit/styling-scoped-elements.html | HTML | mit | 3,992 |
<!--topic 1-->
<div class="row post impressions new hide-for-small">
<div class="small-12 columns">
<ul class="post-count-spacing small-block-grid-2 large-block-grid-2">
<% if (comments_count > 0) { %>
<li>
<div class="post-count new already-checked">
<a href="#">
<div class="post-count-container new already-checked">
<span class="reply-count new-post already-checked">NEW</span>
</div>
<div class="total-post-count new total-replies">
<% if (comments_count == 1) { %>
<%= comments_count %> Reply
<% } else { %>
<%= comments_count %> Replies
<% } %>
</div>
</a>
</div>
</li>
<% } else { %>
<li>
<div class="post-count new-general">
<a href="<%= url %>">
<div class="post-count-container new-general">
<span class="reply-count new-general">NEW</span>
</div>
</a>
</div>
<a href="<%= url %>"></a>
</li>
<% } %>
<li>
<div class="post-description">
<h5 class="content-title">
<a href="<%= url %>"><%= title || "Untitled" %></a>
</h5>
<p class="author-name">
By
<span class="author">
<strong>
<%= author_name %>
<% if (typeof(latest_comment_author_name) != "undefined") { %>,<% } %>
</strong>
</span>
<% if (typeof(latest_comment_author_name) != "undefined") { %>
<span class="by">last Reply by</span>
<span class="when">
<span class="author">
<strong><%= latest_comment_author_name %></strong>
</span>
about <%= latest_comment_created_at_time_ago %> ago
</span>
<% } else { %>
<span class="when">about <%= created_at_time_ago %> ago</span>
<% } %>
</p>
<div class="post-description copy">
<p><%= body %></p>
</div>
</div>
</li>
</ul>
<hr class="dashed">
</div>
</div>
<!-- end topic 1 large -->
<!-- start topic 1 small -->
<div class="row post impressions new show-for-small">
<div class="small-12 columns">
<ul class="post-count-spacing small-block-grid-2 large-block-grid-2">
<% if (comments_count > 0) { %>
<li>
<div class="post-count new already-checked">
<a href="<%= url %>">
<div class="post-count-container new already-checked">
<span class="reply-count new-post already-checked">NEW</span>
</div>
<% if (comments_count > 0) { %>
<div class="total-post-count new total-replies">
<% if (comments_count == 1) { %>
<%= comments_count %> Reply
<% } else { %>
<%= comments_count %> Replies
<% } %>
</div>
<% } %>
</a>
</div>
</li>
<% } else { %>
<li>
<div class="post-count new-general">
<a href="<%= url %>">
<div class="post-count-container new-general">
<span class="reply-count new-general">NEW</span>
</div>
</a>
</div>
<a href="<%= url %>"></a>
</li>
<% } %>
<li>
<h5 class="content-title">
<a href="<%= url %>"><%= title || "Untitled" %></a>
</h5>
<p class="author-name">
By
<span class="author">
<strong>
<%= author_name %>
<% if (typeof(latest_comment_author_name) != "undefined") { %>,<% } %>
</strong>
</span>
<% if (typeof(latest_comment_author_name) != "undefined") { %>
<span class="by">last Reply by</span>
<span class="when">
<span class="author">
<strong><%= latest_comment_author_name %></strong>
</span>
about <%= latest_comment_created_at_time_ago %> ago
</span>
<% } else { %>
<span class="when">about <%= created_at_time_ago %> ago</span>
<% } %>
</p>
</li>
</ul>
<div class="post-description">
<div class="post-description copy">
<p>Having issues installing with Compass and can't find a fix online. $ foundation new test Creating ./test exist test... (continued)</p>
</div>
</div>
<hr class="dashed">
</div>
</div>
<!--end topic 1 small--> | milardovich/agenda-moparman | vendor/zurb/foundation/doc/templates/forum_post.html | HTML | mit | 5,170 |
<!doctype html>
<!--[if lt IE 7]><html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
<!--[if (IE 7)&!(IEMobile)]><html class="no-js lt-ie9 lt-ie8" lang="en"><![endif]-->
<!--[if (IE 8)&!(IEMobile)]><html class="no-js lt-ie9" lang="en"><![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"><!--<![endif]-->
<head>
{% include _head.html %}
</head>
<body class="post">
{% include _browser-upgrade.html %}
{% include _navigation.html %}
{% if page.image.feature %}
<div class="image-wrap">
<img src=
{% if page.image.feature contains 'http' %}
"{{ page.image.feature }}"
{% else %}
"{{ site.url }}/images/{{ page.image.feature }}"
{% endif %}
alt="{{ page.title }} feature image">
{% if page.image.credit %}
<span class="image-credit">Photo Credit: <a href="{{ page.image.creditlink }}">{{ page.image.credit }}</a></span>
{% endif %}
</div><!-- /.image-wrap -->
{% endif %}
<div id="main" role="main">
<div class="article-author-side">
{% include _author-bio.html %}
</div>
<article class="post">
<div class="headline-wrap">
{% if page.link %}
<h1><a href="{{ page.link }}">{{ page.title }}</a></h1>
{% else %}
<h1><a href="{{ site.url }}{{ page.url }}" rel="bookmark" title="{{ page.title }}">{{ page.title }}</a></h1>
{% endif %}
</div><!--/ .headline-wrap -->
<div class="article-wrap">
{{ content }}
<hr />
<footer role="contentinfo">
{% if page.share != false %}{% include _social-share.html %}{% endif %}
<p class="byline"><strong>{{ page.title }}</strong> was published on <time datetime="{{ page.date | date_to_xmlschema }}">{{ page.date | date: "%B %d, %Y" }}</time>{% if page.modified %} and last modified on <time datetime="{{ page.modified | date: "%Y-%m-%d" }}">{{ page.modified | date: "%B %d, %Y" }}</time>{% endif %}.</p>
</footer>
</div><!-- /.article-wrap -->
{% if site.owner.disqus-shortname and page.comments == true %}
<section id="disqus_thread"></section><!-- /#disqus_thread -->
{% endif %}
</article>
</div><!-- /#main -->
<div class="footer-wrap">
<div class="related-articles">
<h4>You might also enjoy <small class="pull-right">(<a href="{{ site.url }}/posts/">View all posts</a>)</small></h4>
<ul>
{% for post in site.related_posts limit:3 %}
<li><a href="{{ site.url }}{{ post.url }}" title="{{ post.title }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
<hr />
</div><!-- /.related-articles -->
<footer>
{% include _footer.html %}
</footer>
</div><!-- /.footer-wrap -->
{% include _scripts.html %}
</body>
</html> | vaquero-io/vaquero-io.github.io | _layouts/post.html | HTML | mit | 2,673 |
{% extends 'base.html' %}
{% load i18n %}
{% block title %}{% trans "Domains" %}{% endblock %}
{% block page_header %}
{% include "horizon/common/_domain_page_header.html" with title=page_title %}
{% endblock page_header %}
{% block main %}
{{ table.render }}
{% endblock %}
| FNST-OpenStack/horizon | openstack_dashboard/dashboards/identity/domains/templates/domains/index.html | HTML | apache-2.0 | 283 |
<div>
監控每個 Slave 的 <tt>$JENKINS_HOME</tt> 可用磁碟空間,低於臨界值的 Slave 會被標為離線。
<p>
所有建置都在這個目錄裡執行。如果滿了,接下來的建置都會失敗。
</div> | msrb/jenkins | core/src/main/resources/hudson/node_monitors/DiskSpaceMonitor/help_zh_TW.html | HTML | mit | 234 |
<!DOCTYPE html>
<!-- DO NOT EDIT! Generated by referrer-policy/generic/tools/generate.py using referrer-policy/generic/template/test.release.html.template. -->
<html>
<head>
<title>Referrer-Policy: Referrer Policy is set to 'no-referrer'</title>
<meta name="description" content="Check that sub-resource never gets the referrer URL.">
<meta http-equiv="Content-Security-Policy" content="referrer no-referrer">
<link rel="author" title="Kristijan Burnik" href="[email protected]">
<link rel="help" href="https://w3c.github.io/webappsec/specs/referrer-policy/#referrer-policy-state-no-referrer">
<meta name="assert" content="The referrer URL is omitted when a
document served over http requires an https
sub-resource via script-tag using the meta-csp
delivery method with keep-origin-redirect and when
the target request is same-origin.">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<!-- TODO(kristijanburnik): Minify and merge both: -->
<script src="/referrer-policy/generic/common.js"></script>
<script src="/referrer-policy/generic/referrer-policy-test-case.js?pipe=sub"></script>
</head>
<body>
<script>
ReferrerPolicyTestCase(
{
"referrer_policy": "no-referrer",
"delivery_method": "meta-csp",
"redirection": "keep-origin-redirect",
"origin": "same-origin",
"source_protocol": "http",
"target_protocol": "https",
"subresource": "script-tag",
"subresource_path": "/referrer-policy/generic/subresource/script.py",
"referrer_url": "omitted"
},
document.querySelector("meta[name=assert]").content,
new SanityChecker()
).start();
</script>
<div id="log"></div>
</body>
</html>
| youtube/cobalt | third_party/web_platform_tests/referrer-policy/no-referrer/meta-csp/same-origin/http-https/script-tag/generic.keep-origin-redirect.http.html | HTML | bsd-3-clause | 1,971 |
<!DOCTYPE html>
<html lang="en">
<head>
<title>three.js canvas - point light</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<style>
body {
background-color: #000000;
margin: 0px;
overflow: hidden;
}
#info {
position: absolute;
top: 0px; width: 100%;
color: #ffffff;
padding: 5px;
font-family: Monospace;
font-size: 13px;
text-align: center;
}
a {
color: #ff0080;
text-decoration: none;
}
a:hover {
color: #0080ff;
}
</style>
</head>
<body>
<div id="container"></div>
<div id="info">
<a href="http://threejs.org" target="_blank">three.js</a> - point lights demo.<br />
Walt Disney head by <a href="http://davidoreilly.com/post/18087489343/disneyhead" target="_blank">David OReilly</a>
</div>
<script src="../build/three.min.js"></script>
<script src="js/renderers/Projector.js"></script>
<script src="js/renderers/CanvasRenderer.js"></script>
<script>
var camera, scene, renderer,
light1, light2, light3,
loader, mesh;
init();
animate();
function init() {
var container = document.getElementById( 'container' );
camera = new THREE.PerspectiveCamera( 60, window.innerWidth / window.innerHeight, 1, 1000 );
camera.position.set( 0, - 6, 100 );
scene = new THREE.Scene();
scene.add( new THREE.AmbientLight( 0x00020 ) );
light1 = new THREE.PointLight( 0xff0040, 1, 50 );
scene.add( light1 );
light2 = new THREE.PointLight( 0x0040ff, 1, 50 );
scene.add( light2 );
light3 = new THREE.PointLight( 0x80ff80, 1, 50 );
scene.add( light3 );
var PI2 = Math.PI * 2;
var program = function ( context ) {
context.beginPath();
context.arc( 0, 0, 0.5, 0, PI2, true );
context.fill();
}
var sprite = new THREE.Sprite( new THREE.SpriteCanvasMaterial( { color: 0xff0040, program: program } ) );
light1.add( sprite );
var sprite = new THREE.Sprite( new THREE.SpriteCanvasMaterial( { color: 0x0040ff, program: program } ) );
light2.add( sprite );
var sprite = new THREE.Sprite( new THREE.SpriteCanvasMaterial( { color: 0x80ff80, program: program } ) );
light3.add( sprite );
loader = new THREE.JSONLoader();
loader.load( 'obj/WaltHeadLo.js', function ( geometry ) {
mesh = new THREE.Mesh( geometry, new THREE.MeshLambertMaterial( { color: 0xffffff, shading: THREE.FlatShading, overdraw: 0.5 } ) );
scene.add( mesh );
} );
renderer = new THREE.CanvasRenderer();
renderer.setPixelRatio( window.devicePixelRatio );
renderer.setSize( window.innerWidth, window.innerHeight );
container.appendChild( renderer.domElement );
//
window.addEventListener( 'resize', onWindowResize, false );
}
function onWindowResize() {
camera.aspect = window.innerWidth / window.innerHeight;
camera.updateProjectionMatrix();
renderer.setSize( window.innerWidth, window.innerHeight );
}
//
function animate() {
requestAnimationFrame( animate );
render();
}
function render() {
var time = Date.now() * 0.0005;
if ( mesh ) mesh.rotation.y -= 0.01;
light1.position.x = Math.sin( time * 0.7 ) * 30;
light1.position.y = Math.cos( time * 0.5 ) * 40;
light1.position.z = Math.cos( time * 0.3 ) * 30;
light2.position.x = Math.cos( time * 0.3 ) * 30;
light2.position.y = Math.sin( time * 0.5 ) * 40;
light2.position.z = Math.sin( time * 0.7 ) * 30;
light3.position.x = Math.sin( time * 0.7 ) * 30;
light3.position.y = Math.cos( time * 0.3 ) * 40;
light3.position.z = Math.sin( time * 0.5 ) * 30;
renderer.render( scene, camera );
}
</script>
</body>
</html>
| ryangibbs/tosser | three.js/examples/canvas_lights_pointlights.html | HTML | mit | 3,800 |
<!DOCTYPE html>
<html>
<head>
<title>fancyBox - Fancy jQuery Lightbox Alternative | Demonstration</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<!-- Add jQuery library -->
<script type="text/javascript" src="../lib/jquery-1.8.2.min.js"></script>
<!-- Add mousewheel plugin (this is optional) -->
<script type="text/javascript" src="../lib/jquery.mousewheel-3.0.6.pack.js"></script>
<!-- Add fancyBox main JS and CSS files -->
<script type="text/javascript" src="../source/jquery.fancybox.js?v=2.1.3"></script>
<link rel="stylesheet" type="text/css" href="../source/jquery.fancybox.css?v=2.1.2" media="screen" />
<!-- Add Button helper (this is optional) -->
<link rel="stylesheet" type="text/css" href="../source/helpers/jquery.fancybox-buttons.css?v=1.0.5" />
<script type="text/javascript" src="../source/helpers/jquery.fancybox-buttons.js?v=1.0.5"></script>
<!-- Add Thumbnail helper (this is optional) -->
<link rel="stylesheet" type="text/css" href="../source/helpers/jquery.fancybox-thumbs.css?v=1.0.7" />
<script type="text/javascript" src="../source/helpers/jquery.fancybox-thumbs.js?v=1.0.7"></script>
<!-- Add Media helper (this is optional) -->
<script type="text/javascript" src="../source/helpers/jquery.fancybox-media.js?v=1.0.5"></script>
<script type="text/javascript">
$(document).ready(function() {
/*
* Simple image gallery. Uses default settings
*/
$('.fancybox').fancybox();
/*
* Different effects
*/
// Change title type, overlay closing speed
$(".fancybox-effects-a").fancybox({
helpers: {
title : {
type : 'outside'
},
overlay : {
speedOut : 0
}
}
});
// Disable opening and closing animations, change title type
$(".fancybox-effects-b").fancybox({
openEffect : 'none',
closeEffect : 'none',
helpers : {
title : {
type : 'over'
}
}
});
// Set custom style, close if clicked, change title type and overlay color
$(".fancybox-effects-c").fancybox({
wrapCSS : 'fancybox-custom',
closeClick : true,
openEffect : 'none',
helpers : {
title : {
type : 'inside'
},
overlay : {
css : {
'background' : 'rgba(238,238,238,0.85)'
}
}
}
});
// Remove padding, set opening and closing animations, close if clicked and disable overlay
$(".fancybox-effects-d").fancybox({
padding: 0,
openEffect : 'elastic',
openSpeed : 150,
closeEffect : 'elastic',
closeSpeed : 150,
closeClick : true,
helpers : {
overlay : null
}
});
/*
* Button helper. Disable animations, hide close button, change title type and content
*/
$('.fancybox-buttons').fancybox({
openEffect : 'none',
closeEffect : 'none',
prevEffect : 'none',
nextEffect : 'none',
closeBtn : false,
helpers : {
title : {
type : 'inside'
},
buttons : {}
},
afterLoad : function() {
this.title = 'Image ' + (this.index + 1) + ' of ' + this.group.length + (this.title ? ' - ' + this.title : '');
}
});
/*
* Thumbnail helper. Disable animations, hide close button, arrows and slide to next gallery item if clicked
*/
$('.fancybox-thumbs').fancybox({
prevEffect : 'none',
nextEffect : 'none',
closeBtn : false,
arrows : false,
nextClick : true,
helpers : {
thumbs : {
width : 50,
height : 50
}
}
});
/*
* Media helper. Group items, disable animations, hide arrows, enable media and button helpers.
*/
$('.fancybox-media')
.attr('rel', 'media-gallery')
.fancybox({
openEffect : 'none',
closeEffect : 'none',
prevEffect : 'none',
nextEffect : 'none',
arrows : false,
helpers : {
media : {},
buttons : {}
}
});
/*
* Open manually
*/
$("#fancybox-manual-a").click(function() {
$.fancybox.open('1_b.jpg');
});
$("#fancybox-manual-b").click(function() {
$.fancybox.open({
href : 'iframe.html',
type : 'iframe',
padding : 5
});
});
$("#fancybox-manual-c").click(function() {
$.fancybox.open([
{
href : '1_b.jpg',
title : 'My title'
}, {
href : '2_b.jpg',
title : '2nd title'
}, {
href : '3_b.jpg'
}
], {
helpers : {
thumbs : {
width: 75,
height: 50
}
}
});
});
});
</script>
<style type="text/css">
.fancybox-custom .fancybox-skin {
box-shadow: 0 0 50px #222;
}
</style>
</head>
<body>
<h1>fancyBox</h1>
<p>This is a demonstration. More information and examples: <a href="http://fancyapps.com/fancybox/">www.fancyapps.com/fancybox/</a></p>
<h3>Simple image gallery</h3>
<p>
<a class="fancybox" href="1_b.jpg" data-fancybox-group="gallery" title="Lorem ipsum dolor sit amet"><img src="1_s.jpg" alt="" /></a>
<a class="fancybox" href="2_b.jpg" data-fancybox-group="gallery" title="Etiam quis mi eu elit temp"><img src="2_s.jpg" alt="" /></a>
<a class="fancybox" href="3_b.jpg" data-fancybox-group="gallery" title="Cras neque mi, semper leon"><img src="3_s.jpg" alt="" /></a>
<a class="fancybox" href="4_b.jpg" data-fancybox-group="gallery" title="Sed vel sapien vel sem uno"><img src="4_s.jpg" alt="" /></a>
</p>
<h3>Different effects</h3>
<p>
<a class="fancybox-effects-a" href="5_b.jpg" title="Lorem ipsum dolor sit amet, consectetur adipiscing elit"><img src="5_s.jpg" alt="" /></a>
<a class="fancybox-effects-b" href="5_b.jpg" title="Lorem ipsum dolor sit amet, consectetur adipiscing elit"><img src="5_s.jpg" alt="" /></a>
<a class="fancybox-effects-c" href="5_b.jpg" title="Lorem ipsum dolor sit amet, consectetur adipiscing elit"><img src="5_s.jpg" alt="" /></a>
<a class="fancybox-effects-d" href="5_b.jpg" title="Lorem ipsum dolor sit amet, consectetur adipiscing elit"><img src="5_s.jpg" alt="" /></a>
</p>
<h3>Various types</h3>
<p>
fancyBox will try to guess content type from href attribute but you can specify it directly by adding classname (fancybox.image, fancybox.iframe, etc).
</p>
<ul>
<li><a class="fancybox" href="#inline1" title="Lorem ipsum dolor sit amet">Inline</a></li>
<li><a class="fancybox fancybox.ajax" href="ajax.txt">Ajax</a></li>
<li><a class="fancybox fancybox.iframe" href="iframe.html">Iframe</a></li>
<li><a class="fancybox" href="http://www.adobe.com/jp/events/cs3_web_edition_tour/swfs/perform.swf">Swf</a></li>
</ul>
<div id="inline1" style="width:400px;display: none;">
<h3>Etiam quis mi eu elit</h3>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam quis mi eu elit tempor facilisis id et neque. Nulla sit amet sem sapien. Vestibulum imperdiet porta ante ac ornare. Nulla et lorem eu nibh adipiscing ultricies nec at lacus. Cras laoreet ultricies sem, at blandit mi eleifend aliquam. Nunc enim ipsum, vehicula non pretium varius, cursus ac tortor. Vivamus fringilla congue laoreet. Quisque ultrices sodales orci, quis rhoncus justo auctor in. Phasellus dui eros, bibendum eu feugiat ornare, faucibus eu mi. Nunc aliquet tempus sem, id aliquam diam varius ac. Maecenas nisl nunc, molestie vitae eleifend vel, iaculis sed magna. Aenean tempus lacus vitae orci posuere porttitor eget non felis. Donec lectus elit, aliquam nec eleifend sit amet, vestibulum sed nunc.
</p>
</div>
<p>
Ajax example will not run from your local computer and requires a server to run.
</p>
<h3>Button helper</h3>
<p>
<a class="fancybox-buttons" data-fancybox-group="button" href="1_b.jpg"><img src="1_s.jpg" alt="" /></a>
<a class="fancybox-buttons" data-fancybox-group="button" href="2_b.jpg"><img src="2_s.jpg" alt="" /></a>
<a class="fancybox-buttons" data-fancybox-group="button" href="3_b.jpg"><img src="3_s.jpg" alt="" /></a>
<a class="fancybox-buttons" data-fancybox-group="button" href="4_b.jpg"><img src="4_s.jpg" alt="" /></a>
</p>
<h3>Thumbnail helper</h3>
<p>
<a class="fancybox-thumbs" data-fancybox-group="thumb" href="4_b.jpg"><img src="4_s.jpg" alt="" /></a>
<a class="fancybox-thumbs" data-fancybox-group="thumb" href="3_b.jpg"><img src="3_s.jpg" alt="" /></a>
<a class="fancybox-thumbs" data-fancybox-group="thumb" href="2_b.jpg"><img src="2_s.jpg" alt="" /></a>
<a class="fancybox-thumbs" data-fancybox-group="thumb" href="1_b.jpg"><img src="1_s.jpg" alt="" /></a>
</p>
<h3>Media helper</h3>
<p>
Will not run from your local computer, requires a server to run.
</p>
<ul>
<li><a class="fancybox-media" href="http://www.youtube.com/watch?v=opj24KnzrWo">Youtube</a></li>
<li><a class="fancybox-media" href="http://vimeo.com/25634903">Vimeo</a></li>
<li><a class="fancybox-media" href="http://www.metacafe.com/watch/7635964/">Metacafe</a></li>
<li><a class="fancybox-media" href="http://www.dailymotion.com/video/xoeylt_electric-guest-this-head-i-hold_music">Dailymotion</a></li>
<li><a class="fancybox-media" href="http://twitvid.com/QY7MD">Twitvid</a></li>
<li><a class="fancybox-media" href="http://twitpic.com/7p93st">Twitpic</a></li>
<li><a class="fancybox-media" href="http://instagr.am/p/IejkuUGxQn">Instagram</a></li>
</ul>
<h3>Open manually</h3>
<ul>
<li><a id="fancybox-manual-a" href="javascript:;">Open single item</a></li>
<li><a id="fancybox-manual-b" href="javascript:;">Open single item, custom options</a></li>
<li><a id="fancybox-manual-c" href="javascript:;">Open gallery</a></li>
</ul>
<p>
Photo Credit: Instagrammer @whitjohns
</p>
</body>
</html> | nbir/gambit-interface | ~packages/fancybox/demo/index.html | HTML | apache-2.0 | 9,625 |
<!DOCTYPE html>
<html>
<head>
<title>open Single-instance</title>
</head>
<body>
<h1>open Single-instance</h1>
We are using node.js
<script>
var gui = require('nw.gui');
var fs = require('fs');
fs.appendFileSync('msg_s', '1');
setTimeout(function() {
gui.App.quit();
}, 2000);
</script>
</body>
</html>
| trojanspike/nw.js | tests/automation/single_instance/open_single/index.html | HTML | mit | 371 |
<!DOCTYPE html>
<html lang="en">
{% include head.html %}
<body>
{% include nav.html %}
{{ content }}
{% include footer.html %}
</body>
</html>
| OpenAccessClinic/OA_clinic | docs/_layouts/default.html | HTML | bsd-3-clause | 162 |
<!DOCTYPE html>
<!--[if lt IE 7 ]><html class="ie ie6" lang="en"> <![endif]-->
<!--[if IE 7 ]><html class="ie ie7" lang="en"> <![endif]-->
<!--[if IE 8 ]><html class="ie ie8" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!-->
<html lang="en" xmlns="http://www.w3.org/1999/html"> <!--<![endif]-->
<head>
<!-- Basic Page Needs
================================================== -->
<meta charset="utf-8" />
<title>icon-retweet: Font Awesome Icons</title>
<meta name="description" content="Font Awesome, the iconic font designed for Bootstrap">
<meta name="author" content="Dave Gandy">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--<meta name="viewport" content="initial-scale=1; maximum-scale=1">-->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- CSS
================================================== -->
<link rel="stylesheet" href="../../assets/css/site.css">
<link rel="stylesheet" href="../../assets/css/pygments.css">
<link rel="stylesheet" href="../../assets/font-awesome/css/font-awesome.css">
<!--[if IE 7]>
<link rel="stylesheet" href="../../assets/font-awesome/css/font-awesome-ie7.css">
<![endif]-->
<!-- Le fav and touch icons -->
<link rel="shortcut icon" href="../../assets/ico/favicon.ico">
<script type="text/javascript" src="//use.typekit.net/wnc7ioh.js"></script>
<script type="text/javascript">try{Typekit.load();}catch(e){}</script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-30136587-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body data-spy="scroll" data-target=".navbar">
<div class="wrapper"> <!-- necessary for sticky footer. wrap all content except footer -->
<div class="navbar navbar-inverse navbar-static-top hidden-print">
<div class="navbar-inner">
<div class="container">
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<a class="brand" href="../../"><i class="icon-flag"></i> Font Awesome</a>
<div class="nav-collapse collapse">
<ul class="nav">
<li class="hidden-tablet "><a href="../../">Home</a></li>
<li><a href="../../get-started/">Get Started</a></li>
<li class="dropdown-split-left"><a href="../../icons/">Icons</a></li>
<li class="dropdown dropdown-split-right hidden-phone">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">
<i class="icon-caret-down"></i>
</a>
<ul class="dropdown-menu pull-right">
<li><a href="../../icons/"><i class="icon-flag icon-fixed-width"></i> Icons</a></li>
<li class="divider"></li>
<li><a href="../../icons/#new"><i class="icon-shield icon-fixed-width"></i> New Icons in 3.2.1</a></li>
<li><a href="../../icons/#web-application"><i class="icon-camera-retro icon-fixed-width"></i> Web Application Icons</a></li>
<li><a href="../../icons/#currency"><i class="icon-won icon-fixed-width"></i> Currency Icons</a></li>
<li><a href="../../icons/#text-editor"><i class="icon-file-text-alt icon-fixed-width"></i> Text Editor Icons</a></li>
<li><a href="../../icons/#directional"><i class="icon-hand-right icon-fixed-width"></i> Directional Icons</a></li>
<li><a href="../../icons/#video-player"><i class="icon-play-sign icon-fixed-width"></i> Video Player Icons</a></li>
<li><a href="../../icons/#brand"><i class="icon-github icon-fixed-width"></i> Brand Icons</a></li>
<li><a href="../../icons/#medical"><i class="icon-medkit icon-fixed-width"></i> Medical Icons</a></li>
</ul>
</li>
<li class="dropdown-split-left"><a href="../../examples/">Examples</a></li>
<li class="dropdown dropdown-split-right hidden-phone">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">
<i class="icon-caret-down"></i>
</a>
<ul class="dropdown-menu pull-right">
<li><a href="../../examples/">Examples</a></li>
<li class="divider"></li>
<li><a href="../../examples/#new-styles">New Styles</a></li>
<li><a href="../../examples/#inline-icons">Inline Icons</a></li>
<li><a href="../../examples/#larger-icons">Larger Icons</a></li>
<li><a href="../../examples/#bordered-pulled">Bordered & Pulled</a></li>
<li><a href="../../examples/#buttons">Buttons</a></li>
<li><a href="../../examples/#button-groups">Button Groups</a></li>
<li><a href="../../examples/#button-dropdowns">Button Dropdowns</a></li>
<li><a href="../../examples/#bulleted-lists">Bulleted Lists</a></li>
<li><a href="../../examples/#navigation">Navigation</a></li>
<li><a href="../../examples/#form-inputs">Form Inputs</a></li>
<li><a href="../../examples/#animated-spinner">Animated Spinner</a></li>
<li><a href="../../examples/#rotated-flipped">Rotated & Flipped</a></li>
<li><a href="../../examples/#stacked">Stacked</a></li>
<li><a href="../../examples/#custom">Custom CSS</a></li>
</ul>
</li>
<li><a href="../../whats-new/">
<span class="hidden-tablet">What's </span>New</a>
</li>
<li><a href="../../community/">Community</a></li>
<li><a href="../../license/">License</a></li>
</ul>
<ul class="nav pull-right">
<li><a href="http://blog.fontawesome.io">Blog</a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="jumbotron jumbotron-icon">
<div class="container">
<div class="info-icons">
<i class="icon-retweet icon-6"></i>
<span class="hidden-phone">
<i class="icon-retweet icon-5"></i>
<span class="hidden-tablet"><i class="icon-retweet icon-4"></i> </span>
<i class="icon-retweet icon-3"></i>
<i class="icon-retweet icon-2"></i>
</span>
<i class="icon-retweet icon-1"></i>
</div>
<h1 class="info-class">
icon-retweet
<small>
<i class="icon-retweet"></i> ·
Unicode: <span class="upper">f079</span> ·
Created: v1.0 ·
Categories:
Web Application Icons
</small>
</h1>
</div>
</div>
<div class="container">
<section>
<div class="row-fluid">
<div class="span9">
<p>After you get <a href="../../integration/">up and running</a>, you can place Font Awesome icons just about anywhere with the <code><i></code> tag:</p>
<div class="well well-transparent">
<div style="font-size: 24px; line-height: 1.5em;">
<i class="icon-retweet"></i> icon-retweet
</div>
</div>
<div class="highlight"><pre><code class="html"><span class="nt"><i</span> <span class="na">class=</span><span class="s">"icon-retweet"</span><span class="nt">></i></span> icon-retweet
</code></pre></div>
<br>
<div class="lead"><i class="icon-info-sign"></i> Looking for more? Check out the <a href="../../examples/">examples</a>.</div>
</div>
<div class="span3">
<div class="info-ad"><div id="carbonads-container"><div class="carbonad"><div id="azcarbon"></div><script type="text/javascript">var z = document.createElement("script"); z.type = "text/javascript"; z.async = true; z.src = "http://engine.carbonads.com/z/32291/azcarbon_2_1_0_VERT"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(z, s);</script></div></div>
</div>
</div>
</div>
</section>
</div>
<div class="push"><!-- necessary for sticky footer --></div>
</div>
<footer class="footer hidden-print">
<div class="container text-center">
<div>
<i class="icon-flag"></i> Font Awesome 3.2.1
<span class="hidden-phone">·</span><br class="visible-phone">
Created and Maintained by <a href="http://twitter.com/davegandy">Dave Gandy</a>
</div>
<div>
Font Awesome licensed under <a href="http://scripts.sil.org/OFL">SIL OFL 1.1</a>
<span class="hidden-phone">·</span><br class="visible-phone">
Code licensed under <a href="http://opensource.org/licenses/mit-license.html">MIT License</a>
<span class="hidden-phone hidden-tablet">·</span><br class="visible-phone visible-tablet">
Documentation licensed under <a href="http://creativecommons.org/licenses/by/3.0/">CC BY 3.0</a>
</div>
<div>
Thanks to <a href="http://maxcdn.com"><i class="icon-maxcdn"></i> MaxCDN</a> for providing the excellent <a href="http://www.bootstrapcdn.com/#tab_fontawesome">BootstrapCDN for Font Awesome</a>
</div>
<div class="project">
<a href="https://github.com/FortAwesome/Font-Awesome">GitHub Project</a> ·
<a href="https://github.com/FortAwesome/Font-Awesome/issues">Issues</a>
</div>
</div>
</footer>
<script src="http://platform.twitter.com/widgets.js"></script>
<script src="../../assets/js/jquery-1.7.1.min.js"></script>
<script src="../../assets/js/ZeroClipboard-1.1.7.min.js"></script>
<script src="../../assets/js/bootstrap-2.3.1.min.js"></script>
<script src="../../assets/js/site.js"></script>
</body>
</html>
| vinnylinck/listagram | www/lib/font-awesome/src/3.2.1/icon/retweet/index.html | HTML | mit | 10,069 |
<!DOCTYPE html>
<!--[if lt IE 7 ]><html class="ie ie6" lang="en"> <![endif]-->
<!--[if IE 7 ]><html class="ie ie7" lang="en"> <![endif]-->
<!--[if IE 8 ]><html class="ie ie8" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!-->
<html lang="en" xmlns="http://www.w3.org/1999/html"> <!--<![endif]-->
<head>
<!-- Basic Page Needs
================================================== -->
<meta charset="utf-8" />
<title>icon-linux: Font Awesome Icons</title>
<meta name="description" content="Font Awesome, the iconic font designed for Bootstrap">
<meta name="author" content="Dave Gandy">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--<meta name="viewport" content="initial-scale=1; maximum-scale=1">-->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- CSS
================================================== -->
<link rel="stylesheet" href="../../assets/css/site.css">
<link rel="stylesheet" href="../../assets/css/pygments.css">
<link rel="stylesheet" href="../../assets/font-awesome/css/font-awesome.css">
<!--[if IE 7]>
<link rel="stylesheet" href="../../assets/font-awesome/css/font-awesome-ie7.css">
<![endif]-->
<!-- Le fav and touch icons -->
<link rel="shortcut icon" href="../../assets/ico/favicon.ico">
<script type="text/javascript" src="//use.typekit.net/wnc7ioh.js"></script>
<script type="text/javascript">try{Typekit.load();}catch(e){}</script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-30136587-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body data-spy="scroll" data-target=".navbar">
<div class="wrapper"> <!-- necessary for sticky footer. wrap all content except footer -->
<div class="navbar navbar-inverse navbar-static-top hidden-print">
<div class="navbar-inner">
<div class="container">
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<a class="brand" href="../../"><i class="icon-flag"></i> Font Awesome</a>
<div class="nav-collapse collapse">
<ul class="nav">
<li class="hidden-tablet "><a href="../../">Home</a></li>
<li><a href="../../get-started/">Get Started</a></li>
<li class="dropdown-split-left"><a href="../../icons/">Icons</a></li>
<li class="dropdown dropdown-split-right hidden-phone">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">
<i class="icon-caret-down"></i>
</a>
<ul class="dropdown-menu pull-right">
<li><a href="../../icons/"><i class="icon-flag icon-fixed-width"></i> Icons</a></li>
<li class="divider"></li>
<li><a href="../../icons/#new"><i class="icon-shield icon-fixed-width"></i> New Icons in 3.2.1</a></li>
<li><a href="../../icons/#web-application"><i class="icon-camera-retro icon-fixed-width"></i> Web Application Icons</a></li>
<li><a href="../../icons/#currency"><i class="icon-won icon-fixed-width"></i> Currency Icons</a></li>
<li><a href="../../icons/#text-editor"><i class="icon-file-text-alt icon-fixed-width"></i> Text Editor Icons</a></li>
<li><a href="../../icons/#directional"><i class="icon-hand-right icon-fixed-width"></i> Directional Icons</a></li>
<li><a href="../../icons/#video-player"><i class="icon-play-sign icon-fixed-width"></i> Video Player Icons</a></li>
<li><a href="../../icons/#brand"><i class="icon-github icon-fixed-width"></i> Brand Icons</a></li>
<li><a href="../../icons/#medical"><i class="icon-medkit icon-fixed-width"></i> Medical Icons</a></li>
</ul>
</li>
<li class="dropdown-split-left"><a href="../../examples/">Examples</a></li>
<li class="dropdown dropdown-split-right hidden-phone">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">
<i class="icon-caret-down"></i>
</a>
<ul class="dropdown-menu pull-right">
<li><a href="../../examples/">Examples</a></li>
<li class="divider"></li>
<li><a href="../../examples/#new-styles">New Styles</a></li>
<li><a href="../../examples/#inline-icons">Inline Icons</a></li>
<li><a href="../../examples/#larger-icons">Larger Icons</a></li>
<li><a href="../../examples/#bordered-pulled">Bordered & Pulled</a></li>
<li><a href="../../examples/#buttons">Buttons</a></li>
<li><a href="../../examples/#button-groups">Button Groups</a></li>
<li><a href="../../examples/#button-dropdowns">Button Dropdowns</a></li>
<li><a href="../../examples/#bulleted-lists">Bulleted Lists</a></li>
<li><a href="../../examples/#navigation">Navigation</a></li>
<li><a href="../../examples/#form-inputs">Form Inputs</a></li>
<li><a href="../../examples/#animated-spinner">Animated Spinner</a></li>
<li><a href="../../examples/#rotated-flipped">Rotated & Flipped</a></li>
<li><a href="../../examples/#stacked">Stacked</a></li>
<li><a href="../../examples/#custom">Custom CSS</a></li>
</ul>
</li>
<li><a href="../../whats-new/">
<span class="hidden-tablet">What's </span>New</a>
</li>
<li><a href="../../community/">Community</a></li>
<li><a href="../../license/">License</a></li>
</ul>
<ul class="nav pull-right">
<li><a href="http://blog.fontawesome.io">Blog</a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="jumbotron jumbotron-icon">
<div class="container">
<div class="info-icons">
<i class="icon-linux icon-6"></i>
<span class="hidden-phone">
<i class="icon-linux icon-5"></i>
<span class="hidden-tablet"><i class="icon-linux icon-4"></i> </span>
<i class="icon-linux icon-3"></i>
<i class="icon-linux icon-2"></i>
</span>
<i class="icon-linux icon-1"></i>
</div>
<h1 class="info-class">
icon-linux
<small>
<i class="icon-linux"></i> ·
Unicode: <span class="upper">f17c</span> ·
Created: v3.2 ·
Categories:
Brand Icons
</small>
</h1>
</div>
</div>
<div class="container">
<section>
<div class="row-fluid">
<div class="span9">
<p>After you get <a href="../../integration/">up and running</a>, you can place Font Awesome icons just about anywhere with the <code><i></code> tag:</p>
<div class="well well-transparent">
<div style="font-size: 24px; line-height: 1.5em;">
<i class="icon-linux"></i> icon-linux
</div>
</div>
<div class="highlight"><pre><code class="html"><span class="nt"><i</span> <span class="na">class=</span><span class="s">"icon-linux"</span><span class="nt">></i></span> icon-linux
</code></pre></div>
<br>
<div class="lead"><i class="icon-info-sign"></i> Looking for more? Check out the <a href="../../examples/">examples</a>.</div>
</div>
<div class="span3">
<div class="info-ad"><div id="carbonads-container"><div class="carbonad"><div id="azcarbon"></div><script type="text/javascript">var z = document.createElement("script"); z.type = "text/javascript"; z.async = true; z.src = "http://engine.carbonads.com/z/32291/azcarbon_2_1_0_VERT"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(z, s);</script></div></div>
</div>
</div>
</div>
</section>
</div>
<div class="push"><!-- necessary for sticky footer --></div>
</div>
<footer class="footer hidden-print">
<div class="container text-center">
<div>
<i class="icon-flag"></i> Font Awesome 3.2.1
<span class="hidden-phone">·</span><br class="visible-phone">
Created and Maintained by <a href="http://twitter.com/davegandy">Dave Gandy</a>
</div>
<div>
Font Awesome licensed under <a href="http://scripts.sil.org/OFL">SIL OFL 1.1</a>
<span class="hidden-phone">·</span><br class="visible-phone">
Code licensed under <a href="http://opensource.org/licenses/mit-license.html">MIT License</a>
<span class="hidden-phone hidden-tablet">·</span><br class="visible-phone visible-tablet">
Documentation licensed under <a href="http://creativecommons.org/licenses/by/3.0/">CC BY 3.0</a>
</div>
<div>
Thanks to <a href="http://maxcdn.com"><i class="icon-maxcdn"></i> MaxCDN</a> for providing the excellent <a href="http://www.bootstrapcdn.com/#tab_fontawesome">BootstrapCDN for Font Awesome</a>
</div>
<div class="project">
<a href="https://github.com/FortAwesome/Font-Awesome">GitHub Project</a> ·
<a href="https://github.com/FortAwesome/Font-Awesome/issues">Issues</a>
</div>
</div>
</footer>
<script src="http://platform.twitter.com/widgets.js"></script>
<script src="../../assets/js/jquery-1.7.1.min.js"></script>
<script src="../../assets/js/ZeroClipboard-1.1.7.min.js"></script>
<script src="../../assets/js/bootstrap-2.3.1.min.js"></script>
<script src="../../assets/js/site.js"></script>
</body>
</html>
| vinnylinck/TodoSyncPoc | www/lib/font-awesome/src/3.2.1/icon/linux/index.html | HTML | mit | 10,033 |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="shortcut icon" type="image/ico" href="http://www.datatables.net/favicon.ico">
<meta name="viewport" content="initial-scale=1.0, maximum-scale=2.0">
<link rel="stylesheet" type="text/css" href="../../../examples/resources/syntax/shCore.css">
<link rel="stylesheet" type="text/css" href="../../../examples/resources/demo.css">
<script type="text/javascript" language="javascript" src="../../../media/js/jquery.js"></script>
<script type="text/javascript" language="javascript" src="../../../examples/resources/syntax/shCore.js"></script>
<script type="text/javascript" language="javascript" src="../../../examples/resources/demo.js"></script>
<title>KeyTable examples - KeyTable examples</title>
</head>
<body class="dt-example">
<div class="container">
<section>
<h1>KeyTable example <span>KeyTable examples</span></h1>
<div class="info">
<p>KeyTable provides enhanced accessibility and navigation options for DataTables enhanced tables, by
allowing Excel like cell navigation on any table. Events (focus, blur, action etc) can be assigned to
individual cells, columns, rows or all cells to allow advanced interaction options.. Key features
include:</p>
<ul class="markdown">
<li>Easy to use spreadsheet like interaction</li>
<li>Fully integrated with DataTables</li>
<li>Wide range of supported events</li>
<li>Works without DataTables if you just want a plain table</li>
</ul>
</div>
</section>
</div>
<section>
<div class="footer">
<div class="gradient"></div>
<div class="liner">
<div class="toc">
<div class="toc-group">
<h3><a href="./index.html">Examples</a></h3>
<ul class="toc">
<li><a href="./simple.html">Basic initialisation</a></li>
<li><a href="./events.html">Events</a></li>
<li><a href="./scrolling.html">Scrolling table</a></li>
<li><a href="./html.html">Plain HTML table</a></li>
</ul>
</div>
</div>
<div class="epilogue">
<p>Please refer to the <a href="http://www.datatables.net">DataTables documentation</a> for full
information about its API properties and methods.<br>
Additionally, there are a wide range of <a href="http://www.datatables.net/extras">extras</a> and
<a href="http://www.datatables.net/plug-ins">plug-ins</a> which extend the capabilities of
DataTables.</p>
<p class="copyright">DataTables designed and created by <a href=
"http://www.sprymedia.co.uk">SpryMedia Ltd</a> © 2007-2014<br>
DataTables is licensed under the <a href="http://www.datatables.net/mit">MIT license</a>.</p>
</div>
</div>
</div>
</section>
</body>
</html> | zuolg/zstie | zsite-root/zsite-web/src/main/resources/static/pc/plugins/datatables/extensions/KeyTable/examples/index.html | HTML | apache-2.0 | 2,737 |
<!DOCTYPE html>
<meta charset=utf-8>
<title>invalid cite: scheme-trailing-space</title>
<del cite="a: foo.com"></del>
| youtube/cobalt | third_party/web_platform_tests/conformance-checkers/html/elements/del/cite/scheme-trailing-space-novalid.html | HTML | bsd-3-clause | 118 |
<!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_22) on Sun Aug 26 15:15:27 EDT 2012 -->
<TITLE>
CompositeIOException (Slick Util - LWJGL Utilities extracted from Slick)
</TITLE>
<META NAME="date" CONTENT="2012-08-26">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="CompositeIOException (Slick Util - LWJGL Utilities extracted from Slick)";
}
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<HR>
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/CompositeIOException.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../org/newdawn/slick/opengl/CompositeImageData.html" title="class in org.newdawn.slick.opengl"><B>PREV CLASS</B></A>
<A HREF="../../../../org/newdawn/slick/opengl/CursorLoader.html" title="class in org.newdawn.slick.opengl"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../index.html?org/newdawn/slick/opengl/CompositeIOException.html" target="_top"><B>FRAMES</B></A>
<A HREF="CompositeIOException.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: NESTED | FIELD | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<!-- ======== START OF CLASS DATA ======== -->
<H2>
<FONT SIZE="-1">
org.newdawn.slick.opengl</FONT>
<BR>
Class CompositeIOException</H2>
<PRE>
java.lang.Object
<IMG SRC="../../../../resources/inherit.gif" ALT="extended by ">java.lang.Throwable
<IMG SRC="../../../../resources/inherit.gif" ALT="extended by ">java.lang.Exception
<IMG SRC="../../../../resources/inherit.gif" ALT="extended by ">java.io.IOException
<IMG SRC="../../../../resources/inherit.gif" ALT="extended by "><B>org.newdawn.slick.opengl.CompositeIOException</B>
</PRE>
<DL>
<DT><B>All Implemented Interfaces:</B> <DD>java.io.Serializable</DD>
</DL>
<HR>
<DL>
<DT><PRE>public class <B>CompositeIOException</B><DT>extends java.io.IOException</DL>
</PRE>
<P>
A collection of IOException that failed image data loading
<P>
<P>
<DL>
<DT><B>Author:</B></DT>
<DD>kevin</DD>
<DT><B>See Also:</B><DD><A HREF="../../../../serialized-form.html#org.newdawn.slick.opengl.CompositeIOException">Serialized Form</A></DL>
<HR>
<P>
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<A NAME="constructor_summary"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Constructor Summary</B></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><B><A HREF="../../../../org/newdawn/slick/opengl/CompositeIOException.html#CompositeIOException()">CompositeIOException</A></B>()</CODE>
<BR>
Create a new composite IO Exception</TD>
</TR>
</TABLE>
<!-- ========== METHOD SUMMARY =========== -->
<A NAME="method_summary"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Method Summary</B></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/newdawn/slick/opengl/CompositeIOException.html#addException(java.lang.Exception)">addException</A></B>(java.lang.Exception e)</CODE>
<BR>
Add an exception that caused this exceptino</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/newdawn/slick/opengl/CompositeIOException.html#getMessage()">getMessage</A></B>()</CODE>
<BR>
</TD>
</TR>
</TABLE>
<A NAME="methods_inherited_from_class_java.lang.Throwable"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left"><B>Methods inherited from class java.lang.Throwable</B></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE>fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString</CODE></TD>
</TR>
</TABLE>
<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left"><B>Methods inherited from class java.lang.Object</B></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE>clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait</CODE></TD>
</TR>
</TABLE>
<P>
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<A NAME="constructor_detail"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
<B>Constructor Detail</B></FONT></TH>
</TR>
</TABLE>
<A NAME="CompositeIOException()"><!-- --></A><H3>
CompositeIOException</H3>
<PRE>
public <B>CompositeIOException</B>()</PRE>
<DL>
<DD>Create a new composite IO Exception
<P>
</DL>
<!-- ============ METHOD DETAIL ========== -->
<A NAME="method_detail"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
<B>Method Detail</B></FONT></TH>
</TR>
</TABLE>
<A NAME="addException(java.lang.Exception)"><!-- --></A><H3>
addException</H3>
<PRE>
public void <B>addException</B>(java.lang.Exception e)</PRE>
<DL>
<DD>Add an exception that caused this exceptino
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>e</CODE> - The exception</DL>
</DD>
</DL>
<HR>
<A NAME="getMessage()"><!-- --></A><H3>
getMessage</H3>
<PRE>
public java.lang.String <B>getMessage</B>()</PRE>
<DL>
<DD><DL>
<DT><B>Overrides:</B><DD><CODE>getMessage</CODE> in class <CODE>java.lang.Throwable</CODE></DL>
</DD>
<DD><DL>
<DT><B>See Also:</B><DD><CODE>Throwable.getMessage()</CODE></DL>
</DD>
</DL>
<!-- ========= END OF CLASS DATA ========= -->
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/CompositeIOException.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../org/newdawn/slick/opengl/CompositeImageData.html" title="class in org.newdawn.slick.opengl"><B>PREV CLASS</B></A>
<A HREF="../../../../org/newdawn/slick/opengl/CursorLoader.html" title="class in org.newdawn.slick.opengl"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../index.html?org/newdawn/slick/opengl/CompositeIOException.html" target="_top"><B>FRAMES</B></A>
<A HREF="CompositeIOException.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: NESTED | FIELD | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
<i>Copyright © 2006 New Dawn Software. All Rights Reserved.</i>
</BODY>
</HTML>
| dxiao/PPBunnies | slick/trunk/Slick/javadoc-util/org/newdawn/slick/opengl/CompositeIOException.html | HTML | mit | 12,487 |
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang='en'>
<head>
<meta name="generator" content="AWStats 6.7 (build 1.892) from config file awstats.allvbg.ru.conf (http://awstats.sourceforge.net)">
<meta name="robots" content="noindex,nofollow">
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
<meta http-equiv="description" content="Awstats - Advanced Web Statistics for allvbg.ru (2011-09)">
<title>Statistics for allvbg.ru (2011-09)</title>
<style type="text/css">
<!--
body { font: 11px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; margin-top: 0; margin-bottom: 0; }
.aws_bodyl { }
.aws_border { border-collapse: collapse; background-color: #CCCCDD; padding: 1px 1px 1px 1px; margin-top: 0px; margin-bottom: 0px; }
.aws_title { font: 13px verdana, arial, helvetica, sans-serif; font-weight: bold; background-color: #CCCCDD; text-align: center; margin-top: 0; margin-bottom: 0; padding: 1px 1px 1px 1px; color: #000000; }
.aws_blank { font: 13px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; text-align: center; margin-bottom: 0; padding: 1px 1px 1px 1px; }
.aws_data {
background-color: #FFFFFF;
border-top-width: 1px;
border-left-width: 0px;
border-right-width: 0px;
border-bottom-width: 0px;
}
.aws_formfield { font: 13px verdana, arial, helvetica; }
.aws_button {
font-family: arial,verdana,helvetica, sans-serif;
font-size: 12px;
border: 1px solid #ccd7e0;
background-image : url(/awstatsicons/other/button.gif);
}
th { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
th.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font-size: 13px; font-weight: bold; }
td { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
td.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px;}
td.awsm { border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px; }
b { font-weight: bold; }
a { font: 11px verdana, arial, helvetica, sans-serif; }
a:link { color: #0011BB; text-decoration: none; }
a:visited { color: #0011BB; text-decoration: none; }
a:hover { color: #605040; text-decoration: underline; }
.currentday { font-weight: bold; }
//-->
</style>
</head>
<body style="margin-top: 0px">
<a name="top"> </a>
<a name="menu"> </a>
<form name="FormDateFilter" action="/cgi-bin/awstats.pl?config=allvbg.ru&output=browserdetail" style="padding: 0px 0px 0px 0px; margin-top: 0">
<table class="aws_border" border="0" cellpadding="2" cellspacing="0" width="100%">
<tr><td>
<table class="aws_data" border="0" cellpadding="1" cellspacing="0" width="100%">
<tr><td class="aws" valign="middle"><b>Statistics for:</b> </td><td class="aws" valign="middle"><span style="font-size: 14px;">allvbg.ru</span></td><td align="right" rowspan="3"><a href="http://awstats.sourceforge.net" target="awstatshome"><img src="/awstatsicons/other/awstats_logo6.png" border="0" alt='Awstats Web Site' title='Awstats Web Site' /></a></td></tr>
<tr valign="middle"><td class="aws" valign="middle" width="150"><b>Last Update:</b> </td><td class="aws" valign="middle"><span style="font-size: 12px;">30 Sep 2011 - 00:01</span></td></tr>
<tr><td class="aws" valign="middle"><b>Reported period:</b></td><td class="aws" valign="middle"><span style="font-size: 14px;">Month Sep 2011</span></td></tr>
</table>
</td></tr></table>
</form>
<table>
<tr><td class="aws"><a href="javascript:parent.window.close();">Close window</a></td></tr>
</table>
<a name="browsersversions"> </a><br /><table class="aws_border" border="0" cellpadding="2" cellspacing="0" width="100%">
<tr><td class="aws_title" width="70%">Browsers </td><td class="aws_blank"> </td></tr>
<tr><td colspan="2">
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
<tr bgcolor="#ECECEC"><th colspan="2">Versions</th><th width="80">Grabber</th><th bgcolor="#66DDEE" width="80">Hits</th><th bgcolor="#66DDEE" width="80">Percent</th><th> </th></tr>
<tr bgcolor="#F6F6F6"><td class="aws" colspan="2"><b>MSIE</b></td><td> </td><td><b>88</b></td><td><b>1.4 %</b></td><td> </td></tr>
<tr><td width="32"><img src="/awstatsicons/browser/msie.png" alt='' title='' /></td><td class="aws">Msie 9.0</td><td>No</td><td>2</td><td>0 %</td><td class="aws"><img src="/awstatsicons/other/hh.png" width="2" height="5" /><br /></td></tr>
<tr><td><img src="/awstatsicons/browser/msie.png" alt='' title='' /></td><td class="aws">Msie 7.0</td><td>No</td><td>44</td><td>0.7 %</td><td class="aws"><img src="/awstatsicons/other/hh.png" width="4" height="5" /><br /></td></tr>
<tr><td><img src="/awstatsicons/browser/msie.png" alt='' title='' /></td><td class="aws">Msie 6.0</td><td>No</td><td>42</td><td>0.7 %</td><td class="aws"><img src="/awstatsicons/other/hh.png" width="4" height="5" /><br /></td></tr>
<tr bgcolor="#F6F6F6"><td class="aws" colspan="2"><b>FIREFOX</b></td><td> </td><td><b>1407</b></td><td><b>23.7 %</b></td><td> </td></tr>
<tr><td><img src="/awstatsicons/browser/firefox.png" alt='' title='' /></td><td class="aws">Firefox 7.0</td><td>No</td><td>322</td><td>5.4 %</td><td class="aws"><img src="/awstatsicons/other/hh.png" width="28" height="5" /><br /></td></tr>
<tr><td><img src="/awstatsicons/browser/firefox.png" alt='' title='' /></td><td class="aws">Firefox 6.0.2</td><td>No</td><td>1077</td><td>18.2 %</td><td class="aws"><img src="/awstatsicons/other/hh.png" width="92" height="5" /><br /></td></tr>
<tr><td><img src="/awstatsicons/browser/firefox.png" alt='' title='' /></td><td class="aws">Firefox 3.6.23</td><td>No</td><td>5</td><td>0 %</td><td class="aws"><img src="/awstatsicons/other/hh.png" width="2" height="5" /><br /></td></tr>
<tr><td><img src="/awstatsicons/browser/firefox.png" alt='' title='' /></td><td class="aws">Firefox 3.6.22</td><td>No</td><td>3</td><td>0 %</td><td class="aws"><img src="/awstatsicons/other/hh.png" width="2" height="5" /><br /></td></tr>
<tr bgcolor="#F6F6F6"><td class="aws" colspan="2"><b>Others</b></td><td> </td><td><b>4422</b></td><td><b>74.7 %</b></td><td> </td></tr>
<tr><td><img src="/awstatsicons/browser/safari.png" alt='' title='' /></td><td class="aws">Safari</td><td>No</td><td>3066</td><td>51.8 %</td><td class="aws"><img src="/awstatsicons/other/hh.png" width="261" height="5" /><br /></td></tr>
<tr><td><img src="/awstatsicons/browser/opera.png" alt='' title='' /></td><td class="aws">Opera</td><td>No</td><td>1352</td><td>22.8 %</td><td class="aws"><img src="/awstatsicons/other/hh.png" width="115" height="5" /><br /></td></tr>
<tr><td><img src="/awstatsicons/browser/unknown.png" alt='' title='' /></td><td class="aws"><span style="color: #666688">Unknown</span></td><td width="80">?</td><td>4</td><td>0 %</td><td class="aws"><img src="/awstatsicons/other/hh.png" width="2" height="5" /><br /></td></tr>
</table></td></tr></table><br />
<br /><br />
<span dir="ltr" style="font: 11px verdana, arial, helvetica; color: #000000;"><b>Advanced Web Statistics 6.7 (build 1.892)</b> - <a href="http://awstats.sourceforge.net" target="awstatshome">Created by awstats</a></span><br />
<br />
</body>
</html>
| pomahtuk/symphony-test | webstat/webstat/awstats.allvbg.ru.browserdetail.082011.html | HTML | mit | 7,842 |
<!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.6 / demos - 8.10.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
demos
<small>
8.10.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-01-18 12:47:20 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-01-18 12:47:20 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-num base Num library distributed with the OCaml compiler
base-threads base
base-unix base
camlp5 7.14 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-perl 1 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.04.2 The OCaml compiler (virtual package)
ocaml-base-compiler 4.04.2 Official 4.04.2 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "[email protected]"
homepage: "https://github.com/coq-contribs/demos"
license: "LGPL 2.1"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/Demos"]
depends: [
"ocaml"
"coq" {>= "8.10" & < "8.11~"}
]
tags: [
"keyword: sorting"
"keyword: Cases"
"keyword: Tauto"
"keyword: AutoRewrite"
"keyword: Prolog"
"category: Miscellaneous/Coq Use Examples"
]
authors: [
"Coq group"
]
bug-reports: "https://github.com/coq-contribs/demos/issues"
dev-repo: "git+https://github.com/coq-contribs/demos.git"
synopsis: "Demos of some Coq tools appeared in version V6.0"
description: """
Example of sorting algorithms defined using the Cases
(pattern-matching) construction. Demo of the decision tactic Tauto for
intuitionistic propositional calculus. Demo of the AutoRewrite tactic. Demo of
the Prolog tactic applied to the compilation of miniML programs."""
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/demos/archive/v8.10.0.tar.gz"
checksum: "md5=c41462e54b6780eada13c3b37ae0bd7f"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-demos.8.10.0 coq.8.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-demos -> coq >= 8.10 -> ocaml >= 4.05.0
base of this switch (use `--unlock-base' to force)
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-demos.8.10.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
| coq-bench/coq-bench.github.io | clean/Linux-x86_64-4.04.2-2.0.5/released/8.6/demos/8.10.0.html | HTML | mit | 7,124 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html id="htmlId">
<head>
<title>Coverage Report :: DuplicateCheck</title>
<style type="text/css">
@import "../../.css/coverage.css";
</style>
</head>
<body>
<div class="header"></div>
<div class="content">
<div class="breadCrumbs">
[ <a href="../../index.html">all classes</a> ]
[ <a href="../index.html">net.sf.jabref.model</a> ]
</div>
<h1>Coverage Summary for Class: DuplicateCheck (net.sf.jabref.model)</h1>
<table class="coverageStats">
<tr>
<th class="name">Class</th>
<th class="coverageStat
">
Class, %
</th>
<th class="coverageStat
">
Method, %
</th>
<th class="coverageStat
">
Line, %
</th>
</tr>
<tr>
<td class="name">DuplicateCheck</td>
<td class="coverageStat">
<span class="percent">
0%
</span>
<span class="absValue">
(0/ 1)
</span>
</td>
<td class="coverageStat">
<span class="percent">
0%
</span>
<span class="absValue">
(0/ 10)
</span>
</td>
<td class="coverageStat">
<span class="percent">
0%
</span>
<span class="absValue">
(0/ 133)
</span>
</td>
</tr>
</table>
<br/>
<br/>
<div class="sourceCode"><i>1</i> package net.sf.jabref.model;
<i>2</i>
<i>3</i> import java.util.HashMap;
<i>4</i> import java.util.HashSet;
<i>5</i> import java.util.List;
<i>6</i> import java.util.Map;
<i>7</i> import java.util.Optional;
<i>8</i> import java.util.Set;
<i>9</i>
<i>10</i> import net.sf.jabref.model.database.BibDatabase;
<i>11</i> import net.sf.jabref.model.database.BibDatabaseMode;
<i>12</i> import net.sf.jabref.model.entry.AuthorList;
<i>13</i> import net.sf.jabref.model.entry.BibEntry;
<i>14</i> import net.sf.jabref.model.entry.EntryType;
<i>15</i> import net.sf.jabref.model.entry.FieldName;
<i>16</i> import net.sf.jabref.model.entry.FieldProperty;
<i>17</i> import net.sf.jabref.model.entry.InternalBibtexFields;
<i>18</i>
<i>19</i> import org.apache.commons.logging.Log;
<i>20</i> import org.apache.commons.logging.LogFactory;
<i>21</i>
<i>22</i> /**
<i>23</i> * This class contains utility method for duplicate checking of entries.
<i>24</i> */
<b class="nc"><i>25</i> public class DuplicateCheck {</b>
<i>26</i>
<b class="nc"><i>27</i> private static final Log LOGGER = LogFactory.getLog(DuplicateCheck.class);</b>
<i>28</i>
<i>29</i> /*
<i>30</i> * Integer values for indicating result of duplicate check (for entries):
<i>31</i> *
<i>32</i> */
<i>33</i> private static final int NOT_EQUAL = 0;
<i>34</i> private static final int EQUAL = 1;
<i>35</i> private static final int EMPTY_IN_ONE = 2;
<i>36</i> private static final int EMPTY_IN_TWO = 3;
<i>37</i> private static final int EMPTY_IN_BOTH = 4;
<i>38</i>
<b class="nc"><i>39</i> public static double duplicateThreshold = 0.75; // The overall threshold to signal a duplicate pair</b>
<i>40</i> // Non-required fields are investigated only if the required fields give a value within
<i>41</i> // the doubt range of the threshold:
<i>42</i> private static final double DOUBT_RANGE = 0.05;
<i>43</i>
<i>44</i> private static final double REQUIRED_WEIGHT = 3; // Weighting of all required fields
<i>45</i>
<i>46</i> // Extra weighting of those fields that are most likely to provide correct duplicate detection:
<b class="nc"><i>47</i> private static final Map<String, Double> FIELD_WEIGHTS = new HashMap<>();</b>
<i>48</i>
<i>49</i>
<i>50</i> static {
<b class="nc"><i>51</i> DuplicateCheck.FIELD_WEIGHTS.put(FieldName.AUTHOR, 2.5);</b>
<b class="nc"><i>52</i> DuplicateCheck.FIELD_WEIGHTS.put(FieldName.EDITOR, 2.5);</b>
<b class="nc"><i>53</i> DuplicateCheck.FIELD_WEIGHTS.put(FieldName.TITLE, 3.);</b>
<b class="nc"><i>54</i> DuplicateCheck.FIELD_WEIGHTS.put(FieldName.JOURNAL, 2.);</b>
<b class="nc"><i>55</i> }</b>
<i>56</i>
<i>57</i>
<i>58</i> /**
<i>59</i> * Checks if the two entries represent the same publication.
<i>60</i> *
<i>61</i> * @param one BibEntry
<i>62</i> * @param two BibEntry
<i>63</i> * @return boolean
<i>64</i> */
<i>65</i> public static boolean isDuplicate(BibEntry one, BibEntry two, BibDatabaseMode bibDatabaseMode) {
<i>66</i>
<i>67</i> // First check if they are of the same type - a necessary condition:
<b class="nc"><i>68</i> if (!one.getType().equals(two.getType())) {</b>
<b class="nc"><i>69</i> return false;</b>
<i>70</i> }
<b class="nc"><i>71</i> EntryType type = EntryTypes.getTypeOrDefault(one.getType(), bibDatabaseMode);</b>
<i>72</i>
<i>73</i> // The check if they have the same required fields:
<b class="nc"><i>74</i> List<String> var = type.getRequiredFieldsFlat();</b>
<i>75</i> double[] req;
<b class="nc"><i>76</i> if (var == null) {</b>
<b class="nc"><i>77</i> req = new double[]{0., 0.};</b>
<i>78</i> } else {
<b class="nc"><i>79</i> req = DuplicateCheck.compareFieldSet(var, one, two);</b>
<i>80</i> }
<i>81</i>
<b class="nc"><i>82</i> if (Math.abs(req[0] - DuplicateCheck.duplicateThreshold) > DuplicateCheck.DOUBT_RANGE) {</b>
<i>83</i> // Far from the threshold value, so we base our decision on the req. fields only
<b class="nc"><i>84</i> return req[0] >= DuplicateCheck.duplicateThreshold;</b>
<i>85</i> }
<i>86</i> // Close to the threshold value, so we take a look at the optional fields, if any:
<b class="nc"><i>87</i> List<String> optionalFields = type.getOptionalFields();</b>
<b class="nc"><i>88</i> if (optionalFields != null) {</b>
<b class="nc"><i>89</i> double[] opt = DuplicateCheck.compareFieldSet(optionalFields, one, two);</b>
<b class="nc"><i>90</i> double totValue = ((DuplicateCheck.REQUIRED_WEIGHT * req[0] * req[1]) + (opt[0] * opt[1])) / ((req[1] * DuplicateCheck.REQUIRED_WEIGHT) + opt[1]);</b>
<b class="nc"><i>91</i> return totValue >= DuplicateCheck.duplicateThreshold;</b>
<i>92</i> }
<b class="nc"><i>93</i> return req[0] >= DuplicateCheck.duplicateThreshold;</b>
<i>94</i> }
<i>95</i>
<i>96</i> private static double[] compareFieldSet(List<String> fields, BibEntry one, BibEntry two) {
<b class="nc"><i>97</i> double res = 0;</b>
<b class="nc"><i>98</i> double totWeights = 0.;</b>
<b class="nc"><i>99</i> for (String field : fields) {</b>
<i>100</i> double weight;
<b class="nc"><i>101</i> if (DuplicateCheck.FIELD_WEIGHTS.containsKey(field)) {</b>
<b class="nc"><i>102</i> weight = DuplicateCheck.FIELD_WEIGHTS.get(field);</b>
<i>103</i> } else {
<b class="nc"><i>104</i> weight = 1.0;</b>
<i>105</i> }
<b class="nc"><i>106</i> totWeights += weight;</b>
<b class="nc"><i>107</i> int result = DuplicateCheck.compareSingleField(field, one, two);</b>
<b class="nc"><i>108</i> if (result == EQUAL) {</b>
<b class="nc"><i>109</i> res += weight;</b>
<b class="nc"><i>110</i> } else if (result == EMPTY_IN_BOTH) {</b>
<b class="nc"><i>111</i> totWeights -= weight;</b>
<i>112</i> }
<b class="nc"><i>113</i> }</b>
<b class="nc"><i>114</i> if (totWeights > 0) {</b>
<b class="nc"><i>115</i> return new double[]{res / totWeights, totWeights};</b>
<i>116</i> }
<b class="nc"><i>117</i> return new double[] {0.5, 0.0};</b>
<i>118</i> }
<i>119</i>
<i>120</i> private static int compareSingleField(String field, BibEntry one, BibEntry two) {
<b class="nc"><i>121</i> Optional<String> optionalStringOne = one.getField(field);</b>
<b class="nc"><i>122</i> Optional<String> optionalStringTwo = two.getField(field);</b>
<b class="nc"><i>123</i> if (!optionalStringOne.isPresent()) {</b>
<b class="nc"><i>124</i> if (!optionalStringTwo.isPresent()) {</b>
<b class="nc"><i>125</i> return EMPTY_IN_BOTH;</b>
<i>126</i> }
<b class="nc"><i>127</i> return EMPTY_IN_ONE;</b>
<b class="nc"><i>128</i> } else if (!optionalStringTwo.isPresent()) {</b>
<b class="nc"><i>129</i> return EMPTY_IN_TWO;</b>
<i>130</i> }
<i>131</i>
<i>132</i> // Both strings present
<b class="nc"><i>133</i> String stringOne = optionalStringOne.get();</b>
<b class="nc"><i>134</i> String stringTwo = optionalStringTwo.get();</b>
<i>135</i>
<b class="nc"><i>136</i> if (InternalBibtexFields.getFieldProperties(field).contains(FieldProperty.PERSON_NAMES)) {</b>
<i>137</i> // Specific for name fields.
<i>138</i> // Harmonise case:
<b class="nc"><i>139</i> String authorOne = AuthorList.fixAuthorLastNameOnlyCommas(stringOne, false).replace(" and ", " ").toLowerCase();</b>
<b class="nc"><i>140</i> String authorTwo = AuthorList.fixAuthorLastNameOnlyCommas(stringTwo, false).replace(" and ", " ").toLowerCase();</b>
<b class="nc"><i>141</i> double similarity = DuplicateCheck.correlateByWords(authorOne, authorTwo);</b>
<b class="nc"><i>142</i> if (similarity > 0.8) {</b>
<b class="nc"><i>143</i> return EQUAL;</b>
<i>144</i> }
<b class="nc"><i>145</i> return NOT_EQUAL;</b>
<b class="nc"><i>146</i> } else if (FieldName.PAGES.equals(field)) {</b>
<i>147</i> // Pages can be given with a variety of delimiters, "-", "--", " - ", " -- ".
<i>148</i> // We do a replace to harmonize these to a simple "-":
<i>149</i> // After this, a simple test for equality should be enough:
<b class="nc"><i>150</i> stringOne = stringOne.replaceAll("[- ]+", "-");</b>
<b class="nc"><i>151</i> stringTwo = stringTwo.replaceAll("[- ]+", "-");</b>
<b class="nc"><i>152</i> if (stringOne.equals(stringTwo)) {</b>
<b class="nc"><i>153</i> return EQUAL;</b>
<i>154</i> }
<b class="nc"><i>155</i> return NOT_EQUAL;</b>
<b class="nc"><i>156</i> } else if (FieldName.JOURNAL.equals(field)) {</b>
<i>157</i> // We do not attempt to harmonize abbreviation state of the journal names,
<i>158</i> // but we remove periods from the names in case they are abbreviated with
<i>159</i> // and without dots:
<b class="nc"><i>160</i> stringOne = stringOne.replace(".", "").toLowerCase();</b>
<b class="nc"><i>161</i> stringTwo = stringTwo.replace(".", "").toLowerCase();</b>
<b class="nc"><i>162</i> double similarity = DuplicateCheck.correlateByWords(stringOne, stringTwo);</b>
<b class="nc"><i>163</i> if (similarity > 0.8) {</b>
<b class="nc"><i>164</i> return EQUAL;</b>
<i>165</i> }
<b class="nc"><i>166</i> return NOT_EQUAL;</b>
<i>167</i> } else {
<b class="nc"><i>168</i> stringOne = stringOne.toLowerCase();</b>
<b class="nc"><i>169</i> stringTwo = stringTwo.toLowerCase();</b>
<b class="nc"><i>170</i> double similarity = DuplicateCheck.correlateByWords(stringOne, stringTwo);</b>
<b class="nc"><i>171</i> if (similarity > 0.8) {</b>
<b class="nc"><i>172</i> return EQUAL;</b>
<i>173</i> }
<b class="nc"><i>174</i> return NOT_EQUAL;</b>
<i>175</i> }
<i>176</i> }
<i>177</i>
<i>178</i> public static double compareEntriesStrictly(BibEntry one, BibEntry two) {
<b class="nc"><i>179</i> Set<String> allFields = new HashSet<>();</b>
<b class="nc"><i>180</i> allFields.addAll(one.getFieldNames());</b>
<b class="nc"><i>181</i> allFields.addAll(two.getFieldNames());</b>
<i>182</i>
<b class="nc"><i>183</i> int score = 0;</b>
<b class="nc"><i>184</i> for (String field : allFields) {</b>
<b class="nc"><i>185</i> Optional<String> stringOne = one.getField(field);</b>
<b class="nc"><i>186</i> Optional<String> stringTwo = two.getField(field);</b>
<b class="nc"><i>187</i> if (stringOne.equals(stringTwo)) {</b>
<b class="nc"><i>188</i> score++;</b>
<i>189</i> }
<b class="nc"><i>190</i> }</b>
<b class="nc"><i>191</i> if (score == allFields.size()) {</b>
<b class="nc"><i>192</i> return 1.01; // Just to make sure we can</b>
<i>193</i> // use score>1 without
<i>194</i> // trouble.
<i>195</i> }
<b class="nc"><i>196</i> return (double) score / allFields.size();</b>
<i>197</i> }
<i>198</i>
<i>199</i> /**
<i>200</i> * Goes through all entries in the given database, and if at least one of
<i>201</i> * them is a duplicate of the given entry, as per
<i>202</i> * Util.isDuplicate(BibEntry, BibEntry), the duplicate is returned.
<i>203</i> * The search is terminated when the first duplicate is found.
<i>204</i> *
<i>205</i> * @param database The database to search.
<i>206</i> * @param entry The entry of which we are looking for duplicates.
<i>207</i> * @return The first duplicate entry found. null if no duplicates are found.
<i>208</i> */
<i>209</i> public static Optional<BibEntry> containsDuplicate(BibDatabase database, BibEntry entry, BibDatabaseMode bibDatabaseMode) {
<b class="nc"><i>210</i> for (BibEntry other : database.getEntries()) {</b>
<b class="nc"><i>211</i> if (DuplicateCheck.isDuplicate(entry, other, bibDatabaseMode)) {</b>
<b class="nc"><i>212</i> return Optional.of(other); // Duplicate found.</b>
<i>213</i> }
<b class="nc"><i>214</i> }</b>
<b class="nc"><i>215</i> return Optional.empty(); // No duplicate found.</b>
<i>216</i> }
<i>217</i>
<i>218</i> /**
<i>219</i> * Compare two strings on the basis of word-by-word correlation analysis.
<i>220</i> *
<i>221</i> * @param s1 The first string
<i>222</i> * @param s2 The second string
<i>223</i> * @return a value in the interval [0, 1] indicating the degree of match.
<i>224</i> */
<i>225</i> public static double correlateByWords(String s1, String s2) {
<b class="nc"><i>226</i> String[] w1 = s1.split("\\s");</b>
<b class="nc"><i>227</i> String[] w2 = s2.split("\\s");</b>
<b class="nc"><i>228</i> int n = Math.min(w1.length, w2.length);</b>
<b class="nc"><i>229</i> int misses = 0;</b>
<b class="nc"><i>230</i> for (int i = 0; i < n; i++) {</b>
<b class="nc"><i>231</i> double corr = similarity(w1[i], w2[i]);</b>
<b class="nc"><i>232</i> if (corr < 0.75) {</b>
<b class="nc"><i>233</i> misses++;</b>
<i>234</i> }
<i>235</i> }
<b class="nc"><i>236</i> double missRate = (double) misses / (double) n;</b>
<b class="nc"><i>237</i> return 1 - missRate;</b>
<i>238</i> }
<i>239</i>
<i>240</i>
<i>241</i> /**
<i>242</i> * Calculates the similarity (a number within 0 and 1) between two strings.
<i>243</i> * http://stackoverflow.com/questions/955110/similarity-string-comparison-in-java
<i>244</i> */
<i>245</i> private static double similarity(String s1, String s2) {
<b class="nc"><i>246</i> String longer = s1;</b>
<b class="nc"><i>247</i> String shorter = s2;</b>
<i>248</i>
<b class="nc"><i>249</i> if (s1.length() < s2.length()) { // longer should always have greater length</b>
<b class="nc"><i>250</i> longer = s2;</b>
<b class="nc"><i>251</i> shorter = s1;</b>
<i>252</i> }
<b class="nc"><i>253</i> int longerLength = longer.length();</b>
<b class="nc"><i>254</i> if (longerLength == 0) {</b>
<b class="nc"><i>255</i> return 1.0;</b>
<i>256</i> /* both strings are zero length */ }
<b class="nc"><i>257</i> double sim = (longerLength - editDistance(longer, shorter)) / (double) longerLength;</b>
<b class="nc"><i>258</i> LOGGER.debug("Longer string: " + longer + " Shorter string: " + shorter + " Similarity: " + sim);</b>
<b class="nc"><i>259</i> return sim;</b>
<i>260</i>
<i>261</i> }
<i>262</i>
<i>263</i> /*
<i>264</i> * Levenshtein Edit Distance
<i>265</i> * http://stackoverflow.com/questions/955110/similarity-string-comparison-in-java
<i>266</i> */
<i>267</i> private static int editDistance(String s1, String s2) {
<b class="nc"><i>268</i> String s1LowerCase = s1.toLowerCase();</b>
<b class="nc"><i>269</i> String s2LowerCase = s2.toLowerCase();</b>
<i>270</i>
<b class="nc"><i>271</i> int[] costs = new int[s2LowerCase.length() + 1];</b>
<b class="nc"><i>272</i> for (int i = 0; i <= s1LowerCase.length(); i++) {</b>
<b class="nc"><i>273</i> int lastValue = i;</b>
<b class="nc"><i>274</i> for (int j = 0; j <= s2LowerCase.length(); j++) {</b>
<b class="nc"><i>275</i> if (i == 0) {</b>
<b class="nc"><i>276</i> costs[j] = j;</b>
<b class="nc"><i>277</i> } else if (j > 0) {</b>
<b class="nc"><i>278</i> int newValue = costs[j - 1];</b>
<b class="nc"><i>279</i> if (s1LowerCase.charAt(i - 1) != s2LowerCase.charAt(j - 1)) {</b>
<b class="nc"><i>280</i> newValue = Math.min(Math.min(newValue, lastValue), costs[j]) + 1;</b>
<i>281</i> }
<b class="nc"><i>282</i> costs[j - 1] = lastValue;</b>
<b class="nc"><i>283</i> lastValue = newValue;</b>
<i>284</i>
<i>285</i> }
<i>286</i> }
<b class="nc"><i>287</i> if (i > 0) {</b>
<b class="nc"><i>288</i> costs[s2LowerCase.length()] = lastValue;</b>
<i>289</i> }
<i>290</i> }
<b class="nc"><i>291</i> LOGGER.debug("String 1: " + s1LowerCase + " String 2: " + s2LowerCase + " Distance: " + costs[s2LowerCase.length()]);</b>
<b class="nc"><i>292</i> return costs[s2LowerCase.length()];</b>
<i>293</i> }
<i>294</i>
<i>295</i>
<i>296</i> }
</div>
</div>
<div class="footer">
<div style="float:right;">generated on 2017-07-15 00:44</div>
</div>
</body>
</html>
| JessicaDias/JabRef_ES2 | ReportImportTests/net.sf.jabref.model/.classes/DuplicateCheck.html | HTML | mit | 20,403 |
---
layout: content-posts
title: Etusivu
theme: swedish
course: rub4.1
sitemap:
changefreq: weekly
---
{% include posts-frontpage.html course=page.course %}
| riikkak/riikkak.github.io | kurssit/2019-2020/rub4.1/index.html | HTML | mit | 162 |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Calc</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
<link rel="stylesheet" href="css/main.css">
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
<script src="js/jquery.hotkeys.js"></script>
<script src="js/app.js"></script>
</head>
<body>
<div id="calculator" class="container-fluid vcenter">
<div id="result" class="row">0</div>
<div id="preview" class="row"></div>
<div class="row key-row">
<div id="key-AC" class="col-xs-3 key" data-code="AC">AC</div>
<div id="key-MULTIPLY" class="col-xs-3 key" data-code="MULTIPLY">X</div>
<div id="key-DIVISION" class="col-xs-3 key" data-code="DIVISION">/</div>
<div id="key-DEL" class="col-xs-3 key" data-code="DEL">DEL</div>
</div>
<div class="row key-row">
<div class="col-xs-9 key-group">
<div class="container-fluid">
<div class="row key-row">
<div id="key-7" class="col-xs-4 key" data-code="7">7</div>
<div id="key-8" class="col-xs-4 key" data-code="8">8</div>
<div id="key-9" class="col-xs-4 key" data-code="9">9</div>
<div id="key-4" class="col-xs-4 key" data-code="4">4</div>
<div id="key-5" class="col-xs-4 key" data-code="5">5</div>
<div id="key-6" class="col-xs-4 key" data-code="6">6</div>
<div id="key-1" class="col-xs-4 key" data-code="1">1</div>
<div id="key-2" class="col-xs-4 key" data-code="2">2</div>
<div id="key-3" class="col-xs-4 key" data-code="3">3</div>
</div>
</div>
</div>
<div class="col-xs-3 key-group">
<div id="key-MINUS" class="key" data-code="MINUS">-</div>
<div id="key-PLUS" class="key" data-code="PLUS">+</div>
</div>
</div>
<div class="row key-row">
<div id="key-DOT" class="col-xs-3 key" data-code="DOT">.</div>
<div id="key-0" class="col-xs-3 key" data-code="0">0</div>
<div id="key-EQL" class="col-xs-6 key" data-code="EQL">=</div>
</div>
</div>
</body>
</html> | sriharsha67/Calc | index.html | HTML | mit | 2,214 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_73) on Sat Mar 05 16:18:23 CET 2016 -->
<title>Uses of Class de.soulan.example.rmi.ssl.EasyRSAHelper</title>
<meta name="date" content="2016-03-05">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class de.soulan.example.rmi.ssl.EasyRSAHelper";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../de/soulan/example/rmi/ssl/EasyRSAHelper.html" title="class in de.soulan.example.rmi.ssl">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?de/soulan/example/rmi/ssl/class-use/EasyRSAHelper.html" target="_top">Frames</a></li>
<li><a href="EasyRSAHelper.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h2 title="Uses of Class de.soulan.example.rmi.ssl.EasyRSAHelper" class="title">Uses of Class<br>de.soulan.example.rmi.ssl.EasyRSAHelper</h2>
</div>
<div class="classUseContainer">No usage of de.soulan.example.rmi.ssl.EasyRSAHelper</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../de/soulan/example/rmi/ssl/EasyRSAHelper.html" title="class in de.soulan.example.rmi.ssl">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?de/soulan/example/rmi/ssl/class-use/EasyRSAHelper.html" target="_top">Frames</a></li>
<li><a href="EasyRSAHelper.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>
| soulan/JavaRMIWithCustomCA | doc/de/soulan/example/rmi/ssl/class-use/EasyRSAHelper.html | HTML | mit | 4,457 |
<section class="row" data-ng-controller="AuthenticationController">
<!--<h3 class="col-md-12 text-center">Sign in using your social accounts</h3>-->
<!--<div class="col-md-12 text-center">-->
<!--<a href="/auth/facebook" class="undecorated-link">-->
<!--<img src="/modules/users/img/buttons/facebook.png">-->
<!--</a>-->
<!--<a href="/auth/twitter" class="undecorated-link">-->
<!--<img src="/modules/users/img/buttons/twitter.png">-->
<!--</a>-->
<!--<a href="/auth/google" class="undecorated-link">-->
<!--<img src="/modules/users/img/buttons/google.png">-->
<!--</a>-->
<!--<a href="/auth/linkedin" class="undecorated-link">-->
<!--<img src="/modules/users/img/buttons/linkedin.png">-->
<!--</a>-->
<!--<a href="/auth/github" class="undecorated-link">-->
<!--<img src="/modules/users/img/buttons/github.png">-->
<!--</a>-->
<!--</div>-->
<h3 class="col-md-12 text-center">Sign In</h3>
<div class="col-xs-offset-2 col-xs-8 col-md-offset-5 col-md-2">
<form data-ng-submit="signin()" class="signin form-horizontal" autocomplete="off">
<fieldset>
<div class="form-group">
<label for="username">Username</label>
<input type="text" id="username" name="username" class="form-control" data-ng-model="credentials.username" placeholder="Username">
</div>
<div class="form-group">
<label for="password">Password</label>
<input type="password" id="password" name="password" class="form-control" data-ng-model="credentials.password" placeholder="Password">
</div>
<div class="text-center form-group">
<button type="submit" class="btn btn-primary">Sign in</button> or
<a href="/#!/signup">Sign up</a>
</div>
<!--<div class="forgot-password">-->
<!--<a href="/#!/password/forgot">Forgot your password?</a>-->
<!--</div>-->
<div data-ng-show="error" class="text-center text-danger">
<strong data-ng-bind="error"></strong>
</div>
</fieldset>
</form>
</div>
</section>
<script>
$( document ).ready(function() {
cssfixOther();
});
</script>
| amcginlay/comedystore | public/modules/users/views/authentication/signin.client.view.html | HTML | mit | 2,085 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="GENERATOR" content="VSdocman - documentation generator; https://www.helixoft.com" />
<link rel="icon" href="favicon.ico">
<title>tlece_ApplyPostVacancyInterview.CreatedUtc Property</title>
<link rel="stylesheet" type="text/css" href="msdn2019/toc.css" />
<script src="msdn2019/toc.js"></script>
<link rel="stylesheet" type="text/css" href="msdn2019/msdn2019.css"></link>
<script src="msdn2019/msdn2019.js" type="text/javascript"></script>
<script src="SyntaxHighlighter/scripts/shCore_helixoft.js" type="text/javascript"></script>
<script src="SyntaxHighlighter/scripts/shBrushVb.js" type="text/javascript"></script>
<script src="SyntaxHighlighter/scripts/shBrushCSharp.js" type="text/javascript"></script>
<script src="SyntaxHighlighter/scripts/shBrushFSharp.js" type="text/javascript"></script>
<script src="SyntaxHighlighter/scripts/shBrushCpp.js" type="text/javascript"></script>
<script src="SyntaxHighlighter/scripts/shBrushJScript.js" type="text/javascript"></script>
<link href="SyntaxHighlighter/styles/shCore.css" rel="stylesheet" type="text/css" />
<link href="SyntaxHighlighter/styles/shThemeMsdnLW.css" rel="stylesheet" type="text/css" />
<script type="text/javascript">
SyntaxHighlighter.all();
</script>
<link rel="stylesheet" type="text/css" href="vsdocman_overrides.css"></link>
</head>
<body style="direction: ltr;">
<div id="topic">
<!--HEADER START-->
<div id="header">
<div id="header-top-container">
<div id="header-top-parent-container1">
<div id="header-top-container1">
<div id="runningHeaderText1"><a id="headerLogo" href="#" onclick="window.location.href = getCssCustomProperty('--headerLogoLink'); return false;">logo</a></div>
<div id="runningHeaderText1b"><script>
document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
</script></div>
</div>
</div>
<div id="header-top-container2">
<div id="runningHeaderText">SOLUTION-WIDE PROPERTIES Reference</div>
<div id="search-bar-container">
<form id="search-bar" action="search--.html">
<input id="HeaderSearchInput" type="search" name="search" placeholder="Search" >
<button id="btn-search" class="c-glyph" title="Search">
<span>Search</span>
</button>
</form>
<button id="cancel-search" class="cancel-search" title="Cancel">
<span>Cancel</span>
</button>
</div>
</div>
</div>
<hr />
<div id="header-breadcrumbs"></div>
<div id="headerLinks">
</div>
<hr />
</div>
<!--HEADER END-->
<div id="mainSection">
<div id="toc-area">
<div id="toc-container" class="stickthis full-height">
<div id="-1"></div>
<div id="c-1">
<div id="ci-1" class="inner-for-height"></div>
</div>
</div>
</div>
<div id="mainBody">
<h1 class="title">tlece_ApplyPostVacancyInterview.CreatedUtc Property</h1>
<div class="metadata">
Namespace:
<a href="topic_0000000000000265.html">Tlece.Recruitment.Entities</a>
<br />Assembly: Tlece.Recruitment (in Tlece.Recruitment.dll)
</div>
<div class="section_container">
<div id="syntaxSection" class="section">
<div id="syntaxCodeBlocks">
<div class="codeSnippetContainer">
<div class="codeSnippetTabs">
<div class="codeSnippetTabLeftCornerActive">
</div>
<div class="codeSnippetTab csFirstTab csActiveTab codeVB">
<a>VB</a>
</div>
<div class="codeSnippetTab csNaTab codeCsharp">
<a href="javascript: CodeSnippet_SetLanguage('Csharp');">C#</a>
</div>
<div class="codeSnippetTab csNaTab codeFsharp">
<a href="javascript: CodeSnippet_SetLanguage('Fsharp');">F#</a>
</div>
<div class="codeSnippetTab csNaTab codeCpp">
<a href="javascript: CodeSnippet_SetLanguage('Cpp');">C++</a>
</div>
<div class="codeSnippetTab csLastTab csNaTab codeJScript">
<a href="javascript: CodeSnippet_SetLanguage('JScript');">JScript</a>
</div>
<div class="codeSnippetTabRightCorner">
</div>
<div style="clear:both;">
</div>
</div>
<div class="codeSnippetCodeCollection">
<div class="codeSnippetToolbar">
<a title="Copy to clipboard." href="javascript:void(0)" onclick="CopyCode(this);">Copy</a>
</div>
<div class="codeSnippetCode codeVB">
<pre xml:space="preserve" class="brush: vb">Public Property CreatedUtc() As <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.datetime">Date</a></pre>
</div>
<div class="codeSnippetCode codeNA">
<pre xml:space="preserve">This language is not supported or no code example is available.</pre>
</div>
</div>
</div>
<div class="codeSnippetContainer">
<div class="codeSnippetTabs">
<div class="codeSnippetTabLeftCorner">
</div>
<div class="codeSnippetTab csFirstTab csNaTab codeVB">
<a>VB</a>
</div>
<div class="codeSnippetTab csActiveTab codeCsharp">
<a href="javascript: CodeSnippet_SetLanguage('Csharp');">C#</a>
</div>
<div class="codeSnippetTab csNaTab codeFsharp">
<a href="javascript: CodeSnippet_SetLanguage('Fsharp');">F#</a>
</div>
<div class="codeSnippetTab csNaTab codeCpp">
<a href="javascript: CodeSnippet_SetLanguage('Cpp');">C++</a>
</div>
<div class="codeSnippetTab csLastTab csNaTab codeJScript">
<a href="javascript: CodeSnippet_SetLanguage('JScript');">JScript</a>
</div>
<div class="codeSnippetTabRightCorner">
</div>
<div style="clear:both;">
</div>
</div>
<div class="codeSnippetCodeCollection">
<div class="codeSnippetToolbar">
<a title="Copy to clipboard." href="javascript:void(0)" onclick="CopyCode(this);">Copy</a>
</div>
<div class="codeSnippetCode codeCsharp">
<pre xml:space="preserve" class="brush: csharp">public <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.datetime">DateTime</a> CreatedUtc {get; set;}</pre>
</div>
<div class="codeSnippetCode codeNA">
<pre xml:space="preserve">This language is not supported or no code example is available.</pre>
</div>
</div>
</div>
<div class="codeSnippetContainer">
<div class="codeSnippetTabs">
<div class="codeSnippetTabLeftCorner">
</div>
<div class="codeSnippetTab csFirstTab csNaTab codeVB">
<a>VB</a>
</div>
<div class="codeSnippetTab csNaTab codeCsharp">
<a href="javascript: CodeSnippet_SetLanguage('Csharp');">C#</a>
</div>
<div class="codeSnippetTab csNaTab codeFsharp">
<a href="javascript: CodeSnippet_SetLanguage('Fsharp');">F#</a>
</div>
<div class="codeSnippetTab csActiveTab codeCpp">
<a href="javascript: CodeSnippet_SetLanguage('Cpp');">C++</a>
</div>
<div class="codeSnippetTab csLastTab csNaTab codeJScript">
<a href="javascript: CodeSnippet_SetLanguage('JScript');">JScript</a>
</div>
<div class="codeSnippetTabRightCorner">
</div>
<div style="clear:both;">
</div>
</div>
<div class="codeSnippetCodeCollection">
<div class="codeSnippetToolbar">
<a title="Copy to clipboard." href="javascript:void(0)" onclick="CopyCode(this);">Copy</a>
</div>
<div class="codeSnippetCode codeCpp">
<pre xml:space="preserve" class="brush: cpp">public: <br />property <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.datetime">DateTime</a> CreatedUtc { <br /> <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.datetime">DateTime</a> get( ); <br /> void set( <br /> <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.datetime">DateTime</a> value <br /> ); <br />}</pre>
</div>
<div class="codeSnippetCode codeNA">
<pre xml:space="preserve">This language is not supported or no code example is available.</pre>
</div>
</div>
</div>
<div class="codeSnippetContainer">
<div class="codeSnippetTabs">
<div class="codeSnippetTabLeftCorner">
</div>
<div class="codeSnippetTab csFirstTab csNaTab codeVB">
<a>VB</a>
</div>
<div class="codeSnippetTab csNaTab codeCsharp">
<a href="javascript: CodeSnippet_SetLanguage('Csharp');">C#</a>
</div>
<div class="codeSnippetTab csNaTab codeFsharp">
<a href="javascript: CodeSnippet_SetLanguage('Fsharp');">F#</a>
</div>
<div class="codeSnippetTab csNaTab codeCpp">
<a href="javascript: CodeSnippet_SetLanguage('Cpp');">C++</a>
</div>
<div class="codeSnippetTab csActiveTab csLastTab codeJScript">
<a href="javascript: CodeSnippet_SetLanguage('JScript');">JScript</a>
</div>
<div class="codeSnippetTabRightCornerActive">
</div>
<div style="clear:both;">
</div>
</div>
<div class="codeSnippetCodeCollection">
<div class="codeSnippetToolbar">
<a title="Copy to clipboard." href="javascript:void(0)" onclick="CopyCode(this);">Copy</a>
</div>
<div class="codeSnippetCode codeJScript">
<pre xml:space="preserve" class="brush: js">public function get CreatedUtc() : <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.datetime">DateTime</a>; <br />public function set CreatedUtc(value : <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.datetime">DateTime</a>);</pre>
</div>
<div class="codeSnippetCode codeNA">
<pre xml:space="preserve">This language is not supported or no code example is available.</pre>
</div>
</div>
</div>
</div>
<h4 class="subHeading">
Property Value</h4>
<a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.datetime">DateTime</a>
</div>
</div>
<div class="section_container">
<div class="section_heading">
<span><a href="javascript:void(0)" title="Collapse" onclick="toggleSection(this);">Applies to</a></span>
<div> </div>
</div>
<div id="frameworksSection" class="section">
<h4 class="subHeading">.NET Framework</h4>Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1<br />
</div>
</div>
<div class="section_container">
<div class="section_heading">
<span><a href="javascript:void(0)" title="Collapse" onclick="toggleSection(this);">See Also</a></span>
<div> </div>
</div>
<div id="seeAlsoSection" class="section">
<div>
<a href="topic_000000000000029D.html">tlece_ApplyPostVacancyInterview Class</a><br />
<a href="topic_0000000000000265.html">Tlece.Recruitment.Entities Namespace</a><br />
</div>
</div>
</div>
</div>
<div id="internal-toc-area">
<div id="internal-toc-container" class="stickthis">
<h3 id="internal-toc-heading">In this article</h3>
<span id="internal-toc-definition-localized-text">Definition</span>
</div>
</div>
</div>
<div id="footer">
<div id="footer-container">
<p><span style="color: #FF0000;">Generated with unregistered version of <a target="_top" href="http://www.helixoft.com/vsdocman/overview.html">VSdocman</a></span> <br />Your own footer text will only be shown in registered version.</p>
</div>
</div>
</div>
</body>
</html>
| asiboro/asiboro.github.io | vsdoc/topic_00000000000002A5.html | HTML | mit | 11,866 |
{% include header-main.html %}
{% include events.html %}
{% include footer.html %}
| arnp/personal-site | _layouts/events.html | HTML | mit | 89 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta content="IE=edge" http-equiv="X-UA-Compatible">
<meta content="initial-scale=1.0, maximum-scale=1.0, user-scalable=no, width=device-width" name="viewport">
<title>Plein Air</title>
<!-- css -->
<link href="../css/base.css" rel="stylesheet">
<link href="../css/project.css" rel="stylesheet">
<!-- favicon -->
<!-- ... -->
</head>
<body class="page-brand">
<header class="header header-transparent header-waterfall ui-header affix">
<ul class="nav nav-list pull-left">
<a href="" onclick="window.location='../templates/villes.html';">
<img class="icon icon-lg" src="../images/icons/home.svg" style="height:56px;">
</img>
</a>
</ul>
<p class="header-logo margin-left-no" href="">Plein Air</p>
<ul class="nav nav-list pull-right">
<a href="#" onclick="history.back()">
<img class="icon icon-lg" src="../images/icons/back.svg" style="height:56px;">
</img>
</a>
</ul>
</header>
<nav aria-hidden="true" class="menu" id="ui_menu" tabindex="-1">
<div class="menu-scroll">
<div class="menu-content">
<a class="menu-logo" href="index.html">APP NAME HERE</a>
<ul class="nav">
<a class="collapsed waves-attach" data-toggle="collapse" href="#ui_menu_javascript">Temporaire</a>
<ul class="menu-collapse collapse" id="ui_menu_javascript">
<li>
<a class="waves-attach" href="ui-affix.html">Temporaire</a>
</li>
</ul>
</li>
</ul>
</div>
</div>
</nav>
<main class="content">
<div class="content-header ui-content-header">
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-6 col-lg-push-3 col-sm-10 col-sm-push-1">
<section class="content-inner margin-top-no">
</section>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<div class="card btn-flat waves-attach cards" >
<aside class ="card-side pull-left card-side-icon">
<img src="../images/icons/ete.svg" class="card-side-icon-svg" style="margin:50% auto;"> </img>
</aside>
<div class="card-main ">
<div class="card-inner">
<p class="card-heading"> Été </p>
<p class="margin-bottom-lg"> </p>
</div>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card btn-flat waves-attach cards">
<aside class="card-side pull-left card-side-icon">
<img src="../images/icons/hiver.svg" class="card-side-icon-svg" style="margin:50% auto;"> </img>
</aside>
<div class="card-main ">
<div class="card-inner">
<p class="card-heading"> Hiver </p>
<p class="margin-bottom-lg"> </p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<footer class="ui-footer">
<div class="container">
<img src="../images/icons/ico.png" style="height:40px; width:40px;"> Companion</img>
</div>
</footer>
</main>
<!-- js -->
<script src="../js/jquery-2.2.3.min.js"></script>
<script src="../js/base.js"></script>
<script src="../js/project.js"></script>
<script src="../js/categories.js"></script>
<script src="../js/geolocalisation.js"></script>
</body>
</html> | Philz69/Compagnion | material-master/templates/pleinair.html | HTML | mit | 3,226 |
<!DOCTYPE html>
<HTML><head><TITLE>Manpage of MOUNT\&.CIFS</TITLE>
<meta charset="utf-8">
<link rel="stylesheet" href="/css/main.css" type="text/css">
</head>
<body>
<header class="site-header">
<div class="wrap"> <div class="site-title"><a href="/manpages/index.html">linux manpages</a></div>
<div class="site-description">{"type":"documentation"}</div>
</div>
</header>
<div class="page-content"><div class="wrap">
<H1>MOUNT\&.CIFS</H1>
Section: System Administration tools (8)<BR>Updated: 02/07/2010<BR><A HREF="#index">Index</A>
<A HREF="/manpages/index.html">Return to Main Contents</A><HR>
<A NAME="lbAB"> </A>
<H2>NAME</H2>
mount.cifs - mount using the Common Internet File System (CIFS)
<A NAME="lbAC"> </A>
<H2>SYNOPSIS</H2>
<DL COMPACT>
<DT>
<DD>mount.cifs {service} {mount-point} [-o options]
</DL>
<A NAME="lbAD"> </A>
<H2>DESCRIPTION</H2>
<P>
This tool is part of the cifs-utils suite.
<P>
mount.cifs mounts a Linux CIFS filesystem. It is usually invoked indirectly by the
<B><A HREF="/manpages/index.html?8+mount">mount</A></B>(8)
command when using the "-t cifs" option. This command only works in Linux, and the kernel must support the cifs filesystem. The CIFS protocol is the successor to the SMB protocol and is supported by most Windows servers and many other commercial servers and Network Attached Storage appliances as well as by the popular Open Source server Samba.
<P>
The mount.cifs utility attaches the UNC name (exported network resource) specified as
<I>service</I>
(using //server/share syntax, where "server" is the server name or IP address and "share" is the name of the share) to the local directory
<I>mount-point</I>.
<P>
Options to
<I>mount.cifs</I>
are specified as a comma-separated list of key=value pairs. It is possible to send options other than those listed here, assuming that the cifs filesystem kernel module (cifs.ko) supports them. Unrecognized cifs mount options passed to the cifs vfs kernel code will be logged to the kernel log.
<P>
<I>mount.cifs</I>
causes the cifs vfs to launch a thread named cifsd. After mounting it keeps running until the mounted resource is unmounted (usually via the umount utility).
<P>
<P>
<I>mount.cifs -V</I>
command displays the version of cifs mount helper.
<P>
<P>
<I>modinfo cifs</I>
command displays the version of cifs module.
<A NAME="lbAE"> </A>
<H2>OPTIONS</H2>
<P>
user=<I>arg</I>
<DL COMPACT><DT><DD>
specifies the username to connect as. If this is not given, then the environment variable
<I>USER</I>
is used. This option can also take the form "user%password" or "workgroup/user" or "workgroup/user%password" to allow the password and workgroup to be specified as part of the username.
<P>
<DL COMPACT><DT><DD>
<BR>
<FONT SIZE="+1">
<B>Note</B>
</FONT>
<BR>
The cifs vfs accepts the parameter
<I>user=</I>, or for users familiar with smbfs it accepts the longer form of the parameter
<I>username=</I>. Similarly the longer smbfs style parameter names may be accepted as synonyms for the shorter cifs parameters
<I>pass=</I>,<I>dom=</I>
and
<I>cred=</I>.
<P>
</DL>
</DL>
<P>
password=<I>arg</I>
<DL COMPACT><DT><DD>
specifies the CIFS password. If this option is not given then the environment variable
<I>PASSWD</I>
is used. If the password is not specified directly or indirectly via an argument to mount,
<I>mount.cifs</I>
will prompt for a password, unless the guest option is specified.
<P>
Note that a password which contains the delimiter character (i.e. a comma ',') will fail to be parsed correctly on the command line. However, the same password defined in the PASSWD environment variable or via a credentials file (see below) or entered at the password prompt will be read correctly.
</DL>
<P>
credentials=<I>filename</I>
<DL COMPACT><DT><DD>
specifies a file that contains a username and/or password and optionally the name of the workgroup. The format of the file is:
<P>
<DL COMPACT><DT><DD>
<PRE>
username=<I>value</I>
password=<I>value</I>
domain=<I>value</I>
</PRE>
</DL>
<P>
This is preferred over having passwords in plaintext in a shared file, such as
/etc/fstab. Be sure to protect any credentials file properly.
</DL>
<P>
uid=<I>arg</I>
<DL COMPACT><DT><DD>
sets the uid that will own all files or directories on the mounted filesystem when the server does not provide ownership information. It may be specified as either a username or a numeric uid. When not specified, the default is uid 0. The mount.cifs helper must be at version 1.10 or higher to support specifying the uid in non-numeric form. See the section on FILE AND DIRECTORY OWNERSHIP AND PERMISSIONS below for more information.
</DL>
<P>
forceuid
<DL COMPACT><DT><DD>
instructs the client to ignore any uid provided by the server for files and directories and to always assign the owner to be the value of the uid= option. See the section on FILE AND DIRECTORY OWNERSHIP AND PERMISSIONS below for more information.
</DL>
<P>
cruid=<I>arg</I>
<DL COMPACT><DT><DD>
sets the uid of the owner of the credentials cache. This is primarily useful with sec=krb5. The default is the real uid of the process performing the mount. Setting this parameter directs the upcall to look for a credentials cache owned by that user.
</DL>
<P>
gid=<I>arg</I>
<DL COMPACT><DT><DD>
sets the gid that will own all files or directories on the mounted filesystem when the server does not provide ownership information. It may be specified as either a groupname or a numeric gid. When not specified, the default is gid 0. The mount.cifs helper must be at version 1.10 or higher to support specifying the gid in non-numeric form. See the section on FILE AND DIRECTORY OWNERSHIP AND PERMISSIONS below for more information.
</DL>
<P>
forcegid
<DL COMPACT><DT><DD>
instructs the client to ignore any gid provided by the server for files and directories and to always assign the owner to be the value of the gid= option. See the section on FILE AND DIRECTORY OWNERSHIP AND PERMISSIONS below for more information.
</DL>
<P>
port=<I>arg</I>
<DL COMPACT><DT><DD>
sets the port number on which the client will attempt to contact the CIFS server. If this value is specified, look for an existing connection with this port, and use that if one exists. If one doesn't exist, try to create a new connection on that port. If that connection fails, return an error. If this value isn't specified, look for an existing connection on port 445 or 139. If no such connection exists, try to connect on port 445 first and then port 139 if that fails. Return an error if both fail.
</DL>
<P>
servernetbiosname=<I>arg</I>
<DL COMPACT><DT><DD>
Specify the server netbios name (RFC1001 name) to use when attempting to setup a session to the server. Although rarely needed for mounting to newer servers, this option is needed for mounting to some older servers (such as OS/2 or Windows 98 and Windows ME) since when connecting over port 139 they, unlike most newer servers, do not support a default server name. A server name can be up to 15 characters long and is usually uppercased.
</DL>
<P>
servern=<I>arg</I>
<DL COMPACT><DT><DD>
Synonym for <I>servernetbiosname</I>.
</DL>
<P>
netbiosname=<I>arg</I>
<DL COMPACT><DT><DD>
When mounting to servers via port 139, specifies the RFC1001 source name to use to represent the client netbios machine name when doing the RFC1001 netbios session initialize.
</DL>
<P>
file_mode=<I>arg</I>
<DL COMPACT><DT><DD>
If the server does not support the CIFS Unix extensions this overrides the default file mode.
</DL>
<P>
dir_mode=<I>arg</I>
<DL COMPACT><DT><DD>
If the server does not support the CIFS Unix extensions this overrides the default mode for directories.
</DL>
<P>
ip=<I>arg</I>
<DL COMPACT><DT><DD>
sets the destination IP address. This option is set automatically if the server name portion of the requested UNC name can be resolved so rarely needs to be specified by the user.
</DL>
<P>
domain=<I>arg</I>
<DL COMPACT><DT><DD>
sets the domain (workgroup) of the user
</DL>
<P>
guest
<DL COMPACT><DT><DD>
don't prompt for a password
</DL>
<P>
iocharset
<DL COMPACT><DT><DD>
Charset used to convert local path names to and from Unicode. Unicode is used by default for network path names if the server supports it. If iocharset is not specified then the nls_default specified during the local client kernel build will be used. If server does not support Unicode, this parameter is unused.
</DL>
<P>
ro
<DL COMPACT><DT><DD>
mount read-only
</DL>
<P>
rw
<DL COMPACT><DT><DD>
mount read-write
</DL>
<P>
setuids
<DL COMPACT><DT><DD>
If the CIFS Unix extensions are negotiated with the server the client will attempt to set the effective uid and gid of the local process on newly created files, directories, and devices (create, mkdir, mknod). If the CIFS Unix Extensions are not negotiated, for newly created files and directories instead of using the default uid and gid specified on the the mount, cache the new file's uid and gid locally which means that the uid for the file can change when the inode is reloaded (or the user remounts the share).
</DL>
<P>
nosetuids
<DL COMPACT><DT><DD>
The client will not attempt to set the uid and gid on on newly created files, directories, and devices (create, mkdir, mknod) which will result in the server setting the uid and gid to the default (usually the server uid of the user who mounted the share). Letting the server (rather than the client) set the uid and gid is the default.If the CIFS Unix Extensions are not negotiated then the uid and gid for new files will appear to be the uid (gid) of the mounter or the uid (gid) parameter specified on the mount.
</DL>
<P>
perm
<DL COMPACT><DT><DD>
Client does permission checks (vfs_permission check of uid and gid of the file against the mode and desired operation), Note that this is in addition to the normal ACL check on the target machine done by the server software. Client permission checking is enabled by default.
</DL>
<P>
noperm
<DL COMPACT><DT><DD>
Client does not do permission checks. This can expose files on this mount to access by other users on the local client system. It is typically only needed when the server supports the CIFS Unix Extensions but the UIDs/GIDs on the client and server system do not match closely enough to allow access by the user doing the mount. Note that this does not affect the normal ACL check on the target machine done by the server software (of the server ACL against the user name provided at mount time).
</DL>
<P>
dynperm
<DL COMPACT><DT><DD>
Instructs the server to maintain ownership and permissions in memory that can't be stored on the server. This information can disappear at any time (whenever the inode is flushed from the cache), so while this may help make some applications work, it's behavior is somewhat unreliable. See the section below on FILE AND DIRECTORY OWNERSHIP AND PERMISSIONS for more information.
</DL>
<P>
directio
<DL COMPACT><DT><DD>
Do not do inode data caching on files opened on this mount. This precludes mmaping files on this mount. In some cases with fast networks and little or no caching benefits on the client (e.g. when the application is doing large sequential reads bigger than page size without rereading the same data) this can provide better performance than the default behavior which caches reads (readahead) and writes (writebehind) through the local Linux client pagecache if oplock (caching token) is granted and held. Note that direct allows write operations larger than page size to be sent to the server. On some kernels this requires the cifs.ko module to be built with the CIFS_EXPERIMENTAL configure option.
</DL>
<P>
mapchars
<DL COMPACT><DT><DD>
Translate six of the seven reserved characters (not backslash, but including the colon, question mark, pipe, asterik, greater than and less than characters) to the remap range (above 0xF000), which also allows the CIFS client to recognize files created with such characters by Windows's POSIX emulation. This can also be useful when mounting to most versions of Samba (which also forbids creating and opening files whose names contain any of these seven characters). This has no effect if the server does not support Unicode on the wire. Please note that the files created with mapchars mount option may not be accessible if the share is mounted without that option.
</DL>
<P>
nomapchars
<DL COMPACT><DT><DD>
Do not translate any of these seven characters (default)
</DL>
<P>
intr
<DL COMPACT><DT><DD>
currently unimplemented
</DL>
<P>
nointr
<DL COMPACT><DT><DD>
(default) currently unimplemented
</DL>
<P>
hard
<DL COMPACT><DT><DD>
The program accessing a file on the cifs mounted file system will hang when the server crashes.
</DL>
<P>
soft
<DL COMPACT><DT><DD>
(default) The program accessing a file on the cifs mounted file system will not hang when the server crashes and will return errors to the user application.
</DL>
<P>
noacl
<DL COMPACT><DT><DD>
Do not allow POSIX ACL operations even if server would support them.
<P>
The CIFS client can get and set POSIX ACLs (getfacl, setfacl) to Samba servers version 3.0.10 and later. Setting POSIX ACLs requires enabling both CIFS_XATTR and then CIFS_POSIX support in the CIFS configuration options when building the cifs module. POSIX ACL support can be disabled on a per mount basis by specifying "noacl" on mount.
</DL>
<P>
cifsacl
<DL COMPACT><DT><DD>
This option is used to map CIFS/NTFS ACLs to/from Linux permission bits,
map SIDs to/from UIDs and GIDs, and get and set Security Descriptors.
<P>
See sections on
<I>CIFS/NTFS ACL, SID/UID/GID MAPPING, SECURITY DESCRIPTORS</I>
for more information.
</DL>
<P>
backupuid=<I>arg</I>
<DL COMPACT><DT><DD>
Restrict access to files with the backup intent to a user. Either a name or an id must be provided as an argument, there are no default values.
<P>
See section <I>ACCESSING FILES WITH BACKUP INTENT</I> for more details
</DL>
<P>
backupgid=<I>arg</I>
<DL COMPACT><DT><DD>
Restrict access to files with the backup intent to a group. Either a name or an id must be provided as an argument, there are no default values.
<P>
See section <I>ACCESSING FILES WITH BACKUP INTENT</I> for more details
</DL>
<P>
nocase
<DL COMPACT><DT><DD>
Request case insensitive path name matching (case sensitive is the default if the server suports it).
</DL>
<P>
ignorecase
<DL COMPACT><DT><DD>
Synonym for <I>nocase</I>.
</DL>
<P>
sec=
<DL COMPACT><DT><DD>
Security mode. Allowed values are:
<P>
<DL COMPACT><DT><DD>
*
none attempt to connection as a null user (no name)
</DL>
<P>
<DL COMPACT><DT><DD>
*
krb5 Use Kerberos version 5 authentication
</DL>
<P>
<DL COMPACT><DT><DD>
*
krb5i Use Kerberos authentication and forcibly enable packet signing
</DL>
<P>
<DL COMPACT><DT><DD>
*
ntlm Use NTLM password hashing (default)
</DL>
<P>
<DL COMPACT><DT><DD>
*
ntlmi Use NTLM password hashing and force packet signing
</DL>
<P>
<DL COMPACT><DT><DD>
*
ntlmv2 Use NTLMv2 password hashing
</DL>
<P>
<DL COMPACT><DT><DD>
*
ntlmv2i Use NTLMv2 password hashing and force packet signing
</DL>
<P>
<DL COMPACT><DT><DD>
*
ntlmssp Use NTLMv2 password hashing encapsulated in Raw NTLMSSP message
</DL>
<P>
<DL COMPACT><DT><DD>
*
ntlmsspi Use NTLMv2 password hashing encapsulated in Raw NTLMSSP message, and force packet signing
</DL>
<P>
If the server requires signing during protocol negotiation, then it may be enabled automatically. Packet signing may also be enabled automatically if it's enabled in /proc/fs/cifs/SecurityFlags.
</DL>
<P>
nobrl
<DL COMPACT><DT><DD>
Do not send byte range lock requests to the server. This is necessary for certain applications that break with cifs style mandatory byte range locks (and most cifs servers do not yet support requesting advisory byte range locks).
</DL>
<P>
sfu
<DL COMPACT><DT><DD>
When the CIFS Unix Extensions are not negotiated, attempt to create device files and fifos in a format compatible with Services for Unix (SFU). In addition retrieve bits 10-12 of the mode via the SETFILEBITS extended attribute (as SFU does). In the future the bottom 9 bits of the mode mode also will be emulated using queries of the security descriptor (ACL). [NB: requires version 1.39 or later of the CIFS VFS. To recognize symlinks and be able to create symlinks in an SFU interoperable form requires version 1.40 or later of the CIFS VFS kernel module.
</DL>
<P>
serverino
<DL COMPACT><DT><DD>
Use inode numbers (unique persistent file identifiers) returned by the server instead of automatically generating temporary inode numbers on the client. Although server inode numbers make it easier to spot hardlinked files (as they will have the same inode numbers) and inode numbers may be persistent (which is userful for some sofware), the server does not guarantee that the inode numbers are unique if multiple server side mounts are exported under a single share (since inode numbers on the servers might not be unique if multiple filesystems are mounted under the same shared higher level directory). Note that not all servers support returning server inode numbers, although those that support the CIFS Unix Extensions, and Windows 2000 and later servers typically do support this (although not necessarily on every local server filesystem). Parameter has no effect if the server lacks support for returning inode numbers or equivalent. This behavior is enabled by default.
</DL>
<P>
noserverino
<DL COMPACT><DT><DD>
Client generates inode numbers itself rather than using the actual ones from the server.
<P>
See section
<I>INODE NUMBERS</I>
for more information.
</DL>
<P>
nounix
<DL COMPACT><DT><DD>
Disable the CIFS Unix Extensions for this mount. This can be useful in order to turn off multiple settings at once. This includes POSIX acls, POSIX locks, POSIX paths, symlink support and retrieving uids/gids/mode from the server. This can also be useful to work around a bug in a server that supports Unix Extensions.
<P>
See section
<I>INODE NUMBERS</I>
for more information.
</DL>
<P>
nouser_xattr
<DL COMPACT><DT><DD>
(default) Do not allow getfattr/setfattr to get/set xattrs, even if server would support it otherwise.
</DL>
<P>
rsize=<I>arg</I>
<DL COMPACT><DT><DD>
default network read size (usually 16K). The client currently can not use rsize larger than CIFSMaxBufSize. CIFSMaxBufSize defaults to 16K and may be changed (from 8K to the maximum kmalloc size allowed by your kernel) at module install time for cifs.ko. Setting CIFSMaxBufSize to a very large value will cause cifs to use more memory and may reduce performance in some cases. To use rsize greater than 127K (the original cifs protocol maximum) also requires that the server support a new Unix Capability flag (for very large read) which some newer servers (e.g. Samba 3.0.26 or later) do. rsize can be set from a minimum of 2048 to a maximum of 130048 (127K or CIFSMaxBufSize, whichever is smaller)
</DL>
<P>
wsize=<I>bytes</I>
<DL COMPACT><DT><DD>
Maximum amount of data that the kernel will send in a write request in bytes. Prior to RHEL6.2 kernels, the default and maximum was 57344 (14 * 4096 pages). As of RHEL6.2, the default depends on whether the client and server negotiate large writes via POSIX extensions. If they do then the default is 1M, and the maximum allowed is 16M. If they do not, then the default is 65536 and the
maximum allowed is 131007.
<P>
Note that this value is just a starting point for negotiation. The client and server may negotiate this size downward according to the server's capabilities.
</DL>
<P>
fsc
<DL COMPACT><DT><DD>
Enable local disk caching using FS-Cache for CIFS. This option could be useful to improve performance on a slow link, heavily loaded server and/or network where reading from the disk is faster than reading from the server (over the network). This could also impact the scalability positively as the number of calls to the server are reduced. But, be warned that local caching is not suitable for all workloads, for e.g., read-once type workloads. So, you need to consider carefully the situation/workload before using this option. Currently, local disk caching is enabled for CIFS files opened as read-only.
<P>
NOTE: This feature is available only in the recent kernels that have been built with the kernel config option CONFIG_CIFS_FSCACHE. You also need to have cachefilesd daemon installed and running to make the cache operational.
</DL>
<P>
multiuser
<DL COMPACT><DT><DD>
Map user accesses to individual credentials when accessing the server. By default, CIFS mounts only use a single set of user credentials (the mount credentials) when accessing a share. With this option, the client instead creates a new session with the server using the user's credentials whenever a new user accesses the mount. Further accesses by that user will also use those credentials. Because the kernel cannot prompt for passwords, multiuser mounts are limited to mounts using sec= options that don't require passwords.
<P>
With this change, it's feasible for the server to handle permissions enforcement, so this option also implies "noperm". Furthermore, when unix extensions aren't in use and the administrator has not overriden ownership using the uid= or gid= options, ownership of files is presented as the current user accessing the share.
</DL>
<P>
actimeo=<I>arg</I>
<DL COMPACT><DT><DD>
The time (in seconds) that the CIFS client caches attributes of a file or
directory before it requests attribute information from a server. During this
period the changes that occur on the server remain undetected until the client
checks the server again.
<P>
By default, the attribute cache timeout is set to 1 second. This means more
frequent on-the-wire calls to the server to check whether attributes have
changed which could impact performance. With this option users can make a
tradeoff between performance and cache metadata correctness, depending on
workload needs. Shorter timeouts mean better cache coherency, but frequent
increased number of calls to the server. Longer timeouts mean a reduced number
of calls to the server but looser cache coherency. The actimeo value is a
positive integer that can hold values between 0 and a maximum value of
2^30 * HZ (frequency of timer interrupt) setting.
</DL>
<P>
noposixpaths
<DL COMPACT><DT><DD>
If unix extensions are enabled on a share, then the client will typically allow
filenames to include any character besides '/' in a pathname component, and
will use forward slashes as a pathname delimiter. This option prevents the
client from attempting to negotiate the use of posix-style pathnames to the
server.
</DL>
<P>
posixpaths
<DL COMPACT><DT><DD>
Inverse of <I>noposixpaths</I>.
</DL>
<P>
prefixpath=
<DL COMPACT><DT><DD>
It's possible to mount a subdirectory of a share. The preferred way to do this is to append the path to the UNC when mounting. However, it's also possible to do the same by setting this option and providing the path there.
</DL>
<P>
--verbose
<DL COMPACT><DT><DD>
Print additional debugging information for the mount. Note that this parameter must be specified before the -o. For example:
<P>
mount -t cifs //server/share /mnt --verbose -o user=username
</DL>
<A NAME="lbAF"> </A>
<H2>SERVICE FORMATTING AND DELIMITERS</H2>
<P>
It's generally preferred to use forward slashes (/) as a delimiter in service names. They are considered to be the "universal delimiter" since they are generally not allowed to be embedded within path components on Windows machines and the client can convert them to blackslashes (\) unconditionally. Conversely, backslash characters are allowed by POSIX to be part of a path component, and can't be automatically converted in the same way.
<P>
mount.cifs will attempt to convert backslashes to forward slashes where it's able to do so, but it cannot do so in any path component following the sharename.
<A NAME="lbAG"> </A>
<H2>INODE NUMBERS</H2>
<P>
When Unix Extensions are enabled, we use the actual inode number provided by the server in response to the POSIX calls as an inode number.
<P>
When Unix Extensions are disabled and "serverino" mount option is enabled there is no way to get the server inode number. The client typically maps the server-assigned "UniqueID" onto an inode number.
<P>
Note that the UniqueID is a different value from the server inode number. The UniqueID value is unique over the scope of the entire server and is often greater than 2 power 32. This value often makes programs that are not compiled with LFS (Large File Support), to trigger a glibc EOVERFLOW error as this won't fit in the target structure field. It is strongly recommended to compile your programs with LFS support (i.e. with -D_FILE_OFFSET_BITS=64) to prevent this problem. You can also use "noserverino" mount option to generate inode numbers smaller than 2 power 32 on the client. But you may not be able to detect hardlinks properly.
<A NAME="lbAH"> </A>
<H2>CIFS/NTFS ACL, SID/UID/GID MAPPING, SECURITY DESCRIPTORS</H2>
This option is used to work with file objects which posses Security Descriptors and CIFS/NTFS ACL instead of UID, GID, file permission bits, and POSIX ACL as user authentication model. This is the most common authentication model for CIFS servers and is the one used by Windows.
<P>
Support for this requires both CIFS_XATTR and CIFS_ACL support in the CIFS configuration options when building the cifs module.
<P>
A CIFS/NTFS ACL is mapped to file permission bits using an algorithm specified in the following Microsoft TechNet document:
<P>
<DL COMPACT><DT><DD>
*
<A HREF="http://technet.microsoft.com/en-us/library/bb463216.aspx">http://technet.microsoft.com/en-us/library/bb463216.aspx</A>
</DL>
<P>
Security descriptors for a file object can be retrieved and set directly using extended attribute named system.cifs_acl. The security descriptors presented via this interface are "raw" blobs of data and need a userspace utility to either parse and format or to assemble it.
<P>
Some of the things to consider while using this mount option:
<P>
<DL COMPACT><DT><DD>
*
There may be an increased latency when handling metadata due to additional requests to get and set security descriptors.
</DL>
<P>
<DL COMPACT><DT><DD>
*
The mapping between a CIFS/NTFS ACL and POSIX file permission bits is imperfect and some ACL information may be lost in the translation.
</DL>
<P>
<DL COMPACT><DT><DD>
*
While RHEL6 supports the mapping of permission bits to windows ACLs, it does
not map the owner SIDs to UID/GID or vice versa.
</DL>
<A NAME="lbAI"> </A>
<H2>ACCESSING FILES WITH BACKUP INTENT</H2>
<P>
For an user on the server, desired access to a file is determined by the permissions and rights associated with that file. This is typically accomplished using owenrship and ACL. For a user who does not have access rights to a file, it is still possible to access that file for a specific or a targeted purpose by granting special rights. One of the specific purposes is to access a file with the intent to either backup or restore i.e. backup intent. The right to access a file with the backup intent can typically be granted by making that user a part of the built-in group Backup Operators. Thus, when this user attempts to open a file with the backup intent, open request is sent by setting the bit FILE_OPEN_FOR_BACKUP_INTENT as one of the CreateOptions.
<P>
As an example, on a Windows server, a user named testuser, cannot open this file with such a security descriptor.
<P>
REVISION:0x1
<P>
CONTROL:0x9404
<P>
OWNER:Administrator
<P>
GROUP:Domain Users
<P>
ACL:Administrator:ALLOWED/0x0/FULL
<P>
But the user testuser, if it becomes part of the group Backup Operators, can open the file with the backup intent.
<P>
Any user on the client side who can authenticate as such a user on the server,
can access the files with the backup intent. But it is desirable and preferable for security reasons amongst many, to restrict this special right.
<P>
The mount option backupuid is used to restrict this special right to a user which is specified by either a name or an id. The mount option backupgid is used to restrict this special right to the users in a group which is specified by either a name or an id. These two mount options can be used together.
<A NAME="lbAJ"> </A>
<H2>FILE AND DIRECTORY OWNERSHIP AND PERMISSIONS</H2>
<P>
The core CIFS protocol does not provide unix ownership information or mode for files and directories. Because of this, files and directories will generally appear to be owned by whatever values the uid= or gid= options are set, and will have permissions set to the default file_mode and dir_mode for the mount. Attempting to change these values via chmod/chown will return success but have no effect.
<P>
When the client and server negotiate unix extensions, files and directories will be assigned the uid, gid, and mode provided by the server. Because CIFS mounts are generally single-user, and the same credentials are used no matter what user accesses the mount, newly created files and directories will generally be given ownership corresponding to whatever credentials were used to mount the share.
<P>
If the uid's and gid's being used do not match on the client and server, the forceuid and forcegid options may be helpful. Note however, that there is no corresponding option to override the mode. Permissions assigned to a file when forceuid or forcegid are in effect may not reflect the the real permissions.
<P>
When unix extensions are not negotiated, it's also possible to emulate them locally on the server using the "dynperm" mount option. When this mount option is in effect, newly created files and directories will receive what appear to be proper permissions. These permissions are not stored on the server however and can disappear at any time in the future (subject to the whims of the kernel flushing out the inode cache). In general, this mount option is discouraged.
<P>
It's also possible to override permission checking on the client altogether via the noperm option. Server-side permission checks cannot be overriden. The permission checks done by the server will always correspond to the credentials used to mount the share, and not necessarily to the user who is accessing the share.
<A NAME="lbAK"> </A>
<H2>ENVIRONMENT VARIABLES</H2>
<P>
The variable
<I>USER</I>
may contain the username of the person to be used to authenticate to the server. The variable can be used to set both username and password by using the format username%password.
<P>
The variable
<I>PASSWD</I>
may contain the password of the person using the client.
<P>
The variable
<I>PASSWD_FILE</I>
may contain the pathname of a file to read the password from. A single line of input is read and used as the password.
<A NAME="lbAL"> </A>
<H2>NOTES</H2>
<P>
This command may be used only by root, unless installed setuid, in which case the noeexec and nosuid mount flags are enabled. When installed as a setuid program, the program follows the conventions set forth by the mount program for user mounts, with the added restriction that users must be able to chdir() into the
mountpoint prior to the mount in order to be able to mount onto it.
<P>
Some samba client tools like <A HREF="/manpages/index.html?8+smbclient">smbclient</A>(8) honour client-side configuration parameters present in smb.conf. Unlike those client tools,
<I>mount.cifs</I>
ignores smb.conf completely.
<A NAME="lbAM"> </A>
<H2>CONFIGURATION</H2>
<P>
The primary mechanism for making configuration changes and for reading debug information for the cifs vfs is via the Linux /proc filesystem. In the directory
/proc/fs/cifs
are various configuration files and pseudo files which can display debug information. There are additional startup options such as maximum buffer size and number of buffers which only may be set when the kernel cifs vfs (cifs.ko module) is loaded. These can be seen by running the modinfo utility against the file cifs.ko which will list the options that may be passed to cifs during module installation (device driver load). For more information see the kernel file
fs/cifs/README.
<A NAME="lbAN"> </A>
<H2>BUGS</H2>
<P>
Mounting using the CIFS URL specification is currently not supported.
<P>
The credentials file does not handle usernames or passwords with leading space.
<P>
Note that the typical response to a bug report is a suggestion to try the latest version first. So please try doing that first, and always include which versions you use of relevant software when reporting bugs (minimum: mount.cifs (try mount.cifs -V), kernel (see /proc/version) and server type you are trying to contact.
<A NAME="lbAO"> </A>
<H2>VERSION</H2>
<P>
This man page is correct for version 1.74 of the cifs vfs filesystem (roughly Linux kernel 3.0).
<A NAME="lbAP"> </A>
<H2>SEE ALSO</H2>
<P>
Documentation/filesystems/cifs.txt and fs/cifs/README in the linux kernel source tree may contain additional options and information.
<P>
<B><A HREF="/manpages/index.html?8+cifs.upcall">cifs.upcall</A></B>(8)
<A NAME="lbAQ"> </A>
<H2>AUTHOR</H2>
<P>
Steve French
<P>
The syntax and manpage were loosely based on that of smbmount. It was converted to Docbook/XML by Jelmer Vernooij.
<P>
The maintainer of the Linux cifs vfs and the userspace tool
<I>mount.cifs</I>
is
Steve French. The
Linux CIFS Mailing list
is the preferred place to ask questions regarding these programs.
<P>
<HR>
<A NAME="index"> </A><H2>Index</H2>
<DL>
<DT><A HREF="#lbAB">NAME</A><DD>
<DT><A HREF="#lbAC">SYNOPSIS</A><DD>
<DT><A HREF="#lbAD">DESCRIPTION</A><DD>
<DT><A HREF="#lbAE">OPTIONS</A><DD>
<DT><A HREF="#lbAF">SERVICE FORMATTING AND DELIMITERS</A><DD>
<DT><A HREF="#lbAG">INODE NUMBERS</A><DD>
<DT><A HREF="#lbAH">CIFS/NTFS ACL, SID/UID/GID MAPPING, SECURITY DESCRIPTORS</A><DD>
<DT><A HREF="#lbAI">ACCESSING FILES WITH BACKUP INTENT</A><DD>
<DT><A HREF="#lbAJ">FILE AND DIRECTORY OWNERSHIP AND PERMISSIONS</A><DD>
<DT><A HREF="#lbAK">ENVIRONMENT VARIABLES</A><DD>
<DT><A HREF="#lbAL">NOTES</A><DD>
<DT><A HREF="#lbAM">CONFIGURATION</A><DD>
<DT><A HREF="#lbAN">BUGS</A><DD>
<DT><A HREF="#lbAO">VERSION</A><DD>
<DT><A HREF="#lbAP">SEE ALSO</A><DD>
<DT><A HREF="#lbAQ">AUTHOR</A><DD>
</DL>
<HR>
This document was created by
<A HREF="/manpages/index.html">man2html</A>,
using the manual pages.<BR>
Time: 05:34:27 GMT, December 24, 2015
</div></div>
</body>
</HTML>
| yuweijun/yuweijun.github.io | manpages/man8/mount.cifs.8.html | HTML | mit | 34,766 |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Knee surgery</title>
<meta name="description" content="" />
<meta name="HandheldFriendly" content="True" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="//elte.me/themes/casper/favicon.ico">
<link rel="stylesheet" type="text/css" href="//elte.me/themes/casper/assets/css/screen.css?v=1.0.0" />
<link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Merriweather:300,700,700italic,300italic|Open+Sans:700,400" />
<link rel="canonical" href="http://elte.me/2013/05/10/Knee-surgery.html" />
<meta property="og:site_name" content="Elte Hupkes" />
<meta property="og:type" content="article" />
<meta property="og:title" content="Knee surgery" />
<meta property="og:description" content="A week ago yesterday, I was cut upen. Although this story is far from unique I figured I&#8217;d share how I got there and my experience with the entire process; if only for future reference. The accident It..." />
<meta property="og:url" content="http://elte.me/2013/05/10/Knee-surgery.html" />
<meta property="article:published_time" content="2013-05-09T22:00:00.000Z" />
<meta property="article:modified_time" content="2015-03-29T10:52:41.969Z" />
<meta property="article:tag" content="injury" />
<meta property="article:tag" content="sports" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="Knee surgery" />
<meta name="twitter:description" content="A week ago yesterday, I was cut upen. Although this story is far from unique I figured I&#8217;d share how I got there and my experience with the entire process; if only for future reference. The accident It..." />
<meta name="twitter:url" content="http://elte.me/2013/05/10/Knee-surgery.html" />
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Article",
"publisher": "Elte Hupkes",
"author": {
"@type": "Person",
"name": "Elte Hupkes",
"image": "https://avatars.githubusercontent.com/u/726962?v=3",
"url": "undefined/author/undefined",
"sameAs": "http://elte.me"
},
"headline": "Knee surgery",
"url": "http://elte.me/2013/05/10/Knee-surgery.html",
"datePublished": "2013-05-09T22:00:00.000Z",
"dateModified": "2015-03-29T10:52:41.969Z",
"keywords": "injury, sports",
"description": "A week ago yesterday, I was cut upen. Although this story is far from unique I figured I&#8217;d share how I got there and my experience with the entire process; if only for future reference. The accident It..."
}
</script>
<meta name="generator" content="Ghost ?" />
<link rel="alternate" type="application/rss+xml" title="Elte Hupkes" href="http://elte.me/rss" />
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.4/styles/default.min.css">
</head>
<body class="post-template tag-injury tag-sports">
<header class="main-header post-head no-cover">
<nav class="main-nav clearfix">
<a class="back-button icon-arrow-left" href="http://elte.me">Home</a>
<!-- <a class="subscribe-button icon-feed" href="http://elte.me/rss/">Subscribe</a> -->
</nav>
</header>
<main class="content" role="main">
<article class="post tag-injury tag-sports">
<header class="post-header">
<h1 class="post-title">Knee surgery</h1>
<section class="post-meta">
<time class="post-date" datetime="2013-05-10">10 May 2013</time> on <a href="http://elte.me/tag/injury">injury</a>, <a href="http://elte.me/tag/sports"> sports</a>
</section>
</header>
<section class="post-content">
<div id="preamble">
<div class="sectionbody">
<div class="paragraph">
<p>A week ago yesterday, I was cut upen. Although this story is far from unique I figured I’d share how I got there
and my experience with the entire process; if only for future reference.</p>
</div>
</div>
</div>
<div class="sect1">
<h2 id="_the_accident">The accident</h2>
<div class="sectionbody">
<div class="paragraph">
<p>It all started in March this year, when I participated in this year’s link:[Mud Masters]. About
200 meters before the finish line my hands slipped off the monkeybars dropping me in the water below. Not being able
to see where I landed caused me to sprain my knee, which didn’t pose too much of a problem with the finish
within a stone’s throw. So I limped the rest of the distance and that was that.
This story probably would have ended right there if it hadn’t been for my football (by football I always mean soccer)
match the next day. Not having had a knee injury before I figured that, although I was in pain, I could probably play.
The first half went by without incident. About 10 minutes into the second half I stepped out to reach for the ball
when suddenly I felt my knee twist, heard something snap and felt a sharp pain. I lay there screaming for about half a minute
before the pain went away, but it was pretty obvious I couldn’t continue to play.</p>
</div>
</div>
</div>
<div class="sect1">
<h2 id="_the_diagnosis">The diagnosis</h2>
<div class="sectionbody">
<div class="paragraph">
<p>After the incident the knee swelled pretty fast, making it hard for me to move. It was tested right on the spot
by two of my teammates who happen to be a physiotherapist and a doctor respectively, but the results were inconclusive.
I made an appointment with a general practitioner, which I saw two days later. He performed several tests (pretty much the same ones
that my teammates had already done), concluded that my crucial ligaments were probably alright and urged me to wait it out. One
of my teammates came by later that week to check again, which were inconclusive again. I was told by various people that
an MRI at this point wouldn’t be useful, because the fluid in the swollen knee would make it hard to see the damage.
And so, I waited.</p>
</div>
<div class="paragraph">
<p>As it turns out it’s pretty hard to see how swollen something still is if you’re looking at it all day, so
after a week or so when I felt no improvement I called the general practitioner again, this time only to ask for advice.
You usually get an appointment for the next day, however the next day was Easter so I had to wait about four days before
I got another call, in which I was once again urged to wait until the swelling went down. Meanwhile, the swelling <em>was</em>
down, but this was quite hard for me to notice. My sister meanwhile had grown tired of my indecisiveness and decided to
have another physiotherapist she knew call me for an appointment (which I appreciated, although she could have told
me ;]).</p>
</div>
<div class="paragraph">
<p>At this point I wasn’t experiencing any serious pain or instability, but I had difficulty bending and stretching
my leg which made cycling impossible and walking awkward. Some tests were performed again, and once again they
yielded uncertain results. The fact that my knee seemed to "lock" (even after weakening my hamstrings with dry needles)
though pointed towards a meniscus problem, which when damaged sometimes slips into the joint, inhibiting its movement.
However, also because there was so little movement in my leg, it was impossible to rule out a problem with the crucial
ligament. A meniscus injury sucks, but has a recovery time of "only" about 3 monts, as opposed to the 9 months to a year
recovery associated with a torn crucial ligament, so the thought of it being that had me relieved.</p>
</div>
<div class="paragraph">
<p>The physiotherapist arranged an appointment with an orthopediatrician, who sent me for an MRI (finally, I might add)
the results of which arrived a week later. Fully expecting a meniscus injury, I got two types of bad news. First of all:
the MRI showed no obvious reason for my leg’s immobility. My meniscus was fine. Secondly - and most importantly - my
anterior crucial ligament was completely ruptured, gone, no more. Since I am pretty serious about sports (before the
injury I practiced several types of sports about 5 / 6 times a week) it would be hard for me to live without this
ligament - so I needed surgery. This time still not being able to walk properly turned out to be an advantage, as I
got priority and was scheduled for surgery two weeks later.</p>
</div>
</div>
</div>
<div class="sect1">
<h2 id="_the_surgery">The surgery</h2>
<div class="sectionbody">
<div class="paragraph">
<p>At May 3rd I went to the hospital at 10am, where I was assigned a bed and the nurses explained me what was going to
happen. After about two hours I was taken up for my anaesthesia. I had opted for a
<a href="http://en.wikipedia.org/wiki/Spinal_anaesthesia">spinal</a>, as had been advised by my surgery-veteran sister and my mum.
The anaesthesia went smoothly and about 15 minutes after having received an injection in my back, my legs were
completely numb and paralyzed, except for a weird tingly-feeling which never quite left. I was then taken to the
operation chamber where about 10 people were preparing to fix up my knee. Anaesthesia is <em>weird</em>. Your brain
uses the last known sensory input it got from your limbs to estimate their position, and after a while of not
having any data it is going to be very wrong about it. The orthopedic surgeon used this to joke around before
the surgery:</p>
</div>
<div class="paragraph">
<p><code>Where do you think your legs are?</code><br>
<code>Ehh just lying down there I guess.</code><br>
(With my legs on his shoulder) <code>"Nope!</code><br></p>
</div>
<div class="paragraph">
<p>The surgery itself took about 1,5 hours. Although I was awake the entire time I wasn’t too aware of what was going on,
the area between my head and lower body was covered so I couldn’t see anything. Because the entire hospital experience
was new for me I opted not to follow what they were doing on a screen, as I wasn’t sure how I would feel about
it. If I had surgery again I probably would watch. During the surgery I never felt my legs apart from the odd touch
(there is <em>some</em> sensory reception left, albeit no pain reception whatsoever). I could however feel whenever they
started drilling or hammering (they did both), because the vibrations resonate through your bones. This is a weird
feeling but not as unpleasant as I feared it would be when someone told me this beforehand. Reconstructive surgery
for an anterior crucial ligament (ACL) by the way consists of taking a tendon from your hamstring and attaching
it in the place the ACL used to be.</p>
</div>
<div class="paragraph">
<p>When I was all sown up and bandaged the surgeon told me the operation had gone well, and I was taken back to the preparation room where I would be kept
a while to check my vitals. Unfortunately here it turned out that I had to much urine in my blatter, still being paralyzed
from the spinal they had to take this out with a catheter. Fortunately the bottom half of my body was still completely numb,
because the thought of having had a tube stuck down my urinal tract is in my head still more uncomfortable than my knee
being cut open.</p>
</div>
<div class="paragraph">
<p>After about half an hour I was taken back down to the initial ward, where I was forced to lay helpless while my anasthetic
wore off. This took longer than I expected, I think it took some 3 to 4 hours before I had full control and feelling
in my legs. This of course also meant I could feel pain. In the weeks before the surgery I had gone through some (very painful)
mobilizing physical therapy sessions; after all there was no obvious reason for my knee’s limited mobility, so
why not force it…​ While unpleasant these sessions gave me about 20 degrees of additional freedom in bending and
mostly stretching my leg, which proved useful now as the bandages kept my leg pretty much fully stretched. This would
probabaly have felt worse had I not had this extra mobility. I was still in quite some pain though, so fortunately my
mother and sister came by at this point to distract me. Also I was given diclofenac (paracetamol++), and later when
I still coulnd’t sleep through the pain a light morphine injection which granted me a few hours of sleep that night.</p>
</div>
<div class="imageblock">
<div class="content">
<img src="/images/hospital-knee/bed.jpg" alt="bed.jpg">
</div>
<div class="title">Figure 1. My leg after the surgery</div>
</div>
<div class="paragraph">
<p>The next day I received a short lesson in walking with crutches, which I already had extensive experience with
from the weeks leading up to the surgery. My mother then took me home to my parents' place.</p>
</div>
</div>
</div>
<div class="sect1">
<h2 id="_now_what">Now what</h2>
<div class="sectionbody">
<div class="paragraph">
<p>I’m now facing a 9 month recovery process, the first six weeks of which I’ll have to walk with crutches and be
very careful. In a few weeks I’ll be able to do some controlled exercises to increase muscle strenght in my left leg.
These exercises will gradually increase in difficulty until I regain full stability and strenght. There’s no shortcut -
the new tissue simply has to attach itself to the bone, which takes time. Additional muscle strength around the knee
stabilizes the joint though, which decreasing the risk of screwing up the new ligament.
For now my daily activities consist of sitting down with my leg up, trying to entertain myself.</p>
</div>
</div>
</div>
<div class="sect1">
<h2 id="_lessons_learned">Lessons learned</h2>
<div class="sectionbody">
<div class="paragraph">
<p>It is often said that you have to be assertive when dealing with the healthcare system, and I can only agree with this.
The problem is that doctors - especially general practitioners - mostly see people with big stories yet minor problems.
So when you’re like me and you only attend a physician when your limbs are all but dangling from their joints,
you need some perseverence to convince them that there is actually something seriously wrong. This is not my strong
side, in part because part of me wants them to be right about it being nothing serious. I was lucky enough to have other
people take action for me, so in the end it didn’t take too long (about six weeks) before I had surgery.
It probably could have been even faster had I stood up for myself some more.</p>
</div>
<div class="paragraph">
<p>I’m stubborn, I know that very well about myself, never asking for help if I don’t think it’s absolutely necessary. In
addition, I always strive to be…​ well somehow better than I was. This has caused me to ignore problems like the pain
in my knee before, but I’ve never been punished for it as severe as this time. I’ve had to cancel quite a few activities
for the upcoming months that I was really looking forward to. I’m quite
convinced that I’ll make an as good as complete recovery though, so I hope that this experience has taught me better judgement.
For the time being I’m wearing the wristband they gave me at the hospital (with my name, age and barcode) as a reminder
to, basically, "not do stupid shit" - so that next time I think "Yeah there’s no way that’s gonna hurt me" I might glance
at my right wrist and think twice about it.</p>
</div>
<div class="imageblock">
<div class="content">
<img src="/images/hospital-knee/wristband.jpg" alt="The hospital wrist-band">
</div>
<div class="title">Figure 2. Don’t you walk there without crutches!</div>
</div>
</div>
</div>
</section>
<footer class="post-footer">
<figure class="author-image">
<a class="img" href="" style="background-image: url(https://avatars.githubusercontent.com/u/726962?v=3)"><span class="hidden">Elte Hupkes's Picture</span></a>
</figure>
<section class="author">
<h4><a href="">Elte Hupkes</a></h4>
<p>Read <a href="">more posts</a> by this author.</p>
<div class="author-meta">
<span class="author-location icon-location">Amsterdam</span>
<span class="author-link icon-link"><a href="http://elte.me">http://elte.me</a></span>
</div>
</section>
<section class="share">
<h4>Share this post</h4>
<a class="icon-twitter" href="https://twitter.com/share?text=Knee%20surgery&url=http://elte.me/2013/05/10/Knee-surgery.html"
onclick="window.open(this.href, 'twitter-share', 'width=550,height=235');return false;">
<span class="hidden">Twitter</span>
</a>
<a class="icon-facebook" href="https://www.facebook.com/sharer/sharer.php?u=http://elte.me/2013/05/10/Knee-surgery.html"
onclick="window.open(this.href, 'facebook-share','width=580,height=296');return false;">
<span class="hidden">Facebook</span>
</a>
<a class="icon-google-plus" href="https://plus.google.com/share?url=http://elte.me/2013/05/10/Knee-surgery.html"
onclick="window.open(this.href, 'google-plus-share', 'width=490,height=530');return false;">
<span class="hidden">Google+</span>
</a>
</section>
</footer>
<section class="post-comments">
<div id="disqus_thread"></div>
<script type="text/javascript">
var disqus_shortname = 'metaphoric'; // required: replace example with your forum shortname
/* * * DON'T EDIT BELOW THIS LINE * * */
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>
<noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
<a href="http://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
</section>
</article>
</main>
<footer class="site-footer clearfix">
<section class="copyright"><a href="http://elte.me">Elte Hupkes</a> © 2015
<ul id="links">
<li id="github"><a href="http://github.com/ElteHupkes" title="See my stuff on GitHub">My stuff on GitHub</a></li>
<li id="youtube"><a href="http://www.youtube.com/user/Ellutu" title="Watch me on YouTube">Watch me on YouTube</a></li>
<li id="soundcloud"><a href="http://soundcloud.com/elte-hupkes" title="Hear me on SoundCloud">Hear me on SoundCloud</a></li>
<li id="srxp"><a href="http://www.srxp.com" title="My company SRXP">My company SRXP</a></li>
</ul>
</section>
<section class="poweredby">Proudly published with <a href="http://hubpress.io">HubPress</a></section>
</footer>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js?v="></script> <script src="//cdnjs.cloudflare.com/ajax/libs/moment.js/2.9.0/moment-with-locales.min.js?v="></script> <script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.4/highlight.min.js?v="></script>
<script type="text/javascript">
jQuery( document ).ready(function() {
// change date with ago
jQuery('ago.ago').each(function(){
var element = jQuery(this).parent();
element.html( moment(element.text()).fromNow());
});
});
hljs.initHighlightingOnLoad();
</script>
<script type="text/javascript" src="//elte.me/themes/casper/assets/js/jquery.fitvids.js?v=1.0.0"></script>
<script type="text/javascript" src="//elte.me/themes/casper/assets/js/index.js?v=1.0.0"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-61302233-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>
| ElteHupkes/eltehupkes.github.io | 2013/05/10/Knee-surgery.html | HTML | mit | 20,866 |
<!doctype html>
<html class="default no-js">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>IEventHostageHurt | demofile</title>
<meta name="description" content="Documentation for demofile">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="../assets/css/main.css">
</head>
<body>
<header>
<div class="tsd-page-toolbar">
<div class="container">
<div class="table-wrap">
<div class="table-cell" id="tsd-search" data-index="../assets/js/search.json" data-base="..">
<div class="field">
<label for="tsd-search-field" class="tsd-widget search no-caption">Search</label>
<input id="tsd-search-field" type="text" />
</div>
<ul class="results">
<li class="state loading">Preparing search index...</li>
<li class="state failure">The search index is not available</li>
</ul>
<a href="../index.html" class="title">demofile</a>
</div>
<div class="table-cell" id="tsd-widgets">
<div id="tsd-filter">
<a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a>
<div class="tsd-filter-group">
<div class="tsd-select" id="tsd-filter-visibility">
<span class="tsd-select-label">All</span>
<ul class="tsd-select-list">
<li data-value="public">Public</li>
<li data-value="protected">Public/Protected</li>
<li data-value="private" class="selected">All</li>
</ul>
</div>
<input type="checkbox" id="tsd-filter-inherited" checked />
<label class="tsd-widget" for="tsd-filter-inherited">Inherited</label>
<input type="checkbox" id="tsd-filter-externals" checked />
<label class="tsd-widget" for="tsd-filter-externals">Externals</label>
<input type="checkbox" id="tsd-filter-only-exported" />
<label class="tsd-widget" for="tsd-filter-only-exported">Only exported</label>
</div>
</div>
<a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a>
</div>
</div>
</div>
</div>
<div class="tsd-page-title">
<div class="container">
<ul class="tsd-breadcrumb">
<li>
<a href="../globals.html">Globals</a>
</li>
<li>
<a href="../modules/_eventtypes_.html">"eventtypes"</a>
</li>
<li>
<a href="_eventtypes_.ieventhostagehurt.html">IEventHostageHurt</a>
</li>
</ul>
<h1>Interface IEventHostageHurt</h1>
</div>
</div>
</header>
<div class="container container-main">
<div class="row">
<div class="col-8 col-content">
<section class="tsd-panel tsd-hierarchy">
<h3>Hierarchy</h3>
<ul class="tsd-hierarchy">
<li>
<span class="target">IEventHostageHurt</span>
</li>
</ul>
</section>
<section class="tsd-panel-group tsd-index-group">
<h2>Index</h2>
<section class="tsd-panel tsd-index-panel">
<div class="tsd-index-content">
<section class="tsd-index-section ">
<h3>Properties</h3>
<ul class="tsd-index-list">
<li class="tsd-kind-property tsd-parent-kind-interface"><a href="_eventtypes_.ieventhostagehurt.html#entity" class="tsd-kind-icon">entity</a></li>
<li class="tsd-kind-property tsd-parent-kind-interface"><a href="_eventtypes_.ieventhostagehurt.html#hostage" class="tsd-kind-icon">hostage</a></li>
<li class="tsd-kind-property tsd-parent-kind-interface"><a href="_eventtypes_.ieventhostagehurt.html#player" class="tsd-kind-icon">player</a></li>
<li class="tsd-kind-property tsd-parent-kind-interface"><a href="_eventtypes_.ieventhostagehurt.html#userid" class="tsd-kind-icon">userid</a></li>
</ul>
</section>
</div>
</section>
</section>
<section class="tsd-panel-group tsd-member-group ">
<h2>Properties</h2>
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface">
<a name="entity" class="tsd-anchor"></a>
<h3>entity</h3>
<div class="tsd-signature tsd-kind-icon">entity<span class="tsd-signature-symbol">:</span> <a href="../classes/_entities_baseentity_.baseentity.html" class="tsd-signature-type">BaseEntity</a><span class="tsd-signature-symbol"><</span><a href="_sendtabletypes_.chostage.html" class="tsd-signature-type">CHostage</a><span class="tsd-signature-symbol">></span></div>
<aside class="tsd-sources">
<ul>
<li>Defined in <a href="https://github.com/saul/demofile/blob/b4d2298/src/eventtypes.ts#L205">src/eventtypes.ts:205</a></li>
</ul>
</aside>
</section>
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface">
<a name="hostage" class="tsd-anchor"></a>
<h3>hostage</h3>
<div class="tsd-signature tsd-kind-icon">hostage<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
<aside class="tsd-sources">
<ul>
<li>Defined in <a href="https://github.com/saul/demofile/blob/b4d2298/src/eventtypes.ts#L204">src/eventtypes.ts:204</a></li>
</ul>
</aside>
</section>
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface">
<a name="player" class="tsd-anchor"></a>
<h3>player</h3>
<div class="tsd-signature tsd-kind-icon">player<span class="tsd-signature-symbol">:</span> <a href="../classes/_entities_player_.player.html" class="tsd-signature-type">Player</a></div>
<aside class="tsd-sources">
<ul>
<li>Defined in <a href="https://github.com/saul/demofile/blob/b4d2298/src/eventtypes.ts#L203">src/eventtypes.ts:203</a></li>
</ul>
</aside>
</section>
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface">
<a name="userid" class="tsd-anchor"></a>
<h3>userid</h3>
<div class="tsd-signature tsd-kind-icon">userid<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
<aside class="tsd-sources">
<ul>
<li>Defined in <a href="https://github.com/saul/demofile/blob/b4d2298/src/eventtypes.ts#L202">src/eventtypes.ts:202</a></li>
</ul>
</aside>
</section>
</section>
</div>
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
<nav class="tsd-navigation primary">
<ul>
<li class="globals ">
<a href="../globals.html"><em>Globals</em></a>
</li>
<li class="current tsd-kind-module">
<a href="../modules/_eventtypes_.html">"eventtypes"</a>
<ul>
<li class=" tsd-kind-module tsd-parent-kind-module">
<a href="../modules/_eventtypes_._gameevents_.html">"gameevents"</a>
</li>
</ul>
</li>
</ul>
</nav>
<nav class="tsd-navigation secondary menu-sticky">
<ul class="before-current">
</ul>
<ul class="current">
<li class="current tsd-kind-interface tsd-parent-kind-module">
<a href="_eventtypes_.ieventhostagehurt.html" class="tsd-kind-icon">IEvent<wbr>Hostage<wbr>Hurt</a>
<ul>
<li class=" tsd-kind-property tsd-parent-kind-interface">
<a href="_eventtypes_.ieventhostagehurt.html#entity" class="tsd-kind-icon">entity</a>
</li>
<li class=" tsd-kind-property tsd-parent-kind-interface">
<a href="_eventtypes_.ieventhostagehurt.html#hostage" class="tsd-kind-icon">hostage</a>
</li>
<li class=" tsd-kind-property tsd-parent-kind-interface">
<a href="_eventtypes_.ieventhostagehurt.html#player" class="tsd-kind-icon">player</a>
</li>
<li class=" tsd-kind-property tsd-parent-kind-interface">
<a href="_eventtypes_.ieventhostagehurt.html#userid" class="tsd-kind-icon">userid</a>
</li>
</ul>
</li>
</ul>
<ul class="after-current">
</ul>
</nav>
</div>
</div>
</div>
<footer class="with-border-bottom">
<div class="container">
<h2>Legend</h2>
<div class="tsd-legend-group">
<ul class="tsd-legend">
<li class="tsd-kind-object-literal"><span class="tsd-kind-icon">Object literal</span></li>
<li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li>
<li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li>
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
<li class="tsd-kind-type-alias tsd-has-type-parameter"><span class="tsd-kind-icon">Type alias with type parameter</span></li>
</ul>
<ul class="tsd-legend">
<li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li>
<li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li>
<li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li>
</ul>
<ul class="tsd-legend">
<li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li>
<li class="tsd-kind-class tsd-has-type-parameter"><span class="tsd-kind-icon">Class with type parameter</span></li>
</ul>
<ul class="tsd-legend">
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
</ul>
</div>
</div>
</footer>
<div class="container tsd-generator">
<p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p>
</div>
<div class="overlay"></div>
<script src="../assets/js/main.js"></script>
</body>
</html> | saul/demofile | docs/interfaces/_eventtypes_.ieventhostagehurt.html | HTML | mit | 9,548 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Coq bench</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../../..">Unstable</a></li>
<li><a href=".">8.4.dev / contrib:idxassoc dev</a></li>
<li class="active"><a href="">2014-11-20 13:31:52</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="../../../../../about.html">About</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href=".">« Up</a>
<h1>
contrib:idxassoc
<small>
dev
<span class="label label-info">Not compatible with this Coq</span>
</small>
</h1>
<p><em><script>document.write(moment("2014-11-20 13:31:52 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2014-11-20 13:31:52 UTC)</em><p>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>ruby lint.rb unstable ../unstable/packages/coq:contrib:idxassoc/coq:contrib:idxassoc.dev</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
<dt>Output</dt>
<dd><pre>The package is valid.
</pre></dd>
</dl>
<h2>Dry install</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --dry-run coq:contrib:idxassoc.dev coq.8.4.dev</code></dd>
<dt>Return code</dt>
<dd>768</dd>
<dt>Duration</dt>
<dd>0 s</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.4.dev).
The following dependencies couldn't be met:
- coq:contrib:idxassoc -> coq = dev
Your request can't be satisfied:
- Conflicting version constraints for coq
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq, to test if the problem was incompatibility with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --dry-run coq:contrib:idxassoc.dev</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>2 s</dd>
<dt>Output</dt>
<dd><pre>The following actions will be performed:
- remove coq.8.4.dev
=== 1 to remove ===
=-=- Removing Packages =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Removing coq.8.4.dev.
[WARNING] Directory /home/bench/.opam/system/lib/coq is not empty, not removing
[WARNING] Directory /home/bench/.opam/system/share/coq is not empty, not removing
The following actions will be performed:
- install coq.dev [required by coq:contrib:idxassoc]
- install coq:contrib:idxassoc.dev
=== 2 to install ===
=-=- Synchronizing package archives -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
=-=- Installing packages =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Building coq.dev:
./configure -configdir /home/bench/.opam/system/lib/coq/config -mandir /home/bench/.opam/system/man -docdir /home/bench/.opam/system/doc -prefix /home/bench/.opam/system -usecamlp5 -camlp5dir /home/bench/.opam/system/lib/camlp5 -coqide no -no-native-compiler
make -j4
make install
Installing coq.dev.
Building coq:contrib:idxassoc.dev:
coq_makefile -f Make -o Makefile
make -j4
make install
Installing coq:contrib:idxassoc.dev.
</pre></dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>Data not available in this bench.</p>
<h2>Uninstall</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
<small>Sources are on <a href="https://github.com/coq-bench">GitHub</a>. © Guillaume Claret.</small>
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html> | coq-bench/coq-bench.github.io-old | clean/Linux-x86_64-4.01.0-1.2.0/unstable/8.4.dev/contrib:idxassoc/dev/2014-11-20_13-31-52.html | HTML | mit | 6,946 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Coq bench</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../../..">Unstable</a></li>
<li><a href=".">8.4.5 / contrib:graphs dev</a></li>
<li class="active"><a href="">2015-01-30 09:41:42</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="../../../../../about.html">About</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href=".">« Up</a>
<h1>
contrib:graphs
<small>
dev
<span class="label label-info">Not compatible with this Coq</span>
</small>
</h1>
<p><em><script>document.write(moment("2015-01-30 09:41:42 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2015-01-30 09:41:42 UTC)</em><p>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>ruby lint.rb unstable ../unstable/packages/coq:contrib:graphs/coq:contrib:graphs.dev</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
<dt>Output</dt>
<dd><pre>The package is valid.
</pre></dd>
</dl>
<h2>Dry install</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --dry-run coq:contrib:graphs.dev coq.8.4.5</code></dd>
<dt>Return code</dt>
<dd>768</dd>
<dt>Duration</dt>
<dd>0 s</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.4.5).
The following dependencies couldn't be met:
- coq:contrib:graphs -> coq >= 8.5beta1
Your request can't be satisfied:
- Conflicting version constraints for coq
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq, to test if the problem was incompatibility with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --dry-run coq:contrib:graphs.dev</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>3 s</dd>
<dt>Output</dt>
<dd><pre>The following actions will be performed:
- remove coq.8.4.5
=== 1 to remove ===
=-=- Removing Packages =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Removing coq.8.4.5.
[WARNING] Directory /home/bench/.opam/system/lib/coq is not empty, not removing
[WARNING] Directory /home/bench/.opam/system/share/coq is not empty, not removing
The following actions will be performed:
- install coq.hott [required by coq:contrib:graphs]
- install coq:contrib:graphs.dev
=== 2 to install ===
=-=- Synchronizing package archives -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
=-=- Installing packages =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Building coq.hott:
./configure -configdir /home/bench/.opam/system/lib/coq/config -mandir /home/bench/.opam/system/man -docdir /home/bench/.opam/system/doc -prefix /home/bench/.opam/system -usecamlp5 -camlp5dir /home/bench/.opam/system/lib/camlp5 -coqide opt
make -j4
make install
Installing coq.hott.
Building coq:contrib:graphs.dev:
coq_makefile -f Make -o Makefile
make -j4
make install
Installing coq:contrib:graphs.dev.
</pre></dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
<small>Sources are on <a href="https://github.com/coq-bench">GitHub</a>. © Guillaume Claret.</small>
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html> | coq-bench/coq-bench.github.io-old | clean/Linux-x86_64-4.01.0-1.2.0/unstable/8.4.5/contrib:graphs/dev/2015-01-30_09-41-42.html | HTML | mit | 6,897 |
<!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.13"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>Lista2: Lista de Arquivos</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">Lista2
</div>
<div id="projectbrief">Lista 2 do Trabalho de Tecnicas de Programacao 1</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Gerado por Doxygen 1.8.13 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "search",false,'Busca');
</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','Busca');
$(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="headertitle">
<div class="title">Lista de Arquivos</div> </div>
</div><!--header-->
<div class="contents">
<div class="textblock">Esta é a lista de todos os arquivos e suas respectivas descrições:</div><div class="directory">
<table class="directory">
<tr id="row_0_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icondoc"></span><a class="el" href="controladoras_8cpp.html" target="_self">controladoras.cpp</a></td><td class="desc"></td></tr>
<tr id="row_1_"><td class="entry"><span style="width:16px;display:inline-block;"> </span><a href="controladoras_8h_source.html"><span class="icondoc"></span></a><a class="el" href="controladoras_8h.html" target="_self">controladoras.h</a></td><td class="desc"></td></tr>
<tr id="row_2_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icondoc"></span><a class="el" href="_dominio_8cpp.html" target="_self">Dominio.cpp</a></td><td class="desc"></td></tr>
<tr id="row_3_"><td class="entry"><span style="width:16px;display:inline-block;"> </span><a href="_dominio_8h_source.html"><span class="icondoc"></span></a><a class="el" href="_dominio_8h.html" target="_self">Dominio.h</a></td><td class="desc"></td></tr>
<tr id="row_4_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icondoc"></span><a class="el" href="_entidades_8cpp.html" target="_self">Entidades.cpp</a></td><td class="desc"></td></tr>
<tr id="row_5_"><td class="entry"><span style="width:16px;display:inline-block;"> </span><a href="_entidades_8h_source.html"><span class="icondoc"></span></a><a class="el" href="_entidades_8h.html" target="_self">Entidades.h</a></td><td class="desc"></td></tr>
<tr id="row_6_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><a href="interfaces_8h_source.html"><span class="icondoc"></span></a><a class="el" href="interfaces_8h.html" target="_self">interfaces.h</a></td><td class="desc"></td></tr>
<tr id="row_7_"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icondoc"></span><a class="el" href="main_8cpp.html" target="_self">main.cpp</a></td><td class="desc"></td></tr>
<tr id="row_8_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icondoc"></span><a class="el" href="stubs_8cpp.html" target="_self">stubs.cpp</a></td><td class="desc"></td></tr>
<tr id="row_9_"><td class="entry"><span style="width:16px;display:inline-block;"> </span><a href="stubs_8h_source.html"><span class="icondoc"></span></a><a class="el" href="stubs_8h.html" target="_self">stubs.h</a></td><td class="desc"></td></tr>
</table>
</div><!-- directory -->
</div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Gerado por  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.13
</small></address>
</body>
</html>
| DiegoBrian/TP1 | Lista2/Documentação/html/files.html | HTML | mit | 5,361 |
{% extends "admin/base.html" %}
{% block title %}{{ title }} | {{ site_title|default:_('Django site admin') }}{% endblock %}
{% block branding %}
<h1 id="site-name"><a href="{% url 'admin:index' %}">nnscr.de Admin</a></h1>
{% endblock %}
{% block nav-global %}{% endblock %}
{% block extrastyle %}
{% load staticfiles %}
<link rel="stylesheet" href="{% static "dist/css/main.css" %}" type="text/css">
{% endblock %}
| nnscr/nnscr.de | templates/admin/base_site.html | HTML | mit | 427 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="robots" content="index, follow, all" />
<title>Valit\Contracts\CustomChecker | Valit API</title>
<link rel="stylesheet" type="text/css" href="../../css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="../../css/bootstrap-theme.min.css">
<link rel="stylesheet" type="text/css" href="../../css/sami.css">
<script src="../../js/jquery-1.11.1.min.js"></script>
<script src="../../js/bootstrap.min.js"></script>
<script src="../../js/typeahead.min.js"></script>
<script src="../../sami.js"></script>
<meta name="MobileOptimized" content="width">
<meta name="HandheldFriendly" content="true">
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1">
</head>
<body id="class" data-name="class:Valit_Contracts_CustomChecker" data-root-path="../../">
<div id="content">
<div id="left-column">
<div id="control-panel">
<form action="#" method="GET">
<select id="version-switcher" name="version">
<option value="../../../2.0.0-alpha/index.html" data-version="2.0.0-alpha">2.0.0-alpha</option>
<option value="../../../2.0.0/index.html" data-version="2.0.0">2.0.0</option>
<option value="../../../2.0.1/index.html" data-version="2.0.1">2.0.1</option>
<option value="../../../1.0.0/index.html" data-version="1.0.0">1.0.0</option>
<option value="../../../1.0.1/index.html" data-version="1.0.1">1.0.1</option>
<option value="../../../1.0.2/index.html" data-version="1.0.2">1.0.2</option>
<option value="../../../0.8.0/index.html" data-version="0.8.0">0.8.0</option>
<option value="../../../0.8.1/index.html" data-version="0.8.1">0.8.1</option>
<option value="../../../master/index.html" data-version="master">master dev branch</option>
</select>
</form>
<script>
$('option[data-version="'+window.projectVersion+'"]').prop('selected', true);
</script>
<form id="search-form" action="../../search.html" method="GET">
<span class="glyphicon glyphicon-search"></span>
<input name="search"
class="typeahead form-control"
type="search"
placeholder="Search">
</form>
</div>
<div id="api-tree"></div>
</div>
<div id="right-column">
<nav id="site-nav" class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar-elements">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="../../index.html">Valit API</a>
</div>
<div class="collapse navbar-collapse" id="navbar-elements">
<ul class="nav navbar-nav">
<li><a href="../../classes.html">Classes</a></li>
<li><a href="../../namespaces.html">Namespaces</a></li>
<li><a href="../../interfaces.html">Interfaces</a></li>
<li><a href="../../traits.html">Traits</a></li>
<li><a href="../../doc-index.html">Index</a></li>
<li><a href="../../search.html">Search</a></li>
</ul>
</div>
</div>
</nav>
<div class="namespace-breadcrumbs">
<ol class="breadcrumb">
<li><span class="label label-default">interface</span></li>
<li><a href="../../Valit.html">Valit</a></li><li class="backslash">\</li><li><a href="../../Valit/Contracts.html">Contracts</a></li><li class="backslash">\</li><li>CustomChecker</li>
</ol>
</div>
<div id="page-content">
<div class="page-header">
<h1>
CustomChecker
</h1>
</div>
<p> interface
<strong>CustomChecker</strong> (<a href="https://github.com/moccalotto/valit/blob/1.0.0/Volumes/Macintosh HD/Code/github.com/moccalotto/valit/Contracts/CustomChecker.php">View source</a>)
</p>
<h2>Methods</h2>
<div class="container-fluid underlined">
<div class="row">
<div class="col-md-2 type">
<a href="../../Valit/Result/AssertionResult.html"><abbr title="Valit\Result\AssertionResult">AssertionResult</abbr></a>
</div>
<div class="col-md-8 type">
<a href="#method_check">check</a>(mixed $value)
<p class="no-description">No description</p>
</div>
<div class="col-md-2"></div>
</div>
</div>
<h2>Details</h2>
<div id="method-details">
<div class="method-item">
<h3 id="method_check">
<div class="location">at <a href="https://github.com/moccalotto/valit/blob/1.0.0/Volumes/Macintosh HD/Code/github.com/moccalotto/valit/Contracts/CustomChecker.php#L12">line 12</a></div>
<code> <a href="../../Valit/Result/AssertionResult.html"><abbr title="Valit\Result\AssertionResult">AssertionResult</abbr></a>
<strong>check</strong>(mixed $value)
</code>
</h3>
<div class="details">
<div class="tags">
<h4>Parameters</h4>
<table class="table table-condensed">
<tr>
<td>mixed</td>
<td>$value</td>
<td></td>
</tr>
</table>
<h4>Return Value</h4>
<table class="table table-condensed">
<tr>
<td><a href="../../Valit/Result/AssertionResult.html"><abbr title="Valit\Result\AssertionResult">AssertionResult</abbr></a></td>
<td></td>
</tr>
</table>
</div>
</div>
</div>
</div>
</div>
<div id="footer">
Generated by <a href="http://sami.sensiolabs.org/">Sami, the API Documentation Generator</a>.
</div>
</div>
</div>
</body>
</html>
| moccalotto/moccalotto.github.com | docs/valit/api/1.0.0/Valit/Contracts/CustomChecker.html | HTML | mit | 7,281 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="An archive of the 134 teams that have made it to the Einstein field of the FIRST Robotics Competition World Championship since 2004.">
<meta name="author" content="">
<title>FRC Legends</title>
<!-- Bootstrap Core CSS -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Theme CSS -->
<link href="css/freelancer.min.css" rel="stylesheet">
<!-- Custom Fonts -->
<link href="vendor/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic" rel="stylesheet" type="text/css">
<link href="css/text.css" rel="stylesheet">
<link rel="shortcut icon" href="img/favicon/favicon.ico">
<link rel="icon" sizes="16x16 32x32 64x64" href="/favicon.ico">
<link rel="icon" type="image/png" sizes="196x196" href="img/favicon/favicon-192.png">
<link rel="icon" type="image/png" sizes="160x160" href="img/favicon/favicon-160.png">
<link rel="icon" type="image/png" sizes="96x96" href="img/favicon/favicon-96.png">
<link rel="icon" type="image/png" sizes="64x64" href="img/favicon/favicon-64.png">
<link rel="icon" type="image/png" sizes="32x32" href="img/favicon/favicon-32.png">
<link rel="icon" type="image/png" sizes="16x16" href="img/favicon/favicon-16.png">
<link rel="apple-touch-icon" href="img/favicon/favicon-57.png">
<link rel="apple-touch-icon" sizes="114x114" href="img/favicon/favicon-114.png">
<link rel="apple-touch-icon" sizes="72x72" href="img/favicon/favicon-72.png">
<link rel="apple-touch-icon" sizes="144x144" href="img/favicon/favicon-144.png">
<link rel="apple-touch-icon" sizes="60x60" href="img/favicon/favicon-60.png">
<link rel="apple-touch-icon" sizes="120x120" href="img/favicon/favicon-120.png">
<link rel="apple-touch-icon" sizes="76x76" href="img/favicon/favicon-76.png">
<link rel="apple-touch-icon" sizes="152x152" href="img/favicon/favicon-152.png">
<link rel="apple-touch-icon" sizes="180x180" href="img/favicon/favicon-180.png">
<meta name="msapplication-TileColor" content="#FFFFFF">
<meta name="msapplication-TileImage" content="img/favicon/favicon-144.png">
<meta name="msapplication-config" content="img/favicon/browserconfig.xml">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-102976612-1', 'auto');
ga('send', 'pageview');
</script>
<body id="page-top" class="index">
<!-- Navigation -->
<nav id="mainNav" class="navbar navbar-default navbar-fixed-top navbar-custom">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header page-scroll">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span> Menu <i class="fa fa-bars"></i>
</button>
<a class="navbar-brand" href="#page-top">FRC Legends</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li class="hidden">
<a href="#page-top"></a>
</li>
<li class="page-scroll">
<a href="#ranking">Rankings</a>
</li>
<li class="page-scroll">
<a href="#comp">Competitions</a>
</li>
<li class="page-scroll">
<a href="#regions">Locations</a>
</li>
<li class="page-scroll">
<a href="#points">Explanation</a>
</li>
<li class="page-scroll">
<a href="#contact">Contact</a>
</li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container-fluid -->
</nav>
<!-- Header -->
<header>
<div class="container">
<div class="row">
<div class="col-lg-12">
<img class="img-responsive" src="img/first.png" alt="">
<div class="intro-text">
<span class="name">FRC Legends</span>
<hr class="star-light">
<span class="skills">An archive of the 134 teams that have made it to the Einstein field of the FIRST Robotics Competition World Championship since 2004.</span>
</div>
</div>
</div>
</div>
</header>
<!-- Ranking section -->
<section id="ranking">
<div class="container" id="mainContainer">
<div class="row">
<div class="col-lg-12 text-center">
<h2>Rankings</h2>
<hr class="star-primary">
</div>
</div>
<style>
input[type=text] {
width: 220px;
box-sizing: border-box;
border: 2px solid #ccc;
border-radius: 4px;
font-size: 16px;
background-color: white;
background-image: url('searchicon.png');
background-position: 10px 10px;
background-repeat: no-repeat;
padding: 12px 20px 12px 40px;
-webkit-transition: width 0.4s ease-in-out;
transition: width 0.4s ease-in-out;
margin-bottom: 50px;
}
input[type=text]:focus {
width: 100%;
}
</style>
<!--▲ -->
<form id="searchForm">
<input type="text" id="search" name="searchBar" placeholder="Search Teams.." onkeyup="showHiddenTeams()" onchange="showHiddenTeams()">
</form>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/67.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">67 The HOT Team</h3>
<h4>246 Points</h4>
<h5>Michigan</h5>
<p>11th place alliance (1st Pick) - 2017</p>
<p>4th place alliance (Captain) - 2014</p>
<p>1st place alliance (1st Pick) - 2010</p>
<p>1st place alliance (1st Pick) - 2009</p>
<p>2nd place alliance (Captain) - 2008</p>
<p>1st place alliance (1st Pick) - 2005</p>
<p>4th place alliance (1st Pick) - 2004</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/217.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">217 ThunderChickens</h3>
<h4>218 Points</h4>
<h5>Michigan</h5>
<p>7th place alliance (Captain) - 2016</p>
<p>3rd place alliance (Captain) - 2011</p>
<p>2nd place alliance (Captain) - 2009</p>
<p>1st place alliance (1st Pick) - 2008</p>
<p>1st place alliance (1st Pick) - 2006</p>
<p>3rd place alliance (1st Pick) - 2005</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/987.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">987 HIGHROLLERS <em>▲1</em></h3>
<h4>214 Points</h4>
<h5>Nevada</h5>
<p>6th place alliance (1st Pick) - 2017</p>
<p>4th place alliance (1st Pick) - 2016</p>
<p>2nd place alliance (Captain) - 2015</p>
<p>2nd place alliance (1st Pick) - 2012</p>
<p>4th place alliance (Captain) - 2011</p>
<p>1st place alliance (1st Pick) - 2007</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/254.png" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">254 The Cheesy Poofs <em>▲2</em></h3>
<h4>192 Points</h4>
<h5>California</h5>
<p>1st place alliance (1st Pick) - 2017</p>
<p>1st place alliance (Captain) - 2014</p>
<p>1st place alliance (Captain) - 2011</p>
<p>4th place alliance (Captain) - 2010</p>
<p>2nd place alliance (1st Pick) - 2005</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/1114.png" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">1114 Simbotics</h3>
<h4>186 Points</h4>
<h5>Canada</h5>
<p>3rd place alliance (1st Pick) - 2015</p>
<p>2nd place alliance (1st Pick) - 2014</p>
<p>4th place alliance (1st Pick) - 2012</p>
<p>2nd place alliance (Captain) - 2010</p>
<p>1st place alliance (Captain) - 2008</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/1678.png" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">1678 Citrus Circuits <em>▲1</em></h3>
<h4>182 Points</h4>
<h5>California</h5>
<p>4th place alliance (1st Pick) - 2017</p>
<p>3rd place alliance (1st Pick) - 2016</p>
<p>1st place alliance (1st Pick) - 2015</p>
<p>2nd place alliance (Captain) - 2014</p>
<p>4th place alliance (Captain) - 2013</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/2056.png" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">2056 OP Robotics <em>▲4</em></h3>
<h4>172 Points</h4>
<h5>Canada</h5>
<p>5th place alliance (Captain) - 2017</p>
<p>2nd place alliance (Captain) - 2016</p>
<p>5th place alliance (Captain) - 2015</p>
<p>4th place alliance (Captain) - 2012</p>
<p>3rd place alliance (1st Pick) - 2010</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/469.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">469 Las Guerrillas</h3>
<h4>154 Points</h4>
<h5>Michigan</h5>
<p>1st place alliance (1st Pick) - 2014</p>
<p>2nd place alliance (1st Pick) - 2013</p>
<p>2nd place alliance (1st Pick) - 2010</p>
<p>2nd place alliance (1st Pick) - 2004</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/177.png" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">177 Bobcat Robotics</h3>
<h4>147 Points</h4>
<h5>Connecticut</h5>
<p>2nd place alliance (1st Pick) - 2011</p>
<p>1st place alliance (2nd Pick) - 2010</p>
<p>3rd place alliance (2nd Pick) - 2009</p>
<p>4th place alliance (2nd Pick) - 2008</p>
<p>1st place alliance (2nd Pick) - 2007</p>
<p>4th place alliance (Captain) - 2006</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/330.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">330 The Beach Bots</h3>
<h4>146 Points</h4>
<h5>California</h5>
<p>1st place alliance (Captain) - 2016</p>
<p>5th place alliance (1st Pick) - 2015</p>
<p>4th place alliance (Captain) - 2007</p>
<p>1st place alliance (Captain) - 2005</p>
</div>
</div>
<div class="item" id="hiddenTeams">
<a href="#" class="read_more" id="SeeTeams" name="seeTeams">
<h1>See all teams</h1>
</a>
<br/>
<span class="more_text", id="hiddenSpan", name="hiddenSpan">
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/233.png" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">233 The Pink Team</h3>
<h4>146 Points</h4>
<h5>Florida</h5>
<p>2nd place alliance (Captain) - 2012</p>
<p>4th place alliance (1st Pick) - 2010</p>
<p>3rd place alliance (1st Pick) - 2008</p>
<p>2nd place alliance (Captain) - 2007</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/148.png" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">148 Robowranglers</h3>
<h4>126 Points</h4>
<h5>Texas</h5>
<p>3rd place alliance (Captain) - 2016</p>
<p>3rd place alliance (Captain) - 2015</p>
<p>4th place alliance (1st Pick) - 2013</p>
<p>1st place alliance (2nd Pick) - 2008</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/118.png" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">118 Robonauts <em>▲5</em></h3>
<h4>110 Points</h4>
<h5>Texas</h5>
<p>4th place alliance (Captain) - 2017</p>
<p>1st place alliance (Captain) - 2015</p>
<p>3rd place alliance (1st Pick) - 2012</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/968.png" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">968 RAWC (Robotics Alliance Of West Covina)</h3>
<h4>108 Points</h4>
<h5>California</h5>
<p>4th place alliance (1st Pick) - 2011</p>
<p>3rd place alliance (Captain) - 2008</p>
<p>2nd place alliance (1st Pick) - 2006</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/25.png" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">25 Raider Robotix</h3>
<h4>96 Points</h4>
<h5>New Jersey</h5>
<p>1st place alliance (1st Pick) - 2012</p>
<p>3rd place alliance (2nd Pick) - 2011</p>
<p>2nd place alliance (Captain) - 2006</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/973.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">973 Greybots <em>▲14</em></h3>
<h4>92 Points</h4>
<h5>California</h5>
<p>2nd place alliance (Captain) - 2017</p>
<p>4th place alliance (1st Pick) - 2014</p>
<p>1st place alliance (2nd Pick) - 2011</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/3476.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">3476 Code Orange</h3>
<h4>92 Points</h4>
<h5>California</h5>
<p>7th place alliance (1st Pick) - 2016</p>
<p>7th place alliance (1st Pick) - 2015</p>
<p>3rd place alliance (1st Pick) - 2013</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/111.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">111 WildStang</h3>
<h4>80 Points</h4>
<h5>Illinois</h5>
<p>1st place alliance (1st Pick) - 2011</p>
<p>1st place alliance (Captain) - 2009</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/1241.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">1241 THEORY6 <em>▲15</em></h3>
<h4>72 Points</h4>
<h5>Canada</h5>
<p>5th place alliance (1st Pick) - 2017</p>
<p>1st place alliance (1st Pick) - 2013</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/1625.png" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">1625 Winnovation</h3>
<h4>72 Points</h4>
<h5>Illinois</h5>
<p>3rd place alliance (1st Pick) - 2014</p>
<p>3rd place alliance (Captain) - 2010</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/33.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">33 Killer Bees</h3>
<h4>72 Points</h4>
<h5>Michigan</h5>
<p>2nd place alliance (Captain) - 2013</p>
<p>4th place alliance (1st Pick) - 2005</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/1218.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">1218 Vulcan Robotics</h3>
<h4>72 Points</h4>
<h5>Pennsylvania</h5>
<p>4th place alliance (1st Pick) - 2009</p>
<p>2nd place alliance (Captain) - 2004</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/175.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">175 Buzz Robotics</h3>
<h4>70 Points</h4>
<h5>Connecticut</h5>
<p>4th place alliance (Captain) - 2005</p>
<p>3rd place alliance (1st Pick) - 2004</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/1126.png" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">1126 SPARX</h3>
<h4>68 Points</h4>
<h5>New York</h5>
<p>4th place alliance (1st Pick) - 2006</p>
<p>4th place alliance (Captain) - 2004</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/1986.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">1986 Team Titanium <em>▲39</em></h3>
<h4>66 Points</h4>
<h5>Missouri</h5>
<p>3rd place alliance (Captain) - 2017</p>
<p>6th place alliance (1st Pick) - 2016</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/71.png" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">71 Team Hammond</h3>
<h4>59 Points</h4>
<h5>Indiana</h5>
<p>2nd place alliance (2nd Pick) - 2007</p>
<p>1st place alliance (Captain) - 2004</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/3339.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">3339 BumbleB</h3>
<h4>58 Points</h4>
<h5>Israel</h5>
<p>5th place alliance (1st Pick) - 2016</p>
<p>8th place alliance (1st Pick) - 2015</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/1477.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">1477 Texas Torque</h3>
<h4>58 Points</h4>
<h5>Texas</h5>
<p>3rd place alliance (2nd Pick) - 2014</p>
<p>1st place alliance (Captain) - 2013</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/16.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">16 Bomb Squad</h3>
<h4>58 Points</h4>
<h5>Arkansas</h5>
<p>1st place alliance (2nd Pick) - 2012</p>
<p>2nd place alliance (1st Pick) - 2008</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/2481.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">2481 Roboteers</h3>
<h4>57 Points</h4>
<h5>Illinois</h5>
<p>1st place alliance (1st Pick) - 2016</p>
<p>4th place alliance (2nd Pick) - 2014</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/2122.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">2122 Team Tators <em>▲35</em></h3>
<h4>56 Points</h4>
<h5>Idaho</h5>
<p>6th place alliance (Captain) - 2017</p>
<p>8th place alliance (Captain) - 2016</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/503.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">503 Frog Force</h3>
<h4>56 Points</h4>
<h5>Michigan</h5>
<p>3rd place alliance (Captain) - 2006</p>
<p>1st place alliance (2nd Pick) - 2005</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/195.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">195 CyberKnights</h3>
<h4>53 Points</h4>
<h5>Connecticut</h5>
<p>4th place alliance (Captain) - 2016</p>
<p>2nd place alliance (2nd Pick) - 2006</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/1640.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">1640 Sab-BOT-age</h3>
<h4>47 Points <em>▲14</em></h4>
<h5>Pennsylvania</h5>
<p>11th place alliance (2nd Pick) - 2017</p>
<p>2nd place alliance (2nd Pick) - 2014</p>
<p>3rd place alliance (2nd Pick) - 2013</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/2848.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">2848 ALL SPARKS</h3>
<h4>46 Points <em>▲42</em></h4>
<h5>Texas</h5>
<p>8th place alliance (1st Pick) - 2017</p>
<p>1st place alliance (2nd Pick) - 2014</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/2767.png" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">2767 Stryke Force</h3>
<h4>40 Points</h4>
<h5>Michigan</h5>
<p>1st place alliance (Captain) - 2017</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/494.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">494 Martians</h3>
<h4>40 Points</h4>
<h5>Michigan</h5>
<p>1st place alliance (1st Pick) - 2004</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/294.png" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">294 Beach Cities Robotics</h3>
<h4>40 Points</h4>
<h5>California</h5>
<p>1st place alliance (Captain) - 2010</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/296.png" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">296 Northern Knights</h3>
<h4>40 Points</h4>
<h5>Canada</h5>
<p>1st place alliance (Captain) - 2006</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/unknown.png" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">190 Gompei and the H.E.R.D.</h3>
<h4>40 Points</h4>
<h5>Massachusetts</h5>
<p>1st place alliance (Captain) - 2007</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/180.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">180 S.P.A.M.</h3>
<h4>40 Points</h4>
<h5>Florida</h5>
<p>1st place alliance (Captain) - 2012</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/1011.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">1011 CRUSH</h3>
<h4>38 Points</h4>
<h5>Arizona</h5>
<p>2nd place alliance (1st Pick) - 2017</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/1690.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">1690 Orbit</h3>
<h4>38 Points</h4>
<h5>Israel</h5>
<p>2nd place alliance (1st Pick) - 2016</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/68.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">68 Truck Town Thunder</h3>
<h4>38 Points</h4>
<h5>Michigan</h5>
<p>2nd place alliance (1st Pick) - 2009</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/2826.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">2826 Wave Robotics</h3>
<h4>38 Points</h4>
<h5>Wisconsin</h5>
<p>2nd place alliance (1st Pick) - 2015</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/2016.png" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">2016 Mighty Monkey Wrenches</h3>
<h4>38 Points</h4>
<h5>New Jersey</h5>
<p>2nd place alliance (Captain) - 2011</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/179.png" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">179 Children of the Swamp</h3>
<h4>38 Points</h4>
<h5>Florida</h5>
<p>2nd place alliance (1st Pick) - 2007</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/56.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">56 R.O.B.B.E.</h3>
<h4>38 Points</h4>
<h5>New Jersey</h5>
<p>2nd place alliance (Captain) - 2005</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/862.png" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">862 Lightning Robotics <em>▲60</em></h3>
<h4>37 Points</h4>
<h5>Michigan</h5>
<p>1st place alliance (2nd Pick) - 2017</p>
<p>4th place alliance (2nd Pick) - 2013</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/3310.png" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">3310 Black Hawk Robotics</h3>
<h4>36 Points</h4>
<h5>Texas</h5>
<p>3rd place alliance (1st Pick) - 2017</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/2590.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">2590 Nemesis</h3>
<h4>36 Points</h4>
<h5>Michigan</h5>
<p>3rd place alliance (Captain) - 2014</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/1503.png" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">1503 Spartonics</h3>
<h4>36 Points</h4>
<h5>Canada</h5>
<p>3rd place alliance (1st Pick) - 2011</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/303.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">303 The T.E.S.T. Team</h3>
<h4>36 Points</h4>
<h5>New Jersey</h5>
<p>3rd place alliance (Captain) - 2013</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/1902.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">1902 Exploding Bacon</h3>
<h4>36 Points</h4>
<h5>Florida</h5>
<p>3rd place alliance (1st Pick) - 2007</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/unknown.png" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">1507 Warlocks</h3>
<h4>36 Points</h4>
<h5>New York</h5>
<p>3rd place alliance (Captain) - 2009</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/2194.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">2194 Fondy Fire</h3>
<h4>36 Points</h4>
<h5>Wisconsin</h5>
<p>3rd place alliance (Captain) - 2012</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/173.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">173 RAGE Robotics</h3>
<h4>36 Points</h4>
<h5>Connecticut</h5>
<p>3rd place alliance (Captain) - 2007</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/121.png" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">121 Rhode Warriors</h3>
<h4>36 Points</h4>
<h5>Rhode Island</h5>
<p>3rd place alliance (1st Pick) - 2009</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/1038.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">1038 Lakota Robotics</h3>
<h4>36 Points</h4>
<h5>Ohio</h5>
<p>3rd place alliance (Captain) - 2004</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/245.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">245 Adambots</h3>
<h4>36 Points</h4>
<h5>Michigan</h5>
<p>3rd place alliance (Captain) - 2005</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/451.png" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">451 The Cat Attack</h3>
<h4>36 Points</h4>
<h5>Ohio</h5>
<p>3rd place alliance (1st Pick) - 2006</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/222.png" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">222 Tigertrons</h3>
<h4>34 Points</h4>
<h5>Pennsylvania</h5>
<p>4th place alliance (Captain) - 2009</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/910.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">910 The Foley Freeze</h3>
<h4>34 Points</h4>
<h5>Michigan</h5>
<p>4th place alliance (1st Pick) - 2007</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/1024.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">1024 Kil-A-Bytes</h3>
<h4>34 Points</h4>
<h5>Indiana</h5>
<p>4th place alliance (1st Pick) - 2008</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/2338.png" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">2338 Gear It Forward</h3>
<h4>34 Points</h4>
<h5>Illinois</h5>
<p>4th place alliance (1st Pick) - 2015</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/1124.png" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">1124 UberBots</h3>
<h4>34 Points</h4>
<h5>Connecticut</h5>
<p>4th place alliance (Captain) - 2008</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/1023.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">1023 Bedford Express</h3>
<h4>34 Points</h4>
<h5>Michigan</h5>
<p>4th place alliance (Captain) - 2015</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/694.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">694 StuyPulse</h3>
<h4>32 Points</h4>
<h5>New York</h5>
<p>5th place alliance (Captain) - 2016</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/unknown.png" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">1501 Team THRUST</h3>
<h4>30 Points</h4>
<h5>Indiana</h5>
<p>6th place alliance (Captain) - 2016</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/359.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">359 Hawaiian Kids</h3>
<h4>30 Points</h4>
<h5>Hawaii</h5>
<p>6th place alliance (1st Pick) - 2015</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/368.png" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">368 Team Kika Mana</h3>
<h4>30 Points</h4>
<h5>Hawaii</h5>
<p>6th place alliance (Captain) - 2015</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/125.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">125 NUTRONs</h3>
<h4>28 Points</h4>
<h5>Massachusetts</h5>
<p>7th place alliance (Captain) - 2017</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/5687.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">5687 The Outliers</h3>
<h4>28 Points</h4>
<h5>Maine</h5>
<p>7th place alliance (1st Pick) - 2017</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/3132.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">3132 Thunder Down Under</h3>
<h4>28 Points</h4>
<h5>Australia</h5>
<p>7th place alliance (Captain) - 2015</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/604.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">604 Quixilver</h3>
<h4>26 Points</h4>
<h5>California</h5>
<p>8th place alliance (Captain) - 2017</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/unknown.png" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">2052 KnightKrawler</h3>
<h4>26 Points</h4>
<h5>Minnesota</h5>
<p>8th place alliance (1st Pick) - 2016</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/2052.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">2052 KnightKrawler</h3>
<h4>26 Points</h4>
<h5>Minnesota</h5>
<p>8th place alliance (1st Pick) - 2016</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/1325.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">1325 Inverse Paradox</h3>
<h4>26 Points</h4>
<h5>Canada</h5>
<p>8th place alliance (Captain) - 2015</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/3452.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">3452 GreengineerZ</h3>
<h4>24 Points</h4>
<h5>Michigan</h5>
<p>9th place alliance (Captain) - 2017</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/3683.png" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">3683 Team Dave</h3>
<h4>24 Points</h4>
<h5>Canada</h5>
<p>9th place alliance (1st Pick) - 2017</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/5654.jpeg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">5654 Phoenix</h3>
<h4>22 Points</h4>
<h5>Israel</h5>
<p>10th place alliance (Captain) - 2017</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/2415.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">2415 WiredCats</h3>
<h4>22 Points</h4>
<h5>Georgia</h5>
<p>10th place alliance (1st Pick) - 2017</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/1058.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">1058 PVC Pirates</h3>
<h4>20 Points</h4>
<h5>New Hampshire</h5>
<p>11th place alliance (Captain) - 2017</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/1671.png" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">1671 Buchanan Bird Brains</h3>
<h4>20 Points</h4>
<h5>California</h5>
<p>1st place alliance (2nd Pick) - 2015</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/120.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">120 Cleveland's Team</h3>
<h4>20 Points</h4>
<h5>Ohio</h5>
<p>1st place alliance (2nd Pick) - 2016</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/971.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">971 Spartan Robotics</h3>
<h4>20 Points</h4>
<h5>California</h5>
<p>1st place alliance (2nd Pick) - 2009</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/610.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">610 Crescent Robotics</h3>
<h4>20 Points</h4>
<h5>Canada</h5>
<p>1st place alliance (2nd Pick) - 2013</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/unknown.png" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">522 ROBO WIZARDS</h3>
<h4>20 Points</h4>
<h5>New York</h5>
<p>1st place alliance (2nd Pick) - 2006</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/435.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">435 Robodogs</h3>
<h4>20 Points</h4>
<h5>North Carolina</h5>
<p>1st place alliance (2nd Pick) - 2004</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/2928.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">2928 Viking Robotics</h3>
<h4>19 Points</h4>
<h5>Washington</h5>
<p>2nd place alliance (2nd Pick) - 2017s</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/2041.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">2041 (RC)2</h3>
<h4>19 Points</h4>
<h5>Illinois</h5>
<p>2nd place alliance (2nd Pick) - 2010</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/3015.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">3015 Ranger Robotics</h3>
<h4>19 Points</h4>
<h5>New York</h5>
<p>2nd place alliance (2nd Pick) - 2016</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/247.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">247 Da Bears</h3>
<h4>19 Points</h4>
<h5>Michigan</h5>
<p>2nd place alliance (2nd Pick) - 2009</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/868.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">868 TechHOUNDS</h3>
<h4>19 Points</h4>
<h5>Indiana</h5>
<p>2nd place alliance (2nd Pick) - 2004</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/781.png" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">781 Kinetic Knights</h3>
<h4>19 Points</h4>
<h5>Canada</h5>
<p>2nd place alliance (2nd Pick) - 2011</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/4265.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">4265 Secret City Wildbots</h3>
<h4>19 Points</h4>
<h5>Tennessee</h5>
<p>2nd place alliance (2nd Pick) - 2015</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/unknown.png" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">207 METALCRAFTERS</h3>
<h4>19 Points</h4>
<h5>California</h5>
<p>2nd place alliance (2nd Pick) - 2012</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/unknown.png" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">64 Gila Monsters</h3>
<h4>19 Points</h4>
<h5>Arizona</h5>
<p>2nd place alliance (2nd Pick) - 2005</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/1519.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">1519 Mechanical Mayhem</h3>
<h4>19 Points</h4>
<h5>New Hampshire</h5>
<p>2nd place alliance (2nd Pick) - 2013</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/348.png" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">348 Norwell Robotics</h3>
<h4>19 Points</h4>
<h5>Massachusetts</h5>
<p>2nd place alliance (2nd Pick) - 2008</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/1318.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">1318 Issaquah Robotics Society</h3>
<h4>18 Points</h4>
<h5>Washington</h5>
<p>12 place alliance (Captain) - 2017</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/2046.jpeg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">2046 Bear Metal</h3>
<h4>18 Points</h4>
<h5>Washington</h5>
<p>12 place alliance (1st Pick) - 2017</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/unknown.png" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">302 The Dragons</h3>
<h4>18 Points</h4>
<h5>Michigan</h5>
<p>3rd place alliance (2nd Pick) - 2017</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/766.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">766 M-A Bears</h3>
<h4>18 Points</h4>
<h5>California</h5>
<p>3rd place alliance (2nd Pick) - 2005</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/364.png" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">364 Team Fusion</h3>
<h4>18 Points</h4>
<h5>Mississippi</h5>
<p>3rd place alliance (2nd Pick) - 2016</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/unknown.png" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">60 Bionic Bulldogs</h3>
<h4>18 Points</h4>
<h5>Arizona</h5>
<p>3rd place alliance (2nd Pick) - 2008</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/1923.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">1923 The MidKnight Inventors</h3>
<h4>18 Points</h4>
<h5>New Jersey</h5>
<p>3rd place alliance (2nd Pick) - 2015</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/unknown.png" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">3138 Innovators Robotics</h3>
<h4>18 Points</h4>
<h5>Ohio</h5>
<p>3rd place alliance (2nd Pick) - 2010</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/1319.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">1319 Flash</h3>
<h4>18 Points</h4>
<h5>South Carolina</h5>
<p>3rd place alliance (2nd Pick) - 2007</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/1139.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">1139 The Chamblee Gear Grinders</h3>
<h4>18 Points</h4>
<h5>Georgia</h5>
<p>3rd place alliance (2nd Pick) - 2006</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/1388.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">1388 Eagle Robotics</h3>
<h4>18 Points</h4>
<h5>California</h5>
<p>3rd place alliance (2nd Pick) - 2004</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/548.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">548 Robostangs</h3>
<h4>18 Points</h4>
<h5>Michigan</h5>
<p>3rd place alliance (2nd Pick) - 2012</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/4188.png" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">4188 Columbus Space Program</h3>
<h4>17 Points</h4>
<h5>Georgia</h5>
<p>4th place alliance (2nd Pick) - 2017</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/2753.png" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">2753 Team Overdrive</h3>
<h4>17 Points</h4>
<h5>New Jersey</h5>
<p>4th place alliance (2nd Pick) - 2009</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/108.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">108 SigmaC@T</h3>
<h4>17 Points</h4>
<h5>Florida</h5>
<p>4th place alliance (2nd Pick) - 2005</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/201.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">201 The FEDS</h3>
<h4>17 Points</h4>
<h5>Massachusetts</h5>
<p>4th place alliance (2nd Pick) - 2006</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/340.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">340 G.R.R. (Greater Rochester Robotics)</h3>
<h4>17 Points</h4>
<h5>New York</h5>
<p>4th place alliance (2nd Pick) - 2004</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/51.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">51 Wings of Fire</h3>
<h4>17 Points</h4>
<h5>Michigan</h5>
<p>4th place alliance (2nd Pick) - 2011</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/3357.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">3357 COMETS</h3>
<h4>17 Points</h4>
<h5>Michigan</h5>
<p>4th place alliance (2nd Pick) - 2010</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/3996.png" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">3996 RIKITIK</h3>
<h4>17 Points</h4>
<h5>Canada</h5>
<p>4th place alliance (2nd Pick) - 2015</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/1197.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">1197 TorBots</h3>
<h4>17 Points</h4>
<h5>California</h5>
<p>4th place alliance (2nd Pick) - 2016</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/4334.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">4334 Alberta Tech Alliance</h3>
<h4>17 Points</h4>
<h5>Canada</h5>
<p>4th place alliance (2nd Pick) - 2012</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/unknown.png" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">1270 Red Dragons</h3>
<h4>17 Points</h4>
<h5>Ohio</h5>
<p>4th place alliance (2nd Pick) - 2007</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/384.png" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">384 Sparky 384</h3>
<h4>16 Points</h4>
<h5>Virginia</h5>
<p>5th place alliance (2nd Pick) - 2017</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/unknown.png" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">379 RoboCats</h3>
<h4>16 Points</h4>
<h5>Ohio</h5>
<p>5th place alliance (2nd Pick) - 2016</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/492.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">492 Titan Robotics Club</h3>
<h4>16 Points</h4>
<h5>Washington</h5>
<p>5th place alliance (2nd Pick) - 2015</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/1511.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">1511 Rolling Thunder <em>▲17</em></h3>
<h4>16 Points</h4>
<h5>New York</h5>
<p>5th place alliance (3rd Pick) - 2017</p>
<p>5th place alliance (3rd Pick) - 2016</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/4910.png" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">4910 East Cobb Robotics</h3>
<h4>15 Points</h4>
<h5>Georgia</h5>
<p>6th place alliance (2nd Pick) - 2017</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/5050.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">5050 Cow Town Robotics</h3>
<h4>15 Points</h4>
<h5>Michigan</h5>
<p>6th place alliance (2nd Pick) - 2016</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/337.png" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">337 Hard Working Hard Hats</h3>
<h4>15 Points</h4>
<h5>West Virginia</h5>
<p>6th place alliance (2nd Pick) - 2015</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/1796.png" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">1796 RoboTigers</h3>
<h4>14 Points</h4>
<h5>New York</h5>
<p>7th place alliance (2nd Pick) - 2017</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/1255.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">1255 Blarglefish</h3>
<h4>14 Points</h4>
<h5>Texas</h5>
<p>7th place alliance (2nd Pick) - 2015</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/4678.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">4678 CyberCavs</h3>
<h4>14 Points</h4>
<h5>Canada</h5>
<p>7th place alliance (2nd Pick) - 2016</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/1868.png" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">1868 Space Cookies</h3>
<h4>13 Points</h4>
<h5>California</h5>
<p>8th place alliance (2nd Pick) - 2017</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/3538.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">3538 RoboJackets</h3>
<h4>13 Points</h4>
<h5>Michigan</h5>
<p>8th place alliance (2nd Pick) - 2016</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/20.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">20 The Rocketeers</h3>
<h4>13 Points</h4>
<h5>New York</h5>
<p>8th place alliance (2nd Pick) - 2015</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/2084.png" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">2084 Robots by the C</h3>
<h4>12 Points</h4>
<h5>Massachusetts</h5>
<p>9th place alliance (2nd Pick) - 2017</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/2630.png" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">2630 Thunderbolts</h3>
<h4>11 Points</h4>
<h5>Israel</h5>
<p>10th place alliance (2nd Pick) - 2017</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/1676.jpeg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">1676 The Pascack PI-oneers</h3>
<h4>10 Points</h4>
<h5>New Jersey</h5>
<p>1st place alliance (3rd Pick) - 2017</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/74.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">74 Team C.H.A.O.S.</h3>
<h4>10 Points</h4>
<h5>Michigan</h5>
<p>1st place alliance (3rd Pick) - 2014</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/5012.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">5012 Gryffingear</h3>
<h4>10 Points</h4>
<h5>California</h5>
<p>1st place alliance (3rd Pick) - 2015</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/1086.png" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">1086 Blue Cheese</h3>
<h4>10 Points</h4>
<h5>Virginia</h5>
<p>1st place alliance (3rd Pick) - 2016</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/1595.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">1595 The Dragons</h3>
<h4>9 Points</h4>
<h5>Washington</h5>
<p>12th place alliance (2nd Pick) - 2017</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/5499.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">5499 The Bay Orangutans</h3>
<h4>9.5 Points</h4>
<h5>California</h5>
<p>2nd place alliance (3rd Pick) - 2017</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/1405.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">1405 Finney Falcons</h3>
<h4>9.5 Points</h4>
<h5>New York</h5>
<p>2nd place alliance (3rd Pick) - 2016</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/2512.png" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">2512 Duluth East Daredevils</h3>
<h4>9.5 Points</h4>
<h5>Minnesota</h5>
<p>2nd place alliance (3rd Pick) - 2015</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/5136.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">5136 Mechapirates</h3>
<h4>9.5 Points</h4>
<h5>California</h5>
<p>2nd place alliance (3rd Pick) - 2014</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/3719.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">3719 STEM Whalers</h3>
<h4>9 Points</h4>
<h5>Connecticut</h5>
<p>3rd place alliance (3rd Pick) - 2017</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/2990.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">2990 Hotwire</h3>
<h4>9 Points</h4>
<h5>Oregon</h5>
<p>3rd place alliance (3rd Pick) - 2016</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/900.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">900 The Zebracorns</h3>
<h4>9 Points</h4>
<h5>North Carolina</h5>
<p>3rd place alliance (3rd Pick) - 2015</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/3467.png" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">3467 Windham Windup</h3>
<h4>9 Points</h4>
<h5>New Hampshire</h5>
<p>3rd place alliance (3rd Pick) - 2014</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/5892.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">5892 Energy HEROs</h3>
<h4>8.5 Points</h4>
<h5>Texas</h5>
<p>4th place alliance (3rd Pick) - 2017</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/1089.png" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">1089 Team Mercury</h3>
<h4>8.5 Points</h4>
<h5>New Jersey</h5>
<p>4th place alliance (3rd Pick) - 2015</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/1065.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">1065 The Moose</h3>
<h4>8.5 Points</h4>
<h5>Florida</h5>
<p>4th place alliance (3rd Pick) - 2016</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/2363.png" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">2363 Triple Helix</h3>
<h4>8.5 Points</h4>
<h5>Virginia</h5>
<p>4th place alliance (3rd Pick) - 2014</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/unknown.png" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">3944 All Knights</h3>
<h4>8 Points</h4>
<h5>Arizona</h5>
<p>5th place alliance (3rd Pick) - 2015</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/6314.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">6314 DM Robotics (Wolf Pack)</h3>
<h4>7.5 Points</h4>
<h5>Arizona</h5>
<p>6th place alliance (3rd Pick) - 2017</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/unknown.png" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">1796 RoboTigers</h3>
<h4>7.5 Points</h4>
<h5>New York</h5>
<p>6th place alliance (3rd Pick) - 2017</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/4828.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">4828 RoboEagles</h3>
<h4>7.5 Points</h4>
<h5>North Carolina</h5>
<p>6th place alliance (3rd Pick) - 2016</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/144.png" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">144 The R.O.C.K</h3>
<h4>7.5 Points</h4>
<h5>Ohio</h5>
<p>6th place alliance (3rd Pick) - 2015</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/unknown.png" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">597 The Wolverines</h3>
<h4>7 Points</h4>
<h5>California</h5>
<p>7th place alliance (3rd Pick) - 2017</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/2526.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">2526 Crimson Robotics</h3>
<h4>7 Points</h4>
<h5>Minnesota</h5>
<p>7th place alliance (3rd Pick) - 2015</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/188.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">188 Blizzard</h3>
<h4>7 Points</h4>
<h5>Canada</h5>
<p>7th place alliance (3rd Pick) - 2016</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/2903.png" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">2903 NeoBots</h3>
<h4>6.5 Points</h4>
<h5>Washington</h5>
<p>8th place alliance (3rd Pick) - 2017</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/41.png" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">41 RoboWarriors</h3>
<h4>6.5 Points</h4>
<h5>New Jersey</h5>
<p>8th place alliance (3rd Pick) - 2016</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/1711.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">1711 Raptors</h3>
<h4>6.5 Points</h4>
<h5>Michigan</h5>
<p>8th place alliance (3rd Pick) - 2015</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/2537.png" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">2537 Space RAIDers</h3>
<h4>6 Points</h4>
<h5>Maryland</h5>
<p>9th place alliance (3rd Pick) - 2017</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/4112.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">4112 EagleBots</h3>
<h4>5.5 Points</h4>
<h5>Georgia</h5>
<p>10th place alliance (3rd Pick) - 2017</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/2137.jpg" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">2137 TORC</h3>
<h4>5 Points</h4>
<h5>Michigan</h5>
<p>11th place alliance (3rd Pick) - 2017</p>
</div>
</div>
<div class="media">
<div class="media-left">
<a href="#">
<img alt="64x64" class="media-object" data-src="holder.js/64x64" src="img/teams/2907.png" data-holder-rendered="true" style="width: 64px; height: 64px;">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">2907 Lion Robotics</h3>
<h4>5 Points</h4>
<h5>Washington</h5>
<p>12th place alliance (3rd Pick) - 2017</p>
</div>
</div>
</span>
</div>
</div>
</section>
<!-- Competition Grid Section -->
<section id="comp">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2>Competitions</h2>
<hr class="star-primary">
</div>
</div>
<div class="row">
<div class="col-sm-4 portfolio-item">
<a href="#2017Modal" class="portfolio-link" data-toggle="modal">
<div class="caption">
<div class="caption-content">
<i class="fa fa-search-plus fa-3x"></i>
</div>
</div>
<img style="height: 260px;" src="img/events/2017.png" class="img-responsive" alt="">
</a>
</div>
<div class="col-sm-4 portfolio-item">
<a href="#2016Modal" class="portfolio-link" data-toggle="modal">
<div class="caption">
<div class="caption-content">
<i class="fa fa-search-plus fa-3x"></i>
</div>
</div>
<img style="height: 260px;" src="img/events/2016.jpg" class="img-responsive" alt="">
</a>
</div>
<div class="col-sm-4 portfolio-item">
<a href="#2015Modal" class="portfolio-link" data-toggle="modal">
<div class="caption">
<div class="caption-content">
<i class="fa fa-search-plus fa-3x"></i>
</div>
</div>
<img style="height: 260px;" src="img/events/2015.jpg" class="img-responsive" alt="">
</a>
</div>
<div class="col-sm-4 portfolio-item">
<a href="#2014Modal" class="portfolio-link" data-toggle="modal">
<div class="caption">
<div class="caption-content">
<i class="fa fa-search-plus fa-3x"></i>
</div>
</div>
<img style="height: 260px;" src="img/events/2014.jpg" class="img-responsive" alt="">
</a>
</div>
<div class="col-sm-4 portfolio-item">
<a href="#2013Modal" class="portfolio-link" data-toggle="modal">
<div class="caption">
<div class="caption-content">
<i class="fa fa-search-plus fa-3x"></i>
</div>
</div>
<img style="height: 260px;" src="img/events/2013.jpg" class="img-responsive" alt="">
</a>
</div>
<div class="col-sm-4 portfolio-item">
<a href="#2012Modal" class="portfolio-link" data-toggle="modal">
<div class="caption">
<div class="caption-content">
<i class="fa fa-search-plus fa-3x"></i>
</div>
</div>
<img style="height: 260px;" src="img/events/2012.jpg" class="img-responsive" alt="">
</a>
</div>
<div class="col-sm-4 portfolio-item">
<a href="#2011Modal" class="portfolio-link" data-toggle="modal">
<div class="caption">
<div class="caption-content">
<i class="fa fa-search-plus fa-3x"></i>
</div>
</div>
<img style="height: 260px;" src="img/events/2011.jpg" class="img-responsive" alt="">
</a>
</div>
<div class="col-sm-4 portfolio-item">
<a href="#2010Modal" class="portfolio-link" data-toggle="modal">
<div class="caption">
<div class="caption-content">
<i class="fa fa-search-plus fa-3x"></i>
</div>
</div>
<img style="height: 260px;" src="img/events/2010.jpg" class="img-responsive" alt="">
</a>
</div>
<div class="col-sm-4 portfolio-item">
<a href="#2009Modal" class="portfolio-link" data-toggle="modal">
<div class="caption">
<div class="caption-content">
<i class="fa fa-search-plus fa-3x"></i>
</div>
</div>
<img style="height: 260px;" src="img/events/2009.jpg" class="img-responsive" alt="">
</a>
</div>
<div class="col-sm-4 portfolio-item">
<a href="#2008Modal" class="portfolio-link" data-toggle="modal">
<div class="caption">
<div class="caption-content">
<i class="fa fa-search-plus fa-3x"></i>
</div>
</div>
<img style="height: 260px;" src="img/events/2008.jpg" class="img-responsive" alt="">
</a>
</div>
<div class="col-sm-4 portfolio-item">
<a href="#2007Modal" class="portfolio-link" data-toggle="modal">
<div class="caption">
<div class="caption-content">
<i class="fa fa-search-plus fa-3x"></i>
</div>
</div>
<img style="height: 260px;" src="img/events/2007.jpg" class="img-responsive" alt="">
</a>
</div>
<div class="col-sm-4 portfolio-item">
<a href="#2006Modal" class="portfolio-link" data-toggle="modal">
<div class="caption">
<div class="caption-content">
<i class="fa fa-search-plus fa-3x"></i>
</div>
</div>
<img style="height: 260px;" src="img/events/2006.jpg" class="img-responsive" alt="">
</a>
</div>
<div class="col-sm-4 portfolio-item">
<a href="#2005Modal" class="portfolio-link" data-toggle="modal">
<div class="caption">
<div class="caption-content">
<i class="fa fa-search-plus fa-3x"></i>
</div>
</div>
<img style="height: 260px;" src="img/events/2005.jpg" class="img-responsive" alt="">
</a>
</div>
<div class="col-sm-4 portfolio-item">
<a href="#2004Modal" class="portfolio-link" data-toggle="modal">
<div class="caption">
<div class="caption-content">
<i class="fa fa-search-plus fa-3x"></i>
</div>
</div>
<img style="height: 260px;" src="img/events/2004.jpg" class="img-responsive" alt="">
</a>
</div>
</div>
</div>
</section>
<!-- Region Section -->
<section class="success" id="regions">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2>Location Rankings</h2>
<hr class="star-light">
</div>
</div>
<div class="bs-example" data-example-id="thumbnails-with-custom-content">
<div class="row">
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<img alt="100%x200" data-src="holder.js/100%x200" src="img/locations/michigan.png" data-holder-rendered="true" style="height: 100%; width: 100%; display: block;">
<div class="caption">
<h3>Michigan</h3>
<h4>1203.5 points</h4>
<h5>Top Teams:</h5>
<p>67 The HOT Team (246)</p>
<p>217 ThunderChickens (218)</p>
<p>469 Las Guerrillas (154)</p>
<p>33 Killer Bees (72)</p>
<p>503 Frog Force (56)</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<img alt="100%x200" data-src="holder.js/100%x200" src="img/locations/california.png" data-holder-rendered="true" style="height: 100%; width: 100%; display: block;">
<div class="caption">
<h3>California</h3>
<h4>1005 points</h4>
<h5>Top Teams:</h5>
<p>254 The Cheesy Poofs (192)</p>
<p>1678 Citrus Circuits (148)</p>
<p>330 The Beach Bots (146)</p>
<p>968 RAWC (Robotics Alliance Of West Covina) (108)</p>
<p>973 Greybots (92)</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<img alt="100%x200" data-src="holder.js/100%x200" src="img/locations/canada.png" data-holder-rendered="true" style="height: 100%; width: 100%; display: block;">
<div class="caption">
<h3>Canada</h3>
<h4>650 points</h4>
<h5>Top Teams:</h5>
<p>1114 Simbotics (186)</p>
<p>2056 OP Robotics (172)</p>
<p>1241 THEORY6 (72)</p>
<p>296 Northern Knights (40)</p>
<p>1503 SPARTONICS (36)</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<img alt="100%x200" data-src="holder.js/100%x200" src="img/locations/texas.png" data-holder-rendered="true" style="height: 100%; width: 100%; display: block;">
<div class="caption">
<h3>Texas <em>▲1</em></h3>
<h4>400.5 points</h4>
<h5>Top Teams:</h5>
<p>148 Robowranglers (126)</p>
<p>118 Robonauts (110)</p>
<p>1477 Texas Torque (58)</p>
<p>2848 ALL SPARKS (46)</p>
<p>3310 Black Hawk Robotics (36)</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<img alt="100%x200" data-src="holder.js/100%x200" src="img/locations/conn.png" data-holder-rendered="true" style="height: 100%; width: 100%; display: block;">
<div class="caption">
<h3>Connecticut</h3>
<h4>349 points</h4>
<h5>Top Teams:</h5>
<p>177 Bobcat Robotics (147)</p>
<p>175 Buzz Robotics (70)</p>
<p>195 CyberKnights (53)</p>
<p>173 RAGE Robotics (36)</p>
<p>1124 UberBots (34)</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<img alt="100%x200" data-src="holder.js/100%x200" src="img/locations/florida.png" data-holder-rendered="true" style="height: 100%; width: 100%; display: block;">
<div class="caption">
<h3>Florida</h3>
<h4>285.5 points</h4>
<h5>Top Teams:</h5>
<p>233 The Pink Team (146)</p>
<p>180 S.P.A.M. (40)</p>
<p>179 Children of the Swamp (38)</p>
<p>1902 Exploding Bacon (36)</p>
<p>108 SigmaC@T (17)</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<img alt="100%x200" data-src="holder.js/100%x200" src="img/locations/illinois.png" data-holder-rendered="true" style="height: 100%; width: 100%; display: block;">
<div class="caption">
<h3>Illinois</h3>
<h4>262 points</h4>
<h5>Top Teams:</h5>
<p>111 WildStang (80)</p>
<p>1625 Winnovation (72)</p>
<p>2481 Roboteers (57)</p>
<p>2338 Gear It Forward (34)</p>
<p>2041 (RC)2 (19)</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<img alt="100%x200" data-src="holder.js/100%x200" src="img/locations/newjersey.png" data-holder-rendered="true" style="height: 100%; width: 100%; display: block;">
<div class="caption">
<h3>New Jersey</h3>
<h4>268 points</h4>
<h5>Top Teams:</h5>
<p>25 Raider Robotix (96)</p>
<p>2016 Mighty Monkey Wrenches (38)</p>
<p>56 R.O.B.B.E. (38)</p>
<p>303 The T.E.S.T. Team (36)</p>
<p>2753 Team Overdrive (17)</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<img alt="100%x200" data-src="holder.js/100%x200" src="img/locations/newyork.png" data-holder-rendered="true" style="height: 100%; width: 100%; display: block;">
<div class="caption">
<h3>New York</h3>
<h4>253 points</h4>
<h5>Top Teams:</h5>
<p>1126 SPARX (68)</p>
<p>1507 Warlocks (36)</p>
<p>694 StuyPulse (32)</p>
<p>522 ROBO WIZARDS (20)</p>
<p>3015 Ranger Robotics (19)</p>
</div>
</div>
</div>
</div>
<div class="item">
<a href="#" class="read_more">
<h1 style="color:white">See all locations</h1>
</a>
<br/>
<span class="more_text">
<div class="row">
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<img alt="100%x200" data-src="holder.js/100%x200" src="img/locations/nevada.png" data-holder-rendered="true" style="height: 100%; width: 100%; display: block;">
<div class="caption">
<h3>Nevada</h3>
<h4>214 points</h4>
<h5>Top Teams:</h5>
<p>987 HIGHROLLERS (214)</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<img alt="100%x200" data-src="holder.js/100%x200" src="img/locations/penn.png" data-holder-rendered="true" style="height: 100%; width: 100%; display: block;">
<div class="caption">
<h3>Pennsylvania <em>▲1</em></h3>
<h4>153 points</h4>
<h5>Top Teams:</h5>
<p>1218 Vulcan Robotics (72)</p>
<p>1640 Sab-BOT-age (47)</p>
<p>222 Tigertrons (34)</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<img alt="100%x200" data-src="holder.js/100%x200" src="img/locations/ohio.png" data-holder-rendered="true" style="height: 100%; width: 100%; display: block;">
<div class="caption">
<h3>Ohio</h3>
<h4>150.5 points</h4>
<h5>Top Teams:</h5>
<p>451 The Cat Attack (36)</p>
<p>1038 Lakota Robotics (36)</p>
<p>120 Cleveland's Team (20)</p>
<p>3138 INNOVATORS ROBOTICS (18)</p>
<p>1270 Red Dragons (17)</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<img alt="100%x200" data-src="holder.js/100%x200" src="img/locations/indiana.png" data-holder-rendered="true" style="height: 100%; width: 100%; display: block;">
<div class="caption">
<h3>Indiana</h3>
<h4>142 points</h4>
<h5>Top Teams:</h5>
<p>71 Team Hammond (59)</p>
<p>1024 KIL-A-BYTES (34)</p>
<p>1501 Team THRUST (30)</p>
<p>868 TechHOUNDS (19)</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<img alt="100%x200" data-src="holder.js/100%x200" src="img/locations/israel.png" data-holder-rendered="true" style="height: 100%; width: 100%; display: block;">
<div class="caption">
<h3>Israel</h3>
<h4>129 points</h4>
<h5>Top Teams:</h5>
<p>3339 BumbleB (58)</p>
<p>1690 Orbit (38)</p>
<p>5654 Phoenix (22)</p>
<p>2630 Thunderbolts (11)</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<img alt="100%x200" data-src="holder.js/100%x200" src="img/locations/mass.png" data-holder-rendered="true" style="height: 100%; width: 100%; display: block;">
<div class="caption">
<h3>Massachusetts <em>▲1</em></h3>
<h4>116 points</h4>
<h5>Top Teams:</h5>
<p>190 Gompei and the H.E.R.D. (40)</p>
<p>125 NUTRONs (28)</p>
<p>348 Norwell Robotics (19)</p>
<p>201 The FEDS (17)</p>
<p>2084 Robots by the C (12)</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<img alt="100%x200" data-src="holder.js/100%x200" src="img/locations/washington.png" data-holder-rendered="true" style="height: 100%; width: 100%; display: block;">
<div class="caption">
<h3>Washington <em>▲12</em></h3>
<h4>91 points</h4>
<h5>Top Teams:</h5>
<p>2928 Viking Robotics (19)</p>
<p>1318 Issaquah Robotics Society (18)</p>
<p>2046 Bear Metal (18)</p>
<p>492 Titan Robotics Club (16)</p>
<p>1595 The Dragons (9)</p>
<p>2903 NeoBots (6.5)</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<img alt="100%x200" data-src="holder.js/100%x200" src="img/locations/arizona.png" data-holder-rendered="true" style="height: 100%; width: 100%; display: block;">
<div class="caption">
<h3>Arizona <em>▲2</em></h3>
<h4>90.5 points</h4>
<h5>Top Teams:</h5>
<p>1011 CRUSH (38)</p>
<p>64 Gila Monsters (19)</p>
<p>60 Bionic Bulldogs (18)</p>
<p>3944 All Knights (8)</p>
<p>36314 DM Robotics (Wolf Pack) (7.5)</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<img alt="100%x200" data-src="holder.js/100%x200" src="img/locations/georgia.png" data-holder-rendered="true" style="height: 100%; width: 100%; display: block;">
<div class="caption">
<h3>Georgia <em>▲12</em></h3>
<h4>77.5 points</h4>
<h5>Top Teams:</h5>
<p>2415 WiredCats (22)</p>
<p>1139 The Chamblee Gear Grinders (18)</p>
<p>4188 Columbus Space Program (17)</p>
<p>4910 East Cobb Robotics (15)</p>
<p>4112 EagleBots (5.5)</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<img alt="100%x200" data-src="holder.js/100%x200" src="img/locations/wisconsin.png" data-holder-rendered="true" style="height: 100%; width: 100%; display: block;">
<div class="caption">
<h3>Wisconsin</h3>
<h4>74 points</h4>
<h5>Top Teams:</h5>
<p>2826 Wave Robotics (38)</p>
<p>2194 Fondy Fire (36)</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<img alt="100%x200" data-src="holder.js/100%x200" src="img/locations/missouri.png" data-holder-rendered="true" style="height: 100%; width: 100%; display: block;">
<div class="caption">
<h3>Missouri <em>▲3</em></h3>
<h4>66 points</h4>
<h5>Top Teams:</h5>
<p>1986 Team Titanium (66)</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<img alt="100%x200" data-src="holder.js/100%x200" src="img/locations/hawaii.png" data-holder-rendered="true" style="height: 100%; width: 100%; display: block;">
<div class="caption">
<h3>Hawaii</h3>
<h4>60 points</h4>
<h5>Top Teams:</h5>
<p>368 Team Kika Mana (30)</p>
<p>359 Hawaiian Kids (30)</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<img alt="100%x200" data-src="holder.js/100%x200" src="img/locations/arkansas.png" data-holder-rendered="true" style="height: 100%; width: 100%; display: block;">
<div class="caption">
<h3>Arkansas</h3>
<h4>58 points</h4>
<h5>Top Teams:</h5>
<p>16 Bomb Squad (58)</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<img alt="100%x200" data-src="holder.js/100%x200" src="img/locations/idaho.png" data-holder-rendered="true" style="height: 100%; width: 100%; display: block;">
<div class="caption">
<h3>Idaho <em>▲6</em></h3>
<h4>56 points</h4>
<h5>Top Teams:</h5>
<p>2122 Team Tators (56)</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<img alt="100%x200" data-src="holder.js/100%x200" src="img/locations/newham.png" data-holder-rendered="true" style="height: 100%; width: 100%; display: block;">
<div class="caption">
<h3>New Hampshire <em>▲4</em></h3>
<h4>48 points</h4>
<h5>Top Teams:</h5>
<p>1058 PVC Pirates (20)</p>
<p>1519 Mechanical Mayhem (19)</p>
<p>3467 Windham Windup (9)</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<img alt="100%x200" data-src="holder.js/100%x200" src="img/locations/minnesota.png" data-holder-rendered="true" style="height: 100%; width: 100%; display: block;">
<div class="caption">
<h3>Minnesota</h3>
<h4>42.5 points</h4>
<h5>Top Teams:</h5>
<p>2052 KnightKrawler (26)</p>
<p>2512 Duluth East Daredevils (9.5)</p>
<p>2526 Crimson Robotics (7)</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<img alt="100%x200" data-src="holder.js/100%x200" src="img/locations/northc.png" data-holder-rendered="true" style="height: 100%; width: 100%; display: block;">
<div class="caption">
<h3>North Carolina</h3>
<h4>36.5 points</h4>
<h5>Top Teams:</h5>
<p>435 Robodogs (20)</p>
<p>900 The Zebracorns (9)</p>
<p>4828 RoboEagles (7.5)</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<img alt="100%x200" data-src="holder.js/100%x200" src="img/locations/rhodeisland.png" data-holder-rendered="true" style="height: 100%; width: 100%; display: block;">
<div class="caption">
<h3>Rhode Island</h3>
<h4>36 points</h4>
<h5>Top Teams:</h5>
<p>121 Rhode Warriors (36)</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<img alt="100%x200" data-src="holder.js/100%x200" src="img/locations/virginia.png" data-holder-rendered="true" style="height: 100%; width: 100%; display: block;">
<div class="caption">
<h3>Virginia</h3>
<h4>34.5 points <em>▲3</em></h4>
<h5>Top Teams:</h5>
<p>384 Sparky 384 (16)</p>
<p>1086 Blue Cheese (10)</p>
<p>2363 Triple Helix (8.5)</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<img alt="100%x200" data-src="holder.js/100%x200" src="img/locations/maine.jpg" data-holder-rendered="true" style="height: 100%; width: 100%; display: block;">
<div class="caption">
<h3>Maine</h3>
<h4>28 points</h4>
<h5>Top Teams:</h5>
<p>5687 The Outliers (28)</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<img alt="100%x200" data-src="holder.js/100%x200" src="img/locations/australia.png" data-holder-rendered="true" style="height: 100%; width: 100%; display: block;">
<div class="caption">
<h3>Australia</h3>
<h4>28 points</h4>
<h5>Top Teams:</h5>
<p>3132 Thunder Down Under (28)</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<img alt="100%x200" data-src="holder.js/100%x200" src="img/locations/tenn.png" data-holder-rendered="true" style="height: 100%; width: 100%; display: block;">
<div class="caption">
<h3>Tennessee</h3>
<h4>19 points</h4>
<h5>Top Teams:</h5>
<p>4265 Secret City Wildbots (19)</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<img alt="100%x200" data-src="holder.js/100%x200" src="img/locations/southcarolina.png" data-holder-rendered="true" style="height: 100%; width: 100%; display: block;">
<div class="caption">
<h3>South Carolina</h3>
<h4>18 points</h4>
<h5>Top Teams:</h5>
<p>319 Flash (18)</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<img alt="100%x200" data-src="holder.js/100%x200" src="img/locations/mississippi.png" data-holder-rendered="true" style="height: 100%; width: 100%; display: block;">
<div class="caption">
<h3>Mississippi</h3>
<h4>18 points</h4>
<h5>Top Teams:</h5>
<p>364 Team Fusion (18)</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<img alt="100%x200" data-src="holder.js/100%x200" src="img/locations/wvirginia.png" data-holder-rendered="true" style="height: 100%; width: 100%; display: block;">
<div class="caption">
<h3>West Virginia</h3>
<h4>15 points</h4>
<h5>Top Teams:</h5>
<p>337 Hard Working Hard Hats (15)</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<img alt="100%x200" data-src="holder.js/100%x200" src="img/locations/oregon.png" data-holder-rendered="true" style="height: 100%; width: 100%; display: block;">
<div class="caption">
<h3>Oregon</h3>
<h4>9 points</h4>
<h5>Top Teams:</h5>
<p>2990 Hotwire (9)</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<img alt="100%x200" data-src="holder.js/100%x200" src="img/locations/maryland.png" data-holder-rendered="true" style="height: 100%; width: 100%; display: block;">
<div class="caption">
<h3>Maryland</h3>
<h4>6 points</h4>
<h5>Top Teams:</h5>
<p>2537 Space RAIDers (6)</p>
</div>
</div>
</div>
</div>
</span>
</div>
</div>
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- frclegends -->
<ins class="adsbygoogle"
style="display:inline-block;width:728px;height:90px"
data-ad-client="ca-pub-2645219985592513"
data-ad-slot="2107797367"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</div>
</section>
<!-- Points -->
<section id="points">
<div class="contianer">
<div class="row">
<div class="col-lg-12 text-center">
<h2>How it works</h2>
<hr class="star-primary">
<p>Points are awarded based of placements during the Einstein matches of the world championship, multiple placements are summed up to create a team's score. Location scores are the sum of all teams from that state. Teams that are a Captain or 1st Pick recieve double the points originally awarded. The points per placement are defined by the table below. Points don't fully reflect a team's ability as many other factors go into how a team places at worlds. To attend and then reach Einstein at the world championship already displays that they are a legendary team.</p>
<table align="center" style="width:25%">
<tr>
<th>Placement</th>
<th>Points</th>
</tr>
<tr>
<td>1st Place Alliance (Captain/1st Pick)</td>
<td>40</td>
</tr>
<tr>
<td>2nd Place Alliance (Captain/1st Pick)</td>
<td>38</td>
</tr>
<tr>
<td>3rd Place Alliance (Captain/1st Pick)</td>
<td>36</td>
</tr>
<tr>
<td>4th Place Alliance (Captain/1st Pick)</td>
<td>34</td>
</tr>
<tr>
<td>5th Place Alliance (Captain/1st Pick)</td>
<td>32</td>
</tr>
<tr>
<td>6th Place Alliance (Captain/1st Pick)</td>
<td>30</td>
</tr>
<tr>
<td>7th Place Alliance (Captain/1st Pick)</td>
<td>28</td>
</tr>
<tr>
<td>8th Place Alliance (Captain/1st Pick)</td>
<td>26</td>
</tr>
<tr>
<td>9th Place Alliance (Captain/1st Pick)</td>
<td>24</td>
</tr>
<tr>
<td>10th Place Alliance (Captain/1st Pick)</td>
<td>22</td>
</tr>
<tr>
<td>11th Place Alliance (Captain/1st Pick)</td>
<td>20</td>
</tr>
<tr>
<td>1st Place Alliance (2nd Pick)</td>
<td>20</td>
</tr>
<tr>
<td>2nd Place Alliance (2nd Pick)</td>
<td>19</td>
</tr>
<tr>
<td>12th Place Alliance (Captain/1st Pick)</td>
<td>18</td>
</tr>
<tr>
<td>3rd Place Alliance (2nd Pick)</td>
<td>18</td>
</tr>
<tr>
<td>4th Place Alliance (2nd Pick)</td>
<td>17</td>
</tr>
<tr>
<td>5th Place Alliance (2nd Pick)</td>
<td>16</td>
</tr>
<tr>
<td>6th Place Alliance (2nd Pick)</td>
<td>15</td>
</tr>
<tr>
<td>7th Place Alliance (2nd Pick)</td>
<td>14</td>
</tr>
<tr>
<td>8th Place Alliance (2nd Pick)</td>
<td>13</td>
</tr>
<tr>
<td>9th Place Alliance (2nd Pick)</td>
<td>12</td>
</tr>
<tr>
<td>10th Place Alliance (2nd Pick)</td>
<td>11</td>
</tr>
<tr>
<td>11th Place Alliance (2nd Pick)</td>
<td>10</td>
</tr>
<tr>
<td>1st Place Alliance (3rd Pick)</td>
<td>10</td>
</tr>
<tr>
<td>2nd Place Alliance (3rd Pick)</td>
<td>9.5</td>
</tr>
<tr>
<td>12th Place Alliance (2nd Pick)</td>
<td>9</td>
</tr>
<tr>
<td>3rd Place Alliance (3rd Pick)</td>
<td>9</td>
</tr>
<tr>
<td>4th Place Alliance (3rd Pick)</td>
<td>8.5</td>
</tr>
<tr>
<td>5th Place Alliance (3rd Pick)</td>
<td>8</td>
</tr>
<tr>
<td>6th Place Alliance (3rd Pick)</td>
<td>7.5</td>
</tr>
<tr>
<td>7th Place Alliance (3rd Pick)</td>
<td>7</td>
</tr>
<tr>
<td>8th Place Alliance (3rd Pick)</td>
<td>6.5</td>
</tr>
<tr>
<td>9th Place Alliance (3rd Pick)</td>
<td>6</td>
</tr>
<tr>
<td>10th Place Alliance (3rd Pick)</td>
<td>5.5</td>
</tr>
<tr>
<td>11th Place Alliance (3rd Pick)</td>
<td>5</td>
</tr>
<tr>
<td>12th Place Alliance (3rd Pick)</td>
<td>4.5</td>
</tr>
</table>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section class="success" id="contact">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2>Contact Me</h2>
<hr class="star-light">
<p>See any issues or have a missing team logo. Send me an email at [email protected] or message me at /u/jspspike</p>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="text-center">
<div class="footer-above">
<div class="container">
<div class="row">
<div class="footer-col col-md-4">
</div>
<div class="footer-col col-md-4">
<h3>Around the Web</h3>
<ul class="list-inline">
<li>
<a href="https://twitter.com/jspspike2" class="btn-social btn-outline"><i class="fa fa-fw fa-twitter"></i></a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="footer-below">
</div>
</footer>
<!-- Scroll to Top Button (Only visible on small and extra-small screen sizes) -->
<div class="scroll-top page-scroll hidden-sm hidden-xs hidden-lg hidden-md">
<a class="btn btn-primary" href="#page-top">
<i class="fa fa-chevron-up"></i>
</a>
</div>
<!-- Portfolio Modals -->
<div class="portfolio-modal modal fade" id="2017Modal" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<h2>World Championship 2017</h2>
<h4>Steamworks</h4>
<h5>Manchester, NH</h5>
<hr class="star-primary">
<img style="" src="img/events/2017.png" class="img-responsive img-centered" alt="">
<p>1st<br/>
2767 Stryke Force (MI)<br/>
254 The Cheesy Poofs (CA)<br/>
862 Lightning Robotics (MI)<br/>
1676 The Pascack PI-oneers (NJ)<br/>
<br/>
2nd<br/>
973 Greybots (CA)<br/>
1011 CRUSH (AZ)<br/>
2928 Viking Robotics (WA)<br/>
5499 The Bay Orangutans (CA)<br/>
<br/>
3rd<br/>
1986 Team Titanium (MO)<br/>
3310 Black Hawk Robotics (TX)<br/>
302 The Dragons (MI)<br/>
3719 STEM Whalers (CT)<br/>
<br/>
4th<br/>
118 Robonauts (TX)<br/>
1678 Citrus Circuits (CA)<br/>
4188 Columbus Space Program (GA)<br/>
5892 Energy HEROs (TX)<br/>
<br/>
5th<br/>
2056 OP Robotics (Canada)<br/>
1241 THEORY6 (Canada)<br/>
384 Sparky 384 (VA)<br/>
1511 Rolling Thunder (NY)<br/>
<br/>
6th<br/>
2122 Team Tators (ID)<br/>
987 HIGHROLLERS (NV)<br/>
4910 East Cobb Robotics (GA)<br/>
6314 DM Robotics (Wolf Pack) (AZ)<br/>
<br/>
7th<br/>
125 NUTRONs (MA)<br/>
5687 The Outliers (ME)<br/>
1796 RoboTigers (NY)<br/>
597 The Wolverines (CA)<br/>
<br/>
8th<br/>
604 Quixilver (CA)<br/>
2848 ALL SPARKS (TX)<br/>
1868 Space Cookies (CA)<br/>
2903 NeoBots (WA)<br/>
<br/>
9th<br/>
3452 GreengineerZ (MI)<br/>
3683 Team Dave (Canada)<br/>
2084 Robots by the C (MA)<br/>
2537 Space RAIDers (MD)<br/>
<br/>
10th<br/>
5654 Phoenix (Israel)<br/>
2415 WiredCats (GA)<br/>
2630 Thunderbolts (Israel)<br/>
4112 EagleBots (GA)<br/>
<br/>
11th<br/>
1058 PVC Pirates (NH)<br/>
67 The HOT Team (MI)<br/>
1640 Sab-BOT-age (PA)<br/>
2137 TORC (MI)<br/>
<br/>
12th<br/>
1318 Issaquah Robotics Society (WA)<br/>
2046 Bear Metal (WA)<br/>
1595 The Dragons (WA)<br/>
2907 Lion Robotics (WA)<br/>
</p>
<button type="button" class="btn btn-default" data-dismiss="modal"><i class="fa fa-times"></i> Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="portfolio-modal modal fade" id="2016Modal" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<h2>World Championship 2016</h2>
<h4>Stronghold</h4>
<h5>St. Louis, MO</h5>
<hr class="star-primary">
<img style="" src="img/events/2016.jpg" class="img-responsive img-centered" alt="">
<p>1st<br/>
330 The Beach Bots (CA)<br/>
2481 Roboteers (IL)<br/>
120 Cleveland's Team (OH)<br/>
1086 Blue Cheese (VA)<br/>
<br/>
2nd<br/>
2056 OP Robotics (Canada)<br/>
1690 Orbit (Israel)<br/>
3015 Ranger Robotics (NY)<br/>
1405 Finney Falcons (NY)<br/>
<br/>
3rd<br/>
148 Robowranglers (TX)<br/>
1678 Citrus Circuits (CA)<br/>
364 Team Fusion (MS)<br/>
2990 Hotwire (OR)<br/>
<br/>
4th<br/>
195 CyberKnights (CT)<br/>
987 HIGHROLLERS (NV)<br/>
1197 TorBots (CA)<br/>
1065 The Moose (FL)<br/>
<br/>
5th<br/>
694 StuyPulse (NY)<br/>
3339 BumbleB (Israel)<br/>
379 RoboCats (OH)<br/>
1511 Rolling Thunder (NY)<br/>
<br/>
6th<br/>
1501 Team THRUST (IN)<br/>
1986 Team Titanium (MO)<br/>
5050 Cow Town Robotics (MI)<br/>
4828 RoboEagles (NC)<br/>
<br/>
7th<br/>
217 ThunderChickens (MI)<br/>
3476 Code Orange (CA)<br/>
4678 CyberCavs (Canada)<br/>
188 Blizzard (Canada)<br/>
<br/>
8th<br/>
2122 Team Tators (ID)<br/>
2052 KnightKrawler (MN)<br/>
3538 RoboJackets (MI)<br/>
41 RoboWarriors (NJ)<br/>
</p>
<button type="button" class="btn btn-default" data-dismiss="modal"><i class="fa fa-times"></i> Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="portfolio-modal modal fade" id="2015Modal" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<h2>World Championship 2015</h2>
<h4>Recycle Rush</h4>
<h5>St.Louis, MO</h5>
<hr class="star-primary">
<img src="img/events/2015.jpg" class="img-responsive img-centered" alt="">
<p>1st<br/>
118 Robonauts (TX)<br/>
1678 Citrus Circuits (CA)<br/>
1671 Buchanan Bird Brains (CA)<br/>
5012 Gryffingear (CA)<br/>
<br/>
2nd<br/>
987 HIGHROLLERS (NV)<br/>
2826 Wave Robotics (WI)<br/>
4265 Secret City Wildbots (TN)<br/>
2512 Duluth East Daredevils (MN)<br/>
<br/>
3rd<br/>
148 Robowranglers (TX)<br/>
1114 Simbotics (Canada)<br/>
1923 The MidKnight Inventors (NJ)<br/>
900 The Zebracorns (NC)<br/>
<br/>
4th<br/>
1023 Bedford Express (MI)<br/>
2338 Gear It Forward (IL)<br/>
3996 RIKITIK (Canada)<br/>
1089 Team Mercury (NJ)<br/>
<br/>
5th<br/>
2056 OP Robotics (Canada)<br/>
330 The Beach Bots (CA)<br/>
492 Titan Robotics Club (WA)<br/>
3944 All Knights (AZ)<br/>
<br/>
6th<br/>
368 Team Kika Mana (HI)<br/>
359 Hawaiian Kids (HI)<br/>
337 Hard Working Hard Hats (WV)<br/>
144 The R.O.C.K (OH)<br/>
<br/>
7th<br/>
3132 Thunder Down Under (Australia)<br/>
3476 Code Orange (CA)<br/>
1255 Blarglefish (TX)<br/>
2526 Crimson Robotics (MN)<br/>
<br/>
8th<br/>
1325 Inverse Paradox (Canada)<br/>
3339 BumbleB (Israel)<br/>
20 The Rocketeers (NY)<br/>
1711 Raptors (MI)<br/>
</p>
<button type="button" class="btn btn-default" data-dismiss="modal"><i class="fa fa-times"></i> Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="portfolio-modal modal fade" id="2014Modal" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<h2>World Championship 2014</h2>
<h4>Aerial Assist</h4>
<h5>St.Louis, MO</h5>
<hr class="star-primary">
<img src="img/events/2014.jpg" class="img-responsive img-centered" alt="">
<p>1st<br/>
254 The Cheesy Poofs (CA)<br/>
469 Las Guerrillas (MI)<br/>
2848 ALL SPARKS (TX)<br/>
74 Team C.H.A.O.S. (MI)<br/>
<br/>
2nd<br/>
1678 Citrus Circuits (CA)<br/>
1114 Simbotics (Canada)<br/>
1640 Sab-BOT-age (PA)<br/>
5136 Mechapirates (CA)<br/>
<br/>
3rd<br/>
2590 Nemesis (MI)<br/>
1625 Winnovation (IL)<br/>
1477 Texas Torque (TX)<br/>
3467 Windham Windup (NH)<br/>
<br/>
4th<br/>
67 The HOT Team (MI)<br/>
973 Greybots (CA)<br/>
2481 Roboteers (IL)<br/>
2363 Triple Helix (VA)<br/>
</p>
<button type="button" class="btn btn-default" data-dismiss="modal"><i class="fa fa-times"></i> Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="portfolio-modal modal fade" id="2013Modal" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<h2>World Championship 2013</h2>
<h4>Ultimate Ascent</h4>
<h5>St.Louis, MO</h5>
<hr class="star-primary">
<img src="img/events/2013.jpg" class="img-responsive img-centered" alt="">
<p>1st<br/>
1477 Texas Torque (TX)<br/>
1241 THEORY6 (Canada)<br/>
610 Crescent Robotics (Canada)<br/>
<br/>
2nd<br/>
33 Killer Bees (MI)<br/>
469 Las Guerrillas (MI)<br/>
1519 Mechanical Mayhem (NH)<br/>
<br/>
3rd<br/>
303 The T.E.S.T. Team (NJ)<br/>
3476 Code Orange (CA)<br/>
1640 Sab-BOT-age (PA)<br/>
<br/>
4th<br/>
1678 Citrus Circuits (CA)<br/>
148 Robowranglers (TX)<br/>
862 Lightning Robotics (MI)<br/>
</p>
<button type="button" class="btn btn-default" data-dismiss="modal"><i class="fa fa-times"></i> Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="portfolio-modal modal fade" id="2012Modal" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<h2>World Championship 2012</h2>
<h4>Rebound Rumble</h4>
<h5>St.Louis, MO</h5>
<hr class="star-primary">
<img src="img/events/2012.jpg" class="img-responsive img-centered" alt="">
<p>1st<br/>
180 S.P.A.M. (FL)<br/>
25 Raider Robotix (NJ)<br/>
16 Bomb Squad (AR)<br/>
<br/>
2nd<br/>
233 The Pink Team (FL)<br/>
987 HIGHROLLERS (NV)<br/>
207 METALCRAFTERS (CA)<br/>
<br/>
3rd<br/>
2194 Fondy Fire (WI)<br/>
118 Robonauts (TX)<br/>
548 Robostangs (MI)<br/>
<br/>
4th<br/>
2056 OP Robotics (Canada)<br/>
1114 Simbotics (Canada)<br/>
4334 Alberta Tech Alliance (Canada)<br/>
<button type="button" class="btn btn-default" data-dismiss="modal"><i class="fa fa-times"></i> Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="portfolio-modal modal fade" id="2011Modal" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<h2>World Championship 2011</h2>
<h4>Logomotion</h4>
<h5>St. Louis, MO</h5>
<hr class="star-primary">
<img src="img/events/2011.jpg" class="img-responsive img-centered" alt="">
<p>1st<br/>
254 The Cheesy Poofs (CA)<br/>
111 WildStang (IL)<br/>
973 Greybots (CA)<br/>
<br/>
2nd<br/>
2016 Mighty Monkey Wrenches (NJ)<br/>
177 Bobcat Robotics (CT)<br/>
781 Kinetic Knights (Canada)<br/>
<br/>
3rd<br/>
217 ThunderChickens (MI)<br/>
1503 Spartonics (Canada)<br/>
25 Raider Robotix (NJ)<br/>
<br/>
4th<br/>
987 HIGHROLLERS (NV)<br/>
968 RAWC (Robotics Alliance Of West Covina) (CA)<br/>
51 Wings of Fire (MI)<br/>
<button type="button" class="btn btn-default" data-dismiss="modal"><i class="fa fa-times"></i> Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="portfolio-modal modal fade" id="2010Modal" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<h2>World Championship 2010</h2>
<h4>Breakaway</h4>
<h5>Atlanta, GA</h5>
<hr class="star-primary">
<img src="img/events/2010.jpg" class="img-responsive img-centered" alt="">
<p>1st<br/>
294 Beach Cities Robotics (CA)<br/>
67 The HOT Team (MI)<br/>
177 Bobcat Robotics (CT)<br/>
<br/>
2nd<br/>
1114 Simbotics (Canada)<br/>
469 Las Guerrillas (MI)<br/>
2041 (RC)2 (IL)<br/>
<br/>
3rd<br/>
1625 Winnovation (IL)<br/>
2056 OP Robotics (Canada)<br/>
3138 Innovators Robotics (OH)<br/>
<br/>
4th<br/>
254 The Cheesy Poofs (CA)<br/>
233 The Pink Team (FL)<br/>
3357 COMETS (MI)<br/>
<button type="button" class="btn btn-default" data-dismiss="modal"><i class="fa fa-times"></i> Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="portfolio-modal modal fade" id="2009Modal" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<h2>World Championship 2009</h2>
<h4>Lunacy</h4>
<h5>Atlanta, GA</h5>
<hr class="star-primary">
<img src="img/events/2009.jpg" class="img-responsive img-centered" alt="">
<p>1st<br/>
111 WildStang (IL)<br/>
67 The HOT Team (MI)<br/>
971 Spartan Robotics (CA)<br/>
<br/>
2nd<br/>
217 ThunderChickens (MI)<br/>
68 Truck Town Thunder (MI)<br/>
247 Da Bears (MI)<br/>
<br/>
3rd<br/>
1507 Warlocks (NY)<br/>
121 Rhode Warriors (RI)<br/>
177 Bobcat Robotics (CT)<br/>
<br/>
4th<br/>
222 Tigertrons (PA)<br/>
1218 Vulcan Robotics (PA)<br/>
2753 Team Overdrive (NJ)<br/>
<button type="button" class="btn btn-default" data-dismiss="modal"><i class="fa fa-times"></i> Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="portfolio-modal modal fade" id="2008Modal" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<h2>World Championship 2008</h2>
<h4>Overdrive</h4>
<h5>Atlanta, GA</h5>
<hr class="star-primary">
<img src="img/events/2008.jpg" class="img-responsive img-centered" alt="">
<p>1st<br/>
1114 Simbotics (Canada)<br/>
217 ThunderChickens (MI)<br/>
148 Robowranglers (TX)<br/>
<br/>
2nd<br/>
67 The HOT Team (MI)<br/>
16 Bomb Squad (AR)<br/>
348 Norwell Robotics (MA)<br/>
<br/>
3rd<br/>
968 RAWC (Robotics Alliance Of West Covina) (CA)<br/>
233 The Pink Team (FL)<br/>
60 Bionic Bulldogs (AZ)<br/>
<br/>
4th<br/>
1124 UberBots (CT)<br/>
1024 Kil-A-Bytes (IN)<br/>
177 Bobcat Robotics (CT)<br/>
<button type="button" class="btn btn-default" data-dismiss="modal"><i class="fa fa-times"></i> Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="portfolio-modal modal fade" id="2007Modal" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<h2>World Championship 2007</h2>
<h4>Rack 'n Roll</h4>
<h5>Atlanta, GA</h5>
<hr class="star-primary">
<img src="img/events/2007.jpg" class="img-responsive img-centered" alt="">
<p>1st<br/>
190 Gompei and the H.E.R.D. (MA)<br/>
987 HIGHROLLERS (NV)<br/>
177 Bobcat Robotics (CT)<br/>
<br/>
2nd<br/>
233 The Pink Team (FL)<br/>
179 Children of the Swamp (FL)<br/>
71 Team Hammond (IN)<br/>
<br/>
3rd<br/>
173 RAGE Robotics (CT)<br/>
1902 Exploding Bacon (FL)<br/>
1319 Flash (SC)<br/>
<br/>
4th<br/>
330 The Beach Bots (CA)<br/>
910 The Foley Freeze (MI)<br/>
1270 Red Dragons (OH)<br/>
<button type="button" class="btn btn-default" data-dismiss="modal"><i class="fa fa-times"></i> Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="portfolio-modal modal fade" id="2006Modal" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<h2>World Championship 2006</h2>
<h4>Aim High</h4>
<h5>Atlanta, GA</h5>
<hr class="star-primary">
<img src="img/events/2006.jpg" class="img-responsive img-centered" alt="">
<p>1st<br/>
296 Northern Knights (Canada)<br/>
217 ThunderChickens (MI)<br/>
522 ROBO WIZARDS (NY)<br/>
<br/>
2nd<br/>
25 Raider Robotix (NJ)<br/>
968 RAWC (Robotics Alliance Of West Covina) (CA)<br/>
195 CyberKnights (CT)<br/>
<br/>
3rd<br/>
503 Frog Force (MI)<br/>
451 The Cat Attack (OH)<br/>
1139 The Chamblee Gear Grinders (GA)<br/>
<br/>
4th<br/>
177 Bobcat Robotics (CT)<br/>
1126 SPARX (NY)<br/>
201 The FEDS (MA)<br/>
<button type="button" class="btn btn-default" data-dismiss="modal"><i class="fa fa-times"></i> Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="portfolio-modal modal fade" id="2005Modal" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<h2>World Championship 2005</h2>
<h4>Triple Play</h4>
<h5>Atlanta, GA</h5>
<hr class="star-primary">
<img src="img/events/2005.jpg" class="img-responsive img-centered" alt="">
<p>1st<br/>
330 The Beach Bots (CA)<br/>
67 The HOT Team (MI)<br/>
503 Frog Force (MI)<br/>
<br/>
2nd<br/>
56 R.O.B.B.E. (NJ)<br/>
254 The Cheesy Poofs (CA)<br/>
64 Gila Monsters (AZ)<br/>
<br/>
3rd<br/>
245 Adambots (MI)<br/>
217 ThunderChickens (MI)<br/>
766 M-A Bears (CA)<br/>
<br/>
4th<br/>
175 Buzz Robotics (CT)<br/>
33 Killer Bees (MI)<br/>
108 SigmaC@T (FL)<br/>
<button type="button" class="btn btn-default" data-dismiss="modal"><i class="fa fa-times"></i> Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="portfolio-modal modal fade" id="2004Modal" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<h2>World Championship 2004</h2>
<h4>Raising the Bar</h4>
<h5>Atlanta, GA</h5>
<hr class="star-primary">
<img src="img/events/2004.jpg" class="img-responsive img-centered" alt="">
<p>1st<br/>
71 Team Hammond (IN)<br/>
494 Martians (MI)<br/>
435 Robodogs (NC)<br/>
<br/>
2nd<br/>
1218 Vulcan Robotics (PA)<br/>
469 Las Guerrillas (MI)<br/>
868 TechHOUNDS (IN)<br/>
<br/>
3rd<br/>
1038 Lakota Robotics (OH)<br/>
175 Buzz Robotics (CT)<br/>
1388 Eagle Robotics (CA)<br/>
<br/>
4th<br/>
1126 SPARX (NY)<br/>
67 The HOT Team (MI)<br/>
340 G.R.R. (Greater Rochester Robotics) (NY)<br/>
</p>
<button type="button" class="btn btn-default" data-dismiss="modal"><i class="fa fa-times"></i> Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- jQuery -->
<script src="vendor/jquery/jquery.min.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="vendor/bootstrap/js/bootstrap.min.js"></script>
<!-- Plugin JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js"></script>
<!-- Contact Form JavaScript -->
<script src="js/jqBootstrapValidation.js"></script>
<script src="js/contact_me.js"></script>
<!-- Theme JavaScript -->
<script src="js/freelancer.min.js"></script>
<script src="js/readmore.js"></script>
<script src="js/search.js"></script>
<script type="text/javascript" src="js/analytics.js"></script>
</body>
</html>
| jspspike/FRCLegends | index.html | HTML | mit | 202,828 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Ember.ProxyMixin - The cros-admin API</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="The cros-admin API" width="117" height="52"></h1>
</div>
<div class="yui3-u-1-4 version">
<em>API Docs for: 1.0.0</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/Backburner.html">Backburner</a></li>
<li><a href="../classes/DAG.html">DAG</a></li>
<li><a href="../classes/DS.html">DS</a></li>
<li><a href="../classes/DS.ActiveModelAdapter.html">DS.ActiveModelAdapter</a></li>
<li><a href="../classes/DS.ActiveModelSerializer.html">DS.ActiveModelSerializer</a></li>
<li><a href="../classes/DS.Adapter.html">DS.Adapter</a></li>
<li><a href="../classes/DS.AdapterPopulatedRecordArray.html">DS.AdapterPopulatedRecordArray</a></li>
<li><a href="../classes/DS.BooleanTransform.html">DS.BooleanTransform</a></li>
<li><a href="../classes/DS.ContainerProxy.html">DS.ContainerProxy</a></li>
<li><a href="../classes/DS.DateTransform.html">DS.DateTransform</a></li>
<li><a href="../classes/DS.DebugAdapter.html">DS.DebugAdapter</a></li>
<li><a href="../classes/DS.EmbeddedRecordsMixin.html">DS.EmbeddedRecordsMixin</a></li>
<li><a href="../classes/DS.Errors.html">DS.Errors</a></li>
<li><a href="../classes/DS.FilteredRecordArray.html">DS.FilteredRecordArray</a></li>
<li><a href="../classes/DS.FixtureAdapter.html">DS.FixtureAdapter</a></li>
<li><a href="../classes/DS.InvalidError.html">DS.InvalidError</a></li>
<li><a href="../classes/DS.JSONSerializer.html">DS.JSONSerializer</a></li>
<li><a href="../classes/DS.ManyArray.html">DS.ManyArray</a></li>
<li><a href="../classes/DS.Model.html">DS.Model</a></li>
<li><a href="../classes/DS.NumberTransform.html">DS.NumberTransform</a></li>
<li><a href="../classes/DS.PromiseArray.html">DS.PromiseArray</a></li>
<li><a href="../classes/DS.PromiseObject.html">DS.PromiseObject</a></li>
<li><a href="../classes/DS.RecordArray.html">DS.RecordArray</a></li>
<li><a href="../classes/DS.RecordArrayManager.html">DS.RecordArrayManager</a></li>
<li><a href="../classes/DS.RESTAdapter.html">DS.RESTAdapter</a></li>
<li><a href="../classes/DS.RESTSerializer.html">DS.RESTSerializer</a></li>
<li><a href="../classes/DS.RootState.html">DS.RootState</a></li>
<li><a href="../classes/DS.Store.html">DS.Store</a></li>
<li><a href="../classes/DS.StringTransform.html">DS.StringTransform</a></li>
<li><a href="../classes/DS.Transform.html">DS.Transform</a></li>
<li><a href="../classes/Ember.html">Ember</a></li>
<li><a href="../classes/Ember._BoundView.html">Ember._BoundView</a></li>
<li><a href="../classes/Ember._Metamorph.html">Ember._Metamorph</a></li>
<li><a href="../classes/Ember._MetamorphView.html">Ember._MetamorphView</a></li>
<li><a href="../classes/Ember._SimpleMetamorphView.html">Ember._SimpleMetamorphView</a></li>
<li><a href="../classes/Ember.ActionHandler.html">Ember.ActionHandler</a></li>
<li><a href="../classes/Ember.Application.html">Ember.Application</a></li>
<li><a href="../classes/Ember.Array.html">Ember.Array</a></li>
<li><a href="../classes/Ember.ArrayController.html">Ember.ArrayController</a></li>
<li><a href="../classes/Ember.ArrayProxy.html">Ember.ArrayProxy</a></li>
<li><a href="../classes/Ember.AutoLocation.html">Ember.AutoLocation</a></li>
<li><a href="../classes/Ember.Binding.html">Ember.Binding</a></li>
<li><a href="../classes/Ember.Checkbox.html">Ember.Checkbox</a></li>
<li><a href="../classes/Ember.CollectionView.html">Ember.CollectionView</a></li>
<li><a href="../classes/Ember.Comparable.html">Ember.Comparable</a></li>
<li><a href="../classes/Ember.Component.html">Ember.Component</a></li>
<li><a href="../classes/Ember.ComponentTemplateDeprecation.html">Ember.ComponentTemplateDeprecation</a></li>
<li><a href="../classes/Ember.ComputedProperty.html">Ember.ComputedProperty</a></li>
<li><a href="../classes/Ember.ContainerDebugAdapter.html">Ember.ContainerDebugAdapter</a></li>
<li><a href="../classes/Ember.ContainerView.html">Ember.ContainerView</a></li>
<li><a href="../classes/Ember.Controller.html">Ember.Controller</a></li>
<li><a href="../classes/Ember.ControllerContentModelAliasDeprecation.html">Ember.ControllerContentModelAliasDeprecation</a></li>
<li><a href="../classes/Ember.ControllerMixin.html">Ember.ControllerMixin</a></li>
<li><a href="../classes/Ember.Copyable.html">Ember.Copyable</a></li>
<li><a href="../classes/Ember.CoreObject.html">Ember.CoreObject</a></li>
<li><a href="../classes/Ember.CoreView.html">Ember.CoreView</a></li>
<li><a href="../classes/Ember.DataAdapter.html">Ember.DataAdapter</a></li>
<li><a href="../classes/Ember.Date.html">Ember.Date</a></li>
<li><a href="../classes/Ember.DefaultResolver.html">Ember.DefaultResolver</a></li>
<li><a href="../classes/Ember.Deferred.html">Ember.Deferred</a></li>
<li><a href="../classes/Ember.Descriptor.html">Ember.Descriptor</a></li>
<li><a href="../classes/Ember.EachProxy.html">Ember.EachProxy</a></li>
<li><a href="../classes/Ember.Ember.html">Ember.Ember</a></li>
<li><a href="../classes/Ember.Enumerable.html">Ember.Enumerable</a></li>
<li><a href="../classes/Ember.EnumerableUtils.html">Ember.EnumerableUtils</a></li>
<li><a href="../classes/Ember.Error.html">Ember.Error</a></li>
<li><a href="../classes/Ember.EventDispatcher.html">Ember.EventDispatcher</a></li>
<li><a href="../classes/Ember.Evented.html">Ember.Evented</a></li>
<li><a href="../classes/Ember.FEATURES.html">Ember.FEATURES</a></li>
<li><a href="../classes/Ember.Freezable.html">Ember.Freezable</a></li>
<li><a href="../classes/Ember.Handlebars.html">Ember.Handlebars</a></li>
<li><a href="../classes/Ember.Handlebars.helpers.html">Ember.Handlebars.helpers</a></li>
<li><a href="../classes/Ember.HashLocation.html">Ember.HashLocation</a></li>
<li><a href="../classes/Ember.HistoryLocation.html">Ember.HistoryLocation</a></li>
<li><a href="../classes/Ember.HTMLBars.html">Ember.HTMLBars</a></li>
<li><a href="../classes/Ember.HTMLBars.Helper.html">Ember.HTMLBars.Helper</a></li>
<li><a href="../classes/Ember.Inflector.html">Ember.Inflector</a></li>
<li><a href="../classes/Ember.inject.html">Ember.inject</a></li>
<li><a href="../classes/Ember.InjectedProperty.html">Ember.InjectedProperty</a></li>
<li><a href="../classes/Ember.Instrumentation.html">Ember.Instrumentation</a></li>
<li><a href="../classes/Ember.LinkView.html">Ember.LinkView</a></li>
<li><a href="../classes/Ember.Location.html">Ember.Location</a></li>
<li><a href="../classes/Ember.Logger.html">Ember.Logger</a></li>
<li><a href="../classes/Ember.Map.html">Ember.Map</a></li>
<li><a href="../classes/Ember.MapWithDefault.html">Ember.MapWithDefault</a></li>
<li><a href="../classes/Ember.MutableArray.html">Ember.MutableArray</a></li>
<li><a href="../classes/Ember.MutableEnumerable.html">Ember.MutableEnumerable</a></li>
<li><a href="../classes/Ember.Namespace.html">Ember.Namespace</a></li>
<li><a href="../classes/Ember.NativeArray.html">Ember.NativeArray</a></li>
<li><a href="../classes/Ember.NoneLocation.html">Ember.NoneLocation</a></li>
<li><a href="../classes/Ember.Object.html">Ember.Object</a></li>
<li><a href="../classes/Ember.ObjectController.html">Ember.ObjectController</a></li>
<li><a href="../classes/Ember.ObjectProxy.html">Ember.ObjectProxy</a></li>
<li><a href="../classes/Ember.Observable.html">Ember.Observable</a></li>
<li><a href="../classes/Ember.OrderedSet.html">Ember.OrderedSet</a></li>
<li><a href="../classes/Ember.platform.html">Ember.platform</a></li>
<li><a href="../classes/Ember.PromiseProxyMixin.html">Ember.PromiseProxyMixin</a></li>
<li><a href="../classes/Ember.ProxyMixin.html">Ember.ProxyMixin</a></li>
<li><a href="../classes/Ember.ReduceComputedProperty.html">Ember.ReduceComputedProperty</a></li>
<li><a href="../classes/Ember.Route.html">Ember.Route</a></li>
<li><a href="../classes/Ember.Router.html">Ember.Router</a></li>
<li><a href="../classes/Ember.run.html">Ember.run</a></li>
<li><a href="../classes/Ember.Select.html">Ember.Select</a></li>
<li><a href="../classes/Ember.Service.html">Ember.Service</a></li>
<li><a href="../classes/Ember.Set.html">Ember.Set</a></li>
<li><a href="../classes/Ember.SortableMixin.html">Ember.SortableMixin</a></li>
<li><a href="../classes/Ember.String.html">Ember.String</a></li>
<li><a href="../classes/Ember.SubArray.html">Ember.SubArray</a></li>
<li><a href="../classes/Ember.TargetActionSupport.html">Ember.TargetActionSupport</a></li>
<li><a href="../classes/Ember.Test.html">Ember.Test</a></li>
<li><a href="../classes/Ember.Test.Adapter.html">Ember.Test.Adapter</a></li>
<li><a href="../classes/Ember.Test.QUnitAdapter.html">Ember.Test.QUnitAdapter</a></li>
<li><a href="../classes/Ember.TextArea.html">Ember.TextArea</a></li>
<li><a href="../classes/Ember.TextField.html">Ember.TextField</a></li>
<li><a href="../classes/Ember.TextSupport.html">Ember.TextSupport</a></li>
<li><a href="../classes/Ember.TrackedArray.html">Ember.TrackedArray</a></li>
<li><a href="../classes/Ember.View.html">Ember.View</a></li>
<li><a href="../classes/Ember.ViewTargetActionSupport.html">Ember.ViewTargetActionSupport</a></li>
<li><a href="../classes/Function.html">Function</a></li>
<li><a href="../classes/HandlebarsCompatibleHelper.html">HandlebarsCompatibleHelper</a></li>
<li><a href="../classes/Libraries.html">Libraries</a></li>
<li><a href="../classes/RSVP.html">RSVP</a></li>
<li><a href="../classes/RSVP.EventTarget.html">RSVP.EventTarget</a></li>
<li><a href="../classes/RSVP.Promise.html">RSVP.Promise</a></li>
<li><a href="../classes/String.html">String</a></li>
<li><a href="../classes/TransformEachInToHash.html">TransformEachInToHash</a></li>
<li><a href="../classes/TransformWithAsToHash.html">TransformWithAsToHash</a></li>
<li><a href="../classes/Vertex.html">Vertex</a></li>
</ul>
<ul id="api-modules" class="apis modules">
<li><a href="../modules/ember.html">ember</a></li>
<li><a href="../modules/ember-application.html">ember-application</a></li>
<li><a href="../modules/ember-data.html">ember-data</a></li>
<li><a href="../modules/ember-debug.html">ember-debug</a></li>
<li><a href="../modules/ember-extension-support.html">ember-extension-support</a></li>
<li><a href="../modules/ember-handlebars.html">ember-handlebars</a></li>
<li><a href="../modules/ember-htmlbars.html">ember-htmlbars</a></li>
<li><a href="../modules/ember-metal.html">ember-metal</a></li>
<li><a href="../modules/ember-routing.html">ember-routing</a></li>
<li><a href="../modules/ember-routing-handlebars.html">ember-routing-handlebars</a></li>
<li><a href="../modules/ember-routing-htmlbars.html">ember-routing-htmlbars</a></li>
<li><a href="../modules/ember-routing-views.html">ember-routing-views</a></li>
<li><a href="../modules/ember-runtime.html">ember-runtime</a></li>
<li><a href="../modules/ember-template-compiler.html">ember-template-compiler</a></li>
<li><a href="../modules/ember-testing.html">ember-testing</a></li>
<li><a href="../modules/ember-views.html">ember-views</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>Ember.ProxyMixin Class</h1>
<div class="box meta">
<div class="foundat">
Defined in: <a href="../files/js_libs_ember-1.10.0.debug.js.html#l28846"><code>js\libs\ember-1.10.0.debug.js:28846</code></a>
</div>
Module: <a href="../modules/ember-runtime.html">ember-runtime</a><br>
Parent Module: <a href="../modules/ember.html">ember</a>
</div>
<div class="box intro">
<p><code>Ember.ProxyMixin</code> forwards all properties not defined by the proxy itself
to a proxied <code>content</code> object. See Ember.ObjectProxy for more details.</p>
</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 properties"><a href="#properties">Properties</a></li>
</ul>
<div>
<div id="index" class="api-class-tabpanel index">
<h2 class="off-left">Item Index</h2>
<div class="index-section properties">
<h3>Properties</h3>
<ul class="index-list properties">
<li class="index-item property">
<a href="#property_content">content</a>
</li>
</ul>
</div>
</div>
<div id="properties" class="api-class-tabpanel">
<h2 class="off-left">Properties</h2>
<div id="property_content" class="property item">
<h3 class="name"><code>content</code></h3>
<span class="type"><a href="../classes/Ember.Object.html" class="crosslink">Ember.Object</a></span>
<div class="meta">
<p>
Defined in
<a href="../files/js_libs_ember-1.10.0.debug.js.html#l28854"><code>js\libs\ember-1.10.0.debug.js:28854</code></a>
</p>
</div>
<div class="description">
<p>The object whose properties will be forwarded.</p>
</div>
<p><strong>Default:</strong> null</p>
</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>
| ugent-cros/cros-admin | docslibs/classes/Ember.ProxyMixin.html | HTML | mit | 21,331 |
<!DOCTYPE html>
<html lang="id">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="generator" content="Gogon ngeBlog">
<title>Tag: freebsd - Gogon ngeBlog</title>
<meta name="author" content="Gogon">
<link rel="alternate" type="application/atom+xml" title="RSS" href="/atom.xml">
<script type="application/ld+json">{}</script>
<meta name="description" content="Bukan Gogon Srimulat • Pengguna KDE • Progremer Gagal :|">
<meta property="og:type" content="blog">
<meta property="og:title" content="Gogon ngeBlog">
<meta property="og:url" content="http://go2n.github.io/tags/freebsd/index.html">
<meta property="og:site_name" content="Gogon ngeBlog">
<meta property="og:description" content="Bukan Gogon Srimulat • Pengguna KDE • Progremer Gagal :|">
<meta property="og:locale" content="id_ID">
<meta property="article:author" content="Gogon">
<meta name="twitter:card" content="summary">
<meta property="og:image" content="http://go2n.github.io/assets/images/go2n.jpg"/>
<!--STYLES-->
<link rel="stylesheet" href="/assets/css/style-cr6ygx2eptouictmr9m09oubvsh1xi4qunn2yz2xg7umzw0l9spayiq1geeo.min.css">
<!--STYLES END-->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-41394739-3"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-41394739-3');
</script>
</head>
<body>
<div id="blog">
<!-- Define author's picture -->
<header id="header" data-behavior="2">
<i id="btn-open-sidebar" class="fa fa-lg fa-bars"></i>
<div class="header-title">
<a
class="header-title-link"
href="/%20"
aria-label=""
>
Gogon ngeBlog
</a>
</div>
<a
class="header-right-picture "
href="#about"
aria-label="Öffne den Link: /#about"
>
<img class="header-picture" src="/assets/images/go2n.jpg" alt="Penulis"/>
</a>
</header>
<!-- Define author's picture -->
<nav id="sidebar" data-behavior="2">
<div class="sidebar-container">
<div class="sidebar-profile">
<a
href="/#about"
aria-label="Lesen Sie mehr über den Autor"
>
<img class="sidebar-profile-picture" src="/assets/images/go2n.jpg" alt="Penulis"/>
</a>
<h4 class="sidebar-profile-name">Gogon</h4>
<h5 class="sidebar-profile-bio"><p>Bukan Gogon Srimulat • Suka dengan KDE • Programmer Gagal 😐</p>
</h5>
</div>
<ul class="sidebar-buttons">
<li class="sidebar-button">
<a
class="sidebar-button-link "
href="/"
rel="noopener"
title="Beranda"
>
<i class="sidebar-button-icon fa fa-home" aria-hidden="true"></i>
<span class="sidebar-button-desc">Beranda</span>
</a>
</li>
<li class="sidebar-button">
<a
class="sidebar-button-link "
href="/all-categories"
rel="noopener"
title="Kategori"
>
<i class="sidebar-button-icon fa fa-bookmark" aria-hidden="true"></i>
<span class="sidebar-button-desc">Kategori</span>
</a>
</li>
<li class="sidebar-button">
<a
class="sidebar-button-link "
href="/all-tags"
rel="noopener"
title="Tag"
>
<i class="sidebar-button-icon fa fa-tags" aria-hidden="true"></i>
<span class="sidebar-button-desc">Tag</span>
</a>
</li>
<li class="sidebar-button">
<a
class="sidebar-button-link "
href="/all-archives"
rel="noopener"
title="Arsip"
>
<i class="sidebar-button-icon fa fa-archive" aria-hidden="true"></i>
<span class="sidebar-button-desc">Arsip</span>
</a>
</li>
<li class="sidebar-button">
<a
class="sidebar-button-link open-algolia-search"
href="#search"
rel="noopener"
title="Cari"
>
<i class="sidebar-button-icon fa fa-search" aria-hidden="true"></i>
<span class="sidebar-button-desc">Cari</span>
</a>
</li>
<li class="sidebar-button">
<a
class="sidebar-button-link "
href="/about"
rel="noopener"
title="Tentang"
>
<i class="sidebar-button-icon fa fa-question" aria-hidden="true"></i>
<span class="sidebar-button-desc">Tentang</span>
</a>
</li>
</ul>
<ul class="sidebar-buttons">
</ul>
<ul class="sidebar-buttons">
<li class="sidebar-button">
<a
class="sidebar-button-link "
href="/atom.xml"
rel="noopener"
title="RSS"
>
<i class="sidebar-button-icon fa fa-rss" aria-hidden="true"></i>
<span class="sidebar-button-desc">RSS</span>
</a>
</li>
</ul>
</div>
</nav>
<div id="main" data-behavior="2"
class="
hasCoverMetaIn
">
<section class="postShorten-group main-content-wrap">
<article class="postShorten postShorten--thumbnailimg-right">
<div class="postShorten-wrap">
<div class="postShorten-header">
<h1 class="postShorten-title">
<a
class="link-unstyled"
href="/2016/01/05/menambahkan-user-ke-dalam-group-di-freebsd/"
aria-label=": Menambahkan user ke dalam group di FreeBSD"
>
Menambahkan user ke dalam group di FreeBSD
</a>
</h1>
<div class="postShorten-meta">
<time datetime="2016-01-05T00:00:00+07:00">
05 Januari 2016
</time>
<span> | </span>
<a class="category-link" href="/categories/notes/">notes</a>, <a class="category-link" href="/categories/notes/freebsd/">freebsd</a>
</div>
</div>
<div class="postShorten-excerpt">
<blockquote>
<p><em>Sebuah catatan biar nggak lupa perintah menambahkan user ke dalam group di mesin FreeBSD.</em></p>
</blockquote>
<p>Saat selesai setup server FreeBSD saya sering lupa menambahkan user ke dalam group wheel. Masalah datang pas ngremot server dan mau pindah sebagai user root nggak bisa. Telo!</p>
<a
href="/2016/01/05/menambahkan-user-ke-dalam-group-di-freebsd/"
class="postShorten-excerpt_link link"
aria-label=": Menambahkan user ke dalam group di FreeBSD"
>
Selengkapnya
</a>
</div>
</div>
<a
href="/2016/01/05/menambahkan-user-ke-dalam-group-di-freebsd/"
aria-label=": Menambahkan user ke dalam group di FreeBSD"
>
<div class="postShorten-thumbnailimg">
<img alt="" src="https://go2n.github.io/2015/03/12/lupa-password-mysql-di-freebsd/dhemit.png"/>
</div>
</a>
</article>
<article class="postShorten postShorten--thumbnailimg-right">
<div class="postShorten-wrap">
<div class="postShorten-header">
<h1 class="postShorten-title">
<a
class="link-unstyled"
href="/2015/03/12/lupa-password-mysql-di-freebsd/"
aria-label=": Lupa Password Root MySQL di FreeBSD"
>
Lupa Password Root MySQL di FreeBSD
</a>
</h1>
<div class="postShorten-meta">
<time datetime="2015-03-12T00:00:00+07:00">
12 Maret 2015
</time>
<span> | </span>
<a class="category-link" href="/categories/notes/">notes</a>, <a class="category-link" href="/categories/notes/freebsd/">freebsd</a>
</div>
</div>
<div class="postShorten-excerpt">
<blockquote>
<p><em>Sekedar catatan saja saat lupa password root MySQL di mesin FreeBSD.</em></p>
</blockquote>
<p>Ubah /etc/rc.conf, buka komentar pada mysql_args, restart MySQL dan login. Dengan asumsi isi dari mysql_args adalah <code>"--skip-grant-tables --skip-networking"</code></p>
<a
href="/2015/03/12/lupa-password-mysql-di-freebsd/"
class="postShorten-excerpt_link link"
aria-label=": Lupa Password Root MySQL di FreeBSD"
>
Selengkapnya
</a>
</div>
</div>
<a
href="/2015/03/12/lupa-password-mysql-di-freebsd/"
aria-label=": Lupa Password Root MySQL di FreeBSD"
>
<div class="postShorten-thumbnailimg">
<img alt="" src="http://go2n.github.io/2015/03/12/lupa-password-mysql-di-freebsd/dhemit.png"/>
</div>
</a>
</article>
<article class="postShorten postShorten--thumbnailimg-right">
<div class="postShorten-wrap">
<div class="postShorten-header">
<h1 class="postShorten-title">
<a
class="link-unstyled"
href="/2015/02/27/pc-bsd-di-hari-yang-selo/"
aria-label=": PC-BSD di hari yang selo"
>
PC-BSD di hari yang selo
</a>
</h1>
<div class="postShorten-meta">
<time datetime="2015-02-27T00:00:00+07:00">
27 Februari 2015
</time>
<span> | </span>
<a class="category-link" href="/categories/freebsd/">freebsd</a>
</div>
</div>
<div class="postShorten-excerpt">
<p>Wahihihi… Sebenarnya sudah lama punya wacana buat pasang PC-BSD, tapi baru hari rabu kemarin saya selo buat memasang PC-BSD di komputer kantor. Sempat gagal update gara-gara paket <code>gnupg</code> yang konflik, tapi sekarang sudah beres. Hhe 😁</p>
<a
href="/2015/02/27/pc-bsd-di-hari-yang-selo/"
class="postShorten-excerpt_link link"
aria-label=": PC-BSD di hari yang selo"
>
Selengkapnya
</a>
</div>
</div>
<a
href="/2015/02/27/pc-bsd-di-hari-yang-selo/"
aria-label=": PC-BSD di hari yang selo"
>
<div class="postShorten-thumbnailimg">
<img alt="" src="https://go2n.github.io/2015/02/27/pc-bsd-di-hari-yang-selo/pc-bsd-di-hari-yang-selo.png"/>
</div>
</a>
</article>
<article class="postShorten postShorten--thumbnailimg-right">
<div class="postShorten-wrap">
<div class="postShorten-header">
<h1 class="postShorten-title">
<a
class="link-unstyled"
href="/2014/09/10/mengatasi-barcode-generator-slims-di-freebsd/"
aria-label=": Mengatasi masalah barcode generator SLiMS di Mesin FreeBSD 9.1"
>
Mengatasi masalah barcode generator SLiMS di Mesin FreeBSD 9.1
</a>
</h1>
<div class="postShorten-meta">
<time datetime="2014-09-10T00:00:00+07:00">
10 September 2014
</time>
<span> | </span>
<a class="category-link" href="/categories/freebsd/">freebsd</a>
</div>
</div>
<div class="postShorten-excerpt">
<p>Halo…</p>
<p>Ada yang pernah mengalami barcode generator <a target="_blank" rel="noopener" href="http://slims.web.id/">SLiMS</a> yang nge-blank di mesin FreeBSD ndak? Begini permasalahannya, pustakawan Fakultas Teknik meminta saya untuk mengatur masalah barcode yang nge-blank di mesin server dhemit alias FreeBSD. Jadi beliau pada saat mau generate barcode melalui menu <strong>System > Barcode Generator</strong>, SLiMS tidak menampilkan barcode sama sekali.</p>
<a
href="/2014/09/10/mengatasi-barcode-generator-slims-di-freebsd/"
class="postShorten-excerpt_link link"
aria-label=": Mengatasi masalah barcode generator SLiMS di Mesin FreeBSD 9.1"
>
Selengkapnya
</a>
</div>
</div>
<a
href="/2014/09/10/mengatasi-barcode-generator-slims-di-freebsd/"
aria-label=": Mengatasi masalah barcode generator SLiMS di Mesin FreeBSD 9.1"
>
<div class="postShorten-thumbnailimg">
<img alt="" src="https://go2n.github.io/2015/03/12/lupa-password-mysql-di-freebsd/dhemit.png"/>
</div>
</a>
</article>
<div class="pagination-bar">
<ul class="pagination">
<li class="pagination-number">hal 1 / 1</li>
</ul>
</div>
</section>
<footer id="footer" class="main-content-wrap">
<span class="copyrights">
Copyrights © 2020 Gogon. All Rights Reserved.
</span>
</footer>
</div>
</div>
<div id="about">
<div id="about-card">
<div id="about-btn-close">
<i class="fa fa-times"></i>
</div>
<img id="about-card-picture" src="/assets/images/go2n.jpg" alt="Penulis"/>
<h4 id="about-card-name">Gogon</h4>
<div id="about-card-bio"><p>Bukan Gogon Srimulat • Suka dengan KDE • Programmer Gagal 😐</p>
</div>
<div id="about-card-job">
<i class="fa fa-briefcase"></i>
<br/>
<p>Janitor</p>
</div>
<div id="about-card-location">
<i class="fa fa-map-marker-alt"></i>
<br/>
Indonesia
</div>
</div>
</div>
<div id="algolia-search-modal" class="modal-container">
<div class="modal">
<div class="modal-header">
<span class="close-button"><i class="fa fa-times"></i></span>
<a href="https://algolia.com" target="_blank" rel="noopener" class="searchby-algolia text-color-light link-unstyled">
<span class="searchby-algolia-text text-color-light text-small">by</span>
<img class="searchby-algolia-logo" src="/assets/images/logo-algolia-nebula-blue-full.svg">
</a>
<i class="search-icon fa fa-search"></i>
<form id="algolia-search-form">
<input type="text" id="algolia-search-input" name="search"
class="form-control input--large search-input" placeholder="Search "
/>
</form>
</div>
<div class="modal-body">
<div class="no-result text-color-light text-center">0 post ditemukan</div>
<div class="results">
<div class="media">
<div class="media-left">
<a
class="link-unstyled"
href="http://go2n.github.io/2008/11/29/membuat-kamus-dengan-bahasa-c/"
aria-label=": Membuat kamus dengan bahasa C"
>
<img class="media-image" src="http://go2n.github.io/2008/11/29/membuat-kamus-dengan-bahasa-c/./kamus.c.png" width="90" height="90"/>
</a>
</div>
<div class="media-body">
<a
class="link-unstyled"
href="http://go2n.github.io/2008/11/29/membuat-kamus-dengan-bahasa-c/"
aria-label=": Membuat kamus dengan bahasa C"
>
<h3 class="media-heading">Membuat kamus dengan bahasa C</h3>
</a>
<span class="media-meta">
<span class="media-date text-small">
29 Nov 2008
</span>
</span>
<div class="media-content hide-xs font-merryweather"><p>Membuat kamus sendiri? Mungkin nggak ya…? Jawabannya adalah mungkin. Dengan memanfaatkan bahasa C, kompiler GCC dan SQLite 3 beserta pustakanya, kita bisa membuat kamus sendiri. Tak perlu interface yang canggih dan keren, yang penting kamus yang dibuat berguna. Pada contoh ini kamus yang dibuat berjalan pada modus command line. Source code pada contoh ini berdasarkan pada dokumentasi <a target="_blank" rel="noopener" href="http://www.sqlite.org/">SQLite</a>.</p></div>
</div>
<div style="clear:both;"></div>
<hr>
</div>
<div class="media">
<div class="media-left">
<a
class="link-unstyled"
href="http://go2n.github.io/2011/12/11/wicd-kde-plasmoid/"
aria-label=": Wicd KDE Plasmoid!"
>
<img class="media-image" src="http://go2n.github.io/2011/12/11/wicd-kde-plasmoid/./snapshot11.png" width="90" height="90"/>
</a>
</div>
<div class="media-body">
<a
class="link-unstyled"
href="http://go2n.github.io/2011/12/11/wicd-kde-plasmoid/"
aria-label=": Wicd KDE Plasmoid!"
>
<h3 class="media-heading">Wicd KDE Plasmoid!</h3>
</a>
<span class="media-meta">
<span class="media-date text-small">
11 Des 2011
</span>
</span>
<div class="media-content hide-xs font-merryweather"><p>Tadi pagi membaca feed dari <a target="_blank" rel="noopener" href="https://kde-apps.org">https://kde-apps.org</a>, ada berita bahwa Wicd KDE 0.3.0 telah dirilis. Wicd KDE adalah Wicd klien untuk KDE Platform. Apa yang baru dengan Wicd KDE 0.3.0? Pada rilis yang sekarang ini Wicd KDE adalah sebuah plasmoid. Iseng-iseng saya update Wicd KDE melalui AUR, namun ternyata paket dari AUR sudah out of dated. 😦</p></div>
</div>
<div style="clear:both;"></div>
<hr>
</div>
<div class="media">
<div class="media-left">
<a
class="link-unstyled"
href="http://go2n.github.io/2012/01/07/oxygen-font-kde-desktop-font/"
aria-label=": Oxygen Font: KDE Desktop Font"
>
<img class="media-image" src="http://go2n.github.io/2012/01/07/oxygen-font-kde-desktop-font/oxygen1.png" width="90" height="90"/>
</a>
</div>
<div class="media-body">
<a
class="link-unstyled"
href="http://go2n.github.io/2012/01/07/oxygen-font-kde-desktop-font/"
aria-label=": Oxygen Font: KDE Desktop Font"
>
<h3 class="media-heading">Oxygen Font: KDE Desktop Font</h3>
</a>
<span class="media-meta">
<span class="media-date text-small">
7 Jan 2012
</span>
</span>
<div class="media-content hide-xs font-merryweather"><p>Pagi ini membuka akregator dan membaca feeds yang ada. Ada 2 feed yang judulnya menarik perhatian saya:</p></div>
</div>
<div style="clear:both;"></div>
<hr>
</div>
<div class="media">
<div class="media-left">
<a
class="link-unstyled"
href="http://go2n.github.io/2012/04/06/upgrade-kde-dengan-delta-update-di-arch-linux/"
aria-label=": Upgrade KDE dengan Delta Update di Arch Linux"
>
<img class="media-image" src="http://go2n.github.io/2012/04/06/upgrade-kde-dengan-delta-update-di-arch-linux/snapshot29.png" width="90" height="90"/>
</a>
</div>
<div class="media-body">
<a
class="link-unstyled"
href="http://go2n.github.io/2012/04/06/upgrade-kde-dengan-delta-update-di-arch-linux/"
aria-label=": Upgrade KDE dengan Delta Update di Arch Linux"
>
<h3 class="media-heading">Upgrade KDE dengan Delta Update di Arch Linux</h3>
</a>
<span class="media-meta">
<span class="media-date text-small">
6 Apr 2012
</span>
</span>
<div class="media-content hide-xs font-merryweather"><p>Waah ternyata lumayan lama juga saya ndak nulis di blog ini. Kali ini saya akan berbagi tulisan mengenai pengalaman saya meng-<em>upgrade</em> <a target="_blank" rel="noopener" href="http://www.archlinux.org/">Arch Linux</a> dengan <a target="_blank" rel="noopener" href="https://wiki.archlinux.org/index.php/Deltup">delta update</a>. Pada awalnya saya sempat ragu menggunakan delta karena delta update sendiri belum didukung secara <em>official</em>. Selain itu mirror yang menyediakan paket delta baru 1 yaitu <a target="_blank" rel="noopener" href="http://delta.archlinux.fr/">http://delta.archlinux.fr/</a>. Namun pada akhirnya saya nekat saja, kalau ndak nekat kapan saya punya pengalaman upgrade menggunakan delta? 😁</p></div>
</div>
<div style="clear:both;"></div>
<hr>
</div>
<div class="media">
<div class="media-left">
<a
class="link-unstyled"
href="http://go2n.github.io/2012/06/18/mencoba-kde-4-9-beta2-4-8-90/"
aria-label=": Mencoba KDE 4.9 Beta2 (4.8.90)"
>
<img class="media-image" src="http://go2n.github.io/2012/06/18/mencoba-kde-4-9-beta2-4-8-90/./snapshot50.png" width="90" height="90"/>
</a>
</div>
<div class="media-body">
<a
class="link-unstyled"
href="http://go2n.github.io/2012/06/18/mencoba-kde-4-9-beta2-4-8-90/"
aria-label=": Mencoba KDE 4.9 Beta2 (4.8.90)"
>
<h3 class="media-heading">Mencoba KDE 4.9 Beta2 (4.8.90)</h3>
</a>
<span class="media-meta">
<span class="media-date text-small">
18 Jun 2012
</span>
</span>
<div class="media-content hide-xs font-merryweather"><p>Gara-gara komentar di <a target="_blank" rel="noopener" href="https://www.facebook.com/walesa/posts/4007252307182">status</a> Facebooknya om Walesa jadi kepengin menjajal <a target="_blank" rel="noopener" href="http://www.kde.org/announcements/announce-4.9-beta2.php">KDE 4.9 Beta2</a>. Setelah semalaman ketiduran menunggu upgrade KDE, baru pagi ini saya punya kesempatan menjajalnya.</p></div>
</div>
<div style="clear:both;"></div>
<hr>
</div>
<div class="media">
<div class="media-left">
<a
class="link-unstyled"
href="http://go2n.github.io/2012/06/29/kde-4-9-rc1-4-8-95/"
aria-label=": KDE 4.9 RC1 (4.8.95)"
>
<img class="media-image" src="http://go2n.github.io/2012/06/29/kde-4-9-rc1-4-8-95/snapshot56.png" width="90" height="90"/>
</a>
</div>
<div class="media-body">
<a
class="link-unstyled"
href="http://go2n.github.io/2012/06/29/kde-4-9-rc1-4-8-95/"
aria-label=": KDE 4.9 RC1 (4.8.95)"
>
<h3 class="media-heading">KDE 4.9 RC1 (4.8.95)</h3>
</a>
<span class="media-meta">
<span class="media-date text-small">
29 Jun 2012
</span>
</span>
<div class="media-content hide-xs font-merryweather"><p>27 Juni 2012 kemarin KDE mengumumkan tersedianya <a target="_blank" rel="noopener" href="http://www.kde.org/announcements/announce-4.9-rc1.php">KDE 4.8.95 alias KDE 4.9 RC1</a>, dan semalam saya mengupgrade desktop KDE saya dari 4.8.90 (4.9 beta2) menjadi 4.8.95 (4.9 RC1). Ritual upgrade dengan <code>pacman -Syu</code> berjalan lantjar djaja dan tidak ada masalah sama sekali ketika masuk ke desktop.</p></div>
</div>
<div style="clear:both;"></div>
<hr>
</div>
<div class="media">
<div class="media-left">
<a
class="link-unstyled"
href="http://go2n.github.io/2012/07/07/menerjemahkan-kata-atau-kalimat-dari-commandline/"
aria-label=": Menerjemahkan kata atau kalimat dari commandline"
>
<img class="media-image" src="https://www.akashtrehan.com/assets/images/emoji/terminal.png" width="90" height="90"/>
</a>
</div>
<div class="media-body">
<a
class="link-unstyled"
href="http://go2n.github.io/2012/07/07/menerjemahkan-kata-atau-kalimat-dari-commandline/"
aria-label=": Menerjemahkan kata atau kalimat dari commandline"
>
<h3 class="media-heading">Menerjemahkan kata atau kalimat dari commandline</h3>
</a>
<span class="media-meta">
<span class="media-date text-small">
7 Jul 2012
</span>
</span>
<div class="media-content hide-xs font-merryweather"><p>Mungkin tidak kita menerjemahkan kata atau kalimat menggunakan dari commandline?</div>
</div>
<div style="clear:both;"></div>
<hr>
</div>
<div class="media">
<div class="media-body">
<a
class="link-unstyled"
href="http://go2n.github.io/2012/10/09/arch-linux-with-kde-4-9-2/"
aria-label=": Arch Linux ❤ KDE 4.9.2"
>
<h3 class="media-heading">Arch Linux ❤ KDE 4.9.2</h3>
</a>
<span class="media-meta">
<span class="media-date text-small">
9 Okt 2012
</span>
</span>
<div class="media-content hide-xs font-merryweather"></div>
</div>
<div style="clear:both;"></div>
<hr>
</div>
<div class="media">
<div class="media-left">
<a
class="link-unstyled"
href="http://go2n.github.io/2012/10/10/tidak-ada-lagi-aif/"
aria-label=": Tidak ada lagi AIF 😭"
>
<img class="media-image" src="https://i.imgur.com/xGdmDKR.jpg" width="90" height="90"/>
</a>
</div>
<div class="media-body">
<a
class="link-unstyled"
href="http://go2n.github.io/2012/10/10/tidak-ada-lagi-aif/"
aria-label=": Tidak ada lagi AIF 😭"
>
<h3 class="media-heading">Tidak ada lagi AIF 😭</h3>
</a>
<span class="media-meta">
<span class="media-date text-small">
10 Okt 2012
</span>
</span>
<div class="media-content hide-xs font-merryweather"><p>Pagi ini saya iseng untuk coba memasang Arch Linux dengan installer terbaru (2012.10.06) di PC tempat saya mburuh. Saya agak terkejut dengan tidak disertakannya AIF - Arch Installation Framework di media instalasi tersebut.</div>
</div>
<div style="clear:both;"></div>
<hr>
</div>
<div class="media">
<div class="media-left">
<a
class="link-unstyled"
href="http://go2n.github.io/2012/10/11/akhirnya/"
aria-label=": Akhirnya…"
>
<img class="media-image" src="http://go2n.github.io/2012/10/11/akhirnya/xfce.png" width="90" height="90"/>
</a>
</div>
<div class="media-body">
<a
class="link-unstyled"
href="http://go2n.github.io/2012/10/11/akhirnya/"
aria-label=": Akhirnya…"
>
<h3 class="media-heading">Akhirnya…</h3>
</a>
<span class="media-meta">
<span class="media-date text-small">
11 Okt 2012
</span>
</span>
<div class="media-content hide-xs font-merryweather"><p>Di tulisan yang <a href="https://go2n.github.io/2012/10/10/tidak-ada-lagi-aif/">sebelumnya</a> saya sempat mengeluh mengenai ribetnya instalasi Arch Linux tanpa AIF (Arch Installation Framework). Saya akui, memang tidak mengenakkan alias tidak manusiawi memasang Arch Linux tanpa AIF tersebut, ditambah dengan tidak adanya jaringan internet untuk PC saya. 😐</p></div>
</div>
<div style="clear:both;"></div>
<hr>
</div>
</div>
</div>
<div class="modal-footer">
<p class="results-count text-medium"
data-message-zero="0 post ditemukan"
data-message-one="1 post ditemukan"
data-message-other="{n} post ditemukan">
44 post ditemukan
</p>
</div>
</div>
</div>
<div id="cover" style="background-image:url('/assets/images/cover.jpg');"></div>
<!--SCRIPTS-->
<script src="/assets/js/script-xl9xkv7botefhpdv5tsehll2rt0wmqq4ptsnspylwkopq9efag494tpe3gpd.min.js"></script>
<!--SCRIPTS END-->
<script src="/assets/js/moment-with-locales.js"></script>
<script src="/assets/js/algoliasearch.js"></script>
<script>
var algoliaClient = algoliasearch('AKI0Y37EA1', '9b0084f5343d3a80d8e0e1c7f04851e2');
var algoliaIndex = algoliaClient.initIndex('Goblog');
</script>
</body>
</html>
| go2n/go2n.github.io | tags/freebsd/index.html | HTML | mit | 38,117 |
<!DOCTYPE html>
<html>
<head>
<title>UI Admin - Clean and responsive administration panel</title>
<meta charset="UTF-8">
<meta name="description" content="Clean and responsive administration panel">
<meta name="keywords" content="Admin,Panel,HTML,CSS,XML,JavaScript">
<meta name="author" content="Erik Campobadal">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/uikit.min.css" />
<link rel="stylesheet" href="https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css">
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/notyf.min.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script> <script src="js/uikit.min.js" ></script>
<script src="js/uikit-icons.min.js" ></script>
</head>
<body>
<div uk-sticky class="uk-navbar-container tm-navbar-container uk-active">
<div class="uk-container uk-container-expand">
<nav uk-navbar>
<div class="uk-navbar-left">
<a id="sidebar_toggle" class="uk-navbar-toggle" uk-navbar-toggle-icon ></a>
<a href="#" class="uk-navbar-item uk-logo">
UI Admin
</a>
</div>
<div class="uk-navbar-right uk-light">
<ul class="uk-navbar-nav">
<li class="uk-active">
<a href="#">Èrik <span class="ion-ios-arrow-down"></span></a>
<div uk-dropdown="pos: bottom-right; mode: click; offset: -17;">
<ul class="uk-nav uk-navbar-dropdown-nav">
<li class="uk-nav-header">Options</li>
<li><a href="#">Edit Profile</a></li>
<li class="uk-nav-header">Actions</li>
<li><a href="#">Lock</a></li>
<li><a href="#">Logout</a></li>
</ul>
</div>
</li>
</ul>
</div>
</nav>
</div>
</div>
<div id="sidebar" class="tm-sidebar-left uk-background-default">
<center>
<div class="user">
<img id="avatar" width="100" class="uk-border-circle" src="images/avatar.jpg" />
<div class="uk-margin-top"></div>
<div id="name" class="uk-text-truncate">Èrik Campobadal</div>
<div id="email" class="uk-text-truncate">[email protected]</div>
<span id="status" data-enabled="true" data-online-text="Online" data-away-text="Away" data-interval="10000" class="uk-margin-top uk-label uk-label-success"></span>
</div>
<br />
</center>
<ul class="uk-nav uk-nav-default">
<li class="uk-nav-header">
UI Elements
</li>
<li><a href="buttons.html">Buttons</a></li>
<li><a href="components.html">Components</a></li>
<li><a href="tables.html">Tables</a></li>
<li class="uk-nav-header">
Pages
</li>
<li><a href="login.html">Login</a></li>
<li><a href="register.html">Register</a></li>
<li><a href="article.html">Article</a></li>
<li><a href="404.html">404</a></li>
</ul>
</div>
<div class="content-padder content-background">
<div class="uk-section-small uk-section-default header">
<div class="uk-container uk-container-large">
<h1><span class="ion-speedometer"></span> Dashboard</h1>
<p>
Welcome back, Èrik Campobadal
</p>
<ul class="uk-breadcrumb">
<li><a href="index.html">Home</a></li>
<li><span href="">Dashboard</span></li>
</ul>
</div>
</div>
<div class="uk-section-small">
<div class="uk-container uk-container-large">
<div uk-grid class="uk-child-width-1-1@s uk-child-width-1-2@m uk-child-width-1-4@xl">
<div>
<div class="uk-card uk-card-default uk-card-body">
<span class="statistics-text">New Registrations</span><br />
<span class="statistics-number">
14.164
<span class="uk-label uk-label-success">
8% <span class="ion-arrow-up-c"></span>
</span>
</span>
</div>
</div>
<div>
<div class="uk-card uk-card-default uk-card-body">
<span class="statistics-text">Website Traffic</span><br />
<span class="statistics-number">
123.238
<span class="uk-label uk-label-danger">
13% <span class="ion-arrow-down-c"></span>
</span>
</span>
</div>
</div>
<div>
<div class="uk-card uk-card-default uk-card-body">
<span class="statistics-text">Total Invoices</span><br />
<span class="statistics-number">
2.316
<span class="uk-label uk-label-success">
37% <span class="ion-arrow-up-c"></span>
</span>
</span>
</div>
</div>
<div>
<div class="uk-card uk-card-default uk-card-body">
<span class="statistics-text">Total Income</span><br />
<span class="statistics-number">
6.384€
<span class="uk-label uk-label-success">
26% <span class="ion-arrow-up-c"></span>
</span>
</span>
</div>
</div>
</div>
<div uk-grid class="uk-child-width-1-1@s uk-child-width-1-2@l">
<div>
<div class="uk-card uk-card-default">
<div class="uk-card-header">
Website Traffic
</div>
<div class="uk-card-body">
<canvas id="chart1"></canvas>
</div>
</div>
</div>
<div>
<div class="uk-card uk-card-default">
<div class="uk-card-header">
Website Traffic
</div>
<div class="uk-card-body">
<canvas id="chart2"></canvas>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Load More Javascript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.7.0/Chart.min.js" integrity="sha256-UGwvyUFH6Qqn0PSyQVw4q3vIX0wV1miKTracNJzAWPc=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.transit/0.9.12/jquery.transit.min.js" integrity="sha256-rqEXy4JTnKZom8mLVQpvni3QHbynfjPmPxQVsPZgmJY=" crossorigin="anonymous"></script>
<script src="js/notyf.min.js"></script>
<!-- Required Overall Script -->
<script src="js/script.js"></script>
<!-- Status Updater -->
<script src="js/status.js"></script>
<!-- Sample Charts -->
<script src="js/charts.js"></script>
<!-- Sample Notifications -->
<script src="js/notification.js"></script>
</body>
</html>
| ConsoleTVs/UIAdmin | index.html | HTML | mit | 9,118 |
---
title: "Striped Table"
type: tables
scss: sass/modules/_tables.scss
usage:
---
<table class="tbl tbl-striped js-rhythm">
<thead>
<tr>
<th>#</th>
<th>First Name</th>
<th>Last Name</th>
</tr>
</thead>
<tbody>
<tr>
<th>1</th>
<td>Hubert</td>
<td>Farnsworth</td>
</tr>
<tr>
<th>2</th>
<td>Philip</td>
<td>Fry</td>
</tr>
<tr>
<th>3</th>
<td>Hermes</td>
<td>Conrad</td>
</tr>
</tbody>
</table> | CivilApp/civil.css | docs/_modules/tables-striped.html | HTML | mit | 616 |
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<meta content="text/html; charset=iso-8859-1" http-equiv="content-type">
<title>Rescale image value range</title>
<link rel="stylesheet" type="text/css" href="Help.css">
</head>
<body>
<h1>Rescale image value range</h1>
<p>
This tool can be used to rescale the values contained within a raster to a user-specified
range.</p>
<h2 class="SeeAlso">See Also:</h2>
<ul>
<li>None</li>
</ul>
<h2 class="SeeAlso">Scripting:</h2>
<p>The following is an example of a Python script using this tool:</p>
<p style="background-color: rgb(240,240,240);">
<code>
wd = pluginHost.getWorkingDirectory() <br>
inputFile = wd + "input.dep" <br>
outputFile = wd + "output.dep" <br>
newMinimum = "0.0" <br>
newMaximum = "100.0" <br>
args = [inputFile, outputFile, newMinimum, newMaximum] <br>
pluginHost.runPlugin("RescaleImageValueRange", args, False) <br>
</code>
</p>
<p>This is a Groovy script also using this tool:</p>
<p style="background-color: rgb(240,240,240);">
<code>
def wd = pluginHost.getWorkingDirectory() <br>
def inputFile = wd + "input.dep" <br>
def outputFile = wd + "output.dep" <br>
def newMinimum = "0.0" <br>
def newMaximum = "100.0" <br>
String[] args = [inputFile, outputFile, newMinimum, newMaximum]
<br>pluginHost.runPlugin("RescaleImageValueRange", args, false) <br>
</code>
</p>
<h2 class="SeeAlso">Credits:</h2>
<ul>
<li>John Lindsay (2013) email: [email protected]</li>
</ul>
</body>
</html>
| jblindsay/jblindsay.github.io | ghrg/Whitebox/WhiteboxGAT-linux/resources/Help/RescaleImageValueRange.html | HTML | mit | 2,061 |
<!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_80) on Thu Oct 27 12:13:59 EEST 2016 -->
<title>Uses of Class com.skobbler.ngx.map.SKMapViewHolder (SKMaps Framework)</title>
<meta name="date" content="2016-10-27">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class com.skobbler.ngx.map.SKMapViewHolder (SKMaps Framework)";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../com/skobbler/ngx/map/SKMapViewHolder.html" title="class in com.skobbler.ngx.map">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?com/skobbler/ngx/map/class-use/SKMapViewHolder.html" target="_top">Frames</a></li>
<li><a href="SKMapViewHolder.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h2 title="Uses of Class com.skobbler.ngx.map.SKMapViewHolder" class="title">Uses of Class<br>com.skobbler.ngx.map.SKMapViewHolder</h2>
</div>
<div class="classUseContainer">
<ul class="blockList">
<li class="blockList">
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation">
<caption><span>Packages that use <a href="../../../../../com/skobbler/ngx/map/SKMapViewHolder.html" title="class in com.skobbler.ngx.map">SKMapViewHolder</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Package</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href="#com.skobbler.ngx.map">com.skobbler.ngx.map</a></td>
<td class="colLast">
<div class="block">Constains classses needed to show the map and information on the map.</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="com.skobbler.ngx.map">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../com/skobbler/ngx/map/SKMapViewHolder.html" title="class in com.skobbler.ngx.map">SKMapViewHolder</a> in <a href="../../../../../com/skobbler/ngx/map/package-summary.html">com.skobbler.ngx.map</a></h3>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../com/skobbler/ngx/map/package-summary.html">com.skobbler.ngx.map</a> with parameters of type <a href="../../../../../com/skobbler/ngx/map/SKMapViewHolder.html" title="class in com.skobbler.ngx.map">SKMapViewHolder</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="strong">SKMapSurfaceListener.</span><code><strong><a href="../../../../../com/skobbler/ngx/map/SKMapSurfaceListener.html#onSurfaceCreated(com.skobbler.ngx.map.SKMapViewHolder)">onSurfaceCreated</a></strong>(<a href="../../../../../com/skobbler/ngx/map/SKMapViewHolder.html" title="class in com.skobbler.ngx.map">SKMapViewHolder</a> mapViewHolder)</code>
<div class="block">Notifies when the map surface is created or recreated.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>protected void</code></td>
<td class="colLast"><span class="strong">SKMapSurfaceView.</span><code><strong><a href="../../../../../com/skobbler/ngx/map/SKMapSurfaceView.html#setMapViewHolder(com.skobbler.ngx.map.SKMapViewHolder)">setMapViewHolder</a></strong>(<a href="../../../../../com/skobbler/ngx/map/SKMapViewHolder.html" title="class in com.skobbler.ngx.map">SKMapViewHolder</a> holder)</code>
<div class="block">Sets the map holder view.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected void</code></td>
<td class="colLast"><span class="strong">SKCalloutView.</span><code><strong><a href="../../../../../com/skobbler/ngx/map/SKCalloutView.html#setMapViewHolder(com.skobbler.ngx.map.SKMapViewHolder)">setMapViewHolder</a></strong>(<a href="../../../../../com/skobbler/ngx/map/SKMapViewHolder.html" title="class in com.skobbler.ngx.map">SKMapViewHolder</a> holder)</code> </td>
</tr>
</tbody>
</table>
</li>
</ul>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../com/skobbler/ngx/map/SKMapViewHolder.html" title="class in com.skobbler.ngx.map">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?com/skobbler/ngx/map/class-use/SKMapViewHolder.html" target="_top">Frames</a></li>
<li><a href="SKMapViewHolder.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>
<i>Copyright © 2014 skobbler GmbH, Luisenstr. 41, 10117 Berlin, Germany. All rights reserved.</i></small></p>
</body>
</html>
| TrekDev/Xamarin.Android.Skobbler | src/Skobbler.Binding/Jars/docs/com/skobbler/ngx/map/class-use/SKMapViewHolder.html | HTML | mit | 7,481 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>hammer-tactics: 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 / hammer-tactics - 1.3.2+8.13</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
hammer-tactics
<small>
1.3.2+8.13
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2021-11-03 02:25:39 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-11-03 02:25:39 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
coq 8.10.0 Formal proof management system
num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.08.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.08.1 Official release 4.08.1
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "[email protected]"
homepage: "https://github.com/lukaszcz/coqhammer"
dev-repo: "git+https://github.com/lukaszcz/coqhammer.git"
bug-reports: "https://github.com/lukaszcz/coqhammer/issues"
license: "LGPL-2.1-only"
synopsis: "Reconstruction tactics for the hammer for Coq"
description: """
Collection of tactics that are used by the hammer for Coq
to reconstruct proofs found by automated theorem provers. When the hammer
has been successfully applied to a project, only this package needs
to be installed; the hammer plugin is not required.
"""
build: [make "-j%{jobs}%" "tactics"]
install: [
[make "install-tactics"]
[make "test-tactics"] {with-test}
]
depends: [
"ocaml" { >= "4.08" }
"coq" {>= "8.13" & < "8.14~"}
]
conflicts: [
"coq-hammer" {!= version}
]
tags: [
"keyword:automation"
"keyword:hammer"
"keyword:tactics"
"logpath:Hammer.Tactics"
"date:2021-10-01"
]
authors: [
"Lukasz Czajka <[email protected]>"
]
url {
src: "https://github.com/lukaszcz/coqhammer/archive/v1.3.2-coq8.13.tar.gz"
checksum: "sha512=977d343cefbd2d75c180614efe19026fc68d1b8ac35cb0a07267279823e14c9c0632cf2554ff038d73b263fb005b7d0936d9e6d0a601bb19904e92b4ae624d50"
}
</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-hammer-tactics.1.3.2+8.13 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-hammer-tactics -> 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-hammer-tactics.1.3.2+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>
| coq-bench/coq-bench.github.io | clean/Linux-x86_64-4.08.1-2.0.5/released/8.10.0/hammer-tactics/1.3.2+8.13.html | HTML | mit | 7,132 |
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Spacial - Index features</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Place favicon.ico and apple-touch-icon(s) in the root directory -->
<link rel="shortcut icon" href="images/favicon.ico">
<!-- stylesheets -->
<link rel="stylesheet" type="text/css" href="scss/bootstrap/bootstrap.css" />
<link rel="stylesheet" type="text/css" href="dist/theme.min.css" />
<!-- javascript -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.11.0/umd/popper.min.js" integrity="sha384-b/U6ypiBEHpOf/4+1nzFpr53nxSS+GLCkfwBdFNTxtclqqenISfwAzpKaMNFNmj4" crossorigin="anonymous"></script>
<script src="dist/theme.min.js"></script>
</head>
<body class="scrollspy-enabled">
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!--[if lt IE 8]>
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<nav class="navbar navbar-expand-lg navbar-dark bg-transparent" role="navigation">
<div class="container no-override">
<a class="navbar-brand" href="index.html">
<img src="images/logo-alt-w.png" class="d-none d-lg-inline mr-2 w-25" />
Spacial
</a>
<button class="navbar-toggler" data-toggle="collapse" data-target="#navbar-collapse">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse justify-content-end" id="navbar-collapse">
<ul class="navbar-nav">
<li class="nav-item active dropdown">
<a href="#" class="nav-link dropdown-toggle" data-toggle="dropdown">
Home pages
<i class="ion-chevron-down"></i>
</a>
<div class="dropdown-menu" role="menu">
<a class="dropdown-item" href="index.html">Business</a>
<a class="dropdown-item" href="index-app.html">Web app</a>
<a class="dropdown-item" href="index-features.html">Features showcase</a>
<a class="dropdown-item" href="agency.html">Creative agency</a>
<a class="dropdown-item" href="index-mobile.html">App showcase</a>
<a class="dropdown-item" href="index-mobile-2.html">App showcase 2</a>
<a class="dropdown-item" href="index-mobile-3.html">App showcase 3</a>
<a class="dropdown-item" href="index-mobile-4.html">App showcase 4</a>
<a class="dropdown-item" href="index-slider.html">Hero Slider</a>
<a class="dropdown-item" href="index-photography.html">Photography</a>
<a class="dropdown-item" href="index-dark.html">Dark background</a>
<a class="dropdown-item" href="index-restaurant.html">Restaurant</a>
<a class="dropdown-item" href="index-event.html">Event</a>
<a class="dropdown-item" href="index-video.html">Video background</a>
<a class="dropdown-item" href="intro.html">Intro</a>
</div>
</li>
<li class="nav-item dropdown">
<a href="#" class="nav-link dropdown-toggle" data-toggle="dropdown">
Blogs
<i class="ion-chevron-down"></i>
</a>
<div class="dropdown-menu" role="menu">
<a class="dropdown-item" href="blog.html">Blog list</a>
<a class="dropdown-item" href="blog-3-cols.html">Blog columns</a>
<a class="dropdown-item" href="blog-grid.html">Blog grid</a>
<a class="dropdown-item" href="blog-sidebar.html">Blog sidebar</a>
<a class="dropdown-item" href="blog-masonry.html">Blog masonry</a>
<a class="dropdown-item" href="blog-timeline.html">Blog timeline</a>
<a class="dropdown-item" href="blog-post.html">Single blog post</a>
<a class="dropdown-item" href="blog-post-alt.html">Single blog post 2</a>
<a class="dropdown-item" href="blog-post-3.html">Single blog post 3</a>
</div>
</li>
<li class="nav-item dropdown">
<a href="#" class="nav-link dropdown-toggle" data-toggle="dropdown">
Pages
<i class="ion-chevron-down"></i>
</a>
<div class="dropdown-menu" role="menu">
<div class="dropdown dropdown-submenu">
<a class="dropdown-item dropdown-toggle" href="#" data-toggle="dropdown">
About us
<i class="ion-chevron-right"></i>
</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="agency-about.html">About us 1</a>
<a class="dropdown-item" href="agency-about-2.html">About us 2</a>
</div>
</div>
<div class="dropdown dropdown-submenu">
<a class="dropdown-item dropdown-toggle" href="#" data-toggle="dropdown">
Portfolio
<i class="ion-chevron-right"></i>
</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="agency-portfolio-2.html">2 columns</a>
<a class="dropdown-item" href="agency-portfolio-3.html">3 columns</a>
<a class="dropdown-item" href="agency-portfolio-4.html">4 columns</a>
</div>
</div>
<div class="dropdown dropdown-submenu">
<a class="dropdown-item dropdown-toggle" href="#" data-toggle="dropdown">
Contact
<i class="ion-chevron-right"></i>
</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="agency-contact.html">Contact us 1</a>
<a class="dropdown-item" href="agency-contact-2.html">Contact us 2</a>
<a class="dropdown-item" href="agency-start-project.html">Contact us project</a>
</div>
</div>
<a class="dropdown-item" href="agency-project.html">Project showcase</a>
<a class="dropdown-item" href="pricing.html">Pricing</a>
<a class="dropdown-item" href="pricing-charts.html">Pricing charts</a>
<a class="dropdown-item" href="careers.html">Careers</a>
<a class="dropdown-item" href="career-post.html">Careers job post</a>
<a class="dropdown-item" href="support.html">Support</a>
<a class="dropdown-item" href="support-topic.html">Support topic</a>
<a class="dropdown-item" href="customers.html">Customer stories</a>
<a class="dropdown-item" href="customer-story.html">Single customer story</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item" href="sign-up.html">Sign up</a>
<a class="dropdown-item" href="sign-in.html">Sign in</a>
<a class="dropdown-item" href="recover-password.html">Recover password</a>
<a class="dropdown-item" href="timeline.html">Timeline</a>
<a class="dropdown-item" href="coming-soon.html">Coming soon</a>
<a class="dropdown-item" href="api-docs.html">API docs</a>
</div>
</li>
<li class="nav-item dropdown">
<a href="#" class="nav-link dropdown-toggle" data-toggle="dropdown">
Features
<i class="ion-chevron-down"></i>
</a>
<div class="dropdown-menu" role="menu">
<div class="dropdown dropdown-submenu">
<a class="dropdown-item dropdown-toggle" href="#" data-toggle="dropdown">
Headers
<i class="ion-chevron-right"></i>
</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="header-light.html">Light</a>
<a class="dropdown-item" href="header-dark.html">Dark</a>
<a class="dropdown-item" href="header-transparent-light.html">Transparent light</a>
<a class="dropdown-item" href="header-transparent-dark.html">Transparent dark</a>
<a class="dropdown-item" href="header-transparent-fixed-light.html">Transparent fixed light</a>
<a class="dropdown-item" href="header-transparent-fixed-dark.html">Transparent fixed dark</a>
<a class="dropdown-item" href="header-off-canvas-left.html">Sidebar left</a>
<a class="dropdown-item" href="header-off-canvas-right.html">Sidebar right</a>
<a class="dropdown-item" href="header-navleft.html">Navbar left</a>
<a class="dropdown-item" href="header-dark-submenu.html">Dark submenu</a>
<a class="dropdown-item" href="header-fixed-bottom.html">Bottom fixed</a>
<a class="dropdown-item" href="header-logo-center.html">Logo center</a>
<a class="dropdown-item" href="header-all-center.html">All center</a>
<a class="dropdown-item" href="header-full-width.html">Full width</a>
</div>
</div>
<div class="dropdown dropdown-submenu">
<a class="dropdown-item dropdown-toggle" href="#" data-toggle="dropdown">
Footers
<i class="ion-chevron-right"></i>
</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="header-light.html#footer">Dark</a>
<a class="dropdown-item" href="footer-light.html#footer">Light</a>
<a class="dropdown-item" href="footer-big-menu.html#footer">Big Menu</a>
<a class="dropdown-item" href="footer-sign-up.html#footer">Sign up</a>
<a class="dropdown-item" href="footer-agency.html#footer">Agency</a>
</div>
</div>
<div class="dropdown dropdown-submenu">
<a class="dropdown-item dropdown-toggle" href="#" data-toggle="dropdown">
Covers
<i class="ion-chevron-right"></i>
</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="cover-panorama.html">Panorama View</a>
<a class="dropdown-item" href="cover-360.html">360º Image</a>
</div>
</div>
<div class="dropdown dropdown-submenu">
<a class="dropdown-item dropdown-toggle" href="#" data-toggle="dropdown">
Email templates
<i class="ion-chevron-right"></i>
</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="email-template-newsletter.html" target="_blank">
Newsletter
<i class="ion-share"></i>
</a>
<a class="dropdown-item" href="email-template-receipt.html" target="_blank">
Receipt
<i class="ion-share"></i>
</a>
<a class="dropdown-item" href="email-template-announcement.html" target="_blank">
Simple announcement
<i class="ion-share"></i>
</a>
<a class="dropdown-item" href="email-template-text.html" target="_blank">
Formal text
<i class="ion-share"></i>
</a>
</div>
</div>
<a class="dropdown-item" href="docs/grid-system.html">Grid system</a>
<a class="dropdown-item" href="docs/animations.html">Animations</a>
<a class="dropdown-item" href="docs/typography.html">Typography</a>
</div>
</li>
<li class="nav-item dropdown dropdown-extend">
<a href="#" class="nav-link dropdown-toggle" data-toggle="dropdown">
Components
<i class="ion-chevron-down"></i>
</a>
<div class="dropdown-menu dropdown-extend-menu" role="menu">
<div class="row">
<div class="col-md-3">
<a class="dropdown-item" href="docs/alerts.html"><i class="ion-alert-circled"></i> Alerts</a>
<a class="dropdown-item" href="docs/animations.html"><i class="ion-wand"></i> Animations</a>
<a class="dropdown-item" href="docs/badges.html"><i class="ion-ios-pricetag-outline"></i> Badges</a>
<a class="dropdown-item" href="docs/buttons.html"><i class="ion-ios-paperplane"></i> Buttons</a>
<a class="dropdown-item" href="docs/button-groups.html"><i class="ion-ios-browsers"></i> Button groups</a>
<a class="dropdown-item" href="docs/cards.html"><i class="ion-ios-albums-outline"></i> Cards</a>
</div>
<div class="col-md-3">
<a class="dropdown-item" href="docs/carousel.html"><i class="ion-android-arrow-dropright-circle"></i> Carousel</a>
<a class="dropdown-item" href="docs/accordion.html"><i class="ion-navicon"></i> Accordion</a>
<a class="dropdown-item" href="docs/cta.html"><i class="ion-funnel"></i> Call to action</a>
<a class="dropdown-item" href="docs/dropdowns.html"><i class="ion-arrow-down-b"></i> Dropdowns</a>
<a class="dropdown-item" href="docs/forms.html"><i class="ion-clipboard"></i> Forms</a>
<a class="dropdown-item" href="docs/input-groups.html"><i class="ion-toggle"></i> Input groups</a>
</div>
<div class="col-md-3">
<a class="dropdown-item" href="docs/icons.html"><i class="ion-social-octocat"></i> Icons</a>
<a class="dropdown-item" href="docs/list-groups.html"><i class="ion-ios-list-outline"></i> List groups</a>
<a class="dropdown-item" href="docs/modals.html"><i class="ion-monitor"></i> Modals</a>
<a class="dropdown-item" href="docs/navs.html"><i class="ion-navigate"></i> Navs</a>
<a class="dropdown-item" href="docs/navbars.html"><i class="ion-navicon-round"></i> Navbars</a>
<a class="dropdown-item" href="docs/plugins.html"><i class="ion-compose"></i> New plugins</a>
</div>
<div class="col-md-3">
<a class="dropdown-item" href="docs/progress.html"><i class="ion-stats-bars d-inline-block" style="transform: rotate(90deg);"></i> Progress bars</a>
<a class="dropdown-item" href="docs/stats-cards.html"><i class="ion-arrow-graph-up-right"></i> Stats cards</a>
<a class="dropdown-item" href="docs/tables.html"><i class="ion-grid"></i> Tables</a>
<a class="dropdown-item" href="docs/typography.html"><i class="ion-paintbrush"></i> Typography</a>
</div>
</div>
</div>
</li>
<li class="nav-item dropdown">
<a href="#" class="nav-link dropdown-toggle" data-toggle="dropdown">
Shop
<i class="ion-chevron-down"></i>
</a>
<div class="dropdown-menu" role="menu">
<a class="dropdown-item" href="ecommerce/index.html">Home page</a>
<a class="dropdown-item" href="ecommerce/collection-grid.html">Products grid</a>
<a class="dropdown-item" href="ecommerce/collection-list.html">Products list</a>
<a class="dropdown-item" href="ecommerce/collection-grid-sidebar.html">Products grid w/ sidebar</a>
<a class="dropdown-item" href="ecommerce/collection-list-sidebar.html">Products list w/ sidebar</a>
<a class="dropdown-item" href="ecommerce/product.html">Single product</a>
<a class="dropdown-item" href="ecommerce/cart.html">Cart</a>
<a class="dropdown-item" href="ecommerce/search.html">Search results</a>
<a class="dropdown-item" href="ecommerce/checkout.html">Checkout</a>
<a class="dropdown-item" href="ecommerce/checkout-payment.html">Checkout ship & payment</a>
<a class="dropdown-item" href="ecommerce/checkout-confirmation.html">Checkout confirmation</a>
<a class="dropdown-item" href="ecommerce/account-orders.html">My account order history</a>
<a class="dropdown-item" href="ecommerce/account-wishlist.html">My account wishlist</a>
<a class="dropdown-item" href="ecommerce/account-profile.html">My account profile</a>
<a class="dropdown-item" href="ecommerce/account-invoice.html">Order invoice</a>
<a class="dropdown-item" href="ecommerce/sign-up.html">Sign up</a>
<a class="dropdown-item" href="ecommerce/sign-in.html">Sign in</a>
</div>
</li>
<li class="nav-item">
<a class="nav-link nav-link--rounded" href="docs/intro.html">Theme Docs</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="index-features-header">
<section>
<h1 class="stripey">
Organize your income and expenses the easy way
</h1>
<p class="stripey">
Shoot, edit, share, explore. All from your pocket, tablet or desktop.
</p>
<div class="cta">
<a href="#" class="btn-shadow btn-shadow-primary">
Sign Up For Free
</a>
</div>
</section>
</div>
<div class="index-features-nav d-none d-md-block">
<ul class="nav features justify-content-center">
<li>
<a href="#friends" class="scroll nav-link active featureFadeInDown">
Message your friends
</a>
</li>
<li>
<a href="#camera" class="scroll nav-link featureFadeInDown">
All your photos online
</a>
</li>
<li>
<a href="#user" class="scroll nav-link featureFadeInDown">
Sync your contacts
</a>
</li>
<li>
<a href="#files" class="scroll nav-link featureFadeInDown">
All your files secured
</a>
</li>
</ul>
</div>
<div id="friends" class="index-features-friends">
<section class="clearfix">
<img src="images/devices/devices-7.png" class="browser" />
<div class="info">
<h3>Message your friends</h3>
<h4>
Powerful dashboard that lets you control your site, store or portfolio.
</h4>
<p>
Spacial has both a web app and an android app to make your website easy and always available. It offers you all the designs in collaboration with some smart people. Your projects will look great everywhere you go. Use new components that come included. It works in all browsers and your clients can pay instantly, to improve their experience.
</p>
</div>
</section>
</div>
<div id="camera" class="index-features-camera">
<section>
<h3>All your photos online</h3>
<h4>
Apply filters to your pictures, change settings and tag all your friends
</h4>
<div class="pic">
<img src="images/devices/devices-5.png" class="img-fluid" />
</div>
</section>
</div>
<div id="user" class="index-features-user">
<header>
<h3>Your files are always secured</h3>
<h4>
We have the best security infrastructure available, your files will always be safe and we make daily backups
</h4>
</header>
<section class="clearfix">
<img src="images/devices/iphone-14.png" class="devices float-right" />
<h4>Access to your business on the go</h4>
<p>
Spacial has both a web app and an android app to make your website easy and always available. It offers you all the designs in collaboration with some smart people. Your projects will look great everywhere you go. Use new components that come included!
</p>
<p>
Spacial is an advanced theme solution for desktop, tablet, and mobile devices. It works in all browsers and your clients can pay instantly.
</p>
<div class="icons">
<i class="ion-monitor"></i>
<i class="ion-ipad"></i>
<i class="ion-iphone"></i>
</div>
</section>
</div>
<div id="files" class="index-features-files clearfix">
<div class="container2">
<div class="container1">
<div class="col col-left">
<div class="features">
<div class="feature clearfix">
<div class="image">
<img src="images/icons/features-icon-upload.png" />
</div>
<div class="info">
<strong>
Improve your workflow today
</strong>
<p>
There are many variations of passages of Lorem Ipsum available, but the majority have suffered.
</p>
</div>
</div>
<div class="feature clearfix">
<div class="image">
<img src="images/icons/features-icon-earth.png" />
</div>
<div class="info">
<strong>
Your data in the cloud
</strong>
<p>
There are many variations of passages of Lorem Ipsum available, but the majority have suffered.
</p>
</div>
</div>
<div class="feature clearfix">
<div class="image">
<img src="images/icons/features-icon-repeat.png" />
</div>
<div class="info">
<strong>
Easy to customize
</strong>
<p>
There are many variations of passages of Lorem Ipsum available, but the majority have suffered.
</p>
</div>
</div>
</div>
</div>
<div class="col col-right">
<div class="info">
<h3>Sync your contacts now</h3>
<h4>
Powerful dashboard that lets you control your site and portfolio.
</h4>
<p>
Spacial has both a web app and an android app to make your website easy and always available. It offers you all the designs in collaboration with some smart people. Your projects will look great everywhere you go. Use new components that come included. It works in all browsers and your clients can pay instantly to everyone.
</p>
</div>
</div>
</div>
</div>
</div>
<div class="index-features-cta">
<div class="container">
<div class="info">
<strong>
Ready to get started and be awesome?
</strong>
<p>
Try our 30-day trial no credit card required
</p>
</div>
<a href="#">
Sign Up Now
</a>
</div>
</div>
<div class="index-features-footer">
<div class="container">
<div class="links">
<a href="#">Log In</a>
<a href="#">Sign Up</a>
<a href="#">About Us</a>
<a href="#">Contact</a>
</div>
<div class="bottom">
<span>
© 2019 <a href="#">Spacial LLC.</a>
</span>
<span>
<a href="#">FAQS</a>
</span>
<span>
<a href="#">@spacialtheme</a>
</span>
</div>
</div>
</div>
<script type="text/javascript">
$(function () {
var $features = $(".index-features-nav .features");
var position = $features.offset().top + 40;
$(window).scroll(function () {
var top = $(this).scrollTop();
if (top > position && !$features.hasClass("fixed")) {
$features.addClass("fixed fadeInDown");
} else if (top < position && $features.hasClass("fixed")) {
$features.removeClass("fixed fadeInDown");
$features.find("li:eq(0) .nav-link").addClass("active")
}
});
$('body').scrollspy({
target: '.index-features-nav'
});
setTimeout(function () {
$(".nav-link").removeClass("featureFadeInDown");
}, 1500);
});
</script>
<!-- Google Analytics: change UA-XXXXX-X to be your site's ID. -->
<script>
// (function(b,o,i,l,e,r){b.GoogleAnalyticsObject=l;b[l]||(b[l]=
// function(){(b[l].q=b[l].q||[]).push(arguments)});b[l].l=+new Date;
// e=o.createElement(i);r=o.getElementsByTagName(i)[0];
// e.src='//www.google-analytics.com/analytics.js';
// r.parentNode.insertBefore(e,r)}(window,document,'script','ga'));
// ga('create','UA-XXXXX-X','auto');ga('send','pageview');
</script>
</body>
</html> | ark-aces/aces-website | dev-assets/spacial-2.3/index-features.html | HTML | mit | 25,190 |
<html>
<head>
<meta charset='utf-8'>
<title>Thank You!</title>
</head>
<body>
<h1>Thanks Aya</h1>
<p>Thanks for coming to our conference. We couldn't have done it without you!</p>
<p>
Political activism is at the heart of any democracy and your voice needs to be heard.
Please consider reaching out to your following representatives:
</p>
<table>
<tr><th>Name</th><th>Website</th></tr>
<tr>
<td>Kamala Harris</td>
<td>https://www.harris.senate.gov</td>
</tr>
<tr>
<td>Ted Lieu</td>
<td>https://lieu.house.gov</td>
</tr>
<tr>
<td>Brad Sherman</td>
<td>http://sherman.house.gov</td>
</tr>
<tr>
<td>Adam Schiff</td>
<td>http://schiff.house.gov</td>
</tr>
<tr>
<td>Dianne Feinstein</td>
<td>http://www.feinstein.senate.gov</td>
</tr>
</table>
</body>
</html>
| pomyslowynick/top_master | 04_event_manager/output/thanks_6.html | HTML | mit | 954 |
<div class="row">
<div class="navbar navbar-default" role="navigation">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-ex1-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" rel="home" href="main.php" title="North Ceredigion Fitness">North Ceredigion
Fitness</a>
</div>
<div class="collapse navbar-collapse navbar-ex1-collapse">
<div class="col-sm-3 col-md-5">
<form class="navbar-form" role="search" method="get" id="search-form" name="search-form">
<div class="input-group stylish-input-group">
<input type="text" class="form-control" placeholder="Search">
<span class="input-group-addon">
<span class="glyphicon glyphicon-search" aria-hidden="true"></span>
</span>
</div>
</form>
</div>
<!--<div class="col-sm-3 col-md-4">-->
<ul class="nav navbar-nav navbar-right" style="padding: 7px;">
<li>
<div class="btn-group" style="margin-left:5px;">
<a class="btn btn-primary" href="myclasses.php">My classes</a>
</div>
</li>
<li>
<div class="dropdown">
<button class="btn btn-primary dropdown-toggle" style="margin-left:5px;" type="button" id="dropdownMenu1" data-toggle="dropdown" aria-expanded="true">
Admin Centre
<span class="caret"></span>
</button>
<ul class="dropdown-menu" role="menu" aria-labelledby="dropdownMenu1">
<li role="presentation"><a role="menuitem" tabindex="-1" href="manageUsers.php">Manage Users</a></li>
<li role="presentation"><a role="menuitem" tabindex="-1" href="classInfo-edit.php">Add Class</a></li>
<li role="presentation"><a role="menuitem" tabindex="-1" href="https://www.google.com/calendar">Class Timetable</a></li>
</ul>
</div>
</li>
<li>
<div class="btn-group" style="margin-left:5px;">
<a class="btn btn-warning" href="index.php">Log out</a>
</div>
</li>
</ul>
<!--</div>-->
</div>
</div>
</div> | cob16/exercise-suber | header.html | HTML | mit | 3,138 |
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Docs for page StreamFilter.php</title>
<link rel="stylesheet" href="../media/stylesheet.css" />
<script src="../media/lib/classTree.js"></script>
<link id="webfx-tab-style-sheet" type="text/css" rel="stylesheet" href="../media/lib/tab.webfx.css" />
<script type="text/javascript" src="../media/lib/tabpane.js"></script>
<script language="javascript" type="text/javascript" src="../media/lib/ua.js"></script>
<script language="javascript" type="text/javascript">
var imgPlus = new Image();
var imgMinus = new Image();
imgPlus.src = "../media/images/plus.gif";
imgMinus.src = "../media/images/minus.gif";
function showNode(Node){
switch(navigator.family){
case 'nn4':
// Nav 4.x code fork...
var oTable = document.layers["span" + Node];
var oImg = document.layers["img" + Node];
break;
case 'ie4':
// IE 4/5 code fork...
var oTable = document.all["span" + Node];
var oImg = document.all["img" + Node];
break;
case 'gecko':
// Standards Compliant code fork...
var oTable = document.getElementById("span" + Node);
var oImg = document.getElementById("img" + Node);
break;
}
oImg.src = imgMinus.src;
oTable.style.display = "block";
}
function hideNode(Node){
switch(navigator.family){
case 'nn4':
// Nav 4.x code fork...
var oTable = document.layers["span" + Node];
var oImg = document.layers["img" + Node];
break;
case 'ie4':
// IE 4/5 code fork...
var oTable = document.all["span" + Node];
var oImg = document.all["img" + Node];
break;
case 'gecko':
// Standards Compliant code fork...
var oTable = document.getElementById("span" + Node);
var oImg = document.getElementById("img" + Node);
break;
}
oImg.src = imgPlus.src;
oTable.style.display = "none";
}
function nodeIsVisible(Node){
switch(navigator.family){
case 'nn4':
// Nav 4.x code fork...
var oTable = document.layers["span" + Node];
break;
case 'ie4':
// IE 4/5 code fork...
var oTable = document.all["span" + Node];
break;
case 'gecko':
// Standards Compliant code fork...
var oTable = document.getElementById("span" + Node);
break;
}
return (oTable && oTable.style.display == "block");
}
function toggleNodeVisibility(Node){
if (nodeIsVisible(Node)){
hideNode(Node);
}else{
showNode(Node);
}
}
</script>
<!-- template designed by Julien Damon based on PHPEdit's generated templates, and tweaked by Greg Beaver -->
<body bgcolor="#ffffff" >
<h2>File: /vendors/swiftMailer/classes/Swift/StreamFilter.php</h2>
<div class="tab-pane" id="tabPane1">
<script type="text/javascript">
tp1 = new WebFXTabPane( document.getElementById( "tabPane1" ) );
</script>
<div class="tab-page" id="Description">
<h2 class="tab">Description</h2>
<!-- ========== Info from phpDoc block ========= -->
<ul>
</ul>
<!-- =========== Used Classes =========== -->
<A NAME='classes_summary'><!-- --></A>
<h3>Classes defined in this file</h3>
<TABLE CELLPADDING='3' CELLSPACING='0' WIDTH='100%' CLASS="border">
<THEAD>
<TR><TD STYLE="width:20%"><h4>CLASS NAME</h4></TD><TD STYLE="width: 80%"><h4>DESCRIPTION</h4></TD></TR>
</THEAD>
<TBODY>
<TR BGCOLOR='white' CLASS='TableRowColor'>
<TD><a href="Swift_StreamFilter.html">Swift_StreamFilter</a></TD>
<TD>Processes bytes as they pass through a stream and performs filtering.</TD>
</TR>
</TBODY>
</TABLE>
</div>
<script type="text/javascript">tp1.addTabPage( document.getElementById( "Description" ) );</script>
<div class="tab-page" id="tabPage1">
<!-- ============ Includes DETAIL =========== -->
<h2 class="tab">Include/Require Statements</h2>
<script type="text/javascript">tp1.addTabPage( document.getElementById( "tabPage1" ) );</script>
</div>
<div class="tab-page" id="tabPage2">
<!-- ============ GLOBAL DETAIL =========== -->
<h2 class="tab">Global Variables</h2>
<script type="text/javascript">tp1.addTabPage( document.getElementById( "tabPage2" ) );</script>
</div>
<div class="tab-page" id="tabPage3">
<!-- ============ CONSTANT DETAIL =========== -->
<A NAME='constant_detail'></A>
<h2 class="tab">Constants</h2>
<script type="text/javascript">tp1.addTabPage( document.getElementById( "tabPage3" ) );</script>
</div>
<div class="tab-page" id="tabPage4">
<!-- ============ FUNCTION DETAIL =========== -->
<h2 class="tab">Functions</h2>
<script type="text/javascript">tp1.addTabPage( document.getElementById( "tabPage4" ) );</script>
</div>
</div>
<script type="text/javascript">
//<![CDATA[
setupAllTabs();
//]]>
</script>
<div id="credit">
<hr />
Documentation generated on Fri, 12 Nov 2010 20:45:30 +0000 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.4.3</a>
</div>
</body>
</html>
| kmchugh/YiiPlinth | protected/extensions/Email/Mail/doc/Swift/_vendors---swiftMailer---classes---Swift---StreamFilter.php.html | HTML | mit | 5,355 |
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="ApiGen 2.8.0" />
<title>Namespace Gedmo\Uploadable\Mapping | 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 class="active"><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 class="active"><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 class="active"><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><a href="namespace-Symfony.html">Symfony<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.html">Bridge<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Doctrine.html">Doctrine<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Doctrine.CacheWarmer.html">CacheWarmer</a>
</li>
<li><a href="namespace-Symfony.Bridge.Doctrine.DataCollector.html">DataCollector</a>
</li>
<li><a href="namespace-Symfony.Bridge.Doctrine.DataFixtures.html">DataFixtures</a>
</li>
<li><a href="namespace-Symfony.Bridge.Doctrine.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Doctrine.DependencyInjection.CompilerPass.html">CompilerPass</a>
</li>
<li><a href="namespace-Symfony.Bridge.Doctrine.DependencyInjection.Security.html">Security<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Doctrine.DependencyInjection.Security.UserProvider.html">UserProvider</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Bridge.Doctrine.ExpressionLanguage.html">ExpressionLanguage</a>
</li>
<li><a href="namespace-Symfony.Bridge.Doctrine.Form.html">Form<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Doctrine.Form.ChoiceList.html">ChoiceList</a>
</li>
<li><a href="namespace-Symfony.Bridge.Doctrine.Form.DataTransformer.html">DataTransformer</a>
</li>
<li><a href="namespace-Symfony.Bridge.Doctrine.Form.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Symfony.Bridge.Doctrine.Form.Type.html">Type</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bridge.Doctrine.HttpFoundation.html">HttpFoundation</a>
</li>
<li><a href="namespace-Symfony.Bridge.Doctrine.Logger.html">Logger</a>
</li>
<li><a href="namespace-Symfony.Bridge.Doctrine.Security.html">Security<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Doctrine.Security.RememberMe.html">RememberMe</a>
</li>
<li><a href="namespace-Symfony.Bridge.Doctrine.Security.User.html">User</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bridge.Doctrine.Test.html">Test</a>
</li>
<li><a href="namespace-Symfony.Bridge.Doctrine.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Doctrine.Tests.DataCollector.html">DataCollector</a>
</li>
<li><a href="namespace-Symfony.Bridge.Doctrine.Tests.DataFixtures.html">DataFixtures</a>
</li>
<li><a href="namespace-Symfony.Bridge.Doctrine.Tests.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Doctrine.Tests.DependencyInjection.CompilerPass.html">CompilerPass</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bridge.Doctrine.Tests.ExpressionLanguage.html">ExpressionLanguage</a>
</li>
<li><a href="namespace-Symfony.Bridge.Doctrine.Tests.Fixtures.html">Fixtures</a>
</li>
<li><a href="namespace-Symfony.Bridge.Doctrine.Tests.Form.html">Form<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Doctrine.Tests.Form.ChoiceList.html">ChoiceList</a>
</li>
<li><a href="namespace-Symfony.Bridge.Doctrine.Tests.Form.DataTransformer.html">DataTransformer</a>
</li>
<li><a href="namespace-Symfony.Bridge.Doctrine.Tests.Form.Type.html">Type</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bridge.Doctrine.Tests.HttpFoundation.html">HttpFoundation</a>
</li>
<li><a href="namespace-Symfony.Bridge.Doctrine.Tests.Logger.html">Logger</a>
</li>
<li><a href="namespace-Symfony.Bridge.Doctrine.Tests.Security.html">Security<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Doctrine.Tests.Security.User.html">User</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bridge.Doctrine.Tests.Validator.html">Validator<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Doctrine.Tests.Validator.Constraints.html">Constraints</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Bridge.Doctrine.Validator.html">Validator<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Doctrine.Validator.Constraints.html">Constraints</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Bridge.Monolog.html">Monolog<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Monolog.Formatter.html">Formatter</a>
</li>
<li><a href="namespace-Symfony.Bridge.Monolog.Handler.html">Handler</a>
</li>
<li><a href="namespace-Symfony.Bridge.Monolog.Processor.html">Processor</a>
</li>
<li><a href="namespace-Symfony.Bridge.Monolog.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Monolog.Tests.Handler.html">Handler</a>
</li>
<li><a href="namespace-Symfony.Bridge.Monolog.Tests.Processor.html">Processor</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Bridge.Propel1.html">Propel1<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Propel1.DataCollector.html">DataCollector</a>
</li>
<li><a href="namespace-Symfony.Bridge.Propel1.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Propel1.DependencyInjection.Security.html">Security<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Propel1.DependencyInjection.Security.UserProvider.html">UserProvider</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Bridge.Propel1.Form.html">Form<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Propel1.Form.ChoiceList.html">ChoiceList</a>
</li>
<li><a href="namespace-Symfony.Bridge.Propel1.Form.DataTransformer.html">DataTransformer</a>
</li>
<li><a href="namespace-Symfony.Bridge.Propel1.Form.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Symfony.Bridge.Propel1.Form.Type.html">Type</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bridge.Propel1.Logger.html">Logger</a>
</li>
<li><a href="namespace-Symfony.Bridge.Propel1.Security.html">Security<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Propel1.Security.User.html">User</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bridge.Propel1.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Propel1.Tests.DataCollector.html">DataCollector</a>
</li>
<li><a href="namespace-Symfony.Bridge.Propel1.Tests.Fixtures.html">Fixtures</a>
</li>
<li><a href="namespace-Symfony.Bridge.Propel1.Tests.Form.html">Form<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Propel1.Tests.Form.ChoiceList.html">ChoiceList</a>
</li>
<li><a href="namespace-Symfony.Bridge.Propel1.Tests.Form.DataTransformer.html">DataTransformer</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-Symfony.Bridge.ProxyManager.html">ProxyManager<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.ProxyManager.LazyProxy.html">LazyProxy<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.ProxyManager.LazyProxy.Instantiator.html">Instantiator</a>
</li>
<li><a href="namespace-Symfony.Bridge.ProxyManager.LazyProxy.PhpDumper.html">PhpDumper</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bridge.ProxyManager.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.ProxyManager.Tests.LazyProxy.html">LazyProxy<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.ProxyManager.Tests.LazyProxy.Dumper.html">Dumper</a>
</li>
<li><a href="namespace-Symfony.Bridge.ProxyManager.Tests.LazyProxy.Instantiator.html">Instantiator</a>
</li>
<li><a href="namespace-Symfony.Bridge.ProxyManager.Tests.LazyProxy.PhpDumper.html">PhpDumper</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-Symfony.Bridge.Twig.html">Twig<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Twig.Extension.html">Extension</a>
</li>
<li><a href="namespace-Symfony.Bridge.Twig.Form.html">Form</a>
</li>
<li><a href="namespace-Symfony.Bridge.Twig.Node.html">Node</a>
</li>
<li><a href="namespace-Symfony.Bridge.Twig.NodeVisitor.html">NodeVisitor</a>
</li>
<li><a href="namespace-Symfony.Bridge.Twig.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Twig.Tests.Extension.html">Extension<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Twig.Tests.Extension.Fixtures.html">Fixtures</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bridge.Twig.Tests.Node.html">Node</a>
</li>
<li><a href="namespace-Symfony.Bridge.Twig.Tests.NodeVisitor.html">NodeVisitor</a>
</li>
<li><a href="namespace-Symfony.Bridge.Twig.Tests.TokenParser.html">TokenParser</a>
</li>
<li><a href="namespace-Symfony.Bridge.Twig.Tests.Translation.html">Translation</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bridge.Twig.TokenParser.html">TokenParser</a>
</li>
<li><a href="namespace-Symfony.Bridge.Twig.Translation.html">Translation</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Bundle.html">Bundle<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.html">AsseticBundle<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.CacheWarmer.html">CacheWarmer</a>
</li>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Command.html">Command</a>
</li>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Config.html">Config</a>
</li>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Controller.html">Controller</a>
</li>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.DependencyInjection.Compiler.html">Compiler</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Factory.html">Factory<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Factory.Loader.html">Loader</a>
</li>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Factory.Resource.html">Resource</a>
</li>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Factory.Worker.html">Worker</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Routing.html">Routing</a>
</li>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Templating.html">Templating</a>
</li>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Tests.CacheWarmer.html">CacheWarmer</a>
</li>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Tests.Command.html">Command</a>
</li>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Tests.Controller.html">Controller</a>
</li>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Tests.DependencyInjection.html">DependencyInjection</a>
</li>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Tests.Factory.html">Factory<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Tests.Factory.Resource.html">Resource</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Tests.Templating.html">Templating</a>
</li>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Tests.TestBundle.html">TestBundle</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Twig.html">Twig</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.html">FrameworkBundle<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.CacheWarmer.html">CacheWarmer</a>
</li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Command.html">Command</a>
</li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Console.html">Console<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Console.Descriptor.html">Descriptor</a>
</li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Console.Helper.html">Helper</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Controller.html">Controller</a>
</li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.DataCollector.html">DataCollector</a>
</li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.DependencyInjection.Compiler.html">Compiler</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Fragment.html">Fragment</a>
</li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.HttpCache.html">HttpCache</a>
</li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Routing.html">Routing</a>
</li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Templating.html">Templating<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Templating.Asset.html">Asset</a>
</li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Templating.Helper.html">Helper</a>
</li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Templating.Loader.html">Loader</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Test.html">Test</a>
</li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.CacheWarmer.html">CacheWarmer</a>
</li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Console.html">Console<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Console.Descriptor.html">Descriptor</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Controller.html">Controller</a>
</li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.DependencyInjection.Compiler.html">Compiler</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Fixtures.html">Fixtures<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Fixtures.BaseBundle.html">BaseBundle</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Fragment.html">Fragment</a>
</li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Functional.html">Functional<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Functional.app.html">app</a>
</li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Functional.Bundle.html">Bundle<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Functional.Bundle.TestBundle.html">TestBundle<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Functional.Bundle.TestBundle.Controller.html">Controller</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Routing.html">Routing</a>
</li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Templating.html">Templating<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Templating.Helper.html">Helper<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Templating.Helper.Fixtures.html">Fixtures</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Templating.Loader.html">Loader</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Translation.html">Translation</a>
</li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Validator.html">Validator</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Translation.html">Translation</a>
</li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Validator.html">Validator</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.MonologBundle.html">MonologBundle<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.MonologBundle.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.MonologBundle.DependencyInjection.Compiler.html">Compiler</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.MonologBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.MonologBundle.Tests.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.MonologBundle.Tests.DependencyInjection.Compiler.html">Compiler</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.html">SecurityBundle<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Command.html">Command</a>
</li>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.DataCollector.html">DataCollector</a>
</li>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.DependencyInjection.Compiler.html">Compiler</a>
</li>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.DependencyInjection.Security.html">Security<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.DependencyInjection.Security.Factory.html">Factory</a>
</li>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.DependencyInjection.Security.UserProvider.html">UserProvider</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Security.html">Security</a>
</li>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Templating.html">Templating<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Templating.Helper.html">Helper</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Tests.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Tests.DependencyInjection.Security.html">Security<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Tests.DependencyInjection.Security.Factory.html">Factory</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Tests.Functional.html">Functional<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Tests.Functional.app.html">app</a>
</li>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Tests.Functional.Bundle.html">Bundle<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Tests.Functional.Bundle.CsrfFormLoginBundle.html">CsrfFormLoginBundle<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Tests.Functional.Bundle.CsrfFormLoginBundle.Controller.html">Controller</a>
</li>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Tests.Functional.Bundle.CsrfFormLoginBundle.Form.html">Form</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Tests.Functional.Bundle.FormLoginBundle.html">FormLoginBundle<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Tests.Functional.Bundle.FormLoginBundle.Controller.html">Controller</a>
</li>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Tests.Functional.Bundle.FormLoginBundle.DependencyInjection.html">DependencyInjection</a>
</li>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Tests.Functional.Bundle.FormLoginBundle.Security.html">Security</a>
</li>
</ul></li></ul></li></ul></li></ul></li>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Twig.html">Twig<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Twig.Extension.html">Extension</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Bundle.SwiftmailerBundle.html">SwiftmailerBundle<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.SwiftmailerBundle.Command.html">Command</a>
</li>
<li><a href="namespace-Symfony.Bundle.SwiftmailerBundle.DataCollector.html">DataCollector</a>
</li>
<li><a href="namespace-Symfony.Bundle.SwiftmailerBundle.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.SwiftmailerBundle.DependencyInjection.Compiler.html">Compiler</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.SwiftmailerBundle.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Symfony.Bundle.SwiftmailerBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.SwiftmailerBundle.Tests.DependencyInjection.html">DependencyInjection</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Bundle.TwigBundle.html">TwigBundle<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.TwigBundle.CacheWarmer.html">CacheWarmer</a>
</li>
<li><a href="namespace-Symfony.Bundle.TwigBundle.Command.html">Command</a>
</li>
<li><a href="namespace-Symfony.Bundle.TwigBundle.Controller.html">Controller</a>
</li>
<li><a href="namespace-Symfony.Bundle.TwigBundle.Debug.html">Debug</a>
</li>
<li><a href="namespace-Symfony.Bundle.TwigBundle.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.TwigBundle.DependencyInjection.Compiler.html">Compiler</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.TwigBundle.Extension.html">Extension</a>
</li>
<li><a href="namespace-Symfony.Bundle.TwigBundle.Loader.html">Loader</a>
</li>
<li><a href="namespace-Symfony.Bundle.TwigBundle.Node.html">Node</a>
</li>
<li><a href="namespace-Symfony.Bundle.TwigBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.TwigBundle.Tests.Controller.html">Controller</a>
</li>
<li><a href="namespace-Symfony.Bundle.TwigBundle.Tests.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.TwigBundle.Tests.DependencyInjection.Compiler.html">Compiler</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.TwigBundle.Tests.Loader.html">Loader</a>
</li>
<li><a href="namespace-Symfony.Bundle.TwigBundle.Tests.TokenParser.html">TokenParser</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.TwigBundle.TokenParser.html">TokenParser</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.WebProfilerBundle.html">WebProfilerBundle<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.WebProfilerBundle.Controller.html">Controller</a>
</li>
<li><a href="namespace-Symfony.Bundle.WebProfilerBundle.DependencyInjection.html">DependencyInjection</a>
</li>
<li><a href="namespace-Symfony.Bundle.WebProfilerBundle.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Symfony.Bundle.WebProfilerBundle.Profiler.html">Profiler</a>
</li>
<li><a href="namespace-Symfony.Bundle.WebProfilerBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.WebProfilerBundle.Tests.Controller.html">Controller</a>
</li>
<li><a href="namespace-Symfony.Bundle.WebProfilerBundle.Tests.DependencyInjection.html">DependencyInjection</a>
</li>
<li><a href="namespace-Symfony.Bundle.WebProfilerBundle.Tests.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Symfony.Bundle.WebProfilerBundle.Tests.Profiler.html">Profiler</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-Symfony.Component.html">Component<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.BrowserKit.html">BrowserKit<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.BrowserKit.Tests.html">Tests</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.ClassLoader.html">ClassLoader<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.ClassLoader.Tests.html">Tests</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Config.html">Config<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Config.Definition.html">Definition<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Config.Definition.Builder.html">Builder</a>
</li>
<li><a href="namespace-Symfony.Component.Config.Definition.Dumper.html">Dumper</a>
</li>
<li><a href="namespace-Symfony.Component.Config.Definition.Exception.html">Exception</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Config.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.Config.Loader.html">Loader</a>
</li>
<li><a href="namespace-Symfony.Component.Config.Resource.html">Resource</a>
</li>
<li><a href="namespace-Symfony.Component.Config.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Config.Tests.Definition.html">Definition<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Config.Tests.Definition.Builder.html">Builder</a>
</li>
<li><a href="namespace-Symfony.Component.Config.Tests.Definition.Dumper.html">Dumper</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Config.Tests.Fixtures.html">Fixtures<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Config.Tests.Fixtures.Configuration.html">Configuration</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Config.Tests.Loader.html">Loader</a>
</li>
<li><a href="namespace-Symfony.Component.Config.Tests.Resource.html">Resource</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Config.Util.html">Util</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Console.html">Console<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Console.Command.html">Command</a>
</li>
<li><a href="namespace-Symfony.Component.Console.Descriptor.html">Descriptor</a>
</li>
<li><a href="namespace-Symfony.Component.Console.Event.html">Event</a>
</li>
<li><a href="namespace-Symfony.Component.Console.Formatter.html">Formatter</a>
</li>
<li><a href="namespace-Symfony.Component.Console.Helper.html">Helper</a>
</li>
<li><a href="namespace-Symfony.Component.Console.Input.html">Input</a>
</li>
<li><a href="namespace-Symfony.Component.Console.Output.html">Output</a>
</li>
<li><a href="namespace-Symfony.Component.Console.Tester.html">Tester</a>
</li>
<li><a href="namespace-Symfony.Component.Console.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Console.Tests.Command.html">Command</a>
</li>
<li><a href="namespace-Symfony.Component.Console.Tests.Descriptor.html">Descriptor</a>
</li>
<li><a href="namespace-Symfony.Component.Console.Tests.Fixtures.html">Fixtures</a>
</li>
<li><a href="namespace-Symfony.Component.Console.Tests.Formatter.html">Formatter</a>
</li>
<li><a href="namespace-Symfony.Component.Console.Tests.Helper.html">Helper</a>
</li>
<li><a href="namespace-Symfony.Component.Console.Tests.Input.html">Input</a>
</li>
<li><a href="namespace-Symfony.Component.Console.Tests.Output.html">Output</a>
</li>
<li><a href="namespace-Symfony.Component.Console.Tests.Tester.html">Tester</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Component.CssSelector.html">CssSelector<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.CssSelector.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.CssSelector.Node.html">Node</a>
</li>
<li><a href="namespace-Symfony.Component.CssSelector.Parser.html">Parser<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.CssSelector.Parser.Handler.html">Handler</a>
</li>
<li><a href="namespace-Symfony.Component.CssSelector.Parser.Shortcut.html">Shortcut</a>
</li>
<li><a href="namespace-Symfony.Component.CssSelector.Parser.Tokenizer.html">Tokenizer</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.CssSelector.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.CssSelector.Tests.Node.html">Node</a>
</li>
<li><a href="namespace-Symfony.Component.CssSelector.Tests.Parser.html">Parser<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.CssSelector.Tests.Parser.Handler.html">Handler</a>
</li>
<li><a href="namespace-Symfony.Component.CssSelector.Tests.Parser.Shortcut.html">Shortcut</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.CssSelector.Tests.XPath.html">XPath</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.CssSelector.XPath.html">XPath<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.CssSelector.XPath.Extension.html">Extension</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Component.Debug.html">Debug<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Debug.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.Debug.FatalErrorHandler.html">FatalErrorHandler</a>
</li>
<li><a href="namespace-Symfony.Component.Debug.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Debug.Tests.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.Debug.Tests.FatalErrorHandler.html">FatalErrorHandler</a>
</li>
<li><a href="namespace-Symfony.Component.Debug.Tests.Fixtures.html">Fixtures</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Component.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.DependencyInjection.Compiler.html">Compiler</a>
</li>
<li><a href="namespace-Symfony.Component.DependencyInjection.Dump.html">Dump</a>
</li>
<li><a href="namespace-Symfony.Component.DependencyInjection.Dumper.html">Dumper</a>
</li>
<li><a href="namespace-Symfony.Component.DependencyInjection.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.DependencyInjection.Extension.html">Extension</a>
</li>
<li><a href="namespace-Symfony.Component.DependencyInjection.LazyProxy.html">LazyProxy<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.DependencyInjection.LazyProxy.Instantiator.html">Instantiator</a>
</li>
<li><a href="namespace-Symfony.Component.DependencyInjection.LazyProxy.PhpDumper.html">PhpDumper</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.DependencyInjection.Loader.html">Loader</a>
</li>
<li><a href="namespace-Symfony.Component.DependencyInjection.ParameterBag.html">ParameterBag</a>
</li>
<li><a href="namespace-Symfony.Component.DependencyInjection.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.DependencyInjection.Tests.Compiler.html">Compiler</a>
</li>
<li><a href="namespace-Symfony.Component.DependencyInjection.Tests.Dumper.html">Dumper</a>
</li>
<li><a href="namespace-Symfony.Component.DependencyInjection.Tests.Extension.html">Extension</a>
</li>
<li><a href="namespace-Symfony.Component.DependencyInjection.Tests.LazyProxy.html">LazyProxy<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.DependencyInjection.Tests.LazyProxy.Instantiator.html">Instantiator</a>
</li>
<li><a href="namespace-Symfony.Component.DependencyInjection.Tests.LazyProxy.PhpDumper.html">PhpDumper</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.DependencyInjection.Tests.Loader.html">Loader</a>
</li>
<li><a href="namespace-Symfony.Component.DependencyInjection.Tests.ParameterBag.html">ParameterBag</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Component.DomCrawler.html">DomCrawler<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.DomCrawler.Field.html">Field</a>
</li>
<li><a href="namespace-Symfony.Component.DomCrawler.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.DomCrawler.Tests.Field.html">Field</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Component.EventDispatcher.html">EventDispatcher<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.EventDispatcher.Debug.html">Debug</a>
</li>
<li><a href="namespace-Symfony.Component.EventDispatcher.Tests.html">Tests</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.ExpressionLanguage.html">ExpressionLanguage<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.ExpressionLanguage.Node.html">Node</a>
</li>
<li><a href="namespace-Symfony.Component.ExpressionLanguage.ParserCache.html">ParserCache</a>
</li>
<li><a href="namespace-Symfony.Component.ExpressionLanguage.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.ExpressionLanguage.Tests.Node.html">Node</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Component.Filesystem.html">Filesystem<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Filesystem.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.Filesystem.Tests.html">Tests</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Finder.html">Finder<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Finder.Adapter.html">Adapter</a>
</li>
<li><a href="namespace-Symfony.Component.Finder.Comparator.html">Comparator</a>
</li>
<li><a href="namespace-Symfony.Component.Finder.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.Finder.Expression.html">Expression</a>
</li>
<li><a href="namespace-Symfony.Component.Finder.Iterator.html">Iterator</a>
</li>
<li><a href="namespace-Symfony.Component.Finder.Shell.html">Shell</a>
</li>
<li><a href="namespace-Symfony.Component.Finder.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Finder.Tests.Comparator.html">Comparator</a>
</li>
<li><a href="namespace-Symfony.Component.Finder.Tests.Expression.html">Expression</a>
</li>
<li><a href="namespace-Symfony.Component.Finder.Tests.FakeAdapter.html">FakeAdapter</a>
</li>
<li><a href="namespace-Symfony.Component.Finder.Tests.Iterator.html">Iterator</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Component.Form.html">Form<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Form.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Extension.html">Extension<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Form.Extension.Core.html">Core<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Form.Extension.Core.ChoiceList.html">ChoiceList</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Extension.Core.DataMapper.html">DataMapper</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Extension.Core.DataTransformer.html">DataTransformer</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Extension.Core.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Extension.Core.Type.html">Type</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Extension.Core.View.html">View</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Form.Extension.Csrf.html">Csrf<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Form.Extension.Csrf.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Extension.Csrf.Type.html">Type</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Form.Extension.DataCollector.html">DataCollector<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Form.Extension.DataCollector.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Extension.DataCollector.Proxy.html">Proxy</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Extension.DataCollector.Type.html">Type</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Form.Extension.DependencyInjection.html">DependencyInjection</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Extension.HttpFoundation.html">HttpFoundation<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Form.Extension.HttpFoundation.Type.html">Type</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Form.Extension.Templating.html">Templating</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Extension.Validator.html">Validator<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Form.Extension.Validator.Constraints.html">Constraints</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Extension.Validator.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Extension.Validator.Type.html">Type</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Extension.Validator.Util.html">Util</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Extension.Validator.ViolationMapper.html">ViolationMapper</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Component.Form.Guess.html">Guess</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Test.html">Test</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.html">Extension<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.Core.html">Core<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.Core.ChoiceList.html">ChoiceList</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.Core.DataMapper.html">DataMapper</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.Core.DataTransformer.html">DataTransformer</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.Core.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.Core.Type.html">Type</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.Csrf.html">Csrf<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.Csrf.CsrfProvider.html">CsrfProvider</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.Csrf.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.Csrf.Type.html">Type</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.DataCollector.html">DataCollector<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.DataCollector.Type.html">Type</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.HttpFoundation.html">HttpFoundation<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.HttpFoundation.EventListener.html">EventListener</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.Validator.html">Validator<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.Validator.Constraints.html">Constraints</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.Validator.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.Validator.Type.html">Type</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.Validator.Util.html">Util</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.Validator.ViolationMapper.html">ViolationMapper</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Component.Form.Tests.Fixtures.html">Fixtures</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Tests.Guess.html">Guess</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Tests.Util.html">Util</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Form.Util.html">Util</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.HttpFoundation.html">HttpFoundation<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.HttpFoundation.File.html">File<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.HttpFoundation.File.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.HttpFoundation.File.MimeType.html">MimeType</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.HttpFoundation.Session.html">Session<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.HttpFoundation.Session.Attribute.html">Attribute</a>
</li>
<li><a href="namespace-Symfony.Component.HttpFoundation.Session.Flash.html">Flash</a>
</li>
<li><a href="namespace-Symfony.Component.HttpFoundation.Session.Storage.html">Storage<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.HttpFoundation.Session.Storage.Handler.html">Handler</a>
</li>
<li><a href="namespace-Symfony.Component.HttpFoundation.Session.Storage.Proxy.html">Proxy</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Component.HttpFoundation.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.HttpFoundation.Tests.File.html">File<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.HttpFoundation.Tests.File.MimeType.html">MimeType</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.HttpFoundation.Tests.Session.html">Session<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.HttpFoundation.Tests.Session.Attribute.html">Attribute</a>
</li>
<li><a href="namespace-Symfony.Component.HttpFoundation.Tests.Session.Flash.html">Flash</a>
</li>
<li><a href="namespace-Symfony.Component.HttpFoundation.Tests.Session.Storage.html">Storage<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.HttpFoundation.Tests.Session.Storage.Handler.html">Handler</a>
</li>
<li><a href="namespace-Symfony.Component.HttpFoundation.Tests.Session.Storage.Proxy.html">Proxy</a>
</li>
</ul></li></ul></li></ul></li></ul></li>
<li><a href="namespace-Symfony.Component.HttpKernel.html">HttpKernel<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.HttpKernel.Bundle.html">Bundle</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.CacheClearer.html">CacheClearer</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.CacheWarmer.html">CacheWarmer</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Config.html">Config</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Controller.html">Controller</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.DataCollector.html">DataCollector<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.HttpKernel.DataCollector.Util.html">Util</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.HttpKernel.Debug.html">Debug</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.DependencyInjection.html">DependencyInjection</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Event.html">Event</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Fragment.html">Fragment</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.HttpCache.html">HttpCache</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Log.html">Log</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Profiler.html">Profiler</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.Bundle.html">Bundle</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.CacheClearer.html">CacheClearer</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.CacheWarmer.html">CacheWarmer</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.Config.html">Config</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.Controller.html">Controller</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.DataCollector.html">DataCollector</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.Debug.html">Debug</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.DependencyInjection.html">DependencyInjection</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.Fixtures.html">Fixtures<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.Fixtures.ExtensionAbsentBundle.html">ExtensionAbsentBundle</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.Fixtures.ExtensionLoadedBundle.html">ExtensionLoadedBundle<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.Fixtures.ExtensionLoadedBundle.DependencyInjection.html">DependencyInjection</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.Fixtures.ExtensionPresentBundle.html">ExtensionPresentBundle<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.Fixtures.ExtensionPresentBundle.Command.html">Command</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.Fixtures.ExtensionPresentBundle.DependencyInjection.html">DependencyInjection</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.Fragment.html">Fragment</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.HttpCache.html">HttpCache</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.Profiler.html">Profiler<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.Profiler.Mock.html">Mock</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-Symfony.Component.Icu.html">Icu<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Icu.Tests.html">Tests</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Intl.html">Intl<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Intl.Collator.html">Collator</a>
</li>
<li><a href="namespace-Symfony.Component.Intl.DateFormatter.html">DateFormatter<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Intl.DateFormatter.DateFormat.html">DateFormat</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Intl.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.Intl.Globals.html">Globals</a>
</li>
<li><a href="namespace-Symfony.Component.Intl.Locale.html">Locale</a>
</li>
<li><a href="namespace-Symfony.Component.Intl.NumberFormatter.html">NumberFormatter</a>
</li>
<li><a href="namespace-Symfony.Component.Intl.ResourceBundle.html">ResourceBundle<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Intl.ResourceBundle.Compiler.html">Compiler</a>
</li>
<li><a href="namespace-Symfony.Component.Intl.ResourceBundle.Reader.html">Reader</a>
</li>
<li><a href="namespace-Symfony.Component.Intl.ResourceBundle.Transformer.html">Transformer<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Intl.ResourceBundle.Transformer.Rule.html">Rule</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Intl.ResourceBundle.Util.html">Util</a>
</li>
<li><a href="namespace-Symfony.Component.Intl.ResourceBundle.Writer.html">Writer</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Intl.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Intl.Tests.Collator.html">Collator<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Intl.Tests.Collator.Verification.html">Verification</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Intl.Tests.DateFormatter.html">DateFormatter<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Intl.Tests.DateFormatter.Verification.html">Verification</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Intl.Tests.Globals.html">Globals<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Intl.Tests.Globals.Verification.html">Verification</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Intl.Tests.Locale.html">Locale<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Intl.Tests.Locale.Verification.html">Verification</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Intl.Tests.NumberFormatter.html">NumberFormatter<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Intl.Tests.NumberFormatter.Verification.html">Verification</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Intl.Tests.ResourceBundle.html">ResourceBundle<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Intl.Tests.ResourceBundle.Reader.html">Reader</a>
</li>
<li><a href="namespace-Symfony.Component.Intl.Tests.ResourceBundle.Util.html">Util</a>
</li>
<li><a href="namespace-Symfony.Component.Intl.Tests.ResourceBundle.Writer.html">Writer</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Intl.Tests.Util.html">Util</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Intl.Util.html">Util</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Locale.html">Locale<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Locale.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Locale.Tests.Stub.html">Stub</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Component.OptionsResolver.html">OptionsResolver<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.OptionsResolver.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.OptionsResolver.Tests.html">Tests</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Process.html">Process<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Process.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.Process.Tests.html">Tests</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.PropertyAccess.html">PropertyAccess<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.PropertyAccess.Exception.html">Exception</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Routing.html">Routing<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Routing.Annotation.html">Annotation</a>
</li>
<li><a href="namespace-Symfony.Component.Routing.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.Routing.Generator.html">Generator<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Routing.Generator.Dumper.html">Dumper</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Routing.Loader.html">Loader</a>
</li>
<li><a href="namespace-Symfony.Component.Routing.Matcher.html">Matcher<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Routing.Matcher.Dumper.html">Dumper</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Routing.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Routing.Tests.Annotation.html">Annotation</a>
</li>
<li><a href="namespace-Symfony.Component.Routing.Tests.Fixtures.html">Fixtures<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Routing.Tests.Fixtures.AnnotatedClasses.html">AnnotatedClasses</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Routing.Tests.Generator.html">Generator<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Routing.Tests.Generator.Dumper.html">Dumper</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Routing.Tests.Loader.html">Loader</a>
</li>
<li><a href="namespace-Symfony.Component.Routing.Tests.Matcher.html">Matcher<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Routing.Tests.Matcher.Dumper.html">Dumper</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-Symfony.Component.Security.html">Security<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Security.Acl.html">Acl<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Security.Acl.Dbal.html">Dbal</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Acl.Domain.html">Domain</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Acl.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Acl.Model.html">Model</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Acl.Permission.html">Permission</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Acl.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Security.Acl.Tests.Dbal.html">Dbal</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Acl.Tests.Domain.html">Domain</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Acl.Tests.Permission.html">Permission</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Acl.Tests.Voter.html">Voter</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Security.Acl.Voter.html">Voter</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Security.Core.html">Core<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Security.Core.Authentication.html">Authentication<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Security.Core.Authentication.Provider.html">Provider</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Core.Authentication.RememberMe.html">RememberMe</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Core.Authentication.Token.html">Token</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Security.Core.Authorization.html">Authorization<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Security.Core.Authorization.Voter.html">Voter</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Security.Core.Encoder.html">Encoder</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Core.Event.html">Event</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Core.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Core.Role.html">Role</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Core.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Security.Core.Tests.Authentication.html">Authentication<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Security.Core.Tests.Authentication.Provider.html">Provider</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Core.Tests.Authentication.RememberMe.html">RememberMe</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Core.Tests.Authentication.Token.html">Token</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Security.Core.Tests.Authorization.html">Authorization<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Security.Core.Tests.Authorization.Voter.html">Voter</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Security.Core.Tests.Encoder.html">Encoder</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Core.Tests.Role.html">Role</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Core.Tests.User.html">User</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Core.Tests.Util.html">Util</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Core.Tests.Validator.html">Validator<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Security.Core.Tests.Validator.Constraints.html">Constraints</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Component.Security.Core.User.html">User</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Core.Util.html">Util</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Core.Validator.html">Validator<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Security.Core.Validator.Constraints.html">Constraints</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Component.Security.Csrf.html">Csrf<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Security.Csrf.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Csrf.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Security.Csrf.Tests.TokenGenerator.html">TokenGenerator</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Csrf.Tests.TokenStorage.html">TokenStorage</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Security.Csrf.TokenGenerator.html">TokenGenerator</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Csrf.TokenStorage.html">TokenStorage</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Security.Http.html">Http<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Security.Http.Authentication.html">Authentication</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Http.Authorization.html">Authorization</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Http.EntryPoint.html">EntryPoint</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Http.Event.html">Event</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Http.Firewall.html">Firewall</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Http.Logout.html">Logout</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Http.RememberMe.html">RememberMe</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Http.Session.html">Session</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Http.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Security.Http.Tests.Authentication.html">Authentication</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Http.Tests.EntryPoint.html">EntryPoint</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Http.Tests.Firewall.html">Firewall</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Http.Tests.Logout.html">Logout</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Http.Tests.RememberMe.html">RememberMe</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Http.Tests.Session.html">Session</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Component.Security.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Security.Tests.Core.html">Core<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Security.Tests.Core.Authentication.html">Authentication<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Security.Tests.Core.Authentication.Token.html">Token</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Security.Tests.Core.User.html">User</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Security.Tests.Http.html">Http<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Security.Tests.Http.Firewall.html">Firewall</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-Symfony.Component.Serializer.html">Serializer<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Serializer.Encoder.html">Encoder</a>
</li>
<li><a href="namespace-Symfony.Component.Serializer.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.Serializer.Normalizer.html">Normalizer</a>
</li>
<li><a href="namespace-Symfony.Component.Serializer.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Serializer.Tests.Encoder.html">Encoder</a>
</li>
<li><a href="namespace-Symfony.Component.Serializer.Tests.Fixtures.html">Fixtures</a>
</li>
<li><a href="namespace-Symfony.Component.Serializer.Tests.Normalizer.html">Normalizer</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Component.Stopwatch.html">Stopwatch</a>
</li>
<li><a href="namespace-Symfony.Component.Templating.html">Templating<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Templating.Asset.html">Asset</a>
</li>
<li><a href="namespace-Symfony.Component.Templating.Helper.html">Helper</a>
</li>
<li><a href="namespace-Symfony.Component.Templating.Loader.html">Loader</a>
</li>
<li><a href="namespace-Symfony.Component.Templating.Storage.html">Storage</a>
</li>
<li><a href="namespace-Symfony.Component.Templating.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Templating.Tests.Fixtures.html">Fixtures</a>
</li>
<li><a href="namespace-Symfony.Component.Templating.Tests.Helper.html">Helper</a>
</li>
<li><a href="namespace-Symfony.Component.Templating.Tests.Loader.html">Loader</a>
</li>
<li><a href="namespace-Symfony.Component.Templating.Tests.Storage.html">Storage</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Component.Translation.html">Translation<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Translation.Catalogue.html">Catalogue</a>
</li>
<li><a href="namespace-Symfony.Component.Translation.Dumper.html">Dumper</a>
</li>
<li><a href="namespace-Symfony.Component.Translation.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.Translation.Extractor.html">Extractor</a>
</li>
<li><a href="namespace-Symfony.Component.Translation.Loader.html">Loader</a>
</li>
<li><a href="namespace-Symfony.Component.Translation.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Translation.Tests.Catalogue.html">Catalogue</a>
</li>
<li><a href="namespace-Symfony.Component.Translation.Tests.Dumper.html">Dumper</a>
</li>
<li><a href="namespace-Symfony.Component.Translation.Tests.Loader.html">Loader</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Translation.Writer.html">Writer</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Validator.html">Validator<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Validator.Constraints.html">Constraints</a>
</li>
<li><a href="namespace-Symfony.Component.Validator.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.Validator.Mapping.html">Mapping<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Validator.Mapping.Cache.html">Cache</a>
</li>
<li><a href="namespace-Symfony.Component.Validator.Mapping.Loader.html">Loader</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Validator.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Validator.Tests.Constraints.html">Constraints</a>
</li>
<li><a href="namespace-Symfony.Component.Validator.Tests.Fixtures.html">Fixtures</a>
</li>
<li><a href="namespace-Symfony.Component.Validator.Tests.Mapping.html">Mapping<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Validator.Tests.Mapping.Cache.html">Cache</a>
</li>
<li><a href="namespace-Symfony.Component.Validator.Tests.Mapping.Loader.html">Loader</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-Symfony.Component.Yaml.html">Yaml<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Yaml.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.Yaml.Tests.html">Tests</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-Tecnocreaciones.html">Tecnocreaciones<span></span></a>
<ul>
<li><a href="namespace-Tecnocreaciones.Bundle.html">Bundle<span></span></a>
<ul>
<li><a href="namespace-Tecnocreaciones.Bundle.AjaxFOSUserBundle.html">AjaxFOSUserBundle<span></span></a>
<ul>
<li><a href="namespace-Tecnocreaciones.Bundle.AjaxFOSUserBundle.Controller.html">Controller</a>
</li>
<li><a href="namespace-Tecnocreaciones.Bundle.AjaxFOSUserBundle.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Tecnocreaciones.Bundle.AjaxFOSUserBundle.DependencyInjection.Compiler.html">Compiler</a>
</li>
</ul></li>
<li><a href="namespace-Tecnocreaciones.Bundle.AjaxFOSUserBundle.Event.html">Event</a>
</li>
<li><a href="namespace-Tecnocreaciones.Bundle.AjaxFOSUserBundle.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Tecnocreaciones.Bundle.AjaxFOSUserBundle.Handler.html">Handler</a>
</li>
<li><a href="namespace-Tecnocreaciones.Bundle.AjaxFOSUserBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Tecnocreaciones.Bundle.AjaxFOSUserBundle.Tests.Controller.html">Controller</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Tecnocreaciones.Bundle.InstallBundle.html">InstallBundle<span></span></a>
<ul>
<li><a href="namespace-Tecnocreaciones.Bundle.InstallBundle.Command.html">Command</a>
</li>
<li><a href="namespace-Tecnocreaciones.Bundle.InstallBundle.DependencyInjection.html">DependencyInjection</a>
</li>
<li><a href="namespace-Tecnocreaciones.Bundle.InstallBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Tecnocreaciones.Bundle.InstallBundle.Tests.Controller.html">Controller</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Tecnocreaciones.Bundle.TemplateBundle.html">TemplateBundle<span></span></a>
<ul>
<li><a href="namespace-Tecnocreaciones.Bundle.TemplateBundle.Controller.html">Controller</a>
</li>
<li><a href="namespace-Tecnocreaciones.Bundle.TemplateBundle.DependencyInjection.html">DependencyInjection</a>
</li>
<li><a href="namespace-Tecnocreaciones.Bundle.TemplateBundle.Menu.html">Menu<span></span></a>
<ul>
<li><a href="namespace-Tecnocreaciones.Bundle.TemplateBundle.Menu.Template.html">Template<span></span></a>
<ul>
<li><a href="namespace-Tecnocreaciones.Bundle.TemplateBundle.Menu.Template.Developer.html">Developer</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Tecnocreaciones.Bundle.TemplateBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Tecnocreaciones.Bundle.TemplateBundle.Tests.Controller.html">Controller</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-Tecnocreaciones.Vzla.html">Vzla<span></span></a>
<ul>
<li><a href="namespace-Tecnocreaciones.Vzla.GovernmentBundle.html">GovernmentBundle<span></span></a>
<ul>
<li><a href="namespace-Tecnocreaciones.Vzla.GovernmentBundle.DependencyInjection.html">DependencyInjection</a>
</li>
<li><a href="namespace-Tecnocreaciones.Vzla.GovernmentBundle.Form.html">Form<span></span></a>
<ul>
<li><a href="namespace-Tecnocreaciones.Vzla.GovernmentBundle.Form.Type.html">Type</a>
</li>
</ul></li>
<li><a href="namespace-Tecnocreaciones.Vzla.GovernmentBundle.Menu.html">Menu<span></span></a>
<ul>
<li><a href="namespace-Tecnocreaciones.Vzla.GovernmentBundle.Menu.Template.html">Template<span></span></a>
<ul>
<li><a href="namespace-Tecnocreaciones.Vzla.GovernmentBundle.Menu.Template.Developer.html">Developer</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Tecnocreaciones.Vzla.GovernmentBundle.Model.html">Model</a>
</li>
<li><a href="namespace-Tecnocreaciones.Vzla.GovernmentBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Tecnocreaciones.Vzla.GovernmentBundle.Tests.Controller.html">Controller</a>
</li>
</ul></li>
<li><a href="namespace-Tecnocreaciones.Vzla.GovernmentBundle.Twig.html">Twig<span></span></a>
<ul>
<li><a href="namespace-Tecnocreaciones.Vzla.GovernmentBundle.Twig.Extension.html">Extension</a>
</li>
</ul></li></ul></li></ul></li></ul></li>
<li><a href="namespace-TestBundle.html">TestBundle<span></span></a>
<ul>
<li><a href="namespace-TestBundle.Fabpot.html">Fabpot<span></span></a>
<ul>
<li><a href="namespace-TestBundle.Fabpot.FooBundle.html">FooBundle<span></span></a>
<ul>
<li><a href="namespace-TestBundle.Fabpot.FooBundle.Controller.html">Controller</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-TestBundle.FooBundle.html">FooBundle<span></span></a>
<ul>
<li><a href="namespace-TestBundle.FooBundle.Controller.html">Controller<span></span></a>
<ul>
<li><a href="namespace-TestBundle.FooBundle.Controller.Sub.html">Sub</a>
</li>
<li><a href="namespace-TestBundle.FooBundle.Controller.Test.html">Test</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-TestBundle.Sensio.html">Sensio<span></span></a>
<ul>
<li><a href="namespace-TestBundle.Sensio.Cms.html">Cms<span></span></a>
<ul>
<li><a href="namespace-TestBundle.Sensio.Cms.FooBundle.html">FooBundle<span></span></a>
<ul>
<li><a href="namespace-TestBundle.Sensio.Cms.FooBundle.Controller.html">Controller</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-TestBundle.Sensio.FooBundle.html">FooBundle<span></span></a>
<ul>
<li><a href="namespace-TestBundle.Sensio.FooBundle.Controller.html">Controller</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-TestFixtures.html">TestFixtures</a>
</li>
<li><a href="namespace-Timestampable.html">Timestampable<span></span></a>
<ul>
<li><a href="namespace-Timestampable.Fixture.html">Fixture<span></span></a>
<ul>
<li><a href="namespace-Timestampable.Fixture.Document.html">Document</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Tool.html">Tool</a>
</li>
<li><a href="namespace-Translatable.html">Translatable<span></span></a>
<ul>
<li><a href="namespace-Translatable.Fixture.html">Fixture<span></span></a>
<ul>
<li><a href="namespace-Translatable.Fixture.Document.html">Document<span></span></a>
<ul>
<li><a href="namespace-Translatable.Fixture.Document.Personal.html">Personal</a>
</li>
</ul></li>
<li><a href="namespace-Translatable.Fixture.Issue114.html">Issue114</a>
</li>
<li><a href="namespace-Translatable.Fixture.Issue138.html">Issue138</a>
</li>
<li><a href="namespace-Translatable.Fixture.Issue165.html">Issue165</a>
</li>
<li><a href="namespace-Translatable.Fixture.Issue173.html">Issue173</a>
</li>
<li><a href="namespace-Translatable.Fixture.Issue75.html">Issue75</a>
</li>
<li><a href="namespace-Translatable.Fixture.Issue922.html">Issue922</a>
</li>
<li><a href="namespace-Translatable.Fixture.Personal.html">Personal</a>
</li>
<li><a href="namespace-Translatable.Fixture.Template.html">Template</a>
</li>
<li><a href="namespace-Translatable.Fixture.Type.html">Type</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Translator.html">Translator<span></span></a>
<ul>
<li><a href="namespace-Translator.Fixture.html">Fixture</a>
</li>
</ul></li>
<li><a href="namespace-Tree.html">Tree<span></span></a>
<ul>
<li><a href="namespace-Tree.Fixture.html">Fixture<span></span></a>
<ul>
<li><a href="namespace-Tree.Fixture.Closure.html">Closure</a>
</li>
<li><a href="namespace-Tree.Fixture.Document.html">Document</a>
</li>
<li><a href="namespace-Tree.Fixture.Genealogy.html">Genealogy</a>
</li>
<li><a href="namespace-Tree.Fixture.Mock.html">Mock</a>
</li>
<li><a href="namespace-Tree.Fixture.Repository.html">Repository</a>
</li>
<li><a href="namespace-Tree.Fixture.Transport.html">Transport</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Uploadable.html">Uploadable<span></span></a>
<ul>
<li><a href="namespace-Uploadable.Fixture.html">Fixture<span></span></a>
<ul>
<li><a href="namespace-Uploadable.Fixture.Entity.html">Entity</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Wrapper.html">Wrapper<span></span></a>
<ul>
<li><a href="namespace-Wrapper.Fixture.html">Fixture<span></span></a>
<ul>
<li><a href="namespace-Wrapper.Fixture.Document.html">Document</a>
</li>
<li><a href="namespace-Wrapper.Fixture.Entity.html">Entity</a>
</li>
</ul></li></ul></li>
</ul>
</div>
<hr />
<div id="elements">
<h3>Classes</h3>
<ul>
<li><a href="class-Gedmo.Uploadable.Mapping.FakeEntity.html">FakeEntity</a></li>
<li><a href="class-Gedmo.Uploadable.Mapping.Validator.html">Validator</a></li>
<li><a href="class-Gedmo.Uploadable.Mapping.ValidatorTest.html">ValidatorTest</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 class="active">
<span>Namespace</span> </li>
<li>
<span>Class</span> </li>
</ul>
<ul>
<li>
<a href="tree.html" title="Tree view of classes, interfaces, traits and exceptions"><span>Tree</span></a>
</li>
</ul>
<ul>
</ul>
</div>
<div id="content" class="namespace">
<h1>Namespace <a href="namespace-Gedmo.html">Gedmo</a>\<a href="namespace-Gedmo.Uploadable.html">Uploadable</a>\Mapping</h1>
<table class="summary" id="namespaces">
<caption>Namespaces summary</caption>
<tr>
<td class="name"><a href="namespace-Gedmo.Uploadable.Mapping.Driver.html">Gedmo\Uploadable\Mapping\Driver</a></td>
</tr>
</table>
<table class="summary" id="classes">
<caption>Classes summary</caption>
<tr>
<td class="name"><a href="class-Gedmo.Uploadable.Mapping.FakeEntity.html">FakeEntity</a></td>
<td></td>
</tr>
<tr>
<td class="name"><a href="class-Gedmo.Uploadable.Mapping.Validator.html">Validator</a></td>
<td>This class is used to validate mapping information</td>
</tr>
<tr>
<td class="name"><a href="class-Gedmo.Uploadable.Mapping.ValidatorTest.html">ValidatorTest</a></td>
<td>These are tests for the Mapping Validator of the Uploadable behavior</td>
</tr>
</table>
</div>
<div id="footer">
seip API documentation generated by <a href="http://apigen.org">ApiGen 2.8.0</a>
</div>
</div>
</div>
</body>
</html>
| Tecnocreaciones/VzlaGovernmentTemplateDeveloperSeed | api/namespace-Gedmo.Uploadable.Mapping.html | HTML | mit | 154,424 |
<meta charset="utf-8">
<title>[最后的游侠]荆固 – By vliux.me</title>
<meta name="description" content="nil">
<meta name="keywords" content="">
<meta property="og:locale" content="en_US">
<meta property="og:title" content="[最后的游侠]荆固 – By vliux.me">
<meta property="og:description" content="nil">
<meta property="og:url" content="http://vliux.me/drawing/jinggu/">
<meta property="og:site_name" content="By vliux.me">
<link href="http://vliux.me/feed.xml" type="application/atom+xml" rel="alternate" title="By vliux.me Feed">
<!-- http://t.co/dKP3o1e -->
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Type -->
<link rel="stylesheet" href="http://vliux.me/assets/css/crimson.css" rel='stylesheet' type='text/css' />
<link href="/assets/css/sourcesanspro.css" rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="http://vliux.me/assets/css/entypo.css" media="all">
<!-- In order to use Calendas Plus, you must first purchase it. Then, create a font-face package using FontSquirrel.
<link rel='stylesheet' href='http://vliux.me/assets/cal.css' media='all' />
-->
<!-- For all browsers -->
<link rel="stylesheet" href="http://vliux.me/assets/css/i.css">
<!-- Fresh Squeezed jQuery -->
<!-- vliux: not sure what does this do for my site. But it slows the page loading, especially as google is blocked -->
<!--<script src="//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>-->
<meta http-equiv="cleartype" content="on">
<!-- Load Modernizr -->
<script src="http://vliux.me/assets/js/vendor/modernizr-2.6.2.custom.min.js"></script>
<!-- Icons -->
<!-- 16x16 -->
<link rel="shortcut icon" href="http://vliux.me/favicon.ico">
<div id="bump">
<body class="">
<header class="site-header darken">
<div class="wrap">
<hgroup>
<h1><a href="/">By vliux.me</a></h1>
</hgroup>
<a href="#nav" class="menu"><span class='icons'>☰</span></a>
<nav role="navigation">
<ul>
<!-- <li>
<a href="/" title="By vliux.me">Home</a>
</li> -->
<li><a href="http://vliux.me/home"
>
Home
</a></li>
<li><a href="http://vliux.me/draw"
>
Drawings
</a></li>
<li><a href="http://vliux.me/gallery"
>
Photos
</a></li>
<li><a href="http://vliux.me/blog"
>
Tech
</a></li>
<li><a href="http://vliux.me/about"
>
About
</a></li>
</ul>
</nav>
</div>
</header>
<!-- tencent analysis -->
<script type="text/javascript" src="http://tajs.qq.com/stats?sId=61337454" charset="UTF-8"></script>
<section class="article pad-top">
<article class="wrap post">
<header class="post-header">
<hgroup>
<h1>[最后的游侠]荆固</h1>
<!-- <p class="intro">nil</p> -->
</hgroup>
</header>
<div class="bdsharebuttonbox">
<a href="#" class="bds_more" data-cmd="more"></a>
<a href="#" class="bds_weixin" data-cmd="weixin" title="分享到微信"></a>
<a href="#" class="bds_tsina" data-cmd="tsina" title="分享到新浪微博"></a>
<a href="#" class="bds_sqq" data-cmd="sqq" title="分享到QQ好友"></a>
<a href="#" class="bds_fbook" data-cmd="fbook" title="分享到Facebook"></a>
<a href="#" class="bds_twi" data-cmd="twi" title="分享到Twitter"></a></div>
<script>window._bd_share_config={"common":{"bdSnsKey":{},"bdText":"","bdMini":"1","bdMiniList":false,"bdPic":"","bdStyle":"1","bdSize":"24"},"share":{},"image":{"viewList":["weixin","tsina","sqq","fbook","twi"],"viewText":"分享到:","viewSize":"16"},"selectShare":{"bdContainerClass":null,"bdSelectMiniList":["weixin","tsina","sqq","fbook","twi"]}};with(document)0[(getElementsByTagName('head')[0]||body).appendChild(createElement('script')).src='http://bdimg.share.baidu.com/static/api/js/share.js?v=89860593.js?cdnversion='+~(-new Date()/36e5)];</script>
<br/>
<p>JingGu is neither a decent nor negative character in the yet unknown story.
<br/>Pen draw by Xin Liu at Aug 2018</p>
<a href="/images/p/180821/1.jpg" target="_blank"><img src="/images/p/180821/1.jpg" alt="GIMG"/></a>
<br/>
<div class="bdsharebuttonbox">
<a href="#" class="bds_more" data-cmd="more"></a>
<a href="#" class="bds_weixin" data-cmd="weixin" title="分享到微信"></a>
<a href="#" class="bds_tsina" data-cmd="tsina" title="分享到新浪微博"></a>
<a href="#" class="bds_sqq" data-cmd="sqq" title="分享到QQ好友"></a>
<a href="#" class="bds_fbook" data-cmd="fbook" title="分享到Facebook"></a>
<a href="#" class="bds_twi" data-cmd="twi" title="分享到Twitter"></a></div>
<script>window._bd_share_config={"common":{"bdSnsKey":{},"bdText":"","bdMini":"1","bdMiniList":false,"bdPic":"","bdStyle":"1","bdSize":"24"},"share":{},"image":{"viewList":["weixin","tsina","sqq","fbook","twi"],"viewText":"分享到:","viewSize":"16"},"selectShare":{"bdContainerClass":null,"bdSelectMiniList":["weixin","tsina","sqq","fbook","twi"]}};with(document)0[(getElementsByTagName('head')[0]||body).appendChild(createElement('script')).src='http://bdimg.share.baidu.com/static/api/js/share.js?v=89860593.js?cdnversion='+~(-new Date()/36e5)];</script>
<!-- gitment comment -->
<div id="container"></div>
<link rel="stylesheet" href="https://imsun.github.io/gitment/style/default.css">
<script src="https://imsun.github.io/gitment/dist/gitment.browser.js"></script>
<script>
var gitment = new Gitment({
owner: 'vliux',
repo: 'vliux.github.io_gitment',
oauth: {
client_id: '8a5fb88f646b2bfec025',
client_secret: 'c4a2a75b7377e5fde416fca7baffd4cb6197c58a',
},
})
gitment.render('container')
</script>
</article>
</section>
</div>
<div class="push"></div>
<footer>
<aside class="wrap">
<ol class="prev-posts">
<p class="list-title">Recent Posts</p>
<!-- for1 -->
<li>
<span class="recent-title"><a href="http://vliux.me/drawing/yulinwei/" title="[最后的游侠]御灵校尉">[最后的游侠]御灵校尉 </a></span>
<span class="date">Nov 24, 2018</span>
</li>
<!-- for1 -->
<li>
<span class="recent-title"><a href="http://vliux.me/drawing/bravery_3/" title="[最后的游侠]Bravery_3">[最后的游侠]Bravery_3 </a></span>
<span class="date">Nov 12, 2018</span>
</li>
<!-- for1 -->
<li>
<span class="recent-title"><a href="http://vliux.me/drawing/bravery_2/" title="[最后的游侠]Bravery_2">[最后的游侠]Bravery_2 </a></span>
<span class="date">Nov 05, 2018</span>
</li>
</ol>
<div class="social">
<ul>
<li><a id="mail" href="mailto:[email protected]"><span class="foot-link">@Email</span></a></li>
<li><a id="500px" href="https://500px.com/xinliu4" target="_blank"><span class="foot-link">500px</span></a></li>
<li><a id="500pxc" href="https://500px.me/vliux" target="_blank"><span class="foot-link">500px中国</span></a></li>
<li><a id="insta" href="https://www.instagram.com/vliux" target="_blank"><span class="foot-link">Instagram</span></a></li>
</ul>
</div>
</aside>
<small>© 2018 vliux. Powered by <a href="http://jekyllrb.com">Jekyll</a> using the <a href="http://jekyll.gtat.me/about">Balzac</a> theme.</small>
</footer>
<!-- If they're out, get some from the cellar -->
<script>window.jQuery || document.write('<script src="http://vliux.me/assets/js/vendor/jquery-1.9.1.min.js"><\/script>')</script>
<script src="http://vliux.me/assets/js/retina.min.js"></script>
<!-- Custom JS -->
<script src="http://vliux.me/assets/js/scripts.js"></script>
</body>
</html>
| vliux/vliux.github.io | drawing/jinggu/index.html | HTML | mit | 8,656 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>T798590782059909121</title>
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Source+Sans+Pro:300,300i,600">
<link rel="stylesheet" href="/style.css">
<link rel="stylesheet" href="/custom.css">
<link rel="shortcut icon" href="https://micro.blog/curt/favicon.png" type="image/x-icon" />
<link rel="alternate" type="application/rss+xml" title="Curt Clifton" href="http://microblog.curtclifton.net/feed.xml" />
<link rel="alternate" type="application/json" title="Curt Clifton" href="http://microblog.curtclifton.net/feed.json" />
<link rel="EditURI" type="application/rsd+xml" href="/rsd.xml" />
<link rel="me" href="https://micro.blog/curt" />
<link rel="me" href="https://twitter.com/curtclifton" />
<link rel="authorization_endpoint" href="https://micro.blog/indieauth/auth" />
<link rel="token_endpoint" href="https://micro.blog/indieauth/token" />
<link rel="micropub" href="https://micro.blog/micropub" />
<link rel="webmention" href="https://micro.blog/webmention" />
<link rel="subscribe" href="https://micro.blog/users/follow" />
</head>
<body>
<div class="container">
<header class="masthead">
<h1 class="masthead-title--small">
<a href="/">Curt Clifton</a>
</h1>
</header>
<div class="content post h-entry">
<div class="post-date">
<time class="dt-published" datetime="2016-11-15 10:17:34 -0800">15 Nov 2016</time>
</div>
<div class="e-content">
<p>Here’s the script I’m using when calling my representatives today. Please use it if it’s helpful. <a href="https://t.co/oAPnHlWWYt">https://t.co/oAPnHlWWYt</a></p>
</div>
</div>
</div>
</body>
</html>
| curtclifton/curtclifton.github.io | _site/2016/11/15/t798590782059909121.html | HTML | mit | 1,805 |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.