path stringlengths 5 312 | repo_name stringlengths 5 116 | content stringlengths 2 1.04M |
|---|---|---|
Programming/JavaScript 2/02. DOM-manipulation/03. ShimsQuerySelectorAllInOlderBrowsers.html | niki-funky/Telerik_Academy | <!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>03. ShimsQuerySelectorAllInOlderBrowsers</title>
<link href="styles/StyleSheet.less" rel="stylesheet" />
<script src="scripts/querySelectors.js" type="text/javascript"></script>
</head>
<body>
<!-- 03. Write a script that shims querySelector and querySelectorAll in older browsers-->
<button onclick="GetElements()">Get the red and then the italic elements in the container!</button>
<br />
<br />
<div id="container">
<b class="red">Red element in the container.</b>
<br />
<b class="red serif">Red serif element in the container.</b>
<br />
<b class="italic">Italic element in the container.</b>
<br />
<b class="big">Big element in the container.</b>
<ul>
<li>This is list.</li>
</ul>
</div>
<script type="text/javascript">
function GetElements() {
//test 1 for querySelectorAll
var listOfRedElements = document.querySelectorAll(".red");
for (var i = 0; i < listOfRedElements.length; i++) {
var redElement = listOfRedElements[i];
alert("The content of the (" + (i + 1) + ") found Red element\n" + redElement.innerHTML);
}
//test 2 for querySelectorAll
var listOfItalicElements = document.querySelectorAll(".italic, .big");
for (var i = 0; i < listOfItalicElements.length; i++) {
var italicElement = listOfItalicElements[i];
alert("The content of the (" + (i + 1) + ") found Italic or Big element\n" + italicElement.innerHTML);
}
//test 3 for querySelector
var firstRedElement = document.querySelector(".italic, .big");
alert("The content of the first found Italic or Big element\n" + firstRedElement.innerHTML);
//test 4 for querySelectorAll
var listOfChildElements = document.querySelectorAll("div>b");
for (var i = 0; i < listOfChildElements.length; i++) {
var childElement = listOfChildElements[i];
alert("The content of the (" + (i + 1) + ") found <b> tag with parent - div\n" + childElement.innerHTML);
}
//test 5 for querySelector
var firstListElement = document.querySelector("div ul li");
alert("The content of the first found List element\n" + firstListElement.innerHTML);
}
</script>
</body>
</html>
|
doc/html/classInitialJet.html | garethcmurphy/mhdvanleer | <!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>MyProject: InitialJet Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="navtree.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="resize.js"></script>
<script type="text/javascript" src="navtreedata.js"></script>
<script type="text/javascript" src="navtree.js"></script>
<script type="text/javascript">
$(document).ready(initResizable);
</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">MyProject
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.13 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "search",false,'Search');
</script>
<script type="text/javascript" src="menudata.js"></script>
<script type="text/javascript" src="menu.js"></script>
<script type="text/javascript">
$(function() {
initMenu('',true,false,'search.php','Search');
$(document).ready(function() { init_search(); });
});
</script>
<div id="main-nav"></div>
</div><!-- top -->
<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('classInitialJet.html','');});
</script>
<div id="doc-content">
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> |
<a href="classInitialJet-members.html">List of all members</a> </div>
<div class="headertitle">
<div class="title">InitialJet Class Reference</div> </div>
</div><!--header-->
<div class="contents">
<p><code>#include <<a class="el" href="initialise_8h_source.html">initialise.h</a>></code></p>
<table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr class="memitem:a05c91c03f87ee207fe2bd9d52a9f27f8"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classInitialJet.html#a05c91c03f87ee207fe2bd9d52a9f27f8">setup</a> (const char *filename, <a class="el" href="classTNT_1_1Array3D.html">Array3D</a>< <a class="el" href="structzone.html">zone</a> > grid)</td></tr>
<tr class="separator:a05c91c03f87ee207fe2bd9d52a9f27f8"><td class="memSeparator" colspan="2"> </td></tr>
</table>
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
<div class="textblock">
<p class="definition">Definition at line <a class="el" href="initialise_8h_source.html#l00006">6</a> of file <a class="el" href="initialise_8h_source.html">initialise.h</a>.</p>
</div><h2 class="groupheader">Member Function Documentation</h2>
<a id="a05c91c03f87ee207fe2bd9d52a9f27f8"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a05c91c03f87ee207fe2bd9d52a9f27f8">◆ </a></span>setup()</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">int InitialJet::setup </td>
<td>(</td>
<td class="paramtype">const char * </td>
<td class="paramname"><em>filename</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classTNT_1_1Array3D.html">Array3D</a>< <a class="el" href="structzone.html">zone</a> > </td>
<td class="paramname"><em>grid</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<hr/>The documentation for this class was generated from the following file:<ul>
<li><a class="el" href="initialise_8h_source.html">initialise.h</a></li>
</ul>
</div><!-- contents -->
</div><!-- doc-content -->
<!-- start footer part -->
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
<ul>
<li class="navelem"><a class="el" href="classInitialJet.html">InitialJet</a></li>
<li class="footer">Generated by
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
</ul>
</div>
</body>
</html>
|
assets/style.css | ivuorinen/rss-audio-player | .audiojs {
width: 100%;
}
ol {
display: block;
padding: 0px; margin: 0px 20px; list-style: decimal-leading-zero inside;
color: #ccc; border-top: 1px solid #ccc; font-size: 0.9em;
}
.play-pause {
width: 38px !important;
}
.scrubber {
width: 80% !important;
}
ol li { position: relative; margin: 0px; padding: 9px 5px 10px; border-bottom: 1px solid #ccc; cursor: pointer; }
ol li:hover { background: #fff; }
ol li a { display: block; text-indent: -3.3ex; padding: 0px 0px 0px 20px; }
li.playing { color: #aaa; text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.3); }
li.playing a { color: #000; }
li.playing:before {
content: '♬'; width: 14px; height: 14px; padding: 3px; line-height: 14px;
margin: 0px; position: absolute; left: -24px; top: 9px; color: #000;
font-size: 13px; text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.2);
}
.feeds-list ul {
padding: 0px;
margin: 0px 20px;
list-style: none;
}
.feeds-list li {
width: 25%;
text-align: center;
padding: 5px 0px;
}
#bottom p,
#bottom li {
font-size: 13px;
}
pre {
font-size: 13px;
overflow: auto;
}
#shortcuts {
position: fixed; bottom: 0px; width: 100%; color: #666; font-size: 0.9em;
margin: 60px 0px 0px; padding: 20px 20px 15px;
background: #f3f3f3; background: rgba(240, 240, 240, 0.7);
}
#shortcuts div { width: 90%; margin: 0px auto; }
#shortcuts h1 { margin: 0px 0px 6px; }
#shortcuts p { margin: 0px 0px 18px; }
#shortcuts em {
font-style: normal; background: #d3d3d3; padding: 3px 9px;
position: relative; left: -3px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
-o-border-radius: 4px;
border-radius: 4px;
-webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
-o-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
} |
PPT/JS-12-Function-Declaration.html | ptteng/PPT | <!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>葡萄藤PPT</title>
<link rel="stylesheet" href="../css/reveal/reveal.css">
<!-- PPT主题,可以在/css/reveal/theme/中选择其他主题,目前暂时只能使用该模板 -->
<link rel="stylesheet" href="../css/reveal/theme/ptt.css">
<!-- syntax highlighting 代码高亮主题 -->
<link rel="stylesheet" href="../lib/reveal/css/zenburn.css">
<!-- 打印和PDF输出样式 -->
<script>
var link = document.createElement( 'link' );
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = window.location.search.match( /print-pdf/gi ) ? '../css/reveal/print/pdf.css' : '../css/reveal/print/paper.css';
document.getElementsByTagName( 'head' )[0].appendChild( link );
</script>
</head>
<body>
<img src="../img/css-02-how%20to%20configure%20nginx/logo.png" alt="" usemap="#pttmap" class="base-logo">
<map name="pttmap">
<area shape="rect" coords="0,0,276,58" href="http://www.jnshu.com" alt="" target="_blank"/>
</map>
<div class="reveal">
<div class="slides">
<section>
<h2 style="text-align: left;">【js】函数声明和函数表达式</h2>
<p style="text-align: center;">小课堂【179期】</p>
<p style="text-align: center;">分享人:张宇鹏</p>
</section>
<section>
<p>目录</p>
<p>1.背景介绍</p>
<p>2.知识剖析</p>
<p>3.常见问题</p>
<p>4.解决方案</p>
<p>5.编码实战</p>
<p>6.扩展思考</p>
<p>7.参考文献</p>
<p>8.更多讨论</p>
</section>
<section>
<section>
<h3>1.背景介绍</h3>
</section>
<section>
<p style="text-align: left">
在ECMAScript中
定义函数的方法主要有三种:
</p>
<p style="text-align: left">
1:函数声明(Function Declaration)
</p>
<p style="text-align: left">
2:函数表达式Function Expression)
</p>
<p style="text-align: left">
3:new Function构造函数
</p>
</section>
<section>
<p style="text-align: left">
其中最常用的创建函数对象的方法,即函数表达式与函数声明;
这两种方法有着很微妙的区别和联系,而且这两种方法的使用也容易混淆,
</p>
</section>
</section>
<section>
<section>
<h3>2.知识剖析</h3>
</section>
<section>
<h3 >
函数声明的写法
</h3>
<p style="text-align:left">
function functionName(arg1, arg2, ...){<br>
//function body<br>
}
</p>
</section>
<section>
<h3 >
函数表达式的写法
</h3>
<p style="text-align:left">
var variable=function functionName(arg1, arg2, ...){
//function body<br>
}
</p>
</section>
</section>
<section>
<h3>3.常见问题</h3>
</section>
<section>
<section>
<h3>
函数声明和函数表达式有什么区别?
</h3>
</section>
</section>
<section>
<section>
<h3>4.解决方案</h3>
</section>
<section>
<p style="text-align: left">
函数声明会在任何表达式被解析和求值之前先行被解析和求值。
即使声明位于源代码中的最后一行,它也会先于同一作用域中位于最前面的表达式被求值
</p>
</section>
<section>
<p style="text-align: left">
函数表达式在解析到时候才会运算
</p>
</section>
<section>
<p style="text-align: left">
ES5 规定,函数只能在顶级作用域和函数作用域中声明,否则是不合法的
</p>
</section>
<section>
<p style="text-align: left">
ES6 引入了块级作用域的概念,这种定义方法就被允许了。在块级作用域里面声明的函数,
作用域类似于使用 let 声明的变量,在块级作用域之外没有办法被调用。
</p>
</section>
<section>
<p style="text-align: left">
函数表达式可以立即执行
</p>
</section>
</section>
<section>
<h3>5.编码实战</h3>
</section>
<section>
<h3>6.扩展思考</h3>
</section>
<section>
<p>
当你使用函数声明和函数表达式时 分别发生了什么
</p>
</section>
<section>
<h4>函数声明</h4>
<p style="text-align:left">
1. 创建一个new Function对象,FormalParameterList指定参数,FunctionBody指定函数体。将当前正在运行环境中作用域链作为它的作用域。
</p>
<p style="text-align:left">
2. 为当前变量对象创建一个名为Identifier的属性,值为Result(1)。
</p>
</section>
<section>
<h4>函数表达式</h4>
<p style="text-align:left">
1. 创建一个new Object对象
</p>
<p style="text-align:left">
2. 将Result(1)添加到作用域链的顶端
</p>
<p style="text-align:left">
3. 创建一个new Function对象,FormalParameterList指定参数,FunctionBody指定函数体。将当前正在运行的执行环境中作用域链作为它的作用域。
</p>
<p style="text-align:left">
4. 为Result(1)创建一个名为Identifier 的属性,其值为为Result(3),只读,不可删除
</p>
<p style="text-align:left">
5. 从作用域链中移除Result(1)
</p>
<p style="text-align:left">
6. 返回Result(3)
</p>
</section>
<section>
<h3>7.参考文献</h3>
</section>
<section>
<p style="text-align: left">参考一:<a href=" https://zhidao.baidu.com/question/1114414373471549299.html">
百度知道—函数声明与函数表达式
</a></p>
<p style="text-align: left">参考二:<a href="http://www.cnblogs.com/myvin/p/4649789.html" target="_blank">
函数声明和函数表达式的异同
</a></p>
</section>
<section>
<h3>8.更多讨论</h3>
</section>
<section>
<p>平常你使用哪一种方法更多呢?为什么?</p>
</section>
<section>
<h4>感谢观看</h4>
<p>
<small>By :张宇鹏</small>
</p>
</section>
</div>
</div>
<script src="../lib/reveal/js/head.min.js"></script>
<script src="../lib/reveal/reveal.js"></script>
<script>
// 以下为常见配置属性的默认值
// {
// controls: true, // 是否在右下角展示控制条
// progress: true, // 是否显示演示的进度条
// slideNumber: false, // 是否显示当前幻灯片的页数编号,也可以使用代码slideNumber: 'c / t' ,表示当前页/总页数。
// history: false, // 是否将每个幻灯片改变加入到浏览器的历史记录中去
// keyboard: true, // 是否启用键盘快捷键来导航
// overview: true, // 是否启用幻灯片的概览模式,可使用"Esc"或"o"键来切换概览模式
// center: true, // 是否将幻灯片垂直居中
// touch: true, // 是否在触屏设备上启用触摸滑动切换
// loop: false, // 是否循环演示
// rtl: false, // 是否将演示的方向变成RTL,即从右往左
// fragments: true, // 全局开启和关闭碎片。
// autoSlide: 0, // 两个幻灯片之间自动切换的时间间隔(毫秒),当设置成 0 的时候则禁止自动切换,该值可以被幻灯片上的 ` data-autoslide` 属性覆盖
// transition: 'default', // 切换过渡效果,有none/fade/slide/convex/concave/zoom
// transitionSpeed: 'default', // 过渡速度,default/fast/slow
// mouseWheel: true, //是否启用通过鼠标滚轮来切换幻灯片
// }
// 初始化幻灯片
Reveal.initialize({
history: true,
dependencies: [
{ src: '../plugin/markdown/marked.js' },
{ src: '../plugin/markdown/markdown.js' },
{ src: '../plugin/notes/notes.js', async: true },
{ src: '../plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } }
]
});
</script>
</body>
</html> |
templates/home.html | roddehugo/favrodd | {% extends "template.html" %}
{% block title %}Hugo Rodde / {{ data.site.1.value }} {% endblock %}
{% block infomain %}
{% include "infomain.html" %}
{% endblock %}
{% block infofooter %}
{% include "infofooter.html" %}
{% endblock %}
{% block containermain %}
<div class="main__container-about">
<div class="main__tag">About Me</div>
<p class="main__copy">
{{ data.site.2.value|nl2br }}
</p>
</div>
<div class="main__container-about">
<div class="main__tag">Skills</div>
<p class="main__copy">
Here is a list of what I know:
</p>
<ul class="main__list">
{% for elm in data.skills %}
<li class="main__list-item">{{ elm.value }}</li>
{% endfor %}
</ul>
</div>
<div class="main__container-education">
<div class="main__tag">Education</div>
{% for elm in data.educations %}
<div class="main__section">
<div class="main__section-left">
<div class="main__section-left-title-without">
{% if elm.link %}
<a target="_blank" href="{{ elm.link }}" title="External website">{{ elm.title }}</a>
{% else %}
{{ elm.title }}
{% endif %}
</div>
<div class="main__section-left-subtitle">{{ elm.place }}</div>
</div>
<div class="main__section-right">
<div class="main__section-right-title">{{ elm.date }}</div>
</div>
<div class="clearfix"></div>
</div>
{% endfor %}
</div>
<div class="main__container-experiences">
<div class="main__tag">Experience</div>
{% for elm in data.experiences %}
<div class="main__section">
<div class="main__section-left">
<div class="main__section-left-title"><a href="#" title="Read more">{{ elm.role }}</a></div>
<div class="main__section-left-subtitle">{{ elm.company }}</div>
</div>
<div class="main__section-right">
<div class="main__section-right-title">{{ elm.date }}</div>
<div class="main__section-right-subtitle">{{ elm.place }}</div>
</div>
<div class="clearfix"></div>
<div class="main__section-description">
{{ elm.content|raw }}
<p><a class="external" target="_blank" href="{{ elm.site }}" title="External website">{{ elm.site|replace({'http://': "", 'https://': ""}) }}</a></p>
</div>
</div>
{% endfor %}
</div>
<div class="main__container-projects" id="mix-container">
<div class="main__tag">Projects</div>
<p class="main__copy">
During my curriculum, I have been involved in many school and personnal projects of any size and kind. I've learned the most in-demand programming languages and enjoy spending some of my spare time experiencing with emerging ones to learn new skills and keep me up to date.
</p>
<div class="clearfix"></div>
<div class="main__filters">
<div class="filter" data-filter="all">All</div>
{% for elm in data.mixitup %}
<div class="filter" data-filter=".cat-{{ elm.mixitup|lower }}">{{ elm.mixitup }}</div>
{% endfor %}
</div>
{% for elm in data.projects %}
<div class="main__section mix cat-{{ elm.mixitup|lower }}">
<div class="main__section-left">
{% if elm.content %}
<div class="main__section-left-title"><a href="#" title="Read more">{{ elm.title }}</a></div>
{% else %}
<div class="main__section-left-title-without">{{ elm.title }}</div>
{% endif %}
<div class="main__section-left-subtitle">{{ elm.languages }}</div>
</div>
<div class="main__section-right">
<div class="main__section-right-title">{{ elm.category }}</div>
<div class="main__section-right-subtitle">{{ elm.date }}</div>
</div>
<div class="clearfix"></div>
<div class="main__section-description">
{{ elm.content|raw }}
<p>
{% if elm.site %}
<a class="external" target="_blank" href="{{ elm.site }}" title="External website">{{ elm.site|replace({'http://': "", 'https://': ""}) }}</a>
{% endif %}
{% if elm.github %}
<a class="external" target="_blank" href="{{ elm.github }}" title="Github repository">{{ elm.github|replace({'http://': "", 'https://': ""}) }}</a>
{% endif %}
</p>
</div>
</div>
{% endfor %}
</div>
<div class="main__container-resume">
<div class="main__tag">Resumes</div>
<div class="main__resume">
<a target="_blank" href="pdf/Public_CV_EN_Hugo_Rodde_UTC_2017.pdf">English resume</a>
</div>
<div class="main__resume">
<a target="_blank" href="pdf/Public_CV_FR_Hugo_Rodde_UTC_2017.pdf">French resume</a>
</div>
</div>
{% endblock %}
|
barcode_qc.html | swang8/Perl_scripts_misc | <html xmlns="http://www.w3.org/1999/xhtml" lang="en-US" xml:lang="en-US">
<head>
<title>Check Barcodes</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<style>
#container{
width: 700pt;
background-color: #F9F9F9;
margin: auto;
padding: 10px;
}
body{
background-color: #f9f9f9;
}
#output {
font: bold 10px Georgia, serif;
}
#status {
float: right;
animation-duration: 3s;
animation-name: slidein;
animation-iteration-count: infinite;
animation-direction: alternate;
}
@KeFrames slidein {
from {
margin-left: 100%;
width = 300%;
}
to {
margin-left: 0%;
width: 100%;
}
}
</style>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
<script>
// Attach a submit handler to the form
$.makeTable = function (mydata) {
var table = $('<table border=1>');
table.addClass("table")
var tblHeader = "<tr>";
for (var k in mydata[0]) tblHeader += "<th>" + k + "</th>";
tblHeader += "</tr>";
$(tblHeader).appendTo(table);
$.each(mydata, function (index, value) {
var TableRow = "<tr>";
$.each(value, function (key, val) {
TableRow += "<td>" + val + "</td>";
});
TableRow += "</tr>";
$(table).append(TableRow);
});
return ($(table));
};
$(document).ready(function() {
$( '#MainForm' ).submit(function( event ) {
// Stop form from submitting normally
event.preventDefault();
var d = new Date();
var output_str = "Log:<p>" + d.toUTCString() + " Job sumitted.<br>";
document.getElementById("output").innerHTML = "";
document.getElementById("mesg").innerHTML = "<p><p>Your slave is working hard on this. Please hold on ...</p></p>";
$("#mesg").css('outline', 'none !important').attr("tabindex", -1).focus();
//document.getElementById("output").innerHTML = output_str + "<p></p><br><hr>";
// Get some values from elements on the page:
var url = "barcode_qc_v0.21.cgi";
//var formData = new FormData($(this)[0]);
var formData = new FormData(this);
//mfor ( var p of formData){console.log(p)}
console.log(formData);
$.ajax({
url: url,
type: 'POST',
//timeout: 600000, //10seconds
data: formData,
processData: false,
contentType: false,
success: function(data){
//alert("Successful done!");
var json = data;
console.log(json)
// if (jQuery.isEmptyObject(json)){
// document.getElementById("mesg").innerHTML = "<a style=\"color:blue;font-size:20px;\">No conflict barcodes detected, Good Job! </a>";
// document.getElementById("output").innerHTML = "";
// }
// else{
// console.log(json);
// //document.getElementById("mesg").innerHTML = "Job is done. Please download your results from " + "<a style=\"color:blue;font-size:20px;\" href= " + json["url"] + ">" + "this link</a>.<p><hr>";
// document.getElementById("mesg").innerHTML = "<a style=\"color:red;font-size:20px;\">Whoops, conflict barcodes detected!</a><p><hr>";
// var table = $.makeTable(json);
// document.getElementById("output").innerHTML = "";
// $(table).appendTo("#output");
// }
var myjson = json;
console.log(myjson[0])
if (myjson[0].errors > 0){
document.getElementById("mesg").innerHTML = "<a style=\"color:red;font-size:20px;\">Whoops, there are errors detected!</a><p><hr>";
}else {
document.getElementById("mesg").innerHTML = "<a style=\"color:blue;font-size:20px;\">Good Job! Everything seems fine.</a><p><hr>";
}
document.getElementById("output").innerHTML = "<h4>Please download the report here: <a target=\"_blank\" href=\"" + myjson[0].report + "\">report page</a><h4><hr>";
}
});
});
});
</script>
</head>
<body>
<div id="container">
<h4>Check the compatibility of barcodes </h4>
<hr>
<p>
<h5>Enter the inforamtion in the text box below (must be in <code>csv</code> format. Lines start with # will be ignored).</h5>
<strong>Example:</strong><br>
<pre>
Sample,Project,Barcode_number,Barcode_id,i7,i5,Barcode_source,
awesome_sample1,191000Pro,1,7P1_5P1,ATTACTCG,TATAGCCT,neb_CDI,
awesome_sample2,191000Pro,2,7P1_5P2,ATTACTCG,TATAGCCT,neb_CDI,
awesome_sample3,191000Pro,3,7P1_5P3,ATTACTCG,TATAGCCT,neb_CDI,
TAMU_B1,19031Ind,1,Barcode Adapter 1,ATCTAGCCGGCC,,perkin_HT_S1,
TAMU_B2,19031Ind,13,Barcode Adapter 13,AAGCGTACGTCC,,perkin_HT_S1,
TAMU_B3,19031Ind,25,Barcode Adapter 25,CTCCGATCGTCC,,perkin_HT_S1,
TAMU_B4,19031Ind,37,Barcode Adapter 37,TCGGGAAGGTCC,,perkin_HT_S1,
TAMU_B5,19031Ind,49,Barcode Adapter 49,TTTAGTCAGTCC,,perkin_HT_S1,
TAMU_B6,19031Ind,61,Barcode Adapter 61,GCCTCGAAGTCC,,perkin_HT_S1,
TAMU_B6,19031Ind,61,Barcode Adapter 61,GCCTCGAAGTCC,,perkin_HT_S1,
TAMU_B7,19031Ind,73,Barcode Adapter 73,GTTGACTAGTCC,,perkin_HT_S1,
</pre>
<p>Must have headers: <strong> Sample, Project, Barcode_number, Barcode_id, i7, i5, Barcode_source </strong> </p>
<strong>Barcode source should be one of the following:</strong>
<ol>
<li>neb_CDI, <a href="https://raw.githubusercontent.com/swang8/barcodes/master/NEB_NEXT_CDI_Combined.csv">https://raw.githubusercontent.com/swang8/barcodes/master/NEB_NEXT_CDI_Combined.csv</a></li>
<li>perkin_HT_S1, <a href="https://raw.githubusercontent.com/swang8/barcodes/master/PerkinElmer_NextFlex_HT_SI.csv">https://raw.githubusercontent.com/swang8/barcodes/master/PerkinElmer_NextFlex_HT_SI.csv</a></li>
<li>perkin_UDI, <a href="https://raw.githubusercontent.com/swang8/barcodes/master/PerkinElmer_NextFlex_UDI.csv">https://raw.githubusercontent.com/swang8/barcodes/master/PerkinElmer_NextFlex_UDI.csv</a></li>
<li>perkin_UDI_4K, <a href="https://raw.githubusercontent.com/swang8/barcodes/master/PerkinElmer_NextFlex_UDI_4000.csv">https://raw.githubusercontent.com/swang8/barcodes/master/PerkinElmer_NextFlex_UDI_4000.csv</a></li>
<li>txgen_dulig, <a href="https://raw.githubusercontent.com/swang8/barcodes/master/TxGen_DuLig_CDI_Combined.csv">https://raw.githubusercontent.com/swang8/barcodes/master/TxGen_DuLig_CDI_Combined.csv</a></li>
</ol>
<br>
<FORM METHOD = POST NAME="MainForm" id="MainForm" ENCTYPE= "multipart/form-data" >
<div class="form-group">
You may paste your barcodes here:<br>
<textarea name="SEQUENCE" class="md-textarea form-control" rows="7"></textarea>
</div>
<br>
<p>
<p>
<div class="form-group">
Check conflicts up to this amount of mismatches (if select 3, barcode pairs with 0, 1, 2, or 3 mismatches will be reported as conflicted):<br>
<select name=selection>
<option> 1 </option>
<option selected="selected"> 2 </option>
<option > 3 </option>
<option> 4 </option>
<option> 5 </option>
<option> 6 </option>
</select>
</div>
<div class="form-check">
<input type="checkbox" class="form-check-input" name="check" id="plate" value="1" >Check Plate Position<br>
<small id="helpMsg" class="form-text text-muted">For this to work, the column "Plate_position" is requried in the CSV.</small>
</div>
</p>
<div class="form-group">
<INPUT TYPE="button" class="btn btn-default" VALUE="Clear data" onClick="MainForm.SEQUENCE.value='';MainForm.SEQFILE.value=''; MainForm.SEQUENCE.focus();">
</div>
<p></p>
<div class="form-group">
<p>Or load it from a file (should be the same format as mentioned in the example).<br>
Click to select:</p>
<INPUT class="form-control-file" TYPE="file" NAME="SEQFILE">
<br>
</div>
<div class="form-group">
<INPUT TYPE="submit" class="btn btn-primary" VALUE="Check my barcodes">
</div>
<HR>
</FORM>
<div id="mesg"> </div>
<div id="output"></div>
</div>
</body>
</html>
|
docs/0.02/index.html | WinningSlowly/winningslowly.org | <!DOCTYPE html>
<html lang="en" prefix="og: http://ogp.me/ns# article: http://ogp.me/ns/article">
<head>
<title>
0.02: Do [Content] Right ◦ Winning Slowly
</title>
<meta
name="description"
content=""
/>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="author" href="humans.txt" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@winningslowly" />
<meta name="twitter:creator" content="@winningslowly" />
<meta property="og:url" content="https://winningslowly.org/0.02/" />
<meta name="article:author" content="https://chriskrycho.com" />
<meta name="article:author" content="http://stephencarradini.com" />
<meta property="article:section" content="Season 0: This Is In Beta!" />
<meta property="og:title" content=" 0.02: Do [Content] Right ◦ Winning Slowly" />
<meta name="twitter:title" content=" 0.02: Do [Content] Right ◦ Winning Slowly" />
<meta property="og:description" content="Internet Radio, Pastor-Authors, and Trade Agreements" />
<meta name="twitter:description" content="Internet Radio, Pastor-Authors, and Trade Agreements" />
<meta property="og:type" content="article" />
<meta property="article:published_time" content="2014-02-11T08:0000-0700" />
<meta property="article:modified_time" content="2014-02-11T08:0000-0700" />
<meta property="article:tag" content=ethics />
<meta property="article:tag" content=music />
<meta property="article:tag" content=technology />
<meta property="article:tag" content=Christianity />
<meta property="og:image" content="https://winningslowly.org/images/logotype.png" />
<meta property="og:image:type" content="image/png" />
<meta property="og:image:width" content="3000" />
<meta property="og:image:height" content="3000" />
<meta
property="og:image:alt"
content="The word 'Winning' in dark gray and the word 'slowly' in a brilliant sea blue."
/>
<meta name="twitter:image" content="https://winningslowly.org/images/logotype.png" />
<link href="/style.min.css" type="text/css" rel="stylesheet" />
<link
href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css"
rel="stylesheet"
/>
<link
href="/feed.xml"
type="application/rss+xml"
rel="alternate"
title="Winning Slowly RSS Feed"
/>
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#2369af">
<meta name="msapplication-TileColor" content="#2369af">
<meta name="theme-color" content="#2369af">
</head>
<body>
<nav class='SeasonNav'>
<a class="SeasonNav-season" href="/season-0.html">
Season 0
</a>
<a class="SeasonNav-season" href="/season-1.html">
Season 1
</a>
<a class="SeasonNav-season" href="/season-2.html">
Season 2
</a>
<a class="SeasonNav-season" href="/season-3.html">
Season 3
</a>
<a class="SeasonNav-season" href="/season-4.html">
Season 4
</a>
<a class="SeasonNav-season" href="/season-5.html">
Season 5
</a>
<a class="SeasonNav-season" href="/season-6.html">
Season 6
</a>
<a class="SeasonNav-season" href="/season-7.html">
Season 7
</a>
<a class="SeasonNav-season" href="/season-8.html">
Season 8
</a>
<a class="SeasonNav-season" href="/season-bonus.html">
Bonus
</a>
<a class="SeasonNav-season" href="/season-standalone-episodes.html">
Standalone Episodes
</a>
</nav>
<main class="Main">
<a class='Banner' href="/">
<h1 class='Banner-title BannerTitle'>
<span class='BannerTitle-text BannerTitle-text--winning'>Winning</span>
<span class='BannerTitle-text BannerTitle-text--slowly'>Slowly</span>
</h1>
<h2 class='Banner-subtitle BannerSubtitle'>
<span class='BannerSubtitle-line'>Taking the long view on</span>
<span class='BannerSubtitle-line'>technology, religion, ethics, and art.</span>
</h2>
</a>
<article class="Content">
<header class="ItemInfo">
<section class="ItemInfo-titles">
<h1 class="ItemTitle">
<span class="ItemTitle-component ItemTitle-component--num">Episode 0.02</span>
<span class="ItemTitle-component ItemTitle-component--title">Do [Content] Right</span>
</h1>
<h2 class="ItemSubtitle">Internet Radio, Pastor-Authors, and Trade Agreements</h2>
</section>
<section class="ItemInfo-meta ItemMeta">
<p class="ItemMeta-entry ItemMeta-entry--date">February 11, 2014</p>
<p class="ItemMeta-entry ItemMeta-entry--topics ItemTags">
Tagged:
<a href="/tag/christianity.html" class="ItemTags-tag">Christianity</a>,
<a href="/tag/ethics.html" class="ItemTags-tag">ethics</a>,
<a href="/tag/music.html" class="ItemTags-tag">music</a>,
<a href="/tag/technology.html" class="ItemTags-tag">technology</a>
</p>
</section>
</header>
<section class="Audio">
<audio class="Audio-player" title="Do [Content] Right" controls="controls" preload="metadata">
<source src=https://www.podtrac.com/pts/redirect.mp3/cdn.winningslowly.org/file/winningslowly/0.02.mp3 />
</audio>
<p class="Audio-download">
(<a href=https://www.podtrac.com/pts/redirect.mp3/cdn.winningslowly.org/file/winningslowly/0.02.mp3 download=https://www.podtrac.com/pts/redirect.mp3/cdn.winningslowly.org/file/winningslowly/0.02.mp3>download directly</a>)
</p>
</section>
<h3 id="show-notes">Show Notes</h3>
<p>In which we talk about doing “content” right—whether that content is streaming radio, books published by Christian pastors, or massive trade laws.</p>
<ul>
<li>Spotify, Pandora, and iTunes Radio: thinking about the ups and downs of each service</li>
<li>Pastor-authors: thinking about “plagiarism” and whose names end up on books</li>
<li>The Trans-Pacific Partnership: or, how making laws in secret as fast as possible is bad for democracy</li>
</ul>
<h3 id="music">Music</h3>
<ul>
<li>Opening music: <a href="//pauljphillips.bandcamp.com/track/time-time">“Time, Time”</a> from <em>Every Time I Leave</em> by Paul J. Phillips. Used by permission.</li>
<li>Closing music: <a href="//soundcloud.com/chriskrycho/winning-slowly">Winning Slowly Theme</a> by Chris Krycho. Used by dint of being written for the show.</li>
</ul>
<h3 id="links">Links</h3>
<ul>
<li><a href="//spotify.com">Spotify</a></li>
<li><a href="//www.apple.com/itunes/itunes-radio/">iTunes Radio</a></li>
<li><a href="//www.pandora.com">Pandora</a></li>
<li><a href="//www.stopfasttrack.com/">Stop Fast Track</a>
<ul>
<li><a href="//www.huffingtonpost.com/2014/01/14/harry-reid-fast-track_n_4598486.html">Lots of pols are against it</a></li>
<li><a href="//www.finance.senate.gov/imo/media/doc/TPA%20bill%20text.pdf">Senate Bill Text</a> / <a href="//www.finance.senate.gov/issue/?id=89321119-55D3-41A5-BA3C-498A0FF9D172">Senate-provided info</a></li>
<li><a href="//waysandmeans.house.gov/uploadedfiles/tpa_2_pager.pdf">House overview</a> / <a href="//waysandmeans.house.gov/tpa/">House-provided info</a></li>
<li><a href="//openmedia.org/crowdsource?sid=257664">Open Media Survey</a></li>
</ul></li>
</ul>
<h3 id="extras">Extras</h3>
<p><i class="editorial">Sometimes, because we’re just that cool, we’ll include bonus content related to the show. Case in point: today, you get the full text of the OpenMedia survey discussed on the show. NEAT.</i></p>
<h4 id="open-medias-citizen-powered-digital-future-survey">Open Media’s Citizen-Powered Digital Future Survey</h4>
<p>If you so desire, you can visit and participate in <a href="//openmedia.org/crowdsource?sid=257664">the original</a>. If you’re just curious about the questions they’re asking, take a look:</p>
<ul>
<li><p>How would you rank the priorities below if you were developing copyright laws?</p>
<ul>
<li>Protecting free expression</li>
<li>Compensation for creators & artists</li>
<li>clear and simple rules</li>
<li>Rules made democratically</li>
<li>Privacy Safeguards</li>
<li>Protection for media conglomerates</li>
</ul></li>
<li><p>If I download copyrighted songs without permission, the penalty should be:</p>
<ul>
<li>A Tribunal should issue me a fine, ranging from $250 to $15,000. (New Zealand’s Copyright “Infringing File Sharing” Amendment Act)</li>
<li>No penalty</li>
<li>A warning, and instruction about the laws surrounding copyright</li>
<li>Payment of a fine equivalent to the cost of purchasing the song</li>
<li>A Court should be able to issue a fine and order that I be disconnected from the Internet. (France’s “HADOPI” Law)</li>
</ul></li>
<li><p>How many years should copyright last?</p>
<ul>
<li>0yrs</li>
<li>10yrs</li>
<li>25yrs</li>
<li>50yrs</li>
<li>75yrs</li>
<li>100yrs</li>
<li>until death of creator</li>
<li>10yrs after death</li>
<li>25yrs after death</li>
<li>50yrs after death</li>
<li>75yrs after death</li>
<li>100yrs after death</li>
</ul></li>
<li><p>Which body(ies) should be responsible for enforcing copyright rules? (check all that apply)</p>
<ul>
<li>None</li>
<li>Internet Service Providers, with new technologies installed on their networks</li>
<li>A new national government agency</li>
<li>Copyright holders</li>
<li>Police and judges</li>
</ul></li>
<li><p>My Internet Service Provider should be permitted to share information about who I am and what I download with (check all that apply):</p>
<ul>
<li>Any copyright holder that makes a request (i.e. publishing company, production company)</li>
<li>Any copyright holder that makes a request (i.e. publishing company, production company)</li>
<li>A copyright holder but only after a court order</li>
<li>No-one ISPs should not share my information</li>
<li>Law enforcement authorities at their discretion</li>
</ul></li>
<li><p>Finland is set to vote on a new crowdsourced copyright law created by over 1100 people in collaboration with volunteer copyright lawyers. My country should:</p>
<ul>
<li>Design copyright laws through the legislative process, with extensive public consultation</li>
<li>Design copyright laws through the legislative process, with extensive public consultation</li>
<li>Design copyright laws by following Finland’s example, launching a participatory multi-stakeholder process that involves the general public, including Internet users & creators as well as copyright law experts</li>
<li>Design copyright laws by following Finland’s example, launching a participatory multi-stakeholder process that involves the general public, including Internet users & creators as well as copyright law experts</li>
<li>Design copyright laws by following Finland’s example, launching a participatory multi-stakeholder process that involves the general public, including Internet users & creators as well as copyright law experts</li>
</ul></li>
<li><p>When I download music, I want the following percentage of revenue to go to the artist:</p>
<ul>
<li>100%</li>
<li>50%</li>
<li>0%</li>
</ul></li>
<li><p>When I buy content (i.e. music, ebooks, movies) online, I expect to be able to:</p>
<ul>
<li>Use it on any device and modify it if necessary for any special needs I have (i.e. using software that can convert text into speech for the blind)</li>
<li>Use it on any device</li>
<li>Use it on any device I own, modify it for my special needs, & share it with friends as I would a physical copy</li>
<li>Modify it in any way I see fit, and make it available for free to anyone online, as long as nobody profits from it</li>
<li>Use it only on the device I used to purchase it</li>
</ul></li>
<li><p>When using the content of others online we should: (check all that apply):</p>
<ul>
<li>Be able to excerpt from works to share commentaries and reviews without fear of legal penalties</li>
<li>Always give credit to the creator of the work when sharing</li>
<li>Be able to create parodies, remixes and fan fiction without having to break the law and face penalties</li>
<li>Have free access to content so long as we do not profit from the original work</li>
<li>Be sure that the majority of our payments goes directly to compensating the creator(s) of the work</li>
</ul></li>
</ul>
</article>
<hr>
<article id='about' class="Content Content--index Content--subscribe">
<h3>About</h3>
<h4 id="who">The Hosts</h4>
<p>
<strong>Chris Krycho</strong> is a
<a href="https://linkedin.com" title="LinkedIn">software engineer</a>,
<a href='https://www.chriskrycho.com/podcasts' title='podcasts'>podcaster</a>,
<a href="https://www.chriskrycho.com" title="chriskrycho.com">writer</a>, and
<a href="https://soundcloud.com/chriskrycho">occasional composer</a>. He lives with his family in Colorado.
</p>
<p>
<strong>Stephen Carradini</strong> is a
<a href="https://cisa.asu.edu/tech-comm/faculty" title="Assistant Professor of Technical Communication in Arizona State University’s Technical Communication">digital media scholar and professor</a>,
<a href="//independentclauses.com" title="Independent Clauses music blog">writer</a>,
<a href="//stephencarradini.com" title="StephenCarradini.com">editor</a>, and
<a href="//themidnightsons.bandcamp.com" title="The Midnight Sons">songwriter</a>. He lives with his family in Arizona.
</p>
<h4 id='privacy'>Privacy</h4>
<p>
We collect zero data about your use of this website. We use <a href='https://analytics.podtrac.com'>Podtrac</a> to gather very limited aggregate statistics about our listenership—the total number of downloads per episode, and the countries of our listenership. That’s it, and it always will be.
</p>
<h4>License</h4>
<p>
©2013–2021 Stephen Carradini and Chris Krycho.
</p>
<p>
Design by <a href="https://chriskrycho.com">Chris Krycho</a>, using <a href='https://klim.co.nz/retail-fonts/tiempos-headline/'>Tiempos Headline</a> and <a href='https://klim.co.nz/retail-fonts/tiempos-text/'>Tiempos Text</a>, by <a href="https://klim.co.nz/">Klim Type Foundry</a>.
</p>
<p>
Source code available <a href='https://github.com/winningslowly/winningslowly.org'>on GitHub</a>.
</p>
<p>
All content licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>.
(Translation: please <em>don't</em> just copy and paste; please <em>do</em> copy and modify for any use, giving credit where due.)
<a href="https://winningslowly.org/licenses.html">Read more on our licenses.</a>
</p>
</article> </main>
</body>
</html> |
libraries/opencv/javadoc/org/opencv/engine/package-summary.html | vytjan/detectedNumbers | <!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_65) on Tue Jun 23 19:39:41 MSK 2015 -->
<TITLE>
org.opencv.engine
</TITLE>
<META NAME="date" CONTENT="2015-06-23">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="org.opencv.engine";
}
}
</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-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</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>
OpenCV 3.0.0</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../org/opencv/core/package-summary.html"><B>PREV PACKAGE</B></A>
<A HREF="../../../org/opencv/features2d/package-summary.html"><B>NEXT PACKAGE</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../index.html?org/opencv/engine/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 org.opencv.engine
</H2>
<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-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</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>
<a href=http://docs.opencv.org>OpenCV 3.0.0 Documentation</a></EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../org/opencv/core/package-summary.html"><B>PREV PACKAGE</B></A>
<A HREF="../../../org/opencv/features2d/package-summary.html"><B>NEXT PACKAGE</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../index.html?org/opencv/engine/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>
|
doc/html/argument__holder_8hpp-source.html | makerbot/clp-parser | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<title>C++ command line parameters parser: argument_holder.hpp Source File</title>
<link href="own.css" rel="stylesheet" type="text/css">
<link href="tabs.css" rel="stylesheet" type="text/css">
</head><body>
<!-- Generated by Doxygen 1.5.6 -->
<div class="navigation" id="top">
<div class="tabs">
<ul>
<li><a href="main.html"><span>Main Page</span></a></li>
<li><a href="pages.html"><span>Related Pages</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li><a href="annotated.html"><span>Data Structures</span></a></li>
<li class="current"><a href="files.html"><span>Files</span></a></li>
</ul>
</div>
<h1>argument_holder.hpp</h1><a href="argument__holder_8hpp.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="comment">// C++ Command line parameters parser.</span>
<a name="l00002"></a>00002 <span class="comment">//</span>
<a name="l00003"></a>00003 <span class="comment">// Copyright (C) Denis Shevchenko, 2010.</span>
<a name="l00004"></a>00004 <span class="comment">// shev.denis @ gmail.com</span>
<a name="l00005"></a>00005 <span class="comment">//</span>
<a name="l00006"></a>00006 <span class="comment">// Permission is hereby granted, free of charge, to any person obtaining a copy</span>
<a name="l00007"></a>00007 <span class="comment">// of this software and associated documentation files (the "Software"), to deal</span>
<a name="l00008"></a>00008 <span class="comment">// in the Software without restriction, including without limitation the rights</span>
<a name="l00009"></a>00009 <span class="comment">// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell</span>
<a name="l00010"></a>00010 <span class="comment">// copies of the Software, and to permit persons to whom the Software is</span>
<a name="l00011"></a>00011 <span class="comment">// furnished to do so, subject to the following conditions:</span>
<a name="l00012"></a>00012 <span class="comment">// </span>
<a name="l00013"></a>00013 <span class="comment">// The above copyright notice and this permission notice shall be included in</span>
<a name="l00014"></a>00014 <span class="comment">// all copies or substantial portions of the Software.</span>
<a name="l00015"></a>00015 <span class="comment">//</span>
<a name="l00016"></a>00016 <span class="comment">// See http://www.opensource.org/licenses/mit-license.php</span>
<a name="l00017"></a>00017 <span class="comment">//</span>
<a name="l00018"></a>00018 <span class="comment">// http://clp-parser.sourceforge.net/</span>
<a name="l00019"></a>00019
<a name="l00020"></a>00020 <span class="preprocessor">#ifndef CLPP_DETAIL_ARGUMENT_HOLDER_HPP</span>
<a name="l00021"></a>00021 <span class="preprocessor"></span><span class="preprocessor">#define CLPP_DETAIL_ARGUMENT_HOLDER_HPP</span>
<a name="l00022"></a>00022 <span class="preprocessor"></span>
<a name="l00023"></a>00023 <span class="preprocessor">#include <boost/shared_ptr.hpp></span>
<a name="l00024"></a>00024 <span class="preprocessor">#include <boost/function.hpp></span>
<a name="l00025"></a>00025 <span class="preprocessor">#include <boost/bind.hpp></span>
<a name="l00026"></a>00026
<a name="l00027"></a>00027 <span class="preprocessor">#include <string></span>
<a name="l00028"></a>00028
<a name="l00031"></a>00031 <span class="keyword">namespace </span>clpp {
<a name="l00032"></a>00032
<a name="l00035"></a>00035 <span class="keyword">namespace </span>detail {
<a name="l00036"></a>00036
<a name="l00042"></a>00042 <span class="keyword">template</span>< <span class="keyword">typename</span> ArgType >
<a name="l00043"></a><a class="code" href="structclpp_1_1detail_1_1argument__holder.html">00043</a> <span class="keyword">struct </span><a class="code" href="structclpp_1_1detail_1_1argument__holder.html" title="Argument&#39;s info holder.">argument_holder</a> {
<a name="l00044"></a>00044 <span class="keyword">typedef</span> boost::function< void ( <span class="keyword">const</span> ArgType& <span class="comment">/* value */</span> ) >
<a name="l00045"></a><a class="code" href="structclpp_1_1detail_1_1argument__holder.html#babbc19c71e920b10eb96c19e40f3eba">00045</a> <a class="code" href="structclpp_1_1detail_1_1argument__holder.html#babbc19c71e920b10eb96c19e40f3eba">user_function_with_arg</a>;
<a name="l00046"></a>00046 <span class="keyword">public</span>:
<a name="l00047"></a><a class="code" href="structclpp_1_1detail_1_1argument__holder.html#19d01b8676fd6fd1b9e68f7a93c626e9">00047</a> <span class="keyword">explicit</span> <a class="code" href="structclpp_1_1detail_1_1argument__holder.html#19d01b8676fd6fd1b9e68f7a93c626e9">argument_holder</a>( <span class="keywordtype">void</span> (*fn)( <span class="keyword">const</span> ArgType& ) ) :
<a name="l00048"></a>00048 <a class="code" href="structclpp_1_1detail_1_1argument__holder.html#e7ea3e5c5dd9cf6ab5e80768b5281d40">func_with_arg</a>( fn ) {}
<a name="l00049"></a>00049
<a name="l00050"></a><a class="code" href="structclpp_1_1detail_1_1argument__holder.html#3dcab5dd5db9f2837ab4858d7ac174f8">00050</a> <span class="keyword">explicit</span> <a class="code" href="structclpp_1_1detail_1_1argument__holder.html#19d01b8676fd6fd1b9e68f7a93c626e9">argument_holder</a>( <span class="keywordtype">void</span> (*fn)( ArgType ) ) :
<a name="l00051"></a>00051 <a class="code" href="structclpp_1_1detail_1_1argument__holder.html#e7ea3e5c5dd9cf6ab5e80768b5281d40">func_with_arg</a>( fn ) {}
<a name="l00052"></a>00052
<a name="l00053"></a>00053 <span class="keyword">template</span>< <span class="keyword">typename</span> Object >
<a name="l00054"></a><a class="code" href="structclpp_1_1detail_1_1argument__holder.html#99b539493d8c8a3065a19a10ee4463ab">00054</a> <span class="keyword">explicit</span> <a class="code" href="structclpp_1_1detail_1_1argument__holder.html#19d01b8676fd6fd1b9e68f7a93c626e9">argument_holder</a>( Object* obj, <span class="keywordtype">void</span> ( Object::*fn )( <span class="keyword">const</span> ArgType& ) ) :
<a name="l00055"></a>00055 <a class="code" href="structclpp_1_1detail_1_1argument__holder.html#e7ea3e5c5dd9cf6ab5e80768b5281d40">func_with_arg</a>( boost::bind( fn, obj, _1 ) ) {}
<a name="l00056"></a>00056
<a name="l00057"></a>00057 <span class="keyword">template</span>< <span class="keyword">typename</span> Object >
<a name="l00058"></a><a class="code" href="structclpp_1_1detail_1_1argument__holder.html#52a1f8f4ffee0743a69a947f9fc7474b">00058</a> <span class="keyword">explicit</span> <a class="code" href="structclpp_1_1detail_1_1argument__holder.html#19d01b8676fd6fd1b9e68f7a93c626e9">argument_holder</a>( Object* obj, <span class="keywordtype">void</span> ( Object::*fn )( <span class="keyword">const</span> ArgType& ) <span class="keyword">const</span> ) :
<a name="l00059"></a>00059 <a class="code" href="structclpp_1_1detail_1_1argument__holder.html#e7ea3e5c5dd9cf6ab5e80768b5281d40">func_with_arg</a>( boost::bind( fn, obj, _1 ) ) {}
<a name="l00060"></a>00060
<a name="l00061"></a>00061 <span class="keyword">template</span>< <span class="keyword">typename</span> Object >
<a name="l00062"></a><a class="code" href="structclpp_1_1detail_1_1argument__holder.html#4fc1529b3c3d2077be2e1b7ad7236d30">00062</a> <span class="keyword">explicit</span> <a class="code" href="structclpp_1_1detail_1_1argument__holder.html#19d01b8676fd6fd1b9e68f7a93c626e9">argument_holder</a>( Object* obj, <span class="keywordtype">void</span> ( Object::*fn )( ArgType ) ) :
<a name="l00063"></a>00063 <a class="code" href="structclpp_1_1detail_1_1argument__holder.html#e7ea3e5c5dd9cf6ab5e80768b5281d40">func_with_arg</a>( boost::bind( fn, obj, _1 ) ) {}
<a name="l00064"></a>00064
<a name="l00065"></a>00065 <span class="keyword">template</span>< <span class="keyword">typename</span> Object >
<a name="l00066"></a><a class="code" href="structclpp_1_1detail_1_1argument__holder.html#bf40929fe51ac5d7e1dc290c55f13282">00066</a> <span class="keyword">explicit</span> <a class="code" href="structclpp_1_1detail_1_1argument__holder.html#19d01b8676fd6fd1b9e68f7a93c626e9">argument_holder</a>( Object* obj, <span class="keywordtype">void</span> ( Object::*fn )( ArgType ) <span class="keyword">const</span> ) :
<a name="l00067"></a>00067 <a class="code" href="structclpp_1_1detail_1_1argument__holder.html#e7ea3e5c5dd9cf6ab5e80768b5281d40">func_with_arg</a>( boost::bind( fn, obj, _1 ) ) {}
<a name="l00068"></a>00068 <span class="keyword">public</span>:
<a name="l00069"></a><a class="code" href="structclpp_1_1detail_1_1argument__holder.html#e7ea3e5c5dd9cf6ab5e80768b5281d40">00069</a> <a class="code" href="structclpp_1_1detail_1_1argument__holder.html#babbc19c71e920b10eb96c19e40f3eba">user_function_with_arg</a> <a class="code" href="structclpp_1_1detail_1_1argument__holder.html#e7ea3e5c5dd9cf6ab5e80768b5281d40">func_with_arg</a>;
<a name="l00070"></a><a class="code" href="structclpp_1_1detail_1_1argument__holder.html#83ac2e8e0971fb4b4863b2a1e644b783">00070</a> ArgType <a class="code" href="structclpp_1_1detail_1_1argument__holder.html#83ac2e8e0971fb4b4863b2a1e644b783">default_value</a>;
<a name="l00071"></a>00071 };
<a name="l00072"></a>00072
<a name="l00073"></a><a class="code" href="namespaceclpp_1_1detail.html#b4a53380c8424abde39fbef83494435b">00073</a> <span class="keyword">typedef</span> boost::shared_ptr< argument_holder< bool > > <a class="code" href="namespaceclpp_1_1detail.html#b4a53380c8424abde39fbef83494435b">b_arg_p</a>;
<a name="l00074"></a>00074
<a name="l00075"></a><a class="code" href="namespaceclpp_1_1detail.html#b4654fb16e9de3414fd2d03aad1233dd">00075</a> <span class="keyword">typedef</span> boost::shared_ptr< argument_holder< char > > <a class="code" href="namespaceclpp_1_1detail.html#b4654fb16e9de3414fd2d03aad1233dd">c_arg_p</a>;
<a name="l00076"></a><a class="code" href="namespaceclpp_1_1detail.html#c70159fcc286f90d863a69670d6e97ba">00076</a> <span class="keyword">typedef</span> boost::shared_ptr< argument_holder< signed char > > <a class="code" href="namespaceclpp_1_1detail.html#c70159fcc286f90d863a69670d6e97ba">sc_arg_p</a>;
<a name="l00077"></a><a class="code" href="namespaceclpp_1_1detail.html#6dad21d5a7e0d9a26e65dbb4484c05b5">00077</a> <span class="keyword">typedef</span> boost::shared_ptr< argument_holder< unsigned char > > <a class="code" href="namespaceclpp_1_1detail.html#6dad21d5a7e0d9a26e65dbb4484c05b5">uc_arg_p</a>;
<a name="l00078"></a><a class="code" href="namespaceclpp_1_1detail.html#1137fa385983e6f8d087d6b6daa983a5">00078</a> <span class="keyword">typedef</span> boost::shared_ptr< argument_holder< const char* > > <a class="code" href="namespaceclpp_1_1detail.html#1137fa385983e6f8d087d6b6daa983a5">cca_arg_p</a>;
<a name="l00079"></a>00079
<a name="l00080"></a><a class="code" href="namespaceclpp_1_1detail.html#d19256ff897db2cf10e777478d64156a">00080</a> <span class="keyword">typedef</span> boost::shared_ptr< argument_holder< int > > <a class="code" href="namespaceclpp_1_1detail.html#d19256ff897db2cf10e777478d64156a">i_arg_p</a>;
<a name="l00081"></a><a class="code" href="namespaceclpp_1_1detail.html#b7d8ce50336f2c8f1d199b24a5693ccf">00081</a> <span class="keyword">typedef</span> boost::shared_ptr< argument_holder< signed int > > <a class="code" href="namespaceclpp_1_1detail.html#b7d8ce50336f2c8f1d199b24a5693ccf">si_arg_p</a>;
<a name="l00082"></a><a class="code" href="namespaceclpp_1_1detail.html#8f215002f97177daa8574fe725958129">00082</a> <span class="keyword">typedef</span> boost::shared_ptr< argument_holder< unsigned int > > <a class="code" href="namespaceclpp_1_1detail.html#8f215002f97177daa8574fe725958129">ui_arg_p</a>;
<a name="l00083"></a><a class="code" href="namespaceclpp_1_1detail.html#8da5f9894dbfd312108996af0648f06d">00083</a> <span class="keyword">typedef</span> boost::shared_ptr< argument_holder< short int > > <a class="code" href="namespaceclpp_1_1detail.html#8da5f9894dbfd312108996af0648f06d">shi_arg_p</a>;
<a name="l00084"></a><a class="code" href="namespaceclpp_1_1detail.html#0055da8f717d717a0fec56391731946a">00084</a> <span class="keyword">typedef</span> boost::shared_ptr< argument_holder< long int > > <a class="code" href="namespaceclpp_1_1detail.html#0055da8f717d717a0fec56391731946a">li_arg_p</a>;
<a name="l00085"></a><a class="code" href="namespaceclpp_1_1detail.html#1ed8fcf20533f92c466391e34911642e">00085</a> <span class="keyword">typedef</span> boost::shared_ptr< argument_holder< unsigned long int > > <a class="code" href="namespaceclpp_1_1detail.html#1ed8fcf20533f92c466391e34911642e">uli_arg_p</a>;
<a name="l00086"></a><a class="code" href="namespaceclpp_1_1detail.html#16c7e245e9d118a0620c69223828540a">00086</a> <span class="keyword">typedef</span> boost::shared_ptr< argument_holder< unsigned short int > > <a class="code" href="namespaceclpp_1_1detail.html#16c7e245e9d118a0620c69223828540a">ushi_arg_p</a>;
<a name="l00087"></a><a class="code" href="namespaceclpp_1_1detail.html#25598bfdbe88ce015380145635c0f7a9">00087</a> <span class="keyword">typedef</span> boost::shared_ptr< argument_holder< signed long int > > <a class="code" href="namespaceclpp_1_1detail.html#25598bfdbe88ce015380145635c0f7a9">sli_arg_p</a>;
<a name="l00088"></a><a class="code" href="namespaceclpp_1_1detail.html#e4e430b017d3cec4b5d30b17f3d3d749">00088</a> <span class="keyword">typedef</span> boost::shared_ptr< argument_holder< signed short int > > <a class="code" href="namespaceclpp_1_1detail.html#e4e430b017d3cec4b5d30b17f3d3d749">sshi_arg_p</a>;
<a name="l00089"></a>00089
<a name="l00090"></a><a class="code" href="namespaceclpp_1_1detail.html#e254d4efa19adcddda39082e411a8c60">00090</a> <span class="keyword">typedef</span> boost::shared_ptr< argument_holder< float > > <a class="code" href="namespaceclpp_1_1detail.html#e254d4efa19adcddda39082e411a8c60">f_arg_p</a>;
<a name="l00091"></a><a class="code" href="namespaceclpp_1_1detail.html#557bad8cfdb4525f7a35053db03afe6f">00091</a> <span class="keyword">typedef</span> boost::shared_ptr< argument_holder< double > > <a class="code" href="namespaceclpp_1_1detail.html#557bad8cfdb4525f7a35053db03afe6f">d_arg_p</a>;
<a name="l00092"></a><a class="code" href="namespaceclpp_1_1detail.html#073c9bfabc088d784330fe549eed4140">00092</a> <span class="keyword">typedef</span> boost::shared_ptr< argument_holder< long double > > <a class="code" href="namespaceclpp_1_1detail.html#073c9bfabc088d784330fe549eed4140">ld_arg_p</a>;
<a name="l00093"></a>00093
<a name="l00094"></a><a class="code" href="namespaceclpp_1_1detail.html#cf0b20834bb7dad734f04afbcb0f9876">00094</a> <span class="keyword">typedef</span> boost::shared_ptr< argument_holder< std::string > > <a class="code" href="namespaceclpp_1_1detail.html#cf0b20834bb7dad734f04afbcb0f9876">s_arg_p</a>;
<a name="l00095"></a>00095
<a name="l00096"></a>00096 } <span class="comment">// namespace detail</span>
<a name="l00097"></a>00097 } <span class="comment">// namespace clpp</span>
<a name="l00098"></a>00098
<a name="l00099"></a>00099 <span class="preprocessor">#endif // CLPP_DETAIL_ARGUMENT_HOLDER_HPP</span>
</pre></div></div>
<hr size="1"><address style="text-align: right;"><small>Generated on Thu Oct 28 17:45:49 2010 for C++ command line parameters parser by
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.6 </small></address>
</body>
</html>
|
2006/02/09/taking-aim-at-targetcom/index.html | WebStandardsSherpa/webstandards.org | <!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">
<!-- Mirrored from www.webstandards.org/2006/02/09/taking-aim-at-targetcom/ by HTTrack Website Copier/3.x [XR&CO'2014], Fri, 18 Aug 2017 17:45:46 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=UTF-8" /><!-- /Added by HTTrack -->
<head>
<title> Taking Aim at Target(.com) - The Web Standards Project</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="description" content="The Web Standards Project is a grassroots coalition fighting for standards which ensure simple, affordable access to web technologies for all." />
<meta name="MSSmartTagsPreventParsing" content="true" />
<script type="text/javascript" src="../../../../wp/wp-content/themes/web-standards-project/collapse.js"></script>
<link rel="stylesheet" type="text/css" media="screen, projection" href="/wp/wp-content/themes/web-standards-project/styles.css" />
<link rel="stylesheet" type="text/css" media="print" href="/wp/wp-content/themes/web-standards-project/print.css" />
<link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="/feed/index.html" />
<link rel="alternate" type="text/xml" title="RSS .92" href="/feed/rss/index.html" />
<link rel="alternate" type="application/atom+xml" title="Atom 1.0" href="/feed/atom/index.html" />
<link rel="pingback" href="/wp/xmlrpc.php" />
<link rel="Shortcut Icon" type="image/ico" href="/files/theme/wasp.ico" />
<link rel="home" title="Web Standards Project Home" href="/index.html" />
<link rel='archives' title='March 2013' href='/2013/03/index.html' />
<link rel='archives' title='February 2012' href='/2012/02/index.html' />
<link rel='archives' title='December 2011' href='/2011/12/index.html' />
<link rel='archives' title='November 2011' href='/2011/11/index.html' />
<link rel='archives' title='March 2011' href='/2011/03/index.html' />
<link rel='archives' title='February 2011' href='/2011/02/index.html' />
<link rel='archives' title='January 2011' href='/2011/01/index.html' />
<link rel='archives' title='August 2010' href='/2010/08/index.html' />
<link rel='archives' title='June 2010' href='/2010/06/index.html' />
<link rel='archives' title='March 2010' href='/2010/03/index.html' />
<link rel='archives' title='February 2010' href='/2010/02/index.html' />
<link rel='archives' title='January 2010' href='/2010/01/index.html' />
<link rel='archives' title='November 2009' href='/2009/11/index.html' />
<link rel='archives' title='June 2009' href='/2009/06/index.html' />
<link rel='archives' title='May 2009' href='/2009/05/index.html' />
<link rel='archives' title='April 2009' href='/2009/04/index.html' />
<link rel='archives' title='March 2009' href='/2009/03/index.html' />
<link rel='archives' title='February 2009' href='/2009/02/index.html' />
<link rel='archives' title='January 2009' href='/2009/01/index.html' />
<link rel='archives' title='December 2008' href='/2008/12/index.html' />
<link rel='archives' title='November 2008' href='/2008/11/index.html' />
<link rel='archives' title='October 2008' href='/2008/10/index.html' />
<link rel='archives' title='September 2008' href='/2008/09/index.html' />
<link rel='archives' title='August 2008' href='/2008/08/index.html' />
<link rel='archives' title='July 2008' href='/2008/07/index.html' />
<link rel='archives' title='June 2008' href='/2008/06/index.html' />
<link rel='archives' title='May 2008' href='/2008/05/index.html' />
<link rel='archives' title='April 2008' href='/2008/04/index.html' />
<link rel='archives' title='March 2008' href='/2008/03/index.html' />
<link rel='archives' title='February 2008' href='/2008/02/index.html' />
<link rel='archives' title='January 2008' href='/2008/01/index.html' />
<link rel='archives' title='December 2007' href='/2007/12/index.html' />
<link rel='archives' title='November 2007' href='/2007/11/index.html' />
<link rel='archives' title='October 2007' href='/2007/10/index.html' />
<link rel='archives' title='September 2007' href='/2007/09/index.html' />
<link rel='archives' title='August 2007' href='/2007/08/index.html' />
<link rel='archives' title='June 2007' href='/2007/06/index.html' />
<link rel='archives' title='May 2007' href='/2007/05/index.html' />
<link rel='archives' title='April 2007' href='/2007/04/index.html' />
<link rel='archives' title='March 2007' href='/2007/03/index.html' />
<link rel='archives' title='February 2007' href='/2007/02/index.html' />
<link rel='archives' title='January 2007' href='/2007/01/index.html' />
<link rel='archives' title='December 2006' href='../../../12/index.html' />
<link rel='archives' title='November 2006' href='../../../11/index.html' />
<link rel='archives' title='October 2006' href='../../../10/index.html' />
<link rel='archives' title='September 2006' href='../../../09/index.html' />
<link rel='archives' title='August 2006' href='../../../08/index.html' />
<link rel='archives' title='July 2006' href='../../../07/index.html' />
<link rel='archives' title='June 2006' href='../../../06/index.html' />
<link rel='archives' title='May 2006' href='../../../05/index.html' />
<link rel='archives' title='April 2006' href='../../../04/index.html' />
<link rel='archives' title='March 2006' href='../../../03/index.html' />
<link rel='archives' title='February 2006' href='../../index.html' />
<link rel='archives' title='January 2006' href='../../../01/index.html' />
<link rel='archives' title='December 2005' href='/2005/12/index.html' />
<link rel='archives' title='November 2005' href='/2005/11/index.html' />
<link rel='archives' title='October 2005' href='/2005/10/index.html' />
<link rel='archives' title='September 2005' href='/2005/09/index.html' />
<link rel='archives' title='August 2005' href='/2005/08/index.html' />
<link rel='archives' title='July 2005' href='/2005/07/index.html' />
<link rel='archives' title='June 2005' href='/2005/06/index.html' />
<link rel='archives' title='May 2005' href='/2005/05/index.html' />
<link rel='archives' title='April 2005' href='/2005/04/index.html' />
<link rel='archives' title='March 2005' href='/2005/03/index.html' />
<link rel='archives' title='February 2005' href='/2005/02/index.html' />
<link rel='archives' title='January 2005' href='/2005/01/index.html' />
<link rel='archives' title='December 2004' href='/2004/12/index.html' />
<link rel='archives' title='November 2004' href='/2004/11/index.html' />
<link rel='archives' title='October 2004' href='/2004/10/index.html' />
<link rel='archives' title='September 2004' href='/2004/09/index.html' />
<link rel='archives' title='August 2004' href='/2004/08/index.html' />
<link rel='archives' title='July 2004' href='/2004/07/index.html' />
<link rel='archives' title='June 2004' href='/2004/06/index.html' />
<link rel='archives' title='May 2004' href='/2004/05/index.html' />
<link rel='archives' title='April 2004' href='/2004/04/index.html' />
<link rel='archives' title='March 2004' href='/2004/03/index.html' />
<link rel='archives' title='February 2004' href='/2004/02/index.html' />
<link rel='archives' title='January 2004' href='/2004/01/index.html' />
<link rel='archives' title='December 2003' href='/2003/12/index.html' />
<link rel='archives' title='November 2003' href='/2003/11/index.html' />
<link rel='archives' title='October 2003' href='/2003/10/index.html' />
<link rel='archives' title='September 2003' href='/2003/09/index.html' />
<link rel='archives' title='August 2003' href='/2003/08/index.html' />
<link rel='archives' title='July 2003' href='/2003/07/index.html' />
<link rel='archives' title='June 2003' href='/2003/06/index.html' />
<link rel='archives' title='May 2003' href='/2003/05/index.html' />
<link rel='archives' title='April 2003' href='/2003/04/index.html' />
<link rel='archives' title='March 2003' href='/2003/03/index.html' />
<link rel='archives' title='February 2003' href='/2003/02/index.html' />
<link rel='archives' title='January 2003' href='/2003/01/index.html' />
<link rel='archives' title='December 2002' href='/2002/12/index.html' />
<link rel='archives' title='November 2002' href='/2002/11/index.html' />
<link rel='archives' title='October 2002' href='/2002/10/index.html' />
<link rel='archives' title='September 2002' href='/2002/09/index.html' />
<link rel='archives' title='August 2002' href='/2002/08/index.html' />
<link rel='archives' title='July 2002' href='/2002/07/index.html' />
<link rel='archives' title='June 2002' href='/2002/06/index.html' />
<link rel='archives' title='April 2002' href='/2002/04/index.html' />
<link rel='archives' title='March 2002' href='/2002/03/index.html' />
<link rel='archives' title='December 2001' href='/2001/12/index.html' />
<link rel='archives' title='September 2001' href='/2001/09/index.html' />
<link rel='archives' title='November 2000' href='/2000/11/index.html' />
<link rel='archives' title='July 2000' href='/2000/07/index.html' />
<link rel='archives' title='April 2000' href='/2000/04/index.html' />
<link rel='archives' title='March 1999' href='/1999/03/index.html' />
<link rel='archives' title='October 1998' href='/1998/10/index.html' />
<link rel='archives' title='August 1998' href='/1998/08/index.html' />
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="/wp/xmlrpc0db0.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="/wp/wp-includes/wlwmanifest.xml" />
<link rel='prev' title='<code>!important</code> Fixed in Later IE7 Releases' href='../../03/important-fixed-in-later-ie7-releases/index.html' />
<link rel='next' title='Staying on Target' href='../../10/staying-on-target/index.html' />
<meta name="generator" content="WordPress 3.3.1" />
<link rel='canonical' href='index.html' />
<link rel='shortlink' href='../../../../index664b.html?p=744' />
</head>
<body id="top" class="individual">
<div id="container">
<div id="branding">
<h1><span>Working together for standards </span> <a href="/index.html">The Web Standards Project</a></h1>
<a id="skip" href="#content-main" title="Skip to content">Skip to content</a>
</div>
<div id="nav-main">
<form id="fm-search" method="get" action="http://www.webstandards.org/index.php">
<fieldset>
<legend>Search</legend>
<label for="s"><span>Search WaSP</span>
<input id="s" name="s" class="search" value="" /></label>
<input type="submit" class="submit" name="submit" value="Go!" />
</fieldset>
</form>
<ul>
<li><a href="/index.html" title="Home">Home</a></li>
<li><a href="../../../../about/index.html" title="More About Who We Are">About</a></li>
<li><a href="../../../../learn/index.html" title="More About Standards">Learn</a></li>
<li><a href="/action/index.html" title="WaSP and Community Actions">Action</a></li>
<li><a href="/buzz/index.html" title="Current and Archive Buzz Posts">Buzz</a></li>
<li><a href="/press/index.html" title="In the Press and For the Press">Press</a></li>
</ul>
</div>
<hr />
<div id="content">
<div id="content-main">
<div id="content-summary">
<h2 class="stmjrNoCollapse" id="post-744"><a href="index.html" rel="bookmark" title="Permanent Link: Taking Aim at Target(.com)">Taking Aim at Target(.com)</a></h2>
<p class="stmjrNoCollapse">By <span class="vcard"><a href="../../../../about/members/feather/index.html" class="url fn">Derek Featherstone</a></span> | February 9th, 2006 | Filed in <a href="/buzz/accessibility/index.html" title="View all posts in Accessibility" rel="category tag">Accessibility</a>, <a href="/buzz/legal/index.html" title="View all posts in Legal" rel="category tag">Legal</a></p>
<a href="#content-sub" id="stmjrCollapse-content-summary" title="Skip to comment form">Skip to comment form</a>
</div>
<p>With a name like Target, you would almost think they would have seen it coming, wouldn’t you?</p>
<p>The US <a href="http://www.nfb.org/">National Federation of the Blind</a> (NFB) has brought legal action against Target corporation (a major US-based discount retailer which operates more than 1,300 stores in 47 states) because their web site is not accessible. The NFB has raised the issue with Target Corporation before:</p>
<blockquote cite="http://www.dralegal.org/cases/private_business/nfb_v_target.php"><p>The website is no more accessible today than it was in May of last year, when we first complained to Target.</p>
</blockquote>
<p>That’s about 10 months ago. Sorry Target, but that’s just not good enough.</p>
<p>Ten months is more than enough time to fix the issues, or at least get started doing so. (Word to the wise – if you are making accessibility changes to your site based on feedback – make sure you document your process so that you can at least show that you’re doing <em>something</em> to address the issues, and if you are doing it incrementally make some sort of public announcment with each improvement you make, ok? You know – that <em>would</em> make good business sense.)</p>
<p>There’s quite a few areas that are described as problematic in the official <a href="http://www.dralegal.org/downloads/cases/target/nfb_v_target_complaint.pdf">NFB v Target case documents</a> but the main points are:</p>
<ul>
<li>Lack of alt text</li>
<li>images maps that neither have alt text or a functional equivalent on the page</li>
<li>requirement for a mouse to perform various functions on the site</li>
</ul>
<p>Honestly – I’m shocked at the first two. This is Accessibility 101. Should be in HTML 101 and Web Design 101 as well. But the third? A <em>requirement</em> for a mouse? I had to see this for myself.</p>
<p>It seems that Target.com uses image based submit buttons for certain forms (<code><input type="image" .../></code>). See the <a href="http://www.target.com/gp/flex/sign-in.html/601-2248466-0838558?from=pharmacy">Target Pharmacy Sign In page</a>. That’s right there’s no alt text on the image based submit buttons. Oh, but it gets worse.</p>
<p>When using these type of submit buttons, x and y co-ordinates that represent the exact location in pixels where the image was clicked are submitted along with the rest of the form as part of its array of name-value pairs. And if you use the keyboard to submit the link what happens? No x or y co-ordinates. And if your server side logic requires those x and y co-ordinates? Yes, that’s right. You have effectively locked out keyboard users. </p>
<p>This will be an interesting case for a number of reasons:</p>
<ol>
<li>Target.com is powered by Amazon.com, so who is responsible? are both responsible? a 50-50 split? 75-25? does the Amazon.com engine that is powering the site even allow Target developers make it accessible? Depending on the functionality of the Amazon engine, can it be considered an Authoring Tool and thus subject to the Authoring Tool Accessibility Guidelines? Did Amazon promise accessibility but not deliver? Did accessibility even make it on to the radar when building the site?</li>
<li>other cases have failed for a variety of reasons; the Southwest Airlines case had less teeth because they admitted fully that a screen reader user could still buy tickets online, but it was tougher to do so. Not the case with Target.com. A non-mouse user can not buy online. Nor can they create or sign in to the Target online pharmacy. A screen reader user can not find out what grocery coupons <em>found exclusively on the web</em> they can print to take into the store.</li>
</ol>
<p>Will the NFB be successful? Can a case like this have an influence on web accessibility in the <em>private sector</em> world-wide? One can only hope. We need this to be big, and we need it to hurt badly so that corporations world-wide take more notice. </p>
<p><a href="http://www.boxofchocolates.ca/archives/2006/02/09/taking-aim-at-target-dot-com">Cross-posted to take your comments</a></p>
<p>For further reading:</p>
<ul>
<li><a href="http://www.dralegal.org/cases/private_business/nfb_v_target.php">Disability Rights Advocates: National Federation of the Blind v. Target</a></li>
<li><a href="http://www.overlawyered.com/2006/02/target_sued_website_not_access.html">Target sued: website not accessible to blind</a></li>
<li><a href="http://blogs.wsj.com/law/2006/02/07/target-sued-by-national-federation-of-the-blind/">Target Sued By National Federation of the Blind</a>; also note that this article has brought the peanut gallery out that have no understanding of accessibility or why it’s even important</li>
</ul>
</div>
<div id="content-replies">
</div>
<div id="content-sub" title="Comment form">
<a href="#top" id="stmjrCollapse-content-sub" title="Return to top">Return to top</a>
<h3 class="stmjrNoCollapse">Post a Reply</h3>
<p>Comments are closed.</p>
</div>
</div>
<hr />
<div id="nav-supp">
<p><a href="#top" title="Back to Top">Back to Top</a></p>
</div>
<div id="siteinfo">
<p>All of the entries posted in <abbr title="The Web Standards Project">WaSP</abbr> Buzz express the opinions of their individual authors. They do not necessarily reflect the plans or positions of the Web Standards Project as a group.</p>
<p>This site is valid <a href="http://validator.w3.org/check/referer" title="Validate this document">XHTML 1.0 Strict</a>, <a href="http://jigsaw.w3.org/css-validator/check/referer" title="Validate this CSS">CSS</a> | Get Buzz via <a href="/feed/index.html"><abbr title="Really Simple Syndication">RSS</abbr></a> or <a href="/feed/atom/index.html">Atom</a> | <a href="../../../../about/colophon/index.html">Colophon</a> | <a href="../../../../about/legal/index.html">Legal</a></p>
<!-- 11 queries. 0.197 seconds. -->
</div>
</div>
</body>
<!-- Mirrored from www.webstandards.org/2006/02/09/taking-aim-at-targetcom/ by HTTrack Website Copier/3.x [XR&CO'2014], Fri, 18 Aug 2017 17:45:47 GMT -->
</html>
<!-- Dynamic page generated in 0.183 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2017-08-18 12:30:31 -->
<!-- super cache --> |
ng2-catdisplay/src/app/app.component.html | cdeil/slippy-astro-images | <div>
<app-source-select>Loading app-source-select ...</app-source-select>
<app-json-test>Loading app-json-test...</app-json-test>
</div>
|
resources/authentication/_LoginRegisterRequestPane.css | agrc/agrc.ijit | .login-register-request-pane {
} |
public/layout/admin_1/ui_nestable.html | Garulth/mdiary_admintools | <!DOCTYPE html>
<!--
Template Name: Metronic - Responsive Admin Dashboard Template build with Twitter Bootstrap 3.3.7
Version: 4.7
Author: KeenThemes
Website: http://www.keenthemes.com/
Contact: support@keenthemes.com
Follow: www.twitter.com/keenthemes
Dribbble: www.dribbble.com/keenthemes
Like: www.facebook.com/keenthemes
Purchase: http://themeforest.net/item/metronic-responsive-admin-dashboard-template/4021469?ref=keenthemes
Renew Support: http://themeforest.net/item/metronic-responsive-admin-dashboard-template/4021469?ref=keenthemes
License: You must have a valid license purchased only from themeforest(the above link) in order to legally use the theme for your project.
-->
<!--[if IE 8]> <html lang="en" class="ie8 no-js"> <![endif]-->
<!--[if IE 9]> <html lang="en" class="ie9 no-js"> <![endif]-->
<!--[if !IE]><!-->
<html lang="en">
<!--<![endif]-->
<!-- BEGIN HEAD -->
<head>
<meta charset="utf-8" />
<title>Metronic | The Ultimate Multi-purpose Bootstrap Admin Dashboard Theme | Theme #1 | Nestable List</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta content="width=device-width, initial-scale=1" name="viewport" />
<meta content="#1 selling multi-purpose bootstrap admin theme sold in themeforest marketplace packed with angularjs, material design, rtl support with over thausands of templates and ui elements and plugins to power any type of web applications including saas and admin dashboards. Preview page of Theme #1 for Drag & drop hierarchical list with mouse and touch compatibility"
name="description" />
<meta content="" name="author" />
<!-- BEGIN GLOBAL MANDATORY STYLES -->
<link href="http://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700&subset=all" rel="stylesheet" type="text/css" />
<link href="../assets/global/plugins/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css" />
<link href="../assets/global/plugins/simple-line-icons/simple-line-icons.min.css" rel="stylesheet" type="text/css" />
<link href="../assets/global/plugins/bootstrap/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
<link href="../assets/global/plugins/bootstrap-switch/css/bootstrap-switch.min.css" rel="stylesheet" type="text/css" />
<!-- END GLOBAL MANDATORY STYLES -->
<!-- BEGIN PAGE LEVEL PLUGINS -->
<link href="../assets/global/plugins/jquery-nestable/jquery.nestable.css" rel="stylesheet" type="text/css" />
<!-- END PAGE LEVEL PLUGINS -->
<!-- BEGIN THEME GLOBAL STYLES -->
<link href="../assets/global/css/components.min.css" rel="stylesheet" id="style_components" type="text/css" />
<link href="../assets/global/css/plugins.min.css" rel="stylesheet" type="text/css" />
<!-- END THEME GLOBAL STYLES -->
<!-- BEGIN THEME LAYOUT STYLES -->
<link href="../assets/layouts/layout/css/layout.min.css" rel="stylesheet" type="text/css" />
<link href="../assets/layouts/layout/css/themes/darkblue.min.css" rel="stylesheet" type="text/css" id="style_color" />
<link href="../assets/layouts/layout/css/custom.min.css" rel="stylesheet" type="text/css" />
<!-- END THEME LAYOUT STYLES -->
<link rel="shortcut icon" href="favicon.ico" /> </head>
<!-- END HEAD -->
<body class="page-header-fixed page-sidebar-closed-hide-logo page-content-white">
<div class="page-wrapper">
<!-- BEGIN HEADER -->
<div class="page-header navbar navbar-fixed-top">
<!-- BEGIN HEADER INNER -->
<div class="page-header-inner ">
<!-- BEGIN LOGO -->
<div class="page-logo">
<a href="index.html">
<img src="../assets/layouts/layout/img/logo.png" alt="logo" class="logo-default" /> </a>
<div class="menu-toggler sidebar-toggler">
<span></span>
</div>
</div>
<!-- END LOGO -->
<!-- BEGIN RESPONSIVE MENU TOGGLER -->
<a href="javascript:;" class="menu-toggler responsive-toggler" data-toggle="collapse" data-target=".navbar-collapse">
<span></span>
</a>
<!-- END RESPONSIVE MENU TOGGLER -->
<!-- BEGIN TOP NAVIGATION MENU -->
<div class="top-menu">
<ul class="nav navbar-nav pull-right">
<!-- BEGIN NOTIFICATION DROPDOWN -->
<!-- DOC: Apply "dropdown-dark" class after "dropdown-extended" to change the dropdown styte -->
<!-- DOC: Apply "dropdown-hoverable" class after below "dropdown" and remove data-toggle="dropdown" data-hover="dropdown" data-close-others="true" attributes to enable hover dropdown mode -->
<!-- DOC: Remove "dropdown-hoverable" and add data-toggle="dropdown" data-hover="dropdown" data-close-others="true" attributes to the below A element with dropdown-toggle class -->
<li class="dropdown dropdown-extended dropdown-notification" id="header_notification_bar">
<a href="javascript:;" class="dropdown-toggle" data-toggle="dropdown" data-hover="dropdown" data-close-others="true">
<i class="icon-bell"></i>
<span class="badge badge-default"> 7 </span>
</a>
<ul class="dropdown-menu">
<li class="external">
<h3>
<span class="bold">12 pending</span> notifications</h3>
<a href="page_user_profile_1.html">view all</a>
</li>
<li>
<ul class="dropdown-menu-list scroller" style="height: 250px;" data-handle-color="#637283">
<li>
<a href="javascript:;">
<span class="time">just now</span>
<span class="details">
<span class="label label-sm label-icon label-success">
<i class="fa fa-plus"></i>
</span> New user registered. </span>
</a>
</li>
<li>
<a href="javascript:;">
<span class="time">3 mins</span>
<span class="details">
<span class="label label-sm label-icon label-danger">
<i class="fa fa-bolt"></i>
</span> Server #12 overloaded. </span>
</a>
</li>
<li>
<a href="javascript:;">
<span class="time">10 mins</span>
<span class="details">
<span class="label label-sm label-icon label-warning">
<i class="fa fa-bell-o"></i>
</span> Server #2 not responding. </span>
</a>
</li>
<li>
<a href="javascript:;">
<span class="time">14 hrs</span>
<span class="details">
<span class="label label-sm label-icon label-info">
<i class="fa fa-bullhorn"></i>
</span> Application error. </span>
</a>
</li>
<li>
<a href="javascript:;">
<span class="time">2 days</span>
<span class="details">
<span class="label label-sm label-icon label-danger">
<i class="fa fa-bolt"></i>
</span> Database overloaded 68%. </span>
</a>
</li>
<li>
<a href="javascript:;">
<span class="time">3 days</span>
<span class="details">
<span class="label label-sm label-icon label-danger">
<i class="fa fa-bolt"></i>
</span> A user IP blocked. </span>
</a>
</li>
<li>
<a href="javascript:;">
<span class="time">4 days</span>
<span class="details">
<span class="label label-sm label-icon label-warning">
<i class="fa fa-bell-o"></i>
</span> Storage Server #4 not responding dfdfdfd. </span>
</a>
</li>
<li>
<a href="javascript:;">
<span class="time">5 days</span>
<span class="details">
<span class="label label-sm label-icon label-info">
<i class="fa fa-bullhorn"></i>
</span> System Error. </span>
</a>
</li>
<li>
<a href="javascript:;">
<span class="time">9 days</span>
<span class="details">
<span class="label label-sm label-icon label-danger">
<i class="fa fa-bolt"></i>
</span> Storage server failed. </span>
</a>
</li>
</ul>
</li>
</ul>
</li>
<!-- END NOTIFICATION DROPDOWN -->
<!-- BEGIN INBOX DROPDOWN -->
<!-- DOC: Apply "dropdown-dark" class after below "dropdown-extended" to change the dropdown styte -->
<li class="dropdown dropdown-extended dropdown-inbox" id="header_inbox_bar">
<a href="javascript:;" class="dropdown-toggle" data-toggle="dropdown" data-hover="dropdown" data-close-others="true">
<i class="icon-envelope-open"></i>
<span class="badge badge-default"> 4 </span>
</a>
<ul class="dropdown-menu">
<li class="external">
<h3>You have
<span class="bold">7 New</span> Messages</h3>
<a href="app_inbox.html">view all</a>
</li>
<li>
<ul class="dropdown-menu-list scroller" style="height: 275px;" data-handle-color="#637283">
<li>
<a href="#">
<span class="photo">
<img src="../assets/layouts/layout3/img/avatar2.jpg" class="img-circle" alt=""> </span>
<span class="subject">
<span class="from"> Lisa Wong </span>
<span class="time">Just Now </span>
</span>
<span class="message"> Vivamus sed auctor nibh congue nibh. auctor nibh auctor nibh... </span>
</a>
</li>
<li>
<a href="#">
<span class="photo">
<img src="../assets/layouts/layout3/img/avatar3.jpg" class="img-circle" alt=""> </span>
<span class="subject">
<span class="from"> Richard Doe </span>
<span class="time">16 mins </span>
</span>
<span class="message"> Vivamus sed congue nibh auctor nibh congue nibh. auctor nibh auctor nibh... </span>
</a>
</li>
<li>
<a href="#">
<span class="photo">
<img src="../assets/layouts/layout3/img/avatar1.jpg" class="img-circle" alt=""> </span>
<span class="subject">
<span class="from"> Bob Nilson </span>
<span class="time">2 hrs </span>
</span>
<span class="message"> Vivamus sed nibh auctor nibh congue nibh. auctor nibh auctor nibh... </span>
</a>
</li>
<li>
<a href="#">
<span class="photo">
<img src="../assets/layouts/layout3/img/avatar2.jpg" class="img-circle" alt=""> </span>
<span class="subject">
<span class="from"> Lisa Wong </span>
<span class="time">40 mins </span>
</span>
<span class="message"> Vivamus sed auctor 40% nibh congue nibh... </span>
</a>
</li>
<li>
<a href="#">
<span class="photo">
<img src="../assets/layouts/layout3/img/avatar3.jpg" class="img-circle" alt=""> </span>
<span class="subject">
<span class="from"> Richard Doe </span>
<span class="time">46 mins </span>
</span>
<span class="message"> Vivamus sed congue nibh auctor nibh congue nibh. auctor nibh auctor nibh... </span>
</a>
</li>
</ul>
</li>
</ul>
</li>
<!-- END INBOX DROPDOWN -->
<!-- BEGIN TODO DROPDOWN -->
<!-- DOC: Apply "dropdown-dark" class after below "dropdown-extended" to change the dropdown styte -->
<li class="dropdown dropdown-extended dropdown-tasks" id="header_task_bar">
<a href="javascript:;" class="dropdown-toggle" data-toggle="dropdown" data-hover="dropdown" data-close-others="true">
<i class="icon-calendar"></i>
<span class="badge badge-default"> 3 </span>
</a>
<ul class="dropdown-menu extended tasks">
<li class="external">
<h3>You have
<span class="bold">12 pending</span> tasks</h3>
<a href="app_todo.html">view all</a>
</li>
<li>
<ul class="dropdown-menu-list scroller" style="height: 275px;" data-handle-color="#637283">
<li>
<a href="javascript:;">
<span class="task">
<span class="desc">New release v1.2 </span>
<span class="percent">30%</span>
</span>
<span class="progress">
<span style="width: 40%;" class="progress-bar progress-bar-success" aria-valuenow="40" aria-valuemin="0" aria-valuemax="100">
<span class="sr-only">40% Complete</span>
</span>
</span>
</a>
</li>
<li>
<a href="javascript:;">
<span class="task">
<span class="desc">Application deployment</span>
<span class="percent">65%</span>
</span>
<span class="progress">
<span style="width: 65%;" class="progress-bar progress-bar-danger" aria-valuenow="65" aria-valuemin="0" aria-valuemax="100">
<span class="sr-only">65% Complete</span>
</span>
</span>
</a>
</li>
<li>
<a href="javascript:;">
<span class="task">
<span class="desc">Mobile app release</span>
<span class="percent">98%</span>
</span>
<span class="progress">
<span style="width: 98%;" class="progress-bar progress-bar-success" aria-valuenow="98" aria-valuemin="0" aria-valuemax="100">
<span class="sr-only">98% Complete</span>
</span>
</span>
</a>
</li>
<li>
<a href="javascript:;">
<span class="task">
<span class="desc">Database migration</span>
<span class="percent">10%</span>
</span>
<span class="progress">
<span style="width: 10%;" class="progress-bar progress-bar-warning" aria-valuenow="10" aria-valuemin="0" aria-valuemax="100">
<span class="sr-only">10% Complete</span>
</span>
</span>
</a>
</li>
<li>
<a href="javascript:;">
<span class="task">
<span class="desc">Web server upgrade</span>
<span class="percent">58%</span>
</span>
<span class="progress">
<span style="width: 58%;" class="progress-bar progress-bar-info" aria-valuenow="58" aria-valuemin="0" aria-valuemax="100">
<span class="sr-only">58% Complete</span>
</span>
</span>
</a>
</li>
<li>
<a href="javascript:;">
<span class="task">
<span class="desc">Mobile development</span>
<span class="percent">85%</span>
</span>
<span class="progress">
<span style="width: 85%;" class="progress-bar progress-bar-success" aria-valuenow="85" aria-valuemin="0" aria-valuemax="100">
<span class="sr-only">85% Complete</span>
</span>
</span>
</a>
</li>
<li>
<a href="javascript:;">
<span class="task">
<span class="desc">New UI release</span>
<span class="percent">38%</span>
</span>
<span class="progress progress-striped">
<span style="width: 38%;" class="progress-bar progress-bar-important" aria-valuenow="18" aria-valuemin="0" aria-valuemax="100">
<span class="sr-only">38% Complete</span>
</span>
</span>
</a>
</li>
</ul>
</li>
</ul>
</li>
<!-- END TODO DROPDOWN -->
<!-- BEGIN USER LOGIN DROPDOWN -->
<!-- DOC: Apply "dropdown-dark" class after below "dropdown-extended" to change the dropdown styte -->
<li class="dropdown dropdown-user">
<a href="javascript:;" class="dropdown-toggle" data-toggle="dropdown" data-hover="dropdown" data-close-others="true">
<img alt="" class="img-circle" src="../assets/layouts/layout/img/avatar3_small.jpg" />
<span class="username username-hide-on-mobile"> Nick </span>
<i class="fa fa-angle-down"></i>
</a>
<ul class="dropdown-menu dropdown-menu-default">
<li>
<a href="page_user_profile_1.html">
<i class="icon-user"></i> My Profile </a>
</li>
<li>
<a href="app_calendar.html">
<i class="icon-calendar"></i> My Calendar </a>
</li>
<li>
<a href="app_inbox.html">
<i class="icon-envelope-open"></i> My Inbox
<span class="badge badge-danger"> 3 </span>
</a>
</li>
<li>
<a href="app_todo.html">
<i class="icon-rocket"></i> My Tasks
<span class="badge badge-success"> 7 </span>
</a>
</li>
<li class="divider"> </li>
<li>
<a href="page_user_lock_1.html">
<i class="icon-lock"></i> Lock Screen </a>
</li>
<li>
<a href="page_user_login_1.html">
<i class="icon-key"></i> Log Out </a>
</li>
</ul>
</li>
<!-- END USER LOGIN DROPDOWN -->
<!-- BEGIN QUICK SIDEBAR TOGGLER -->
<!-- DOC: Apply "dropdown-dark" class after below "dropdown-extended" to change the dropdown styte -->
<li class="dropdown dropdown-quick-sidebar-toggler">
<a href="javascript:;" class="dropdown-toggle">
<i class="icon-logout"></i>
</a>
</li>
<!-- END QUICK SIDEBAR TOGGLER -->
</ul>
</div>
<!-- END TOP NAVIGATION MENU -->
</div>
<!-- END HEADER INNER -->
</div>
<!-- END HEADER -->
<!-- BEGIN HEADER & CONTENT DIVIDER -->
<div class="clearfix"> </div>
<!-- END HEADER & CONTENT DIVIDER -->
<!-- BEGIN CONTAINER -->
<div class="page-container">
<!-- BEGIN SIDEBAR -->
<div class="page-sidebar-wrapper">
<!-- BEGIN SIDEBAR -->
<!-- DOC: Set data-auto-scroll="false" to disable the sidebar from auto scrolling/focusing -->
<!-- DOC: Change data-auto-speed="200" to adjust the sub menu slide up/down speed -->
<div class="page-sidebar navbar-collapse collapse">
<!-- BEGIN SIDEBAR MENU -->
<!-- DOC: Apply "page-sidebar-menu-light" class right after "page-sidebar-menu" to enable light sidebar menu style(without borders) -->
<!-- DOC: Apply "page-sidebar-menu-hover-submenu" class right after "page-sidebar-menu" to enable hoverable(hover vs accordion) sub menu mode -->
<!-- DOC: Apply "page-sidebar-menu-closed" class right after "page-sidebar-menu" to collapse("page-sidebar-closed" class must be applied to the body element) the sidebar sub menu mode -->
<!-- DOC: Set data-auto-scroll="false" to disable the sidebar from auto scrolling/focusing -->
<!-- DOC: Set data-keep-expand="true" to keep the submenues expanded -->
<!-- DOC: Set data-auto-speed="200" to adjust the sub menu slide up/down speed -->
<ul class="page-sidebar-menu page-header-fixed " data-keep-expanded="false" data-auto-scroll="true" data-slide-speed="200" style="padding-top: 20px">
<!-- DOC: To remove the sidebar toggler from the sidebar you just need to completely remove the below "sidebar-toggler-wrapper" LI element -->
<!-- BEGIN SIDEBAR TOGGLER BUTTON -->
<li class="sidebar-toggler-wrapper hide">
<div class="sidebar-toggler">
<span></span>
</div>
</li>
<!-- END SIDEBAR TOGGLER BUTTON -->
<!-- DOC: To remove the search box from the sidebar you just need to completely remove the below "sidebar-search-wrapper" LI element -->
<li class="sidebar-search-wrapper">
<!-- BEGIN RESPONSIVE QUICK SEARCH FORM -->
<!-- DOC: Apply "sidebar-search-bordered" class the below search form to have bordered search box -->
<!-- DOC: Apply "sidebar-search-bordered sidebar-search-solid" class the below search form to have bordered & solid search box -->
<form class="sidebar-search " action="page_general_search_3.html" method="POST">
<a href="javascript:;" class="remove">
<i class="icon-close"></i>
</a>
<div class="input-group">
<input type="text" class="form-control" placeholder="Search...">
<span class="input-group-btn">
<a href="javascript:;" class="btn submit">
<i class="icon-magnifier"></i>
</a>
</span>
</div>
</form>
<!-- END RESPONSIVE QUICK SEARCH FORM -->
</li>
<li class="nav-item start ">
<a href="javascript:;" class="nav-link nav-toggle">
<i class="icon-home"></i>
<span class="title">Dashboard</span>
<span class="arrow"></span>
</a>
<ul class="sub-menu">
<li class="nav-item start ">
<a href="index.html" class="nav-link ">
<i class="icon-bar-chart"></i>
<span class="title">Dashboard 1</span>
</a>
</li>
<li class="nav-item start ">
<a href="dashboard_2.html" class="nav-link ">
<i class="icon-bulb"></i>
<span class="title">Dashboard 2</span>
<span class="badge badge-success">1</span>
</a>
</li>
<li class="nav-item start ">
<a href="dashboard_3.html" class="nav-link ">
<i class="icon-graph"></i>
<span class="title">Dashboard 3</span>
<span class="badge badge-danger">5</span>
</a>
</li>
</ul>
</li>
<li class="heading">
<h3 class="uppercase">Features</h3>
</li>
<li class="nav-item active open">
<a href="javascript:;" class="nav-link nav-toggle">
<i class="icon-diamond"></i>
<span class="title">UI Features</span>
<span class="selected"></span>
<span class="arrow open"></span>
</a>
<ul class="sub-menu">
<li class="nav-item ">
<a href="ui_colors.html" class="nav-link ">
<span class="title">Color Library</span>
</a>
</li>
<li class="nav-item ">
<a href="ui_general.html" class="nav-link ">
<span class="title">General Components</span>
</a>
</li>
<li class="nav-item ">
<a href="ui_buttons.html" class="nav-link ">
<span class="title">Buttons</span>
</a>
</li>
<li class="nav-item ">
<a href="ui_buttons_spinner.html" class="nav-link ">
<span class="title">Spinner Buttons</span>
</a>
</li>
<li class="nav-item ">
<a href="ui_confirmations.html" class="nav-link ">
<span class="title">Popover Confirmations</span>
</a>
</li>
<li class="nav-item ">
<a href="ui_sweetalert.html" class="nav-link ">
<span class="title">Bootstrap Sweet Alerts</span>
</a>
</li>
<li class="nav-item ">
<a href="ui_icons.html" class="nav-link ">
<span class="title">Font Icons</span>
</a>
</li>
<li class="nav-item ">
<a href="ui_socicons.html" class="nav-link ">
<span class="title">Social Icons</span>
</a>
</li>
<li class="nav-item ">
<a href="ui_typography.html" class="nav-link ">
<span class="title">Typography</span>
</a>
</li>
<li class="nav-item ">
<a href="ui_tabs_accordions_navs.html" class="nav-link ">
<span class="title">Tabs, Accordions & Navs</span>
</a>
</li>
<li class="nav-item ">
<a href="ui_timeline.html" class="nav-link ">
<span class="title">Timeline 1</span>
</a>
</li>
<li class="nav-item ">
<a href="ui_timeline_2.html" class="nav-link ">
<span class="title">Timeline 2</span>
</a>
</li>
<li class="nav-item ">
<a href="ui_timeline_horizontal.html" class="nav-link ">
<span class="title">Horizontal Timeline</span>
</a>
</li>
<li class="nav-item ">
<a href="ui_tree.html" class="nav-link ">
<span class="title">Tree View</span>
</a>
</li>
<li class="nav-item ">
<a href="javascript:;" class="nav-link nav-toggle">
<span class="title">Page Progress Bar</span>
<span class="arrow"></span>
</a>
<ul class="sub-menu">
<li class="nav-item ">
<a href="ui_page_progress_style_1.html" class="nav-link "> Flash </a>
</li>
<li class="nav-item ">
<a href="ui_page_progress_style_2.html" class="nav-link "> Big Counter </a>
</li>
</ul>
</li>
<li class="nav-item ">
<a href="ui_blockui.html" class="nav-link ">
<span class="title">Block UI</span>
</a>
</li>
<li class="nav-item ">
<a href="ui_bootstrap_growl.html" class="nav-link ">
<span class="title">Bootstrap Growl Notifications</span>
</a>
</li>
<li class="nav-item ">
<a href="ui_notific8.html" class="nav-link ">
<span class="title">Notific8 Notifications</span>
</a>
</li>
<li class="nav-item ">
<a href="ui_toastr.html" class="nav-link ">
<span class="title">Toastr Notifications</span>
</a>
</li>
<li class="nav-item ">
<a href="ui_bootbox.html" class="nav-link ">
<span class="title">Bootbox Dialogs</span>
</a>
</li>
<li class="nav-item ">
<a href="ui_alerts_api.html" class="nav-link ">
<span class="title">Metronic Alerts API</span>
</a>
</li>
<li class="nav-item ">
<a href="ui_session_timeout.html" class="nav-link ">
<span class="title">Session Timeout</span>
</a>
</li>
<li class="nav-item ">
<a href="ui_idle_timeout.html" class="nav-link ">
<span class="title">User Idle Timeout</span>
</a>
</li>
<li class="nav-item ">
<a href="ui_modals.html" class="nav-link ">
<span class="title">Modals</span>
</a>
</li>
<li class="nav-item ">
<a href="ui_extended_modals.html" class="nav-link ">
<span class="title">Extended Modals</span>
</a>
</li>
<li class="nav-item ">
<a href="ui_tiles.html" class="nav-link ">
<span class="title">Tiles</span>
</a>
</li>
<li class="nav-item ">
<a href="ui_datepaginator.html" class="nav-link ">
<span class="title">Date Paginator</span>
</a>
</li>
<li class="nav-item active open">
<a href="ui_nestable.html" class="nav-link ">
<span class="title">Nestable List</span>
<span class="selected"></span>
</a>
</li>
</ul>
</li>
<li class="nav-item ">
<a href="javascript:;" class="nav-link nav-toggle">
<i class="icon-puzzle"></i>
<span class="title">Components</span>
<span class="arrow"></span>
</a>
<ul class="sub-menu">
<li class="nav-item ">
<a href="components_date_time_pickers.html" class="nav-link ">
<span class="title">Date & Time Pickers</span>
</a>
</li>
<li class="nav-item ">
<a href="components_color_pickers.html" class="nav-link ">
<span class="title">Color Pickers</span>
<span class="badge badge-danger">2</span>
</a>
</li>
<li class="nav-item ">
<a href="components_select2.html" class="nav-link ">
<span class="title">Select2 Dropdowns</span>
</a>
</li>
<li class="nav-item ">
<a href="components_bootstrap_multiselect_dropdown.html" class="nav-link ">
<span class="title">Bootstrap Multiselect Dropdowns</span>
</a>
</li>
<li class="nav-item ">
<a href="components_bootstrap_select.html" class="nav-link ">
<span class="title">Bootstrap Select</span>
</a>
</li>
<li class="nav-item ">
<a href="components_multi_select.html" class="nav-link ">
<span class="title">Bootstrap Multiple Select</span>
</a>
</li>
<li class="nav-item ">
<a href="components_bootstrap_select_splitter.html" class="nav-link ">
<span class="title">Select Splitter</span>
</a>
</li>
<li class="nav-item ">
<a href="components_clipboard.html" class="nav-link ">
<span class="title">Clipboard</span>
</a>
</li>
<li class="nav-item ">
<a href="components_typeahead.html" class="nav-link ">
<span class="title">Typeahead Autocomplete</span>
</a>
</li>
<li class="nav-item ">
<a href="components_bootstrap_tagsinput.html" class="nav-link ">
<span class="title">Bootstrap Tagsinput</span>
</a>
</li>
<li class="nav-item ">
<a href="components_bootstrap_switch.html" class="nav-link ">
<span class="title">Bootstrap Switch</span>
<span class="badge badge-success">6</span>
</a>
</li>
<li class="nav-item ">
<a href="components_bootstrap_maxlength.html" class="nav-link ">
<span class="title">Bootstrap Maxlength</span>
</a>
</li>
<li class="nav-item ">
<a href="components_bootstrap_fileinput.html" class="nav-link ">
<span class="title">Bootstrap File Input</span>
</a>
</li>
<li class="nav-item ">
<a href="components_bootstrap_touchspin.html" class="nav-link ">
<span class="title">Bootstrap Touchspin</span>
</a>
</li>
<li class="nav-item ">
<a href="components_form_tools.html" class="nav-link ">
<span class="title">Form Widgets & Tools</span>
</a>
</li>
<li class="nav-item ">
<a href="components_context_menu.html" class="nav-link ">
<span class="title">Context Menu</span>
</a>
</li>
<li class="nav-item ">
<a href="components_editors.html" class="nav-link ">
<span class="title">Markdown & WYSIWYG Editors</span>
</a>
</li>
<li class="nav-item ">
<a href="components_code_editors.html" class="nav-link ">
<span class="title">Code Editors</span>
</a>
</li>
<li class="nav-item ">
<a href="components_ion_sliders.html" class="nav-link ">
<span class="title">Ion Range Sliders</span>
</a>
</li>
<li class="nav-item ">
<a href="components_noui_sliders.html" class="nav-link ">
<span class="title">NoUI Range Sliders</span>
</a>
</li>
<li class="nav-item ">
<a href="components_knob_dials.html" class="nav-link ">
<span class="title">Knob Circle Dials</span>
</a>
</li>
</ul>
</li>
<li class="nav-item ">
<a href="javascript:;" class="nav-link nav-toggle">
<i class="icon-settings"></i>
<span class="title">Form Stuff</span>
<span class="arrow"></span>
</a>
<ul class="sub-menu">
<li class="nav-item ">
<a href="form_controls.html" class="nav-link ">
<span class="title">Bootstrap Form
<br>Controls</span>
</a>
</li>
<li class="nav-item ">
<a href="form_controls_md.html" class="nav-link ">
<span class="title">Material Design
<br>Form Controls</span>
</a>
</li>
<li class="nav-item ">
<a href="form_validation.html" class="nav-link ">
<span class="title">Form Validation</span>
</a>
</li>
<li class="nav-item ">
<a href="form_validation_states_md.html" class="nav-link ">
<span class="title">Material Design
<br>Form Validation States</span>
</a>
</li>
<li class="nav-item ">
<a href="form_validation_md.html" class="nav-link ">
<span class="title">Material Design
<br>Form Validation</span>
</a>
</li>
<li class="nav-item ">
<a href="form_layouts.html" class="nav-link ">
<span class="title">Form Layouts</span>
</a>
</li>
<li class="nav-item ">
<a href="form_repeater.html" class="nav-link ">
<span class="title">Form Repeater</span>
</a>
</li>
<li class="nav-item ">
<a href="form_input_mask.html" class="nav-link ">
<span class="title">Form Input Mask</span>
</a>
</li>
<li class="nav-item ">
<a href="form_editable.html" class="nav-link ">
<span class="title">Form X-editable</span>
</a>
</li>
<li class="nav-item ">
<a href="form_wizard.html" class="nav-link ">
<span class="title">Form Wizard</span>
</a>
</li>
<li class="nav-item ">
<a href="form_icheck.html" class="nav-link ">
<span class="title">iCheck Controls</span>
</a>
</li>
<li class="nav-item ">
<a href="form_image_crop.html" class="nav-link ">
<span class="title">Image Cropping</span>
</a>
</li>
<li class="nav-item ">
<a href="form_fileupload.html" class="nav-link ">
<span class="title">Multiple File Upload</span>
</a>
</li>
<li class="nav-item ">
<a href="form_dropzone.html" class="nav-link ">
<span class="title">Dropzone File Upload</span>
</a>
</li>
</ul>
</li>
<li class="nav-item ">
<a href="javascript:;" class="nav-link nav-toggle">
<i class="icon-bulb"></i>
<span class="title">Elements</span>
<span class="arrow"></span>
</a>
<ul class="sub-menu">
<li class="nav-item ">
<a href="elements_steps.html" class="nav-link ">
<span class="title">Steps</span>
</a>
</li>
<li class="nav-item ">
<a href="elements_lists.html" class="nav-link ">
<span class="title">Lists</span>
</a>
</li>
<li class="nav-item ">
<a href="elements_ribbons.html" class="nav-link ">
<span class="title">Ribbons</span>
</a>
</li>
<li class="nav-item ">
<a href="elements_overlay.html" class="nav-link ">
<span class="title">Overlays</span>
</a>
</li>
<li class="nav-item ">
<a href="elements_cards.html" class="nav-link ">
<span class="title">User Cards</span>
</a>
</li>
</ul>
</li>
<li class="nav-item ">
<a href="javascript:;" class="nav-link nav-toggle">
<i class="icon-briefcase"></i>
<span class="title">Tables</span>
<span class="arrow"></span>
</a>
<ul class="sub-menu">
<li class="nav-item ">
<a href="table_static_basic.html" class="nav-link ">
<span class="title">Basic Tables</span>
</a>
</li>
<li class="nav-item ">
<a href="table_static_responsive.html" class="nav-link ">
<span class="title">Responsive Tables</span>
</a>
</li>
<li class="nav-item ">
<a href="table_bootstrap.html" class="nav-link ">
<span class="title">Bootstrap Tables</span>
</a>
</li>
<li class="nav-item ">
<a href="javascript:;" class="nav-link nav-toggle">
<span class="title">Datatables</span>
<span class="arrow"></span>
</a>
<ul class="sub-menu">
<li class="nav-item ">
<a href="table_datatables_managed.html" class="nav-link "> Managed Datatables </a>
</li>
<li class="nav-item ">
<a href="table_datatables_buttons.html" class="nav-link "> Buttons Extension </a>
</li>
<li class="nav-item ">
<a href="table_datatables_colreorder.html" class="nav-link "> Colreorder Extension </a>
</li>
<li class="nav-item ">
<a href="table_datatables_rowreorder.html" class="nav-link "> Rowreorder Extension </a>
</li>
<li class="nav-item ">
<a href="table_datatables_scroller.html" class="nav-link "> Scroller Extension </a>
</li>
<li class="nav-item ">
<a href="table_datatables_fixedheader.html" class="nav-link "> FixedHeader Extension </a>
</li>
<li class="nav-item ">
<a href="table_datatables_responsive.html" class="nav-link "> Responsive Extension </a>
</li>
<li class="nav-item ">
<a href="table_datatables_editable.html" class="nav-link "> Editable Datatables </a>
</li>
<li class="nav-item ">
<a href="table_datatables_ajax.html" class="nav-link "> Ajax Datatables </a>
</li>
</ul>
</li>
</ul>
</li>
<li class="nav-item ">
<a href="?p=" class="nav-link nav-toggle">
<i class="icon-wallet"></i>
<span class="title">Portlets</span>
<span class="arrow"></span>
</a>
<ul class="sub-menu">
<li class="nav-item ">
<a href="portlet_boxed.html" class="nav-link ">
<span class="title">Boxed Portlets</span>
</a>
</li>
<li class="nav-item ">
<a href="portlet_light.html" class="nav-link ">
<span class="title">Light Portlets</span>
</a>
</li>
<li class="nav-item ">
<a href="portlet_solid.html" class="nav-link ">
<span class="title">Solid Portlets</span>
</a>
</li>
<li class="nav-item ">
<a href="portlet_ajax.html" class="nav-link ">
<span class="title">Ajax Portlets</span>
</a>
</li>
<li class="nav-item ">
<a href="portlet_draggable.html" class="nav-link ">
<span class="title">Draggable Portlets</span>
</a>
</li>
</ul>
</li>
<li class="nav-item ">
<a href="javascript:;" class="nav-link nav-toggle">
<i class="icon-bar-chart"></i>
<span class="title">Charts</span>
<span class="arrow"></span>
</a>
<ul class="sub-menu">
<li class="nav-item ">
<a href="charts_amcharts.html" class="nav-link ">
<span class="title">amChart</span>
</a>
</li>
<li class="nav-item ">
<a href="charts_flotcharts.html" class="nav-link ">
<span class="title">Flot Charts</span>
</a>
</li>
<li class="nav-item ">
<a href="charts_flowchart.html" class="nav-link ">
<span class="title">Flow Charts</span>
</a>
</li>
<li class="nav-item ">
<a href="charts_google.html" class="nav-link ">
<span class="title">Google Charts</span>
</a>
</li>
<li class="nav-item ">
<a href="charts_echarts.html" class="nav-link ">
<span class="title">eCharts</span>
</a>
</li>
<li class="nav-item ">
<a href="charts_morris.html" class="nav-link ">
<span class="title">Morris Charts</span>
</a>
</li>
<li class="nav-item ">
<a href="javascript:;" class="nav-link nav-toggle">
<span class="title">HighCharts</span>
<span class="arrow"></span>
</a>
<ul class="sub-menu">
<li class="nav-item ">
<a href="charts_highcharts.html" class="nav-link "> HighCharts </a>
</li>
<li class="nav-item ">
<a href="charts_highstock.html" class="nav-link "> HighStock </a>
</li>
<li class="nav-item ">
<a href="charts_highmaps.html" class="nav-link "> HighMaps </a>
</li>
</ul>
</li>
</ul>
</li>
<li class="nav-item ">
<a href="javascript:;" class="nav-link nav-toggle">
<i class="icon-pointer"></i>
<span class="title">Maps</span>
<span class="arrow"></span>
</a>
<ul class="sub-menu">
<li class="nav-item ">
<a href="maps_google.html" class="nav-link ">
<span class="title">Google Maps</span>
</a>
</li>
<li class="nav-item ">
<a href="maps_vector.html" class="nav-link ">
<span class="title">Vector Maps</span>
</a>
</li>
</ul>
</li>
<li class="heading">
<h3 class="uppercase">Layouts</h3>
</li>
<li class="nav-item ">
<a href="javascript:;" class="nav-link nav-toggle">
<i class="icon-layers"></i>
<span class="title">Page Layouts</span>
<span class="arrow"></span>
</a>
<ul class="sub-menu">
<li class="nav-item ">
<a href="layout_blank_page.html" class="nav-link ">
<span class="title">Blank Page</span>
</a>
</li>
<li class="nav-item ">
<a href="layout_ajax_page.html" class="nav-link ">
<span class="title">Ajax Content Layout</span>
</a>
</li>
<li class="nav-item ">
<a href="layout_offcanvas_mobile_menu.html" class="nav-link ">
<span class="title">Off-canvas Mobile Menu</span>
</a>
</li>
<li class="nav-item ">
<a href="layout_classic_page_head.html" class="nav-link ">
<span class="title">Classic Page Head</span>
</a>
</li>
<li class="nav-item ">
<a href="layout_light_page_head.html" class="nav-link ">
<span class="title">Light Page Head</span>
</a>
</li>
<li class="nav-item ">
<a href="layout_content_grey.html" class="nav-link ">
<span class="title">Grey Bg Content</span>
</a>
</li>
<li class="nav-item ">
<a href="layout_search_on_header_1.html" class="nav-link ">
<span class="title">Search Box On Header 1</span>
</a>
</li>
<li class="nav-item ">
<a href="layout_search_on_header_2.html" class="nav-link ">
<span class="title">Search Box On Header 2</span>
</a>
</li>
<li class="nav-item ">
<a href="layout_language_bar.html" class="nav-link ">
<span class="title">Header Language Bar</span>
</a>
</li>
<li class="nav-item ">
<a href="layout_footer_fixed.html" class="nav-link ">
<span class="title">Fixed Footer</span>
</a>
</li>
<li class="nav-item ">
<a href="layout_boxed_page.html" class="nav-link ">
<span class="title">Boxed Page</span>
</a>
</li>
</ul>
</li>
<li class="nav-item ">
<a href="javascript:;" class="nav-link nav-toggle">
<i class="icon-feed"></i>
<span class="title">Sidebar Layouts</span>
<span class="arrow"></span>
</a>
<ul class="sub-menu">
<li class="nav-item ">
<a href="layout_sidebar_menu_light.html" class="nav-link ">
<span class="title">Light Sidebar Menu</span>
</a>
</li>
<li class="nav-item ">
<a href="layout_sidebar_menu_hover.html" class="nav-link ">
<span class="title">Hover Sidebar Menu</span>
</a>
</li>
<li class="nav-item ">
<a href="layout_sidebar_search_1.html" class="nav-link ">
<span class="title">Sidebar Search Option 1</span>
</a>
</li>
<li class="nav-item ">
<a href="layout_sidebar_search_2.html" class="nav-link ">
<span class="title">Sidebar Search Option 2</span>
</a>
</li>
<li class="nav-item ">
<a href="layout_toggler_on_sidebar.html" class="nav-link ">
<span class="title">Sidebar Toggler On Sidebar</span>
</a>
</li>
<li class="nav-item ">
<a href="layout_sidebar_reversed.html" class="nav-link ">
<span class="title">Reversed Sidebar Page</span>
</a>
</li>
<li class="nav-item ">
<a href="layout_sidebar_fixed.html" class="nav-link ">
<span class="title">Fixed Sidebar Layout</span>
</a>
</li>
<li class="nav-item ">
<a href="layout_sidebar_closed.html" class="nav-link ">
<span class="title">Closed Sidebar Layout</span>
</a>
</li>
</ul>
</li>
<li class="nav-item ">
<a href="javascript:;" class="nav-link nav-toggle">
<i class="icon-paper-plane"></i>
<span class="title">Horizontal Menu</span>
<span class="arrow"></span>
</a>
<ul class="sub-menu">
<li class="nav-item ">
<a href="layout_mega_menu_light.html" class="nav-link ">
<span class="title">Light Mega Menu</span>
</a>
</li>
<li class="nav-item ">
<a href="layout_mega_menu_dark.html" class="nav-link ">
<span class="title">Dark Mega Menu</span>
</a>
</li>
<li class="nav-item ">
<a href="layout_full_width.html" class="nav-link ">
<span class="title">Full Width Layout</span>
</a>
</li>
</ul>
</li>
<li class="nav-item ">
<a href="javascript:;" class="nav-link nav-toggle">
<i class=" icon-wrench"></i>
<span class="title">Custom Layouts</span>
<span class="arrow"></span>
</a>
<ul class="sub-menu">
<li class="nav-item ">
<a href="layout_disabled_menu.html" class="nav-link ">
<span class="title">Disabled Menu Links</span>
</a>
</li>
<li class="nav-item ">
<a href="layout_full_height_portlet.html" class="nav-link ">
<span class="title">Full Height Portlet</span>
</a>
</li>
<li class="nav-item ">
<a href="layout_full_height_content.html" class="nav-link ">
<span class="title">Full Height Content</span>
</a>
</li>
</ul>
</li>
<li class="heading">
<h3 class="uppercase">Pages</h3>
</li>
<li class="nav-item ">
<a href="javascript:;" class="nav-link nav-toggle">
<i class="icon-basket"></i>
<span class="title">eCommerce</span>
<span class="arrow"></span>
</a>
<ul class="sub-menu">
<li class="nav-item ">
<a href="ecommerce_index.html" class="nav-link ">
<i class="icon-home"></i>
<span class="title">Dashboard</span>
</a>
</li>
<li class="nav-item ">
<a href="ecommerce_orders.html" class="nav-link ">
<i class="icon-basket"></i>
<span class="title">Orders</span>
</a>
</li>
<li class="nav-item ">
<a href="ecommerce_orders_view.html" class="nav-link ">
<i class="icon-tag"></i>
<span class="title">Order View</span>
</a>
</li>
<li class="nav-item ">
<a href="ecommerce_products.html" class="nav-link ">
<i class="icon-graph"></i>
<span class="title">Products</span>
</a>
</li>
<li class="nav-item ">
<a href="ecommerce_products_edit.html" class="nav-link ">
<i class="icon-graph"></i>
<span class="title">Product Edit</span>
</a>
</li>
</ul>
</li>
<li class="nav-item ">
<a href="javascript:;" class="nav-link nav-toggle">
<i class="icon-docs"></i>
<span class="title">Apps</span>
<span class="arrow"></span>
</a>
<ul class="sub-menu">
<li class="nav-item ">
<a href="app_todo.html" class="nav-link ">
<i class="icon-clock"></i>
<span class="title">Todo 1</span>
</a>
</li>
<li class="nav-item ">
<a href="app_todo_2.html" class="nav-link ">
<i class="icon-check"></i>
<span class="title">Todo 2</span>
</a>
</li>
<li class="nav-item ">
<a href="app_inbox.html" class="nav-link ">
<i class="icon-envelope"></i>
<span class="title">Inbox</span>
</a>
</li>
<li class="nav-item ">
<a href="app_calendar.html" class="nav-link ">
<i class="icon-calendar"></i>
<span class="title">Calendar</span>
</a>
</li>
<li class="nav-item ">
<a href="app_ticket.html" class="nav-link ">
<i class="icon-notebook"></i>
<span class="title">Support</span>
</a>
</li>
</ul>
</li>
<li class="nav-item ">
<a href="javascript:;" class="nav-link nav-toggle">
<i class="icon-user"></i>
<span class="title">User</span>
<span class="arrow"></span>
</a>
<ul class="sub-menu">
<li class="nav-item ">
<a href="page_user_profile_1.html" class="nav-link ">
<i class="icon-user"></i>
<span class="title">Profile 1</span>
</a>
</li>
<li class="nav-item ">
<a href="page_user_profile_1_account.html" class="nav-link ">
<i class="icon-user-female"></i>
<span class="title">Profile 1 Account</span>
</a>
</li>
<li class="nav-item ">
<a href="page_user_profile_1_help.html" class="nav-link ">
<i class="icon-user-following"></i>
<span class="title">Profile 1 Help</span>
</a>
</li>
<li class="nav-item ">
<a href="page_user_profile_2.html" class="nav-link ">
<i class="icon-users"></i>
<span class="title">Profile 2</span>
</a>
</li>
<li class="nav-item ">
<a href="javascript:;" class="nav-link nav-toggle">
<i class="icon-notebook"></i>
<span class="title">Login</span>
<span class="arrow"></span>
</a>
<ul class="sub-menu">
<li class="nav-item ">
<a href="page_user_login_1.html" class="nav-link " target="_blank"> Login Page 1 </a>
</li>
<li class="nav-item ">
<a href="page_user_login_2.html" class="nav-link " target="_blank"> Login Page 2 </a>
</li>
<li class="nav-item ">
<a href="page_user_login_3.html" class="nav-link " target="_blank"> Login Page 3 </a>
</li>
<li class="nav-item ">
<a href="page_user_login_4.html" class="nav-link " target="_blank"> Login Page 4 </a>
</li>
<li class="nav-item ">
<a href="page_user_login_5.html" class="nav-link " target="_blank"> Login Page 5 </a>
</li>
<li class="nav-item ">
<a href="page_user_login_6.html" class="nav-link " target="_blank"> Login Page 6 </a>
</li>
</ul>
</li>
<li class="nav-item ">
<a href="page_user_lock_1.html" class="nav-link " target="_blank">
<i class="icon-lock"></i>
<span class="title">Lock Screen 1</span>
</a>
</li>
<li class="nav-item ">
<a href="page_user_lock_2.html" class="nav-link " target="_blank">
<i class="icon-lock-open"></i>
<span class="title">Lock Screen 2</span>
</a>
</li>
</ul>
</li>
<li class="nav-item ">
<a href="javascript:;" class="nav-link nav-toggle">
<i class="icon-social-dribbble"></i>
<span class="title">General</span>
<span class="arrow"></span>
</a>
<ul class="sub-menu">
<li class="nav-item ">
<a href="page_general_about.html" class="nav-link ">
<i class="icon-info"></i>
<span class="title">About</span>
</a>
</li>
<li class="nav-item ">
<a href="page_general_contact.html" class="nav-link ">
<i class="icon-call-end"></i>
<span class="title">Contact</span>
</a>
</li>
<li class="nav-item ">
<a href="javascript:;" class="nav-link nav-toggle">
<i class="icon-notebook"></i>
<span class="title">Portfolio</span>
<span class="arrow"></span>
</a>
<ul class="sub-menu">
<li class="nav-item ">
<a href="page_general_portfolio_1.html" class="nav-link "> Portfolio 1 </a>
</li>
<li class="nav-item ">
<a href="page_general_portfolio_2.html" class="nav-link "> Portfolio 2 </a>
</li>
<li class="nav-item ">
<a href="page_general_portfolio_3.html" class="nav-link "> Portfolio 3 </a>
</li>
<li class="nav-item ">
<a href="page_general_portfolio_4.html" class="nav-link "> Portfolio 4 </a>
</li>
</ul>
</li>
<li class="nav-item ">
<a href="javascript:;" class="nav-link nav-toggle">
<i class="icon-magnifier"></i>
<span class="title">Search</span>
<span class="arrow"></span>
</a>
<ul class="sub-menu">
<li class="nav-item ">
<a href="page_general_search.html" class="nav-link "> Search 1 </a>
</li>
<li class="nav-item ">
<a href="page_general_search_2.html" class="nav-link "> Search 2 </a>
</li>
<li class="nav-item ">
<a href="page_general_search_3.html" class="nav-link "> Search 3 </a>
</li>
<li class="nav-item ">
<a href="page_general_search_4.html" class="nav-link "> Search 4 </a>
</li>
<li class="nav-item ">
<a href="page_general_search_5.html" class="nav-link "> Search 5 </a>
</li>
</ul>
</li>
<li class="nav-item ">
<a href="page_general_pricing.html" class="nav-link ">
<i class="icon-tag"></i>
<span class="title">Pricing</span>
</a>
</li>
<li class="nav-item ">
<a href="page_general_faq.html" class="nav-link ">
<i class="icon-wrench"></i>
<span class="title">FAQ</span>
</a>
</li>
<li class="nav-item ">
<a href="page_general_blog.html" class="nav-link ">
<i class="icon-pencil"></i>
<span class="title">Blog</span>
</a>
</li>
<li class="nav-item ">
<a href="page_general_blog_post.html" class="nav-link ">
<i class="icon-note"></i>
<span class="title">Blog Post</span>
</a>
</li>
<li class="nav-item ">
<a href="page_general_invoice.html" class="nav-link ">
<i class="icon-envelope"></i>
<span class="title">Invoice</span>
</a>
</li>
<li class="nav-item ">
<a href="page_general_invoice_2.html" class="nav-link ">
<i class="icon-envelope"></i>
<span class="title">Invoice 2</span>
</a>
</li>
</ul>
</li>
<li class="nav-item ">
<a href="javascript:;" class="nav-link nav-toggle">
<i class="icon-settings"></i>
<span class="title">System</span>
<span class="arrow"></span>
</a>
<ul class="sub-menu">
<li class="nav-item ">
<a href="page_cookie_consent_1.html" class="nav-link ">
<span class="title">Cookie Consent 1</span>
</a>
</li>
<li class="nav-item ">
<a href="page_cookie_consent_2.html" class="nav-link ">
<span class="title">Cookie Consent 2</span>
</a>
</li>
<li class="nav-item ">
<a href="page_system_coming_soon.html" class="nav-link " target="_blank">
<span class="title">Coming Soon</span>
</a>
</li>
<li class="nav-item ">
<a href="page_system_404_1.html" class="nav-link ">
<span class="title">404 Page 1</span>
</a>
</li>
<li class="nav-item ">
<a href="page_system_404_2.html" class="nav-link " target="_blank">
<span class="title">404 Page 2</span>
</a>
</li>
<li class="nav-item ">
<a href="page_system_404_3.html" class="nav-link " target="_blank">
<span class="title">404 Page 3</span>
</a>
</li>
<li class="nav-item ">
<a href="page_system_500_1.html" class="nav-link ">
<span class="title">500 Page 1</span>
</a>
</li>
<li class="nav-item ">
<a href="page_system_500_2.html" class="nav-link " target="_blank">
<span class="title">500 Page 2</span>
</a>
</li>
</ul>
</li>
<li class="nav-item">
<a href="javascript:;" class="nav-link nav-toggle">
<i class="icon-folder"></i>
<span class="title">Multi Level Menu</span>
<span class="arrow "></span>
</a>
<ul class="sub-menu">
<li class="nav-item">
<a href="javascript:;" class="nav-link nav-toggle">
<i class="icon-settings"></i> Item 1
<span class="arrow"></span>
</a>
<ul class="sub-menu">
<li class="nav-item">
<a href="javascript:;" target="_blank" class="nav-link">
<i class="icon-user"></i> Arrow Toggle
<span class="arrow nav-toggle"></span>
</a>
<ul class="sub-menu">
<li class="nav-item">
<a href="#" class="nav-link">
<i class="icon-power"></i> Sample Link 1</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link">
<i class="icon-paper-plane"></i> Sample Link 1</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link">
<i class="icon-star"></i> Sample Link 1</a>
</li>
</ul>
</li>
<li class="nav-item">
<a href="#" class="nav-link">
<i class="icon-camera"></i> Sample Link 1</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link">
<i class="icon-link"></i> Sample Link 2</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link">
<i class="icon-pointer"></i> Sample Link 3</a>
</li>
</ul>
</li>
<li class="nav-item">
<a href="javascript:;" target="_blank" class="nav-link">
<i class="icon-globe"></i> Arrow Toggle
<span class="arrow nav-toggle"></span>
</a>
<ul class="sub-menu">
<li class="nav-item">
<a href="#" class="nav-link">
<i class="icon-tag"></i> Sample Link 1</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link">
<i class="icon-pencil"></i> Sample Link 1</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link">
<i class="icon-graph"></i> Sample Link 1</a>
</li>
</ul>
</li>
<li class="nav-item">
<a href="#" class="nav-link">
<i class="icon-bar-chart"></i> Item 3 </a>
</li>
</ul>
</li>
</ul>
<!-- END SIDEBAR MENU -->
<!-- END SIDEBAR MENU -->
</div>
<!-- END SIDEBAR -->
</div>
<!-- END SIDEBAR -->
<!-- BEGIN CONTENT -->
<div class="page-content-wrapper">
<!-- BEGIN CONTENT BODY -->
<div class="page-content">
<!-- BEGIN PAGE HEADER-->
<!-- BEGIN THEME PANEL -->
<div class="theme-panel hidden-xs hidden-sm">
<div class="toggler"> </div>
<div class="toggler-close"> </div>
<div class="theme-options">
<div class="theme-option theme-colors clearfix">
<span> THEME COLOR </span>
<ul>
<li class="color-default current tooltips" data-style="default" data-container="body" data-original-title="Default"> </li>
<li class="color-darkblue tooltips" data-style="darkblue" data-container="body" data-original-title="Dark Blue"> </li>
<li class="color-blue tooltips" data-style="blue" data-container="body" data-original-title="Blue"> </li>
<li class="color-grey tooltips" data-style="grey" data-container="body" data-original-title="Grey"> </li>
<li class="color-light tooltips" data-style="light" data-container="body" data-original-title="Light"> </li>
<li class="color-light2 tooltips" data-style="light2" data-container="body" data-html="true" data-original-title="Light 2"> </li>
</ul>
</div>
<div class="theme-option">
<span> Theme Style </span>
<select class="layout-style-option form-control input-sm">
<option value="square" selected="selected">Square corners</option>
<option value="rounded">Rounded corners</option>
</select>
</div>
<div class="theme-option">
<span> Layout </span>
<select class="layout-option form-control input-sm">
<option value="fluid" selected="selected">Fluid</option>
<option value="boxed">Boxed</option>
</select>
</div>
<div class="theme-option">
<span> Header </span>
<select class="page-header-option form-control input-sm">
<option value="fixed" selected="selected">Fixed</option>
<option value="default">Default</option>
</select>
</div>
<div class="theme-option">
<span> Top Menu Dropdown</span>
<select class="page-header-top-dropdown-style-option form-control input-sm">
<option value="light" selected="selected">Light</option>
<option value="dark">Dark</option>
</select>
</div>
<div class="theme-option">
<span> Sidebar Mode</span>
<select class="sidebar-option form-control input-sm">
<option value="fixed">Fixed</option>
<option value="default" selected="selected">Default</option>
</select>
</div>
<div class="theme-option">
<span> Sidebar Menu </span>
<select class="sidebar-menu-option form-control input-sm">
<option value="accordion" selected="selected">Accordion</option>
<option value="hover">Hover</option>
</select>
</div>
<div class="theme-option">
<span> Sidebar Style </span>
<select class="sidebar-style-option form-control input-sm">
<option value="default" selected="selected">Default</option>
<option value="light">Light</option>
</select>
</div>
<div class="theme-option">
<span> Sidebar Position </span>
<select class="sidebar-pos-option form-control input-sm">
<option value="left" selected="selected">Left</option>
<option value="right">Right</option>
</select>
</div>
<div class="theme-option">
<span> Footer </span>
<select class="page-footer-option form-control input-sm">
<option value="fixed">Fixed</option>
<option value="default" selected="selected">Default</option>
</select>
</div>
</div>
</div>
<!-- END THEME PANEL -->
<!-- BEGIN PAGE BAR -->
<div class="page-bar">
<ul class="page-breadcrumb">
<li>
<a href="index.html">Home</a>
<i class="fa fa-circle"></i>
</li>
<li>
<span>UI Features</span>
</li>
</ul>
<div class="page-toolbar">
<div class="btn-group pull-right">
<button type="button" class="btn green btn-sm btn-outline dropdown-toggle" data-toggle="dropdown"> Actions
<i class="fa fa-angle-down"></i>
</button>
<ul class="dropdown-menu pull-right" role="menu">
<li>
<a href="#">
<i class="icon-bell"></i> Action</a>
</li>
<li>
<a href="#">
<i class="icon-shield"></i> Another action</a>
</li>
<li>
<a href="#">
<i class="icon-user"></i> Something else here</a>
</li>
<li class="divider"> </li>
<li>
<a href="#">
<i class="icon-bag"></i> Separated link</a>
</li>
</ul>
</div>
</div>
</div>
<!-- END PAGE BAR -->
<!-- BEGIN PAGE TITLE-->
<h1 class="page-title"> Nestable List
<small>Drag & drop hierarchical list with mouse and touch compatibility</small>
</h1>
<!-- END PAGE TITLE-->
<!-- END PAGE HEADER-->
<div class="note note-success">
<span class="label label-danger">NOTE!</span>
<span class="bold">Nestable List Plugin </span> supported in Firefox, Chrome, Opera, Safari, Internet Explorer 10 and Internet Explorer 9 only. Internet Explorer 8 not supported. For more info please check out
<a href="http://dbushell.github.com/Nestable/"
target="_blank">the official documentation</a>. </div>
<div class="portlet light bordered">
<div class="portlet-body ">
<div class="row">
<div class="col-md-12">
<div class="margin-bottom-10" id="nestable_list_menu">
<button type="button" class="btn green btn-outline sbold uppercase" data-action="expand-all">Expand All</button>
<button type="button" class="btn red btn-outline sbold uppercase" data-action="collapse-all">Collapse All</button>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<h3>Serialised Output (per list)</h3>
<textarea id="nestable_list_1_output" class="form-control col-md-12 margin-bottom-10"></textarea>
<textarea id="nestable_list_2_output" class="form-control col-md-12 margin-bottom-10"></textarea>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6">
<div class="portlet light bordered">
<div class="portlet-title">
<div class="caption">
<i class="icon-bubble font-green"></i>
<span class="caption-subject font-green sbold uppercase">Nestable List 1</span>
</div>
<div class="actions">
<div class="btn-group">
<a class="btn green-haze btn-outline btn-circle btn-sm" href="javascript:;" data-toggle="dropdown" data-hover="dropdown" data-close-others="true"> Actions
<i class="fa fa-angle-down"></i>
</a>
<ul class="dropdown-menu pull-right">
<li>
<a href="javascript:;"> Option 1</a>
</li>
<li class="divider"> </li>
<li>
<a href="javascript:;">Option 2</a>
</li>
<li>
<a href="javascript:;">Option 3</a>
</li>
<li>
<a href="javascript:;">Option 4</a>
</li>
</ul>
</div>
</div>
</div>
<div class="portlet-body ">
<div class="dd" id="nestable_list_1">
<ol class="dd-list">
<li class="dd-item" data-id="1">
<div class="dd-handle"> Item 1 </div>
</li>
<li class="dd-item" data-id="2">
<div class="dd-handle"> Item 2 </div>
<ol class="dd-list">
<li class="dd-item" data-id="3">
<div class="dd-handle"> Item 3 </div>
</li>
<li class="dd-item" data-id="4">
<div class="dd-handle"> Item 4 </div>
</li>
<li class="dd-item" data-id="5">
<div class="dd-handle"> Item 5 </div>
<ol class="dd-list">
<li class="dd-item" data-id="6">
<div class="dd-handle"> Item 6 </div>
</li>
<li class="dd-item" data-id="7">
<div class="dd-handle"> Item 7 </div>
</li>
<li class="dd-item" data-id="8">
<div class="dd-handle"> Item 8 </div>
</li>
</ol>
</li>
<li class="dd-item" data-id="9">
<div class="dd-handle"> Item 9 </div>
</li>
<li class="dd-item" data-id="10">
<div class="dd-handle"> Item 10 </div>
</li>
</ol>
</li>
<li class="dd-item" data-id="11">
<div class="dd-handle"> Item 11 </div>
</li>
<li class="dd-item" data-id="12">
<div class="dd-handle"> Item 12 </div>
</li>
</ol>
</div>
</div>
</div>
</div>
<div class="col-md-6">
<div class="portlet light bordered">
<div class="portlet-title">
<div class="caption">
<i class="icon-bubble font-red"></i>
<span class="caption-subject font-red sbold uppercase">Nestable List 2</span>
</div>
<div class="tools">
<a href="" class="collapse"> </a>
<a href="#portlet-config" data-toggle="modal" class="config"> </a>
<a href="" class="reload"> </a>
<a href="" class="remove"> </a>
</div>
</div>
<div class="portlet-body">
<div class="dd" id="nestable_list_2">
<ol class="dd-list">
<li class="dd-item" data-id="13">
<div class="dd-handle"> Item 13 </div>
</li>
<li class="dd-item" data-id="14">
<div class="dd-handle"> Item 14 </div>
</li>
<li class="dd-item" data-id="15">
<div class="dd-handle"> Item 15 </div>
<ol class="dd-list">
<li class="dd-item" data-id="16">
<div class="dd-handle"> Item 16 </div>
</li>
<li class="dd-item" data-id="17">
<div class="dd-handle"> Item 17 </div>
</li>
<li class="dd-item" data-id="18">
<div class="dd-handle"> Item 18 </div>
</li>
</ol>
</li>
</ol>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6">
<div class="portlet light bordered">
<div class="portlet-title">
<div class="caption">
<i class="icon-bubble font-purple"></i>
<span class="caption-subject font-purple sbold uppercase">Nestable List 3</span>
</div>
<div class="actions">
<div class="btn-group btn-group-devided" data-toggle="buttons">
<label class="btn btn-transparent grey-salsa btn-circle btn-sm active">
<input type="radio" name="options" class="toggle" id="option1">New</label>
<label class="btn btn-transparent grey-salsa btn-circle btn-sm">
<input type="radio" name="options" class="toggle" id="option2">Returning</label>
</div>
</div>
</div>
<div class="portlet-body">
<div class="dd" id="nestable_list_3">
<ol class="dd-list">
<li class="dd-item dd3-item" data-id="13">
<div class="dd-handle dd3-handle"> </div>
<div class="dd3-content"> Item 13 </div>
</li>
<li class="dd-item dd3-item" data-id="14">
<div class="dd-handle dd3-handle"> </div>
<div class="dd3-content"> Item 14 </div>
</li>
<li class="dd-item dd3-item" data-id="15">
<div class="dd-handle dd3-handle"> </div>
<div class="dd3-content"> Item 15 </div>
<ol class="dd-list">
<li class="dd-item dd3-item" data-id="16">
<div class="dd-handle dd3-handle"> </div>
<div class="dd3-content"> Item 16 </div>
</li>
<li class="dd-item dd3-item" data-id="17">
<div class="dd-handle dd3-handle"> </div>
<div class="dd3-content"> Item 17 </div>
</li>
<li class="dd-item dd3-item" data-id="18">
<div class="dd-handle dd3-handle"> </div>
<div class="dd3-content"> Item 18 </div>
</li>
</ol>
</li>
</ol>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- END CONTENT BODY -->
</div>
<!-- END CONTENT -->
<!-- BEGIN QUICK SIDEBAR -->
<a href="javascript:;" class="page-quick-sidebar-toggler">
<i class="icon-login"></i>
</a>
<div class="page-quick-sidebar-wrapper" data-close-on-body-click="false">
<div class="page-quick-sidebar">
<ul class="nav nav-tabs">
<li class="active">
<a href="javascript:;" data-target="#quick_sidebar_tab_1" data-toggle="tab"> Users
<span class="badge badge-danger">2</span>
</a>
</li>
<li>
<a href="javascript:;" data-target="#quick_sidebar_tab_2" data-toggle="tab"> Alerts
<span class="badge badge-success">7</span>
</a>
</li>
<li class="dropdown">
<a href="javascript:;" class="dropdown-toggle" data-toggle="dropdown"> More
<i class="fa fa-angle-down"></i>
</a>
<ul class="dropdown-menu pull-right">
<li>
<a href="javascript:;" data-target="#quick_sidebar_tab_3" data-toggle="tab">
<i class="icon-bell"></i> Alerts </a>
</li>
<li>
<a href="javascript:;" data-target="#quick_sidebar_tab_3" data-toggle="tab">
<i class="icon-info"></i> Notifications </a>
</li>
<li>
<a href="javascript:;" data-target="#quick_sidebar_tab_3" data-toggle="tab">
<i class="icon-speech"></i> Activities </a>
</li>
<li class="divider"></li>
<li>
<a href="javascript:;" data-target="#quick_sidebar_tab_3" data-toggle="tab">
<i class="icon-settings"></i> Settings </a>
</li>
</ul>
</li>
</ul>
<div class="tab-content">
<div class="tab-pane active page-quick-sidebar-chat" id="quick_sidebar_tab_1">
<div class="page-quick-sidebar-chat-users" data-rail-color="#ddd" data-wrapper-class="page-quick-sidebar-list">
<h3 class="list-heading">Staff</h3>
<ul class="media-list list-items">
<li class="media">
<div class="media-status">
<span class="badge badge-success">8</span>
</div>
<img class="media-object" src="../assets/layouts/layout/img/avatar3.jpg" alt="...">
<div class="media-body">
<h4 class="media-heading">Bob Nilson</h4>
<div class="media-heading-sub"> Project Manager </div>
</div>
</li>
<li class="media">
<img class="media-object" src="../assets/layouts/layout/img/avatar1.jpg" alt="...">
<div class="media-body">
<h4 class="media-heading">Nick Larson</h4>
<div class="media-heading-sub"> Art Director </div>
</div>
</li>
<li class="media">
<div class="media-status">
<span class="badge badge-danger">3</span>
</div>
<img class="media-object" src="../assets/layouts/layout/img/avatar4.jpg" alt="...">
<div class="media-body">
<h4 class="media-heading">Deon Hubert</h4>
<div class="media-heading-sub"> CTO </div>
</div>
</li>
<li class="media">
<img class="media-object" src="../assets/layouts/layout/img/avatar2.jpg" alt="...">
<div class="media-body">
<h4 class="media-heading">Ella Wong</h4>
<div class="media-heading-sub"> CEO </div>
</div>
</li>
</ul>
<h3 class="list-heading">Customers</h3>
<ul class="media-list list-items">
<li class="media">
<div class="media-status">
<span class="badge badge-warning">2</span>
</div>
<img class="media-object" src="../assets/layouts/layout/img/avatar6.jpg" alt="...">
<div class="media-body">
<h4 class="media-heading">Lara Kunis</h4>
<div class="media-heading-sub"> CEO, Loop Inc </div>
<div class="media-heading-small"> Last seen 03:10 AM </div>
</div>
</li>
<li class="media">
<div class="media-status">
<span class="label label-sm label-success">new</span>
</div>
<img class="media-object" src="../assets/layouts/layout/img/avatar7.jpg" alt="...">
<div class="media-body">
<h4 class="media-heading">Ernie Kyllonen</h4>
<div class="media-heading-sub"> Project Manager,
<br> SmartBizz PTL </div>
</div>
</li>
<li class="media">
<img class="media-object" src="../assets/layouts/layout/img/avatar8.jpg" alt="...">
<div class="media-body">
<h4 class="media-heading">Lisa Stone</h4>
<div class="media-heading-sub"> CTO, Keort Inc </div>
<div class="media-heading-small"> Last seen 13:10 PM </div>
</div>
</li>
<li class="media">
<div class="media-status">
<span class="badge badge-success">7</span>
</div>
<img class="media-object" src="../assets/layouts/layout/img/avatar9.jpg" alt="...">
<div class="media-body">
<h4 class="media-heading">Deon Portalatin</h4>
<div class="media-heading-sub"> CFO, H&D LTD </div>
</div>
</li>
<li class="media">
<img class="media-object" src="../assets/layouts/layout/img/avatar10.jpg" alt="...">
<div class="media-body">
<h4 class="media-heading">Irina Savikova</h4>
<div class="media-heading-sub"> CEO, Tizda Motors Inc </div>
</div>
</li>
<li class="media">
<div class="media-status">
<span class="badge badge-danger">4</span>
</div>
<img class="media-object" src="../assets/layouts/layout/img/avatar11.jpg" alt="...">
<div class="media-body">
<h4 class="media-heading">Maria Gomez</h4>
<div class="media-heading-sub"> Manager, Infomatic Inc </div>
<div class="media-heading-small"> Last seen 03:10 AM </div>
</div>
</li>
</ul>
</div>
<div class="page-quick-sidebar-item">
<div class="page-quick-sidebar-chat-user">
<div class="page-quick-sidebar-nav">
<a href="javascript:;" class="page-quick-sidebar-back-to-list">
<i class="icon-arrow-left"></i>Back</a>
</div>
<div class="page-quick-sidebar-chat-user-messages">
<div class="post out">
<img class="avatar" alt="" src="../assets/layouts/layout/img/avatar3.jpg" />
<div class="message">
<span class="arrow"></span>
<a href="javascript:;" class="name">Bob Nilson</a>
<span class="datetime">20:15</span>
<span class="body"> When could you send me the report ? </span>
</div>
</div>
<div class="post in">
<img class="avatar" alt="" src="../assets/layouts/layout/img/avatar2.jpg" />
<div class="message">
<span class="arrow"></span>
<a href="javascript:;" class="name">Ella Wong</a>
<span class="datetime">20:15</span>
<span class="body"> Its almost done. I will be sending it shortly </span>
</div>
</div>
<div class="post out">
<img class="avatar" alt="" src="../assets/layouts/layout/img/avatar3.jpg" />
<div class="message">
<span class="arrow"></span>
<a href="javascript:;" class="name">Bob Nilson</a>
<span class="datetime">20:15</span>
<span class="body"> Alright. Thanks! :) </span>
</div>
</div>
<div class="post in">
<img class="avatar" alt="" src="../assets/layouts/layout/img/avatar2.jpg" />
<div class="message">
<span class="arrow"></span>
<a href="javascript:;" class="name">Ella Wong</a>
<span class="datetime">20:16</span>
<span class="body"> You are most welcome. Sorry for the delay. </span>
</div>
</div>
<div class="post out">
<img class="avatar" alt="" src="../assets/layouts/layout/img/avatar3.jpg" />
<div class="message">
<span class="arrow"></span>
<a href="javascript:;" class="name">Bob Nilson</a>
<span class="datetime">20:17</span>
<span class="body"> No probs. Just take your time :) </span>
</div>
</div>
<div class="post in">
<img class="avatar" alt="" src="../assets/layouts/layout/img/avatar2.jpg" />
<div class="message">
<span class="arrow"></span>
<a href="javascript:;" class="name">Ella Wong</a>
<span class="datetime">20:40</span>
<span class="body"> Alright. I just emailed it to you. </span>
</div>
</div>
<div class="post out">
<img class="avatar" alt="" src="../assets/layouts/layout/img/avatar3.jpg" />
<div class="message">
<span class="arrow"></span>
<a href="javascript:;" class="name">Bob Nilson</a>
<span class="datetime">20:17</span>
<span class="body"> Great! Thanks. Will check it right away. </span>
</div>
</div>
<div class="post in">
<img class="avatar" alt="" src="../assets/layouts/layout/img/avatar2.jpg" />
<div class="message">
<span class="arrow"></span>
<a href="javascript:;" class="name">Ella Wong</a>
<span class="datetime">20:40</span>
<span class="body"> Please let me know if you have any comment. </span>
</div>
</div>
<div class="post out">
<img class="avatar" alt="" src="../assets/layouts/layout/img/avatar3.jpg" />
<div class="message">
<span class="arrow"></span>
<a href="javascript:;" class="name">Bob Nilson</a>
<span class="datetime">20:17</span>
<span class="body"> Sure. I will check and buzz you if anything needs to be corrected. </span>
</div>
</div>
</div>
<div class="page-quick-sidebar-chat-user-form">
<div class="input-group">
<input type="text" class="form-control" placeholder="Type a message here...">
<div class="input-group-btn">
<button type="button" class="btn green">
<i class="icon-paper-clip"></i>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="tab-pane page-quick-sidebar-alerts" id="quick_sidebar_tab_2">
<div class="page-quick-sidebar-alerts-list">
<h3 class="list-heading">General</h3>
<ul class="feeds list-items">
<li>
<div class="col1">
<div class="cont">
<div class="cont-col1">
<div class="label label-sm label-info">
<i class="fa fa-check"></i>
</div>
</div>
<div class="cont-col2">
<div class="desc"> You have 4 pending tasks.
<span class="label label-sm label-warning "> Take action
<i class="fa fa-share"></i>
</span>
</div>
</div>
</div>
</div>
<div class="col2">
<div class="date"> Just now </div>
</div>
</li>
<li>
<a href="javascript:;">
<div class="col1">
<div class="cont">
<div class="cont-col1">
<div class="label label-sm label-success">
<i class="fa fa-bar-chart-o"></i>
</div>
</div>
<div class="cont-col2">
<div class="desc"> Finance Report for year 2013 has been released. </div>
</div>
</div>
</div>
<div class="col2">
<div class="date"> 20 mins </div>
</div>
</a>
</li>
<li>
<div class="col1">
<div class="cont">
<div class="cont-col1">
<div class="label label-sm label-danger">
<i class="fa fa-user"></i>
</div>
</div>
<div class="cont-col2">
<div class="desc"> You have 5 pending membership that requires a quick review. </div>
</div>
</div>
</div>
<div class="col2">
<div class="date"> 24 mins </div>
</div>
</li>
<li>
<div class="col1">
<div class="cont">
<div class="cont-col1">
<div class="label label-sm label-info">
<i class="fa fa-shopping-cart"></i>
</div>
</div>
<div class="cont-col2">
<div class="desc"> New order received with
<span class="label label-sm label-success"> Reference Number: DR23923 </span>
</div>
</div>
</div>
</div>
<div class="col2">
<div class="date"> 30 mins </div>
</div>
</li>
<li>
<div class="col1">
<div class="cont">
<div class="cont-col1">
<div class="label label-sm label-success">
<i class="fa fa-user"></i>
</div>
</div>
<div class="cont-col2">
<div class="desc"> You have 5 pending membership that requires a quick review. </div>
</div>
</div>
</div>
<div class="col2">
<div class="date"> 24 mins </div>
</div>
</li>
<li>
<div class="col1">
<div class="cont">
<div class="cont-col1">
<div class="label label-sm label-info">
<i class="fa fa-bell-o"></i>
</div>
</div>
<div class="cont-col2">
<div class="desc"> Web server hardware needs to be upgraded.
<span class="label label-sm label-warning"> Overdue </span>
</div>
</div>
</div>
</div>
<div class="col2">
<div class="date"> 2 hours </div>
</div>
</li>
<li>
<a href="javascript:;">
<div class="col1">
<div class="cont">
<div class="cont-col1">
<div class="label label-sm label-default">
<i class="fa fa-briefcase"></i>
</div>
</div>
<div class="cont-col2">
<div class="desc"> IPO Report for year 2013 has been released. </div>
</div>
</div>
</div>
<div class="col2">
<div class="date"> 20 mins </div>
</div>
</a>
</li>
</ul>
<h3 class="list-heading">System</h3>
<ul class="feeds list-items">
<li>
<div class="col1">
<div class="cont">
<div class="cont-col1">
<div class="label label-sm label-info">
<i class="fa fa-check"></i>
</div>
</div>
<div class="cont-col2">
<div class="desc"> You have 4 pending tasks.
<span class="label label-sm label-warning "> Take action
<i class="fa fa-share"></i>
</span>
</div>
</div>
</div>
</div>
<div class="col2">
<div class="date"> Just now </div>
</div>
</li>
<li>
<a href="javascript:;">
<div class="col1">
<div class="cont">
<div class="cont-col1">
<div class="label label-sm label-danger">
<i class="fa fa-bar-chart-o"></i>
</div>
</div>
<div class="cont-col2">
<div class="desc"> Finance Report for year 2013 has been released. </div>
</div>
</div>
</div>
<div class="col2">
<div class="date"> 20 mins </div>
</div>
</a>
</li>
<li>
<div class="col1">
<div class="cont">
<div class="cont-col1">
<div class="label label-sm label-default">
<i class="fa fa-user"></i>
</div>
</div>
<div class="cont-col2">
<div class="desc"> You have 5 pending membership that requires a quick review. </div>
</div>
</div>
</div>
<div class="col2">
<div class="date"> 24 mins </div>
</div>
</li>
<li>
<div class="col1">
<div class="cont">
<div class="cont-col1">
<div class="label label-sm label-info">
<i class="fa fa-shopping-cart"></i>
</div>
</div>
<div class="cont-col2">
<div class="desc"> New order received with
<span class="label label-sm label-success"> Reference Number: DR23923 </span>
</div>
</div>
</div>
</div>
<div class="col2">
<div class="date"> 30 mins </div>
</div>
</li>
<li>
<div class="col1">
<div class="cont">
<div class="cont-col1">
<div class="label label-sm label-success">
<i class="fa fa-user"></i>
</div>
</div>
<div class="cont-col2">
<div class="desc"> You have 5 pending membership that requires a quick review. </div>
</div>
</div>
</div>
<div class="col2">
<div class="date"> 24 mins </div>
</div>
</li>
<li>
<div class="col1">
<div class="cont">
<div class="cont-col1">
<div class="label label-sm label-warning">
<i class="fa fa-bell-o"></i>
</div>
</div>
<div class="cont-col2">
<div class="desc"> Web server hardware needs to be upgraded.
<span class="label label-sm label-default "> Overdue </span>
</div>
</div>
</div>
</div>
<div class="col2">
<div class="date"> 2 hours </div>
</div>
</li>
<li>
<a href="javascript:;">
<div class="col1">
<div class="cont">
<div class="cont-col1">
<div class="label label-sm label-info">
<i class="fa fa-briefcase"></i>
</div>
</div>
<div class="cont-col2">
<div class="desc"> IPO Report for year 2013 has been released. </div>
</div>
</div>
</div>
<div class="col2">
<div class="date"> 20 mins </div>
</div>
</a>
</li>
</ul>
</div>
</div>
<div class="tab-pane page-quick-sidebar-settings" id="quick_sidebar_tab_3">
<div class="page-quick-sidebar-settings-list">
<h3 class="list-heading">General Settings</h3>
<ul class="list-items borderless">
<li> Enable Notifications
<input type="checkbox" class="make-switch" checked data-size="small" data-on-color="success" data-on-text="ON" data-off-color="default" data-off-text="OFF"> </li>
<li> Allow Tracking
<input type="checkbox" class="make-switch" data-size="small" data-on-color="info" data-on-text="ON" data-off-color="default" data-off-text="OFF"> </li>
<li> Log Errors
<input type="checkbox" class="make-switch" checked data-size="small" data-on-color="danger" data-on-text="ON" data-off-color="default" data-off-text="OFF"> </li>
<li> Auto Sumbit Issues
<input type="checkbox" class="make-switch" data-size="small" data-on-color="warning" data-on-text="ON" data-off-color="default" data-off-text="OFF"> </li>
<li> Enable SMS Alerts
<input type="checkbox" class="make-switch" checked data-size="small" data-on-color="success" data-on-text="ON" data-off-color="default" data-off-text="OFF"> </li>
</ul>
<h3 class="list-heading">System Settings</h3>
<ul class="list-items borderless">
<li> Security Level
<select class="form-control input-inline input-sm input-small">
<option value="1">Normal</option>
<option value="2" selected>Medium</option>
<option value="e">High</option>
</select>
</li>
<li> Failed Email Attempts
<input class="form-control input-inline input-sm input-small" value="5" /> </li>
<li> Secondary SMTP Port
<input class="form-control input-inline input-sm input-small" value="3560" /> </li>
<li> Notify On System Error
<input type="checkbox" class="make-switch" checked data-size="small" data-on-color="danger" data-on-text="ON" data-off-color="default" data-off-text="OFF"> </li>
<li> Notify On SMTP Error
<input type="checkbox" class="make-switch" checked data-size="small" data-on-color="warning" data-on-text="ON" data-off-color="default" data-off-text="OFF"> </li>
</ul>
<div class="inner-content">
<button class="btn btn-success">
<i class="icon-settings"></i> Save Changes</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- END QUICK SIDEBAR -->
</div>
<!-- END CONTAINER -->
<!-- BEGIN FOOTER -->
<div class="page-footer">
<div class="page-footer-inner"> 2016 © Metronic Theme By
<a target="_blank" href="http://keenthemes.com">Keenthemes</a> |
<a href="http://themeforest.net/item/metronic-responsive-admin-dashboard-template/4021469?ref=keenthemes" title="Purchase Metronic just for 27$ and get lifetime updates for free" target="_blank">Purchase Metronic!</a>
</div>
<div class="scroll-to-top">
<i class="icon-arrow-up"></i>
</div>
</div>
<!-- END FOOTER -->
</div>
<!-- BEGIN QUICK NAV -->
<nav class="quick-nav">
<a class="quick-nav-trigger" href="#0">
<span aria-hidden="true"></span>
</a>
<ul>
<li>
<a href="https://themeforest.net/item/metronic-responsive-admin-dashboard-template/4021469?ref=keenthemes" target="_blank" class="active">
<span>Purchase Metronic</span>
<i class="icon-basket"></i>
</a>
</li>
<li>
<a href="https://themeforest.net/item/metronic-responsive-admin-dashboard-template/reviews/4021469?ref=keenthemes" target="_blank">
<span>Customer Reviews</span>
<i class="icon-users"></i>
</a>
</li>
<li>
<a href="http://keenthemes.com/showcast/" target="_blank">
<span>Showcase</span>
<i class="icon-user"></i>
</a>
</li>
<li>
<a href="http://keenthemes.com/metronic-theme/changelog/" target="_blank">
<span>Changelog</span>
<i class="icon-graph"></i>
</a>
</li>
</ul>
<span aria-hidden="true" class="quick-nav-bg"></span>
</nav>
<div class="quick-nav-overlay"></div>
<!-- END QUICK NAV -->
<!--[if lt IE 9]>
<script src="../assets/global/plugins/respond.min.js"></script>
<script src="../assets/global/plugins/excanvas.min.js"></script>
<script src="../assets/global/plugins/ie8.fix.min.js"></script>
<![endif]-->
<!-- BEGIN CORE PLUGINS -->
<script src="../assets/global/plugins/jquery.min.js" type="text/javascript"></script>
<script src="../assets/global/plugins/bootstrap/js/bootstrap.min.js" type="text/javascript"></script>
<script src="../assets/global/plugins/js.cookie.min.js" type="text/javascript"></script>
<script src="../assets/global/plugins/jquery-slimscroll/jquery.slimscroll.min.js" type="text/javascript"></script>
<script src="../assets/global/plugins/jquery.blockui.min.js" type="text/javascript"></script>
<script src="../assets/global/plugins/bootstrap-switch/js/bootstrap-switch.min.js" type="text/javascript"></script>
<!-- END CORE PLUGINS -->
<!-- BEGIN PAGE LEVEL PLUGINS -->
<script src="../assets/global/plugins/jquery-nestable/jquery.nestable.js" type="text/javascript"></script>
<!-- END PAGE LEVEL PLUGINS -->
<!-- BEGIN THEME GLOBAL SCRIPTS -->
<script src="../assets/global/scripts/app.min.js" type="text/javascript"></script>
<!-- END THEME GLOBAL SCRIPTS -->
<!-- BEGIN PAGE LEVEL SCRIPTS -->
<script src="../assets/pages/scripts/ui-nestable.min.js" type="text/javascript"></script>
<!-- END PAGE LEVEL SCRIPTS -->
<!-- BEGIN THEME LAYOUT SCRIPTS -->
<script src="../assets/layouts/layout/scripts/layout.min.js" type="text/javascript"></script>
<script src="../assets/layouts/layout/scripts/demo.min.js" type="text/javascript"></script>
<script src="../assets/layouts/global/scripts/quick-sidebar.min.js" type="text/javascript"></script>
<script src="../assets/layouts/global/scripts/quick-nav.min.js" type="text/javascript"></script>
<!-- END THEME LAYOUT SCRIPTS -->
</body>
</html> |
AuctionRoomAB/AuctionRoomAB/Content/auctionroom.css | aburciu/AuctionRoomAB | @media (min-width: 980px) {
body {
padding-top: 0px;
padding-bottom: 40px;
}
.jumbotron {
padding: 0px;
padding-left: 15px !important;
}
ul {
margin-left: 30px;
}
.btn:disabled {
opacity: initial;
}
} |
client/index.html | rwhuber/react-node-template | <!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Test</title>
</head>
<body>
<div id="root"></div>
<script src="./build/bundle.js"></script>
</body>
</html> |
tag/civil-war/feed/index.html | chmullig/chmullig.github.io | <?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
>
<channel>
<title>chmullig.com » civil war</title>
<atom:link href="http://chmullig.com/tag/civil-war/feed/" rel="self" type="application/rss+xml" />
<link>http://chmullig.com</link>
<description>Chris Mulligan's blog on life, computers, burritos, school</description>
<lastBuildDate>Tue, 21 Apr 2015 15:41:14 +0000</lastBuildDate>
<language>en-US</language>
<sy:updatePeriod>hourly</sy:updatePeriod>
<sy:updateFrequency>1</sy:updateFrequency>
<generator>http://wordpress.org/?v=4.2.2</generator>
<item>
<title>April 12th anniversaries</title>
<link>http://chmullig.com/2011/04/april-12th-anniversaries/</link>
<comments>http://chmullig.com/2011/04/april-12th-anniversaries/#comments</comments>
<pubDate>Tue, 12 Apr 2011 19:09:31 +0000</pubDate>
<dc:creator><![CDATA[chmullig]]></dc:creator>
<category><![CDATA[personal]]></category>
<category><![CDATA[civil war]]></category>
<category><![CDATA[family]]></category>
<category><![CDATA[history]]></category>
<guid isPermaLink="false">http://chmullig.com/?p=327</guid>
<description><![CDATA[Apparently today is a good day to do historic stuff. The first piece of usenet/email spam was posted; the first space shuttle, Columbia, was first launched; Yuri Gagarin was the first person in space; FDR died; and the Civil War began with the battle of Fort Sumter. (and my cousin (once removed) was baptized!) Through the […]]]></description>
<content:encoded><![CDATA[<p>Apparently today is a good day to do historic stuff. The first piece of usenet/email spam was posted; the first space shuttle, Columbia, was first launched; Yuri Gagarin was the first person in space; FDR died; and the Civil War began with the battle of Fort Sumter. (and my cousin (once removed) was baptized!) Through the happenstance of fate an ancestor of mine, Dr. Lebby, was present there and wrote up an account. My dad dug it out of Google Books, they helpfully scanned and OCR’d it for us.</p>
<p><!-- p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 10.0px Consolas} p.p2 {margin: 0.0px 0.0px 0.0px 0.0px; font: 10.0px Consolas; min-height: 12.0px} span.s1 {text-decoration: underline ; color: #134fae} -->Reading about the anniversary, my dad looked up <em><a href="http://books.google.com/books?ei=nJKkTYyID5GH0QGE94X0CA&ct=result&id=2_IwAAAAMAAJ&dq=Nathaniel+Lebby%2C+patriot%3A+and+some+of+his+descendants&q=Fort+Sumter#search_anchor">Nathaniel Lebby, Patriot, And Some of his Descendants</a></em> by Edmund Detreville Ellis (my great grandfather) and found that there was a reference on p. 170. He typed the excerpt from his paper copy:</p>
<blockquote><p>My parents were married in the official residence of the Quarantine Officer of the State of South Carolina and the Port of Charleston, Dr. Robert Lebby, Jr., on January 29, 1889 – my grandfather Lebby’s 58th birthday – by Rev. Josiah McL. Seabrook. The house is still standing and is occupied by a Doctor and his family! It is only a few hundred yards from where Dr. Lebby, in his capacity as Physician, stood when “The First Shot” was fired from Fort Johnson on Fort Sumter on April 12, 1861! He later wrote an account of that historic event.</p></blockquote>
<p>My dad found <a href="http://books.google.com/books?id=d0kUAAAAYAAJ&pg=PA141&dq=Robert+Lebby+Fort+Sumter&hl=en&ei=xIakTd-PLITp0gGzocX9CA&sa=X&oi=book_result&ct=result&resnum=2&ved=0CC0Q6AEwAQ#v=onepage&q=Robert%20Lebby%20Fort%20Sumter&f=false">the account</a>, in <em>The South Carolina historical and genealogical magazine, Volume 12.</em> A plaintext copy (all thanks to the fine folks at Google, I assume) is here for posterity. You can see the original scanned PDF at that link above, and even download it in epub to read on a kindle(!?).</p>
<blockquote>
<p style="text-align: center;">THE FIRST SHOT ON FORT SUMTER<br />
By Robert Lebby (1833-1910), M. D.</p>
<p style="text-align: left;">The following paper was prepared about 1893, by the late Dr. Robert Lebby, for many years quarantine officer of the State of South Carolina at the port of Charleston, and by him given in 1906 to Mr. A. S. Salley, Jr., Secretary of the Historical Commission of South Carolina, for permanent preservation by the publication thereof. Mr. Salley permitted The News and Courier to print it in its issue of Monday, September 3, 1906, and presents it here for the twofold purpose of preserving a most conclusive presentation of evidence regarding the firing of the first hostile shot on Fort Sumter and of carrying out his promise to Dr. Lebby to have the paper published in permanent form.<br />
April 12, 1893, will be the thirty-second anniversary of the first shell fired at Fort Sumter, and is generally considered as the opening of the terrible struggle between the Northern and Southern sections of this great country—the one ostensibly for the preservation of the Union of these United States; the other for the maintenance of their rights under the Constitution of that Union, which they felt were being wrested from them by a fanatical element at the North.<br />
Much has been written to prove the particular individual who fired the first shell at Fort Sumter, and thereby establish the fact of a questionable honor of having inaugurated the most momentous struggle in the history of the world, both as to its duration and the numbers engaged in it, and the tenacity with which those of the weaker section maintained themselves against those of the stronger, with the<br />
3<br />
whole of Europe to recruit their armies from and all the resources which their open ports afforded.<br />
I purpose, as a witness to this opening episode in the great drama, beginning April 12, 1861, to give my recollection of it, along with that of others who were on the historic spot of Fort Johnson at that time, as there are but a few now left who were there and witnessed what took place thirty-two years ago, in order that when the history of this gigantic struggle may be written in after years, some items may be obtained that will assist in its compilation.<br />
In order that one not present on the spot may understand the situation of affairs at Fort Johnson at that time, I will state that there were two mortar batteries erected at Fort Johnson for the reduction of Fort Sumter. One situated on the front beach, midway between old Fort Johnson and the Lazaretto point, and directly west of Fort Sumter, and known as the beach, or east, battery (This was the most vulnerable and the weakest line of Fort Sumter), and the other was located due northwest of the former on a hill near some houses and contiguous to the present quarantine residence. The remains of this battery are still plainly visible. It was knOwn as the hill, or west, battery. The east, or beach, battery has been washed away by the sea, but I have saved the timber that was used in the construction of the magazine. This comprises the topography of the offensive works at Fort Johnson for the reduction of Sumter on April 12, 1861.<br />
The post of Fort Johnson consisted, at that date, of these two batteries of mortars and a company of infantry as reserves, all under command of Captain George S. James, South Carolina State troops.<br />
The battery on the beach, or east, was under the immediate command of Captain James, with Lieutenant Henry S. Farley as lieutenant, and the battery on the hill, or west, was under the immediate command of Lieutenant Wade Hampton Gibbes, I think with Lieutenant J. McPherson Washington as next, and the company of infantry, as reserves, was commanded by Lieutenant Theodore B. Hayne, and was stationed near the old Martello Tower, about 400<br />
yards in the woods, to the northwest of the hill, or Gibbes, battery.<br />
I have been thus particular in the location of the battery and its officers for reasons that will be apparent hereafter, and they are facts that cannot be contradicted.<br />
The first point to be established is from what battery was the first mortar shell fired?<br />
General Beauregard, Military Operations, page 42, chapter 4, last paragraph, says:<br />
From Fort Johnson’s mortar battery at 4.30, A. M.,issued the first shell of the war. It was fired not by Mr. Ruffin, of Virginia, as has been erroneously supposed1, but by Capt. George S. James, of South Carolina, to whom Lieut. Stephen D. Lee issued the order.<br />
Captain Stephen D. Lee, an aide of General Beauregard’s, and who, with Gen. Chesnut, informed Major Anderson that fire would be opened on Fort Sumter, says:<br />
The first fire was from James’s battery.2<br />
Mr. Edward H. Barnwell, of Charleston, who was present at Gibbes’s battery at the opening, says:<br />
The first shell fired at Sumter was from James’s east battery (or the beach battery); the second was from the west (or hill battery). I was at this battery among some houses, one of which our forces tried to blow up, being too near the battery (Greer’s house). This was the battery under command of Lieut. W. H. Gibbes.<br />
Dr. W. H. Prioleau, surgeon of the post, who was at the east, or beach, battery when the first shell was fired, states:<br />
On the morning of April 12, 1861, as soon as orders were received to open fire on Fort Sumter, we repaired to our posts, and twentyfive or thirty minutes after 4, A. M., by my watch, which I held open in my hand at the time, the first gun was fired, this being the right-hand mortar in the battery on the beach. I cannot recollect who pulled the lanyard, but this gun was directly in charge of Lieutenant Henry S. Farley, who, as well as I can recollect, sighted the gun. Captain James giving the order to fire.’<br />
1“The venerable Edmund Ruffin, who, as soon as it was known a battle was inevitable, hastened over to Morris’ Island and was elected a member of the Palmetto Guard, fired the first gun from Stevens’ Iron Battery. All honor to the chivalric Virginian! May he live many years to wear the fadeless wreath that honor placed upon his brow on our glorious Friday.”—The Charleston Daily Courier, Saturday, April 13, 1861. (Note by A. S. S., Jr.)<br />
2Vide Southern Historical Society Papers, November 1883, and other papers of Gen. Lee.<br />
“Note this evidence.<br />
Colonel Henry S. Farley, now of Mount Pleasant Military Academy, Sing Sing, New York, who was a lieutenant with James in the beach battery, states in a letter to me:<br />
The circumstances attending the firing of the first gun at Sumter are q•uite fresh in my memory. Captain James stood on my right, with watch in hand, and at the designated moment gave me the order to fire. I pulled the lanyard, having already carefully inserted a friction tube, and discharged a thirteen-inch mortar shell, which was the right of battery. In one of the issues of a Charleston evening paper, which appeared shortly after the reduction of Fort Sumter, you will find it stated that Lieutenant Farley fired the first gun, and Lieutenant Gibbes the second.4<br />
I will now give my personal recollections of the affair. I am a native, and was a resident and practicing physician of James’ Island at the time the first gun was fired, and consequently was perfectly conversant with the topography of the location, and having been a college acquaintance of Captain James, was invited by him the previous day, April 11, to be on hand if anything transpired to require my services. I accepted his invitation and remained to witness the first, and last, gun fired at Sumter at that time.<br />
My recollection of the matter is that on the morning of April 12, 1861, about ten minutes before 4, A. M., Captain S. D. Lee, with two other gentlemen, having just returned from Sumter, passed a group of four gentlemen, I among the number, and inquired for Captain James’s quarters, and when directed to the house occupied by Captain James, remarked on passing, that the ball would soon be opened.<br />
A short time elapsed, when Captain James and others passed to the beach, or east, battery, and Captain Lee and his party went on down to the wharf. I was midway between the houses on a bridge that connected the beach and the hill, where I could see the fire of either battery, and at</p>
<p>“‘At thirty minutes past four o’clock the conflict was opened by the discharge of a shell from the Howitzer Battery on James’ Island, under the command of Captain GEO. S. JAMES, who followed the riddled Palmetto banner on the bloody battle fields of Mexico.<br />
“The sending of this harmful messenger to Major Anderson was followed by a deafening explosion, which was caused by the blowing up of a building that stood in front of the battery.<br />
“While the white smoke was melting away into the air another shell, which Lieut. W. HAMPTON GIBBES has the honor of having fired, pursued its noiseless way toward the hostile fortification.”—The Charleston Daily Courier, Saturday, April 13, 1861. (Note by A. S. S., Jr.)<br />
4:30, A. M., a shell was fired from the beach, or east, battery, commanded by Captain James.<br />
The second report heard was the blowing up of Greer’s house, contiguous to the hill battery, commanded by Lieutenant W. H. Gibbes, and the second shell was fired from this battery under Lieutenant Gibbes. The firing then became general around the harbor batteries bearing on Sumter.<br />
We have, therefore, the concurrent testimony of General Beauregard, who ordered the fire to commence; of Captain Stephen D. Lee, the officer extending the order; of Lieutenant Farley, who was in the battery when the gun was fired, and of the medical officer, Dr. W. H. Prioleau, who was on duty in the battery; also of Lieutenant Edward H. Barnwell, who was present at the hill, or Gibbes, battery, and of myself, who all bear witness to the fact that the first shell was fired from Captain James’s battery on the beach. How, then, can anyone claim that the shell was fired from any other point with this weight of evidence against it?<br />
As to the question of who pulled the lanyard of the mortar from which issued the first shell, there are only two living witnesses that I am cognizant of who were in the battery at the time of the fire, viz: Colonel Henry S. Farley and Dr. W. H. Prioleau. Colonel Henry S. Farley asserts in a letter to me that he pulled the lanyard by Captain James’s order, and Dr. Prioleau asserts that Lieutenant Farley had charge of the right gun of the battery, and that the first fire was from that gun, Captain James giving the order to fire, and it is reasonable to conclude, therefore, that Farley pulled the lanyard. Certain it is that either James or Farley fired it, but, as Captain James gave the order to fire, it must have been Farley, as James would never have given himself the order to fire. The order, therefore, must have been given to Farley. I, therefore, conclude that Lieutenant Henry S. Farley fired the first gun at Sumter by Captain James’s order.</p></blockquote>
<div style="text-align: left;"><span style="font-family: Arial, sans-serif; white-space: nowrap; line-height: normal; font-size: medium;"><span class="addmd" style="font-size: 13px; margin-left: 2px;"><br />
</span></span></div>
]]></content:encoded>
<wfw:commentRss>http://chmullig.com/2011/04/april-12th-anniversaries/feed/</wfw:commentRss>
<slash:comments>1</slash:comments>
</item>
</channel>
</rss>
<!-- Dynamic page generated in 0.233 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2015-06-13 00:23:55 -->
|
PyMel.docset/Contents/Resources/Documents/generated/functions/pymel.core.modeling/pymel.core.modeling.polyCheck.html | alexwidener/PyMelDocset | <html><body><p><!-- saved from url=(0024)http://docs.autodesk.com -->
<!DOCTYPE html>
<!-- Mirrored from help.autodesk.com/cloudhelp/2016/ENU/Maya-Tech-Docs/PyMel/generated/functions/pymel.core.modeling/pymel.core.modeling.polyCheck.html by HTTrack Website Copier/3.x [XR&CO'2014], Sat, 01 Aug 2015 05:36:33 GMT -->
<!-- Added by HTTrack --><meta content="text/html;charset=utf-8" http-equiv="content-type"/><!-- /Added by HTTrack -->
</p>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
<title>pymel.core.modeling.polyCheck — PyMEL 1.0.7 documentation</title>
<link href="../../../_static/nature.css" rel="stylesheet" type="text/css"/>
<link href="../../../_static/pygments.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../../../',
VERSION: '1.0.7',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
};
</script>
<script src="../../../_static/jquery.js" type="text/javascript"></script>
<script src="../../../_static/underscore.js" type="text/javascript"></script>
<script src="../../../_static/doctools.js" type="text/javascript"></script>
<link href="../../../index-2.html" rel="top" title="PyMEL 1.0.7 documentation"/>
<link href="../../pymel.core.modeling.html" rel="up" title="pymel.core.modeling"/>
<link href="pymel.core.modeling.polyChipOff.html" rel="next" title="pymel.core.modeling.polyChipOff"/>
<link href="pymel.core.modeling.polyCacheMonitor.html" rel="prev" title="pymel.core.modeling.polyCacheMonitor"/>
<link href="../../../../style/adsk.cpm.css" rel="stylesheet" type="text/css"/><meta content="expert" name="experiencelevel"/><meta content="programmer" name="audience"/><meta content="enable" name="user-comments"/><meta content="ENU" name="language"/><meta content="MAYAUL" name="product"/><meta content="2016" name="release"/><meta content="Customization" name="book"/><meta content="Maya-Tech-Docs" name="component"/><meta content="/view/MAYAUL/2016/ENU/" name="helpsystempath"/><meta content="04/03/2015" name="created"/><meta content="04/03/2015" name="modified"/><meta content="Navigation
index
modules |
next |
previous |
PyMEL 1.0.7 documentation »
pymel.core.modeling »
pymel.core.modeling.polyCheck ¶
polyCheck ( *args , **kwargs ) ¶
Dumps a description of internal memory representation of poly objects. If no objects are specified in the command line,
the objects from the active list are used. Default behaviour is to print only a summary. Use the flags above to get more
details on a specific part of the..." name="description"/><meta content="__PyMel_generated_functions_pymel_core_modeling_pymel_core_modeling_polyCheck_html" name="topicid"/>
<div class="related">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a accesskey="I" href="../../../genindex.html" title="General Index">index</a></li>
<li class="right">
<a href="../../../py-modindex.html" title="Python Module Index">modules</a> |</li>
<li class="right">
<a accesskey="N" href="pymel.core.modeling.polyChipOff.html" title="pymel.core.modeling.polyChipOff">next</a> |</li>
<li class="right">
<a accesskey="P" href="pymel.core.modeling.polyCacheMonitor.html" title="pymel.core.modeling.polyCacheMonitor">previous</a> |</li>
<li><a href="../../../index-2.html">PyMEL 1.0.7 documentation</a> »</li>
<li><a accesskey="U" href="../../pymel.core.modeling.html">pymel.core.modeling</a> »</li>
</ul>
</div>
<div class="document">
<div class="documentwrapper">
<div class="bodywrapper">
<div class="body">
<div class="section" id="pymel-core-modeling-polycheck">
<h1>pymel.core.modeling.polyCheck<a class="headerlink" href="#pymel-core-modeling-polycheck" title="Permalink to this headline">¶</a></h1>
<dl class="function">
<dt id="pymel.core.modeling.polyCheck"><a name="//apple_ref/cpp/Function/pymel.core.modeling.polyCheck"></a>
<tt class="descname">polyCheck</tt><big>(</big><em>*args</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#pymel.core.modeling.polyCheck" title="Permalink to this definition">¶</a></dt>
<dd><p>Dumps a description of internal memory representation of poly objects. If no objects are specified in the command line,
the objects from the active list are used. Default behaviour is to print only a summary. Use the flags above to get more
details on a specific part of the object.</p>
<p class="rubric">Flags:</p>
<table border="1" class="docutils">
<colgroup>
<col width="1%"></col>
<col width="61%"></col>
<col width="19%"></col>
<col width="19%"></col>
</colgroup>
<thead valign="bottom">
<tr class="row-odd"><th class="head" colspan="2">Long Name / Short Name</th>
<th class="head">Argument Types</th>
<th class="head">Properties</th>
</tr>
</thead>
<tbody valign="top">
<tr class="row-even"><td colspan="2"><tt class="docutils literal"><span class="pre">edge</span></tt> / <tt class="docutils literal"><span class="pre">e</span></tt></td>
<td><em>bool</em></td>
<td><img alt="../../../_images/create.gif" class="first last" src="../../../_images/create.gif"/>
</td>
</tr>
<tr class="row-odd"><td> </td>
<td colspan="3"><dl class="first last docutils">
<dt>Check edge descriptions.</dt>
<dd></dd>
</dl>
</td>
</tr>
<tr class="row-even"><td colspan="2"><tt class="docutils literal"><span class="pre">face</span></tt> / <tt class="docutils literal"><span class="pre">f</span></tt></td>
<td><em>bool</em></td>
<td><img alt="../../../_images/create.gif" class="first last" src="../../../_images/create.gif"/>
</td>
</tr>
<tr class="row-odd"><td> </td>
<td colspan="3"><dl class="first last docutils">
<dt>Check face descriptions. If no flag is set, a complete check is performed.</dt>
<dd></dd>
</dl>
</td>
</tr>
<tr class="row-even"><td colspan="2"><tt class="docutils literal"><span class="pre">faceOffset</span></tt> / <tt class="docutils literal"><span class="pre">fo</span></tt></td>
<td><em>bool</em></td>
<td> </td>
</tr>
<tr class="row-odd"><td> </td>
<td colspan="3"> </td>
</tr>
<tr class="row-even"><td colspan="2"><tt class="docutils literal"><span class="pre">openFile</span></tt> / <tt class="docutils literal"><span class="pre">of</span></tt></td>
<td><em>unicode</em></td>
<td><img alt="../../../_images/create.gif" class="first last" src="../../../_images/create.gif"/>
</td>
</tr>
<tr class="row-odd"><td> </td>
<td colspan="3"><p class="first">Opens a file that contains a poly description, as dumped out by the debug commands. Flag can have multiple arguments, passed either as a
tuple or a list.</p>
<blockquote class="last">
<div></div></blockquote>
</td>
</tr>
</tbody>
</table>
<p>Derived from mel command <tt class="xref py py-obj docutils literal"><span class="pre">maya.cmds.polyCheck</span></tt></p>
<p class="rubric">Example:</p>
<div class="highlight-python"><div class="highlight"><pre><span class="kn">import</span> <span class="nn">pymel.core</span> <span class="kn">as</span> <span class="nn">pm</span>
<span class="n">pm</span><span class="o">.</span><span class="n">polyPlane</span><span class="p">()</span>
<span class="n">pm</span><span class="o">.</span><span class="n">polyCheck</span><span class="p">()</span>
<span class="n">pm</span><span class="o">.</span><span class="n">polyCheck</span><span class="p">(</span> <span class="n">f</span><span class="o">=</span><span class="bp">True</span> <span class="p">)</span>
</pre></div>
</div>
</dd></dl>
</div>
</div>
</div>
</div>
<div class="sphinxsidebar">
<div class="sphinxsidebarwrapper">
<h4>Previous topic</h4>
<p class="topless"><a href="pymel.core.modeling.polyCacheMonitor.html" title="previous chapter">pymel.core.modeling.polyCacheMonitor</a></p>
<h4>Next topic</h4>
<p class="topless"><a href="pymel.core.modeling.polyChipOff.html" title="next chapter">pymel.core.modeling.polyChipOff</a></p>
<h3><a href="../../../modules.html">Core Modules</a></h3>
<ul>
<li><a class="reference external" href="../../pymel.core.animation.html#module-pymel.core.animation"><tt class="xref">animation</tt></a></li>
<li><a class="reference external" href="../../pymel.core.effects.html#module-pymel.core.effects"><tt class="xref">effects</tt></a></li>
<li><a class="reference external" href="../../pymel.core.general.html#module-pymel.core.general"><tt class="xref">general</tt></a></li>
<li><a class="reference external" href="../../pymel.core.language.html#module-pymel.core.language"><tt class="xref">language</tt></a></li>
<li><a class="reference external" href="../../pymel.core.modeling.html#module-pymel.core.modeling"><tt class="xref">modeling</tt></a></li>
<li><a class="reference external" href="../../pymel.core.rendering.html#module-pymel.core.rendering"><tt class="xref">rendering</tt></a></li>
<li><a class="reference external" href="../../pymel.core.system.html#module-pymel.core.system"><tt class="xref">system</tt></a></li>
<li><a class="reference external" href="../../pymel.core.windows.html#module-pymel.core.windows"><tt class="xref">windows</tt></a></li>
</ul>
<h3><a href="../../../modules.html">Type Modules</a></h3>
<ul>
<li><a class="reference external" href="../../pymel.core.datatypes.html#module-pymel.core.datatypes"><tt class="xref">datatypes</tt></a></li>
<li><a class="reference external" href="../../pymel.core.nodetypes.html#module-pymel.core.nodetypes"><tt class="xref">nodetypes</tt></a></li>
<li><a class="reference external" href="../../pymel.core.uitypes.html#module-pymel.core.uitypes"><tt class="xref">uitypes</tt></a></li>
</ul>
<h3><a href="../../../modules.html">Other Modules</a></h3>
<ul>
<li><a class="reference external" href="../../pymel.api.plugins.html#module-pymel.api.plugins"><tt class="xref">plugins</tt></a></li>
<li><a class="reference external" href="../../pymel.mayautils.html#module-pymel.mayautils"><tt class="xref">mayautils</tt></a></li>
<li><a class="reference external" href="../../pymel.util.html#module-pymel.util"><tt class="xref">util</tt></a></li>
<li><a class="reference external" href="../../pymel.versions.html#module-pymel.versions"><tt class="xref">versions</tt></a>
</li><li><a class="reference external" href="../../pymel.tools.html#module-pymel.tools"><tt class="xref">tools</tt></a></li>
</ul>
<!--
<ul>
<li><a class="reference external" href="../../pymel.core.animation.html.html#module-pymel.core.animation"><tt class="xref">animation</tt></a></li>
<li><a class="reference external" href="../../pymel.core.datatypes.html.html#module-pymel.core.datatypes"><tt class="xref">datatypes</tt></a></li>
<li><a class="reference external" href="../../pymel.core.effects.html.html#module-pymel.core.effects"><tt class="xref">effects</tt></a></li>
<li><a class="reference external" href="../../pymel.core.general.html.html#module-pymel.core.general"><tt class="xref">general</tt></a></li>
<li><a class="reference external" href="../../pymel.core.language.html.html#module-pymel.core.language"><tt class="xref">language</tt></a></li>
<li><a class="reference external" href="../../pymel.core.modeling.html.html#module-pymel.core.modeling"><tt class="xref">modeling</tt></a></li>
<li><a class="reference external" href="../../pymel.core.nodetypes.html.html#module-pymel.core.nodetypes"><tt class="xref">nodetypes</tt></a></li>
<li><a class="reference external" href="../../pymel.core.rendering.html.html#module-pymel.core.rendering"><tt class="xref">rendering</tt></a></li>
<li><a class="reference external" href="../../pymel.core.system.html.html#module-pymel.core.system"><tt class="xref">system</tt></a></li>
<li><a class="reference external" href="../../pymel.core.windows.html.html#module-pymel.core.windows"><tt class="xref">windows</tt></a></li>
<li><a class="reference external" href="../../pymel.util.html.html#module-pymel.util"><tt class="xref">pymel.util</tt></a></li>
</ul>
-->
<h3>This Page</h3>
<ul class="this-page-menu">
<li><a href="../../../_sources/generated/functions/pymel.core.modeling/pymel.core.modeling.polyCheck.txt" rel="nofollow">Show Source</a></li>
</ul>
<div id="searchbox" style="display: none">
<h3>Quick search</h3>
<form action="http://help.autodesk.com/cloudhelp/2016/ENU/Maya-Tech-Docs/PyMel/search.html" class="search" method="get"></form>
<input name="q" type="text"/>
<input type="submit" value="Go"/>
<input name="check_keywords" type="hidden" value="yes"/>
<input name="area" type="hidden" value="default"/>
<p class="searchtip" style="font-size: 90%">
Enter search terms or a module, class or function name.
</p>
</div>
<script type="text/javascript">$('#searchbox').show(0);</script>
</div>
</div>
<div class="clearer"></div>
</div>
<div class="related">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a href="../../../genindex.html" title="General Index">index</a></li>
<li class="right">
<a href="../../../py-modindex.html" title="Python Module Index">modules</a> |</li>
<li class="right">
<a href="pymel.core.modeling.polyChipOff.html" title="pymel.core.modeling.polyChipOff">next</a> |</li>
<li class="right">
<a href="pymel.core.modeling.polyCacheMonitor.html" title="pymel.core.modeling.polyCacheMonitor">previous</a> |</li>
<li><a href="../../../index-2.html">PyMEL 1.0.7 documentation</a> »</li>
<li><a href="../../pymel.core.modeling.html">pymel.core.modeling</a> »</li>
</ul>
</div>
<div class="footer">
© Copyright 2009, Chad Dombrova.
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2.3.
</div>
<!-- Mirrored from help.autodesk.com/cloudhelp/2016/ENU/Maya-Tech-Docs/PyMel/generated/functions/pymel.core.modeling/pymel.core.modeling.polyCheck.html by HTTrack Website Copier/3.x [XR&CO'2014], Sat, 01 Aug 2015 05:36:33 GMT -->
</body></html> |
content/marcado/220314.html | okfn-brasil/queriDO | <html>
<head>
<meta charset="UTF-8"/>
<meta itemprop='identifier' content='220314'/>
<meta itemprop='datePublished' content='2014-12-30'/>
<meta itemprop='datePublished-pubid' content='195'/>
</head>
2ª GERÊNCIA DE CONSERVAÇÃO
<p align="center" class="MsoNormal">
<b>
SUBSECRETARIA DE ENGENHARIA E CONSERVAÇÃO
</b>
</p>
<p align="center" class="MsoNormal">
<b>
COORDENADORIA GERAL DE CONSERVAÇÃO
</b>
</p>
<p align="center" class="MsoNormal">
<b>
8ª GERÊNCIA DE CONSERVAÇÃO
</b>
</p>
<p class="MsoNormal">
O Gerente da 8ª Gerência de Conservação faz saber que foi lavrado o
<b>
Auto de Infração
</b>
de
<b>
nº 726.891
</b>
, em
<b>
16/12/2014
</b>
, para
<b>
</b>
a empresa <mark class="organization_name">CONCREMAT ENGENHARIA E TECNOLOGIA S/A.</mark>
</p>
<p class="MsoNormal">
Caso assim o desejar, o autuado poderá oferecer defesa ou impugnação ao referido Auto de Infração, impreterivelmente, até 30 dias corridos da data da lavratura, na Coordenadoria Geral de Conservação, localizada na Rua <mark class="givenName">Maia de Lacerda</mark>, 167 – Estácio.
</p>
<p class="MsoNormal">
</p>
<p align="center" class="MsoNormal">
<b>
Edital nº 1016/2014, de 16 de
</b>
<b>
Dezembro de 2014
</b>
</p>
<p class="MsoNormal">
O Senhor Gerente da 8ª GERÊNCIA DE CONSERVAÇÃO da SC/SUBEC/CGC, de acordo com o Art. 60 do RPT do Dec. "E" 3.800/70, determina a(o) <mark class="organization_name">CONCREMAT ENGENHARIA E TECNOLOGIA S/A</mark> encontrada(o) na(o) RUA NUNES VIANA 275 - INHAÚMA, que em obediência ao presente EDITAL, fica obrigado a, no prazo máximo de 1 dia(s) a contar do recebimento deste, refazer a pavimentação obedecendo as normas da Resolução 7/2014, cap. III (fresar e pavimentar), em obra na(o) RUA MANUEL VITORINO, DA RUA ASSIS CARNEIRO ATÉ A PRAÇA DOS GARIS - PIEDADE de acordo com as Normas da SC/COR-VIAS.
</p>
<p class="MsoNormal">
Em caso de não observância ao presente Edital, será lavrada multa DIÁRIA de <data class="currencyValue">R$638,86</data> de acordo com o § 16 do Art. 136 do RLF do Dec. "E" 3.800/70.
</p>
<p class="MsoNormal">
</p>
<p align="center" class="MsoNormal">
<b>
11ª GERÊNCIA DE CONSERVAÇÃO
</b>
</p>
<p class="MsoNormal">
O Gerente da 11ª Gerência de Conservação faz saber que foi lavrado o
<b>
Auto de Infração
</b>
de
<b>
nº 674.363
</b>
, em
<b>
17/12/2014
</b>
, para
<b>
</b>
a empresa SETEC – SOLUÇÕES ENERGÉTICAS DE TRANSMISSÃO E CONTROLE LTDA.
</p>
<p class="MsoNormal">
Caso assim o desejar, o autuado poderá oferecer defesa ou impugnação ao referido Auto de Infração, impreterivelmente, até 30 dias corridos da data da lavratura, na Coordenadoria Geral de Conservação, localizada na Rua <mark class="givenName">Maia de Lacerda</mark>, 167 – Estácio.
</p>
<p class="MsoNormal">
</p>
<p align="center" class="MsoNormal">
<b>
12ª GERÊNCIA DE CONSERVAÇÃO
</b>
</p>
<p class="MsoNormal">
O Gerente da 12ª Gerência de Conservação faz saber que foi lavrado o
<b>
Auto de Infração
</b>
de
<b>
nº 682.706
</b>
, em
<b>
17/12/2014
</b>
, para
<b>
</b>
a empresa PROCISA DO BRASIL PROJETOS E CONSTRUÇÕES E INSTALAÇÕES.
</p>
<p class="MsoNormal">
Caso assim o desejar, o autuado poderá oferecer defesa ou impugnação ao referido Auto de Infração, impreterivelmente, até 30 dias corridos da data da lavratura, na Coordenadoria Geral de Conservação, localizada na Rua <mark class="givenName">Maia de Lacerda</mark>, 167 – Estácio.
</p>
<p class="MsoNormal">
</p>
<p align="center" class="MsoNormal">
<b>
20ª GERÊNCIA DE CONSERVAÇÃO
</b>
</p>
<p align="center" class="MsoNormal">
<b>
Edital nº 011/2014, de 22
</b>
<b>
de Dezembro de 2014
</b>
</p>
<p class="MsoNormal">
O Senhor Gerente da 20ª GERÊNCIA DE CONSERVAÇÃO da SC/SUBEC/CGC/4ªCRC, de acordo com o Art. 228, § 2º, da Lei Orgânica do Município do rio de Janeiro; no artigo 219 da Lei Complementar nº 16/1992 – Plano Diretor da Cidade do Rio de Janeiro; no artigo 1º, parágrafo 1º, Lei nº 1574, de 11/12/1967, e nos artigos 129 e 130 do Decreto “E” nº 3.800, de 20/04/1970, com redação revisada pelo artigo 1º do Decreto Municipal nº 16.847, de 14/07/1998, informa ao PROPRIETÁRIO OU RESPONSÁVEL PELA CONSTRUÇÃO IRREGULAR EM PASSEIO PÚBLICO encontrado à Rua <mark class="givenName">Francisco Barreto</mark> lado oposto ao nº 928 – Bangu, que em obediência ao presente Edital, será realizada vistoria neste endereço no dia 29/01/2015 entre 10:30h e 11:30h, pela comissão de vistoria Administrativa publicada no Diário Oficial nº 182 de <time class="date">08 de Dezembro de 2014</time>.
</p>
</html>
|
packages/server/docs/modules/_tournament_match_game_game_.html | aurbano/ultimate-ttt-server | <!doctype html>
<html class="default no-js">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>"tournament/match/game/Game" | @socialgorithm/uttt</title>
<meta name="description" content="">
<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.js" data-base="..">
<div class="field">
<label for="tsd-search-field" class="tsd-widget search no-caption">Search</label>
<input id="tsd-search-field" type="text" />
</div>
<ul class="results">
<li class="state loading">Preparing search index...</li>
<li class="state failure">The search index is not available</li>
</ul>
<a href="../index.html" class="title">@socialgorithm/uttt</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="_tournament_match_game_game_.html">"tournament/match/game/Game"</a>
</li>
</ul>
<h1>External module "tournament/match/game/Game"</h1>
</div>
</div>
</header>
<div class="container container-main">
<div class="row">
<div class="col-8 col-content">
<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>Classes</h3>
<ul class="tsd-index-list">
<li class="tsd-kind-class tsd-parent-kind-external-module"><a href="../classes/_tournament_match_game_game_.game.html" class="tsd-kind-icon">Game</a></li>
</ul>
</section>
<section class="tsd-index-section tsd-is-not-exported">
<h3>Variables</h3>
<ul class="tsd-index-list">
<li class="tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported"><a href="_tournament_match_game_game_.html#after_timeout_delay" class="tsd-kind-icon">AFTER_<wbr>TIMEOUT_<wbr>DELAY</a></li>
</ul>
</section>
</div>
</section>
</section>
<section class="tsd-panel-group tsd-member-group tsd-is-not-exported">
<h2>Variables</h2>
<section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported">
<a name="after_timeout_delay" class="tsd-anchor"></a>
<h3><span class="tsd-flag ts-flagConst">Const</span> AFTER_<wbr>TIMEOUT_<wbr>DELAY</h3>
<div class="tsd-signature tsd-kind-icon">AFTER_<wbr>TIMEOUT_<wbr>DELAY<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">100</span><span class="tsd-signature-symbol"> = 100</span></div>
<aside class="tsd-sources">
<ul>
<li>Defined in <a href="https://github.com/socialgorithm/ultimate-ttt-server/blob/ed167d3/src/tournament/match/game/Game.ts#L15">tournament/match/game/Game.ts:15</a></li>
</ul>
</aside>
<div class="tsd-comment tsd-typography">
<div class="lead">
<p>Delay in ms to be used before starting a new game after a player times out.
The idea is to ensure that the player doesn't respond out of time for the next game.</p>
</div>
</div>
</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=" tsd-kind-external-module">
<a href="_index_.html">"index"</a>
</li>
<li class=" tsd-kind-external-module">
<a href="_lib_cli_options_.html">"lib/cli-<wbr>options"</a>
</li>
<li class=" tsd-kind-external-module">
<a href="_lib_funcs_.html">"lib/funcs"</a>
</li>
<li class=" tsd-kind-external-module">
<a href="_server_server_.html">"server/<wbr>Server"</a>
</li>
<li class=" tsd-kind-external-module">
<a href="_server_socketserver_.html">"server/<wbr>Socket<wbr>Server"</a>
</li>
<li class=" tsd-kind-external-module">
<a href="_server_constants_.html">"server/constants"</a>
</li>
<li class=" tsd-kind-external-module">
<a href="_standalone_.html">"standalone"</a>
</li>
<li class=" tsd-kind-external-module">
<a href="_tournament_tournament_.html">"tournament/<wbr>Tournament"</a>
</li>
<li class=" tsd-kind-external-module">
<a href="_tournament_tournamentevents_.html">"tournament/<wbr>Tournament<wbr>Events"</a>
</li>
<li class=" tsd-kind-external-module">
<a href="_tournament_match_match_.html">"tournament/match/<wbr>Match"</a>
</li>
<li class=" tsd-kind-external-module">
<a href="_tournament_match_matchoptions_.html">"tournament/match/<wbr>Match<wbr>Options"</a>
</li>
<li class="current tsd-kind-external-module">
<a href="_tournament_match_game_game_.html">"tournament/match/game/<wbr>Game"</a>
</li>
<li class=" tsd-kind-external-module">
<a href="_tournament_match_game_gameoptions_.html">"tournament/match/game/<wbr>Game<wbr>Options"</a>
</li>
<li class=" tsd-kind-external-module">
<a href="_tournament_match_game_gamestats_.html">"tournament/match/game/<wbr>Game<wbr>Stats"</a>
</li>
<li class=" tsd-kind-external-module">
<a href="_tournament_matchmaker_doubleeliminationmatch_.html">"tournament/matchmaker/<wbr>Double<wbr>Elimination<wbr>Match"</a>
</li>
<li class=" tsd-kind-external-module">
<a href="_tournament_matchmaker_doubleeliminationmatchmaker_.html">"tournament/matchmaker/<wbr>Double<wbr>Elimination<wbr>Matchmaker"</a>
</li>
<li class=" tsd-kind-external-module">
<a href="_tournament_matchmaker_freeforallmatchmaker_.html">"tournament/matchmaker/<wbr>Free<wbr>For<wbr>All<wbr>Matchmaker"</a>
</li>
<li class=" tsd-kind-external-module">
<a href="_tournament_matchmaker_matchmaker_.html">"tournament/matchmaker/<wbr>Matchmaker"</a>
</li>
<li class=" tsd-kind-external-module">
<a href="_tournament_model_channel_.html">"tournament/model/<wbr>Channel"</a>
</li>
<li class=" tsd-kind-external-module">
<a href="_tournament_model_lobby_.html">"tournament/model/<wbr>Lobby"</a>
</li>
<li class=" tsd-kind-external-module">
<a href="_tournament_model_player_.html">"tournament/model/<wbr>Player"</a>
</li>
<li class=" tsd-kind-external-module">
<a href="_tournament_model_state_.html">"tournament/model/<wbr>State"</a>
</li>
<li class=" tsd-kind-external-module">
<a href="_tournament_stats_tournamentstats_.html">"tournament/stats/<wbr>Tournament<wbr>Stats"</a>
</li>
</ul>
</nav>
<nav class="tsd-navigation secondary menu-sticky">
<ul class="before-current">
<li class=" tsd-kind-class tsd-parent-kind-external-module">
<a href="../classes/_tournament_match_game_game_.game.html" class="tsd-kind-icon">Game</a>
</li>
<li class=" tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported">
<a href="_tournament_match_game_game_.html#after_timeout_delay" class="tsd-kind-icon">AFTER_<wbr>TIMEOUT_<wbr>DELAY</a>
</li>
</ul>
</nav>
</div>
</div>
</div>
<footer class="with-border-bottom">
<div class="container">
<h2>Legend</h2>
<div class="tsd-legend-group">
<ul class="tsd-legend">
<li class="tsd-kind-module"><span class="tsd-kind-icon">Module</span></li>
<li class="tsd-kind-object-literal"><span class="tsd-kind-icon">Object literal</span></li>
<li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li>
<li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li>
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
</ul>
<ul class="tsd-legend">
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
<li class="tsd-kind-enum-member"><span class="tsd-kind-icon">Enumeration member</span></li>
<li class="tsd-kind-property tsd-parent-kind-enum"><span class="tsd-kind-icon">Property</span></li>
<li class="tsd-kind-method tsd-parent-kind-enum"><span class="tsd-kind-icon">Method</span></li>
</ul>
<ul class="tsd-legend">
<li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li>
<li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li>
<li class="tsd-kind-constructor tsd-parent-kind-interface"><span class="tsd-kind-icon">Constructor</span></li>
<li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li>
<li class="tsd-kind-method tsd-parent-kind-interface"><span class="tsd-kind-icon">Method</span></li>
<li class="tsd-kind-index-signature tsd-parent-kind-interface"><span class="tsd-kind-icon">Index signature</span></li>
</ul>
<ul class="tsd-legend">
<li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li>
<li class="tsd-kind-class tsd-has-type-parameter"><span class="tsd-kind-icon">Class with type parameter</span></li>
<li class="tsd-kind-constructor tsd-parent-kind-class"><span class="tsd-kind-icon">Constructor</span></li>
<li class="tsd-kind-property tsd-parent-kind-class"><span class="tsd-kind-icon">Property</span></li>
<li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li>
<li class="tsd-kind-accessor tsd-parent-kind-class"><span class="tsd-kind-icon">Accessor</span></li>
<li class="tsd-kind-index-signature tsd-parent-kind-class"><span class="tsd-kind-icon">Index signature</span></li>
</ul>
<ul class="tsd-legend">
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited constructor</span></li>
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited property</span></li>
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited method</span></li>
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited accessor</span></li>
</ul>
<ul class="tsd-legend">
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected property</span></li>
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected method</span></li>
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected accessor</span></li>
</ul>
<ul class="tsd-legend">
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private property</span></li>
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private method</span></li>
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private accessor</span></li>
</ul>
<ul class="tsd-legend">
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static property</span></li>
<li class="tsd-kind-call-signature tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static method</span></li>
</ul>
</div>
</div>
</footer>
<div class="container tsd-generator">
<p>Generated using <a href="http://typedoc.org/" target="_blank">TypeDoc</a></p>
</div>
<div class="overlay"></div>
<script src="../assets/js/main.js"></script>
<script>if (location.protocol == 'file:') document.write('<script src="../assets/js/search.js"><' + '/script>');</script>
</body>
</html> |
place/paraguay/map/2013/index.html | okfn/opendataindex-2015 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Open Knowledge">
<meta name="description" content="The Global Open Data Index assesses the state of open government data around the world.
">
<meta name="keywords" content="Open Government, Open Data, Government Transparency, Open Knowledge
">
<meta property="og:type" content="website"/>
<meta property="og:title" content="Open Data Index - Open Knowledge"/>
<meta property="og:site_name" content="Open Data Index"/>
<meta property="og:description"
content="The Global Open Data Index assesses the state of open government data around the world."/>
<meta property="og:image" content="/static/images/favicon.ico"/>
<title>Paraguay / National Map (2013) | Global Open Data Index by Open Knowledge</title>
<base href="/">
<!--[if lt IE 9]>
<script src="/static/vendor/html5shiv.min.js"></script>
<![endif]-->
<link rel="stylesheet" href="/static/css/site.css">
<link rel="icon" href="/static/images/favicon.ico">
<script>
var siteUrl = '';
</script>
</head>
<body class="na">
<div class="fixed-ok-panel">
<div id="ok-panel" class="closed">
<iframe src="http://assets.okfn.org/themes/okfn/okf-panel.html" scrolling="no"></iframe>
</div>
<a class="ok-ribbon"><img src="http://okfnlabs.org/ok-panel/assets/images/ok-ribbon.png" alt="Open Knowledge"></a>
</div>
<header id="header">
<nav class="navbar navbar-default" role="navigation">
<div class="container">
<div>
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse"
data-target="#navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<div class="logo">
<a href="/">
<img src="/static/images/logo2.png">
<span>Global<br/>Open Data Index</span>
</a>
</div>
</div>
<div class="collapse navbar-collapse" id="navbar-collapse">
<ul class="nav navbar-nav" style="margin-right: 132px;">
<li>
<a href="/place/" title="About the Open Data Index project">
Places
</a>
</li>
<li>
<a href="/dataset/" title="About the Open Data Index project">
Datasets
</a>
</li>
<li>
<a href="/download/" title="Download Open Data Index data">
Download
</a>
</li>
<li>
<a href="/insights/" title="Insights">
Insights
</a>
</li>
<li>
<a href="/methodology/"
title="The methodology behind the Open Data Index">
Methodology
</a>
</li>
<li>
<a href="/about/" title="About the Open Data Index project">
About
</a>
</li>
<li>
<a href="/press/"
title="Press information for the Open Data Index">
Press
</a>
</li>
</ul>
</div>
</div>
</div>
</nav>
</header>
<div class="container">
<div class="content">
<div class="row">
<div class="col-md-12">
<ol class="breadcrumb">
<li>
<a href="/">Home</a>
</li>
<li class="active">Paraguay / National Map (2013)</li>
</ol>
<header class="page-header">
<h1>Paraguay / National Map (2013)</h1>
</header>
<h3>Sorry</h3>
<p>
There is no data available for Paraguay / National Map (2013) in the Index.
</p>
</div>
</div>
</div>
</div>
<footer id="footer">
<div class="container">
<div class="row">
<div class="footer-main col-md-8">
<div class="footer-attribution">
<p>
<a href="http://opendefinition.org/ossd/" title="Open Online Software Service">
<img src="http://assets.okfn.org/images/ok_buttons/os_80x15_orange_grey.png" alt=""
border=""/>
</a>
<a href="http://opendefinition.org/okd/" title="Open Online Software Service">
<img src="http://assets.okfn.org/images/ok_buttons/od_80x15_blue.png" alt="" border=""/>
</a>
<a href="http://opendefinition.org/okd/" title="Open Content">
<img src="http://assets.okfn.org/images/ok_buttons/oc_80x15_blue.png" alt="" border=""/>
</a>
–
<a href="http://creativecommons.org/licenses/by/3.0/"
title="Content Licensed under a CC Attribution"></a>
<a href="http://opendatacommons.org/licenses/pddl/1.0"
title="Data License (Public Domain)">Data License (Public
Domain)</a>
</p>
</div>
<div class="footer-meta">
<p>
This service is run by <a href="https://okfn.org/" title="Open Knowledge">Open Knowledge</a>
</p> <a class="naked" href="http://okfn.org/" title="Open Knowledge"><img
src="http://assets.okfn.org/p/okfn/img/okfn-logo-landscape-black-s.png" alt="" height="28"></a>
</div>
</div>
<div class="footer-links col-md-2">
<li><a href="http://okfn.org/" title="Open Knowledge">Open Knowledge</a></li>
<li><a href="http://okfn.org/opendata/" title="What is Open Data?">What is
Open Data?</a></li>
<li><a href="http://census.okfn.org/" title="Run your own Index">Run your
own Index</a></li>
<li><a href="https://github.com/okfn/opendataindex" title="The source code for Open Data Index">Source Code</a></li>
</div>
<div class="footer-links col-md-2">
<li><a href="/" title="Open Data Index home">Home</a></li>
<li><a href="/download/" title="Download data">Download</a></li>
<li><a href="/methodology/"
title="The methodology behind the Open Data Index">Methodology</a></li>
<li><a href="/faq/" title=" Open Data Index FAQ">FAQ</a></li>
<li><a href="/about/" title="About the Open Data Index">About</a></li>
<li><a href="/about/" title="Contact us">Contact</a></li>
<li><a href="/press/" title="Press">Press</a></li>
</div>
</div>
</div>
</footer>
<script data-main="/static/scripts/site" src="/static/scripts/require.js"></script>
</body>
</html> |
src/frontend/public/css/styles.css | malkoto1/tribe | @import url("./../../node_modules/bootstrap/dist/css/bootstrap.css");
html, body, my-app, main-container {
height: 100%;
}
body {
background-color: #EEE;
} |
main/templates/forms/form_field.html | m4tx/usos-id-mapper | {% load widget_tweaks %}
<div class="form-group{% if field.errors %} has-danger{% endif %}">
<label class="form-control-label" for="{{ field.auto_id }}">{{ field.label }}:</label>
{% if field.errors %}
{% render_field field class+="form-control form-control-danger" %}
{% for error in field.errors %}
<div class="form-control-feedback">{{ error }}</div>
{% endfor %}
{% else %}
{% render_field field class+="form-control" %}
{% endif %}
{% if field.help_text %}
<small class="form-text text-muted">
{{ field.help_text }}
</small>
{% endif %}
</div>
|
quotes/14a4117050357d53724384afc19e6ab6.html | ohrepos/quotes-repo | <!DOCTYPE html>
<html lang="en"><head><meta charset="utf-8"><meta content="width=device-width, initial-scale=1.0" name="viewport"><meta content="summary" name="twitter:card"><meta content="카드로도 다 못 보면 링크 고고" name="twitter:title"><meta content="@bquote_bot" name="twitter:creator"><meta content="노 대통령은 공직자를 기용할 때도 그가 쓴 글을 가져와보라고 했다. 저서나 신문 기고글을 찾아보고 판단했다. {대통령의 글쓰기}" name="twitter:description"><link href="http://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet"><title>인용구</title></head><body><div class="container"><div class="row"><div class="col-md-6 col-md-offset-3"><div class="page-header"><h1>인용구 <small><a href="http://twitter.com/@bquote_bot" target="blank">@bquote_bot</a></small></h1></div></div></div><div class="row"><div class="col-md-6 col-md-offset-3"><p class="lead">노 대통령은 공직자를 기용할 때도 그가 쓴 글을 가져와보라고 했다. 저서나 신문 기고글을 찾아보고 판단했다. {대통령의 글쓰기}</p></div></div></div></body></html> |
ePF_API_phpdoc-0.1.x-dev/classes/ep_RCL_Projekt_Etap.html | veriKami/ePF_API_doc | <!DOCTYPE html><html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;">
<meta charset="utf-8">
<title>phpDocumentor » \ep_RCL_Projekt_Etap</title>
<meta name="author" content="Mike van Riel">
<meta name="description" content="">
<link href="../css/template.css" rel="stylesheet" media="all">
<script src="../js/jquery-1.7.1.min.js" type="text/javascript"></script><script src="../js/jquery-ui-1.8.2.custom.min.js" type="text/javascript"></script><script src="../js/jquery.mousewheel.min.js" type="text/javascript"></script><script src="../js/bootstrap.js" type="text/javascript"></script><script src="../js/template.js" type="text/javascript"></script><script src="../js/prettify/prettify.min.js" type="text/javascript"></script><link rel="shortcut icon" href="../img/favicon.ico">
<link rel="apple-touch-icon" href="../img/apple-touch-icon.png">
<link rel="apple-touch-icon" sizes="72x72" href="../img/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="114x114" href="../img/apple-touch-icon-114x114.png">
</head>
<body>
<div class="navbar navbar-fixed-top">
<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="../index.html">phpDocumentor</a><div class="nav-collapse"><ul class="nav">
<li class="dropdown">
<a href="#api" class="dropdown-toggle" data-toggle="dropdown">
API Documentation <b class="caret"></b></a><ul class="dropdown-menu"></ul>
</li>
<li class="dropdown" id="charts-menu">
<a href="#charts" class="dropdown-toggle" data-toggle="dropdown">
Charts <b class="caret"></b></a><ul class="dropdown-menu"><li><a href="../graph_class.html"><i class="icon-list-alt"></i> Class hierarchy diagram</a></li></ul>
</li>
<li class="dropdown" id="reports-menu">
<a href="#reports" class="dropdown-toggle" data-toggle="dropdown">
Reports <b class="caret"></b></a><ul class="dropdown-menu">
<li><a href="../errors.html"><i class="icon-remove-sign"></i> Errors
<span class="label label-info">961</span></a></li>
<li><a href="../markers.html"><i class="icon-map-marker"></i> Markers
<ul><li>fixme
<span class="label label-info">16</span>
</li></ul></a></li>
<li><a href="../deprecated.html"><i class="icon-stop"></i> Deprecated elements
<span class="label label-info">0</span></a></li>
</ul>
</li>
</ul></div>
</div></div>
<div class="go_to_top"><a href="#___" style="color: inherit">Back to top <i class="icon-upload icon-white"></i></a></div>
</div>
<div id="___" class="container">
<noscript><div class="alert alert-warning">
Javascript is disabled; several features are only available
if Javascript is enabled.
</div></noscript>
<div class="row">
<div class="span4">
<span class="btn-group visibility" data-toggle="buttons-checkbox"><button class="btn public active" title="Show public elements">Public</button><button class="btn protected" title="Show protected elements">Protected</button><button class="btn private" title="Show private elements">Private</button><button class="btn inherited active" title="Show inherited elements">Inherited</button></span><div class="btn-group view pull-right" data-toggle="buttons-radio">
<button class="btn details" title="Show descriptions and method names"><i class="icon-list"></i></button><button class="btn simple" title="Show only method names"><i class="icon-align-justify"></i></button>
</div>
<ul class="side-nav nav nav-list">
<li class="nav-header">
<i class="icon-custom icon-method"></i> Methods
<ul>
<li class="method public inherited"><a href="#method___construct" title="__construct :: "><span class="description">__construct()
</span><pre>__construct()</pre></a></li>
<li class="method public "><a href="#method___toString" title="__toString :: "><span class="description">__toString()
</span><pre>__toString()</pre></a></li>
<li class="method public inherited"><a href="#method_call" title="call :: "><span class="description">call()
</span><pre>call()</pre></a></li>
<li class="method public "><a href="#method_getDataStruct" title="getDataStruct :: "><span class="description">getDataStruct()
</span><pre>getDataStruct()</pre></a></li>
<li class="method public inherited"><a href="#method_getDescription" title="getDescription :: "><span class="description">getDescription()
</span><pre>getDescription()</pre></a></li>
<li class="method public inherited"><a href="#method_getTitle" title="getTitle :: "><span class="description">getTitle()
</span><pre>getTitle()</pre></a></li>
<li class="method public inherited"><a href="#method_init" title="init :: "><span class="description">init()
</span><pre>init()</pre></a></li>
<li class="method public inherited"><a href="#method_isloaded" title="isloaded :: "><span class="description">isloaded()
</span><pre>isloaded()</pre></a></li>
<li class="method public inherited"><a href="#method_load" title="load :: "><span class="description">load()
</span><pre>load()</pre></a></li>
<li class="method public inherited"><a href="#method_load_from_db" title="load_from_db :: "><span class="description">load_from_db()
</span><pre>load_from_db()</pre></a></li>
<li class="method public inherited"><a href="#method_load_layer" title="load_layer :: "><span class="description">load_layer()
</span><pre>load_layer()</pre></a></li>
<li class="method public inherited"><a href="#method_parse_data" title="parse_data :: "><span class="description">parse_data()
</span><pre>parse_data()</pre></a></li>
</ul>
</li>
<li class="nav-header private">» Private
<ul>
<li class="method private inherited"><a href="#method___call" title="__call :: Implements get_* getters for trivial cases."><span class="description">Implements get_* getters for trivial cases.</span><pre>__call()</pre></a></li>
<li class="method private inherited"><a href="#method_generate_sig" title="generate_sig :: "><span class="description">generate_sig()
</span><pre>generate_sig()</pre></a></li>
</ul>
</li>
<li class="nav-header">
<i class="icon-custom icon-property"></i> Properties
<ul>
<li class="property public "><a href="#property__aliases" title="$_aliases :: "><span class="description"></span><pre>$_aliases</pre></a></li>
<li class="property public inherited"><a href="#property__version" title="$_version :: "><span class="description"></span><pre>$_version</pre></a></li>
<li class="property public inherited"><a href="#property_data" title="$data :: "><span class="description"></span><pre>$data</pre></a></li>
<li class="property public inherited"><a href="#property_id" title="$id :: "><span class="description"></span><pre>$id</pre></a></li>
<li class="property public inherited"><a href="#property_layers" title="$layers :: "><span class="description"></span><pre>$layers</pre></a></li>
<li class="property public inherited"><a href="#property_server_address" title="$server_address :: "><span class="description"></span><pre>$server_address</pre></a></li>
</ul>
</li>
<li class="nav-header private">» Private
<ul>
<li class="property private inherited"><a href="#property__key" title="$_key :: "><span class="description"></span><pre>$_key</pre></a></li>
<li class="property private inherited"><a href="#property__secret" title="$_secret :: "><span class="description"></span><pre>$_secret</pre></a></li>
<li class="property private inherited"><a href="#property_loaded" title="$loaded :: "><span class="description"></span><pre>$loaded</pre></a></li>
</ul>
</li>
<li class="nav-header">
<i class="icon-custom icon-constant"></i> Constants
<ul>
<li class="constant inherited"><a href="#constant_TYPE_ARRAY" title="TYPE_ARRAY :: "><span class="description">TYPE_ARRAY</span><pre>TYPE_ARRAY</pre></a></li>
<li class="constant inherited"><a href="#constant_TYPE_BOOLEAN" title="TYPE_BOOLEAN :: "><span class="description">TYPE_BOOLEAN</span><pre>TYPE_BOOLEAN</pre></a></li>
<li class="constant inherited"><a href="#constant_TYPE_FLOAT" title="TYPE_FLOAT :: "><span class="description">TYPE_FLOAT</span><pre>TYPE_FLOAT</pre></a></li>
<li class="constant inherited"><a href="#constant_TYPE_INT" title="TYPE_INT :: "><span class="description">TYPE_INT</span><pre>TYPE_INT</pre></a></li>
<li class="constant inherited"><a href="#constant_TYPE_METHOD" title="TYPE_METHOD :: "><span class="description">TYPE_METHOD</span><pre>TYPE_METHOD</pre></a></li>
<li class="constant inherited"><a href="#constant_TYPE_OBJECT" title="TYPE_OBJECT :: "><span class="description">TYPE_OBJECT</span><pre>TYPE_OBJECT</pre></a></li>
<li class="constant inherited"><a href="#constant_TYPE_STRING" title="TYPE_STRING :: "><span class="description">TYPE_STRING</span><pre>TYPE_STRING</pre></a></li>
</ul>
</li>
</ul>
</div>
<div class="span8">
<a id="\ep_RCL_Projekt_Etap"></a><ul class="breadcrumb">
<li>
<a href="../index.html"><i class="icon-custom icon-class"></i></a><span class="divider">\</span>
</li>
<li><a href="../namespaces/global.html">global</a></li>
<li class="active">
<span class="divider">\</span><a href="../classes/ep_RCL_Projekt_Etap.html">ep_RCL_Projekt_Etap</a>
</li>
</ul>
<div class="element class"><div class="details">
<h3>
<i class="icon-custom icon-method"></i> Methods</h3>
<a id="method___construct"></a><div class="element clickable method public method___construct" data-toggle="collapse" data-target=".method___construct .collapse">
<h2>__construct()
</h2>
<pre>__construct($data, $complex) </pre>
<div class="labels"><span class="label">Inherited</span></div>
<div class="row collapse"><div class="detail-description">
<div class="long_description"></div>
<table class="table table-bordered"><tr>
<th>inherited_from</th>
<td>\ep_Object::__construct()</td>
</tr></table>
<h3>Parameters</h3>
<div class="subelement argument"><h4>$data</h4></div>
<div class="subelement argument"><h4>$complex</h4></div>
</div></div>
</div>
<a id="method___toString"></a><div class="element clickable method public method___toString" data-toggle="collapse" data-target=".method___toString .collapse">
<h2>__toString()
</h2>
<pre>__toString() : string</pre>
<div class="labels"></div>
<div class="row collapse"><div class="detail-description">
<div class="long_description"></div>
<h3>Returns</h3>
<div class="subelement response"><code>string</code></div>
</div></div>
</div>
<a id="method_call"></a><div class="element clickable method public method_call" data-toggle="collapse" data-target=".method_call .collapse">
<h2>call()
</h2>
<pre>call($service, $params) </pre>
<div class="labels"><span class="label">Inherited</span></div>
<div class="row collapse"><div class="detail-description">
<div class="long_description"></div>
<table class="table table-bordered">
<tr>
<th>inherited_from</th>
<td>\ep_Api::call()</td>
</tr>
<tr>
<th>inherited_from</th>
<td>\ep_Object::call()</td>
</tr>
</table>
<h3>Parameters</h3>
<div class="subelement argument"><h4>$service</h4></div>
<div class="subelement argument"><h4>$params</h4></div>
</div></div>
</div>
<a id="method_getDataStruct"></a><div class="element clickable method public method_getDataStruct" data-toggle="collapse" data-target=".method_getDataStruct .collapse">
<h2>getDataStruct()
</h2>
<pre>getDataStruct() : array</pre>
<div class="labels"></div>
<div class="row collapse"><div class="detail-description">
<div class="long_description"></div>
<table class="table table-bordered"><tr>
<th>see</th>
<td><a href="classes.ep_Object.html#%5Cep_Object::getDataStruct()">\ep_Object::getDataStruct()</a></td>
</tr></table>
<h3>Returns</h3>
<div class="subelement response">
<code>array</code>of definitions of fields in data field. Array keys are names and values are constants from ep_Object::TYPE_*. All defined fields are availible by get_{NAME} getter methods and should be read this way.</div>
</div></div>
</div>
<a id="method_getDescription"></a><div class="element clickable method public method_getDescription" data-toggle="collapse" data-target=".method_getDescription .collapse">
<h2>getDescription()
</h2>
<pre>getDescription() </pre>
<div class="labels"><span class="label">Inherited</span></div>
<div class="row collapse"><div class="detail-description">
<div class="long_description"></div>
<table class="table table-bordered"><tr>
<th>inherited_from</th>
<td>\ep_Object::getDescription()</td>
</tr></table>
</div></div>
</div>
<a id="method_getTitle"></a><div class="element clickable method public method_getTitle" data-toggle="collapse" data-target=".method_getTitle .collapse">
<h2>getTitle()
</h2>
<pre>getTitle() </pre>
<div class="labels"><span class="label">Inherited</span></div>
<div class="row collapse"><div class="detail-description">
<div class="long_description"></div>
<table class="table table-bordered"><tr>
<th>inherited_from</th>
<td>\ep_Object::getTitle()</td>
</tr></table>
</div></div>
</div>
<a id="method_init"></a><div class="element clickable method public method_init" data-toggle="collapse" data-target=".method_init .collapse">
<h2>init()
</h2>
<pre>init() : <a href="../classes/ep_Api.html">\ep_Api</a></pre>
<div class="labels">
<span class="label">Inherited</span><span class="label">Static</span>
</div>
<div class="row collapse"><div class="detail-description">
<div class="long_description"></div>
<table class="table table-bordered">
<tr>
<th>inherited_from</th>
<td>\ep_Api::init()</td>
</tr>
<tr>
<th>inherited_from</th>
<td>\ep_Object::init()</td>
</tr>
</table>
<h3>Returns</h3>
<div class="subelement response"><code><a href="../classes/ep_Api.html">\ep_Api</a></code></div>
</div></div>
</div>
<a id="method_isloaded"></a><div class="element clickable method public method_isloaded" data-toggle="collapse" data-target=".method_isloaded .collapse">
<h2>isloaded()
</h2>
<pre>isloaded() </pre>
<div class="labels"><span class="label">Inherited</span></div>
<div class="row collapse"><div class="detail-description">
<div class="long_description"></div>
<table class="table table-bordered"><tr>
<th>inherited_from</th>
<td>\ep_Object::isloaded()</td>
</tr></table>
</div></div>
</div>
<a id="method_load"></a><div class="element clickable method public method_load" data-toggle="collapse" data-target=".method_load .collapse">
<h2>load()
</h2>
<pre>load() </pre>
<div class="labels"><span class="label">Inherited</span></div>
<div class="row collapse"><div class="detail-description">
<div class="long_description"></div>
<table class="table table-bordered"><tr>
<th>inherited_from</th>
<td>\ep_Object::load()</td>
</tr></table>
</div></div>
</div>
<a id="method_load_from_db"></a><div class="element clickable method public method_load_from_db" data-toggle="collapse" data-target=".method_load_from_db .collapse">
<h2>load_from_db()
</h2>
<pre>load_from_db() </pre>
<div class="labels"><span class="label">Inherited</span></div>
<div class="row collapse"><div class="detail-description">
<div class="long_description"></div>
<table class="table table-bordered"><tr>
<th>inherited_from</th>
<td>\ep_Object::load_from_db()</td>
</tr></table>
</div></div>
</div>
<a id="method_load_layer"></a><div class="element clickable method public method_load_layer" data-toggle="collapse" data-target=".method_load_layer .collapse">
<h2>load_layer()
</h2>
<pre>load_layer($layer, $params) </pre>
<div class="labels"><span class="label">Inherited</span></div>
<div class="row collapse"><div class="detail-description">
<div class="long_description"></div>
<table class="table table-bordered"><tr>
<th>inherited_from</th>
<td>\ep_Object::load_layer()</td>
</tr></table>
<h3>Parameters</h3>
<div class="subelement argument"><h4>$layer</h4></div>
<div class="subelement argument"><h4>$params</h4></div>
</div></div>
</div>
<a id="method_parse_data"></a><div class="element clickable method public method_parse_data" data-toggle="collapse" data-target=".method_parse_data .collapse">
<h2>parse_data()
</h2>
<pre>parse_data($data) </pre>
<div class="labels"><span class="label">Inherited</span></div>
<div class="row collapse"><div class="detail-description">
<div class="long_description"></div>
<table class="table table-bordered"><tr>
<th>inherited_from</th>
<td>\ep_Object::parse_data()</td>
</tr></table>
<h3>Parameters</h3>
<div class="subelement argument"><h4>$data</h4></div>
</div></div>
</div>
<a id="method___call"></a><div class="element clickable method private method___call" data-toggle="collapse" data-target=".method___call .collapse">
<h2>Implements get_* getters for trivial cases.</h2>
<pre>__call(string $name, array $arguments) </pre>
<div class="labels"><span class="label">Inherited</span></div>
<div class="row collapse"><div class="detail-description">
<div class="long_description"><p>Complex cases should be handled by direct method implementation.</p></div>
<table class="table table-bordered"><tr>
<th>inherited_from</th>
<td>\ep_Object::__call()</td>
</tr></table>
<h3>Parameters</h3>
<div class="subelement argument">
<h4>$name</h4>
<code>string</code>
</div>
<div class="subelement argument">
<h4>$arguments</h4>
<code>array</code>
</div>
<h3>Exceptions</h3>
<table class="table table-bordered">
<tr>
<th><code><a href="http://php.net/manual/en/class.badmethodcallexception.php">\BadMethodCallException</a></code></th>
<td></td>
</tr>
<tr>
<th><code><a href="http://php.net/manual/en/class.unexpectedvalueexception.php">\UnexpectedValueException</a></code></th>
<td></td>
</tr>
</table>
</div></div>
</div>
<a id="method_generate_sig"></a><div class="element clickable method private method_generate_sig" data-toggle="collapse" data-target=".method_generate_sig .collapse">
<h2>generate_sig()
</h2>
<pre>generate_sig(array $params) : string</pre>
<div class="labels"><span class="label">Inherited</span></div>
<div class="row collapse"><div class="detail-description">
<div class="long_description"></div>
<table class="table table-bordered">
<tr>
<th>inherited_from</th>
<td>\ep_Api::generate_sig()</td>
</tr>
<tr>
<th>inherited_from</th>
<td>\ep_Object::generate_sig()</td>
</tr>
</table>
<h3>Parameters</h3>
<div class="subelement argument">
<h4>$params</h4>
<code>array</code>
</div>
<h3>Returns</h3>
<div class="subelement response"><code>string</code></div>
</div></div>
</div>
<h3>
<i class="icon-custom icon-property"></i> Properties</h3>
<a id="property__aliases"> </a><div class="element clickable property public property__aliases" data-toggle="collapse" data-target=".property__aliases .collapse">
<h2></h2>
<pre>$_aliases </pre>
<div class="labels"></div>
<div class="row collapse"><div class="detail-description"><div class="long_description"></div></div></div>
</div>
<a id="property__version"> </a><div class="element clickable property public property__version" data-toggle="collapse" data-target=".property__version .collapse">
<h2></h2>
<pre>$_version </pre>
<div class="labels"><span class="label">Inherited</span></div>
<div class="row collapse"><div class="detail-description">
<div class="long_description"></div>
<table class="table table-bordered">
<tr>
<th>inherited_from</th>
<td>\ep_Api::$$_version</td>
</tr>
<tr>
<th>inherited_from</th>
<td>\ep_Object::$$_version</td>
</tr>
</table>
</div></div>
</div>
<a id="property_data"> </a><div class="element clickable property public property_data" data-toggle="collapse" data-target=".property_data .collapse">
<h2></h2>
<pre>$data </pre>
<div class="labels"><span class="label">Inherited</span></div>
<div class="row collapse"><div class="detail-description">
<div class="long_description"></div>
<table class="table table-bordered"><tr>
<th>inherited_from</th>
<td>\ep_Object::$$data</td>
</tr></table>
</div></div>
</div>
<a id="property_id"> </a><div class="element clickable property public property_id" data-toggle="collapse" data-target=".property_id .collapse">
<h2></h2>
<pre>$id </pre>
<div class="labels"><span class="label">Inherited</span></div>
<div class="row collapse"><div class="detail-description">
<div class="long_description"></div>
<table class="table table-bordered"><tr>
<th>inherited_from</th>
<td>\ep_Object::$$id</td>
</tr></table>
</div></div>
</div>
<a id="property_layers"> </a><div class="element clickable property public property_layers" data-toggle="collapse" data-target=".property_layers .collapse">
<h2></h2>
<pre>$layers </pre>
<div class="labels"><span class="label">Inherited</span></div>
<div class="row collapse"><div class="detail-description">
<div class="long_description"></div>
<table class="table table-bordered"><tr>
<th>inherited_from</th>
<td>\ep_Object::$$layers</td>
</tr></table>
</div></div>
</div>
<a id="property_server_address"> </a><div class="element clickable property public property_server_address" data-toggle="collapse" data-target=".property_server_address .collapse">
<h2></h2>
<pre>$server_address </pre>
<div class="labels"><span class="label">Inherited</span></div>
<div class="row collapse"><div class="detail-description">
<div class="long_description"></div>
<table class="table table-bordered">
<tr>
<th>inherited_from</th>
<td>\ep_Api::$$server_address</td>
</tr>
<tr>
<th>inherited_from</th>
<td>\ep_Object::$$server_address</td>
</tr>
</table>
</div></div>
</div>
<a id="property__key"> </a><div class="element clickable property private property__key" data-toggle="collapse" data-target=".property__key .collapse">
<h2></h2>
<pre>$_key </pre>
<div class="labels"><span class="label">Inherited</span></div>
<div class="row collapse"><div class="detail-description">
<div class="long_description"></div>
<table class="table table-bordered">
<tr>
<th>inherited_from</th>
<td>\ep_Api::$$_key</td>
</tr>
<tr>
<th>inherited_from</th>
<td>\ep_Object::$$_key</td>
</tr>
</table>
</div></div>
</div>
<a id="property__secret"> </a><div class="element clickable property private property__secret" data-toggle="collapse" data-target=".property__secret .collapse">
<h2></h2>
<pre>$_secret </pre>
<div class="labels"><span class="label">Inherited</span></div>
<div class="row collapse"><div class="detail-description">
<div class="long_description"></div>
<table class="table table-bordered">
<tr>
<th>inherited_from</th>
<td>\ep_Api::$$_secret</td>
</tr>
<tr>
<th>inherited_from</th>
<td>\ep_Object::$$_secret</td>
</tr>
</table>
</div></div>
</div>
<a id="property_loaded"> </a><div class="element clickable property private property_loaded" data-toggle="collapse" data-target=".property_loaded .collapse">
<h2></h2>
<pre>$loaded </pre>
<div class="labels"><span class="label">Inherited</span></div>
<div class="row collapse"><div class="detail-description">
<div class="long_description"></div>
<table class="table table-bordered"><tr>
<th>inherited_from</th>
<td>\ep_Object::$$loaded</td>
</tr></table>
</div></div>
</div>
<h3>
<i class="icon-custom icon-constant"></i> Constants</h3>
<a id="constant_TYPE_ARRAY"> </a><div class="element clickable constant constant_TYPE_ARRAY" data-toggle="collapse" data-target=".constant_TYPE_ARRAY .collapse">
<h2>TYPE_ARRAY</h2>
<pre>TYPE_ARRAY </pre>
<div class="labels"><span class="label">Inherited</span></div>
<div class="row collapse"><div class="detail-description">
<div class="long_description"></div>
<table class="table table-bordered"><tr>
<th>inherited_from</th>
<td>\ep_Object::TYPE_ARRAY</td>
</tr></table>
</div></div>
</div>
<a id="constant_TYPE_BOOLEAN"> </a><div class="element clickable constant constant_TYPE_BOOLEAN" data-toggle="collapse" data-target=".constant_TYPE_BOOLEAN .collapse">
<h2>TYPE_BOOLEAN</h2>
<pre>TYPE_BOOLEAN </pre>
<div class="labels"><span class="label">Inherited</span></div>
<div class="row collapse"><div class="detail-description">
<div class="long_description"></div>
<table class="table table-bordered"><tr>
<th>inherited_from</th>
<td>\ep_Object::TYPE_BOOLEAN</td>
</tr></table>
</div></div>
</div>
<a id="constant_TYPE_FLOAT"> </a><div class="element clickable constant constant_TYPE_FLOAT" data-toggle="collapse" data-target=".constant_TYPE_FLOAT .collapse">
<h2>TYPE_FLOAT</h2>
<pre>TYPE_FLOAT </pre>
<div class="labels"><span class="label">Inherited</span></div>
<div class="row collapse"><div class="detail-description">
<div class="long_description"></div>
<table class="table table-bordered"><tr>
<th>inherited_from</th>
<td>\ep_Object::TYPE_FLOAT</td>
</tr></table>
</div></div>
</div>
<a id="constant_TYPE_INT"> </a><div class="element clickable constant constant_TYPE_INT" data-toggle="collapse" data-target=".constant_TYPE_INT .collapse">
<h2>TYPE_INT</h2>
<pre>TYPE_INT </pre>
<div class="labels"><span class="label">Inherited</span></div>
<div class="row collapse"><div class="detail-description">
<div class="long_description"></div>
<table class="table table-bordered"><tr>
<th>inherited_from</th>
<td>\ep_Object::TYPE_INT</td>
</tr></table>
</div></div>
</div>
<a id="constant_TYPE_METHOD"> </a><div class="element clickable constant constant_TYPE_METHOD" data-toggle="collapse" data-target=".constant_TYPE_METHOD .collapse">
<h2>TYPE_METHOD</h2>
<pre>TYPE_METHOD </pre>
<div class="labels"><span class="label">Inherited</span></div>
<div class="row collapse"><div class="detail-description">
<div class="long_description"></div>
<table class="table table-bordered"><tr>
<th>inherited_from</th>
<td>\ep_Object::TYPE_METHOD</td>
</tr></table>
</div></div>
</div>
<a id="constant_TYPE_OBJECT"> </a><div class="element clickable constant constant_TYPE_OBJECT" data-toggle="collapse" data-target=".constant_TYPE_OBJECT .collapse">
<h2>TYPE_OBJECT</h2>
<pre>TYPE_OBJECT </pre>
<div class="labels"><span class="label">Inherited</span></div>
<div class="row collapse"><div class="detail-description">
<div class="long_description"></div>
<table class="table table-bordered"><tr>
<th>inherited_from</th>
<td>\ep_Object::TYPE_OBJECT</td>
</tr></table>
</div></div>
</div>
<a id="constant_TYPE_STRING"> </a><div class="element clickable constant constant_TYPE_STRING" data-toggle="collapse" data-target=".constant_TYPE_STRING .collapse">
<h2>TYPE_STRING</h2>
<pre>TYPE_STRING </pre>
<div class="labels"><span class="label">Inherited</span></div>
<div class="row collapse"><div class="detail-description">
<div class="long_description"></div>
<table class="table table-bordered"><tr>
<th>inherited_from</th>
<td>\ep_Object::TYPE_STRING</td>
</tr></table>
</div></div>
</div>
</div></div>
</div>
</div>
<div class="row"><footer class="span12">
Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br>
Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a12</a> and<br>
generated on 2013-02-15T11:46:48+01:00.<br></footer></div>
</div>
</body>
</html>
|
presentation/opendata/index.html | hsr-ba-fs15-dat/ba-doc | <!doctype html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>OpenDataHub</title>
<meta name="description" content="OpenDataHub - A Hub For Your Open Data"/>
<meta name="author" content="R. Liebi, F. Scala, C. Hüsler"/>
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, minimal-ui"/>
<link rel="stylesheet" href="custom.css"/>
<link rel="stylesheet" href="reveal.js-3.0.0/css/reveal.css"/>
<link rel="stylesheet" href="reveal.js-3.0.0/css/theme/beige.css" id="theme"/>
<link rel="stylesheet" href="reveal.js-3.0.0/lib/css/zenburn.css" />
<!-- Printing and PDF exports -->
<script>
var link = document.createElement( 'link' );
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = window.location.search.match( /print-pdf/gi ) ? 'reveal.js-3.0.0/css/print/pdf.css' : 'reveal.js-3.0.0/css/print/paper.css';
document.getElementsByTagName( 'head' )[0].appendChild( link );
</script>
<!--[if lt IE 9]>
<script src="lib/js/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<div class="reveal">
<!-- Any section element inside of this container is displayed as a slide -->
<div class="slides">
<section>
<div>
<img style="float:left; width:5em; border:none; box-shadow:none; background: none" src="img/hsr-logo.png" />
<img style="float:right; width:5em; border:none; box-shadow:none; background: none" src="img/ifs-logo.png" />
</div>
<h1 style="clear:both">
<img style="width: 0.8em; border:none; box-shadow:none; background: none" src="img/logo-odh.png" />
OpenDataHub</h1>
<p>Teilen, Beziehen, und Konvertieren von Daten</p>
<p><small>Bachelorarbeit Informatik Frühjahrssemester 2015</small></p>
<p><small>Remo Liebi, Fabio Scala, Christoph Hüsler</small></p>
</section>
<section>
<h2>Das Team</h2>
<span class="fragment" style="float: left;">
<img style="height: 6em;" src="img/rliebi.jpg" />
<p>Remo Liebi</p>
<p><small>Teilzeit, Freelancer</small></p>
</span>
<span class="fragment" style="float: left; margin-left: 15%;">
<img style="height: 6em;" src="img/chuesler.jpg" />
<p>Christoph Hüsler</p>
<p><small>Teilzeit, Xinventa GmbH</small></p>
</span>
<span class="fragment" style="float: left; margin-left: 15%;">
<img style="height: 6em;" src="img/fscala.jpg" />
<p>Fabio Scala</p>
<p><small>Teilzeit, Swisscom AG</small></p>
</span>
</section>
<section>
<h2>Inhalt</h2>
<ul>
<li>Motivation und Aufgabenstellung</li><!-- chuesler -->
<li>Resultate</li><!-- chuesler -->
<li>Demo</li><!-- rliebi -->
<li>Fragen & Diskussion</li><!-- all -->
</ul>
</section>
<section>
<h2>Motivation</h2>
<ul>
<li class="fragment">Methodenfreiheit → unterschiedliche Software</li>
<li class="fragment">Viele Kommunikationspartner</li>
<li class="fragment">Unterschiedliche Schemata</li>
</ul>
<p class="fragment">→ Datenaustausch schwierig</p>
</section>
<section>
<h2>Motivation</h2>
<img src="img/situation-current.png" />
</section>
<section>
<h2>Aufgabenstellung</h2>
<q>[...] zentrales <b>Portal</b> (= "OpenDataHub") [...], über dieses sich <b>Daten offen teilen</b>, <b>beziehen</b> und <b>konvertieren</b> lassen wobei sich die Beteiligten <b>nicht um die Formatkonversion und Schematransformation kümmern</b> müssen: Die Datenlieferanten liefern ihre Daten in
ihrem Format und Schema und die Nutzer beziehen es ihrerseits, wie sie wollen - vorausgesetzt,
die entsprechende Formatkonversion und Schematransformation existiert.</q>
</section>
<section>
<h2>Aufgabenstellung</h2>
<img src="img/situation-target.png" />
</section>
<section>
<h2>Use Cases</h2>
<ul>
<li class="fragment">Postadressen
<ul>
<li class="fragment">Schematransformation</li>
</ul>
</li>
<li class="fragment">Gebäudeadressen
<ul>
<li class="fragment">Integration mehrerer Datenquellen</li>
<li class="fragment">Verknüpfen von Adressbuch mit dazugehörenden Gebäudeeingängen aus MOPublic (Basel)</li>
</ul>
</li>
<li class="fragment">TROBDB: Verkehrshindernis-Datenbank
<ul>
<li class="fragment">Integration diverser Datenquellen</li>
</ul>
</li>
</ul>
</section>
<section>
<h2>Resultate</h2>
<ul>
<li>Web-Applikation
<ul>
<li class="fragment">Datenaustausch: Upload von Dateien oder auf Basis von URLs (z.B. WFS)</li>
<li class="fragment">Automatische Format-Konversion</li>
<li class="fragment">Transformationen per ODHQL, einem SQL-Subset</li>
</ul>
</li>
</ul>
</section>
<section>
<h2>Demo</h2>
</section>
<section>
<h1>Fragen & Diskussion</h1>
</section>
</div>
</div>
<script src="reveal.js-3.0.0/lib/js/head.min.js"></script>
<script src="reveal.js-3.0.0/js/reveal.js"></script>
<script>
// Full list of configuration options available here:
// https://github.com/hakimel/reveal.js#configuration
Reveal.initialize({
controls: true,
progress: true,
history: true,
center: true,
theme: Reveal.getQueryHash().theme, // available themes are in /css/theme
transition: Reveal.getQueryHash().transition || 'default', // default/cube/page/concave/zoom/linear/fade/none
// Parallax scrolling
// parallaxBackgroundImage: 'https://s3.amazonaws.com/hakim-static/reveal-js/reveal-parallax-1.jpg',
// parallaxBackgroundSize: '2100px 900px',
// Optional libraries used to extend on reveal.js
dependencies: [
{ src: 'reveal.js-3.0.0/lib/js/classList.js', condition: function() { return !document.body.classList; } },
{ src: 'reveal.js-3.0.0/plugin/markdown/marked.js', condition: function() { return !!document.querySelector('[data-markdown]'); } },
{ src: 'reveal.js-3.0.0/plugin/markdown/markdown.js',
condition: function() { return !!document.querySelector('[data-markdown]'); } },
{ src: 'reveal.js-3.0.0/plugin/highlight/highlight.js', async: true,
callback: function() { hljs.initHighlightingOnLoad(); } },
{ src: 'reveal.js-3.0.0/plugin/zoom-js/zoom.js', async: true, condition: function() { return !!document.body.classList; } },
{ src: 'reveal.js-3.0.0/plugin/notes/notes.js', async: true, condition: function() { return !!document.body.classList; } }
]
});
</script>
</body>
</html>
|
deps/boost/doc/html/xpressive/reference.html | laborautonomo/poedit | <html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>Reference</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="The Boost C++ Libraries BoostBook Documentation Subset">
<link rel="up" href="../xpressive.html" title="Chapter 38. Boost.Xpressive">
<link rel="prev" href="user_s_guide.html" title="User's Guide">
<link rel="next" href="../boost/xpressive/basic_regex.html" title="Struct template basic_regex">
</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="user_s_guide.html"><img src="../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../xpressive.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="../boost/xpressive/basic_regex.html"><img src="../../../doc/src/images/next.png" alt="Next"></a>
</div>
<div class="section">
<div class="titlepage"><div><div><h2 class="title" style="clear: both">
<a name="xpressive.reference"></a>Reference</h2></div></div></div>
<div class="toc"><dl class="toc">
<dt><span class="section"><a href="reference.html#header.boost.xpressive.basic_regex_hpp">Header <boost/xpressive/basic_regex.hpp></a></span></dt>
<dt><span class="section"><a href="reference.html#header.boost.xpressive.match_results_hpp">Header <boost/xpressive/match_results.hpp></a></span></dt>
<dt><span class="section"><a href="reference.html#header.boost.xpressive.regex_actions_hpp">Header <boost/xpressive/regex_actions.hpp></a></span></dt>
<dt><span class="section"><a href="reference.html#header.boost.xpressive.regex_algorithms_hpp">Header <boost/xpressive/regex_algorithms.hpp></a></span></dt>
<dt><span class="section"><a href="reference.html#header.boost.xpressive.regex_compiler_hpp">Header <boost/xpressive/regex_compiler.hpp></a></span></dt>
<dt><span class="section"><a href="reference.html#header.boost.xpressive.regex_constants_hpp">Header <boost/xpressive/regex_constants.hpp></a></span></dt>
<dt><span class="section"><a href="reference.html#header.boost.xpressive.regex_error_hpp">Header <boost/xpressive/regex_error.hpp></a></span></dt>
<dt><span class="section"><a href="reference.html#header.boost.xpressive.regex_iterator_hpp">Header <boost/xpressive/regex_iterator.hpp></a></span></dt>
<dt><span class="section"><a href="reference.html#header.boost.xpressive.regex_primitives_hpp">Header <boost/xpressive/regex_primitives.hpp></a></span></dt>
<dt><span class="section"><a href="reference.html#header.boost.xpressive.regex_token_iterator_hpp">Header <boost/xpressive/regex_token_iterator.hpp></a></span></dt>
<dt><span class="section"><a href="reference.html#header.boost.xpressive.regex_traits_hpp">Header <boost/xpressive/regex_traits.hpp></a></span></dt>
<dt><span class="section"><a href="reference.html#header.boost.xpressive.sub_match_hpp">Header <boost/xpressive/sub_match.hpp></a></span></dt>
<dt><span class="section"><a href="reference.html#header.boost.xpressive.traits.c_regex_traits_hpp">Header <boost/xpressive/traits/c_regex_traits.hpp></a></span></dt>
<dt><span class="section"><a href="reference.html#header.boost.xpressive.traits.cpp_regex_traits_hpp">Header <boost/xpressive/traits/cpp_regex_traits.hpp></a></span></dt>
<dt><span class="section"><a href="reference.html#header.boost.xpressive.traits.null_regex_traits_hpp">Header <boost/xpressive/traits/null_regex_traits.hpp></a></span></dt>
<dt><span class="section"><a href="reference.html#header.boost.xpressive.xpressive_hpp">Header <boost/xpressive/xpressive.hpp></a></span></dt>
<dt><span class="section"><a href="reference.html#header.boost.xpressive.xpressive_dynamic_hpp">Header <boost/xpressive/xpressive_dynamic.hpp></a></span></dt>
<dt><span class="section"><a href="reference.html#header.boost.xpressive.xpressive_fwd_hpp">Header <boost/xpressive/xpressive_fwd.hpp></a></span></dt>
<dt><span class="section"><a href="reference.html#header.boost.xpressive.xpressive_static_hpp">Header <boost/xpressive/xpressive_static.hpp></a></span></dt>
<dt><span class="section"><a href="reference.html#header.boost.xpressive.xpressive_typeof_hpp">Header <boost/xpressive/xpressive_typeof.hpp></a></span></dt>
</dl></div>
<div class="section">
<div class="titlepage"><div><div><h3 class="title">
<a name="header.boost.xpressive.basic_regex_hpp"></a>Header <<a href="../../../boost/xpressive/basic_regex.hpp" target="_top">boost/xpressive/basic_regex.hpp</a>></h3></div></div></div>
<p>Contains the definition of the basic_regex<> class template and its associated helper functions. </p>
<pre class="synopsis"><span class="keyword">namespace</span> <span class="identifier">boost</span> <span class="special">{</span>
<span class="keyword">namespace</span> <span class="identifier">xpressive</span> <span class="special">{</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> BidiIter<span class="special">></span> <span class="keyword">struct</span> <a class="link" href="../boost/xpressive/basic_regex.html" title="Struct template basic_regex">basic_regex</a><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> BidiIter<span class="special">></span>
<span class="keyword">void</span> <a class="link" href="../boost/xpressive/swap_idp167855112.html" title="Function template swap"><span class="identifier">swap</span></a><span class="special">(</span><a class="link" href="../boost/xpressive/basic_regex.html" title="Struct template basic_regex">basic_regex</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="special">&</span><span class="special">,</span> <a class="link" href="../boost/xpressive/basic_regex.html" title="Struct template basic_regex">basic_regex</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="special">&</span><span class="special">)</span><span class="special">;</span>
<span class="special">}</span>
<span class="special">}</span></pre>
</div>
<div class="section">
<div class="titlepage"><div><div><h3 class="title">
<a name="header.boost.xpressive.match_results_hpp"></a>Header <<a href="../../../boost/xpressive/match_results.hpp" target="_top">boost/xpressive/match_results.hpp</a>></h3></div></div></div>
<p>Contains the definition of the match_results type and associated helpers. The match_results type holds the results of a regex_match() or regex_search() operation. </p>
<pre class="synopsis"><span class="keyword">namespace</span> <span class="identifier">boost</span> <span class="special">{</span>
<span class="keyword">namespace</span> <span class="identifier">xpressive</span> <span class="special">{</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> BidiIter<span class="special">></span> <span class="keyword">struct</span> <a class="link" href="../boost/xpressive/match_results.html" title="Struct template match_results">match_results</a><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> BidiIter<span class="special">></span> <span class="keyword">struct</span> <a class="link" href="../boost/xpressive/regex_id_filter_predicate.html" title="Struct template regex_id_filter_predicate">regex_id_filter_predicate</a><span class="special">;</span>
<span class="special">}</span>
<span class="special">}</span></pre>
</div>
<div class="section">
<div class="titlepage"><div><div><h3 class="title">
<a name="header.boost.xpressive.regex_actions_hpp"></a>Header <<a href="../../../boost/xpressive/regex_actions.hpp" target="_top">boost/xpressive/regex_actions.hpp</a>></h3></div></div></div>
<p>Defines the syntax elements of xpressive's action expressions. </p>
<pre class="synopsis">
<a class="link" href="../BOOST_PROTO_LOCAL_MACRO.html" title="Macro BOOST_PROTO_LOCAL_MACRO">BOOST_PROTO_LOCAL_MACRO</a>(N, typename_A, A_const_ref, A_const_ref_a, a)
<a class="link" href="../BOOST_PROTO_LOCAL_a.html" title="Macro BOOST_PROTO_LOCAL_a">BOOST_PROTO_LOCAL_a</a>
<a class="link" href="../BOOST_PROTO_LOCAL_LIMITS.html" title="Macro BOOST_PROTO_LOCAL_LIMITS">BOOST_PROTO_LOCAL_LIMITS</a></pre>
<pre class="synopsis"><span class="keyword">namespace</span> <span class="identifier">boost</span> <span class="special">{</span>
<span class="keyword">namespace</span> <span class="identifier">xpressive</span> <span class="special">{</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> Fun<span class="special">></span> <span class="keyword">struct</span> <a class="link" href="../boost/xpressive/function.html" title="Struct template function">function</a><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> T<span class="special">></span> <span class="keyword">struct</span> <a class="link" href="../boost/xpressive/value.html" title="Struct template value">value</a><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> T<span class="special">></span> <span class="keyword">struct</span> <a class="link" href="../boost/xpressive/reference.html" title="Struct template reference">reference</a><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> T<span class="special">></span> <span class="keyword">struct</span> <a class="link" href="../boost/xpressive/local.html" title="Struct template local">local</a><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> T<span class="special">,</span> <span class="keyword">int</span> I<span class="special">,</span> <span class="keyword">typename</span> Dummy<span class="special">></span> <span class="keyword">struct</span> <a class="link" href="../boost/xpressive/placeholder.html" title="Struct template placeholder">placeholder</a><span class="special">;</span>
<a class="link" href="../boost/function.html" title="Class template function">function</a><span class="special"><</span> <a class="link" href="../boost/xpressive/op/at.html" title="Struct at">op::at</a> <span class="special">></span><span class="special">::</span><span class="identifier">type</span> <span class="keyword">const</span> <a class="link" href="../boost/xpressive/at.html" title="Global at">at</a><span class="special">;</span>
<a class="link" href="../boost/function.html" title="Class template function">function</a><span class="special"><</span> <a class="link" href="../boost/xpressive/op/push.html" title="Struct push">op::push</a> <span class="special">></span><span class="special">::</span><span class="identifier">type</span> <span class="keyword">const</span> <a class="link" href="../boost/xpressive/push.html" title="Global push">push</a><span class="special">;</span>
<a class="link" href="../boost/function.html" title="Class template function">function</a><span class="special"><</span> <a class="link" href="../boost/xpressive/op/push_back.html" title="Struct push_back">op::push_back</a> <span class="special">></span><span class="special">::</span><span class="identifier">type</span> <span class="keyword">const</span> <a class="link" href="../boost/xpressive/push_back.html" title="Global push_back">push_back</a><span class="special">;</span>
<a class="link" href="../boost/function.html" title="Class template function">function</a><span class="special"><</span> <a class="link" href="../boost/xpressive/op/push_front.html" title="Struct push_front">op::push_front</a> <span class="special">></span><span class="special">::</span><span class="identifier">type</span> <span class="keyword">const</span> <a class="link" href="../boost/xpressive/push_front.html" title="Global push_front">push_front</a><span class="special">;</span>
<a class="link" href="../boost/function.html" title="Class template function">function</a><span class="special"><</span> <a class="link" href="../boost/xpressive/op/pop.html" title="Struct pop">op::pop</a> <span class="special">></span><span class="special">::</span><span class="identifier">type</span> <span class="keyword">const</span> <a class="link" href="../boost/xpressive/pop.html" title="Global pop">pop</a><span class="special">;</span>
<a class="link" href="../boost/function.html" title="Class template function">function</a><span class="special"><</span> <a class="link" href="../boost/xpressive/op/pop_back.html" title="Struct pop_back">op::pop_back</a> <span class="special">></span><span class="special">::</span><span class="identifier">type</span> <span class="keyword">const</span> <a class="link" href="../boost/xpressive/pop_back.html" title="Global pop_back">pop_back</a><span class="special">;</span>
<a class="link" href="../boost/function.html" title="Class template function">function</a><span class="special"><</span> <a class="link" href="../boost/xpressive/op/pop_front.html" title="Struct pop_front">op::pop_front</a> <span class="special">></span><span class="special">::</span><span class="identifier">type</span> <span class="keyword">const</span> <a class="link" href="../boost/xpressive/pop_front.html" title="Global pop_front">pop_front</a><span class="special">;</span>
<a class="link" href="../boost/function.html" title="Class template function">function</a><span class="special"><</span> <a class="link" href="../boost/xpressive/op/top.html" title="Struct top">op::top</a> <span class="special">></span><span class="special">::</span><span class="identifier">type</span> <span class="keyword">const</span> <a class="link" href="../boost/xpressive/top.html" title="Global top">top</a><span class="special">;</span>
<a class="link" href="../boost/function.html" title="Class template function">function</a><span class="special"><</span> <a class="link" href="../boost/xpressive/op/back.html" title="Struct back">op::back</a> <span class="special">></span><span class="special">::</span><span class="identifier">type</span> <span class="keyword">const</span> <a class="link" href="../boost/xpressive/back.html" title="Global back">back</a><span class="special">;</span>
<a class="link" href="../boost/function.html" title="Class template function">function</a><span class="special"><</span> <a class="link" href="../boost/xpressive/op/front.html" title="Struct front">op::front</a> <span class="special">></span><span class="special">::</span><span class="identifier">type</span> <span class="keyword">const</span> <a class="link" href="../boost/xpressive/front.html" title="Global front">front</a><span class="special">;</span>
<a class="link" href="../boost/function.html" title="Class template function">function</a><span class="special"><</span> <a class="link" href="../boost/xpressive/op/first.html" title="Struct first">op::first</a> <span class="special">></span><span class="special">::</span><span class="identifier">type</span> <span class="keyword">const</span> <a class="link" href="../boost/xpressive/first.html" title="Global first">first</a><span class="special">;</span>
<a class="link" href="../boost/function.html" title="Class template function">function</a><span class="special"><</span> <a class="link" href="../boost/xpressive/op/second.html" title="Struct second">op::second</a> <span class="special">></span><span class="special">::</span><span class="identifier">type</span> <span class="keyword">const</span> <a class="link" href="../boost/xpressive/second.html" title="Global second">second</a><span class="special">;</span>
<a class="link" href="../boost/function.html" title="Class template function">function</a><span class="special"><</span> <a class="link" href="../boost/xpressive/op/matched.html" title="Struct matched">op::matched</a> <span class="special">></span><span class="special">::</span><span class="identifier">type</span> <span class="keyword">const</span> <a class="link" href="../boost/xpressive/matched.html" title="Global matched">matched</a><span class="special">;</span>
<a class="link" href="../boost/function.html" title="Class template function">function</a><span class="special"><</span> <a class="link" href="../boost/xpressive/op/length.html" title="Struct length">op::length</a> <span class="special">></span><span class="special">::</span><span class="identifier">type</span> <span class="keyword">const</span> <a class="link" href="../boost/xpressive/length.html" title="Global length">length</a><span class="special">;</span>
<a class="link" href="../boost/function.html" title="Class template function">function</a><span class="special"><</span> <a class="link" href="../boost/xpressive/op/str.html" title="Struct str">op::str</a> <span class="special">></span><span class="special">::</span><span class="identifier">type</span> <span class="keyword">const</span> <a class="link" href="../boost/xpressive/str.html" title="Global str">str</a><span class="special">;</span>
<a class="link" href="../boost/function.html" title="Class template function">function</a><span class="special"><</span> <a class="link" href="../boost/xpressive/op/insert.html" title="Struct insert">op::insert</a> <span class="special">></span><span class="special">::</span><span class="identifier">type</span> <span class="keyword">const</span> <a class="link" href="../boost/xpressive/insert.html" title="Global insert">insert</a><span class="special">;</span>
<a class="link" href="../boost/function.html" title="Class template function">function</a><span class="special"><</span> <a class="link" href="../boost/xpressive/op/make_pair.html" title="Struct make_pair">op::make_pair</a> <span class="special">></span><span class="special">::</span><span class="identifier">type</span> <span class="keyword">const</span> <a class="link" href="../boost/xpressive/make_pair.html" title="Global make_pair">make_pair</a><span class="special">;</span>
<a class="link" href="../boost/function.html" title="Class template function">function</a><span class="special"><</span> <a class="link" href="../boost/xpressive/op/unwrap_reference.html" title="Struct unwrap_reference">op::unwrap_reference</a> <span class="special">></span><span class="special">::</span><span class="identifier">type</span> <span class="keyword">const</span> <a class="link" href="../boost/xpressive/unwrap_reference.html" title="Global unwrap_reference">unwrap_reference</a><span class="special">;</span>
<span class="emphasis"><em><span class="identifier">unspecified</span></em></span> <a class="link" href="../boost/xpressive/check.html" title="Global check">check</a><span class="special">;</span>
<span class="emphasis"><em><span class="identifier">unspecified</span></em></span> <a class="link" href="../boost/xpressive/let.html" title="Global let">let</a><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> X2_0<span class="special">,</span> <span class="keyword">typename</span> A0<span class="special">></span> <span class="emphasis"><em><span class="identifier">unspecified</span></em></span> <a class="link" href="../boost/xpressive/as_idp168075944.html" title="Function template as"><span class="identifier">as</span></a><span class="special">(</span><span class="identifier">A0</span> <span class="keyword">const</span> <span class="special">&</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> X2_0<span class="special">,</span> <span class="keyword">typename</span> A0<span class="special">></span> <span class="emphasis"><em><span class="identifier">unspecified</span></em></span> <a class="link" href="../boost/xpressive/static_cast_idp168077592.html" title="Function template static_cast_"><span class="identifier">static_cast_</span></a><span class="special">(</span><span class="identifier">A0</span> <span class="keyword">const</span> <span class="special">&</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> X2_0<span class="special">,</span> <span class="keyword">typename</span> A0<span class="special">></span> <span class="emphasis"><em><span class="identifier">unspecified</span></em></span> <a class="link" href="../boost/xpressive/dynamic_cast_idp168079224.html" title="Function template dynamic_cast_"><span class="identifier">dynamic_cast_</span></a><span class="special">(</span><span class="identifier">A0</span> <span class="keyword">const</span> <span class="special">&</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> X2_0<span class="special">,</span> <span class="keyword">typename</span> A0<span class="special">></span> <span class="emphasis"><em><span class="identifier">unspecified</span></em></span> <a class="link" href="../boost/xpressive/const_cast_idp168080856.html" title="Function template const_cast_"><span class="identifier">const_cast_</span></a><span class="special">(</span><span class="identifier">A0</span> <span class="keyword">const</span> <span class="special">&</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> T<span class="special">></span> <a class="link" href="../boost/xpressive/value.html" title="Struct template value">value</a><span class="special"><</span> <span class="identifier">T</span> <span class="special">></span> <span class="keyword">const</span> <a class="link" href="../boost/xpressive/val.html" title="Function template val"><span class="identifier">val</span></a><span class="special">(</span><span class="identifier">T</span> <span class="keyword">const</span> <span class="special">&</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> T<span class="special">></span> <a class="link" href="../boost/xpressive/reference.html" title="Struct template reference">reference</a><span class="special"><</span> <span class="identifier">T</span> <span class="special">></span> <span class="keyword">const</span> <a class="link" href="../boost/xpressive/ref_idp168083928.html" title="Function template ref"><span class="identifier">ref</span></a><span class="special">(</span><span class="identifier">T</span> <span class="special">&</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> T<span class="special">></span> <a class="link" href="../boost/xpressive/reference.html" title="Struct template reference">reference</a><span class="special"><</span> <span class="identifier">T</span> <span class="keyword">const</span> <span class="special">></span> <span class="keyword">const</span> <a class="link" href="../boost/xpressive/cref_idp168085368.html" title="Function template cref"><span class="identifier">cref</span></a><span class="special">(</span><span class="identifier">T</span> <span class="keyword">const</span> <span class="special">&</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">namespace</span> <span class="identifier">op</span> <span class="special">{</span>
<span class="keyword">struct</span> <a class="link" href="../boost/xpressive/op/at.html" title="Struct at">at</a><span class="special">;</span>
<span class="keyword">struct</span> <a class="link" href="../boost/xpressive/op/push.html" title="Struct push">push</a><span class="special">;</span>
<span class="keyword">struct</span> <a class="link" href="../boost/xpressive/op/push_back.html" title="Struct push_back">push_back</a><span class="special">;</span>
<span class="keyword">struct</span> <a class="link" href="../boost/xpressive/op/push_front.html" title="Struct push_front">push_front</a><span class="special">;</span>
<span class="keyword">struct</span> <a class="link" href="../boost/xpressive/op/pop.html" title="Struct pop">pop</a><span class="special">;</span>
<span class="keyword">struct</span> <a class="link" href="../boost/xpressive/op/pop_back.html" title="Struct pop_back">pop_back</a><span class="special">;</span>
<span class="keyword">struct</span> <a class="link" href="../boost/xpressive/op/pop_front.html" title="Struct pop_front">pop_front</a><span class="special">;</span>
<span class="keyword">struct</span> <a class="link" href="../boost/xpressive/op/front.html" title="Struct front">front</a><span class="special">;</span>
<span class="keyword">struct</span> <a class="link" href="../boost/xpressive/op/back.html" title="Struct back">back</a><span class="special">;</span>
<span class="keyword">struct</span> <a class="link" href="../boost/xpressive/op/top.html" title="Struct top">top</a><span class="special">;</span>
<span class="keyword">struct</span> <a class="link" href="../boost/xpressive/op/first.html" title="Struct first">first</a><span class="special">;</span>
<span class="keyword">struct</span> <a class="link" href="../boost/xpressive/op/second.html" title="Struct second">second</a><span class="special">;</span>
<span class="keyword">struct</span> <a class="link" href="../boost/xpressive/op/matched.html" title="Struct matched">matched</a><span class="special">;</span>
<span class="keyword">struct</span> <a class="link" href="../boost/xpressive/op/length.html" title="Struct length">length</a><span class="special">;</span>
<span class="keyword">struct</span> <a class="link" href="../boost/xpressive/op/str.html" title="Struct str">str</a><span class="special">;</span>
<span class="keyword">struct</span> <a class="link" href="../boost/xpressive/op/insert.html" title="Struct insert">insert</a><span class="special">;</span>
<span class="keyword">struct</span> <a class="link" href="../boost/xpressive/op/make_pair.html" title="Struct make_pair">make_pair</a><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> T<span class="special">></span> <span class="keyword">struct</span> <a class="link" href="../boost/xpressive/op/as.html" title="Struct template as">as</a><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> T<span class="special">></span> <span class="keyword">struct</span> <a class="link" href="../boost/xpressive/op/static_cast_.html" title="Struct template static_cast_">static_cast_</a><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> T<span class="special">></span> <span class="keyword">struct</span> <a class="link" href="../boost/xpressive/op/dynamic_cast_.html" title="Struct template dynamic_cast_">dynamic_cast_</a><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> T<span class="special">></span> <span class="keyword">struct</span> <a class="link" href="../boost/xpressive/op/const_cast_.html" title="Struct template const_cast_">const_cast_</a><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> T<span class="special">></span> <span class="keyword">struct</span> <a class="link" href="../boost/xpressive/op/construct.html" title="Struct template construct">construct</a><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> Except<span class="special">></span> <span class="keyword">struct</span> <a class="link" href="../boost/xpressive/op/throw_.html" title="Struct template throw_">throw_</a><span class="special">;</span>
<span class="keyword">struct</span> <a class="link" href="../boost/xpressive/op/unwrap_reference.html" title="Struct unwrap_reference">unwrap_reference</a><span class="special">;</span>
<span class="special">}</span>
<span class="special">}</span>
<span class="special">}</span></pre>
</div>
<div class="section">
<div class="titlepage"><div><div><h3 class="title">
<a name="header.boost.xpressive.regex_algorithms_hpp"></a>Header <<a href="../../../boost/xpressive/regex_algorithms.hpp" target="_top">boost/xpressive/regex_algorithms.hpp</a>></h3></div></div></div>
<p>Contains the regex_match(), regex_search() and regex_replace() algorithms. </p>
<pre class="synopsis"><span class="keyword">namespace</span> <span class="identifier">boost</span> <span class="special">{</span>
<span class="keyword">namespace</span> <span class="identifier">xpressive</span> <span class="special">{</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> BidiIter<span class="special">></span>
<span class="keyword">bool</span> <a class="link" href="../boost/xpressive/regex_match.html" title="Function regex_match"><span class="identifier">regex_match</span></a><span class="special">(</span><span class="identifier">BidiIter</span><span class="special">,</span> <span class="identifier">BidiIter</span><span class="special">,</span> <a class="link" href="../boost/xpressive/match_results.html" title="Struct template match_results">match_results</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="special">&</span><span class="special">,</span>
<a class="link" href="../boost/xpressive/basic_regex.html" title="Struct template basic_regex">basic_regex</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="keyword">const</span> <span class="special">&</span><span class="special">,</span>
<span class="identifier">regex_constants</span><span class="special">::</span><span class="identifier">match_flag_type</span> <span class="special">=</span> <span class="identifier">regex_constants</span><span class="special">::</span><span class="identifier">match_default</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> BidiIter<span class="special">></span>
<span class="keyword">bool</span> <a class="link" href="../boost/xpressive/regex_match.html" title="Function regex_match"><span class="identifier">regex_match</span></a><span class="special">(</span><span class="identifier">BidiIter</span><span class="special">,</span> <span class="identifier">BidiIter</span><span class="special">,</span> <a class="link" href="../boost/xpressive/basic_regex.html" title="Struct template basic_regex">basic_regex</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="keyword">const</span> <span class="special">&</span><span class="special">,</span>
<span class="identifier">regex_constants</span><span class="special">::</span><span class="identifier">match_flag_type</span> <span class="special">=</span> <span class="identifier">regex_constants</span><span class="special">::</span><span class="identifier">match_default</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> Char<span class="special">></span>
<span class="keyword">bool</span> <a class="link" href="../boost/xpressive/regex_match.html" title="Function regex_match"><span class="identifier">regex_match</span></a><span class="special">(</span><span class="identifier">Char</span> <span class="special">*</span><span class="special">,</span> <a class="link" href="../boost/xpressive/match_results.html" title="Struct template match_results">match_results</a><span class="special"><</span> <span class="identifier">Char</span> <span class="special">*</span> <span class="special">></span> <span class="special">&</span><span class="special">,</span>
<a class="link" href="../boost/xpressive/basic_regex.html" title="Struct template basic_regex">basic_regex</a><span class="special"><</span> <span class="identifier">Char</span> <span class="special">*</span> <span class="special">></span> <span class="keyword">const</span> <span class="special">&</span><span class="special">,</span>
<span class="identifier">regex_constants</span><span class="special">::</span><span class="identifier">match_flag_type</span> <span class="special">=</span> <span class="identifier">regex_constants</span><span class="special">::</span><span class="identifier">match_default</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> BidiRange<span class="special">,</span> <span class="keyword">typename</span> BidiIter<span class="special">></span>
<span class="keyword">bool</span> <a class="link" href="../boost/xpressive/regex_match.html" title="Function regex_match"><span class="identifier">regex_match</span></a><span class="special">(</span><span class="identifier">BidiRange</span> <span class="special">&</span><span class="special">,</span> <a class="link" href="../boost/xpressive/match_results.html" title="Struct template match_results">match_results</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="special">&</span><span class="special">,</span>
<a class="link" href="../boost/xpressive/basic_regex.html" title="Struct template basic_regex">basic_regex</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="keyword">const</span> <span class="special">&</span><span class="special">,</span>
<span class="identifier">regex_constants</span><span class="special">::</span><span class="identifier">match_flag_type</span> <span class="special">=</span> <span class="identifier">regex_constants</span><span class="special">::</span><span class="identifier">match_default</span><span class="special">,</span>
<span class="emphasis"><em><span class="identifier">unspecified</span></em></span> <span class="special">=</span> <span class="number">0</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> BidiRange<span class="special">,</span> <span class="keyword">typename</span> BidiIter<span class="special">></span>
<span class="keyword">bool</span> <a class="link" href="../boost/xpressive/regex_match.html" title="Function regex_match"><span class="identifier">regex_match</span></a><span class="special">(</span><span class="identifier">BidiRange</span> <span class="keyword">const</span> <span class="special">&</span><span class="special">,</span> <a class="link" href="../boost/xpressive/match_results.html" title="Struct template match_results">match_results</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="special">&</span><span class="special">,</span>
<a class="link" href="../boost/xpressive/basic_regex.html" title="Struct template basic_regex">basic_regex</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="keyword">const</span> <span class="special">&</span><span class="special">,</span>
<span class="identifier">regex_constants</span><span class="special">::</span><span class="identifier">match_flag_type</span> <span class="special">=</span> <span class="identifier">regex_constants</span><span class="special">::</span><span class="identifier">match_default</span><span class="special">,</span>
<span class="emphasis"><em><span class="identifier">unspecified</span></em></span> <span class="special">=</span> <span class="number">0</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> Char<span class="special">></span>
<span class="keyword">bool</span> <a class="link" href="../boost/xpressive/regex_match.html" title="Function regex_match"><span class="identifier">regex_match</span></a><span class="special">(</span><span class="identifier">Char</span> <span class="special">*</span><span class="special">,</span> <a class="link" href="../boost/xpressive/basic_regex.html" title="Struct template basic_regex">basic_regex</a><span class="special"><</span> <span class="identifier">Char</span> <span class="special">*</span> <span class="special">></span> <span class="keyword">const</span> <span class="special">&</span><span class="special">,</span>
<span class="identifier">regex_constants</span><span class="special">::</span><span class="identifier">match_flag_type</span> <span class="special">=</span> <span class="identifier">regex_constants</span><span class="special">::</span><span class="identifier">match_default</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> BidiRange<span class="special">,</span> <span class="keyword">typename</span> BidiIter<span class="special">></span>
<span class="keyword">bool</span> <a class="link" href="../boost/xpressive/regex_match.html" title="Function regex_match"><span class="identifier">regex_match</span></a><span class="special">(</span><span class="identifier">BidiRange</span> <span class="special">&</span><span class="special">,</span> <a class="link" href="../boost/xpressive/basic_regex.html" title="Struct template basic_regex">basic_regex</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="keyword">const</span> <span class="special">&</span><span class="special">,</span>
<span class="identifier">regex_constants</span><span class="special">::</span><span class="identifier">match_flag_type</span> <span class="special">=</span> <span class="identifier">regex_constants</span><span class="special">::</span><span class="identifier">match_default</span><span class="special">,</span>
<span class="emphasis"><em><span class="identifier">unspecified</span></em></span> <span class="special">=</span> <span class="number">0</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> BidiRange<span class="special">,</span> <span class="keyword">typename</span> BidiIter<span class="special">></span>
<span class="keyword">bool</span> <a class="link" href="../boost/xpressive/regex_match.html" title="Function regex_match"><span class="identifier">regex_match</span></a><span class="special">(</span><span class="identifier">BidiRange</span> <span class="keyword">const</span> <span class="special">&</span><span class="special">,</span> <a class="link" href="../boost/xpressive/basic_regex.html" title="Struct template basic_regex">basic_regex</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="keyword">const</span> <span class="special">&</span><span class="special">,</span>
<span class="identifier">regex_constants</span><span class="special">::</span><span class="identifier">match_flag_type</span> <span class="special">=</span> <span class="identifier">regex_constants</span><span class="special">::</span><span class="identifier">match_default</span><span class="special">,</span>
<span class="emphasis"><em><span class="identifier">unspecified</span></em></span> <span class="special">=</span> <span class="number">0</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> BidiIter<span class="special">></span>
<span class="keyword">bool</span> <a class="link" href="../boost/xpressive/regex_search.html" title="Function regex_search"><span class="identifier">regex_search</span></a><span class="special">(</span><span class="identifier">BidiIter</span><span class="special">,</span> <span class="identifier">BidiIter</span><span class="special">,</span> <a class="link" href="../boost/xpressive/match_results.html" title="Struct template match_results">match_results</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="special">&</span><span class="special">,</span>
<a class="link" href="../boost/xpressive/basic_regex.html" title="Struct template basic_regex">basic_regex</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="keyword">const</span> <span class="special">&</span><span class="special">,</span>
<span class="identifier">regex_constants</span><span class="special">::</span><span class="identifier">match_flag_type</span> <span class="special">=</span> <span class="identifier">regex_constants</span><span class="special">::</span><span class="identifier">match_default</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> BidiIter<span class="special">></span>
<span class="keyword">bool</span> <a class="link" href="../boost/xpressive/regex_search.html" title="Function regex_search"><span class="identifier">regex_search</span></a><span class="special">(</span><span class="identifier">BidiIter</span><span class="special">,</span> <span class="identifier">BidiIter</span><span class="special">,</span> <a class="link" href="../boost/xpressive/basic_regex.html" title="Struct template basic_regex">basic_regex</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="keyword">const</span> <span class="special">&</span><span class="special">,</span>
<span class="identifier">regex_constants</span><span class="special">::</span><span class="identifier">match_flag_type</span> <span class="special">=</span> <span class="identifier">regex_constants</span><span class="special">::</span><span class="identifier">match_default</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> Char<span class="special">></span>
<span class="keyword">bool</span> <a class="link" href="../boost/xpressive/regex_search.html" title="Function regex_search"><span class="identifier">regex_search</span></a><span class="special">(</span><span class="identifier">Char</span> <span class="special">*</span><span class="special">,</span> <a class="link" href="../boost/xpressive/match_results.html" title="Struct template match_results">match_results</a><span class="special"><</span> <span class="identifier">Char</span> <span class="special">*</span> <span class="special">></span> <span class="special">&</span><span class="special">,</span>
<a class="link" href="../boost/xpressive/basic_regex.html" title="Struct template basic_regex">basic_regex</a><span class="special"><</span> <span class="identifier">Char</span> <span class="special">*</span> <span class="special">></span> <span class="keyword">const</span> <span class="special">&</span><span class="special">,</span>
<span class="identifier">regex_constants</span><span class="special">::</span><span class="identifier">match_flag_type</span> <span class="special">=</span> <span class="identifier">regex_constants</span><span class="special">::</span><span class="identifier">match_default</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> BidiRange<span class="special">,</span> <span class="keyword">typename</span> BidiIter<span class="special">></span>
<span class="keyword">bool</span> <a class="link" href="../boost/xpressive/regex_search.html" title="Function regex_search"><span class="identifier">regex_search</span></a><span class="special">(</span><span class="identifier">BidiRange</span> <span class="special">&</span><span class="special">,</span> <a class="link" href="../boost/xpressive/match_results.html" title="Struct template match_results">match_results</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="special">&</span><span class="special">,</span>
<a class="link" href="../boost/xpressive/basic_regex.html" title="Struct template basic_regex">basic_regex</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="keyword">const</span> <span class="special">&</span><span class="special">,</span>
<span class="identifier">regex_constants</span><span class="special">::</span><span class="identifier">match_flag_type</span> <span class="special">=</span> <span class="identifier">regex_constants</span><span class="special">::</span><span class="identifier">match_default</span><span class="special">,</span>
<span class="emphasis"><em><span class="identifier">unspecified</span></em></span> <span class="special">=</span> <span class="number">0</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> BidiRange<span class="special">,</span> <span class="keyword">typename</span> BidiIter<span class="special">></span>
<span class="keyword">bool</span> <a class="link" href="../boost/xpressive/regex_search.html" title="Function regex_search"><span class="identifier">regex_search</span></a><span class="special">(</span><span class="identifier">BidiRange</span> <span class="keyword">const</span> <span class="special">&</span><span class="special">,</span> <a class="link" href="../boost/xpressive/match_results.html" title="Struct template match_results">match_results</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="special">&</span><span class="special">,</span>
<a class="link" href="../boost/xpressive/basic_regex.html" title="Struct template basic_regex">basic_regex</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="keyword">const</span> <span class="special">&</span><span class="special">,</span>
<span class="identifier">regex_constants</span><span class="special">::</span><span class="identifier">match_flag_type</span> <span class="special">=</span> <span class="identifier">regex_constants</span><span class="special">::</span><span class="identifier">match_default</span><span class="special">,</span>
<span class="emphasis"><em><span class="identifier">unspecified</span></em></span> <span class="special">=</span> <span class="number">0</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> Char<span class="special">></span>
<span class="keyword">bool</span> <a class="link" href="../boost/xpressive/regex_search.html" title="Function regex_search"><span class="identifier">regex_search</span></a><span class="special">(</span><span class="identifier">Char</span> <span class="special">*</span><span class="special">,</span> <a class="link" href="../boost/xpressive/basic_regex.html" title="Struct template basic_regex">basic_regex</a><span class="special"><</span> <span class="identifier">Char</span> <span class="special">*</span> <span class="special">></span> <span class="keyword">const</span> <span class="special">&</span><span class="special">,</span>
<span class="identifier">regex_constants</span><span class="special">::</span><span class="identifier">match_flag_type</span> <span class="special">=</span> <span class="identifier">regex_constants</span><span class="special">::</span><span class="identifier">match_default</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> BidiRange<span class="special">,</span> <span class="keyword">typename</span> BidiIter<span class="special">></span>
<span class="keyword">bool</span> <a class="link" href="../boost/xpressive/regex_search.html" title="Function regex_search"><span class="identifier">regex_search</span></a><span class="special">(</span><span class="identifier">BidiRange</span> <span class="special">&</span><span class="special">,</span> <a class="link" href="../boost/xpressive/basic_regex.html" title="Struct template basic_regex">basic_regex</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="keyword">const</span> <span class="special">&</span><span class="special">,</span>
<span class="identifier">regex_constants</span><span class="special">::</span><span class="identifier">match_flag_type</span> <span class="special">=</span> <span class="identifier">regex_constants</span><span class="special">::</span><span class="identifier">match_default</span><span class="special">,</span>
<span class="emphasis"><em><span class="identifier">unspecified</span></em></span> <span class="special">=</span> <span class="number">0</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> BidiRange<span class="special">,</span> <span class="keyword">typename</span> BidiIter<span class="special">></span>
<span class="keyword">bool</span> <a class="link" href="../boost/xpressive/regex_search.html" title="Function regex_search"><span class="identifier">regex_search</span></a><span class="special">(</span><span class="identifier">BidiRange</span> <span class="keyword">const</span> <span class="special">&</span><span class="special">,</span> <a class="link" href="../boost/xpressive/basic_regex.html" title="Struct template basic_regex">basic_regex</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="keyword">const</span> <span class="special">&</span><span class="special">,</span>
<span class="identifier">regex_constants</span><span class="special">::</span><span class="identifier">match_flag_type</span> <span class="special">=</span> <span class="identifier">regex_constants</span><span class="special">::</span><span class="identifier">match_default</span><span class="special">,</span>
<span class="emphasis"><em><span class="identifier">unspecified</span></em></span> <span class="special">=</span> <span class="number">0</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> OutIter<span class="special">,</span> <span class="keyword">typename</span> BidiIter<span class="special">,</span> <span class="keyword">typename</span> Formatter<span class="special">></span>
<span class="identifier">OutIter</span> <a class="link" href="../boost/xpressive/regex_replace.html" title="Function regex_replace"><span class="identifier">regex_replace</span></a><span class="special">(</span><span class="identifier">OutIter</span><span class="special">,</span> <span class="identifier">BidiIter</span><span class="special">,</span> <span class="identifier">BidiIter</span><span class="special">,</span>
<a class="link" href="../boost/xpressive/basic_regex.html" title="Struct template basic_regex">basic_regex</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="keyword">const</span> <span class="special">&</span><span class="special">,</span>
<span class="identifier">Formatter</span> <span class="keyword">const</span> <span class="special">&</span><span class="special">,</span>
<span class="identifier">regex_constants</span><span class="special">::</span><span class="identifier">match_flag_type</span> <span class="special">=</span> <span class="identifier">regex_constants</span><span class="special">::</span><span class="identifier">match_default</span><span class="special">,</span>
<span class="emphasis"><em><span class="identifier">unspecified</span></em></span> <span class="special">=</span> <span class="number">0</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> OutIter<span class="special">,</span> <span class="keyword">typename</span> BidiIter<span class="special">></span>
<span class="identifier">OutIter</span> <a class="link" href="../boost/xpressive/regex_replace.html" title="Function regex_replace"><span class="identifier">regex_replace</span></a><span class="special">(</span><span class="identifier">OutIter</span><span class="special">,</span> <span class="identifier">BidiIter</span><span class="special">,</span> <span class="identifier">BidiIter</span><span class="special">,</span>
<a class="link" href="../boost/xpressive/basic_regex.html" title="Struct template basic_regex">basic_regex</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="keyword">const</span> <span class="special">&</span><span class="special">,</span>
<span class="keyword">typename</span> <span class="identifier">iterator_value</span><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span><span class="special">::</span><span class="identifier">type</span> <span class="keyword">const</span> <span class="special">*</span><span class="special">,</span>
<span class="identifier">regex_constants</span><span class="special">::</span><span class="identifier">match_flag_type</span> <span class="special">=</span> <span class="identifier">regex_constants</span><span class="special">::</span><span class="identifier">match_default</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> BidiContainer<span class="special">,</span> <span class="keyword">typename</span> BidiIter<span class="special">,</span> <span class="keyword">typename</span> Formatter<span class="special">></span>
<span class="identifier">BidiContainer</span>
<a class="link" href="../boost/xpressive/regex_replace.html" title="Function regex_replace"><span class="identifier">regex_replace</span></a><span class="special">(</span><span class="identifier">BidiContainer</span> <span class="special">&</span><span class="special">,</span> <a class="link" href="../boost/xpressive/basic_regex.html" title="Struct template basic_regex">basic_regex</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="keyword">const</span> <span class="special">&</span><span class="special">,</span>
<span class="identifier">Formatter</span> <span class="keyword">const</span> <span class="special">&</span><span class="special">,</span>
<span class="identifier">regex_constants</span><span class="special">::</span><span class="identifier">match_flag_type</span> <span class="special">=</span> <span class="identifier">regex_constants</span><span class="special">::</span><span class="identifier">match_default</span><span class="special">,</span>
<span class="emphasis"><em><span class="identifier">unspecified</span></em></span> <span class="special">=</span> <span class="number">0</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> BidiContainer<span class="special">,</span> <span class="keyword">typename</span> BidiIter<span class="special">,</span> <span class="keyword">typename</span> Formatter<span class="special">></span>
<span class="identifier">BidiContainer</span>
<a class="link" href="../boost/xpressive/regex_replace.html" title="Function regex_replace"><span class="identifier">regex_replace</span></a><span class="special">(</span><span class="identifier">BidiContainer</span> <span class="keyword">const</span> <span class="special">&</span><span class="special">,</span> <a class="link" href="../boost/xpressive/basic_regex.html" title="Struct template basic_regex">basic_regex</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="keyword">const</span> <span class="special">&</span><span class="special">,</span>
<span class="identifier">Formatter</span> <span class="keyword">const</span> <span class="special">&</span><span class="special">,</span>
<span class="identifier">regex_constants</span><span class="special">::</span><span class="identifier">match_flag_type</span> <span class="special">=</span> <span class="identifier">regex_constants</span><span class="special">::</span><span class="identifier">match_default</span><span class="special">,</span>
<span class="emphasis"><em><span class="identifier">unspecified</span></em></span> <span class="special">=</span> <span class="number">0</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> Char<span class="special">,</span> <span class="keyword">typename</span> Formatter<span class="special">></span>
<span class="identifier">std</span><span class="special">::</span><span class="identifier">basic_string</span><span class="special"><</span> <span class="keyword">typename</span> <span class="identifier">remove_const</span><span class="special"><</span> <span class="identifier">Char</span> <span class="special">></span><span class="special">::</span><span class="identifier">type</span> <span class="special">></span>
<a class="link" href="../boost/xpressive/regex_replace.html" title="Function regex_replace"><span class="identifier">regex_replace</span></a><span class="special">(</span><span class="identifier">Char</span> <span class="special">*</span><span class="special">,</span> <a class="link" href="../boost/xpressive/basic_regex.html" title="Struct template basic_regex">basic_regex</a><span class="special"><</span> <span class="identifier">Char</span> <span class="special">*</span> <span class="special">></span> <span class="keyword">const</span> <span class="special">&</span><span class="special">,</span> <span class="identifier">Formatter</span> <span class="keyword">const</span> <span class="special">&</span><span class="special">,</span>
<span class="identifier">regex_constants</span><span class="special">::</span><span class="identifier">match_flag_type</span> <span class="special">=</span> <span class="identifier">regex_constants</span><span class="special">::</span><span class="identifier">match_default</span><span class="special">,</span>
<span class="emphasis"><em><span class="identifier">unspecified</span></em></span> <span class="special">=</span> <span class="number">0</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> BidiContainer<span class="special">,</span> <span class="keyword">typename</span> BidiIter<span class="special">></span>
<span class="identifier">BidiContainer</span>
<a class="link" href="../boost/xpressive/regex_replace.html" title="Function regex_replace"><span class="identifier">regex_replace</span></a><span class="special">(</span><span class="identifier">BidiContainer</span> <span class="special">&</span><span class="special">,</span> <a class="link" href="../boost/xpressive/basic_regex.html" title="Struct template basic_regex">basic_regex</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="keyword">const</span> <span class="special">&</span><span class="special">,</span>
<span class="keyword">typename</span> <span class="identifier">iterator_value</span><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span><span class="special">::</span><span class="identifier">type</span> <span class="keyword">const</span> <span class="special">*</span><span class="special">,</span>
<span class="identifier">regex_constants</span><span class="special">::</span><span class="identifier">match_flag_type</span> <span class="special">=</span> <span class="identifier">regex_constants</span><span class="special">::</span><span class="identifier">match_default</span><span class="special">,</span>
<span class="emphasis"><em><span class="identifier">unspecified</span></em></span> <span class="special">=</span> <span class="number">0</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> BidiContainer<span class="special">,</span> <span class="keyword">typename</span> BidiIter<span class="special">></span>
<span class="identifier">BidiContainer</span>
<a class="link" href="../boost/xpressive/regex_replace.html" title="Function regex_replace"><span class="identifier">regex_replace</span></a><span class="special">(</span><span class="identifier">BidiContainer</span> <span class="keyword">const</span> <span class="special">&</span><span class="special">,</span> <a class="link" href="../boost/xpressive/basic_regex.html" title="Struct template basic_regex">basic_regex</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="keyword">const</span> <span class="special">&</span><span class="special">,</span>
<span class="keyword">typename</span> <span class="identifier">iterator_value</span><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span><span class="special">::</span><span class="identifier">type</span> <span class="keyword">const</span> <span class="special">*</span><span class="special">,</span>
<span class="identifier">regex_constants</span><span class="special">::</span><span class="identifier">match_flag_type</span> <span class="special">=</span> <span class="identifier">regex_constants</span><span class="special">::</span><span class="identifier">match_default</span><span class="special">,</span>
<span class="emphasis"><em><span class="identifier">unspecified</span></em></span> <span class="special">=</span> <span class="number">0</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> Char<span class="special">></span>
<span class="identifier">std</span><span class="special">::</span><span class="identifier">basic_string</span><span class="special"><</span> <span class="keyword">typename</span> <span class="identifier">remove_const</span><span class="special"><</span> <span class="identifier">Char</span> <span class="special">></span><span class="special">::</span><span class="identifier">type</span> <span class="special">></span>
<a class="link" href="../boost/xpressive/regex_replace.html" title="Function regex_replace"><span class="identifier">regex_replace</span></a><span class="special">(</span><span class="identifier">Char</span> <span class="special">*</span><span class="special">,</span> <a class="link" href="../boost/xpressive/basic_regex.html" title="Struct template basic_regex">basic_regex</a><span class="special"><</span> <span class="identifier">Char</span> <span class="special">*</span> <span class="special">></span> <span class="keyword">const</span> <span class="special">&</span><span class="special">,</span>
<span class="keyword">typename</span> <span class="identifier">add_const</span><span class="special"><</span> <span class="identifier">Char</span> <span class="special">></span><span class="special">::</span><span class="identifier">type</span> <span class="special">*</span><span class="special">,</span>
<span class="identifier">regex_constants</span><span class="special">::</span><span class="identifier">match_flag_type</span> <span class="special">=</span> <span class="identifier">regex_constants</span><span class="special">::</span><span class="identifier">match_default</span><span class="special">)</span><span class="special">;</span>
<span class="special">}</span>
<span class="special">}</span></pre>
</div>
<div class="section">
<div class="titlepage"><div><div><h3 class="title">
<a name="header.boost.xpressive.regex_compiler_hpp"></a>Header <<a href="../../../boost/xpressive/regex_compiler.hpp" target="_top">boost/xpressive/regex_compiler.hpp</a>></h3></div></div></div>
<p>Contains the definition of regex_compiler, a factory for building regex objects from strings. </p>
<pre class="synopsis"><span class="keyword">namespace</span> <span class="identifier">boost</span> <span class="special">{</span>
<span class="keyword">namespace</span> <span class="identifier">xpressive</span> <span class="special">{</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> BidiIter<span class="special">,</span> <span class="keyword">typename</span> RegexTraits<span class="special">,</span> <span class="keyword">typename</span> CompilerTraits<span class="special">></span>
<span class="keyword">struct</span> <a class="link" href="../boost/xpressive/regex_compiler.html" title="Struct template regex_compiler">regex_compiler</a><span class="special">;</span>
<span class="special">}</span>
<span class="special">}</span></pre>
</div>
<div class="section">
<div class="titlepage"><div><div><h3 class="title">
<a name="header.boost.xpressive.regex_constants_hpp"></a>Header <<a href="../../../boost/xpressive/regex_constants.hpp" target="_top">boost/xpressive/regex_constants.hpp</a>></h3></div></div></div>
<p>Contains definitions for the syntax_option_type, match_flag_type and error_type enumerations. </p>
<pre class="synopsis"><span class="keyword">namespace</span> <span class="identifier">boost</span> <span class="special">{</span>
<span class="keyword">namespace</span> <span class="identifier">xpressive</span> <span class="special">{</span>
<span class="keyword">namespace</span> <span class="identifier">regex_constants</span> <span class="special">{</span>
<span class="keyword">enum</span> <a class="link" href="../boost/xpressive/regex_constants/syntax_option_type.html" title="Type syntax_option_type">syntax_option_type</a><span class="special">;</span>
<span class="keyword">enum</span> <a class="link" href="../boost/xpressive/regex_constants/match_flag_type.html" title="Type match_flag_type">match_flag_type</a><span class="special">;</span>
<span class="keyword">enum</span> <a class="link" href="../boost/xpressive/regex_constants/error_type.html" title="Type error_type">error_type</a><span class="special">;</span>
<span class="special">}</span>
<span class="special">}</span>
<span class="special">}</span></pre>
</div>
<div class="section">
<div class="titlepage"><div><div><h3 class="title">
<a name="header.boost.xpressive.regex_error_hpp"></a>Header <<a href="../../../boost/xpressive/regex_error.hpp" target="_top">boost/xpressive/regex_error.hpp</a>></h3></div></div></div>
<p>Contains the definition of the regex_error exception class. </p>
<pre class="synopsis">
<a class="link" href="../BOOST_XPR_ENSURE_.html" title="Macro BOOST_XPR_ENSURE_">BOOST_XPR_ENSURE_</a>(pred, code, msg)</pre>
<pre class="synopsis"><span class="keyword">namespace</span> <span class="identifier">boost</span> <span class="special">{</span>
<span class="keyword">namespace</span> <span class="identifier">xpressive</span> <span class="special">{</span>
<span class="keyword">struct</span> <a class="link" href="../boost/xpressive/regex_error.html" title="Struct regex_error">regex_error</a><span class="special">;</span>
<span class="special">}</span>
<span class="special">}</span></pre>
</div>
<div class="section">
<div class="titlepage"><div><div><h3 class="title">
<a name="header.boost.xpressive.regex_iterator_hpp"></a>Header <<a href="../../../boost/xpressive/regex_iterator.hpp" target="_top">boost/xpressive/regex_iterator.hpp</a>></h3></div></div></div>
<p>Contains the definition of the regex_iterator type, an STL-compatible iterator for stepping through all the matches in a sequence. </p>
<pre class="synopsis"><span class="keyword">namespace</span> <span class="identifier">boost</span> <span class="special">{</span>
<span class="keyword">namespace</span> <span class="identifier">xpressive</span> <span class="special">{</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> BidiIter<span class="special">></span> <span class="keyword">struct</span> <a class="link" href="../boost/xpressive/regex_iterator.html" title="Struct template regex_iterator">regex_iterator</a><span class="special">;</span>
<span class="special">}</span>
<span class="special">}</span></pre>
</div>
<div class="section">
<div class="titlepage"><div><div><h3 class="title">
<a name="header.boost.xpressive.regex_primitives_hpp"></a>Header <<a href="../../../boost/xpressive/regex_primitives.hpp" target="_top">boost/xpressive/regex_primitives.hpp</a>></h3></div></div></div>
<p>Contains the syntax elements for writing static regular expressions. </p>
<pre class="synopsis"><span class="keyword">namespace</span> <span class="identifier">boost</span> <span class="special">{</span>
<span class="keyword">namespace</span> <span class="identifier">xpressive</span> <span class="special">{</span>
<span class="keyword">struct</span> <a class="link" href="../boost/xpressive/mark_tag.html" title="Struct mark_tag">mark_tag</a><span class="special">;</span>
<span class="keyword">unsigned</span> <span class="keyword">int</span> <span class="keyword">const</span> <a class="link" href="../boost/xpressive/inf.html" title="Global inf">inf</a><span class="special">;</span> <span class="comment">// For infinite repetition of a sub-expression. </span>
<span class="emphasis"><em><span class="identifier">unspecified</span></em></span> <a class="link" href="../boost/xpressive/nil.html" title="Global nil">nil</a><span class="special">;</span> <span class="comment">// Successfully matches nothing. </span>
<span class="emphasis"><em><span class="identifier">unspecified</span></em></span> <a class="link" href="../boost/xpressive/alnum.html" title="Global alnum">alnum</a><span class="special">;</span> <span class="comment">// Matches an alpha-numeric character. </span>
<span class="emphasis"><em><span class="identifier">unspecified</span></em></span> <a class="link" href="../boost/xpressive/alpha.html" title="Global alpha">alpha</a><span class="special">;</span> <span class="comment">// Matches an alphabetic character. </span>
<span class="emphasis"><em><span class="identifier">unspecified</span></em></span> <a class="link" href="../boost/xpressive/blank.html" title="Global blank">blank</a><span class="special">;</span> <span class="comment">// Matches a blank (horizonal white-space) character. </span>
<span class="emphasis"><em><span class="identifier">unspecified</span></em></span> <a class="link" href="../boost/xpressive/cntrl.html" title="Global cntrl">cntrl</a><span class="special">;</span> <span class="comment">// Matches a control character. </span>
<span class="emphasis"><em><span class="identifier">unspecified</span></em></span> <a class="link" href="../boost/xpressive/digit.html" title="Global digit">digit</a><span class="special">;</span> <span class="comment">// Matches a digit character. </span>
<span class="emphasis"><em><span class="identifier">unspecified</span></em></span> <a class="link" href="../boost/xpressive/graph.html" title="Global graph">graph</a><span class="special">;</span> <span class="comment">// Matches a graph character. </span>
<span class="emphasis"><em><span class="identifier">unspecified</span></em></span> <a class="link" href="../boost/xpressive/lower.html" title="Global lower">lower</a><span class="special">;</span> <span class="comment">// Matches a lower-case character. </span>
<span class="emphasis"><em><span class="identifier">unspecified</span></em></span> <a class="link" href="../boost/xpressive/print.html" title="Global print">print</a><span class="special">;</span> <span class="comment">// Matches a printable character. </span>
<span class="emphasis"><em><span class="identifier">unspecified</span></em></span> <a class="link" href="../boost/xpressive/punct.html" title="Global punct">punct</a><span class="special">;</span> <span class="comment">// Matches a punctuation character. </span>
<span class="emphasis"><em><span class="identifier">unspecified</span></em></span> <a class="link" href="../boost/xpressive/space.html" title="Global space">space</a><span class="special">;</span> <span class="comment">// Matches a space character. </span>
<span class="emphasis"><em><span class="identifier">unspecified</span></em></span> <a class="link" href="../boost/xpressive/upper.html" title="Global upper">upper</a><span class="special">;</span> <span class="comment">// Matches an upper-case character. </span>
<span class="emphasis"><em><span class="identifier">unspecified</span></em></span> <a class="link" href="../boost/xpressive/xdigit.html" title="Global xdigit">xdigit</a><span class="special">;</span> <span class="comment">// Matches a hexadecimal digit character. </span>
<span class="emphasis"><em><span class="identifier">unspecified</span></em></span> <a class="link" href="../boost/xpressive/bos.html" title="Global bos">bos</a><span class="special">;</span> <span class="comment">// Beginning of sequence assertion. </span>
<span class="emphasis"><em><span class="identifier">unspecified</span></em></span> <a class="link" href="../boost/xpressive/eos.html" title="Global eos">eos</a><span class="special">;</span> <span class="comment">// End of sequence assertion. </span>
<span class="emphasis"><em><span class="identifier">unspecified</span></em></span> <a class="link" href="../boost/xpressive/bol.html" title="Global bol">bol</a><span class="special">;</span> <span class="comment">// Beginning of line assertion. </span>
<span class="emphasis"><em><span class="identifier">unspecified</span></em></span> <a class="link" href="../boost/xpressive/eol.html" title="Global eol">eol</a><span class="special">;</span> <span class="comment">// End of line assertion. </span>
<span class="emphasis"><em><span class="identifier">unspecified</span></em></span> <a class="link" href="../boost/xpressive/bow.html" title="Global bow">bow</a><span class="special">;</span> <span class="comment">// Beginning of word assertion. </span>
<span class="emphasis"><em><span class="identifier">unspecified</span></em></span> <a class="link" href="../boost/xpressive/eow.html" title="Global eow">eow</a><span class="special">;</span> <span class="comment">// End of word assertion. </span>
<span class="emphasis"><em><span class="identifier">unspecified</span></em></span> <a class="link" href="../boost/xpressive/_b.html" title="Global _b">_b</a><span class="special">;</span> <span class="comment">// Word boundary assertion. </span>
<span class="emphasis"><em><span class="identifier">unspecified</span></em></span> <a class="link" href="../boost/xpressive/_w.html" title="Global _w">_w</a><span class="special">;</span> <span class="comment">// Matches a word character. </span>
<span class="emphasis"><em><span class="identifier">unspecified</span></em></span> <a class="link" href="../boost/xpressive/_d.html" title="Global _d">_d</a><span class="special">;</span> <span class="comment">// Matches a digit character. </span>
<span class="emphasis"><em><span class="identifier">unspecified</span></em></span> <a class="link" href="../boost/xpressive/_s.html" title="Global _s">_s</a><span class="special">;</span> <span class="comment">// Matches a space character. </span>
<span class="identifier">proto</span><span class="special">::</span><span class="identifier">terminal</span><span class="special"><</span> <span class="keyword">char</span> <span class="special">></span><span class="special">::</span><span class="identifier">type</span> <span class="keyword">const</span> <a class="link" href="../boost/xpressive/_n.html" title="Global _n">_n</a><span class="special">;</span> <span class="comment">// Matches a literal newline character, '\n'. </span>
<span class="emphasis"><em><span class="identifier">unspecified</span></em></span> <a class="link" href="../boost/xpressive/_ln.html" title="Global _ln">_ln</a><span class="special">;</span> <span class="comment">// Matches a logical newline sequence. </span>
<span class="emphasis"><em><span class="identifier">unspecified</span></em></span> <a class="link" href="../boost/xpressive/_.html" title="Global _">_</a><span class="special">;</span> <span class="comment">// Matches any one character. </span>
<span class="emphasis"><em><span class="identifier">unspecified</span></em></span> <a class="link" href="../boost/xpressive/self.html" title="Global self">self</a><span class="special">;</span> <span class="comment">// Reference to the current regex object. </span>
<span class="emphasis"><em><span class="identifier">unspecified</span></em></span> <a class="link" href="../boost/xpressive/set.html" title="Global set">set</a><span class="special">;</span> <span class="comment">// Used to create character sets. </span>
<a class="link" href="../boost/xpressive/mark_tag.html" title="Struct mark_tag">mark_tag</a> <span class="keyword">const</span> <a class="link" href="../boost/xpressive/s0.html" title="Global s0">s0</a><span class="special">;</span> <span class="comment">// Sub-match placeholder, like $& in Perl. </span>
<a class="link" href="../boost/xpressive/mark_tag.html" title="Struct mark_tag">mark_tag</a> <span class="keyword">const</span> <a class="link" href="../boost/xpressive/s1.html" title="Global s1">s1</a><span class="special">;</span> <span class="comment">// Sub-match placeholder, like $1 in perl. </span>
<a class="link" href="../boost/xpressive/mark_tag.html" title="Struct mark_tag">mark_tag</a> <span class="keyword">const</span> <a class="link" href="../boost/xpressive/s2.html" title="Global s2">s2</a><span class="special">;</span>
<a class="link" href="../boost/xpressive/mark_tag.html" title="Struct mark_tag">mark_tag</a> <span class="keyword">const</span> <a class="link" href="../boost/xpressive/s3.html" title="Global s3">s3</a><span class="special">;</span>
<a class="link" href="../boost/xpressive/mark_tag.html" title="Struct mark_tag">mark_tag</a> <span class="keyword">const</span> <a class="link" href="../boost/xpressive/s4.html" title="Global s4">s4</a><span class="special">;</span>
<a class="link" href="../boost/xpressive/mark_tag.html" title="Struct mark_tag">mark_tag</a> <span class="keyword">const</span> <a class="link" href="../boost/xpressive/s5.html" title="Global s5">s5</a><span class="special">;</span>
<a class="link" href="../boost/xpressive/mark_tag.html" title="Struct mark_tag">mark_tag</a> <span class="keyword">const</span> <a class="link" href="../boost/xpressive/s6.html" title="Global s6">s6</a><span class="special">;</span>
<a class="link" href="../boost/xpressive/mark_tag.html" title="Struct mark_tag">mark_tag</a> <span class="keyword">const</span> <a class="link" href="../boost/xpressive/s7.html" title="Global s7">s7</a><span class="special">;</span>
<a class="link" href="../boost/xpressive/mark_tag.html" title="Struct mark_tag">mark_tag</a> <span class="keyword">const</span> <a class="link" href="../boost/xpressive/s8.html" title="Global s8">s8</a><span class="special">;</span>
<a class="link" href="../boost/xpressive/mark_tag.html" title="Struct mark_tag">mark_tag</a> <span class="keyword">const</span> <a class="link" href="../boost/xpressive/s9.html" title="Global s9">s9</a><span class="special">;</span>
<span class="emphasis"><em><span class="identifier">unspecified</span></em></span> <a class="link" href="../boost/xpressive/a1.html" title="Global a1">a1</a><span class="special">;</span>
<span class="emphasis"><em><span class="identifier">unspecified</span></em></span> <a class="link" href="../boost/xpressive/a2.html" title="Global a2">a2</a><span class="special">;</span>
<span class="emphasis"><em><span class="identifier">unspecified</span></em></span> <a class="link" href="../boost/xpressive/a3.html" title="Global a3">a3</a><span class="special">;</span>
<span class="emphasis"><em><span class="identifier">unspecified</span></em></span> <a class="link" href="../boost/xpressive/a4.html" title="Global a4">a4</a><span class="special">;</span>
<span class="emphasis"><em><span class="identifier">unspecified</span></em></span> <a class="link" href="../boost/xpressive/a5.html" title="Global a5">a5</a><span class="special">;</span>
<span class="emphasis"><em><span class="identifier">unspecified</span></em></span> <a class="link" href="../boost/xpressive/a6.html" title="Global a6">a6</a><span class="special">;</span>
<span class="emphasis"><em><span class="identifier">unspecified</span></em></span> <a class="link" href="../boost/xpressive/a7.html" title="Global a7">a7</a><span class="special">;</span>
<span class="emphasis"><em><span class="identifier">unspecified</span></em></span> <a class="link" href="../boost/xpressive/a8.html" title="Global a8">a8</a><span class="special">;</span>
<span class="emphasis"><em><span class="identifier">unspecified</span></em></span> <a class="link" href="../boost/xpressive/a9.html" title="Global a9">a9</a><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> <a class="link" href="../Expr.html" title="Concept Expr">Expr</a><span class="special">></span> <span class="emphasis"><em><span class="identifier">unspecified</span></em></span> <a class="link" href="../boost/xpressive/icase.html" title="Function template icase"><span class="identifier">icase</span></a><span class="special">(</span><span class="identifier">Expr</span> <span class="keyword">const</span> <span class="special">&</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> Literal<span class="special">></span> <span class="emphasis"><em><span class="identifier">unspecified</span></em></span> <a class="link" href="../boost/xpressive/as_xpr.html" title="Function template as_xpr"><span class="identifier">as_xpr</span></a><span class="special">(</span><span class="identifier">Literal</span> <span class="keyword">const</span> <span class="special">&</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> BidiIter<span class="special">></span>
<span class="identifier">proto</span><span class="special">::</span><span class="identifier">terminal</span><span class="special"><</span> <span class="identifier">reference_wrapper</span><span class="special"><</span> <a class="link" href="../boost/xpressive/basic_regex.html" title="Struct template basic_regex">basic_regex</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="keyword">const</span> <span class="special">></span> <span class="special">></span><span class="special">::</span><span class="identifier">type</span> <span class="keyword">const</span>
<a class="link" href="../boost/xpressive/by_ref.html" title="Function template by_ref"><span class="identifier">by_ref</span></a><span class="special">(</span><a class="link" href="../boost/xpressive/basic_regex.html" title="Struct template basic_regex">basic_regex</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="keyword">const</span> <span class="special">&</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> Char<span class="special">></span> <span class="emphasis"><em><span class="identifier">unspecified</span></em></span> <a class="link" href="../boost/xpressive/range.html" title="Function template range"><span class="identifier">range</span></a><span class="special">(</span><span class="identifier">Char</span><span class="special">,</span> <span class="identifier">Char</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> <a class="link" href="../Expr.html" title="Concept Expr">Expr</a><span class="special">></span>
<span class="identifier">proto</span><span class="special">::</span><span class="identifier">result_of</span><span class="special">::</span><span class="identifier">make_expr</span><span class="special"><</span> <span class="identifier">proto</span><span class="special">::</span><span class="identifier">tag</span><span class="special">::</span><span class="identifier">logical_not</span><span class="special">,</span> <span class="identifier">proto</span><span class="special">::</span><span class="identifier">default_domain</span><span class="special">,</span> <span class="identifier">Expr</span> <span class="keyword">const</span> <span class="special">&</span> <span class="special">></span><span class="special">::</span><span class="identifier">type</span> <span class="keyword">const</span>
<a class="link" href="../boost/xpressive/optional_idp168329704.html" title="Function template optional"><span class="identifier">optional</span></a><span class="special">(</span><span class="identifier">Expr</span> <span class="keyword">const</span> <span class="special">&</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">unsigned</span> <span class="keyword">int</span> Min<span class="special">,</span> <span class="keyword">unsigned</span> <span class="keyword">int</span> Max<span class="special">,</span> <span class="keyword">typename</span> <a class="link" href="../Expr.html" title="Concept Expr">Expr</a><span class="special">></span>
<span class="emphasis"><em><span class="identifier">unspecified</span></em></span> <a class="link" href="../boost/xpressive/repeat_idp168331528.html" title="Function template repeat"><span class="identifier">repeat</span></a><span class="special">(</span><span class="identifier">Expr</span> <span class="keyword">const</span> <span class="special">&</span><span class="special">)</span><span class="special">;</span>
<span class="comment">// This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. </span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">unsigned</span> <span class="keyword">int</span> Count<span class="special">,</span> <span class="keyword">typename</span> <a class="link" href="../Expr.html" title="Concept Expr">Expr2</a><span class="special">></span>
<span class="emphasis"><em><span class="identifier">unspecified</span></em></span> <a name="boost.xpressive.repeat_idp168334728"></a><span class="identifier">repeat</span><span class="special">(</span><span class="identifier">Expr2</span> <span class="keyword">const</span> <span class="special">&</span> expr2<span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> <a class="link" href="../Expr.html" title="Concept Expr">Expr</a><span class="special">></span> <span class="emphasis"><em><span class="identifier">unspecified</span></em></span> <a class="link" href="../boost/xpressive/keep.html" title="Function template keep"><span class="identifier">keep</span></a><span class="special">(</span><span class="identifier">Expr</span> <span class="keyword">const</span> <span class="special">&</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> <a class="link" href="../Expr.html" title="Concept Expr">Expr</a><span class="special">></span> <span class="emphasis"><em><span class="identifier">unspecified</span></em></span> <a class="link" href="../boost/xpressive/before.html" title="Function template before"><span class="identifier">before</span></a><span class="special">(</span><span class="identifier">Expr</span> <span class="keyword">const</span> <span class="special">&</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> <a class="link" href="../Expr.html" title="Concept Expr">Expr</a><span class="special">></span> <span class="emphasis"><em><span class="identifier">unspecified</span></em></span> <a class="link" href="../boost/xpressive/after.html" title="Function template after"><span class="identifier">after</span></a><span class="special">(</span><span class="identifier">Expr</span> <span class="keyword">const</span> <span class="special">&</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> Locale<span class="special">></span> <span class="emphasis"><em><span class="identifier">unspecified</span></em></span> <a class="link" href="../boost/xpressive/imbue.html" title="Function template imbue"><span class="identifier">imbue</span></a><span class="special">(</span><span class="identifier">Locale</span> <span class="keyword">const</span> <span class="special">&</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> Skip<span class="special">></span> <span class="emphasis"><em><span class="identifier">unspecified</span></em></span> <a class="link" href="../boost/xpressive/skip.html" title="Function template skip"><span class="identifier">skip</span></a><span class="special">(</span><span class="identifier">Skip</span> <span class="keyword">const</span> <span class="special">&</span><span class="special">)</span><span class="special">;</span>
<span class="special">}</span>
<span class="special">}</span></pre>
</div>
<div class="section">
<div class="titlepage"><div><div><h3 class="title">
<a name="header.boost.xpressive.regex_token_iterator_hpp"></a>Header <<a href="../../../boost/xpressive/regex_token_iterator.hpp" target="_top">boost/xpressive/regex_token_iterator.hpp</a>></h3></div></div></div>
<p>Contains the definition of regex_token_iterator, and STL-compatible iterator for tokenizing a string using a regular expression. </p>
<pre class="synopsis"><span class="keyword">namespace</span> <span class="identifier">boost</span> <span class="special">{</span>
<span class="keyword">namespace</span> <span class="identifier">xpressive</span> <span class="special">{</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> BidiIter<span class="special">></span> <span class="keyword">struct</span> <a class="link" href="../boost/xpressive/regex_token_iterator.html" title="Struct template regex_token_iterator">regex_token_iterator</a><span class="special">;</span>
<span class="special">}</span>
<span class="special">}</span></pre>
</div>
<div class="section">
<div class="titlepage"><div><div><h3 class="title">
<a name="header.boost.xpressive.regex_traits_hpp"></a>Header <<a href="../../../boost/xpressive/regex_traits.hpp" target="_top">boost/xpressive/regex_traits.hpp</a>></h3></div></div></div>
<p>Includes the C regex traits or the CPP regex traits header file depending on the BOOST_XPRESSIVE_USE_C_TRAITS macro. </p>
<pre class="synopsis"><span class="keyword">namespace</span> <span class="identifier">boost</span> <span class="special">{</span>
<span class="keyword">namespace</span> <span class="identifier">xpressive</span> <span class="special">{</span>
<span class="keyword">struct</span> <a class="link" href="../boost/xpressive/regex_traits_version_1_tag.html" title="Struct regex_traits_version_1_tag">regex_traits_version_1_tag</a><span class="special">;</span>
<span class="keyword">struct</span> <a class="link" href="../boost/xpressive/regex_traits_version_2_tag.html" title="Struct regex_traits_version_2_tag">regex_traits_version_2_tag</a><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> Traits<span class="special">></span> <span class="keyword">struct</span> <a class="link" href="../boost/xpressive/has_fold_case.html" title="Struct template has_fold_case">has_fold_case</a><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> Char<span class="special">,</span> <span class="keyword">typename</span> Impl<span class="special">></span> <span class="keyword">struct</span> <a class="link" href="../boost/xpressive/regex_traits.html" title="Struct template regex_traits">regex_traits</a><span class="special">;</span>
<span class="special">}</span>
<span class="special">}</span></pre>
</div>
<div class="section">
<div class="titlepage"><div><div><h3 class="title">
<a name="header.boost.xpressive.sub_match_hpp"></a>Header <<a href="../../../boost/xpressive/sub_match.hpp" target="_top">boost/xpressive/sub_match.hpp</a>></h3></div></div></div>
<p>Contains the definition of the class template sub_match<> and associated helper functions </p>
<pre class="synopsis"><span class="keyword">namespace</span> <span class="identifier">boost</span> <span class="special">{</span>
<span class="keyword">namespace</span> <span class="identifier">xpressive</span> <span class="special">{</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> BidiIter<span class="special">></span> <span class="keyword">struct</span> <a class="link" href="../boost/xpressive/sub_match.html" title="Struct template sub_match">sub_match</a><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> BidiIter<span class="special">></span> <span class="identifier">BidiIter</span> <a class="link" href="../boost/xpressive/range_begin.html" title="Function range_begin"><span class="identifier">range_begin</span></a><span class="special">(</span><a class="link" href="../boost/xpressive/sub_match.html" title="Struct template sub_match">sub_match</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="special">&</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> BidiIter<span class="special">></span>
<span class="identifier">BidiIter</span> <a class="link" href="../boost/xpressive/range_begin.html" title="Function range_begin"><span class="identifier">range_begin</span></a><span class="special">(</span><a class="link" href="../boost/xpressive/sub_match.html" title="Struct template sub_match">sub_match</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="keyword">const</span> <span class="special">&</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> BidiIter<span class="special">></span> <span class="identifier">BidiIter</span> <a class="link" href="../boost/xpressive/range_end.html" title="Function range_end"><span class="identifier">range_end</span></a><span class="special">(</span><a class="link" href="../boost/xpressive/sub_match.html" title="Struct template sub_match">sub_match</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="special">&</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> BidiIter<span class="special">></span>
<span class="identifier">BidiIter</span> <a class="link" href="../boost/xpressive/range_end.html" title="Function range_end"><span class="identifier">range_end</span></a><span class="special">(</span><a class="link" href="../boost/xpressive/sub_match.html" title="Struct template sub_match">sub_match</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="keyword">const</span> <span class="special">&</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> BidiIter<span class="special">,</span> <span class="keyword">typename</span> Char<span class="special">,</span> <span class="keyword">typename</span> Traits<span class="special">></span>
<span class="identifier">std</span><span class="special">::</span><span class="identifier">basic_ostream</span><span class="special"><</span> <span class="identifier">Char</span><span class="special">,</span> <span class="identifier">Traits</span> <span class="special">></span> <span class="special">&</span>
<a class="link" href="../boost/xpressive/operator_idp168429784.html" title="Function template operator<<"><span class="keyword">operator</span><span class="special"><<</span></a><span class="special">(</span><span class="identifier">std</span><span class="special">::</span><span class="identifier">basic_ostream</span><span class="special"><</span> <span class="identifier">Char</span><span class="special">,</span> <span class="identifier">Traits</span> <span class="special">></span> <span class="special">&</span><span class="special">,</span>
<a class="link" href="../boost/xpressive/sub_match.html" title="Struct template sub_match">sub_match</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="keyword">const</span> <span class="special">&</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> BidiIter<span class="special">></span>
<span class="keyword">bool</span> <a name="boost.xpressive.operator==_idp168433336"></a><span class="keyword">operator</span><span class="special">==</span><span class="special">(</span><a class="link" href="../boost/xpressive/sub_match.html" title="Struct template sub_match">sub_match</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="keyword">const</span> <span class="special">&</span> lhs<span class="special">,</span>
<a class="link" href="../boost/xpressive/sub_match.html" title="Struct template sub_match">sub_match</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="keyword">const</span> <span class="special">&</span> rhs<span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> BidiIter<span class="special">></span>
<span class="keyword">bool</span> <a name="boost.xpressive.operator!=_idp168435080"></a><span class="keyword">operator</span><span class="special">!=</span><span class="special">(</span><a class="link" href="../boost/xpressive/sub_match.html" title="Struct template sub_match">sub_match</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="keyword">const</span> <span class="special">&</span> lhs<span class="special">,</span>
<a class="link" href="../boost/xpressive/sub_match.html" title="Struct template sub_match">sub_match</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="keyword">const</span> <span class="special">&</span> rhs<span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> BidiIter<span class="special">></span>
<span class="keyword">bool</span> <a name="boost.xpressive.operator_idp168436824"></a><span class="keyword">operator</span><span class="special"><</span><span class="special">(</span><a class="link" href="../boost/xpressive/sub_match.html" title="Struct template sub_match">sub_match</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="keyword">const</span> <span class="special">&</span> lhs<span class="special">,</span>
<a class="link" href="../boost/xpressive/sub_match.html" title="Struct template sub_match">sub_match</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="keyword">const</span> <span class="special">&</span> rhs<span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> BidiIter<span class="special">></span>
<span class="keyword">bool</span> <a name="boost.xpressive.operator_=_idp168438568"></a><span class="keyword">operator</span><span class="special"><=</span><span class="special">(</span><a class="link" href="../boost/xpressive/sub_match.html" title="Struct template sub_match">sub_match</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="keyword">const</span> <span class="special">&</span> lhs<span class="special">,</span>
<a class="link" href="../boost/xpressive/sub_match.html" title="Struct template sub_match">sub_match</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="keyword">const</span> <span class="special">&</span> rhs<span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> BidiIter<span class="special">></span>
<span class="keyword">bool</span> <a name="boost.xpressive.operator_=_idp168440312"></a><span class="keyword">operator</span><span class="special">>=</span><span class="special">(</span><a class="link" href="../boost/xpressive/sub_match.html" title="Struct template sub_match">sub_match</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="keyword">const</span> <span class="special">&</span> lhs<span class="special">,</span>
<a class="link" href="../boost/xpressive/sub_match.html" title="Struct template sub_match">sub_match</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="keyword">const</span> <span class="special">&</span> rhs<span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> BidiIter<span class="special">></span>
<span class="keyword">bool</span> <a name="boost.xpressive.operator_idp168442056"></a><span class="keyword">operator</span><span class="special">></span><span class="special">(</span><a class="link" href="../boost/xpressive/sub_match.html" title="Struct template sub_match">sub_match</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="keyword">const</span> <span class="special">&</span> lhs<span class="special">,</span>
<a class="link" href="../boost/xpressive/sub_match.html" title="Struct template sub_match">sub_match</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="keyword">const</span> <span class="special">&</span> rhs<span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> BidiIter<span class="special">></span>
<span class="keyword">bool</span> <a name="boost.xpressive.operator==_idp168443800"></a><span class="keyword">operator</span><span class="special">==</span><span class="special">(</span><span class="keyword">typename</span> <span class="identifier">iterator_value</span><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span><span class="special">::</span><span class="identifier">type</span> <span class="keyword">const</span> <span class="special">*</span> lhs<span class="special">,</span>
<a class="link" href="../boost/xpressive/sub_match.html" title="Struct template sub_match">sub_match</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="keyword">const</span> <span class="special">&</span> rhs<span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> BidiIter<span class="special">></span>
<span class="keyword">bool</span> <a name="boost.xpressive.operator!=_idp168445432"></a><span class="keyword">operator</span><span class="special">!=</span><span class="special">(</span><span class="keyword">typename</span> <span class="identifier">iterator_value</span><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span><span class="special">::</span><span class="identifier">type</span> <span class="keyword">const</span> <span class="special">*</span> lhs<span class="special">,</span>
<a class="link" href="../boost/xpressive/sub_match.html" title="Struct template sub_match">sub_match</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="keyword">const</span> <span class="special">&</span> rhs<span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> BidiIter<span class="special">></span>
<span class="keyword">bool</span> <a name="boost.xpressive.operator_idp168447064"></a><span class="keyword">operator</span><span class="special"><</span><span class="special">(</span><span class="keyword">typename</span> <span class="identifier">iterator_value</span><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span><span class="special">::</span><span class="identifier">type</span> <span class="keyword">const</span> <span class="special">*</span> lhs<span class="special">,</span>
<a class="link" href="../boost/xpressive/sub_match.html" title="Struct template sub_match">sub_match</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="keyword">const</span> <span class="special">&</span> rhs<span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> BidiIter<span class="special">></span>
<span class="keyword">bool</span> <a name="boost.xpressive.operator_idp168448696"></a><span class="keyword">operator</span><span class="special">></span><span class="special">(</span><span class="keyword">typename</span> <span class="identifier">iterator_value</span><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span><span class="special">::</span><span class="identifier">type</span> <span class="keyword">const</span> <span class="special">*</span> lhs<span class="special">,</span>
<a class="link" href="../boost/xpressive/sub_match.html" title="Struct template sub_match">sub_match</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="keyword">const</span> <span class="special">&</span> rhs<span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> BidiIter<span class="special">></span>
<span class="keyword">bool</span> <a name="boost.xpressive.operator_=_idp168450328"></a><span class="keyword">operator</span><span class="special">>=</span><span class="special">(</span><span class="keyword">typename</span> <span class="identifier">iterator_value</span><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span><span class="special">::</span><span class="identifier">type</span> <span class="keyword">const</span> <span class="special">*</span> lhs<span class="special">,</span>
<a class="link" href="../boost/xpressive/sub_match.html" title="Struct template sub_match">sub_match</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="keyword">const</span> <span class="special">&</span> rhs<span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> BidiIter<span class="special">></span>
<span class="keyword">bool</span> <a name="boost.xpressive.operator_=_idp168451960"></a><span class="keyword">operator</span><span class="special"><=</span><span class="special">(</span><span class="keyword">typename</span> <span class="identifier">iterator_value</span><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span><span class="special">::</span><span class="identifier">type</span> <span class="keyword">const</span> <span class="special">*</span> lhs<span class="special">,</span>
<a class="link" href="../boost/xpressive/sub_match.html" title="Struct template sub_match">sub_match</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="keyword">const</span> <span class="special">&</span> rhs<span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> BidiIter<span class="special">></span>
<span class="keyword">bool</span> <a name="boost.xpressive.operator==_idp168453592"></a><span class="keyword">operator</span><span class="special">==</span><span class="special">(</span><a class="link" href="../boost/xpressive/sub_match.html" title="Struct template sub_match">sub_match</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="keyword">const</span> <span class="special">&</span> lhs<span class="special">,</span>
<span class="keyword">typename</span> <span class="identifier">iterator_value</span><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span><span class="special">::</span><span class="identifier">type</span> <span class="keyword">const</span> <span class="special">*</span> rhs<span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> BidiIter<span class="special">></span>
<span class="keyword">bool</span> <a name="boost.xpressive.operator!=_idp168455224"></a><span class="keyword">operator</span><span class="special">!=</span><span class="special">(</span><a class="link" href="../boost/xpressive/sub_match.html" title="Struct template sub_match">sub_match</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="keyword">const</span> <span class="special">&</span> lhs<span class="special">,</span>
<span class="keyword">typename</span> <span class="identifier">iterator_value</span><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span><span class="special">::</span><span class="identifier">type</span> <span class="keyword">const</span> <span class="special">*</span> rhs<span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> BidiIter<span class="special">></span>
<span class="keyword">bool</span> <a name="boost.xpressive.operator_idp168456856"></a><span class="keyword">operator</span><span class="special"><</span><span class="special">(</span><a class="link" href="../boost/xpressive/sub_match.html" title="Struct template sub_match">sub_match</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="keyword">const</span> <span class="special">&</span> lhs<span class="special">,</span>
<span class="keyword">typename</span> <span class="identifier">iterator_value</span><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span><span class="special">::</span><span class="identifier">type</span> <span class="keyword">const</span> <span class="special">*</span> rhs<span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> BidiIter<span class="special">></span>
<span class="keyword">bool</span> <a name="boost.xpressive.operator_idp168458488"></a><span class="keyword">operator</span><span class="special">></span><span class="special">(</span><a class="link" href="../boost/xpressive/sub_match.html" title="Struct template sub_match">sub_match</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="keyword">const</span> <span class="special">&</span> lhs<span class="special">,</span>
<span class="keyword">typename</span> <span class="identifier">iterator_value</span><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span><span class="special">::</span><span class="identifier">type</span> <span class="keyword">const</span> <span class="special">*</span> rhs<span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> BidiIter<span class="special">></span>
<span class="keyword">bool</span> <a name="boost.xpressive.operator_=_idp168460120"></a><span class="keyword">operator</span><span class="special">>=</span><span class="special">(</span><a class="link" href="../boost/xpressive/sub_match.html" title="Struct template sub_match">sub_match</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="keyword">const</span> <span class="special">&</span> lhs<span class="special">,</span>
<span class="keyword">typename</span> <span class="identifier">iterator_value</span><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span><span class="special">::</span><span class="identifier">type</span> <span class="keyword">const</span> <span class="special">*</span> rhs<span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> BidiIter<span class="special">></span>
<span class="keyword">bool</span> <a name="boost.xpressive.operator_=_idp168461752"></a><span class="keyword">operator</span><span class="special"><=</span><span class="special">(</span><a class="link" href="../boost/xpressive/sub_match.html" title="Struct template sub_match">sub_match</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="keyword">const</span> <span class="special">&</span> lhs<span class="special">,</span>
<span class="keyword">typename</span> <span class="identifier">iterator_value</span><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span><span class="special">::</span><span class="identifier">type</span> <span class="keyword">const</span> <span class="special">*</span> rhs<span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> BidiIter<span class="special">></span>
<span class="keyword">bool</span> <a name="boost.xpressive.operator==_idp168463384"></a><span class="keyword">operator</span><span class="special">==</span><span class="special">(</span><span class="keyword">typename</span> <span class="identifier">iterator_value</span><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span><span class="special">::</span><span class="identifier">type</span> <span class="keyword">const</span> <span class="special">&</span> lhs<span class="special">,</span>
<a class="link" href="../boost/xpressive/sub_match.html" title="Struct template sub_match">sub_match</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="keyword">const</span> <span class="special">&</span> rhs<span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> BidiIter<span class="special">></span>
<span class="keyword">bool</span> <a name="boost.xpressive.operator!=_idp168465016"></a><span class="keyword">operator</span><span class="special">!=</span><span class="special">(</span><span class="keyword">typename</span> <span class="identifier">iterator_value</span><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span><span class="special">::</span><span class="identifier">type</span> <span class="keyword">const</span> <span class="special">&</span> lhs<span class="special">,</span>
<a class="link" href="../boost/xpressive/sub_match.html" title="Struct template sub_match">sub_match</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="keyword">const</span> <span class="special">&</span> rhs<span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> BidiIter<span class="special">></span>
<span class="keyword">bool</span> <a name="boost.xpressive.operator_idp168466648"></a><span class="keyword">operator</span><span class="special"><</span><span class="special">(</span><span class="keyword">typename</span> <span class="identifier">iterator_value</span><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span><span class="special">::</span><span class="identifier">type</span> <span class="keyword">const</span> <span class="special">&</span> lhs<span class="special">,</span>
<a class="link" href="../boost/xpressive/sub_match.html" title="Struct template sub_match">sub_match</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="keyword">const</span> <span class="special">&</span> rhs<span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> BidiIter<span class="special">></span>
<span class="keyword">bool</span> <a name="boost.xpressive.operator_idp168468280"></a><span class="keyword">operator</span><span class="special">></span><span class="special">(</span><span class="keyword">typename</span> <span class="identifier">iterator_value</span><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span><span class="special">::</span><span class="identifier">type</span> <span class="keyword">const</span> <span class="special">&</span> lhs<span class="special">,</span>
<a class="link" href="../boost/xpressive/sub_match.html" title="Struct template sub_match">sub_match</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="keyword">const</span> <span class="special">&</span> rhs<span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> BidiIter<span class="special">></span>
<span class="keyword">bool</span> <a name="boost.xpressive.operator_=_idp168469912"></a><span class="keyword">operator</span><span class="special">>=</span><span class="special">(</span><span class="keyword">typename</span> <span class="identifier">iterator_value</span><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span><span class="special">::</span><span class="identifier">type</span> <span class="keyword">const</span> <span class="special">&</span> lhs<span class="special">,</span>
<a class="link" href="../boost/xpressive/sub_match.html" title="Struct template sub_match">sub_match</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="keyword">const</span> <span class="special">&</span> rhs<span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> BidiIter<span class="special">></span>
<span class="keyword">bool</span> <a name="boost.xpressive.operator_=_idp168471544"></a><span class="keyword">operator</span><span class="special"><=</span><span class="special">(</span><span class="keyword">typename</span> <span class="identifier">iterator_value</span><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span><span class="special">::</span><span class="identifier">type</span> <span class="keyword">const</span> <span class="special">&</span> lhs<span class="special">,</span>
<a class="link" href="../boost/xpressive/sub_match.html" title="Struct template sub_match">sub_match</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="keyword">const</span> <span class="special">&</span> rhs<span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> BidiIter<span class="special">></span>
<span class="keyword">bool</span> <a name="boost.xpressive.operator==_idp168473176"></a><span class="keyword">operator</span><span class="special">==</span><span class="special">(</span><a class="link" href="../boost/xpressive/sub_match.html" title="Struct template sub_match">sub_match</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="keyword">const</span> <span class="special">&</span> lhs<span class="special">,</span>
<span class="keyword">typename</span> <span class="identifier">iterator_value</span><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span><span class="special">::</span><span class="identifier">type</span> <span class="keyword">const</span> <span class="special">&</span> rhs<span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> BidiIter<span class="special">></span>
<span class="keyword">bool</span> <a name="boost.xpressive.operator!=_idp168474808"></a><span class="keyword">operator</span><span class="special">!=</span><span class="special">(</span><a class="link" href="../boost/xpressive/sub_match.html" title="Struct template sub_match">sub_match</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="keyword">const</span> <span class="special">&</span> lhs<span class="special">,</span>
<span class="keyword">typename</span> <span class="identifier">iterator_value</span><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span><span class="special">::</span><span class="identifier">type</span> <span class="keyword">const</span> <span class="special">&</span> rhs<span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> BidiIter<span class="special">></span>
<span class="keyword">bool</span> <a name="boost.xpressive.operator_idp168476440"></a><span class="keyword">operator</span><span class="special"><</span><span class="special">(</span><a class="link" href="../boost/xpressive/sub_match.html" title="Struct template sub_match">sub_match</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="keyword">const</span> <span class="special">&</span> lhs<span class="special">,</span>
<span class="keyword">typename</span> <span class="identifier">iterator_value</span><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span><span class="special">::</span><span class="identifier">type</span> <span class="keyword">const</span> <span class="special">&</span> rhs<span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> BidiIter<span class="special">></span>
<span class="keyword">bool</span> <a name="boost.xpressive.operator_idp168478072"></a><span class="keyword">operator</span><span class="special">></span><span class="special">(</span><a class="link" href="../boost/xpressive/sub_match.html" title="Struct template sub_match">sub_match</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="keyword">const</span> <span class="special">&</span> lhs<span class="special">,</span>
<span class="keyword">typename</span> <span class="identifier">iterator_value</span><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span><span class="special">::</span><span class="identifier">type</span> <span class="keyword">const</span> <span class="special">&</span> rhs<span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> BidiIter<span class="special">></span>
<span class="keyword">bool</span> <a name="boost.xpressive.operator_=_idp168479704"></a><span class="keyword">operator</span><span class="special">>=</span><span class="special">(</span><a class="link" href="../boost/xpressive/sub_match.html" title="Struct template sub_match">sub_match</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="keyword">const</span> <span class="special">&</span> lhs<span class="special">,</span>
<span class="keyword">typename</span> <span class="identifier">iterator_value</span><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span><span class="special">::</span><span class="identifier">type</span> <span class="keyword">const</span> <span class="special">&</span> rhs<span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> BidiIter<span class="special">></span>
<span class="keyword">bool</span> <a name="boost.xpressive.operator_=_idp168481336"></a><span class="keyword">operator</span><span class="special"><=</span><span class="special">(</span><a class="link" href="../boost/xpressive/sub_match.html" title="Struct template sub_match">sub_match</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="keyword">const</span> <span class="special">&</span> lhs<span class="special">,</span>
<span class="keyword">typename</span> <span class="identifier">iterator_value</span><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span><span class="special">::</span><span class="identifier">type</span> <span class="keyword">const</span> <span class="special">&</span> rhs<span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> BidiIter<span class="special">></span>
<a class="link" href="../boost/xpressive/sub_match.html" title="Struct template sub_match">sub_match</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span><span class="special">::</span><span class="identifier">string_type</span>
<a name="boost.xpressive.operator+_idp168482968"></a><span class="keyword">operator</span><span class="special">+</span><span class="special">(</span><a class="link" href="../boost/xpressive/sub_match.html" title="Struct template sub_match">sub_match</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="keyword">const</span> <span class="special">&</span> lhs<span class="special">,</span>
<a class="link" href="../boost/xpressive/sub_match.html" title="Struct template sub_match">sub_match</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="keyword">const</span> <span class="special">&</span> rhs<span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> BidiIter<span class="special">></span>
<a class="link" href="../boost/xpressive/sub_match.html" title="Struct template sub_match">sub_match</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span><span class="special">::</span><span class="identifier">string_type</span>
<a name="boost.xpressive.operator+_idp168484872"></a><span class="keyword">operator</span><span class="special">+</span><span class="special">(</span><a class="link" href="../boost/xpressive/sub_match.html" title="Struct template sub_match">sub_match</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="keyword">const</span> <span class="special">&</span> lhs<span class="special">,</span>
<span class="keyword">typename</span> <span class="identifier">iterator_value</span><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span><span class="special">::</span><span class="identifier">type</span> <span class="keyword">const</span> <span class="special">&</span> rhs<span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> BidiIter<span class="special">></span>
<a class="link" href="../boost/xpressive/sub_match.html" title="Struct template sub_match">sub_match</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span><span class="special">::</span><span class="identifier">string_type</span>
<a name="boost.xpressive.operator+_idp168486664"></a><span class="keyword">operator</span><span class="special">+</span><span class="special">(</span><span class="keyword">typename</span> <span class="identifier">iterator_value</span><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span><span class="special">::</span><span class="identifier">type</span> <span class="keyword">const</span> <span class="special">&</span> lhs<span class="special">,</span>
<a class="link" href="../boost/xpressive/sub_match.html" title="Struct template sub_match">sub_match</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="keyword">const</span> <span class="special">&</span> rhs<span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> BidiIter<span class="special">></span>
<a class="link" href="../boost/xpressive/sub_match.html" title="Struct template sub_match">sub_match</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span><span class="special">::</span><span class="identifier">string_type</span>
<a name="boost.xpressive.operator+_idp168488456"></a><span class="keyword">operator</span><span class="special">+</span><span class="special">(</span><a class="link" href="../boost/xpressive/sub_match.html" title="Struct template sub_match">sub_match</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="keyword">const</span> <span class="special">&</span> lhs<span class="special">,</span>
<span class="keyword">typename</span> <span class="identifier">iterator_value</span><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span><span class="special">::</span><span class="identifier">type</span> <span class="keyword">const</span> <span class="special">*</span> rhs<span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> BidiIter<span class="special">></span>
<a class="link" href="../boost/xpressive/sub_match.html" title="Struct template sub_match">sub_match</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span><span class="special">::</span><span class="identifier">string_type</span>
<a name="boost.xpressive.operator+_idp168490248"></a><span class="keyword">operator</span><span class="special">+</span><span class="special">(</span><span class="keyword">typename</span> <span class="identifier">iterator_value</span><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span><span class="special">::</span><span class="identifier">type</span> <span class="keyword">const</span> <span class="special">*</span> lhs<span class="special">,</span>
<a class="link" href="../boost/xpressive/sub_match.html" title="Struct template sub_match">sub_match</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="keyword">const</span> <span class="special">&</span> rhs<span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> BidiIter<span class="special">></span>
<a class="link" href="../boost/xpressive/sub_match.html" title="Struct template sub_match">sub_match</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span><span class="special">::</span><span class="identifier">string_type</span>
<a name="boost.xpressive.operator+_idp168492040"></a><span class="keyword">operator</span><span class="special">+</span><span class="special">(</span><a class="link" href="../boost/xpressive/sub_match.html" title="Struct template sub_match">sub_match</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="keyword">const</span> <span class="special">&</span> lhs<span class="special">,</span>
<span class="keyword">typename</span> <a class="link" href="../boost/xpressive/sub_match.html" title="Struct template sub_match">sub_match</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span><span class="special">::</span><span class="identifier">string_type</span> <span class="keyword">const</span> <span class="special">&</span> rhs<span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> BidiIter<span class="special">></span>
<a class="link" href="../boost/xpressive/sub_match.html" title="Struct template sub_match">sub_match</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span><span class="special">::</span><span class="identifier">string_type</span>
<a name="boost.xpressive.operator+_idp168494040"></a><span class="keyword">operator</span><span class="special">+</span><span class="special">(</span><span class="keyword">typename</span> <a class="link" href="../boost/xpressive/sub_match.html" title="Struct template sub_match">sub_match</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span><span class="special">::</span><span class="identifier">string_type</span> <span class="keyword">const</span> <span class="special">&</span> lhs<span class="special">,</span>
<a class="link" href="../boost/xpressive/sub_match.html" title="Struct template sub_match">sub_match</a><span class="special"><</span> <span class="identifier">BidiIter</span> <span class="special">></span> <span class="keyword">const</span> <span class="special">&</span> rhs<span class="special">)</span><span class="special">;</span>
<span class="special">}</span>
<span class="special">}</span></pre>
</div>
<div class="section">
<div class="titlepage"><div><div><h3 class="title">
<a name="header.boost.xpressive.traits.c_regex_traits_hpp"></a>Header <<a href="../../../boost/xpressive/traits/c_regex_traits.hpp" target="_top">boost/xpressive/traits/c_regex_traits.hpp</a>></h3></div></div></div>
<p>Contains the definition of the c_regex_traits<> template, which is a wrapper for the C locale functions that can be used to customize the behavior of static and dynamic regexes. </p>
</div>
<div class="section">
<div class="titlepage"><div><div><h3 class="title">
<a name="header.boost.xpressive.traits.cpp_regex_traits_hpp"></a>Header <<a href="../../../boost/xpressive/traits/cpp_regex_traits.hpp" target="_top">boost/xpressive/traits/cpp_regex_traits.hpp</a>></h3></div></div></div>
<p>Contains the definition of the cpp_regex_traits<> template, which is a wrapper for std::locale that can be used to customize the behavior of static and dynamic regexes. </p>
</div>
<div class="section">
<div class="titlepage"><div><div><h3 class="title">
<a name="header.boost.xpressive.traits.null_regex_traits_hpp"></a>Header <<a href="../../../boost/xpressive/traits/null_regex_traits.hpp" target="_top">boost/xpressive/traits/null_regex_traits.hpp</a>></h3></div></div></div>
<p>Contains the definition of the null_regex_traits<> template, which is a stub regex traits implementation that can be used by static and dynamic regexes for searching non-character data. </p>
</div>
<div class="section">
<div class="titlepage"><div><div><h3 class="title">
<a name="header.boost.xpressive.xpressive_hpp"></a>Header <<a href="../../../boost/xpressive/xpressive.hpp" target="_top">boost/xpressive/xpressive.hpp</a>></h3></div></div></div>
<p>Includes all of xpressive including support for both static and dynamic regular expressions. </p>
</div>
<div class="section">
<div class="titlepage"><div><div><h3 class="title">
<a name="header.boost.xpressive.xpressive_dynamic_hpp"></a>Header <<a href="../../../boost/xpressive/xpressive_dynamic.hpp" target="_top">boost/xpressive/xpressive_dynamic.hpp</a>></h3></div></div></div>
<p>Includes everything you need to write and use dynamic regular expressions. </p>
</div>
<div class="section">
<div class="titlepage"><div><div><h3 class="title">
<a name="header.boost.xpressive.xpressive_fwd_hpp"></a>Header <<a href="../../../boost/xpressive/xpressive_fwd.hpp" target="_top">boost/xpressive/xpressive_fwd.hpp</a>></h3></div></div></div>
<p>Forward declarations for all of xpressive's public data types. </p>
<pre class="synopsis">
<a class="link" href="../BOOST_PROTO_FUSION_V2.html" title="Macro BOOST_PROTO_FUSION_V2">BOOST_PROTO_FUSION_V2</a>
<a class="link" href="../BOOST_XPRESSIVE_HAS_MS_STACK_GUARD.html" title="Macro BOOST_XPRESSIVE_HAS_MS_STACK_GUARD">BOOST_XPRESSIVE_HAS_MS_STACK_GUARD</a></pre>
<pre class="synopsis"><span class="keyword">namespace</span> <span class="identifier">boost</span> <span class="special">{</span>
<span class="keyword">namespace</span> <span class="identifier">xpressive</span> <span class="special">{</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> Char<span class="special">></span> <span class="keyword">struct</span> <a class="link" href="../boost/xpressive/cpp_regex_traits.html" title="Struct template cpp_regex_traits">cpp_regex_traits</a><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> Char<span class="special">></span> <span class="keyword">struct</span> <a class="link" href="../boost/xpressive/c_regex_traits.html" title="Struct template c_regex_traits">c_regex_traits</a><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> Elem<span class="special">></span> <span class="keyword">struct</span> <a class="link" href="../boost/xpressive/null_regex_traits.html" title="Struct template null_regex_traits">null_regex_traits</a><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> RegexTraits<span class="special">></span> <span class="keyword">struct</span> <a class="link" href="../boost/xpressive/compiler_traits.html" title="Struct template compiler_traits">compiler_traits</a><span class="special">;</span>
<span class="keyword">typedef</span> <span class="keyword">void</span> <span class="keyword">const</span> <span class="special">*</span> <a name="boost.xpressive.regex_id_type"></a><span class="identifier">regex_id_type</span><span class="special">;</span>
<span class="keyword">typedef</span> <a class="link" href="../boost/xpressive/basic_regex.html" title="Struct template basic_regex">basic_regex</a><span class="special"><</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span><span class="special">::</span><span class="identifier">const_iterator</span> <span class="special">></span> <a name="boost.xpressive.sregex"></a><span class="identifier">sregex</span><span class="special">;</span>
<span class="keyword">typedef</span> <a class="link" href="../boost/xpressive/basic_regex.html" title="Struct template basic_regex">basic_regex</a><span class="special"><</span> <span class="keyword">char</span> <span class="keyword">const</span> <span class="special">*</span> <span class="special">></span> <a name="boost.xpressive.cregex"></a><span class="identifier">cregex</span><span class="special">;</span>
<span class="keyword">typedef</span> <a class="link" href="../boost/xpressive/basic_regex.html" title="Struct template basic_regex">basic_regex</a><span class="special"><</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">wstring</span><span class="special">::</span><span class="identifier">const_iterator</span> <span class="special">></span> <a name="boost.xpressive.wsregex"></a><span class="identifier">wsregex</span><span class="special">;</span>
<span class="keyword">typedef</span> <a class="link" href="../boost/xpressive/basic_regex.html" title="Struct template basic_regex">basic_regex</a><span class="special"><</span> <span class="keyword">wchar_t</span> <span class="keyword">const</span> <span class="special">*</span> <span class="special">></span> <a name="boost.xpressive.wcregex"></a><span class="identifier">wcregex</span><span class="special">;</span>
<span class="keyword">typedef</span> <a class="link" href="../boost/xpressive/sub_match.html" title="Struct template sub_match">sub_match</a><span class="special"><</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span><span class="special">::</span><span class="identifier">const_iterator</span> <span class="special">></span> <a name="boost.xpressive.ssub_match"></a><span class="identifier">ssub_match</span><span class="special">;</span>
<span class="keyword">typedef</span> <a class="link" href="../boost/xpressive/sub_match.html" title="Struct template sub_match">sub_match</a><span class="special"><</span> <span class="keyword">char</span> <span class="keyword">const</span> <span class="special">*</span> <span class="special">></span> <a name="boost.xpressive.csub_match"></a><span class="identifier">csub_match</span><span class="special">;</span>
<span class="keyword">typedef</span> <a class="link" href="../boost/xpressive/sub_match.html" title="Struct template sub_match">sub_match</a><span class="special"><</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">wstring</span><span class="special">::</span><span class="identifier">const_iterator</span> <span class="special">></span> <a name="boost.xpressive.wssub_match"></a><span class="identifier">wssub_match</span><span class="special">;</span>
<span class="keyword">typedef</span> <a class="link" href="../boost/xpressive/sub_match.html" title="Struct template sub_match">sub_match</a><span class="special"><</span> <span class="keyword">wchar_t</span> <span class="keyword">const</span> <span class="special">*</span> <span class="special">></span> <a name="boost.xpressive.wcsub_match"></a><span class="identifier">wcsub_match</span><span class="special">;</span>
<span class="keyword">typedef</span> <a class="link" href="../boost/xpressive/regex_compiler.html" title="Struct template regex_compiler">regex_compiler</a><span class="special"><</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span><span class="special">::</span><span class="identifier">const_iterator</span> <span class="special">></span> <a name="boost.xpressive.sregex_compiler"></a><span class="identifier">sregex_compiler</span><span class="special">;</span>
<span class="keyword">typedef</span> <a class="link" href="../boost/xpressive/regex_compiler.html" title="Struct template regex_compiler">regex_compiler</a><span class="special"><</span> <span class="keyword">char</span> <span class="keyword">const</span> <span class="special">*</span> <span class="special">></span> <a name="boost.xpressive.cregex_compiler"></a><span class="identifier">cregex_compiler</span><span class="special">;</span>
<span class="keyword">typedef</span> <a class="link" href="../boost/xpressive/regex_compiler.html" title="Struct template regex_compiler">regex_compiler</a><span class="special"><</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">wstring</span><span class="special">::</span><span class="identifier">const_iterator</span> <span class="special">></span> <a name="boost.xpressive.wsregex_compiler"></a><span class="identifier">wsregex_compiler</span><span class="special">;</span>
<span class="keyword">typedef</span> <a class="link" href="../boost/xpressive/regex_compiler.html" title="Struct template regex_compiler">regex_compiler</a><span class="special"><</span> <span class="keyword">wchar_t</span> <span class="keyword">const</span> <span class="special">*</span> <span class="special">></span> <a name="boost.xpressive.wcregex_compiler"></a><span class="identifier">wcregex_compiler</span><span class="special">;</span>
<span class="keyword">typedef</span> <a class="link" href="../boost/xpressive/regex_iterator.html" title="Struct template regex_iterator">regex_iterator</a><span class="special"><</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span><span class="special">::</span><span class="identifier">const_iterator</span> <span class="special">></span> <a name="boost.xpressive.sregex_iterator"></a><span class="identifier">sregex_iterator</span><span class="special">;</span>
<span class="keyword">typedef</span> <a class="link" href="../boost/xpressive/regex_iterator.html" title="Struct template regex_iterator">regex_iterator</a><span class="special"><</span> <span class="keyword">char</span> <span class="keyword">const</span> <span class="special">*</span> <span class="special">></span> <a name="boost.xpressive.cregex_iterator"></a><span class="identifier">cregex_iterator</span><span class="special">;</span>
<span class="keyword">typedef</span> <a class="link" href="../boost/xpressive/regex_iterator.html" title="Struct template regex_iterator">regex_iterator</a><span class="special"><</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">wstring</span><span class="special">::</span><span class="identifier">const_iterator</span> <span class="special">></span> <a name="boost.xpressive.wsregex_iterator"></a><span class="identifier">wsregex_iterator</span><span class="special">;</span>
<span class="keyword">typedef</span> <a class="link" href="../boost/xpressive/regex_iterator.html" title="Struct template regex_iterator">regex_iterator</a><span class="special"><</span> <span class="keyword">wchar_t</span> <span class="keyword">const</span> <span class="special">*</span> <span class="special">></span> <a name="boost.xpressive.wcregex_iterator"></a><span class="identifier">wcregex_iterator</span><span class="special">;</span>
<span class="keyword">typedef</span> <a class="link" href="../boost/xpressive/regex_token_iterator.html" title="Struct template regex_token_iterator">regex_token_iterator</a><span class="special"><</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span><span class="special">::</span><span class="identifier">const_iterator</span> <span class="special">></span> <a name="boost.xpressive.sregex_token_iterator"></a><span class="identifier">sregex_token_iterator</span><span class="special">;</span>
<span class="keyword">typedef</span> <a class="link" href="../boost/xpressive/regex_token_iterator.html" title="Struct template regex_token_iterator">regex_token_iterator</a><span class="special"><</span> <span class="keyword">char</span> <span class="keyword">const</span> <span class="special">*</span> <span class="special">></span> <a name="boost.xpressive.cregex_token_iterator"></a><span class="identifier">cregex_token_iterator</span><span class="special">;</span>
<span class="keyword">typedef</span> <a class="link" href="../boost/xpressive/regex_token_iterator.html" title="Struct template regex_token_iterator">regex_token_iterator</a><span class="special"><</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">wstring</span><span class="special">::</span><span class="identifier">const_iterator</span> <span class="special">></span> <a name="boost.xpressive.wsregex_token_iterator"></a><span class="identifier">wsregex_token_iterator</span><span class="special">;</span>
<span class="keyword">typedef</span> <a class="link" href="../boost/xpressive/regex_token_iterator.html" title="Struct template regex_token_iterator">regex_token_iterator</a><span class="special"><</span> <span class="keyword">wchar_t</span> <span class="keyword">const</span> <span class="special">*</span> <span class="special">></span> <a name="boost.xpressive.wcregex_token_iterator"></a><span class="identifier">wcregex_token_iterator</span><span class="special">;</span>
<span class="keyword">typedef</span> <a class="link" href="../boost/xpressive/match_results.html" title="Struct template match_results">match_results</a><span class="special"><</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span><span class="special">::</span><span class="identifier">const_iterator</span> <span class="special">></span> <a name="boost.xpressive.smatch"></a><span class="identifier">smatch</span><span class="special">;</span>
<span class="keyword">typedef</span> <a class="link" href="../boost/xpressive/match_results.html" title="Struct template match_results">match_results</a><span class="special"><</span> <span class="keyword">char</span> <span class="keyword">const</span> <span class="special">*</span> <span class="special">></span> <a name="boost.xpressive.cmatch"></a><span class="identifier">cmatch</span><span class="special">;</span>
<span class="keyword">typedef</span> <a class="link" href="../boost/xpressive/match_results.html" title="Struct template match_results">match_results</a><span class="special"><</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">wstring</span><span class="special">::</span><span class="identifier">const_iterator</span> <span class="special">></span> <a name="boost.xpressive.wsmatch"></a><span class="identifier">wsmatch</span><span class="special">;</span>
<span class="keyword">typedef</span> <a class="link" href="../boost/xpressive/match_results.html" title="Struct template match_results">match_results</a><span class="special"><</span> <span class="keyword">wchar_t</span> <span class="keyword">const</span> <span class="special">*</span> <span class="special">></span> <a name="boost.xpressive.wcmatch"></a><span class="identifier">wcmatch</span><span class="special">;</span>
<span class="keyword">typedef</span> <a class="link" href="../boost/xpressive/regex_id_filter_predicate.html" title="Struct template regex_id_filter_predicate">regex_id_filter_predicate</a><span class="special"><</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span><span class="special">::</span><span class="identifier">const_iterator</span> <span class="special">></span> <a name="boost.xpressive.sregex_id_filter_predicate"></a><span class="identifier">sregex_id_filter_predicate</span><span class="special">;</span>
<span class="keyword">typedef</span> <a class="link" href="../boost/xpressive/regex_id_filter_predicate.html" title="Struct template regex_id_filter_predicate">regex_id_filter_predicate</a><span class="special"><</span> <span class="keyword">char</span> <span class="keyword">const</span> <span class="special">*</span> <span class="special">></span> <a name="boost.xpressive.cregex_id_filter_predicate"></a><span class="identifier">cregex_id_filter_predicate</span><span class="special">;</span>
<span class="keyword">typedef</span> <a class="link" href="../boost/xpressive/regex_id_filter_predicate.html" title="Struct template regex_id_filter_predicate">regex_id_filter_predicate</a><span class="special"><</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">wstring</span><span class="special">::</span><span class="identifier">const_iterator</span> <span class="special">></span> <a name="boost.xpressive.wsregex_id_fi_idp168651544"></a><span class="identifier">wsregex_id_filter_predicate</span><span class="special">;</span>
<span class="keyword">typedef</span> <a class="link" href="../boost/xpressive/regex_id_filter_predicate.html" title="Struct template regex_id_filter_predicate">regex_id_filter_predicate</a><span class="special"><</span> <span class="keyword">wchar_t</span> <span class="keyword">const</span> <span class="special">*</span> <span class="special">></span> <a name="boost.xpressive.wcregex_id_fi_idp168652088"></a><span class="identifier">wcregex_id_filter_predicate</span><span class="special">;</span>
<span class="keyword">namespace</span> <span class="identifier">op</span> <span class="special">{</span>
<span class="special">}</span>
<span class="special">}</span>
<span class="special">}</span></pre>
</div>
<div class="section">
<div class="titlepage"><div><div><h3 class="title">
<a name="header.boost.xpressive.xpressive_static_hpp"></a>Header <<a href="../../../boost/xpressive/xpressive_static.hpp" target="_top">boost/xpressive/xpressive_static.hpp</a>></h3></div></div></div>
<p>Includes everything you need to write static regular expressions and use them. </p>
</div>
<div class="section">
<div class="titlepage"><div><div><h3 class="title">
<a name="header.boost.xpressive.xpressive_typeof_hpp"></a>Header <<a href="../../../boost/xpressive/xpressive_typeof.hpp" target="_top">boost/xpressive/xpressive_typeof.hpp</a>></h3></div></div></div>
<p>Type registrations so that xpressive can be used with the Boost.Typeof library. </p>
</div>
</div>
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
<td align="left"></td>
<td align="right"><div class="copyright-footer">Copyright © 2007 Eric Niebler<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="user_s_guide.html"><img src="../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../xpressive.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="../boost/xpressive/basic_regex.html"><img src="../../../doc/src/images/next.png" alt="Next"></a>
</div>
</body>
</html>
|
api/class-Doctrine.Tests.Common.Cache.MemcachedCacheTest.html | Tecnocreaciones/VzlaGovernmentTemplateDeveloperSeed | <!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="ApiGen 2.8.0" />
<title>Class Doctrine\Tests\Common\Cache\MemcachedCacheTest | 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 class="active"><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 class="active"><a href="namespace-Doctrine.Tests.html">Tests<span></span></a>
<ul>
<li class="active"><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 class="active"><a href="namespace-Doctrine.Tests.Common.Cache.html">Cache</a>
</li>
<li><a href="namespace-Doctrine.Tests.Common.Collections.html">Collections</a>
</li>
<li><a href="namespace-Doctrine.Tests.Common.DataFixtures.html">DataFixtures<span></span></a>
<ul>
<li><a href="namespace-Doctrine.Tests.Common.DataFixtures.Executor.html">Executor</a>
</li>
<li><a href="namespace-Doctrine.Tests.Common.DataFixtures.TestEntity.html">TestEntity</a>
</li>
<li><a href="namespace-Doctrine.Tests.Common.DataFixtures.TestFixtures.html">TestFixtures</a>
</li>
</ul></li>
<li><a href="namespace-Doctrine.Tests.Common.Inflector.html">Inflector</a>
</li>
<li><a href="namespace-Doctrine.Tests.Common.Persistence.html">Persistence<span></span></a>
<ul>
<li><a href="namespace-Doctrine.Tests.Common.Persistence.Mapping.html">Mapping</a>
</li>
</ul></li>
<li><a href="namespace-Doctrine.Tests.Common.Proxy.html">Proxy</a>
</li>
<li><a href="namespace-Doctrine.Tests.Common.Reflection.html">Reflection<span></span></a>
<ul>
<li><a href="namespace-Doctrine.Tests.Common.Reflection.Dummies.html">Dummies</a>
</li>
</ul></li>
<li><a href="namespace-Doctrine.Tests.Common.Util.html">Util</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-Entity.html">Entity<span></span></a>
<ul>
<li><a href="namespace-Entity.Repository.html">Repository</a>
</li>
</ul></li>
<li><a href="namespace-Fixtures.html">Fixtures<span></span></a>
<ul>
<li><a href="namespace-Fixtures.Bundles.html">Bundles<span></span></a>
<ul>
<li><a href="namespace-Fixtures.Bundles.AnnotationsBundle.html">AnnotationsBundle<span></span></a>
<ul>
<li><a href="namespace-Fixtures.Bundles.AnnotationsBundle.Entity.html">Entity</a>
</li>
</ul></li>
<li><a href="namespace-Fixtures.Bundles.Vendor.html">Vendor<span></span></a>
<ul>
<li><a href="namespace-Fixtures.Bundles.Vendor.AnnotationsBundle.html">AnnotationsBundle<span></span></a>
<ul>
<li><a href="namespace-Fixtures.Bundles.Vendor.AnnotationsBundle.Entity.html">Entity</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Fixtures.Bundles.XmlBundle.html">XmlBundle<span></span></a>
<ul>
<li><a href="namespace-Fixtures.Bundles.XmlBundle.Entity.html">Entity</a>
</li>
</ul></li>
<li><a href="namespace-Fixtures.Bundles.YamlBundle.html">YamlBundle<span></span></a>
<ul>
<li><a href="namespace-Fixtures.Bundles.YamlBundle.Entity.html">Entity</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-Foo.html">Foo<span></span></a>
<ul>
<li><a href="namespace-Foo.Bar.html">Bar</a>
</li>
</ul></li>
<li><a href="namespace-FOS.html">FOS<span></span></a>
<ul>
<li><a href="namespace-FOS.RestBundle.html">RestBundle<span></span></a>
<ul>
<li><a href="namespace-FOS.RestBundle.Controller.html">Controller<span></span></a>
<ul>
<li><a href="namespace-FOS.RestBundle.Controller.Annotations.html">Annotations</a>
</li>
</ul></li>
<li><a href="namespace-FOS.RestBundle.Decoder.html">Decoder</a>
</li>
<li><a href="namespace-FOS.RestBundle.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-FOS.RestBundle.DependencyInjection.Compiler.html">Compiler</a>
</li>
</ul></li>
<li><a href="namespace-FOS.RestBundle.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-FOS.RestBundle.Examples.html">Examples</a>
</li>
<li><a href="namespace-FOS.RestBundle.Form.html">Form<span></span></a>
<ul>
<li><a href="namespace-FOS.RestBundle.Form.Extension.html">Extension</a>
</li>
</ul></li>
<li><a href="namespace-FOS.RestBundle.Normalizer.html">Normalizer<span></span></a>
<ul>
<li><a href="namespace-FOS.RestBundle.Normalizer.Exception.html">Exception</a>
</li>
</ul></li>
<li><a href="namespace-FOS.RestBundle.Request.html">Request</a>
</li>
<li><a href="namespace-FOS.RestBundle.Response.html">Response<span></span></a>
<ul>
<li><a href="namespace-FOS.RestBundle.Response.AllowedMethodsLoader.html">AllowedMethodsLoader</a>
</li>
</ul></li>
<li><a href="namespace-FOS.RestBundle.Routing.html">Routing<span></span></a>
<ul>
<li><a href="namespace-FOS.RestBundle.Routing.Loader.html">Loader<span></span></a>
<ul>
<li><a href="namespace-FOS.RestBundle.Routing.Loader.Reader.html">Reader</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-FOS.RestBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-FOS.RestBundle.Tests.Controller.html">Controller<span></span></a>
<ul>
<li><a href="namespace-FOS.RestBundle.Tests.Controller.Annotations.html">Annotations</a>
</li>
</ul></li>
<li><a href="namespace-FOS.RestBundle.Tests.Decoder.html">Decoder</a>
</li>
<li><a href="namespace-FOS.RestBundle.Tests.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-FOS.RestBundle.Tests.DependencyInjection.Compiler.html">Compiler</a>
</li>
</ul></li>
<li><a href="namespace-FOS.RestBundle.Tests.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-FOS.RestBundle.Tests.Fixtures.html">Fixtures<span></span></a>
<ul>
<li><a href="namespace-FOS.RestBundle.Tests.Fixtures.Controller.html">Controller</a>
</li>
</ul></li>
<li><a href="namespace-FOS.RestBundle.Tests.Normalizer.html">Normalizer</a>
</li>
<li><a href="namespace-FOS.RestBundle.Tests.Request.html">Request</a>
</li>
<li><a href="namespace-FOS.RestBundle.Tests.Routing.html">Routing<span></span></a>
<ul>
<li><a href="namespace-FOS.RestBundle.Tests.Routing.Loader.html">Loader</a>
</li>
</ul></li>
<li><a href="namespace-FOS.RestBundle.Tests.Util.html">Util</a>
</li>
<li><a href="namespace-FOS.RestBundle.Tests.View.html">View</a>
</li>
</ul></li>
<li><a href="namespace-FOS.RestBundle.Util.html">Util<span></span></a>
<ul>
<li><a href="namespace-FOS.RestBundle.Util.Inflector.html">Inflector</a>
</li>
</ul></li>
<li><a href="namespace-FOS.RestBundle.View.html">View</a>
</li>
</ul></li>
<li><a href="namespace-FOS.UserBundle.html">UserBundle<span></span></a>
<ul>
<li><a href="namespace-FOS.UserBundle.Command.html">Command</a>
</li>
<li><a href="namespace-FOS.UserBundle.Controller.html">Controller</a>
</li>
<li><a href="namespace-FOS.UserBundle.CouchDocument.html">CouchDocument</a>
</li>
<li><a href="namespace-FOS.UserBundle.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-FOS.UserBundle.DependencyInjection.Compiler.html">Compiler</a>
</li>
</ul></li>
<li><a href="namespace-FOS.UserBundle.Doctrine.html">Doctrine</a>
</li>
<li><a href="namespace-FOS.UserBundle.Document.html">Document</a>
</li>
<li><a href="namespace-FOS.UserBundle.Entity.html">Entity</a>
</li>
<li><a href="namespace-FOS.UserBundle.Form.html">Form<span></span></a>
<ul>
<li><a href="namespace-FOS.UserBundle.Form.DataTransformer.html">DataTransformer</a>
</li>
<li><a href="namespace-FOS.UserBundle.Form.Handler.html">Handler</a>
</li>
<li><a href="namespace-FOS.UserBundle.Form.Model.html">Model</a>
</li>
<li><a href="namespace-FOS.UserBundle.Form.Type.html">Type</a>
</li>
</ul></li>
<li><a href="namespace-FOS.UserBundle.Mailer.html">Mailer</a>
</li>
<li><a href="namespace-FOS.UserBundle.Model.html">Model</a>
</li>
<li><a href="namespace-FOS.UserBundle.Propel.html">Propel</a>
</li>
<li><a href="namespace-FOS.UserBundle.Security.html">Security</a>
</li>
<li><a href="namespace-FOS.UserBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-FOS.UserBundle.Tests.DependencyInjection.html">DependencyInjection</a>
</li>
<li><a href="namespace-FOS.UserBundle.Tests.Doctrine.html">Doctrine</a>
</li>
<li><a href="namespace-FOS.UserBundle.Tests.Model.html">Model</a>
</li>
<li><a href="namespace-FOS.UserBundle.Tests.Security.html">Security</a>
</li>
<li><a href="namespace-FOS.UserBundle.Tests.Util.html">Util</a>
</li>
</ul></li>
<li><a href="namespace-FOS.UserBundle.Util.html">Util</a>
</li>
<li><a href="namespace-FOS.UserBundle.Validator.html">Validator</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Gedmo.html">Gedmo<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Blameable.html">Blameable<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Blameable.Mapping.html">Mapping<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Blameable.Mapping.Driver.html">Driver</a>
</li>
<li><a href="namespace-Gedmo.Blameable.Mapping.Event.html">Event<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Blameable.Mapping.Event.Adapter.html">Adapter</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Gedmo.Blameable.Traits.html">Traits</a>
</li>
</ul></li>
<li><a href="namespace-Gedmo.Exception.html">Exception</a>
</li>
<li><a href="namespace-Gedmo.IpTraceable.html">IpTraceable<span></span></a>
<ul>
<li><a href="namespace-Gedmo.IpTraceable.Mapping.html">Mapping<span></span></a>
<ul>
<li><a href="namespace-Gedmo.IpTraceable.Mapping.Driver.html">Driver</a>
</li>
<li><a href="namespace-Gedmo.IpTraceable.Mapping.Event.html">Event<span></span></a>
<ul>
<li><a href="namespace-Gedmo.IpTraceable.Mapping.Event.Adapter.html">Adapter</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Gedmo.IpTraceable.Traits.html">Traits</a>
</li>
</ul></li>
<li><a href="namespace-Gedmo.Loggable.html">Loggable<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Loggable.Document.html">Document<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Loggable.Document.MappedSuperclass.html">MappedSuperclass</a>
</li>
<li><a href="namespace-Gedmo.Loggable.Document.Repository.html">Repository</a>
</li>
</ul></li>
<li><a href="namespace-Gedmo.Loggable.Entity.html">Entity<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Loggable.Entity.MappedSuperclass.html">MappedSuperclass</a>
</li>
<li><a href="namespace-Gedmo.Loggable.Entity.Repository.html">Repository</a>
</li>
</ul></li>
<li><a href="namespace-Gedmo.Loggable.Mapping.html">Mapping<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Loggable.Mapping.Driver.html">Driver</a>
</li>
<li><a href="namespace-Gedmo.Loggable.Mapping.Event.html">Event<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Loggable.Mapping.Event.Adapter.html">Adapter</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-Gedmo.Mapping.html">Mapping<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Mapping.Annotation.html">Annotation</a>
</li>
<li><a href="namespace-Gedmo.Mapping.Driver.html">Driver</a>
</li>
<li><a href="namespace-Gedmo.Mapping.Event.html">Event<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Mapping.Event.Adapter.html">Adapter</a>
</li>
</ul></li>
<li><a href="namespace-Gedmo.Mapping.Mock.html">Mock<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Mapping.Mock.Extension.html">Extension<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Mapping.Mock.Extension.Encoder.html">Encoder<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Mapping.Mock.Extension.Encoder.Mapping.html">Mapping<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Mapping.Mock.Extension.Encoder.Mapping.Driver.html">Driver</a>
</li>
<li><a href="namespace-Gedmo.Mapping.Mock.Extension.Encoder.Mapping.Event.html">Event<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Mapping.Mock.Extension.Encoder.Mapping.Event.Adapter.html">Adapter</a>
</li>
</ul></li></ul></li></ul></li></ul></li>
<li><a href="namespace-Gedmo.Mapping.Mock.Mapping.html">Mapping<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Mapping.Mock.Mapping.Event.html">Event<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Mapping.Mock.Mapping.Event.Adapter.html">Adapter</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-Gedmo.Mapping.Xml.html">Xml</a>
</li>
</ul></li>
<li><a href="namespace-Gedmo.ReferenceIntegrity.html">ReferenceIntegrity<span></span></a>
<ul>
<li><a href="namespace-Gedmo.ReferenceIntegrity.Mapping.html">Mapping<span></span></a>
<ul>
<li><a href="namespace-Gedmo.ReferenceIntegrity.Mapping.Driver.html">Driver</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Gedmo.References.html">References<span></span></a>
<ul>
<li><a href="namespace-Gedmo.References.Mapping.html">Mapping<span></span></a>
<ul>
<li><a href="namespace-Gedmo.References.Mapping.Driver.html">Driver</a>
</li>
<li><a href="namespace-Gedmo.References.Mapping.Event.html">Event<span></span></a>
<ul>
<li><a href="namespace-Gedmo.References.Mapping.Event.Adapter.html">Adapter</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-Gedmo.Sluggable.html">Sluggable<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Sluggable.Handler.html">Handler</a>
</li>
<li><a href="namespace-Gedmo.Sluggable.Mapping.html">Mapping<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Sluggable.Mapping.Driver.html">Driver</a>
</li>
<li><a href="namespace-Gedmo.Sluggable.Mapping.Event.html">Event<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Sluggable.Mapping.Event.Adapter.html">Adapter</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Gedmo.Sluggable.Util.html">Util</a>
</li>
</ul></li>
<li><a href="namespace-Gedmo.SoftDeleteable.html">SoftDeleteable<span></span></a>
<ul>
<li><a href="namespace-Gedmo.SoftDeleteable.Filter.html">Filter<span></span></a>
<ul>
<li><a href="namespace-Gedmo.SoftDeleteable.Filter.ODM.html">ODM</a>
</li>
</ul></li>
<li><a href="namespace-Gedmo.SoftDeleteable.Mapping.html">Mapping<span></span></a>
<ul>
<li><a href="namespace-Gedmo.SoftDeleteable.Mapping.Driver.html">Driver</a>
</li>
<li><a href="namespace-Gedmo.SoftDeleteable.Mapping.Event.html">Event<span></span></a>
<ul>
<li><a href="namespace-Gedmo.SoftDeleteable.Mapping.Event.Adapter.html">Adapter</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Gedmo.SoftDeleteable.Query.html">Query<span></span></a>
<ul>
<li><a href="namespace-Gedmo.SoftDeleteable.Query.TreeWalker.html">TreeWalker<span></span></a>
<ul>
<li><a href="namespace-Gedmo.SoftDeleteable.Query.TreeWalker.Exec.html">Exec</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Gedmo.SoftDeleteable.Traits.html">Traits</a>
</li>
</ul></li>
<li><a href="namespace-Gedmo.Sortable.html">Sortable<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Sortable.Entity.html">Entity<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Sortable.Entity.Repository.html">Repository</a>
</li>
</ul></li>
<li><a href="namespace-Gedmo.Sortable.Mapping.html">Mapping<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Sortable.Mapping.Driver.html">Driver</a>
</li>
<li><a href="namespace-Gedmo.Sortable.Mapping.Event.html">Event<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Sortable.Mapping.Event.Adapter.html">Adapter</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-Gedmo.Timestampable.html">Timestampable<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Timestampable.Mapping.html">Mapping<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Timestampable.Mapping.Driver.html">Driver</a>
</li>
<li><a href="namespace-Gedmo.Timestampable.Mapping.Event.html">Event<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Timestampable.Mapping.Event.Adapter.html">Adapter</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Gedmo.Timestampable.Traits.html">Traits</a>
</li>
</ul></li>
<li><a href="namespace-Gedmo.Tool.html">Tool<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Tool.Logging.html">Logging<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Tool.Logging.DBAL.html">DBAL</a>
</li>
</ul></li>
<li><a href="namespace-Gedmo.Tool.Wrapper.html">Wrapper</a>
</li>
</ul></li>
<li><a href="namespace-Gedmo.Translatable.html">Translatable<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Translatable.Document.html">Document<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Translatable.Document.MappedSuperclass.html">MappedSuperclass</a>
</li>
<li><a href="namespace-Gedmo.Translatable.Document.Repository.html">Repository</a>
</li>
</ul></li>
<li><a href="namespace-Gedmo.Translatable.Entity.html">Entity<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Translatable.Entity.MappedSuperclass.html">MappedSuperclass</a>
</li>
<li><a href="namespace-Gedmo.Translatable.Entity.Repository.html">Repository</a>
</li>
</ul></li>
<li><a href="namespace-Gedmo.Translatable.Hydrator.html">Hydrator<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Translatable.Hydrator.ORM.html">ORM</a>
</li>
</ul></li>
<li><a href="namespace-Gedmo.Translatable.Mapping.html">Mapping<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Translatable.Mapping.Driver.html">Driver</a>
</li>
<li><a href="namespace-Gedmo.Translatable.Mapping.Event.html">Event<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Translatable.Mapping.Event.Adapter.html">Adapter</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Gedmo.Translatable.Query.html">Query<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Translatable.Query.TreeWalker.html">TreeWalker</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Gedmo.Translator.html">Translator<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Translator.Document.html">Document</a>
</li>
<li><a href="namespace-Gedmo.Translator.Entity.html">Entity</a>
</li>
</ul></li>
<li><a href="namespace-Gedmo.Tree.html">Tree<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Tree.Document.html">Document<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Tree.Document.MongoDB.html">MongoDB<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Tree.Document.MongoDB.Repository.html">Repository</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Gedmo.Tree.Entity.html">Entity<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Tree.Entity.MappedSuperclass.html">MappedSuperclass</a>
</li>
<li><a href="namespace-Gedmo.Tree.Entity.Repository.html">Repository</a>
</li>
</ul></li>
<li><a href="namespace-Gedmo.Tree.Mapping.html">Mapping<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Tree.Mapping.Driver.html">Driver</a>
</li>
<li><a href="namespace-Gedmo.Tree.Mapping.Event.html">Event<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Tree.Mapping.Event.Adapter.html">Adapter</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Gedmo.Tree.Strategy.html">Strategy<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Tree.Strategy.ODM.html">ODM<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Tree.Strategy.ODM.MongoDB.html">MongoDB</a>
</li>
</ul></li>
<li><a href="namespace-Gedmo.Tree.Strategy.ORM.html">ORM</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Gedmo.Uploadable.html">Uploadable<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Uploadable.Event.html">Event</a>
</li>
<li><a href="namespace-Gedmo.Uploadable.FileInfo.html">FileInfo</a>
</li>
<li><a href="namespace-Gedmo.Uploadable.FilenameGenerator.html">FilenameGenerator</a>
</li>
<li><a href="namespace-Gedmo.Uploadable.Mapping.html">Mapping<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Uploadable.Mapping.Driver.html">Driver</a>
</li>
</ul></li>
<li><a href="namespace-Gedmo.Uploadable.MimeType.html">MimeType</a>
</li>
<li><a href="namespace-Gedmo.Uploadable.Stub.html">Stub</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Incenteev.html">Incenteev<span></span></a>
<ul>
<li><a href="namespace-Incenteev.ParameterHandler.html">ParameterHandler<span></span></a>
<ul>
<li><a href="namespace-Incenteev.ParameterHandler.Tests.html">Tests</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-IpTraceable.html">IpTraceable<span></span></a>
<ul>
<li><a href="namespace-IpTraceable.Fixture.html">Fixture<span></span></a>
<ul>
<li><a href="namespace-IpTraceable.Fixture.Document.html">Document</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-JMS.html">JMS<span></span></a>
<ul>
<li><a href="namespace-JMS.Parser.html">Parser<span></span></a>
<ul>
<li><a href="namespace-JMS.Parser.Tests.html">Tests</a>
</li>
</ul></li>
<li><a href="namespace-JMS.Serializer.html">Serializer<span></span></a>
<ul>
<li><a href="namespace-JMS.Serializer.Annotation.html">Annotation</a>
</li>
<li><a href="namespace-JMS.Serializer.Builder.html">Builder</a>
</li>
<li><a href="namespace-JMS.Serializer.Construction.html">Construction</a>
</li>
<li><a href="namespace-JMS.Serializer.EventDispatcher.html">EventDispatcher<span></span></a>
<ul>
<li><a href="namespace-JMS.Serializer.EventDispatcher.Subscriber.html">Subscriber</a>
</li>
</ul></li>
<li><a href="namespace-JMS.Serializer.Exception.html">Exception</a>
</li>
<li><a href="namespace-JMS.Serializer.Exclusion.html">Exclusion</a>
</li>
<li><a href="namespace-JMS.Serializer.Handler.html">Handler</a>
</li>
<li><a href="namespace-JMS.Serializer.Metadata.html">Metadata<span></span></a>
<ul>
<li><a href="namespace-JMS.Serializer.Metadata.Driver.html">Driver</a>
</li>
</ul></li>
<li><a href="namespace-JMS.Serializer.Naming.html">Naming</a>
</li>
<li><a href="namespace-JMS.Serializer.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-JMS.Serializer.Tests.Exclusion.html">Exclusion</a>
</li>
<li><a href="namespace-JMS.Serializer.Tests.Fixtures.html">Fixtures<span></span></a>
<ul>
<li><a href="namespace-JMS.Serializer.Tests.Fixtures.Discriminator.html">Discriminator</a>
</li>
<li><a href="namespace-JMS.Serializer.Tests.Fixtures.Doctrine.html">Doctrine</a>
</li>
<li><a href="namespace-JMS.Serializer.Tests.Fixtures.DoctrinePHPCR.html">DoctrinePHPCR</a>
</li>
</ul></li>
<li><a href="namespace-JMS.Serializer.Tests.Handler.html">Handler</a>
</li>
<li><a href="namespace-JMS.Serializer.Tests.Metadata.html">Metadata<span></span></a>
<ul>
<li><a href="namespace-JMS.Serializer.Tests.Metadata.Driver.html">Driver</a>
</li>
</ul></li>
<li><a href="namespace-JMS.Serializer.Tests.Serializer.html">Serializer<span></span></a>
<ul>
<li><a href="namespace-JMS.Serializer.Tests.Serializer.EventDispatcher.html">EventDispatcher<span></span></a>
<ul>
<li><a href="namespace-JMS.Serializer.Tests.Serializer.EventDispatcher.Subscriber.html">Subscriber</a>
</li>
</ul></li>
<li><a href="namespace-JMS.Serializer.Tests.Serializer.Naming.html">Naming</a>
</li>
</ul></li>
<li><a href="namespace-JMS.Serializer.Tests.Twig.html">Twig</a>
</li>
</ul></li>
<li><a href="namespace-JMS.Serializer.Twig.html">Twig</a>
</li>
<li><a href="namespace-JMS.Serializer.Util.html">Util</a>
</li>
</ul></li>
<li><a href="namespace-JMS.SerializerBundle.html">SerializerBundle<span></span></a>
<ul>
<li><a href="namespace-JMS.SerializerBundle.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-JMS.SerializerBundle.DependencyInjection.Compiler.html">Compiler</a>
</li>
</ul></li>
<li><a href="namespace-JMS.SerializerBundle.Serializer.html">Serializer</a>
</li>
<li><a href="namespace-JMS.SerializerBundle.Templating.html">Templating</a>
</li>
<li><a href="namespace-JMS.SerializerBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-JMS.SerializerBundle.Tests.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-JMS.SerializerBundle.Tests.DependencyInjection.Fixture.html">Fixture</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-JMS.TranslationBundle.html">TranslationBundle<span></span></a>
<ul>
<li><a href="namespace-JMS.TranslationBundle.Annotation.html">Annotation</a>
</li>
<li><a href="namespace-JMS.TranslationBundle.Command.html">Command</a>
</li>
<li><a href="namespace-JMS.TranslationBundle.Controller.html">Controller</a>
</li>
<li><a href="namespace-JMS.TranslationBundle.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-JMS.TranslationBundle.DependencyInjection.Compiler.html">Compiler</a>
</li>
</ul></li>
<li><a href="namespace-JMS.TranslationBundle.Exception.html">Exception</a>
</li>
<li><a href="namespace-JMS.TranslationBundle.Logger.html">Logger</a>
</li>
<li><a href="namespace-JMS.TranslationBundle.Model.html">Model</a>
</li>
<li><a href="namespace-JMS.TranslationBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-JMS.TranslationBundle.Tests.Functional.html">Functional<span></span></a>
<ul>
<li><a href="namespace-JMS.TranslationBundle.Tests.Functional.TestBundle.html">TestBundle<span></span></a>
<ul>
<li><a href="namespace-JMS.TranslationBundle.Tests.Functional.TestBundle.Controller.html">Controller</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-JMS.TranslationBundle.Tests.Model.html">Model</a>
</li>
<li><a href="namespace-JMS.TranslationBundle.Tests.Translation.html">Translation<span></span></a>
<ul>
<li><a href="namespace-JMS.TranslationBundle.Tests.Translation.Comparison.html">Comparison</a>
</li>
<li><a href="namespace-JMS.TranslationBundle.Tests.Translation.Dumper.html">Dumper</a>
</li>
<li><a href="namespace-JMS.TranslationBundle.Tests.Translation.Extractor.html">Extractor<span></span></a>
<ul>
<li><a href="namespace-JMS.TranslationBundle.Tests.Translation.Extractor.File.html">File<span></span></a>
<ul>
<li><a href="namespace-JMS.TranslationBundle.Tests.Translation.Extractor.File.Fixture.html">Fixture</a>
</li>
</ul></li>
<li><a href="namespace-JMS.TranslationBundle.Tests.Translation.Extractor.Fixture.html">Fixture<span></span></a>
<ul>
<li><a href="namespace-JMS.TranslationBundle.Tests.Translation.Extractor.Fixture.SimpleTest.html">SimpleTest<span></span></a>
<ul>
<li><a href="namespace-JMS.TranslationBundle.Tests.Translation.Extractor.Fixture.SimpleTest.Controller.html">Controller</a>
</li>
<li><a href="namespace-JMS.TranslationBundle.Tests.Translation.Extractor.Fixture.SimpleTest.Form.html">Form</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-JMS.TranslationBundle.Tests.Translation.Loader.html">Loader<span></span></a>
<ul>
<li><a href="namespace-JMS.TranslationBundle.Tests.Translation.Loader.Symfony.html">Symfony</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-JMS.TranslationBundle.Tests.Twig.html">Twig</a>
</li>
</ul></li>
<li><a href="namespace-JMS.TranslationBundle.Translation.html">Translation<span></span></a>
<ul>
<li><a href="namespace-JMS.TranslationBundle.Translation.Comparison.html">Comparison</a>
</li>
<li><a href="namespace-JMS.TranslationBundle.Translation.Dumper.html">Dumper</a>
</li>
<li><a href="namespace-JMS.TranslationBundle.Translation.Extractor.html">Extractor<span></span></a>
<ul>
<li><a href="namespace-JMS.TranslationBundle.Translation.Extractor.File.html">File</a>
</li>
</ul></li>
<li><a href="namespace-JMS.TranslationBundle.Translation.Loader.html">Loader<span></span></a>
<ul>
<li><a href="namespace-JMS.TranslationBundle.Translation.Loader.Symfony.html">Symfony</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-JMS.TranslationBundle.Twig.html">Twig</a>
</li>
<li><a href="namespace-JMS.TranslationBundle.Util.html">Util</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Knp.html">Knp<span></span></a>
<ul>
<li><a href="namespace-Knp.Bundle.html">Bundle<span></span></a>
<ul>
<li><a href="namespace-Knp.Bundle.MenuBundle.html">MenuBundle<span></span></a>
<ul>
<li><a href="namespace-Knp.Bundle.MenuBundle.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Knp.Bundle.MenuBundle.DependencyInjection.Compiler.html">Compiler</a>
</li>
</ul></li>
<li><a href="namespace-Knp.Bundle.MenuBundle.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Knp.Bundle.MenuBundle.Provider.html">Provider</a>
</li>
<li><a href="namespace-Knp.Bundle.MenuBundle.Renderer.html">Renderer</a>
</li>
<li><a href="namespace-Knp.Bundle.MenuBundle.Templating.html">Templating<span></span></a>
<ul>
<li><a href="namespace-Knp.Bundle.MenuBundle.Templating.Helper.html">Helper</a>
</li>
</ul></li>
<li><a href="namespace-Knp.Bundle.MenuBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Knp.Bundle.MenuBundle.Tests.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Knp.Bundle.MenuBundle.Tests.DependencyInjection.Compiler.html">Compiler</a>
</li>
</ul></li>
<li><a href="namespace-Knp.Bundle.MenuBundle.Tests.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Knp.Bundle.MenuBundle.Tests.Provider.html">Provider</a>
</li>
<li><a href="namespace-Knp.Bundle.MenuBundle.Tests.Renderer.html">Renderer</a>
</li>
<li><a href="namespace-Knp.Bundle.MenuBundle.Tests.Stubs.html">Stubs<span></span></a>
<ul>
<li><a href="namespace-Knp.Bundle.MenuBundle.Tests.Stubs.Child.html">Child<span></span></a>
<ul>
<li><a href="namespace-Knp.Bundle.MenuBundle.Tests.Stubs.Child.Menu.html">Menu</a>
</li>
</ul></li>
<li><a href="namespace-Knp.Bundle.MenuBundle.Tests.Stubs.Menu.html">Menu</a>
</li>
</ul></li>
<li><a href="namespace-Knp.Bundle.MenuBundle.Tests.Templating.html">Templating</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-Knp.Menu.html">Menu<span></span></a>
<ul>
<li><a href="namespace-Knp.Menu.Factory.html">Factory</a>
</li>
<li><a href="namespace-Knp.Menu.Integration.html">Integration<span></span></a>
<ul>
<li><a href="namespace-Knp.Menu.Integration.Silex.html">Silex</a>
</li>
<li><a href="namespace-Knp.Menu.Integration.Symfony.html">Symfony</a>
</li>
</ul></li>
<li><a href="namespace-Knp.Menu.Iterator.html">Iterator</a>
</li>
<li><a href="namespace-Knp.Menu.Loader.html">Loader</a>
</li>
<li><a href="namespace-Knp.Menu.Matcher.html">Matcher<span></span></a>
<ul>
<li><a href="namespace-Knp.Menu.Matcher.Voter.html">Voter</a>
</li>
</ul></li>
<li><a href="namespace-Knp.Menu.Provider.html">Provider</a>
</li>
<li><a href="namespace-Knp.Menu.Renderer.html">Renderer</a>
</li>
<li><a href="namespace-Knp.Menu.Silex.html">Silex<span></span></a>
<ul>
<li><a href="namespace-Knp.Menu.Silex.Voter.html">Voter</a>
</li>
</ul></li>
<li><a href="namespace-Knp.Menu.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Knp.Menu.Tests.Factory.html">Factory</a>
</li>
<li><a href="namespace-Knp.Menu.Tests.Integration.html">Integration<span></span></a>
<ul>
<li><a href="namespace-Knp.Menu.Tests.Integration.Silex.html">Silex</a>
</li>
</ul></li>
<li><a href="namespace-Knp.Menu.Tests.Iterator.html">Iterator</a>
</li>
<li><a href="namespace-Knp.Menu.Tests.Loader.html">Loader</a>
</li>
<li><a href="namespace-Knp.Menu.Tests.Matcher.html">Matcher<span></span></a>
<ul>
<li><a href="namespace-Knp.Menu.Tests.Matcher.Voter.html">Voter</a>
</li>
</ul></li>
<li><a href="namespace-Knp.Menu.Tests.Provider.html">Provider</a>
</li>
<li><a href="namespace-Knp.Menu.Tests.Renderer.html">Renderer</a>
</li>
<li><a href="namespace-Knp.Menu.Tests.Silex.html">Silex</a>
</li>
<li><a href="namespace-Knp.Menu.Tests.Twig.html">Twig</a>
</li>
<li><a href="namespace-Knp.Menu.Tests.Util.html">Util</a>
</li>
</ul></li>
<li><a href="namespace-Knp.Menu.Twig.html">Twig</a>
</li>
<li><a href="namespace-Knp.Menu.Util.html">Util</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Loggable.html">Loggable<span></span></a>
<ul>
<li><a href="namespace-Loggable.Fixture.html">Fixture<span></span></a>
<ul>
<li><a href="namespace-Loggable.Fixture.Document.html">Document<span></span></a>
<ul>
<li><a href="namespace-Loggable.Fixture.Document.Log.html">Log</a>
</li>
</ul></li>
<li><a href="namespace-Loggable.Fixture.Entity.html">Entity<span></span></a>
<ul>
<li><a href="namespace-Loggable.Fixture.Entity.Log.html">Log</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-Lunetics.html">Lunetics<span></span></a>
<ul>
<li><a href="namespace-Lunetics.LocaleBundle.html">LocaleBundle<span></span></a>
<ul>
<li><a href="namespace-Lunetics.LocaleBundle.Controller.html">Controller</a>
</li>
<li><a href="namespace-Lunetics.LocaleBundle.Cookie.html">Cookie</a>
</li>
<li><a href="namespace-Lunetics.LocaleBundle.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Lunetics.LocaleBundle.DependencyInjection.Compiler.html">Compiler</a>
</li>
</ul></li>
<li><a href="namespace-Lunetics.LocaleBundle.Event.html">Event</a>
</li>
<li><a href="namespace-Lunetics.LocaleBundle.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Lunetics.LocaleBundle.Form.html">Form<span></span></a>
<ul>
<li><a href="namespace-Lunetics.LocaleBundle.Form.Extension.html">Extension<span></span></a>
<ul>
<li><a href="namespace-Lunetics.LocaleBundle.Form.Extension.ChoiceList.html">ChoiceList</a>
</li>
<li><a href="namespace-Lunetics.LocaleBundle.Form.Extension.Type.html">Type</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Lunetics.LocaleBundle.LocaleGuesser.html">LocaleGuesser</a>
</li>
<li><a href="namespace-Lunetics.LocaleBundle.LocaleInformation.html">LocaleInformation</a>
</li>
<li><a href="namespace-Lunetics.LocaleBundle.Matcher.html">Matcher</a>
</li>
<li><a href="namespace-Lunetics.LocaleBundle.Session.html">Session</a>
</li>
<li><a href="namespace-Lunetics.LocaleBundle.Switcher.html">Switcher</a>
</li>
<li><a href="namespace-Lunetics.LocaleBundle.Templating.html">Templating<span></span></a>
<ul>
<li><a href="namespace-Lunetics.LocaleBundle.Templating.Helper.html">Helper</a>
</li>
</ul></li>
<li><a href="namespace-Lunetics.LocaleBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Lunetics.LocaleBundle.Tests.Controller.html">Controller</a>
</li>
<li><a href="namespace-Lunetics.LocaleBundle.Tests.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Lunetics.LocaleBundle.Tests.DependencyInjection.Compiler.html">Compiler</a>
</li>
</ul></li>
<li><a href="namespace-Lunetics.LocaleBundle.Tests.Event.html">Event</a>
</li>
<li><a href="namespace-Lunetics.LocaleBundle.Tests.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Lunetics.LocaleBundle.Tests.Form.html">Form<span></span></a>
<ul>
<li><a href="namespace-Lunetics.LocaleBundle.Tests.Form.Extension.html">Extension<span></span></a>
<ul>
<li><a href="namespace-Lunetics.LocaleBundle.Tests.Form.Extension.ChoiceList.html">ChoiceList</a>
</li>
<li><a href="namespace-Lunetics.LocaleBundle.Tests.Form.Extension.Type.html">Type</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Lunetics.LocaleBundle.Tests.LocaleGuesser.html">LocaleGuesser</a>
</li>
<li><a href="namespace-Lunetics.LocaleBundle.Tests.LocaleInformation.html">LocaleInformation</a>
</li>
<li><a href="namespace-Lunetics.LocaleBundle.Tests.Templating.html">Templating<span></span></a>
<ul>
<li><a href="namespace-Lunetics.LocaleBundle.Tests.Templating.Helper.html">Helper</a>
</li>
</ul></li>
<li><a href="namespace-Lunetics.LocaleBundle.Tests.Twig.html">Twig<span></span></a>
<ul>
<li><a href="namespace-Lunetics.LocaleBundle.Tests.Twig.Extension.html">Extension</a>
</li>
</ul></li>
<li><a href="namespace-Lunetics.LocaleBundle.Tests.Validator.html">Validator</a>
</li>
</ul></li>
<li><a href="namespace-Lunetics.LocaleBundle.Twig.html">Twig<span></span></a>
<ul>
<li><a href="namespace-Lunetics.LocaleBundle.Twig.Extension.html">Extension</a>
</li>
</ul></li>
<li><a href="namespace-Lunetics.LocaleBundle.Validator.html">Validator</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Mapping.html">Mapping<span></span></a>
<ul>
<li><a href="namespace-Mapping.Fixture.html">Fixture<span></span></a>
<ul>
<li><a href="namespace-Mapping.Fixture.Compatibility.html">Compatibility</a>
</li>
<li><a href="namespace-Mapping.Fixture.Document.html">Document</a>
</li>
<li><a href="namespace-Mapping.Fixture.Unmapped.html">Unmapped</a>
</li>
<li><a href="namespace-Mapping.Fixture.Xml.html">Xml</a>
</li>
<li><a href="namespace-Mapping.Fixture.Yaml.html">Yaml</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Metadata.html">Metadata<span></span></a>
<ul>
<li><a href="namespace-Metadata.Cache.html">Cache</a>
</li>
<li><a href="namespace-Metadata.Driver.html">Driver</a>
</li>
<li><a href="namespace-Metadata.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Metadata.Tests.Cache.html">Cache</a>
</li>
<li><a href="namespace-Metadata.Tests.Driver.html">Driver<span></span></a>
<ul>
<li><a href="namespace-Metadata.Tests.Driver.Fixture.html">Fixture<span></span></a>
<ul>
<li><a href="namespace-Metadata.Tests.Driver.Fixture.A.html">A</a>
</li>
<li><a href="namespace-Metadata.Tests.Driver.Fixture.B.html">B</a>
</li>
<li><a href="namespace-Metadata.Tests.Driver.Fixture.C.html">C<span></span></a>
<ul>
<li><a href="namespace-Metadata.Tests.Driver.Fixture.C.SubDir.html">SubDir</a>
</li>
</ul></li>
<li><a href="namespace-Metadata.Tests.Driver.Fixture.T.html">T</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Metadata.Tests.Fixtures.html">Fixtures<span></span></a>
<ul>
<li><a href="namespace-Metadata.Tests.Fixtures.ComplexHierarchy.html">ComplexHierarchy</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-Monolog.html">Monolog<span></span></a>
<ul>
<li><a href="namespace-Monolog.Formatter.html">Formatter</a>
</li>
<li><a href="namespace-Monolog.Handler.html">Handler<span></span></a>
<ul>
<li><a href="namespace-Monolog.Handler.FingersCrossed.html">FingersCrossed</a>
</li>
<li><a href="namespace-Monolog.Handler.SyslogUdp.html">SyslogUdp</a>
</li>
</ul></li>
<li><a href="namespace-Monolog.Processor.html">Processor</a>
</li>
</ul></li>
<li><a href="namespace-MyProject.html">MyProject<span></span></a>
<ul>
<li><a href="namespace-MyProject.Proxies.html">Proxies<span></span></a>
<ul>
<li><a href="namespace-MyProject.Proxies.__CG__.html">__CG__<span></span></a>
<ul>
<li><a href="namespace-MyProject.Proxies.__CG__.Doctrine.html">Doctrine<span></span></a>
<ul>
<li><a href="namespace-MyProject.Proxies.__CG__.Doctrine.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-MyProject.Proxies.__CG__.Doctrine.Tests.Common.html">Common<span></span></a>
<ul>
<li><a href="namespace-MyProject.Proxies.__CG__.Doctrine.Tests.Common.Util.html">Util</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-MyProject.Proxies.__CG__.OtherProject.html">OtherProject<span></span></a>
<ul>
<li><a href="namespace-MyProject.Proxies.__CG__.OtherProject.Proxies.html">Proxies<span></span></a>
<ul>
<li><a href="namespace-MyProject.Proxies.__CG__.OtherProject.Proxies.__CG__.html">__CG__<span></span></a>
<ul>
<li><a href="namespace-MyProject.Proxies.__CG__.OtherProject.Proxies.__CG__.Doctrine.html">Doctrine<span></span></a>
<ul>
<li><a href="namespace-MyProject.Proxies.__CG__.OtherProject.Proxies.__CG__.Doctrine.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-MyProject.Proxies.__CG__.OtherProject.Proxies.__CG__.Doctrine.Tests.Common.html">Common<span></span></a>
<ul>
<li><a href="namespace-MyProject.Proxies.__CG__.OtherProject.Proxies.__CG__.Doctrine.Tests.Common.Util.html">Util</a>
</li>
</ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li>
<li><a href="namespace-NamespaceCollision.html">NamespaceCollision<span></span></a>
<ul>
<li><a href="namespace-NamespaceCollision.A.html">A<span></span></a>
<ul>
<li><a href="namespace-NamespaceCollision.A.B.html">B</a>
</li>
</ul></li>
<li><a href="namespace-NamespaceCollision.C.html">C<span></span></a>
<ul>
<li><a href="namespace-NamespaceCollision.C.B.html">B</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Namespaced.html">Namespaced</a>
</li>
<li><a href="namespace-Namespaced2.html">Namespaced2</a>
</li>
<li><a href="namespace-Negotiation.html">Negotiation<span></span></a>
<ul>
<li><a href="namespace-Negotiation.Tests.html">Tests</a>
</li>
</ul></li>
<li><a href="namespace-None.html">None</a>
</li>
<li><a href="namespace-Pequiven.html">Pequiven<span></span></a>
<ul>
<li><a href="namespace-Pequiven.SEIPBundle.html">SEIPBundle<span></span></a>
<ul>
<li><a href="namespace-Pequiven.SEIPBundle.Controller.html">Controller</a>
</li>
<li><a href="namespace-Pequiven.SEIPBundle.DataFixtures.html">DataFixtures</a>
</li>
<li><a href="namespace-Pequiven.SEIPBundle.DependencyInjection.html">DependencyInjection</a>
</li>
<li><a href="namespace-Pequiven.SEIPBundle.Entity.html">Entity</a>
</li>
<li><a href="namespace-Pequiven.SEIPBundle.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Pequiven.SEIPBundle.Form.html">Form<span></span></a>
<ul>
<li><a href="namespace-Pequiven.SEIPBundle.Form.Type.html">Type</a>
</li>
</ul></li>
<li><a href="namespace-Pequiven.SEIPBundle.Menu.html">Menu<span></span></a>
<ul>
<li><a href="namespace-Pequiven.SEIPBundle.Menu.Template.html">Template<span></span></a>
<ul>
<li><a href="namespace-Pequiven.SEIPBundle.Menu.Template.Developer.html">Developer</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Pequiven.SEIPBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Pequiven.SEIPBundle.Tests.Controller.html">Controller</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-PHP.html">PHP</a>
</li>
<li><a href="namespace-PhpCollection.html">PhpCollection<span></span></a>
<ul>
<li><a href="namespace-PhpCollection.Tests.html">Tests</a>
</li>
</ul></li>
<li><a href="namespace-PhpOption.html">PhpOption<span></span></a>
<ul>
<li><a href="namespace-PhpOption.Tests.html">Tests</a>
</li>
</ul></li>
<li><a href="namespace-Proxies.html">Proxies<span></span></a>
<ul>
<li><a href="namespace-Proxies.__CG__.html">__CG__<span></span></a>
<ul>
<li><a href="namespace-Proxies.__CG__.Pequiven.html">Pequiven<span></span></a>
<ul>
<li><a href="namespace-Proxies.__CG__.Pequiven.SEIPBundle.html">SEIPBundle<span></span></a>
<ul>
<li><a href="namespace-Proxies.__CG__.Pequiven.SEIPBundle.Entity.html">Entity</a>
</li>
</ul></li></ul></li></ul></li></ul></li>
<li><a href="namespace-Psr.html">Psr<span></span></a>
<ul>
<li><a href="namespace-Psr.Log.html">Log<span></span></a>
<ul>
<li><a href="namespace-Psr.Log.Test.html">Test</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-ReferenceIntegrity.html">ReferenceIntegrity<span></span></a>
<ul>
<li><a href="namespace-ReferenceIntegrity.Fixture.html">Fixture<span></span></a>
<ul>
<li><a href="namespace-ReferenceIntegrity.Fixture.Document.html">Document<span></span></a>
<ul>
<li><a href="namespace-ReferenceIntegrity.Fixture.Document.ManyNullify.html">ManyNullify</a>
</li>
<li><a href="namespace-ReferenceIntegrity.Fixture.Document.ManyRestrict.html">ManyRestrict</a>
</li>
<li><a href="namespace-ReferenceIntegrity.Fixture.Document.OneNullify.html">OneNullify</a>
</li>
<li><a href="namespace-ReferenceIntegrity.Fixture.Document.OneRestrict.html">OneRestrict</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-References.html">References<span></span></a>
<ul>
<li><a href="namespace-References.Fixture.html">Fixture<span></span></a>
<ul>
<li><a href="namespace-References.Fixture.ODM.html">ODM<span></span></a>
<ul>
<li><a href="namespace-References.Fixture.ODM.MongoDB.html">MongoDB</a>
</li>
</ul></li>
<li><a href="namespace-References.Fixture.ORM.html">ORM</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Sensio.html">Sensio<span></span></a>
<ul>
<li><a href="namespace-Sensio.Bundle.html">Bundle<span></span></a>
<ul>
<li><a href="namespace-Sensio.Bundle.DistributionBundle.html">DistributionBundle<span></span></a>
<ul>
<li><a href="namespace-Sensio.Bundle.DistributionBundle.Composer.html">Composer</a>
</li>
<li><a href="namespace-Sensio.Bundle.DistributionBundle.Configurator.html">Configurator<span></span></a>
<ul>
<li><a href="namespace-Sensio.Bundle.DistributionBundle.Configurator.Form.html">Form</a>
</li>
<li><a href="namespace-Sensio.Bundle.DistributionBundle.Configurator.Step.html">Step</a>
</li>
</ul></li>
<li><a href="namespace-Sensio.Bundle.DistributionBundle.Controller.html">Controller</a>
</li>
<li><a href="namespace-Sensio.Bundle.DistributionBundle.DependencyInjection.html">DependencyInjection</a>
</li>
</ul></li>
<li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.html">FrameworkExtraBundle<span></span></a>
<ul>
<li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Configuration.html">Configuration</a>
</li>
<li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.DependencyInjection.Compiler.html">Compiler</a>
</li>
</ul></li>
<li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Request.html">Request<span></span></a>
<ul>
<li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Request.ParamConverter.html">ParamConverter</a>
</li>
</ul></li>
<li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Routing.html">Routing</a>
</li>
<li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Security.html">Security</a>
</li>
<li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Templating.html">Templating</a>
</li>
<li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Tests.Configuration.html">Configuration</a>
</li>
<li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Tests.EventListener.html">EventListener<span></span></a>
<ul>
<li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Tests.EventListener.Fixture.html">Fixture</a>
</li>
</ul></li>
<li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Tests.Request.html">Request<span></span></a>
<ul>
<li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Tests.Request.ParamConverter.html">ParamConverter</a>
</li>
</ul></li>
<li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Tests.Routing.html">Routing</a>
</li>
<li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Tests.Templating.html">Templating<span></span></a>
<ul>
<li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Tests.Templating.Fixture.html">Fixture<span></span></a>
<ul>
<li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Tests.Templating.Fixture.BarBundle.html">BarBundle<span></span></a>
<ul>
<li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Tests.Templating.Fixture.BarBundle.Controller.html">Controller</a>
</li>
</ul></li>
<li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Tests.Templating.Fixture.FooBarBundle.html">FooBarBundle<span></span></a>
<ul>
<li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Tests.Templating.Fixture.FooBarBundle.Controller.html">Controller</a>
</li>
</ul></li>
<li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Tests.Templating.Fixture.FooBundle.html">FooBundle<span></span></a>
<ul>
<li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Tests.Templating.Fixture.FooBundle.Controller.html">Controller</a>
</li>
</ul></li></ul></li></ul></li></ul></li></ul></li>
<li><a href="namespace-Sensio.Bundle.GeneratorBundle.html">GeneratorBundle<span></span></a>
<ul>
<li><a href="namespace-Sensio.Bundle.GeneratorBundle.Command.html">Command<span></span></a>
<ul>
<li><a href="namespace-Sensio.Bundle.GeneratorBundle.Command.Helper.html">Helper</a>
</li>
</ul></li>
<li><a href="namespace-Sensio.Bundle.GeneratorBundle.Generator.html">Generator</a>
</li>
<li><a href="namespace-Sensio.Bundle.GeneratorBundle.Manipulator.html">Manipulator</a>
</li>
<li><a href="namespace-Sensio.Bundle.GeneratorBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Sensio.Bundle.GeneratorBundle.Tests.Command.html">Command</a>
</li>
<li><a href="namespace-Sensio.Bundle.GeneratorBundle.Tests.Generator.html">Generator</a>
</li>
</ul></li></ul></li></ul></li></ul></li>
<li><a href="namespace-Sluggable.html">Sluggable<span></span></a>
<ul>
<li><a href="namespace-Sluggable.Fixture.html">Fixture<span></span></a>
<ul>
<li><a href="namespace-Sluggable.Fixture.Doctrine.html">Doctrine</a>
</li>
<li><a href="namespace-Sluggable.Fixture.Document.html">Document<span></span></a>
<ul>
<li><a href="namespace-Sluggable.Fixture.Document.Handler.html">Handler</a>
</li>
</ul></li>
<li><a href="namespace-Sluggable.Fixture.Handler.html">Handler<span></span></a>
<ul>
<li><a href="namespace-Sluggable.Fixture.Handler.People.html">People</a>
</li>
</ul></li>
<li><a href="namespace-Sluggable.Fixture.Inheritance.html">Inheritance</a>
</li>
<li><a href="namespace-Sluggable.Fixture.Inheritance2.html">Inheritance2</a>
</li>
<li><a href="namespace-Sluggable.Fixture.Issue104.html">Issue104</a>
</li>
<li><a href="namespace-Sluggable.Fixture.Issue116.html">Issue116</a>
</li>
<li><a href="namespace-Sluggable.Fixture.Issue131.html">Issue131</a>
</li>
<li><a href="namespace-Sluggable.Fixture.Issue449.html">Issue449</a>
</li>
<li><a href="namespace-Sluggable.Fixture.Issue633.html">Issue633</a>
</li>
<li><a href="namespace-Sluggable.Fixture.Issue827.html">Issue827</a>
</li>
<li><a href="namespace-Sluggable.Fixture.Issue939.html">Issue939</a>
</li>
<li><a href="namespace-Sluggable.Fixture.MappedSuperclass.html">MappedSuperclass</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-SoftDeleteable.html">SoftDeleteable<span></span></a>
<ul>
<li><a href="namespace-SoftDeleteable.Fixture.html">Fixture<span></span></a>
<ul>
<li><a href="namespace-SoftDeleteable.Fixture.Document.html">Document</a>
</li>
<li><a href="namespace-SoftDeleteable.Fixture.Entity.html">Entity</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Sortable.html">Sortable<span></span></a>
<ul>
<li><a href="namespace-Sortable.Fixture.html">Fixture<span></span></a>
<ul>
<li><a href="namespace-Sortable.Fixture.Transport.html">Transport</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Stof.html">Stof<span></span></a>
<ul>
<li><a href="namespace-Stof.DoctrineExtensionsBundle.html">DoctrineExtensionsBundle<span></span></a>
<ul>
<li><a href="namespace-Stof.DoctrineExtensionsBundle.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Stof.DoctrineExtensionsBundle.DependencyInjection.Compiler.html">Compiler</a>
</li>
</ul></li>
<li><a href="namespace-Stof.DoctrineExtensionsBundle.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Stof.DoctrineExtensionsBundle.Uploadable.html">Uploadable</a>
</li>
</ul></li></ul></li>
<li><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-Doctrine.Tests.Common.Cache.ApcCacheTest.html">ApcCacheTest</a></li>
<li><a href="class-Doctrine.Tests.Common.Cache.ArrayCacheTest.html">ArrayCacheTest</a></li>
<li><a href="class-Doctrine.Tests.Common.Cache.BaseFileCacheTest.html">BaseFileCacheTest</a></li>
<li><a href="class-Doctrine.Tests.Common.Cache.CacheTest.html">CacheTest</a></li>
<li><a href="class-Doctrine.Tests.Common.Cache.CouchbaseCacheTest.html">CouchbaseCacheTest</a></li>
<li><a href="class-Doctrine.Tests.Common.Cache.FileCacheTest.html">FileCacheTest</a></li>
<li><a href="class-Doctrine.Tests.Common.Cache.FilesystemCacheTest.html">FilesystemCacheTest</a></li>
<li><a href="class-Doctrine.Tests.Common.Cache.MemcacheCacheTest.html">MemcacheCacheTest</a></li>
<li class="active"><a href="class-Doctrine.Tests.Common.Cache.MemcachedCacheTest.html">MemcachedCacheTest</a></li>
<li><a href="class-Doctrine.Tests.Common.Cache.MongoDBCacheTest.html">MongoDBCacheTest</a></li>
<li><a href="class-Doctrine.Tests.Common.Cache.NotSetStateClass.html">NotSetStateClass</a></li>
<li><a href="class-Doctrine.Tests.Common.Cache.PhpFileCacheTest.html">PhpFileCacheTest</a></li>
<li><a href="class-Doctrine.Tests.Common.Cache.RedisCacheTest.html">RedisCacheTest</a></li>
<li><a href="class-Doctrine.Tests.Common.Cache.RiakCacheTest.html">RiakCacheTest</a></li>
<li><a href="class-Doctrine.Tests.Common.Cache.SetStateClass.html">SetStateClass</a></li>
<li><a href="class-Doctrine.Tests.Common.Cache.WincacheCacheTest.html">WincacheCacheTest</a></li>
<li><a href="class-Doctrine.Tests.Common.Cache.XcacheCacheTest.html">XcacheCacheTest</a></li>
<li><a href="class-Doctrine.Tests.Common.Cache.ZendDataCacheTest.html">ZendDataCacheTest</a></li>
</ul>
</div>
</div>
</div>
<div id="splitter"></div>
<div id="right">
<div id="rightInner">
<form id="search">
<input type="hidden" name="cx" value="" />
<input type="hidden" name="ie" value="UTF-8" />
<input type="text" name="q" class="text" />
<input type="submit" value="Search" />
</form>
<div id="navigation">
<ul>
<li>
<a href="index.html" title="Overview"><span>Overview</span></a>
</li>
<li>
<a href="namespace-Doctrine.Tests.Common.Cache.html" title="Summary of Doctrine\Tests\Common\Cache"><span>Namespace</span></a>
</li>
<li class="active">
<span>Class</span> </li>
</ul>
<ul>
<li>
<a href="tree.html" title="Tree view of classes, interfaces, traits and exceptions"><span>Tree</span></a>
</li>
</ul>
<ul>
</ul>
</div>
<div id="content" class="class">
<h1>Class MemcachedCacheTest</h1>
<dl class="tree">
<dd style="padding-left:0px">
<a href="class-Doctrine.Tests.DoctrineTestCase.html"><span class="invalid">Doctrine\Tests\DoctrineTestCase</span></a>
</dd>
<dd style="padding-left:30px">
<img src="resources/inherit.png" alt="Extended by" />
<a href="class-Doctrine.Tests.Common.Cache.CacheTest.html"><span>Doctrine\Tests\Common\Cache\CacheTest</span></a>
</dd>
<dd style="padding-left:60px">
<img src="resources/inherit.png" alt="Extended by" />
<b><span>Doctrine\Tests\Common\Cache\MemcachedCacheTest</span></b>
</dd>
</dl>
<div class="info">
<b>Namespace:</b> <a href="namespace-Doctrine.html">Doctrine</a>\<a href="namespace-Doctrine.Tests.html">Tests</a>\<a href="namespace-Doctrine.Tests.Common.html">Common</a>\<a href="namespace-Doctrine.Tests.Common.Cache.html">Cache</a><br />
<b>Located at</b> <a href="source-class-Doctrine.Tests.Common.Cache.MemcachedCacheTest.html#8-56" title="Go to source code">vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache/MemcachedCacheTest.php</a><br />
</div>
<table class="summary" id="methods">
<caption>Methods summary</caption>
<tr data-order="setUp" id="_setUp">
<td class="attributes"><code>
public
</code>
</td>
<td class="name"><div>
<a class="anchor" href="#_setUp">#</a>
<code><a href="source-class-Doctrine.Tests.Common.Cache.MemcachedCacheTest.html#12-26" title="Go to source code">setUp</a>( )</code>
<div class="description short">
</div>
<div class="description detailed hidden">
</div>
</div></td>
</tr>
<tr data-order="tearDown" id="_tearDown">
<td class="attributes"><code>
public
</code>
</td>
<td class="name"><div>
<a class="anchor" href="#_tearDown">#</a>
<code><a href="source-class-Doctrine.Tests.Common.Cache.MemcachedCacheTest.html#28-33" title="Go to source code">tearDown</a>( )</code>
<div class="description short">
</div>
<div class="description detailed hidden">
</div>
</div></td>
</tr>
<tr data-order="testNoExpire" id="_testNoExpire">
<td class="attributes"><code>
public
</code>
</td>
<td class="name"><div>
<a class="anchor" href="#_testNoExpire">#</a>
<code><a href="source-class-Doctrine.Tests.Common.Cache.MemcachedCacheTest.html#35-41" title="Go to source code">testNoExpire</a>( )</code>
<div class="description short">
</div>
<div class="description detailed hidden">
</div>
</div></td>
</tr>
<tr data-order="testLongLifetime" id="_testLongLifetime">
<td class="attributes"><code>
public
</code>
</td>
<td class="name"><div>
<a class="anchor" href="#_testLongLifetime">#</a>
<code><a href="source-class-Doctrine.Tests.Common.Cache.MemcachedCacheTest.html#43-48" title="Go to source code">testLongLifetime</a>( )</code>
<div class="description short">
</div>
<div class="description detailed hidden">
</div>
</div></td>
</tr>
<tr data-order="_getCacheDriver" id="__getCacheDriver">
<td class="attributes"><code>
protected
<code><a href="class-Doctrine.Common.Cache.CacheProvider.html">Doctrine\Common\Cache\CacheProvider</a></code>
</code>
</td>
<td class="name"><div>
<a class="anchor" href="#__getCacheDriver">#</a>
<code><a href="source-class-Doctrine.Tests.Common.Cache.MemcachedCacheTest.html#50-55" title="Go to source code">_getCacheDriver</a>( )</code>
<div class="description short">
</div>
<div class="description detailed hidden">
<h4>Returns</h4>
<div class="list">
<code><code><a href="class-Doctrine.Common.Cache.CacheProvider.html">Doctrine\Common\Cache\CacheProvider</a></code></code><br />
</div>
</div>
</div></td>
</tr>
</table>
<table class="summary inherited">
<caption>Methods inherited from <a href="class-Doctrine.Tests.Common.Cache.CacheTest.html#methods">Doctrine\Tests\Common\Cache\CacheTest</a></caption>
<tr>
<td><code>
<a href="class-Doctrine.Tests.Common.Cache.CacheTest.html#_isSharedStorage">isSharedStorage()</a>,
<a href="class-Doctrine.Tests.Common.Cache.CacheTest.html#_provideCrudValues">provideCrudValues()</a>,
<a href="class-Doctrine.Tests.Common.Cache.CacheTest.html#_testBasicCrudOperations">testBasicCrudOperations()</a>,
<a href="class-Doctrine.Tests.Common.Cache.CacheTest.html#_testDeleteAll">testDeleteAll()</a>,
<a href="class-Doctrine.Tests.Common.Cache.CacheTest.html#_testDeleteAllAndNamespaceVersioningBetweenCaches">testDeleteAllAndNamespaceVersioningBetweenCaches()</a>,
<a href="class-Doctrine.Tests.Common.Cache.CacheTest.html#_testDeleteAllNamespace">testDeleteAllNamespace()</a>,
<a href="class-Doctrine.Tests.Common.Cache.CacheTest.html#_testFetchMissShouldReturnFalse">testFetchMissShouldReturnFalse()</a>,
<a href="class-Doctrine.Tests.Common.Cache.CacheTest.html#_testFlushAll">testFlushAll()</a>,
<a href="class-Doctrine.Tests.Common.Cache.CacheTest.html#_testFlushAllAndNamespaceVersioningBetweenCaches">testFlushAllAndNamespaceVersioningBetweenCaches()</a>,
<a href="class-Doctrine.Tests.Common.Cache.CacheTest.html#_testGetStats">testGetStats()</a>,
<a href="class-Doctrine.Tests.Common.Cache.CacheTest.html#_testNamespace">testNamespace()</a>
</code></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>
|
manpages/man8/faillock.8.html | yuweijun/yuweijun.github.io | <!DOCTYPE html>
<HTML><head><TITLE>Manpage of FAILLOCK</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>FAILLOCK</H1>
Section: Linux\-PAM Manual (8)<BR>Updated: 04/16/2012<BR><A HREF="#index">Index</A>
<A HREF="/manpages/index.html">Return to Main Contents</A><HR>
<A NAME="lbAB"> </A>
<H2>NAME</H2>
faillock - Tool for displaying and modifying the authentication failure record files
<A NAME="lbAC"> </A>
<H2>SYNOPSIS</H2>
<DL COMPACT>
<DT>
<B>faillock</B> [--dir <I>/path/to/tally-directory</I>] [--user <I>username</I>] [--reset]
</DL>
<A NAME="lbAD"> </A>
<H2>DESCRIPTION</H2>
<P>
<DD>The
<I>pam_faillock.so</I>
module maintains a list of failed authentication attempts per user during a specified interval and locks the account in case there were more than
<I>deny</I>
consecutive failed authentications. It stores the failure records into per-user files in the tally directory.
<P>
The
<B>faillock</B>
command is an application which can be used to examine and modify the contents of the the tally files. It can display the recent failed authentication attempts of the
<I>username</I>
or clear the tally files of all or individual
<I>usernames</I>.
<A NAME="lbAE"> </A>
<H2>OPTIONS</H2>
<P>
<B>--dir </B><B></B><I>/path/to/tally-directory</I>
<DL COMPACT><DT><DD>
The directory where the user files with the failure records are kept. The default is
/var/run/faillock.
</DL>
<P>
<B>--user </B><B></B><I>username</I>
<DL COMPACT><DT><DD>
The user whose failure records should be displayed or cleared.
</DL>
<P>
<B>--reset</B>
<DL COMPACT><DT><DD>
Instead of displaying the user's failure records, clear them.
</DL>
<A NAME="lbAF"> </A>
<H2>FILES</H2>
<P>
/var/run/faillock/*
<DL COMPACT><DT><DD>
the files logging the authentication failures for users
</DL>
<A NAME="lbAG"> </A>
<H2>SEE ALSO</H2>
<P>
<P>
<B><A HREF="/manpages/index.html?8+pam_faillock">pam_faillock</A></B>(8),
<B><A HREF="/manpages/index.html?8+pam">pam</A></B>(8)
<A NAME="lbAH"> </A>
<H2>AUTHOR</H2>
<P>
faillock was written by Tomas Mraz.
<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">FILES</A><DD>
<DT><A HREF="#lbAG">SEE ALSO</A><DD>
<DT><A HREF="#lbAH">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:25 GMT, December 24, 2015
</div></div>
</body>
</HTML>
|
clean/Linux-x86_64-4.05.0-2.0.6/released/8.7.0/circuits/8.6.0.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>circuits: Not compatible</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.7.0 / circuits - 8.6.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
circuits
<small>
8.6.0
<span class="label label-info">Not compatible</span>
</small>
</h1>
<p><em><script>document.write(moment("2020-07-31 07:04:33 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2020-07-31 07:04:33 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-num base Num library distributed with the OCaml compiler
base-threads base
base-unix base
camlp5 7.12 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-m4 1 Virtual package relying on m4
coq 8.7.0 Formal proof management system.
num 0 The Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.05.0 The OCaml compiler (virtual package)
ocaml-base-compiler 4.05.0 Official 4.05.0 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.8.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "Hugo.Herbelin@inria.fr"
homepage: "https://github.com/coq-contribs/circuits"
license: "LGPL 2.1"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/Circuits"]
depends: [
"ocaml"
"coq" {>= "8.6" & < "8.7~"}
]
tags: [ "keyword: hardware verification" "category: Computer Science/Architecture" ]
authors: [ "Laurent Arditi" ]
bug-reports: "https://github.com/coq-contribs/circuits/issues"
dev-repo: "git+https://github.com/coq-contribs/circuits.git"
synopsis: "Some proofs of hardware (adder, multiplier, memory block instruction)"
description: """
definition and proof of a combinatorial adder, a
sequential multiplier, a memory block instruction"""
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/circuits/archive/v8.6.0.tar.gz"
checksum: "md5=b9ba5f4874f9845c96a9e72e12df3f32"
}
</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-circuits.8.6.0 coq.8.7.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.7.0).
The following dependencies couldn't be met:
- coq-circuits -> coq < 8.7~ -> ocaml < 4.03.0
base of this switch (use `--unlock-base' to force)
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-circuits.8.6.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
<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>
|
docs/3.4.3 BSF Functions.html | tedliang/osworkflow | <html>
<head>
<title>OSWorkflow -
3.4.3 BSF Functions
</title>
<link rel="stylesheet" href="styles/site.css" type="text/css" />
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body>
<table class="pagecontent" border="0" cellpadding="0" cellspacing="0" width="100%" bgcolor="#ffffff">
<tr>
<td valign="top" class="pagebody">
<ul>
<li>Back to <a href="3.4.2 BeanShell Functions.html" title="3.4.2 BeanShell Functions">3.4.2 BeanShell Functions</a></li>
<li>Forward to <a href="3.4.4 Utility Functions.html" title="3.4.4 Utility Functions">3.4.4 Utility Functions</a></li>
</ul>
<p>In addition to <a href="3.4.1 Java-based Functions.html" title="3.4.1 Java-based Functions">3.4.1 Java-based Functions</a> and <a href="3.4.2 BeanShell Functions.html" title="3.4.2 BeanShell Functions">3.4.2 BeanShell Functions</a>, OSWorkflow supports a third type of function: <a href="http://oss.software.ibm.com/developerworks/projects/bsf" title="Visit page outside Confluence">Bean Scripting Framework</a> functions. BSF is a project by IBM's AlphaWorks group that allows for commonly used languages such as VBScript, Perlscript, Python, and JavaScript to operate in a common environment. What this means in OSWorkflow is that you can code your functions in any language supported by BSF in the following manner:</p>
<div class="code"><div class="codeContent">
<pre class="code-java"><function type=<span class="code-quote">"bsf"</span>>
<arg name=<span class="code-quote">"source"</span>>foo.pl</arg>
<arg name=<span class="code-quote">"row"</span>>0</arg>
<arg name=<span class="code-quote">"col"</span>>0</arg>
<arg name=<span class="code-quote">"script"</span>>
print $bsf->lookupBean(<span class="code-quote">"propertySet"</span>).getString(<span class="code-quote">"foo"</span>);
</arg>
</function></pre>
</div></div>
<p>The above code gets the <b>propertySet</b> then prints out the value with the key "foo". The same variables that are in default scope in BeanShell functions are available to lookup in your BSF script. Please read the BSF guide for info on how to lookup these beans in your language of choice.</p>
</td>
</tr>
</table>
</body>
</html> |
people/rvp7dlu1.html | slowe/panelshows | <html>
<head>
<title>Ann Widdecombe's panel show appearances</title>
<script type="text/javascript" src="../common.js"></script>
<link rel="stylesheet" media="all" href="../style.css" type="text/css"/>
<script type="text/javascript" src="../people.js"></script>
<!--#include virtual="head.txt" -->
</head>
<body>
<!--#include virtual="nav.txt" -->
<div class="page">
<h1>Ann Widdecombe's panel show appearances</h1>
<p>Ann Widdecombe (born 1947-10-04<sup><a href="https://en.wikipedia.org/wiki/Ann_Widdecombe">[ref]</a></sup>) has appeared in <span class="total">20</span> episodes between 1996-2017. <a href="http://www.imdb.com/name/nm1101051">Ann Widdecombe on IMDB</a>. <a href="https://en.wikipedia.org/wiki/Ann_Widdecombe">Ann Widdecombe on Wikipedia</a>.</p>
<div class="performerholder">
<table class="performer">
<tr style="vertical-align:bottom;">
<td><div style="height:100px;" class="performances female" title="2"></div><span class="year">1996</span></td>
<td><div style="height:50px;" class="performances female" title="1"></div><span class="year">1997</span></td>
<td><div style="height:100px;" class="performances female" title="2"></div><span class="year">1998</span></td>
<td><div style="height:50px;" class="performances female" title="1"></div><span class="year">1999</span></td>
<td><div style="height:100px;" class="performances female" title="2"></div><span class="year">2000</span></td>
<td><div style="height:100px;" class="performances female" title="2"></div><span class="year">2001</span></td>
<td><div style="height:100px;" class="performances female" title="2"></div><span class="year">2002</span></td>
<td><div style="height:0px;" class="performances female" title=""></div><span class="year">2003</span></td>
<td><div style="height:50px;" class="performances female" title="1"></div><span class="year">2004</span></td>
<td><div style="height:0px;" class="performances female" title=""></div><span class="year">2005</span></td>
<td><div style="height:100px;" class="performances female" title="2"></div><span class="year">2006</span></td>
<td><div style="height:50px;" class="performances female" title="1"></div><span class="year">2007</span></td>
<td><div style="height:0px;" class="performances female" title=""></div><span class="year">2008</span></td>
<td><div style="height:0px;" class="performances female" title=""></div><span class="year">2009</span></td>
<td><div style="height:0px;" class="performances female" title=""></div><span class="year">2010</span></td>
<td><div style="height:50px;" class="performances female" title="1"></div><span class="year">2011</span></td>
<td><div style="height:100px;" class="performances female" title="2"></div><span class="year">2012</span></td>
<td><div style="height:0px;" class="performances female" title=""></div><span class="year">2013</span></td>
<td><div style="height:0px;" class="performances female" title=""></div><span class="year">2014</span></td>
<td><div style="height:0px;" class="performances female" title=""></div><span class="year">2015</span></td>
<td><div style="height:0px;" class="performances female" title=""></div><span class="year">2016</span></td>
<td><div style="height:50px;" class="performances female" title="1"></div><span class="year">2017</span></td>
</tr>
</table>
</div>
<ol class="episodes">
<li><strong>2017-02-09</strong> / <a href="../shows/question-time.html">Question Time</a></li>
<li><strong>2012-11-29</strong> / <a href="../shows/loosewomen.html">Loose Women</a></li>
<li><strong>2012-02-24</strong> / <a href="../shows/loosewomen.html">Loose Women</a></li>
<li><strong>2011-06-14</strong> / <a href="../shows/loosewomen.html">Loose Women</a></li>
<li><strong>2007-11-23</strong> / <a href="../shows/hignfy.html">Have I Got News For You</a></li>
<li><strong>2006-12-01</strong> / <a href="../shows/hignfy.html">Have I Got News For You</a></li>
<li><strong>2006-09-21</strong> / <a href="../shows/question-time.html">Question Time</a></li>
<li><strong>2004-02-12</strong> / <a href="../shows/question-time.html">Question Time</a></li>
<li><strong>2002-10-17</strong> / <a href="../shows/question-time.html">Question Time</a></li>
<li><strong>2002-02-14</strong> / <a href="../shows/question-time.html">Question Time</a></li>
<li><strong>2001-06-28</strong> / <a href="../shows/question-time.html">Question Time</a></li>
<li><strong>2001-03-29</strong> / <a href="../shows/question-time.html">Question Time</a></li>
<li><strong>2000-11-30</strong> / <a href="../shows/question-time.html">Question Time</a></li>
<li><strong>2000-05-25</strong> / <a href="../shows/question-time.html">Question Time</a></li>
<li><strong>1999-09-30</strong> / <a href="../shows/question-time.html">Question Time</a></li>
<li><strong>1998-09-24</strong> / <a href="../shows/question-time.html">Question Time</a></li>
<li><strong>1998-01-22</strong> / <a href="../shows/question-time.html">Question Time</a></li>
<li><strong>1997-09-25</strong> / <a href="../shows/question-time.html">Question Time</a></li>
<li><strong>1996-10-24</strong> / <a href="../shows/question-time.html">Question Time</a></li>
<li><strong>1996-02-29</strong> / <a href="../shows/question-time.html">Question Time</a></li>
</ol>
</div>
</body>
</html>
|
_book/douceurs/palet-anis-clea.html | clrh/cuisine | <!DOCTYPE HTML>
<html lang="en-US" manifest="../manifest.appcache">
<head prefix="og: http://ogp.me/ns# book: http://ogp.me/ns/book#">
<meta charset="UTF-8">
<title>palet-anis-clea | Mon petit grimoire de cuisine</title>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<meta name="robots" content="index, follow">
<meta name="author" content="clrh">
<meta name="description" content="Book generated using GitBook">
<meta name="keywords" content="gitbook,github" >
<meta name="generator" content="www.gitbook.io">
<link rel="prev" href="../douceurs/cake-framboise-riz-clea.html" />
<meta property="og:title" content="palet-anis-clea | Mon petit grimoire de cuisine">
<meta property="og:site_name" content="Mon petit grimoire de cuisine">
<meta property="og:type" content="book">
<meta property="og:locale" content="en_US">
<meta property="book:author" content="https://github.com/clrh">
<meta property="book:tag" content="GitBook">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<link rel="shortcut icon" href="../gitbook/images/favicon.ico" type="image/x-icon">
</head>
<body>
<link rel="stylesheet" href="../gitbook/style.css">
<div class="book" data-github="clrh/cuisine" data-level="3.17" data-basepath=".." data-revision="1451252360400">
<div class="book-header">
<!-- Actions Left -->
<a href="#" class="btn pull-left toggle-summary" aria-label="Toggle summary"><i class="fa fa-align-justify"></i></a>
<a href="https://github.com/clrh/cuisine" target="_blank" class="btn pull-left home-bookmark" aria-label="GitHub home"><i class="fa fa-bookmark-o"></i></a>
<a href="#" class="btn pull-left toggle-search" aria-label="Toggle search"><i class="fa fa-search"></i></a>
<span id="font-settings-wrapper">
<a href="#" class="btn pull-left toggle-font-settings" aria-label="Toggle font settings"><i class="fa fa-font"></i>
</a>
<div class="dropdown-menu font-settings">
<div class="dropdown-caret">
<span class="caret-outer"></span>
<span class="caret-inner"></span>
</div>
<div class="btn-group btn-block">
<button id="reduce-font-size" class="btn btn-default">A</button>
<button id="enlarge-font-size" class="btn btn-default">A</button>
</div>
<ul class="list-group font-family-list">
<li class="list-group-item" data-font="0">Serif</li>
<li class="list-group-item" data-font="1">Sans</li>
</ul>
<div class="btn-group btn-group-xs btn-block color-theme-list">
<button type="button" class="btn btn-default" id="color-theme-preview-0" data-theme="0">White</button>
<button type="button" class="btn btn-default" id="color-theme-preview-1" data-theme="1">Sepia</button>
<button type="button" class="btn btn-default" id="color-theme-preview-2" data-theme="2">Night</button>
</div>
</div>
</span>
<!-- Actions Right -->
<a href="#" target="_blank" class="btn pull-right google-plus-sharing-link sharing-link" data-sharing="google-plus" aria-label="Share on Google Plus"><i class="fa fa-google-plus"></i></a>
<a href="#" target="_blank" class="btn pull-right facebook-sharing-link sharing-link" data-sharing="facebook" aria-label="Share on Facebook"><i class="fa fa-facebook"></i></a>
<a href="#" target="_blank" class="btn pull-right twitter-sharing-link sharing-link" data-sharing="twitter" aria-label="Share on Twitter"><i class="fa fa-twitter"></i></a>
<a href="https://github.com/clrh/cuisine/stargazers" target="_blank" class="btn pull-right count-star hidden-xs"><i class="fa fa-star-o"></i> Star (<span>-</span>)</a>
<a href="https://github.com/clrh/cuisine/watchers" target="_blank" class="btn pull-right count-watch hidden-xs"><i class="fa fa-eye"></i> Watch (<span>-</span>)</a>
<!-- Title -->
<h1>
<i class="fa fa-spinner fa-spin"></i>
<a href="../" >Mon petit grimoire de cuisine</a>
</h1>
</div>
<div class="book-summary">
<div class="book-search">
<input type="text" placeholder="Search" class="form-control" />
</div>
<ul class="summary">
<li>
<a href="https://github.com/clrh" target="blank" class="author-link">About the author</a>
</li>
<li>
<a href="https://github.com/clrh/cuisine/issues" target="blank"class="issues-link">Questions and Issues</a>
</li>
<li>
<a href="https://github.com/clrh/cuisine/edit/master/douceurs/palet-anis-clea.md" target="blank" class="contribute-link">Edit and Contribute</a>
</li>
<li class="divider"></li>
<li data-level="0" data-path="index.html">
<a href="../"><i class="fa fa-check"></i> Introduction</a>
</li>
<li class="chapter " data-level="1" >
<span><b>1.</b> autres</span>
<ul class="articles">
<li data-level="1.1" data-path="autres/pates-tarte-maman.html">
<a href="../autres/pates-tarte-maman.html">
<i class="fa fa-check"></i> <b>1.1.</b> pates-tarte-maman
</a>
</li>
<li data-level="1.2" data-path="autres/fruits-secs-sales.html">
<a href="../autres/fruits-secs-sales.html">
<i class="fa fa-check"></i> <b>1.2.</b> fruits-secs-sales
</a>
</li>
<li data-level="1.3" data-path="autres/bocal-ail-confit-voyage-cuisine.html">
<a href="../autres/bocal-ail-confit-voyage-cuisine.html">
<i class="fa fa-check"></i> <b>1.3.</b> bocal-ail-confit-voyage-cuisine
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="2" >
<span><b>2.</b> boissons</span>
<ul class="articles">
<li data-level="2.1" data-path="boissons/hypocras-pimentoiseau.html">
<a href="../boissons/hypocras-pimentoiseau.html">
<i class="fa fa-check"></i> <b>2.1.</b> hypocras-pimentoiseau
</a>
</li>
<li data-level="2.2" data-path="boissons/punch-pimentoiseau.html">
<a href="../boissons/punch-pimentoiseau.html">
<i class="fa fa-check"></i> <b>2.2.</b> punch-pimentoiseau
</a>
</li>
<li data-level="2.3" data-path="boissons/the-chai-indien-danielle.html">
<a href="../boissons/the-chai-indien-danielle.html">
<i class="fa fa-check"></i> <b>2.3.</b> the-chai-indien-danielle
</a>
</li>
<li data-level="2.4" data-path="boissons/README.html">
<a href="../boissons/README.html">
<i class="fa fa-check"></i> <b>2.4.</b> README
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="3" >
<span><b>3.</b> douceurs</span>
<ul class="articles">
<li data-level="3.1" data-path="douceurs/tarte-yahourt-tartinegourmande.html">
<a href="../douceurs/tarte-yahourt-tartinegourmande.html">
<i class="fa fa-check"></i> <b>3.1.</b> tarte-yahourt-tartinegourmande
</a>
</li>
<li data-level="3.2" data-path="douceurs/crepes-mamie.html">
<a href="../douceurs/crepes-mamie.html">
<i class="fa fa-check"></i> <b>3.2.</b> crepes-mamie
</a>
</li>
<li data-level="3.3" data-path="douceurs/cookies-laure.html">
<a href="../douceurs/cookies-laure.html">
<i class="fa fa-check"></i> <b>3.3.</b> cookies-laure
</a>
</li>
<li data-level="3.4" data-path="douceurs/gateau-matcha-clea.html">
<a href="../douceurs/gateau-matcha-clea.html">
<i class="fa fa-check"></i> <b>3.4.</b> gateau-matcha-clea
</a>
</li>
<li data-level="3.5" data-path="douceurs/lemon-cake-zoe.html">
<a href="../douceurs/lemon-cake-zoe.html">
<i class="fa fa-check"></i> <b>3.5.</b> lemon-cake-zoe
</a>
</li>
<li data-level="3.6" data-path="douceurs/gateau-sesame-noir-clea.html">
<a href="../douceurs/gateau-sesame-noir-clea.html">
<i class="fa fa-check"></i> <b>3.6.</b> gateau-sesame-noir-clea
</a>
</li>
<li data-level="3.7" data-path="douceurs/delice-oeuf-cru.html">
<a href="../douceurs/delice-oeuf-cru.html">
<i class="fa fa-check"></i> <b>3.7.</b> delice-oeuf-cru
</a>
</li>
<li data-level="3.8" data-path="douceurs/yahourts.html">
<a href="../douceurs/yahourts.html">
<i class="fa fa-check"></i> <b>3.8.</b> yahourts
</a>
</li>
<li data-level="3.9" data-path="douceurs/biscuits-cajou-clea.html">
<a href="../douceurs/biscuits-cajou-clea.html">
<i class="fa fa-check"></i> <b>3.9.</b> biscuits-cajou-clea
</a>
</li>
<li data-level="3.10" data-path="douceurs/lemon-curd-pimentoiseau.html">
<a href="../douceurs/lemon-curd-pimentoiseau.html">
<i class="fa fa-check"></i> <b>3.10.</b> lemon-curd-pimentoiseau
</a>
</li>
<li data-level="3.11" data-path="douceurs/laddous-vegan-cuisinevoyage.html">
<a href="../douceurs/laddous-vegan-cuisinevoyage.html">
<i class="fa fa-check"></i> <b>3.11.</b> laddous-vegan-cuisinevoyage
</a>
</li>
<li data-level="3.12" data-path="douceurs/cake-gym-clea.html">
<a href="../douceurs/cake-gym-clea.html">
<i class="fa fa-check"></i> <b>3.12.</b> cake-gym-clea
</a>
</li>
<li data-level="3.13" data-path="douceurs/tiramisu-herve.html">
<a href="../douceurs/tiramisu-herve.html">
<i class="fa fa-check"></i> <b>3.13.</b> tiramisu-herve
</a>
</li>
<li data-level="3.14" data-path="douceurs/pain-epices-clea.html">
<a href="../douceurs/pain-epices-clea.html">
<i class="fa fa-check"></i> <b>3.14.</b> pain-epices-clea
</a>
</li>
<li data-level="3.15" data-path="douceurs/gateau-citron-amande-clea.html">
<a href="../douceurs/gateau-citron-amande-clea.html">
<i class="fa fa-check"></i> <b>3.15.</b> gateau-citron-amande-clea
</a>
</li>
<li data-level="3.16" data-path="douceurs/cake-framboise-riz-clea.html">
<a href="../douceurs/cake-framboise-riz-clea.html">
<i class="fa fa-check"></i> <b>3.16.</b> cake-framboise-riz-clea
</a>
</li>
<li data-level="3.17" data-path="douceurs/palet-anis-clea.html">
<a href="../douceurs/palet-anis-clea.html">
<i class="fa fa-check"></i> <b>3.17.</b> palet-anis-clea
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="4" >
<span><b>4.</b> plats-viande</span>
<ul class="articles">
<li data-level="4.1" data-path="plats-viande/epaule-agneau-maman.html">
<a href="../plats-viande/epaule-agneau-maman.html">
<i class="fa fa-check"></i> <b>4.1.</b> epaule-agneau-maman
</a>
</li>
<li data-level="4.2" data-path="plats-viande/tajine-agneau-maman.html">
<a href="../plats-viande/tajine-agneau-maman.html">
<i class="fa fa-check"></i> <b>4.2.</b> tajine-agneau-maman
</a>
</li>
<li data-level="4.3" data-path="plats-viande/boulettes-viande-maman.html">
<a href="../plats-viande/boulettes-viande-maman.html">
<i class="fa fa-check"></i> <b>4.3.</b> boulettes-viande-maman
</a>
</li>
<li data-level="4.4" data-path="plats-viande/daube-maman.html">
<a href="../plats-viande/daube-maman.html">
<i class="fa fa-check"></i> <b>4.4.</b> daube-maman
</a>
</li>
<li data-level="4.5" data-path="plats-viande/blanquette-veau-maman.html">
<a href="../plats-viande/blanquette-veau-maman.html">
<i class="fa fa-check"></i> <b>4.5.</b> blanquette-veau-maman
</a>
</li>
<li data-level="4.6" data-path="plats-viande/cari-poulet-jb.html">
<a href="../plats-viande/cari-poulet-jb.html">
<i class="fa fa-check"></i> <b>4.6.</b> cari-poulet-jb
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="5" >
<span><b>5.</b> a_trier</span>
<ul class="articles">
<li data-level="5.1" data-path="a_trier/boulettes_aubergines.html">
<a href="../a_trier/boulettes_aubergines.html">
<i class="fa fa-check"></i> <b>5.1.</b> boulettes_aubergines
</a>
</li>
<li data-level="5.2" data-path="a_trier/README.html">
<a href="../a_trier/README.html">
<i class="fa fa-check"></i> <b>5.2.</b> README
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="6" >
<span><b>6.</b> plats</span>
<ul class="articles">
<li data-level="6.1" data-path="plats/idees-barbeq.html">
<a href="../plats/idees-barbeq.html">
<i class="fa fa-check"></i> <b>6.1.</b> idees-barbeq
</a>
</li>
<li data-level="6.2" data-path="plats/espagnol-noname-mezzo.html">
<a href="../plats/espagnol-noname-mezzo.html">
<i class="fa fa-check"></i> <b>6.2.</b> espagnol-noname-mezzo
</a>
</li>
<li data-level="6.3" >
<span><b>6.3.</b> vege</span>
</li>
<li data-level="6.4" data-path="plats/rillettes-deux-saumons-pimentoiseau.html">
<a href="../plats/rillettes-deux-saumons-pimentoiseau.html">
<i class="fa fa-check"></i> <b>6.4.</b> rillettes-deux-saumons-pimentoiseau
</a>
</li>
<li data-level="6.5" data-path="plats/cake-citron-saumon-sylvie.html">
<a href="../plats/cake-citron-saumon-sylvie.html">
<i class="fa fa-check"></i> <b>6.5.</b> cake-citron-saumon-sylvie
</a>
</li>
<li data-level="6.6" data-path="plats/carabaccia-clea.html">
<a href="../plats/carabaccia-clea.html">
<i class="fa fa-check"></i> <b>6.6.</b> carabaccia-clea
</a>
</li>
<li data-level="6.7" data-path="plats/terrine-aubergine-quinoa.html">
<a href="../plats/terrine-aubergine-quinoa.html">
<i class="fa fa-check"></i> <b>6.7.</b> terrine-aubergine-quinoa
</a>
</li>
<li data-level="6.8" data-path="plats/tarte-courgette-maman.html">
<a href="../plats/tarte-courgette-maman.html">
<i class="fa fa-check"></i> <b>6.8.</b> tarte-courgette-maman
</a>
</li>
<li data-level="6.9" data-path="plats/pizzas-papa.html">
<a href="../plats/pizzas-papa.html">
<i class="fa fa-check"></i> <b>6.9.</b> pizzas-papa
</a>
</li>
<li data-level="6.10" data-path="plats/terrine-poischiche-vcupillard.html">
<a href="../plats/terrine-poischiche-vcupillard.html">
<i class="fa fa-check"></i> <b>6.10.</b> terrine-poischiche-vcupillard
</a>
</li>
<li data-level="6.11" data-path="plats/tarte-tomate-maman.html">
<a href="../plats/tarte-tomate-maman.html">
<i class="fa fa-check"></i> <b>6.11.</b> tarte-tomate-maman
</a>
</li>
<li data-level="6.12" data-path="plats/mafe-vegan-blogbio.html">
<a href="../plats/mafe-vegan-blogbio.html">
<i class="fa fa-check"></i> <b>6.12.</b> mafe-vegan-blogbio
</a>
</li>
<li data-level="6.13" data-path="plats/poischiche-tomate-mezzo.html">
<a href="../plats/poischiche-tomate-mezzo.html">
<i class="fa fa-check"></i> <b>6.13.</b> poischiche-tomate-mezzo
</a>
</li>
<li data-level="6.14" data-path="plats/tian-courgette-sylvie-christian.html">
<a href="../plats/tian-courgette-sylvie-christian.html">
<i class="fa fa-check"></i> <b>6.14.</b> tian-courgette-sylvie-christian
</a>
</li>
<li data-level="6.15" data-path="plats/couscous-mezzo.html">
<a href="../plats/couscous-mezzo.html">
<i class="fa fa-check"></i> <b>6.15.</b> couscous-mezzo
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="7" >
<span><b>7.</b> entrees</span>
<ul class="articles">
<li data-level="7.1" data-path="entrees/bouchees-tofu-clea.html">
<a href="../entrees/bouchees-tofu-clea.html">
<i class="fa fa-check"></i> <b>7.1.</b> bouchees-tofu-clea
</a>
</li>
<li data-level="7.2" data-path="entrees/gaspacho-marmiton.html">
<a href="../entrees/gaspacho-marmiton.html">
<i class="fa fa-check"></i> <b>7.2.</b> gaspacho-marmiton
</a>
</li>
<li data-level="7.3" data-path="entrees/pate-miso-clea.html">
<a href="../entrees/pate-miso-clea.html">
<i class="fa fa-check"></i> <b>7.3.</b> pate-miso-clea
</a>
</li>
<li data-level="7.4" data-path="entrees/tartare-algues-maman.html">
<a href="../entrees/tartare-algues-maman.html">
<i class="fa fa-check"></i> <b>7.4.</b> tartare-algues-maman
</a>
</li>
<li data-level="7.5" data-path="entrees/salade-pois-chiche-maman.html">
<a href="../entrees/salade-pois-chiche-maman.html">
<i class="fa fa-check"></i> <b>7.5.</b> salade-pois-chiche-maman
</a>
</li>
<li data-level="7.6" data-path="entrees/README.html">
<a href="../entrees/README.html">
<i class="fa fa-check"></i> <b>7.6.</b> README
</a>
</li>
<li data-level="7.7" data-path="entrees/taboule-libannais-mezzo.html">
<a href="../entrees/taboule-libannais-mezzo.html">
<i class="fa fa-check"></i> <b>7.7.</b> taboule-libannais-mezzo
</a>
</li>
<li data-level="7.8" data-path="entrees/houmous-rose-clea.html">
<a href="../entrees/houmous-rose-clea.html">
<i class="fa fa-check"></i> <b>7.8.</b> houmous-rose-clea
</a>
</li>
<li data-level="7.9" data-path="entrees/cake-gruyere-oignon-clea.html">
<a href="../entrees/cake-gruyere-oignon-clea.html">
<i class="fa fa-check"></i> <b>7.9.</b> cake-gruyere-oignon-clea
</a>
</li>
<li data-level="7.10" data-path="entrees/carottes-orientale-mezzo.html">
<a href="../entrees/carottes-orientale-mezzo.html">
<i class="fa fa-check"></i> <b>7.10.</b> carottes-orientale-mezzo
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="8" >
<span><b>8.</b> _book</span>
<ul class="articles">
<li data-level="8.1" >
<span><b>8.1.</b> plats</span>
</li>
</ul>
</li>
<li class="divider"></li>
<li>
<a href="http://www.gitbook.io/" target="blank" class="gitbook-link">Generated using GitBook</a>
</li>
</ul>
</div>
<div class="book-body">
<div class="body-inner">
<div class="page-wrapper" tabindex="-1">
<div class="book-progress">
<div class="bar">
<div class="inner" style="width: 28.571428571428573%;min-width: 26.785714285714285%;"></div>
</div>
<div class="chapters">
<a href="../index.html" title="Introduction" class="chapter done new-chapter" data-progress="0" style="left: 0%;"></a>
<a href="../autres/pates-tarte-maman.html" title="pates-tarte-maman" class="chapter done " data-progress="1.1" style="left: 1.7857142857142858%;"></a>
<a href="../autres/fruits-secs-sales.html" title="fruits-secs-sales" class="chapter done " data-progress="1.2" style="left: 3.5714285714285716%;"></a>
<a href="../autres/bocal-ail-confit-voyage-cuisine.html" title="bocal-ail-confit-voyage-cuisine" class="chapter done " data-progress="1.3" style="left: 5.357142857142857%;"></a>
<a href="../boissons/hypocras-pimentoiseau.html" title="hypocras-pimentoiseau" class="chapter done " data-progress="2.1" style="left: 7.142857142857143%;"></a>
<a href="../boissons/punch-pimentoiseau.html" title="punch-pimentoiseau" class="chapter done " data-progress="2.2" style="left: 8.928571428571429%;"></a>
<a href="../boissons/the-chai-indien-danielle.html" title="the-chai-indien-danielle" class="chapter done " data-progress="2.3" style="left: 10.714285714285714%;"></a>
<a href="../boissons/README.html" title="README" class="chapter done " data-progress="2.4" style="left: 12.5%;"></a>
<a href="../douceurs/tarte-yahourt-tartinegourmande.html" title="tarte-yahourt-tartinegourmande" class="chapter done " data-progress="3.1" style="left: 14.285714285714286%;"></a>
<a href="../douceurs/lemon-curd-pimentoiseau.html" title="lemon-curd-pimentoiseau" class="chapter done " data-progress="3.10" style="left: 16.071428571428573%;"></a>
<a href="../douceurs/laddous-vegan-cuisinevoyage.html" title="laddous-vegan-cuisinevoyage" class="chapter done " data-progress="3.11" style="left: 17.857142857142858%;"></a>
<a href="../douceurs/cake-gym-clea.html" title="cake-gym-clea" class="chapter done " data-progress="3.12" style="left: 19.642857142857142%;"></a>
<a href="../douceurs/tiramisu-herve.html" title="tiramisu-herve" class="chapter done " data-progress="3.13" style="left: 21.428571428571427%;"></a>
<a href="../douceurs/pain-epices-clea.html" title="pain-epices-clea" class="chapter done " data-progress="3.14" style="left: 23.214285714285715%;"></a>
<a href="../douceurs/gateau-citron-amande-clea.html" title="gateau-citron-amande-clea" class="chapter done " data-progress="3.15" style="left: 25%;"></a>
<a href="../douceurs/cake-framboise-riz-clea.html" title="cake-framboise-riz-clea" class="chapter done " data-progress="3.16" style="left: 26.785714285714285%;"></a>
<a href="../douceurs/palet-anis-clea.html" title="palet-anis-clea" class="chapter done " data-progress="3.17" style="left: 28.571428571428573%;"></a>
<a href="../douceurs/crepes-mamie.html" title="crepes-mamie" class="chapter " data-progress="3.2" style="left: 30.357142857142858%;"></a>
<a href="../douceurs/cookies-laure.html" title="cookies-laure" class="chapter " data-progress="3.3" style="left: 32.142857142857146%;"></a>
<a href="../douceurs/gateau-matcha-clea.html" title="gateau-matcha-clea" class="chapter " data-progress="3.4" style="left: 33.92857142857143%;"></a>
<a href="../douceurs/lemon-cake-zoe.html" title="lemon-cake-zoe" class="chapter " data-progress="3.5" style="left: 35.714285714285715%;"></a>
<a href="../douceurs/gateau-sesame-noir-clea.html" title="gateau-sesame-noir-clea" class="chapter " data-progress="3.6" style="left: 37.5%;"></a>
<a href="../douceurs/delice-oeuf-cru.html" title="delice-oeuf-cru" class="chapter " data-progress="3.7" style="left: 39.285714285714285%;"></a>
<a href="../douceurs/yahourts.html" title="yahourts" class="chapter " data-progress="3.8" style="left: 41.07142857142857%;"></a>
<a href="../douceurs/biscuits-cajou-clea.html" title="biscuits-cajou-clea" class="chapter " data-progress="3.9" style="left: 42.857142857142854%;"></a>
<a href="../plats-viande/epaule-agneau-maman.html" title="epaule-agneau-maman" class="chapter " data-progress="4.1" style="left: 44.642857142857146%;"></a>
<a href="../plats-viande/tajine-agneau-maman.html" title="tajine-agneau-maman" class="chapter " data-progress="4.2" style="left: 46.42857142857143%;"></a>
<a href="../plats-viande/boulettes-viande-maman.html" title="boulettes-viande-maman" class="chapter " data-progress="4.3" style="left: 48.214285714285715%;"></a>
<a href="../plats-viande/daube-maman.html" title="daube-maman" class="chapter " data-progress="4.4" style="left: 50%;"></a>
<a href="../plats-viande/blanquette-veau-maman.html" title="blanquette-veau-maman" class="chapter " data-progress="4.5" style="left: 51.785714285714285%;"></a>
<a href="../plats-viande/cari-poulet-jb.html" title="cari-poulet-jb" class="chapter " data-progress="4.6" style="left: 53.57142857142857%;"></a>
<a href="../a_trier/boulettes_aubergines.html" title="boulettes_aubergines" class="chapter " data-progress="5.1" style="left: 55.357142857142854%;"></a>
<a href="../a_trier/README.html" title="README" class="chapter " data-progress="5.2" style="left: 57.142857142857146%;"></a>
<a href="../plats/idees-barbeq.html" title="idees-barbeq" class="chapter " data-progress="6.1" style="left: 58.92857142857143%;"></a>
<a href="../plats/terrine-poischiche-vcupillard.html" title="terrine-poischiche-vcupillard" class="chapter " data-progress="6.10" style="left: 60.714285714285715%;"></a>
<a href="../plats/tarte-tomate-maman.html" title="tarte-tomate-maman" class="chapter " data-progress="6.11" style="left: 62.5%;"></a>
<a href="../plats/mafe-vegan-blogbio.html" title="mafe-vegan-blogbio" class="chapter " data-progress="6.12" style="left: 64.28571428571429%;"></a>
<a href="../plats/poischiche-tomate-mezzo.html" title="poischiche-tomate-mezzo" class="chapter " data-progress="6.13" style="left: 66.07142857142857%;"></a>
<a href="../plats/tian-courgette-sylvie-christian.html" title="tian-courgette-sylvie-christian" class="chapter " data-progress="6.14" style="left: 67.85714285714286%;"></a>
<a href="../plats/couscous-mezzo.html" title="couscous-mezzo" class="chapter " data-progress="6.15" style="left: 69.64285714285714%;"></a>
<a href="../plats/espagnol-noname-mezzo.html" title="espagnol-noname-mezzo" class="chapter " data-progress="6.2" style="left: 71.42857142857143%;"></a>
<a href="../plats/rillettes-deux-saumons-pimentoiseau.html" title="rillettes-deux-saumons-pimentoiseau" class="chapter " data-progress="6.4" style="left: 73.21428571428571%;"></a>
<a href="../plats/cake-citron-saumon-sylvie.html" title="cake-citron-saumon-sylvie" class="chapter " data-progress="6.5" style="left: 75%;"></a>
<a href="../plats/carabaccia-clea.html" title="carabaccia-clea" class="chapter " data-progress="6.6" style="left: 76.78571428571429%;"></a>
<a href="../plats/terrine-aubergine-quinoa.html" title="terrine-aubergine-quinoa" class="chapter " data-progress="6.7" style="left: 78.57142857142857%;"></a>
<a href="../plats/tarte-courgette-maman.html" title="tarte-courgette-maman" class="chapter " data-progress="6.8" style="left: 80.35714285714286%;"></a>
<a href="../plats/pizzas-papa.html" title="pizzas-papa" class="chapter " data-progress="6.9" style="left: 82.14285714285714%;"></a>
<a href="../entrees/bouchees-tofu-clea.html" title="bouchees-tofu-clea" class="chapter " data-progress="7.1" style="left: 83.92857142857143%;"></a>
<a href="../entrees/carottes-orientale-mezzo.html" title="carottes-orientale-mezzo" class="chapter " data-progress="7.10" style="left: 85.71428571428571%;"></a>
<a href="../entrees/gaspacho-marmiton.html" title="gaspacho-marmiton" class="chapter " data-progress="7.2" style="left: 87.5%;"></a>
<a href="../entrees/pate-miso-clea.html" title="pate-miso-clea" class="chapter " data-progress="7.3" style="left: 89.28571428571429%;"></a>
<a href="../entrees/tartare-algues-maman.html" title="tartare-algues-maman" class="chapter " data-progress="7.4" style="left: 91.07142857142857%;"></a>
<a href="../entrees/salade-pois-chiche-maman.html" title="salade-pois-chiche-maman" class="chapter " data-progress="7.5" style="left: 92.85714285714286%;"></a>
<a href="../entrees/README.html" title="README" class="chapter " data-progress="7.6" style="left: 94.64285714285714%;"></a>
<a href="../entrees/taboule-libannais-mezzo.html" title="taboule-libannais-mezzo" class="chapter " data-progress="7.7" style="left: 96.42857142857143%;"></a>
<a href="../entrees/houmous-rose-clea.html" title="houmous-rose-clea" class="chapter " data-progress="7.8" style="left: 98.21428571428571%;"></a>
<a href="../entrees/cake-gruyere-oignon-clea.html" title="cake-gruyere-oignon-clea" class="chapter " data-progress="7.9" style="left: 100%;"></a>
</div>
</div>
<div class="page-inner">
<section class="normal" id="section-gitbook_24">
<h2 id="palets-l-anis-et-la-farine-de-ma-s">Palets à l’anis et à la farine de maïs</h2>
<ul>
<li><p><a href="http://www.cleacuisine.fr/biscuits-cookies/palets-a-lanis-et-a-la-farine-de-mais/" target="_blank">http://www.cleacuisine.fr/biscuits-cookies/palets-a-lanis-et-a-la-farine-de-mais/</a></p>
</li>
<li><p>2 oeufs</p>
</li>
<li>70 grammes de sucre de canne blond ou brun</li>
<li>100 grammes de farine de maïs (pas de la maïzena (fécule), de la farine !)</li>
<li>1 c. à café d’anis en poudre ou de graines d’anis</li>
</ul>
<p>Battre les oeufs. Ajouter le reste des ingrédients. Former des palets sur la plaque de cuisson. Enfourner pour 15 mn à 160°C. Laisser refroidir.</p>
</section>
</div>
</div>
</div>
<a href="../douceurs/cake-framboise-riz-clea.html" class="navigation navigation-prev navigation-unique" aria-label="Previous page: cake-framboise-riz-clea"><i class="fa fa-angle-left"></i></a>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/ace/1.1.3/ace.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/ace/1.1.3/mode-javascript.js"></script>
<script src="../gitbook/jsrepl/jsrepl.js" id="jsrepl-script"></script>
<script src="../gitbook/app.js"></script>
<script src="../gitbook/plugins/gitbook-plugin-mixpanel/plugin.js"></script>
<script src="http://cdn.mathjax.org/mathjax/2.0-latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
<script src="../gitbook/plugins/gitbook-plugin-mathjax/plugin.js"></script>
<script>
require(["gitbook"], function(gitbook) {
var config = {};
gitbook.start(config);
});
</script>
</body>
</html>
|
BlogPosts/PrerequisiteCorePlugin.html | ima9ines/nopCommerce | <h5>Prerequisite - <a href="/core-plugin" target="_blank">Core plugin</a></h5>
<p class="m-0"><small>Should be installed and enabled first.</small></p>
|
src/Viteloge/CoreBundle/Resources/descriptions/64322.html | donaldinou/frontend | <div class="commune_descr limited">
<p>
Lasse est
un village
situé dans le département des Pyrénées-Atlantiques en Aquitaine. Elle comptait 287 habitants en 2008.</p>
<p>À coté de Lasse sont localisées les communes de
<a href="{{VLROOT}}/immobilier/saint-michel_64492/">Saint-Michel</a> localisée à 3 km, 241 habitants,
<a href="{{VLROOT}}/immobilier/irouleguy_64274/">Irouléguy</a> à 3 km, 316 habitants,
<a href="{{VLROOT}}/immobilier/aincille_64011/">Aincille</a> localisée à 5 km, 120 habitants,
<a href="{{VLROOT}}/immobilier/ascarat_64066/">Ascarat</a> située à 1 km, 280 habitants,
<a href="{{VLROOT}}/immobilier/saint-jean-le-vieux_64484/">Saint-Jean-le-Vieux</a> à 5 km, 858 habitants,
<a href="{{VLROOT}}/immobilier/arneguy_64047/">Arnéguy</a> à 5 km, 279 habitants,
entre autres. De plus, Lasse est située à seulement 25 km de <a href="{{VLROOT}}/immobilier/hasparren_64256/">Hasparren</a>.</p>
<p>La commune compte quelques équipements, elle propose entre autres une boucle de randonnée.</p>
<p>Si vous envisagez de emmenager à Lasse, vous pourrez aisément trouver une maison à acheter. </p>
<p>Le parc de logements, à Lasse, se décomposait en 2011 en sept appartements et 139 maisons soit
un marché plutôt équilibré.</p>
</div>
|
view/ajax/visualizar-anuncio.html | tunnes/trampaki-web | <div id="wrapper-anuncio" class='wrapper_janela container-fluid'>
<h1 id='tituloAnuncioDOM'>LOREM TORNEIRA</h1>
<!--<img src="view/img/ic_mode_edit_48px-128.png"></img>-->
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12" id="wrapper-imagens-anuncio">
<div id="imagem01"></div>
<div id="imagem02"></div>
<div id="imagem03"></div>
</div>
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<h2>DESCRIÇÃO</h2>
<p id="longHistorio"></p>
</div>
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<h2>CATEGORIAS</h2>
<div id='categorias'></div>
</div>
<div id='buttons'>
<button id="mapa-retornar" onclick='retornar()' type="button">RETORNAR AO MAPA</button>
<button id="conectar" onclick='editar()' type="button">EDITAR</button>
</div>
</div> |
app/views/latest_c/job_claim_active_oldest.html | dwpdigitaltech/ejs-prototype | {% extends "layout.html" %}
{% block page_title %}
GOV.UK prototyping kit
{% endblock %}
{% block propositionHeader %}
{% include "includes/propositional_navigation.html" %}
{% endblock %}
{% block content %}
<main id="content" role="main">
<div class="grid-row">
<div class="column-quarter grid-col" style="padding-bottom:90px; padding-top:30px; margin-left:-40px">
<ul class="main-nav">
<li id="nav-home"><a href="job">Search</a></li>
<li id="nav-job"><a href="job_new">Create record</a></li>
<li id="nav-perf"><a href="performance">Performance</a></li>
</ul>
</div>
<!-- Start three quarters container for main content columns -->
<div class="column-three-quarters">
<h1 class="heading-large"> Summary</h1>
<div class="column">
<!-- 3rd level nav buttons -->
<div id="id-claimant-actions" class="grid-wrapper gutter-half-top">
<div class="grid grid-1-5">
<div class="inner-block left">
<a id="view_record" href="job_record_confirm" class="menu-item">
<strong>Summary</strong>
</a>
</div>
</div>
<div class="grid grid-1-5">
<div class="inner-block left">
<a id="edit_record" href="job_edit_confirm" class="menu-item">
<strong>Claimant</strong>
</a>
</div>
</div>
<div class="grid grid-1-5">
<div class="inner-block left">
<a id="appointments" href="job_next_new" class="menu-item">
<strong>Appointment</strong>
</a>
</div>
</div>
<div class="grid grid-1-5">
<div class="inner-block left">
<a id="claim_active" href="job_claim_active" class="menu-item selected">
<strong>Claim</strong>
</a>
</div>
</div>
</div>
</div>
<div class="column-half">
<div class="form-group">
<fieldset>
<legend class="form-label">Benefit type</legend>
<label class="block-label" for="JSA">
<input id="JSA" name="JSA" type="radio" value="Jobseeker's Allowance" checked>
Jobseeker's Allowance
</label><br>
<label class="block-label disabled" class="disabled" for="ESA">
<input id="ESA" name="ESA" type="radio" value="ESA" disabled>
Employment Support Allowance
</label><br>
<label class="block-label disabled" class="disabled" for="IS">
<input id="IS" name="IS" type="radio" value="IS" disabled>
Income Support
</label>
</fieldset>
</div>
<div class="form-group">
<fieldset>
<legend>
<span class="form-label">
Initial date of claim
</span>
</legend>
<div class="form-date">
<p class="form-hint">For example, 01 08 2015</p>
<div class="form-group form-group-day">
<label for="dob-day">Day</label>
<input class="form-control" id="dob-day" type="number" pattern="[0-9]*" min="0" max="31" value="14">
</div>
<div class="form-group form-group-month">
<label for="dob-month">Month</label>
<input class="form-control" id="dob-month" type="number" pattern="[0-9]*" min="0" max="12" value="09">
</div>
<div class="form-group form-group-year">
<label for="dob-year">Year</label>
<input class="form-control" id="dob-year" type="number" pattern="[0-9]*" min="0" max="2014" value="2015">
</div>
</div>
</fieldset>
</div>
</div>
<!-- End col -->
<div class="column-half">
<div class="form-group">
<label class="form-label" for="title">Jobcentre</label>
<select class="select form-control">
<option value="Worcester">Worcester</option>
<option value="Bambury">Bambury</option>
<option value="Southampton">Southampton</option>
<option value="Bradford">Bradford</option>
<option value="Derby">Derby</option>
<option value="Liverpool">Liverpool</option>
<option value="Manchester">Manchester</option>
<option value="Portsmouth">Portsmouth</option>
<option value="Southampton">Southampton</option>
<option value="Wolverhampton">Wolverhampton</option>
</select>
</div>
<div class="form-group">
<label class="form-label" for="title">Work coach</label>
<select class="select form-control">
<option value="amanda.wright">amanda.wright</option>
<option value="richard.kaine">richard.kaine</option>
<option value="john.smith2">john.smith2</option>
<option value="amanda.wright">amanda.wright</option>
<option value="darren.moody">darren.moody</option>
<option value="mark.jones1">mark.jones1</option>
<option value="sam.steel">sam.steel</option>
<option value="harry.brown2">harry.brown2</option>
<option value="julia.granger">julia.granger</option>
<option value="paul.brookes1">paul.brookes1</option>
<option value="sarah.fielding">sarah.fielding</option>
</select>
</div>
<div class="example">
<form>
<fieldset>
<legend class="form-label">Work programme</legend>
<div class="form-group form-group-compound">
<label class="block-label" data-target="example-ni-number" for="radio-indent-4">
<input id="radio-indent-4" type="radio" name="radio-indent-group" value="Completed" aria-controls="example-ni-number">
Close Claim
</label>
</div>
</fieldset>
</form>
</div>
<div class="panel-indent js-hidden" id="example-ni-number">
<div class="form-group">
<p>Select all 'Help to Work' options that apply</p>
<form>
<fieldset>
<legend class="visuallyhidden">Select all 'Help to Work' options that apply</legend>
<label class="block-label" for="dis-1">
<input id="dis-1" name="help" type="radio" value="Attend Jobcentre every day">
Attend Jobcentre every day
</label>
<label class="block-label" for="dis-2">
<input id="dis-2" name="help" type="radio" value="Community Work Placement">
Community Work Placement
</label>
<label class="block-label" for="dis-3">
<input id="dis-3" name="help" type="radio" value="Intensive support">
Intensive support
</label>
</fieldset>
</form>
</div>
<div class="form-group">
<fieldset>
<legend>
<span class="form-label">
Last effective date (optional)
</span>
</legend>
<div class="form-date">
<p class="form-hint">For example, 01 09 2015</p>
<div class="form-group form-group-day">
<label for="dob-day">Day</label>
<input class="form-control" id="dob-day" type="number" pattern="[0-9]*" min="0" max="31" value="">
</div>
<div class="form-group form-group-month">
<label for="dob-month">Month</label>
<input class="form-control" id="dob-month" type="number" pattern="[0-9]*" min="0" max="12" value="">
</div>
<div class="form-group form-group-year">
<label for="dob-year">Year</label>
<input class="form-control" id="dob-year" type="number" pattern="[0-9]*" min="0" max="2015" value="">
</div>
</div>
</fieldset>
</div>
<div class="form-group">
<label class="form-label" for="circs">Claim closure (optional)</label>
<select class="select form-control" id="circs">
<option value="Select">Select</option>
<option value="Found work">Found work</option>
<option value="Self employed">Self employed</option>
<option value="Failed to attend">Failed to attend</option>
<option value="Gone abroad">Gone abroad</option>
<option value="Other">Other</option>
<option value="To JSA">To JSA</option>
<option value="To ESA">To ESA</option>
<option value="To IS">To IS</option>
<option value="To Pension">To Pension</option>
</select>
</div>
</div>
<!-- End column -->
<div class="column">
<div class="form-group" id="get-started">
<a href="job_record_confirm_dormant" class="button" value="Save">Save</a>
</div>
</div>
<!-- End row-->
</div>
</main>
{% endblock %}
|
tests/expected_output.html | zhaochunqi/simiki | <!DOCTYPE HTML>
<html>
<head>
<link rel="Stylesheet" type="text/css" href="/static/css/style.css">
<link rel="Stylesheet" type="text/css" href="/static/css/tango.css">
<title>Foo Page 2 - </title>
<meta name="keywords" content=""/>
<meta name="description" content=""/>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body>
<div id="container">
<div id="header">
<div id="post-nav"><a href="/">Home</a> » <a href="/#foo目录">foo目录</a> » Foo Page 2</div>
</div>
<div class="clearfix"></div>
<div id="title">Foo Page 2</div>
<div id="content">
<p>Simiki is a simple wiki framework, written in Python.</p>
</div>
</div>
<div id="footer">
<span>
Copyright © 2012-2014 .
Powered by <a href="http://simiki.org/" target="_blank">Simiki</a>.
</span>
</div>
</body>
</html> |
_includes/resume-volunteer-1.html | chrisnguyenhi/chrisnguyenhi.github.io | <!-- Used by theme-bio-builtin-1 -->
{% if site.data.bio.volunteer %}
<div class="row">
<div class="two wide column">
<h3 class="ui left aligned header no-bottom volunteer">Activities</h3>
</div>
<div class="fourteen wide column no-bottom volunteer">
{% for entry in site.data.bio.volunteer %}
<div class="ui grid">
<div class="twelve wide column no-bottom">
<p class="ui no-bottom">
<b>
{{ entry.position }}{% if entry.organization and (entry.organization != "") %}, {{ entry.organization }}{% endif %}
</b>
</p>
<p class="ui no-bottom"><a href="{{ entry.website }}">{{ entry.website | remove: "http://" | remove: "https://" }}</a></p>
<p class="ui no-bottom">{{ entry.summary }}</p>
{% if entry.highlights %}
<ul style="margin: 0px;">
{% for highlight in entry.highlights %}
<li>{{ highlight }}</li>
{% endfor %}
</ul>
{% endif %}
</div>
<div class="four wide right aligned column no-bottom">
<p class="ui no-bottom"><b>
{% if entry.startDate %}
{{ entry.startDate | slice: 0,4 }}
{% endif %}
{% if entry.startDate and entry.startDate != '' and entry.endDate and entry.endDate != '' %}
-
{% endif %}
{% if entry.endDate %}
{% if entry.endDate != "Present" %}
{{ entry.endDate | slice: 0,4 }}
{% else %}
{{ entry.endDate }}
{% endif %}
{% endif %}
</b></p>
</div>
</div>
{% endfor %}
</div>
</div>
{% endif %} |
templates/extended_profile/avatar_form.html | andrewnsk/dorokhin.moscow | {% extends 'base.html' %}
{% block javascript %}
<script>
$(function () {
/* SCRIPT TO OPEN THE MODAL WITH THE PREVIEW */
$("#id_avatar").change(function () {
if (this.files && this.files[0]) {
var reader = new FileReader();
reader.onload = function (e) {
$("#image").attr("src", e.target.result);
$("#modalCrop").modal("show");
}
reader.readAsDataURL(this.files[0]);
}
});
/* SCRIPTS TO HANDLE THE CROPPER BOX */
var $image = $("#image");
var cropBoxData;
var canvasData;
$("#modalCrop").on("shown.bs.modal", function () {
$image.cropper({
viewMode: 1,
aspectRatio: 1/1,
minCropBoxWidth: 200,
minCropBoxHeight: 200,
ready: function () {
$image.cropper("setCanvasData", canvasData);
$image.cropper("setCropBoxData", cropBoxData);
}
});
}).on("hidden.bs.modal", function () {
cropBoxData = $image.cropper("getCropBoxData");
canvasData = $image.cropper("getCanvasData");
$image.cropper("destroy");
});
$(".js-zoom-in").click(function () {
$image.cropper("zoom", 0.1);
});
$(".js-zoom-out").click(function () {
$image.cropper("zoom", -0.1);
});
/* SCRIPT TO COLLECT THE DATA AND POST TO THE SERVER */
$(".js-crop-and-upload").click(function () {
var cropData = $image.cropper("getData");
$("#id_x").val(cropData["x"]);
$("#id_y").val(cropData["y"]);
$("#id_height").val(cropData["height"]);
$("#id_width").val(cropData["width"]);
$("#formUpload").submit();
});
});
</script>
{% endblock %}
{% block content %}
<div class="col-sm-12 col-md-12">
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Сменить аватар</h3>
</div>
<div class="panel-body">
<div class="col-sm-4 col-md-3">
<h3>Текущий аватар</h3>
<img src="{{ profile.avatar.url }}" width="200px" height="200px" class="thumbnail">
</div>
<div class="col-sm-4 col-md-3">
<!-- FORM TO UPLOAD THE IMAGES -->
<form method="post" action="{% url 'extended_profile:change_avatar' user.id %}" enctype="multipart/form-data" id="formUpload">
{% csrf_token %}
<div class="file-upload" data-text="Выберите файл">
{{ form.as_table }}
</div>
</form>
</div>
</div>
</div>
</div>
<!-- MODAL TO CROP THE IMAGE -->
<div class="modal fade" id="modalCrop">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
<h4 class="modal-title">Обрезать фото</h4>
</div>
<div class="modal-body">
<img src="" id="image" style="max-width: 100%;">
</div>
<div class="modal-footer">
<div class="btn-group pull-left" role="group">
<button type="button" class="btn btn-default js-zoom-in">
<i class="icon-zoom-in"></i>
</button>
<button type="button" class="btn btn-default js-zoom-out">
<i class="icon-zoom-out"></i>
</button>
</div>
<button type="button" class="btn btn-default" data-dismiss="modal">Не обрезать</button>
<button type="button" class="btn btn-primary js-crop-and-upload">Загрузить</button>
</div>
</div>
</div>
</div>
{% endblock %} |
docs/categories/page/1/index.html | shohan4556/me | <!DOCTYPE html><html><head><title>https://shohan4556.github.io/me/categories/</title><link rel="canonical" href="https://shohan4556.github.io/me/categories/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=https://shohan4556.github.io/me/categories/" /></head></html> |
app/templates/partials/footer.html | ONSdigital/eq-survey-runner | {% set olg_cdn = cdn_url_prefix~"/img/UKOpenGovernmentLicence-grey.svg" %}
<footer class="footer u-mt-no" role="contentinfo">
<div class="container">
<div class="grid">
<div class="grid__col col-4@m">
<h4 class="u-fs-r--b footer__heading">{{ _("Legal information") }}</h4>
<ul class="list list--bare">
<li>
<a href="/cookies-settings" class="footer__link">{{ _("Cookie settings") }}</a>
</li>
<li>
<a rel='noopener noreferrer' target='_blank' href="https://surveys.ons.gov.uk/privacy-and-data-protection" class="footer__link">{{ _("Privacy and data protection") }}</a>
</li>
</ul>
</div>
<div class="grid__col col-4@m">
<h4 class="u-fs-r--b footer__heading">{{ _("About ONS") }}</h4>
<ul class="list list--bare">
<li>
<a href="https://www.ons.gov.uk/aboutus/whatwedo" class="footer__link" target="_blank">{{ _("What we do") }}</a>
</li>
<li>
<a href="/contact-us" class="footer__link" target="_blank">{{ _("Contact us") }}</a>
</li>
<li>
<a href="https://www.ons.gov.uk/help/accessibility" class="footer__link" target="_blank">{{ _("Accessibility") }}</a>
</li>
</ul>
</div>
<div class="grid__col col-4@m">
<h4 class="u-fs-r--b footer__heading">{{ _("Statistics") }}</h4>
<ul class="list list--bare">
<li>
<a href="https://www.statisticsauthority.gov.uk/about-the-authority/" class="footer__link" target="_blank">{{ _("UK Statistics Authority") }}</a>
</li>
<li>
<a href="https://www.ons.gov.uk/releasecalendar" class="footer__link" target="_blank">{{ _("Release calendar") }}</a>
</li>
<li>
<a href="https://www.ons.gov.uk/news" class="footer__link" target="_blank">{{ _("News") }}</a>
</li>
</ul>
</div>
<div class="grid__col col-12@m">
<div class="footer__license footer__license--border">
<img alt="OGL" class="footer__ogl-img" src="{{ olg_cdn }}"> {{ _("All content is available under the %(class_open)sOpen Government Licence v3.0%(class_close)s, except where otherwise stated",
class_open='<a class="footer__link" href="https://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/" target="_blank">',
class_close="</a>") }}
</div>
</div>
</div>
</div>
</footer> |
web/src/main/client/src/components/tweet/Tweet.css | BakkerTom/happy-news | .source-tweet{
color: #33BAFA;
}
.flex {
display: flex;
flex-direction: row;
}
.content {
flex-grow: 1;
margin-right: 8px;
}
.options{
display: block;
font-size: 10px;
height: 32px;
}
|
src/inc/_meta.html | mgje/soundOmath | <meta property="og:title" content="<!-- @echo META.title -->"/>
<meta property="og:url" content="<!-- @echo META.url -->"/>
<!-- <meta property="og:image" content=""/> -->
<meta property="og:site-name" content="<!-- @echo META.title -->"/>
<meta property="og:description" content="<!-- @echo META.description -->"/>
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="<!-- @echo META.twitterHandle -->">
<meta name="twitter:title" content="<!-- @echo META.title -->">
<meta name="twitter:description" content="<!-- @echo META.description -->">
<meta name="twitter:creator" content="<!-- @echo META.twitterHandle -->">
<!-- <meta name="twitter:image:src" content=""> -->
|
client/app/home/add_url.html | chiefsmurph/Scrapinit | <form ng-submit='add()'>
<input type="text" name="url" ng-model="url" id="url" value="http://" onfocus="">
<button type="submit">SUBMIT</button>
</form>
<div>{{html}}</div>
|
jQuery/day1/demo/stop方法.html | 7fe/guide | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<style media="screen">
.block{
width: 100px;
height: 100px;
background-color: red;
position: absolute;
}
</style>
<script src="./jquery.js" charset="utf-8"></script>
</head>
<body>
<button id="go">Go</button>
<input type="button" name="" value="stop()">
<input type="button" name="" value="stop(ture)">
<input type="button" name="" value="stop(ture,true)">
<input type="button" name="" value="stop(false,true)">
<input type="button" name="" value="stop(false,false)">
<input type="button" name="" value="finish()">
<div class="block"></div>
</body>
<script type="text/javascript">
// 开始动画
$("#go").click(function(){
$(".block").animate({left: '+200px'}, 2000);
$(".block").animate({top: '+200px'}, 2000);
$(".block").animate({left: '+200px'}, 2000);
$(".block").animate({top: 0}, 2000);
});
// 当点击按钮后停止动画 停止一个队列
$("input:eq(0)").click(function(){
$("div").stop();
})
//点击按钮清空队列 如果设置成true,则清空队列。可以立即结束动画。
$("input:eq(1)").click(function(){
$("div").stop(true);
})
// 如果设置成true,则完成队列。可以立即完成动画。
$("input:eq(2)").click(function(){
$("div").stop(true,true);
})
// 立即执行完当前队列然后正常执行下一个队列
$("input:eq(3)").click(function(){
$("div").stop(false,true);
})
// 立即执行完当前队列然后正常执行下一个队列
$("input:eq(4)").click(function(){
$("div").stop(false,false);
})
// 停止当前正在运行的动画,
// 删除所有排队的动画,
// 并完成匹配元素所有的动画。
$("input:eq(5)").click(function(){
$("div").finish();
})
</script>
</html>
|
framework/documentation/api/play/cache/package-frame.html | lafayette/JBTT | <!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_20) on Mon May 02 10:23:15 CEST 2011 -->
<TITLE>
play.cache (Play! API)
</TITLE>
<META NAME="date" CONTENT="2011-05-02">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../stylesheet.css" TITLE="Style">
</HEAD>
<BODY BGCOLOR="white">
<FONT size="+1" CLASS="FrameTitleFont">
<A HREF="../../play/cache/package-summary.html" target="classFrame">play.cache</A></FONT>
<TABLE BORDER="0" WIDTH="100%" SUMMARY="">
<TR>
<TD NOWRAP><FONT size="+1" CLASS="FrameHeadingFont">
Interfaces</FONT>
<FONT CLASS="FrameItemFont">
<BR>
<A HREF="CacheImpl.html" title="interface in play.cache" target="classFrame"><I>CacheImpl</I></A></FONT></TD>
</TR>
</TABLE>
<TABLE BORDER="0" WIDTH="100%" SUMMARY="">
<TR>
<TD NOWRAP><FONT size="+1" CLASS="FrameHeadingFont">
Classes</FONT>
<FONT CLASS="FrameItemFont">
<BR>
<A HREF="Cache.html" title="class in play.cache" target="classFrame">Cache</A>
<BR>
<A HREF="EhCacheImpl.html" title="class in play.cache" target="classFrame">EhCacheImpl</A>
<BR>
<A HREF="MemcachedImpl.html" title="class in play.cache" target="classFrame">MemcachedImpl</A></FONT></TD>
</TR>
</TABLE>
<TABLE BORDER="0" WIDTH="100%" SUMMARY="">
<TR>
<TD NOWRAP><FONT size="+1" CLASS="FrameHeadingFont">
Annotation Types</FONT>
<FONT CLASS="FrameItemFont">
<BR>
<A HREF="CacheFor.html" title="annotation in play.cache" target="classFrame">CacheFor</A></FONT></TD>
</TR>
</TABLE>
</BODY>
</HTML>
|
src/pages/strategy/tabs/quotes/quotes.html | Tibo442/KC3Kai | <div class="page_title">
<div class="page_help_btn hover"><span>?</span> Help Topics</div>
</div>
<!-- HELP TOPICS -->
<div class="page_help">
<div class="help_q"></div>
<div class="help_a"></div>
</div>
<!-- CONTENT -->
<div class="page_padding">
<div class="ship_list">
</div>
<div class="part_right">
<div class="ship_info">
<div class="ship_name"></div>
<div class="after_ship hover i18n">NextRemodel</div>
<div class="reload hover i18n">Reload</div>
</div>
<div class="clear"></div>
<div class="voice_list">
</div>
</div>
<div class="clear"></div>
</div>
<div class="factory">
<div class="ship_entity hover">
<div class="ship_icon"><img/></div>
<div class="ship_name"></div>
<div class="clear"></div>
<div class="ship_bar">
<div class="ship_pg_box">
<div class="ship_pg_val1"></div>
<div class="ship_pg_val2"></div>
<div class="clear"></div>
</div>
</div>
</div>
<div class="voice_entity">
<div class="voice hover"></div>
<div class="source"></div>
<div class="clear"></div>
<div class="subtitle"></div>
<div class="division hover"></div>
<div class="ref_sub jp_src"></div>
<div class="ref_sub en_src"></div>
<div class="ref_sub seasonal"></div>
</div>
</div>
|
mapathon/SPR/index.html | ernoma/ernoma.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Humanitarian OpenStreetMap Mapathon @ SPR Statistics</title>
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css">
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap-theme.min.css">
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7.3/leaflet.css">
<link rel="stylesheet" href="/lib/font-awesome-4.5.0/css/font-awesome.min.css">
<link rel="stylesheet" href="../style.css">
</head>
<body>
<div class="container bottom-buffer">
<h1>Humanitarian OpenStreetMap Mapathon @ SPR Statistics</h1>
<p>Some statistics of our effort for the <a href="https://tasks.hotosm.org/project/1588">#1588 - Zone two of epidemic meningitis Togo</a> task.</p>
<div id="map_canvas"></div>
<div id="statistics">
<div class="container">
<h2>Data Created on 5th of March 2016 from 10:00 to 24:00 (in Finnish Time)</h2>
<h3 id="users_heading">Contributions by</h3>
<div class="row" id="users_div">
<div class="col-md-1"><i class="fa fa-spinner fa-pulse"></i></div>
</div>
<h3>Data</h3>
<div class="row">
<div class="col-md-3">Unclassified roads, total length</div>
<div class="col-md-3" id="un_road_length_div"><i class="fa fa-spinner fa-pulse"></i></div>
<div class="col-md-3">Residental roads, total length</div>
<div class="col-md-3" id="res_road_length_div"><i class="fa fa-spinner fa-pulse"></i></div>
</div>
<div class="row">
<div class="col-md-3">Tracks, total length</div>
<div class="col-md-3" id="track_road_length_div"><i class="fa fa-spinner fa-pulse"></i></div>
<div class="col-md-3">Paths, total length</div>
<div class="col-md-3" id="path_road_length_div"><i class="fa fa-spinner fa-pulse"></i></div>
</div>
<div class="row top-buffer">
<div class="col-md-3">Roads and paths, total length</div>
<div class="col-md-3" id="roads_total_length_div"><i class="fa fa-spinner fa-pulse"></i></div>
</div>
<hr>
<div class="row">
<div class="col-md-3">Residential areas, total count</div>
<div class="col-md-3"id="res_area_count_div"><i class="fa fa-spinner fa-pulse"></i></div>
</div>
<div class="row">
<div class="col-md-3">Residential areas, total area</div>
<div class="col-md-3" id="res_area_total_area_div"><i class="fa fa-spinner fa-pulse"></i></div>
</div>
<div class="row">
<div class="col-md-3">Residential areas, average area</div>
<div class="col-md-3" id="res_area_avg_area_div"><i class="fa fa-spinner fa-pulse"></i></div>
</div>
<hr>
<div class="row">
<div class="col-md-3">Buildings, total count</div>
<div class="col-md-3"id="building_count_div"><i class="fa fa-spinner fa-pulse"></i></div>
</div>
</div>
</div>
</div>
<script type="text/javascript" src="/js/jquery-2.1.1.min.js"></script>
<script type="text/javascript" src="/lib/d3/d3.min.js"></script>
<script type="text/javascript" src="http://cdn.leafletjs.com/leaflet-0.7.3/leaflet.js"></script>
<script type="text/javascript" src="/lib/Leaflet.draw-0.2.4/dist/leaflet.draw.js"></script>
<script type="text/javascript" src="/lib/shramov-leaflet-plugins/layer/tile/Bing.js"></script>
<script type="text/javascript" src="mapathon.js"></script>
<!--<script type="text/javascript" src="tile_calc.js"></script>-->
</body>
</html>
|
app/views/ej14.html | gonzaloruizdevilla/angularjs-formvalidation | <div class="row">
<div span="col-xs-12">
<div ng-include="'views/ej14-template.html'"></div>
<hr>
<h4>Plantilla</h4>
<div hljs include="'views/ej14-template.html'"></div>
<h4>Controlador: scripts/controllers/ej14.js</h4>
<div hljs include="'scripts/controllers/ej14.js'" language="javascript"></div>
<h4>Directiva: scripts/directives/refuerzos.js</h4>
<div hljs include="'scripts/directives/refuerzos.js'" language="javascript"></div>
</div>
</div> |
clean/Linux-x86_64-4.12.1-2.0.8/released/8.14.1/mathcomp-field/1.9.0.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>mathcomp-field: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.14.1 / mathcomp-field - 1.9.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
mathcomp-field
<small>
1.9.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-03-03 16:57:01 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-03-03 16:57:01 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
conf-gmp 4 Virtual package relying on a GMP lib system installation
coq 8.14.1 Formal proof management system
dune 3.0.2 Fast, portable, and opinionated build system
ocaml 4.12.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.12.1 Official release 4.12.1
ocaml-config 2 OCaml Switch Configuration
ocaml-options-vanilla 1 Ensure that OCaml is compiled with no special options enabled
ocamlfind 1.9.3 A library manager for OCaml
zarith 1.12 Implements arithmetic and logical operations over arbitrary-precision integers
# opam file:
opam-version: "2.0"
name: "coq-mathcomp-field"
version: "1.9.0"
maintainer: "Mathematical Components <mathcomp-dev@sympa.inria.fr>"
homepage: "https://math-comp.github.io/"
bug-reports: "https://github.com/math-comp/math-comp/issues"
dev-repo: "git+https://github.com/math-comp/math-comp.git"
license: "CeCILL-B"
build: [ make "-C" "mathcomp/field" "-j" "%{jobs}%" ]
install: [ make "-C" "mathcomp/field" "install" ]
depends: [ "coq-mathcomp-solvable" { = "1.9.0" } ]
tags: [ "keyword:algebra" "keyword:field" "keyword:small scale reflection" "keyword:mathematical components" "keyword:odd order theorem" "logpath:mathcomp.field" ]
authors: [ "Jeremy Avigad <>" "Andrea Asperti <>" "Stephane Le Roux <>" "Yves Bertot <>" "Laurence Rideau <>" "Enrico Tassi <>" "Ioana Pasca <>" "Georges Gonthier <>" "Sidi Ould Biha <>" "Cyril Cohen <>" "Francois Garillot <>" "Alexey Solovyev <>" "Russell O'Connor <>" "Laurent Théry <>" "Assia Mahboubi <>" ]
synopsis: "Mathematical Components Library on Fields"
description:"""
This library contains definitions and theorems about field extensions,
galois theory, algebraic numbers, cyclotomic polynomials...
"""
url {
src: "http://github.com/math-comp/math-comp/archive/mathcomp-1.9.0.tar.gz"
checksum: "sha256=fe3d157a4db7e96f39212f76e701a7fc1e3f125c54b8c38f06a6a387eda61c96"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-mathcomp-field.1.9.0 coq.8.14.1</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.14.1).
The following dependencies couldn't be met:
- coq-mathcomp-field -> coq-mathcomp-solvable = 1.9.0 -> coq-mathcomp-algebra = 1.9.0 -> coq-mathcomp-fingroup = 1.9.0 -> coq-mathcomp-ssreflect = 1.9.0 -> coq < 8.12~ -> ocaml < 4.12
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-mathcomp-field.1.9.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
HTML5/primer_html5/018.em.html | laikuaut/my_sample_code | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>018.em</title>
</head>
<body>
<p>この部分を<em>強勢</em>する</p>
</body>
</html>
|
debug/static/pkg/aio_98bd273.css | chaogao/demo-fenda | /*!/src/static/lib/css/self/reset.css*/
/**
* @fileOverview reset基础样式
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
outline: 0;
/*vertical-align: baseline; delete by jican*/
}
input{
outline:none;
font-size: 14px;
}
html, body, form, fieldset, p, div, h1, h2, h3, h4, h5, h6 {
-webkit-text-size-adjust: none;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
display: block;
}
a, input, select, button{
font-family:'Microsoft YaHei',arial,helvetica,sans-serif;
}
a{
text-decoration: none;
}
body {
font-family:'Microsoft YaHei',arial,helvetica,sans-serif;
-webkit-text-size-adjust:none;
-webkit-user-select: none;
font-size: 14px;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
img,table{
border:0
}
blockquote:before, blockquote:after, q:before, q:after {
content: '';
content: none;
}
ins {
text-decoration: none;
}
del {
text-decoration: line-through;
}
select {
-webkit-appearance:button;
border: 0px;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
.clearfix:after {
content: '\0020';
display: block;
height: 0;
clear: both;
}
.clearfix {
*zoom: 1;
}
* {
box-sizing: border-box;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
-webkit-touch-callout: none;
}
/*!/src/static/lib/css/self/font.css*/
/*!
* Font Awesome 4.5.0 by @davegandy - http://fontawesome.io - @fontawesome
* License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
*/
/* FONT PATH
* -------------------------- */
@font-face {
font-family: 'FontAwesome';
src: url('/static/lib/css/fonts/fontawesome-webfont_32400f4.eot?v=4.5.0');
src: url('/static/lib/css/fonts/fontawesome-webfont_32400f4.eot?#iefix&v=4.5.0') format('embedded-opentype'), url('/static/lib/css/fonts/fontawesome-webfont_db812d8.woff2?v=4.5.0') format('woff2'), url('/static/lib/css/fonts/fontawesome-webfont_a35720c.woff?v=4.5.0') format('woff'), url('/static/lib/css/fonts/fontawesome-webfont_a3de217.ttf?v=4.5.0') format('truetype'), url('/static/media/static/lib/css/fonts/fontawesome-webfont_f775f9c.svg?v=4.5.0#fontawesomeregular') format('svg');
font-weight: normal;
font-style: normal;
}
.fa {
display: inline-block;
font: normal normal normal 14px/1 FontAwesome;
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* makes the font 33% larger relative to the icon container */
.fa-lg {
font-size: 1.33333333em;
line-height: 0.75em;
vertical-align: -15%;
}
.fa-2x {
font-size: 2em;
}
.fa-3x {
font-size: 3em;
}
.fa-4x {
font-size: 4em;
}
.fa-5x {
font-size: 5em;
}
.fa-fw {
width: 1.28571429em;
text-align: center;
}
.fa-ul {
padding-left: 0;
margin-left: 2.14285714em;
list-style-type: none;
}
.fa-ul > li {
position: relative;
}
.fa-li {
position: absolute;
left: -2.14285714em;
width: 2.14285714em;
top: 0.14285714em;
text-align: center;
}
.fa-li.fa-lg {
left: -1.85714286em;
}
.fa-border {
padding: .2em .25em .15em;
border: solid 0.08em #eeeeee;
border-radius: .1em;
}
.fa-pull-left {
float: left;
}
.fa-pull-right {
float: right;
}
.fa.fa-pull-left {
margin-right: .3em;
}
.fa.fa-pull-right {
margin-left: .3em;
}
/* Deprecated as of 4.4.0 */
.pull-right {
float: right;
}
.pull-left {
float: left;
}
.fa.pull-left {
margin-right: .3em;
}
.fa.pull-right {
margin-left: .3em;
}
.fa-spin {
-webkit-animation: fa-spin 2s infinite linear;
animation: fa-spin 2s infinite linear;
}
.fa-pulse {
-webkit-animation: fa-spin 1s infinite steps(8);
animation: fa-spin 1s infinite steps(8);
}
@-webkit-keyframes fa-spin {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}
@keyframes fa-spin {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}
.fa-rotate-90 {
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
-webkit-transform: rotate(90deg);
-ms-transform: rotate(90deg);
transform: rotate(90deg);
}
.fa-rotate-180 {
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
-webkit-transform: rotate(180deg);
-ms-transform: rotate(180deg);
transform: rotate(180deg);
}
.fa-rotate-270 {
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
-webkit-transform: rotate(270deg);
-ms-transform: rotate(270deg);
transform: rotate(270deg);
}
.fa-flip-horizontal {
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
-webkit-transform: scale(-1, 1);
-ms-transform: scale(-1, 1);
transform: scale(-1, 1);
}
.fa-flip-vertical {
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
-webkit-transform: scale(1, -1);
-ms-transform: scale(1, -1);
transform: scale(1, -1);
}
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
filter: none;
}
.fa-stack {
position: relative;
display: inline-block;
width: 2em;
height: 2em;
line-height: 2em;
vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
position: absolute;
left: 0;
width: 100%;
text-align: center;
}
.fa-stack-1x {
line-height: inherit;
}
.fa-stack-2x {
font-size: 2em;
}
.fa-inverse {
color: #ffffff;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */
.fa-glass:before {
content: "\f000";
}
.fa-music:before {
content: "\f001";
}
.fa-search:before {
content: "\f002";
}
.fa-envelope-o:before {
content: "\f003";
}
.fa-heart:before {
content: "\f004";
}
.fa-star:before {
content: "\f005";
}
.fa-star-o:before {
content: "\f006";
}
.fa-user:before {
content: "\f007";
}
.fa-film:before {
content: "\f008";
}
.fa-th-large:before {
content: "\f009";
}
.fa-th:before {
content: "\f00a";
}
.fa-th-list:before {
content: "\f00b";
}
.fa-check:before {
content: "\f00c";
}
.fa-remove:before,
.fa-close:before,
.fa-times:before {
content: "\f00d";
}
.fa-search-plus:before {
content: "\f00e";
}
.fa-search-minus:before {
content: "\f010";
}
.fa-power-off:before {
content: "\f011";
}
.fa-signal:before {
content: "\f012";
}
.fa-gear:before,
.fa-cog:before {
content: "\f013";
}
.fa-trash-o:before {
content: "\f014";
}
.fa-home:before {
content: "\f015";
}
.fa-file-o:before {
content: "\f016";
}
.fa-clock-o:before {
content: "\f017";
}
.fa-road:before {
content: "\f018";
}
.fa-download:before {
content: "\f019";
}
.fa-arrow-circle-o-down:before {
content: "\f01a";
}
.fa-arrow-circle-o-up:before {
content: "\f01b";
}
.fa-inbox:before {
content: "\f01c";
}
.fa-play-circle-o:before {
content: "\f01d";
}
.fa-rotate-right:before,
.fa-repeat:before {
content: "\f01e";
}
.fa-refresh:before {
content: "\f021";
}
.fa-list-alt:before {
content: "\f022";
}
.fa-lock:before {
content: "\f023";
}
.fa-flag:before {
content: "\f024";
}
.fa-headphones:before {
content: "\f025";
}
.fa-volume-off:before {
content: "\f026";
}
.fa-volume-down:before {
content: "\f027";
}
.fa-volume-up:before {
content: "\f028";
}
.fa-qrcode:before {
content: "\f029";
}
.fa-barcode:before {
content: "\f02a";
}
.fa-tag:before {
content: "\f02b";
}
.fa-tags:before {
content: "\f02c";
}
.fa-book:before {
content: "\f02d";
}
.fa-bookmark:before {
content: "\f02e";
}
.fa-print:before {
content: "\f02f";
}
.fa-camera:before {
content: "\f030";
}
.fa-font:before {
content: "\f031";
}
.fa-bold:before {
content: "\f032";
}
.fa-italic:before {
content: "\f033";
}
.fa-text-height:before {
content: "\f034";
}
.fa-text-width:before {
content: "\f035";
}
.fa-align-left:before {
content: "\f036";
}
.fa-align-center:before {
content: "\f037";
}
.fa-align-right:before {
content: "\f038";
}
.fa-align-justify:before {
content: "\f039";
}
.fa-list:before {
content: "\f03a";
}
.fa-dedent:before,
.fa-outdent:before {
content: "\f03b";
}
.fa-indent:before {
content: "\f03c";
}
.fa-video-camera:before {
content: "\f03d";
}
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
content: "\f03e";
}
.fa-pencil:before {
content: "\f040";
}
.fa-map-marker:before {
content: "\f041";
}
.fa-adjust:before {
content: "\f042";
}
.fa-tint:before {
content: "\f043";
}
.fa-edit:before,
.fa-pencil-square-o:before {
content: "\f044";
}
.fa-share-square-o:before {
content: "\f045";
}
.fa-check-square-o:before {
content: "\f046";
}
.fa-arrows:before {
content: "\f047";
}
.fa-step-backward:before {
content: "\f048";
}
.fa-fast-backward:before {
content: "\f049";
}
.fa-backward:before {
content: "\f04a";
}
.fa-play:before {
content: "\f04b";
}
.fa-pause:before {
content: "\f04c";
}
.fa-stop:before {
content: "\f04d";
}
.fa-forward:before {
content: "\f04e";
}
.fa-fast-forward:before {
content: "\f050";
}
.fa-step-forward:before {
content: "\f051";
}
.fa-eject:before {
content: "\f052";
}
.fa-chevron-left:before {
content: "\f053";
}
.fa-chevron-right:before {
content: "\f054";
}
.fa-plus-circle:before {
content: "\f055";
}
.fa-minus-circle:before {
content: "\f056";
}
.fa-times-circle:before {
content: "\f057";
}
.fa-check-circle:before {
content: "\f058";
}
.fa-question-circle:before {
content: "\f059";
}
.fa-info-circle:before {
content: "\f05a";
}
.fa-crosshairs:before {
content: "\f05b";
}
.fa-times-circle-o:before {
content: "\f05c";
}
.fa-check-circle-o:before {
content: "\f05d";
}
.fa-ban:before {
content: "\f05e";
}
.fa-arrow-left:before {
content: "\f060";
}
.fa-arrow-right:before {
content: "\f061";
}
.fa-arrow-up:before {
content: "\f062";
}
.fa-arrow-down:before {
content: "\f063";
}
.fa-mail-forward:before,
.fa-share:before {
content: "\f064";
}
.fa-expand:before {
content: "\f065";
}
.fa-compress:before {
content: "\f066";
}
.fa-plus:before {
content: "\f067";
}
.fa-minus:before {
content: "\f068";
}
.fa-asterisk:before {
content: "\f069";
}
.fa-exclamation-circle:before {
content: "\f06a";
}
.fa-gift:before {
content: "\f06b";
}
.fa-leaf:before {
content: "\f06c";
}
.fa-fire:before {
content: "\f06d";
}
.fa-eye:before {
content: "\f06e";
}
.fa-eye-slash:before {
content: "\f070";
}
.fa-warning:before,
.fa-exclamation-triangle:before {
content: "\f071";
}
.fa-plane:before {
content: "\f072";
}
.fa-calendar:before {
content: "\f073";
}
.fa-random:before {
content: "\f074";
}
.fa-comment:before {
content: "\f075";
}
.fa-magnet:before {
content: "\f076";
}
.fa-chevron-up:before {
content: "\f077";
}
.fa-chevron-down:before {
content: "\f078";
}
.fa-retweet:before {
content: "\f079";
}
.fa-shopping-cart:before {
content: "\f07a";
}
.fa-folder:before {
content: "\f07b";
}
.fa-folder-open:before {
content: "\f07c";
}
.fa-arrows-v:before {
content: "\f07d";
}
.fa-arrows-h:before {
content: "\f07e";
}
.fa-bar-chart-o:before,
.fa-bar-chart:before {
content: "\f080";
}
.fa-twitter-square:before {
content: "\f081";
}
.fa-facebook-square:before {
content: "\f082";
}
.fa-camera-retro:before {
content: "\f083";
}
.fa-key:before {
content: "\f084";
}
.fa-gears:before,
.fa-cogs:before {
content: "\f085";
}
.fa-comments:before {
content: "\f086";
}
.fa-thumbs-o-up:before {
content: "\f087";
}
.fa-thumbs-o-down:before {
content: "\f088";
}
.fa-star-half:before {
content: "\f089";
}
.fa-heart-o:before {
content: "\f08a";
}
.fa-sign-out:before {
content: "\f08b";
}
.fa-linkedin-square:before {
content: "\f08c";
}
.fa-thumb-tack:before {
content: "\f08d";
}
.fa-external-link:before {
content: "\f08e";
}
.fa-sign-in:before {
content: "\f090";
}
.fa-trophy:before {
content: "\f091";
}
.fa-github-square:before {
content: "\f092";
}
.fa-upload:before {
content: "\f093";
}
.fa-lemon-o:before {
content: "\f094";
}
.fa-phone:before {
content: "\f095";
}
.fa-square-o:before {
content: "\f096";
}
.fa-bookmark-o:before {
content: "\f097";
}
.fa-phone-square:before {
content: "\f098";
}
.fa-twitter:before {
content: "\f099";
}
.fa-facebook-f:before,
.fa-facebook:before {
content: "\f09a";
}
.fa-github:before {
content: "\f09b";
}
.fa-unlock:before {
content: "\f09c";
}
.fa-credit-card:before {
content: "\f09d";
}
.fa-feed:before,
.fa-rss:before {
content: "\f09e";
}
.fa-hdd-o:before {
content: "\f0a0";
}
.fa-bullhorn:before {
content: "\f0a1";
}
.fa-bell:before {
content: "\f0f3";
}
.fa-certificate:before {
content: "\f0a3";
}
.fa-hand-o-right:before {
content: "\f0a4";
}
.fa-hand-o-left:before {
content: "\f0a5";
}
.fa-hand-o-up:before {
content: "\f0a6";
}
.fa-hand-o-down:before {
content: "\f0a7";
}
.fa-arrow-circle-left:before {
content: "\f0a8";
}
.fa-arrow-circle-right:before {
content: "\f0a9";
}
.fa-arrow-circle-up:before {
content: "\f0aa";
}
.fa-arrow-circle-down:before {
content: "\f0ab";
}
.fa-globe:before {
content: "\f0ac";
}
.fa-wrench:before {
content: "\f0ad";
}
.fa-tasks:before {
content: "\f0ae";
}
.fa-filter:before {
content: "\f0b0";
}
.fa-briefcase:before {
content: "\f0b1";
}
.fa-arrows-alt:before {
content: "\f0b2";
}
.fa-group:before,
.fa-users:before {
content: "\f0c0";
}
.fa-chain:before,
.fa-link:before {
content: "\f0c1";
}
.fa-cloud:before {
content: "\f0c2";
}
.fa-flask:before {
content: "\f0c3";
}
.fa-cut:before,
.fa-scissors:before {
content: "\f0c4";
}
.fa-copy:before,
.fa-files-o:before {
content: "\f0c5";
}
.fa-paperclip:before {
content: "\f0c6";
}
.fa-save:before,
.fa-floppy-o:before {
content: "\f0c7";
}
.fa-square:before {
content: "\f0c8";
}
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
content: "\f0c9";
}
.fa-list-ul:before {
content: "\f0ca";
}
.fa-list-ol:before {
content: "\f0cb";
}
.fa-strikethrough:before {
content: "\f0cc";
}
.fa-underline:before {
content: "\f0cd";
}
.fa-table:before {
content: "\f0ce";
}
.fa-magic:before {
content: "\f0d0";
}
.fa-truck:before {
content: "\f0d1";
}
.fa-pinterest:before {
content: "\f0d2";
}
.fa-pinterest-square:before {
content: "\f0d3";
}
.fa-google-plus-square:before {
content: "\f0d4";
}
.fa-google-plus:before {
content: "\f0d5";
}
.fa-money:before {
content: "\f0d6";
}
.fa-caret-down:before {
content: "\f0d7";
}
.fa-caret-up:before {
content: "\f0d8";
}
.fa-caret-left:before {
content: "\f0d9";
}
.fa-caret-right:before {
content: "\f0da";
}
.fa-columns:before {
content: "\f0db";
}
.fa-unsorted:before,
.fa-sort:before {
content: "\f0dc";
}
.fa-sort-down:before,
.fa-sort-desc:before {
content: "\f0dd";
}
.fa-sort-up:before,
.fa-sort-asc:before {
content: "\f0de";
}
.fa-envelope:before {
content: "\f0e0";
}
.fa-linkedin:before {
content: "\f0e1";
}
.fa-rotate-left:before,
.fa-undo:before {
content: "\f0e2";
}
.fa-legal:before,
.fa-gavel:before {
content: "\f0e3";
}
.fa-dashboard:before,
.fa-tachometer:before {
content: "\f0e4";
}
.fa-comment-o:before {
content: "\f0e5";
}
.fa-comments-o:before {
content: "\f0e6";
}
.fa-flash:before,
.fa-bolt:before {
content: "\f0e7";
}
.fa-sitemap:before {
content: "\f0e8";
}
.fa-umbrella:before {
content: "\f0e9";
}
.fa-paste:before,
.fa-clipboard:before {
content: "\f0ea";
}
.fa-lightbulb-o:before {
content: "\f0eb";
}
.fa-exchange:before {
content: "\f0ec";
}
.fa-cloud-download:before {
content: "\f0ed";
}
.fa-cloud-upload:before {
content: "\f0ee";
}
.fa-user-md:before {
content: "\f0f0";
}
.fa-stethoscope:before {
content: "\f0f1";
}
.fa-suitcase:before {
content: "\f0f2";
}
.fa-bell-o:before {
content: "\f0a2";
}
.fa-coffee:before {
content: "\f0f4";
}
.fa-cutlery:before {
content: "\f0f5";
}
.fa-file-text-o:before {
content: "\f0f6";
}
.fa-building-o:before {
content: "\f0f7";
}
.fa-hospital-o:before {
content: "\f0f8";
}
.fa-ambulance:before {
content: "\f0f9";
}
.fa-medkit:before {
content: "\f0fa";
}
.fa-fighter-jet:before {
content: "\f0fb";
}
.fa-beer:before {
content: "\f0fc";
}
.fa-h-square:before {
content: "\f0fd";
}
.fa-plus-square:before {
content: "\f0fe";
}
.fa-angle-double-left:before {
content: "\f100";
}
.fa-angle-double-right:before {
content: "\f101";
}
.fa-angle-double-up:before {
content: "\f102";
}
.fa-angle-double-down:before {
content: "\f103";
}
.fa-angle-left:before {
content: "\f104";
}
.fa-angle-right:before {
content: "\f105";
}
.fa-angle-up:before {
content: "\f106";
}
.fa-angle-down:before {
content: "\f107";
}
.fa-desktop:before {
content: "\f108";
}
.fa-laptop:before {
content: "\f109";
}
.fa-tablet:before {
content: "\f10a";
}
.fa-mobile-phone:before,
.fa-mobile:before {
content: "\f10b";
}
.fa-circle-o:before {
content: "\f10c";
}
.fa-quote-left:before {
content: "\f10d";
}
.fa-quote-right:before {
content: "\f10e";
}
.fa-spinner:before {
content: "\f110";
}
.fa-circle:before {
content: "\f111";
}
.fa-mail-reply:before,
.fa-reply:before {
content: "\f112";
}
.fa-github-alt:before {
content: "\f113";
}
.fa-folder-o:before {
content: "\f114";
}
.fa-folder-open-o:before {
content: "\f115";
}
.fa-smile-o:before {
content: "\f118";
}
.fa-frown-o:before {
content: "\f119";
}
.fa-meh-o:before {
content: "\f11a";
}
.fa-gamepad:before {
content: "\f11b";
}
.fa-keyboard-o:before {
content: "\f11c";
}
.fa-flag-o:before {
content: "\f11d";
}
.fa-flag-checkered:before {
content: "\f11e";
}
.fa-terminal:before {
content: "\f120";
}
.fa-code:before {
content: "\f121";
}
.fa-mail-reply-all:before,
.fa-reply-all:before {
content: "\f122";
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
content: "\f123";
}
.fa-location-arrow:before {
content: "\f124";
}
.fa-crop:before {
content: "\f125";
}
.fa-code-fork:before {
content: "\f126";
}
.fa-unlink:before,
.fa-chain-broken:before {
content: "\f127";
}
.fa-question:before {
content: "\f128";
}
.fa-info:before {
content: "\f129";
}
.fa-exclamation:before {
content: "\f12a";
}
.fa-superscript:before {
content: "\f12b";
}
.fa-subscript:before {
content: "\f12c";
}
.fa-eraser:before {
content: "\f12d";
}
.fa-puzzle-piece:before {
content: "\f12e";
}
.fa-microphone:before {
content: "\f130";
}
.fa-microphone-slash:before {
content: "\f131";
}
.fa-shield:before {
content: "\f132";
}
.fa-calendar-o:before {
content: "\f133";
}
.fa-fire-extinguisher:before {
content: "\f134";
}
.fa-rocket:before {
content: "\f135";
}
.fa-maxcdn:before {
content: "\f136";
}
.fa-chevron-circle-left:before {
content: "\f137";
}
.fa-chevron-circle-right:before {
content: "\f138";
}
.fa-chevron-circle-up:before {
content: "\f139";
}
.fa-chevron-circle-down:before {
content: "\f13a";
}
.fa-html5:before {
content: "\f13b";
}
.fa-css3:before {
content: "\f13c";
}
.fa-anchor:before {
content: "\f13d";
}
.fa-unlock-alt:before {
content: "\f13e";
}
.fa-bullseye:before {
content: "\f140";
}
.fa-ellipsis-h:before {
content: "\f141";
}
.fa-ellipsis-v:before {
content: "\f142";
}
.fa-rss-square:before {
content: "\f143";
}
.fa-play-circle:before {
content: "\f144";
}
.fa-ticket:before {
content: "\f145";
}
.fa-minus-square:before {
content: "\f146";
}
.fa-minus-square-o:before {
content: "\f147";
}
.fa-level-up:before {
content: "\f148";
}
.fa-level-down:before {
content: "\f149";
}
.fa-check-square:before {
content: "\f14a";
}
.fa-pencil-square:before {
content: "\f14b";
}
.fa-external-link-square:before {
content: "\f14c";
}
.fa-share-square:before {
content: "\f14d";
}
.fa-compass:before {
content: "\f14e";
}
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
content: "\f150";
}
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
content: "\f151";
}
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
content: "\f152";
}
.fa-euro:before,
.fa-eur:before {
content: "\f153";
}
.fa-gbp:before {
content: "\f154";
}
.fa-dollar:before,
.fa-usd:before {
content: "\f155";
}
.fa-rupee:before,
.fa-inr:before {
content: "\f156";
}
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
content: "\f157";
}
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
content: "\f158";
}
.fa-won:before,
.fa-krw:before {
content: "\f159";
}
.fa-bitcoin:before,
.fa-btc:before {
content: "\f15a";
}
.fa-file:before {
content: "\f15b";
}
.fa-file-text:before {
content: "\f15c";
}
.fa-sort-alpha-asc:before {
content: "\f15d";
}
.fa-sort-alpha-desc:before {
content: "\f15e";
}
.fa-sort-amount-asc:before {
content: "\f160";
}
.fa-sort-amount-desc:before {
content: "\f161";
}
.fa-sort-numeric-asc:before {
content: "\f162";
}
.fa-sort-numeric-desc:before {
content: "\f163";
}
.fa-thumbs-up:before {
content: "\f164";
}
.fa-thumbs-down:before {
content: "\f165";
}
.fa-youtube-square:before {
content: "\f166";
}
.fa-youtube:before {
content: "\f167";
}
.fa-xing:before {
content: "\f168";
}
.fa-xing-square:before {
content: "\f169";
}
.fa-youtube-play:before {
content: "\f16a";
}
.fa-dropbox:before {
content: "\f16b";
}
.fa-stack-overflow:before {
content: "\f16c";
}
.fa-instagram:before {
content: "\f16d";
}
.fa-flickr:before {
content: "\f16e";
}
.fa-adn:before {
content: "\f170";
}
.fa-bitbucket:before {
content: "\f171";
}
.fa-bitbucket-square:before {
content: "\f172";
}
.fa-tumblr:before {
content: "\f173";
}
.fa-tumblr-square:before {
content: "\f174";
}
.fa-long-arrow-down:before {
content: "\f175";
}
.fa-long-arrow-up:before {
content: "\f176";
}
.fa-long-arrow-left:before {
content: "\f177";
}
.fa-long-arrow-right:before {
content: "\f178";
}
.fa-apple:before {
content: "\f179";
}
.fa-windows:before {
content: "\f17a";
}
.fa-android:before {
content: "\f17b";
}
.fa-linux:before {
content: "\f17c";
}
.fa-dribbble:before {
content: "\f17d";
}
.fa-skype:before {
content: "\f17e";
}
.fa-foursquare:before {
content: "\f180";
}
.fa-trello:before {
content: "\f181";
}
.fa-female:before {
content: "\f182";
}
.fa-male:before {
content: "\f183";
}
.fa-gittip:before,
.fa-gratipay:before {
content: "\f184";
}
.fa-sun-o:before {
content: "\f185";
}
.fa-moon-o:before {
content: "\f186";
}
.fa-archive:before {
content: "\f187";
}
.fa-bug:before {
content: "\f188";
}
.fa-vk:before {
content: "\f189";
}
.fa-weibo:before {
content: "\f18a";
}
.fa-renren:before {
content: "\f18b";
}
.fa-pagelines:before {
content: "\f18c";
}
.fa-stack-exchange:before {
content: "\f18d";
}
.fa-arrow-circle-o-right:before {
content: "\f18e";
}
.fa-arrow-circle-o-left:before {
content: "\f190";
}
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
content: "\f191";
}
.fa-dot-circle-o:before {
content: "\f192";
}
.fa-wheelchair:before {
content: "\f193";
}
.fa-vimeo-square:before {
content: "\f194";
}
.fa-turkish-lira:before,
.fa-try:before {
content: "\f195";
}
.fa-plus-square-o:before {
content: "\f196";
}
.fa-space-shuttle:before {
content: "\f197";
}
.fa-slack:before {
content: "\f198";
}
.fa-envelope-square:before {
content: "\f199";
}
.fa-wordpress:before {
content: "\f19a";
}
.fa-openid:before {
content: "\f19b";
}
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
content: "\f19c";
}
.fa-mortar-board:before,
.fa-graduation-cap:before {
content: "\f19d";
}
.fa-yahoo:before {
content: "\f19e";
}
.fa-google:before {
content: "\f1a0";
}
.fa-reddit:before {
content: "\f1a1";
}
.fa-reddit-square:before {
content: "\f1a2";
}
.fa-stumbleupon-circle:before {
content: "\f1a3";
}
.fa-stumbleupon:before {
content: "\f1a4";
}
.fa-delicious:before {
content: "\f1a5";
}
.fa-digg:before {
content: "\f1a6";
}
.fa-pied-piper:before {
content: "\f1a7";
}
.fa-pied-piper-alt:before {
content: "\f1a8";
}
.fa-drupal:before {
content: "\f1a9";
}
.fa-joomla:before {
content: "\f1aa";
}
.fa-language:before {
content: "\f1ab";
}
.fa-fax:before {
content: "\f1ac";
}
.fa-building:before {
content: "\f1ad";
}
.fa-child:before {
content: "\f1ae";
}
.fa-paw:before {
content: "\f1b0";
}
.fa-spoon:before {
content: "\f1b1";
}
.fa-cube:before {
content: "\f1b2";
}
.fa-cubes:before {
content: "\f1b3";
}
.fa-behance:before {
content: "\f1b4";
}
.fa-behance-square:before {
content: "\f1b5";
}
.fa-steam:before {
content: "\f1b6";
}
.fa-steam-square:before {
content: "\f1b7";
}
.fa-recycle:before {
content: "\f1b8";
}
.fa-automobile:before,
.fa-car:before {
content: "\f1b9";
}
.fa-cab:before,
.fa-taxi:before {
content: "\f1ba";
}
.fa-tree:before {
content: "\f1bb";
}
.fa-spotify:before {
content: "\f1bc";
}
.fa-deviantart:before {
content: "\f1bd";
}
.fa-soundcloud:before {
content: "\f1be";
}
.fa-database:before {
content: "\f1c0";
}
.fa-file-pdf-o:before {
content: "\f1c1";
}
.fa-file-word-o:before {
content: "\f1c2";
}
.fa-file-excel-o:before {
content: "\f1c3";
}
.fa-file-powerpoint-o:before {
content: "\f1c4";
}
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
content: "\f1c5";
}
.fa-file-zip-o:before,
.fa-file-archive-o:before {
content: "\f1c6";
}
.fa-file-sound-o:before,
.fa-file-audio-o:before {
content: "\f1c7";
}
.fa-file-movie-o:before,
.fa-file-video-o:before {
content: "\f1c8";
}
.fa-file-code-o:before {
content: "\f1c9";
}
.fa-vine:before {
content: "\f1ca";
}
.fa-codepen:before {
content: "\f1cb";
}
.fa-jsfiddle:before {
content: "\f1cc";
}
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
content: "\f1cd";
}
.fa-circle-o-notch:before {
content: "\f1ce";
}
.fa-ra:before,
.fa-rebel:before {
content: "\f1d0";
}
.fa-ge:before,
.fa-empire:before {
content: "\f1d1";
}
.fa-git-square:before {
content: "\f1d2";
}
.fa-git:before {
content: "\f1d3";
}
.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
content: "\f1d4";
}
.fa-tencent-weibo:before {
content: "\f1d5";
}
.fa-qq:before {
content: "\f1d6";
}
.fa-wechat:before,
.fa-weixin:before {
content: "\f1d7";
}
.fa-send:before,
.fa-paper-plane:before {
content: "\f1d8";
}
.fa-send-o:before,
.fa-paper-plane-o:before {
content: "\f1d9";
}
.fa-history:before {
content: "\f1da";
}
.fa-circle-thin:before {
content: "\f1db";
}
.fa-header:before {
content: "\f1dc";
}
.fa-paragraph:before {
content: "\f1dd";
}
.fa-sliders:before {
content: "\f1de";
}
.fa-share-alt:before {
content: "\f1e0";
}
.fa-share-alt-square:before {
content: "\f1e1";
}
.fa-bomb:before {
content: "\f1e2";
}
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
content: "\f1e3";
}
.fa-tty:before {
content: "\f1e4";
}
.fa-binoculars:before {
content: "\f1e5";
}
.fa-plug:before {
content: "\f1e6";
}
.fa-slideshare:before {
content: "\f1e7";
}
.fa-twitch:before {
content: "\f1e8";
}
.fa-yelp:before {
content: "\f1e9";
}
.fa-newspaper-o:before {
content: "\f1ea";
}
.fa-wifi:before {
content: "\f1eb";
}
.fa-calculator:before {
content: "\f1ec";
}
.fa-paypal:before {
content: "\f1ed";
}
.fa-google-wallet:before {
content: "\f1ee";
}
.fa-cc-visa:before {
content: "\f1f0";
}
.fa-cc-mastercard:before {
content: "\f1f1";
}
.fa-cc-discover:before {
content: "\f1f2";
}
.fa-cc-amex:before {
content: "\f1f3";
}
.fa-cc-paypal:before {
content: "\f1f4";
}
.fa-cc-stripe:before {
content: "\f1f5";
}
.fa-bell-slash:before {
content: "\f1f6";
}
.fa-bell-slash-o:before {
content: "\f1f7";
}
.fa-trash:before {
content: "\f1f8";
}
.fa-copyright:before {
content: "\f1f9";
}
.fa-at:before {
content: "\f1fa";
}
.fa-eyedropper:before {
content: "\f1fb";
}
.fa-paint-brush:before {
content: "\f1fc";
}
.fa-birthday-cake:before {
content: "\f1fd";
}
.fa-area-chart:before {
content: "\f1fe";
}
.fa-pie-chart:before {
content: "\f200";
}
.fa-line-chart:before {
content: "\f201";
}
.fa-lastfm:before {
content: "\f202";
}
.fa-lastfm-square:before {
content: "\f203";
}
.fa-toggle-off:before {
content: "\f204";
}
.fa-toggle-on:before {
content: "\f205";
}
.fa-bicycle:before {
content: "\f206";
}
.fa-bus:before {
content: "\f207";
}
.fa-ioxhost:before {
content: "\f208";
}
.fa-angellist:before {
content: "\f209";
}
.fa-cc:before {
content: "\f20a";
}
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
content: "\f20b";
}
.fa-meanpath:before {
content: "\f20c";
}
.fa-buysellads:before {
content: "\f20d";
}
.fa-connectdevelop:before {
content: "\f20e";
}
.fa-dashcube:before {
content: "\f210";
}
.fa-forumbee:before {
content: "\f211";
}
.fa-leanpub:before {
content: "\f212";
}
.fa-sellsy:before {
content: "\f213";
}
.fa-shirtsinbulk:before {
content: "\f214";
}
.fa-simplybuilt:before {
content: "\f215";
}
.fa-skyatlas:before {
content: "\f216";
}
.fa-cart-plus:before {
content: "\f217";
}
.fa-cart-arrow-down:before {
content: "\f218";
}
.fa-diamond:before {
content: "\f219";
}
.fa-ship:before {
content: "\f21a";
}
.fa-user-secret:before {
content: "\f21b";
}
.fa-motorcycle:before {
content: "\f21c";
}
.fa-street-view:before {
content: "\f21d";
}
.fa-heartbeat:before {
content: "\f21e";
}
.fa-venus:before {
content: "\f221";
}
.fa-mars:before {
content: "\f222";
}
.fa-mercury:before {
content: "\f223";
}
.fa-intersex:before,
.fa-transgender:before {
content: "\f224";
}
.fa-transgender-alt:before {
content: "\f225";
}
.fa-venus-double:before {
content: "\f226";
}
.fa-mars-double:before {
content: "\f227";
}
.fa-venus-mars:before {
content: "\f228";
}
.fa-mars-stroke:before {
content: "\f229";
}
.fa-mars-stroke-v:before {
content: "\f22a";
}
.fa-mars-stroke-h:before {
content: "\f22b";
}
.fa-neuter:before {
content: "\f22c";
}
.fa-genderless:before {
content: "\f22d";
}
.fa-facebook-official:before {
content: "\f230";
}
.fa-pinterest-p:before {
content: "\f231";
}
.fa-whatsapp:before {
content: "\f232";
}
.fa-server:before {
content: "\f233";
}
.fa-user-plus:before {
content: "\f234";
}
.fa-user-times:before {
content: "\f235";
}
.fa-hotel:before,
.fa-bed:before {
content: "\f236";
}
.fa-viacoin:before {
content: "\f237";
}
.fa-train:before {
content: "\f238";
}
.fa-subway:before {
content: "\f239";
}
.fa-medium:before {
content: "\f23a";
}
.fa-yc:before,
.fa-y-combinator:before {
content: "\f23b";
}
.fa-optin-monster:before {
content: "\f23c";
}
.fa-opencart:before {
content: "\f23d";
}
.fa-expeditedssl:before {
content: "\f23e";
}
.fa-battery-4:before,
.fa-battery-full:before {
content: "\f240";
}
.fa-battery-3:before,
.fa-battery-three-quarters:before {
content: "\f241";
}
.fa-battery-2:before,
.fa-battery-half:before {
content: "\f242";
}
.fa-battery-1:before,
.fa-battery-quarter:before {
content: "\f243";
}
.fa-battery-0:before,
.fa-battery-empty:before {
content: "\f244";
}
.fa-mouse-pointer:before {
content: "\f245";
}
.fa-i-cursor:before {
content: "\f246";
}
.fa-object-group:before {
content: "\f247";
}
.fa-object-ungroup:before {
content: "\f248";
}
.fa-sticky-note:before {
content: "\f249";
}
.fa-sticky-note-o:before {
content: "\f24a";
}
.fa-cc-jcb:before {
content: "\f24b";
}
.fa-cc-diners-club:before {
content: "\f24c";
}
.fa-clone:before {
content: "\f24d";
}
.fa-balance-scale:before {
content: "\f24e";
}
.fa-hourglass-o:before {
content: "\f250";
}
.fa-hourglass-1:before,
.fa-hourglass-start:before {
content: "\f251";
}
.fa-hourglass-2:before,
.fa-hourglass-half:before {
content: "\f252";
}
.fa-hourglass-3:before,
.fa-hourglass-end:before {
content: "\f253";
}
.fa-hourglass:before {
content: "\f254";
}
.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
content: "\f255";
}
.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
content: "\f256";
}
.fa-hand-scissors-o:before {
content: "\f257";
}
.fa-hand-lizard-o:before {
content: "\f258";
}
.fa-hand-spock-o:before {
content: "\f259";
}
.fa-hand-pointer-o:before {
content: "\f25a";
}
.fa-hand-peace-o:before {
content: "\f25b";
}
.fa-trademark:before {
content: "\f25c";
}
.fa-registered:before {
content: "\f25d";
}
.fa-creative-commons:before {
content: "\f25e";
}
.fa-gg:before {
content: "\f260";
}
.fa-gg-circle:before {
content: "\f261";
}
.fa-tripadvisor:before {
content: "\f262";
}
.fa-odnoklassniki:before {
content: "\f263";
}
.fa-odnoklassniki-square:before {
content: "\f264";
}
.fa-get-pocket:before {
content: "\f265";
}
.fa-wikipedia-w:before {
content: "\f266";
}
.fa-safari:before {
content: "\f267";
}
.fa-chrome:before {
content: "\f268";
}
.fa-firefox:before {
content: "\f269";
}
.fa-opera:before {
content: "\f26a";
}
.fa-internet-explorer:before {
content: "\f26b";
}
.fa-tv:before,
.fa-television:before {
content: "\f26c";
}
.fa-contao:before {
content: "\f26d";
}
.fa-500px:before {
content: "\f26e";
}
.fa-amazon:before {
content: "\f270";
}
.fa-calendar-plus-o:before {
content: "\f271";
}
.fa-calendar-minus-o:before {
content: "\f272";
}
.fa-calendar-times-o:before {
content: "\f273";
}
.fa-calendar-check-o:before {
content: "\f274";
}
.fa-industry:before {
content: "\f275";
}
.fa-map-pin:before {
content: "\f276";
}
.fa-map-signs:before {
content: "\f277";
}
.fa-map-o:before {
content: "\f278";
}
.fa-map:before {
content: "\f279";
}
.fa-commenting:before {
content: "\f27a";
}
.fa-commenting-o:before {
content: "\f27b";
}
.fa-houzz:before {
content: "\f27c";
}
.fa-vimeo:before {
content: "\f27d";
}
.fa-black-tie:before {
content: "\f27e";
}
.fa-fonticons:before {
content: "\f280";
}
.fa-reddit-alien:before {
content: "\f281";
}
.fa-edge:before {
content: "\f282";
}
.fa-credit-card-alt:before {
content: "\f283";
}
.fa-codiepie:before {
content: "\f284";
}
.fa-modx:before {
content: "\f285";
}
.fa-fort-awesome:before {
content: "\f286";
}
.fa-usb:before {
content: "\f287";
}
.fa-product-hunt:before {
content: "\f288";
}
.fa-mixcloud:before {
content: "\f289";
}
.fa-scribd:before {
content: "\f28a";
}
.fa-pause-circle:before {
content: "\f28b";
}
.fa-pause-circle-o:before {
content: "\f28c";
}
.fa-stop-circle:before {
content: "\f28d";
}
.fa-stop-circle-o:before {
content: "\f28e";
}
.fa-shopping-bag:before {
content: "\f290";
}
.fa-shopping-basket:before {
content: "\f291";
}
.fa-hashtag:before {
content: "\f292";
}
.fa-bluetooth:before {
content: "\f293";
}
.fa-bluetooth-b:before {
content: "\f294";
}
.fa-percent:before {
content: "\f295";
}
/*!/src/page/layout/base.styl*/
body {
background: #fff;
}
.page-footer {
position: fixed;
display: -webkit-box;
border-top: 1px solid #e5e5e5;
bottom: 0;
left: 0;
right: 0;
}
.page-footer .footer-item {
-webkit-box-flex: 1;
display: block;
padding: 15px 0;
color: #999;
text-align: center;
}
|
style/style.bak.css | adoel/xin-theme | /*body*/
.hide {display: none !important}
[data-region="body"] {padding: 0 20px}
.noWrap {white-space: nowrap;overflow: hidden;text-overflow: ellipsis;}
/*end body*/
/*drawer*/
.xin-drawer {border: 0; box-shadow: 0 1px 1px #ddd;}
.xin-drawer [data-region="body"] {margin-top: 0; padding: 0}
.box-user {margin-bottom: 8px; box-shadow: 0 1px 1px #ddd; background-color: #f7fafd}
div.img-user {width: 60px;height: 60px;display: block;border-radius: 50%;margin: 16px; background: url(../img/2014-01-28.jpg); background-size: cover; background-position: center; background-repeat: no-repeat}
.name-user {padding: 16px; color: #575a5e;}
.name-user i {float: right}
.xin-drawer .xin-list li {border-top: 0; list-style: none; padding: 13px 16px}
.xin-drawer .xin-list li a {line-height: 170%;padding: 0; color: #575a5e}
.xin-drawer .xin-list li i {float: left; padding-right: 44px;font-size: 1.5em;color: #737373;}
.menu-drawer {border-bottom: 1px solid #eee; padding-bottom: 8px}
.list-drawer {padding-top: 8px}
.list-drawer li {height: 48px;}
.xin-drawer ul.list-drawer li i {padding: 0;float: right;font-style: inherit;max-width: 21px;width: 21px;text-align: center;font-size: 0.9em;color: #fff;background-color: #aaa;border-radius: 50%;display: table;}
/*end drawer*/
/*form*/
input[type="file"], input[type="submit"], input[type="text"], input[type="password"], input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="month"], input[type="week"], input[type="email"], input[type="number"], input[type="search"], input[type="tel"], input[type="time"], input[type="url"], textarea, select, span.field {margin-bottom: 10px}
/*end form*/
/*login*/
div[data-uri="signup"] {background: url(../img/consolidated_wealth.jpg) center; background-size: cover;}
div[data-uri="login"] {display: table !important; background: url(../img/consolidated_wealth.jpg) center; background-size: cover;}
div[data-uri="login"] div[data-region="body"] {display: table-cell; vertical-align: middle; padding: 0 20px}
div[data-uri="signup"] form {padding: 20px; width: 100%; -webkit-border-radius: 5px; -moz-border-radius: 5px; -ms-border-radius: 5px; -o-border-radius: 5px; border-radius: 5px; margin: 0 auto}
div[data-uri="signup"] form,
#login {background: rgba(249, 249, 249, 0.95); border: none; max-width: 420px}
a.login {display: table; margin: 0 auto}
/*end login*/
/*home*/
.editArisan, .addMember {position: fixed}
.editArisan {right: 16px; bottom: 86px}
.addMember {right: 76px;bottom: 56px;}
.circleButton, #add, #editArisan {position: fixed; bottom: 16px; right: 16px}
#add a:hover, #editArisan a:hover{box-shadow: 0 0px 8px rgba(0,0,0,0.12);}
#add a, #editArisan a, .editArisan a, .addMember a, .circleButton a{ padding: 16px 17px;border-radius: 50%;background: #92D1FF;box-shadow: 0 0px 2px rgba(0,0,0,0.12); cursor:pointer}
/*end home*/
/*modal*/
.modal {display: table; position: fixed; top: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.9); z-index: 999}
.inModal {display: table-cell; vertical-align: middle; padding: 16px}
.inModal form input,.inModal form textarea {background: transparent; color: #fff}
/*end modal*/
/*heade*/
.navbar {padding: 11px; box-shadow: 0 0 2px rgba(0,0,0,0.12); background-color: inherit}
.navbar .icon-menu i {font-size: 0.8em}
.navbar .back-button {float: left; width: 61px;}
.navbar h6.label {text-align: inherit}
/*end heade*/
/*listing*/
ul.listing li.selected{background: rgb(162, 223, 255); display: flex}
ul.listing li {list-style: none; position: relative; clear: both}
ul.listing li div.thumb-img {height: 40px; width: 40px; float: left; margin: 16px 16px 16px 6px;; border-radius: 50%; -webkit-border-radius: 50%; -moz-border-radius: 50%; background: url(../img/2014-01-28.jpg) no-repeat center; background-size: cover; background-position: center;background-repeat: no-repeat; position: absolute}
ul.listing li div.data {float: left; padding: 15px 4px 15px 60px; width: 100%}
/*end listing*/
/*detail*/
.imgDetail {height: 100px;width: 100px;background: url(../../../../vendor/xin-theme/img/arisan2.jpg) no-repeat;background-size: cover;border-radius: 50%;margin: 0 auto;}
/*end detail*/
/*tos page*/
#tos { position: fixed;right: 10px;top: 10px;max-width: 220px;padding: 14px;border-radius: 5px;background-color: #333;color: #fff;line-height: 120%;z-index: 99;box-shadow: 0 0 8px #000;}
#tos strong {margin-bottom: 10px; display: block}
#tos p {line-height: 120%; }
#tos .tosClose {position: absolute;background-color: #EC3C3C;border-radius: 50%;font-size: 24px;padding: 3px;text-align: center;right: 0px;display: block;width: 24px;height: 24px;overflow: hidden;transform: rotate(45deg);top: 0px;cursor: pointerx}
/*tos page*/
/*login*/
#login {padding: 10px 20px; -webkit-border-radius: 5px; -moz-border-radius: 5px; -ms-border-radius: 5px; -o-border-radius: 5px; border-radius: 5px;}
#login input[type="text"], #login input[type="password"] {margin: 0;padding: 12px; border-radius: 0}
#login input[type="password"]{ border-top: 0; margin-bottom: 10px; border-radius: 0 0 5px 5px; -webkit-border-radius: 0 0 5px 5px; -ms-border-radius: 0 0 5px 5px; -o-border-radius: 0 0 5px 5px}
#login input[type="text"] {border-radius: 5px 5px 0 0; -webkit-border-radius: 5px 5px 0 0; -ms-border-radius: 5px 5px 0 0; -o-border-radius: 5px 5px 0 0; }
#login .forgotPassword {margin-bottom: 10px;}
#login .placeholder {margin-bottom: 10px;}
#login .xn {font-size: inherit; width: inherit}
#login .connectTo { color: #fff; border: 0; position: relative; padding: 10px}
#login .connectTo i {position: absolute;left: 0;display: inline-block;width: 40px;top: 0;padding: 12px;font-size: 1.4em;}
#login .twitter {background: #5EA9DD;}
#login .facebook {background: #3B5998; margin-bottom: 10px}
/*end login*/
/*register page*/
#signup {text-align: center;margin: 0 auto; -webkit-border-radius: 5px; -moz-border-radius: 5px; -ms-border-radius: 5px; -o-border-radius: 5px; border-radius: 5px;}
#signup input[type="text"] {margin: 0;padding: 12px; border-radius: 0}
#signup input[type="password"] {margin: 0;padding: 12px; border-radius: 0 0 0 5px; -webkit-border-radius: 0 0 0 5px; -o-border-radius: 0 0 0 5px; -ms-border-radius: 0 0 0 5px; }
#signup input.password { border-radius: 0 0 0 5px; -webkit-border-radius: 0 0 0 5px; -o-border-radius: 0 0 0 5px; -ms-border-radius: 0 0 0 5px; }
#signup input.password2 { border-radius: 0 0 5px 0; -webkit-border-radius: 0 0 5px 0; -o-border-radius: 0 0 5px 0; -ms-border-radius: 0 0 5px 0; }
#signup input.inputNext {border-top: 0}
#signup input.inputNext.inputNexts {border-left: 0}
#signup input.inputFirst {border-radius: 5px 5px 0 0; -webkit-border-radius: 5px 5px 0 0; -o-border-radius: 5px 5px 0 0; -ms-border-radius: 5px 5px 0 0; }
#signup input[type="submit"] {margin: 10px auto; font-size: 16px;}
/*end register page*/
|
client/yui-3.17.2/api/modules/cache-plugin.html | billwiliams/Yui | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>cache-plugin - YUI 3</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="shortcut icon" type="image/png" href="../assets/favicon.png">
<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="YUI 3"></h1>
</div>
<div class="yui3-u-1-4 version">
<em>API Docs for: 3.17.2</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/Anim.html">Anim</a></li>
<li><a href="../classes/App.html">App</a></li>
<li><a href="../classes/App.Base.html">App.Base</a></li>
<li><a href="../classes/App.Content.html">App.Content</a></li>
<li><a href="../classes/App.Transitions.html">App.Transitions</a></li>
<li><a href="../classes/App.TransitionsNative.html">App.TransitionsNative</a></li>
<li><a href="../classes/AreaSeries.html">AreaSeries</a></li>
<li><a href="../classes/AreaSplineSeries.html">AreaSplineSeries</a></li>
<li><a href="../classes/Array.html">Array</a></li>
<li><a href="../classes/ArrayList.html">ArrayList</a></li>
<li><a href="../classes/ArraySort.html">ArraySort</a></li>
<li><a href="../classes/AsyncQueue.html">AsyncQueue</a></li>
<li><a href="../classes/Attribute.html">Attribute</a></li>
<li><a href="../classes/AttributeCore.html">AttributeCore</a></li>
<li><a href="../classes/AttributeEvents.html">AttributeEvents</a></li>
<li><a href="../classes/AttributeExtras.html">AttributeExtras</a></li>
<li><a href="../classes/AttributeLite.html">AttributeLite</a></li>
<li><a href="../classes/AttributeObservable.html">AttributeObservable</a></li>
<li><a href="../classes/AutoComplete.html">AutoComplete</a></li>
<li><a href="../classes/AutoCompleteBase.html">AutoCompleteBase</a></li>
<li><a href="../classes/AutoCompleteFilters.html">AutoCompleteFilters</a></li>
<li><a href="../classes/AutoCompleteHighlighters.html">AutoCompleteHighlighters</a></li>
<li><a href="../classes/AutoCompleteList.html">AutoCompleteList</a></li>
<li><a href="../classes/Axis.html">Axis</a></li>
<li><a href="../classes/AxisBase.html">AxisBase</a></li>
<li><a href="../classes/BarSeries.html">BarSeries</a></li>
<li><a href="../classes/Base.html">Base</a></li>
<li><a href="../classes/BaseCore.html">BaseCore</a></li>
<li><a href="../classes/BaseObservable.html">BaseObservable</a></li>
<li><a href="../classes/BottomAxisLayout.html">BottomAxisLayout</a></li>
<li><a href="../classes/Button.html">Button</a></li>
<li><a href="../classes/ButtonCore.html">ButtonCore</a></li>
<li><a href="../classes/ButtonGroup.html">ButtonGroup</a></li>
<li><a href="../classes/Cache.html">Cache</a></li>
<li><a href="../classes/CacheOffline.html">CacheOffline</a></li>
<li><a href="../classes/Calendar.html">Calendar</a></li>
<li><a href="../classes/CalendarBase.html">CalendarBase</a></li>
<li><a href="../classes/CandlestickSeries.html">CandlestickSeries</a></li>
<li><a href="../classes/CanvasCircle.html">CanvasCircle</a></li>
<li><a href="../classes/CanvasDrawing.html">CanvasDrawing</a></li>
<li><a href="../classes/CanvasEllipse.html">CanvasEllipse</a></li>
<li><a href="../classes/CanvasGraphic.html">CanvasGraphic</a></li>
<li><a href="../classes/CanvasPath.html">CanvasPath</a></li>
<li><a href="../classes/CanvasPieSlice.html">CanvasPieSlice</a></li>
<li><a href="../classes/CanvasRect.html">CanvasRect</a></li>
<li><a href="../classes/CanvasShape.html">CanvasShape</a></li>
<li><a href="../classes/CartesianChart.html">CartesianChart</a></li>
<li><a href="../classes/CartesianSeries.html">CartesianSeries</a></li>
<li><a href="../classes/CategoryAxis.html">CategoryAxis</a></li>
<li><a href="../classes/CategoryAxisBase.html">CategoryAxisBase</a></li>
<li><a href="../classes/CategoryImpl.html">CategoryImpl</a></li>
<li><a href="../classes/Chart.html">Chart</a></li>
<li><a href="../classes/ChartBase.html">ChartBase</a></li>
<li><a href="../classes/ChartLegend.html">ChartLegend</a></li>
<li><a href="../classes/Circle.html">Circle</a></li>
<li><a href="../classes/CircleGroup.html">CircleGroup</a></li>
<li><a href="../classes/ClassNameManager.html">ClassNameManager</a></li>
<li><a href="../classes/ClickableRail.html">ClickableRail</a></li>
<li><a href="../classes/Color.html">Color</a></li>
<li><a href="../classes/Color.Harmony.html">Color.Harmony</a></li>
<li><a href="../classes/Color.HSL.html">Color.HSL</a></li>
<li><a href="../classes/Color.HSV.html">Color.HSV</a></li>
<li><a href="../classes/ColumnSeries.html">ColumnSeries</a></li>
<li><a href="../classes/ComboSeries.html">ComboSeries</a></li>
<li><a href="../classes/ComboSplineSeries.html">ComboSplineSeries</a></li>
<li><a href="../classes/config.html">config</a></li>
<li><a href="../classes/Console.html">Console</a></li>
<li><a href="../classes/ContentEditable.html">ContentEditable</a></li>
<li><a href="../classes/Controller.html">Controller</a></li>
<li><a href="../classes/Cookie.html">Cookie</a></li>
<li><a href="../classes/CurveUtil.html">CurveUtil</a></li>
<li><a href="../classes/CustomEvent.html">CustomEvent</a></li>
<li><a href="../classes/DataSchema.Array.html">DataSchema.Array</a></li>
<li><a href="../classes/DataSchema.Base.html">DataSchema.Base</a></li>
<li><a href="../classes/DataSchema.JSON.html">DataSchema.JSON</a></li>
<li><a href="../classes/DataSchema.Text.html">DataSchema.Text</a></li>
<li><a href="../classes/DataSchema.XML.html">DataSchema.XML</a></li>
<li><a href="../classes/DataSource.Function.html">DataSource.Function</a></li>
<li><a href="../classes/DataSource.Get.html">DataSource.Get</a></li>
<li><a href="../classes/DataSource.IO.html">DataSource.IO</a></li>
<li><a href="../classes/DataSource.Local.html">DataSource.Local</a></li>
<li><a href="../classes/DataSourceArraySchema.html">DataSourceArraySchema</a></li>
<li><a href="../classes/DataSourceCache.html">DataSourceCache</a></li>
<li><a href="../classes/DataSourceCacheExtension.html">DataSourceCacheExtension</a></li>
<li><a href="../classes/DataSourceJSONSchema.html">DataSourceJSONSchema</a></li>
<li><a href="../classes/DataSourceTextSchema.html">DataSourceTextSchema</a></li>
<li><a href="../classes/DataSourceXMLSchema.html">DataSourceXMLSchema</a></li>
<li><a href="../classes/DataTable.html">DataTable</a></li>
<li><a href="../classes/DataTable.Base.html">DataTable.Base</a></li>
<li><a href="../classes/DataTable.BodyView.html">DataTable.BodyView</a></li>
<li><a href="../classes/DataTable.BodyView.Formatters.html">DataTable.BodyView.Formatters</a></li>
<li><a href="../classes/DataTable.Column.html">DataTable.Column</a></li>
<li><a href="../classes/DataTable.ColumnWidths.html">DataTable.ColumnWidths</a></li>
<li><a href="../classes/DataTable.Core.html">DataTable.Core</a></li>
<li><a href="../classes/DataTable.HeaderView.html">DataTable.HeaderView</a></li>
<li><a href="../classes/DataTable.Highlight.html">DataTable.Highlight</a></li>
<li><a href="../classes/DataTable.KeyNav.html">DataTable.KeyNav</a></li>
<li><a href="../classes/DataTable.Message.html">DataTable.Message</a></li>
<li><a href="../classes/DataTable.Mutable.html">DataTable.Mutable</a></li>
<li><a href="../classes/DataTable.Paginator.html">DataTable.Paginator</a></li>
<li><a href="../classes/DataTable.Paginator.Model.html">DataTable.Paginator.Model</a></li>
<li><a href="../classes/DataTable.Paginator.View.html">DataTable.Paginator.View</a></li>
<li><a href="../classes/DataTable.Scrollable.html">DataTable.Scrollable</a></li>
<li><a href="../classes/DataTable.Sortable.html">DataTable.Sortable</a></li>
<li><a href="../classes/DataTable.TableView.html">DataTable.TableView</a></li>
<li><a href="../classes/Date.html">Date</a></li>
<li><a href="../classes/DD.DDM.html">DD.DDM</a></li>
<li><a href="../classes/DD.Delegate.html">DD.Delegate</a></li>
<li><a href="../classes/DD.Drag.html">DD.Drag</a></li>
<li><a href="../classes/DD.Drop.html">DD.Drop</a></li>
<li><a href="../classes/DD.Scroll.html">DD.Scroll</a></li>
<li><a href="../classes/Dial.html">Dial</a></li>
<li><a href="../classes/Do.html">Do</a></li>
<li><a href="../classes/Do.AlterArgs.html">Do.AlterArgs</a></li>
<li><a href="../classes/Do.AlterReturn.html">Do.AlterReturn</a></li>
<li><a href="../classes/Do.Error.html">Do.Error</a></li>
<li><a href="../classes/Do.Halt.html">Do.Halt</a></li>
<li><a href="../classes/Do.Method.html">Do.Method</a></li>
<li><a href="../classes/Do.Prevent.html">Do.Prevent</a></li>
<li><a href="../classes/DOM.html">DOM</a></li>
<li><a href="../classes/DOMEventFacade.html">DOMEventFacade</a></li>
<li><a href="../classes/Drawing.html">Drawing</a></li>
<li><a href="../classes/Easing.html">Easing</a></li>
<li><a href="../classes/EditorBase.html">EditorBase</a></li>
<li><a href="../classes/EditorSelection.html">EditorSelection</a></li>
<li><a href="../classes/Ellipse.html">Ellipse</a></li>
<li><a href="../classes/EllipseGroup.html">EllipseGroup</a></li>
<li><a href="../classes/Escape.html">Escape</a></li>
<li><a href="../classes/Event.html">Event</a></li>
<li><a href="../classes/EventFacade.html">EventFacade</a></li>
<li><a href="../classes/EventHandle.html">EventHandle</a></li>
<li><a href="../classes/EventTarget.html">EventTarget</a></li>
<li><a href="../classes/Features.html">Features</a></li>
<li><a href="../classes/File.html">File</a></li>
<li><a href="../classes/FileFlash.html">FileFlash</a></li>
<li><a href="../classes/FileHTML5.html">FileHTML5</a></li>
<li><a href="../classes/Fills.html">Fills</a></li>
<li><a href="../classes/Frame.html">Frame</a></li>
<li><a href="../classes/Get.html">Get</a></li>
<li><a href="../classes/Get.Transaction.html">Get.Transaction</a></li>
<li><a href="../classes/GetNodeJS.html">GetNodeJS</a></li>
<li><a href="../classes/Graph.html">Graph</a></li>
<li><a href="../classes/Graphic.html">Graphic</a></li>
<li><a href="../classes/GraphicBase.html">GraphicBase</a></li>
<li><a href="../classes/Gridlines.html">Gridlines</a></li>
<li><a href="../classes/GroupDiamond.html">GroupDiamond</a></li>
<li><a href="../classes/GroupRect.html">GroupRect</a></li>
<li><a href="../classes/Handlebars.html">Handlebars</a></li>
<li><a href="../classes/Highlight.html">Highlight</a></li>
<li><a href="../classes/Histogram.html">Histogram</a></li>
<li><a href="../classes/HistoryBase.html">HistoryBase</a></li>
<li><a href="../classes/HistoryHash.html">HistoryHash</a></li>
<li><a href="../classes/HistoryHTML5.html">HistoryHTML5</a></li>
<li><a href="../classes/HorizontalLegendLayout.html">HorizontalLegendLayout</a></li>
<li><a href="../classes/ImgLoadGroup.html">ImgLoadGroup</a></li>
<li><a href="../classes/ImgLoadImgObj.html">ImgLoadImgObj</a></li>
<li><a href="../classes/InlineEditor.html">InlineEditor</a></li>
<li><a href="../classes/Intl.html">Intl</a></li>
<li><a href="../classes/IO.html">IO</a></li>
<li><a href="../classes/JSON.html">JSON</a></li>
<li><a href="../classes/JSONPRequest.html">JSONPRequest</a></li>
<li><a href="../classes/Lang.html">Lang</a></li>
<li><a href="../classes/LazyModelList.html">LazyModelList</a></li>
<li><a href="../classes/LeftAxisLayout.html">LeftAxisLayout</a></li>
<li><a href="../classes/Lines.html">Lines</a></li>
<li><a href="../classes/LineSeries.html">LineSeries</a></li>
<li><a href="../classes/Loader.html">Loader</a></li>
<li><a href="../classes/MarkerSeries.html">MarkerSeries</a></li>
<li><a href="../classes/Matrix.html">Matrix</a></li>
<li><a href="../classes/MatrixUtil.html">MatrixUtil</a></li>
<li><a href="../classes/Model.html">Model</a></li>
<li><a href="../classes/ModelList.html">ModelList</a></li>
<li><a href="../classes/ModelSync.Local.html">ModelSync.Local</a></li>
<li><a href="../classes/ModelSync.REST.html">ModelSync.REST</a></li>
<li><a href="../classes/Node.html">Node</a></li>
<li><a href="../classes/NodeList.html">NodeList</a></li>
<li><a href="../classes/Number.html">Number</a></li>
<li><a href="../classes/NumericAxis.html">NumericAxis</a></li>
<li><a href="../classes/NumericAxisBase.html">NumericAxisBase</a></li>
<li><a href="../classes/NumericImpl.html">NumericImpl</a></li>
<li><a href="../classes/Object.html">Object</a></li>
<li><a href="../classes/OHLCSeries.html">OHLCSeries</a></li>
<li><a href="../classes/Overlay.html">Overlay</a></li>
<li><a href="../classes/Paginator.html">Paginator</a></li>
<li><a href="../classes/Paginator.Core.html">Paginator.Core</a></li>
<li><a href="../classes/Paginator.Url.html">Paginator.Url</a></li>
<li><a href="../classes/Panel.html">Panel</a></li>
<li><a href="../classes/Parallel.html">Parallel</a></li>
<li><a href="../classes/Path.html">Path</a></li>
<li><a href="../classes/PieChart.html">PieChart</a></li>
<li><a href="../classes/PieSeries.html">PieSeries</a></li>
<li><a href="../classes/Pjax.html">Pjax</a></li>
<li><a href="../classes/PjaxBase.html">PjaxBase</a></li>
<li><a href="../classes/PjaxContent.html">PjaxContent</a></li>
<li><a href="../classes/Plots.html">Plots</a></li>
<li><a href="../classes/Plugin.Align.html">Plugin.Align</a></li>
<li><a href="../classes/Plugin.AutoComplete.html">Plugin.AutoComplete</a></li>
<li><a href="../classes/Plugin.Base.html">Plugin.Base</a></li>
<li><a href="../classes/Plugin.Button.html">Plugin.Button</a></li>
<li><a href="../classes/Plugin.Cache.html">Plugin.Cache</a></li>
<li><a href="../classes/Plugin.CalendarNavigator.html">Plugin.CalendarNavigator</a></li>
<li><a href="../classes/Plugin.ConsoleFilters.html">Plugin.ConsoleFilters</a></li>
<li><a href="../classes/Plugin.CreateLinkBase.html">Plugin.CreateLinkBase</a></li>
<li><a href="../classes/Plugin.DataTableDataSource.html">Plugin.DataTableDataSource</a></li>
<li><a href="../classes/Plugin.DDConstrained.html">Plugin.DDConstrained</a></li>
<li><a href="../classes/Plugin.DDNodeScroll.html">Plugin.DDNodeScroll</a></li>
<li><a href="../classes/Plugin.DDProxy.html">Plugin.DDProxy</a></li>
<li><a href="../classes/Plugin.DDWindowScroll.html">Plugin.DDWindowScroll</a></li>
<li><a href="../classes/Plugin.Drag.html">Plugin.Drag</a></li>
<li><a href="../classes/Plugin.Drop.html">Plugin.Drop</a></li>
<li><a href="../classes/Plugin.EditorBidi.html">Plugin.EditorBidi</a></li>
<li><a href="../classes/Plugin.EditorBR.html">Plugin.EditorBR</a></li>
<li><a href="../classes/Plugin.EditorLists.html">Plugin.EditorLists</a></li>
<li><a href="../classes/Plugin.EditorPara.html">Plugin.EditorPara</a></li>
<li><a href="../classes/Plugin.EditorParaBase.html">Plugin.EditorParaBase</a></li>
<li><a href="../classes/Plugin.EditorParaIE.html">Plugin.EditorParaIE</a></li>
<li><a href="../classes/Plugin.EditorTab.html">Plugin.EditorTab</a></li>
<li><a href="../classes/Plugin.ExecCommand.html">Plugin.ExecCommand</a></li>
<li><a href="../classes/Plugin.ExecCommand.COMMANDS.html">Plugin.ExecCommand.COMMANDS</a></li>
<li><a href="../classes/Plugin.Flick.html">Plugin.Flick</a></li>
<li><a href="../classes/Plugin.Host.html">Plugin.Host</a></li>
<li><a href="../classes/plugin.NodeFocusManager.html">plugin.NodeFocusManager</a></li>
<li><a href="../classes/Plugin.NodeFX.html">Plugin.NodeFX</a></li>
<li><a href="../classes/plugin.NodeMenuNav.html">plugin.NodeMenuNav</a></li>
<li><a href="../classes/Plugin.Pjax.html">Plugin.Pjax</a></li>
<li><a href="../classes/Plugin.Resize.html">Plugin.Resize</a></li>
<li><a href="../classes/Plugin.ResizeConstrained.html">Plugin.ResizeConstrained</a></li>
<li><a href="../classes/Plugin.ResizeProxy.html">Plugin.ResizeProxy</a></li>
<li><a href="../classes/Plugin.ScrollInfo.html">Plugin.ScrollInfo</a></li>
<li><a href="../classes/Plugin.ScrollViewList.html">Plugin.ScrollViewList</a></li>
<li><a href="../classes/Plugin.ScrollViewPaginator.html">Plugin.ScrollViewPaginator</a></li>
<li><a href="../classes/Plugin.ScrollViewScrollbars.html">Plugin.ScrollViewScrollbars</a></li>
<li><a href="../classes/Plugin.Shim.html">Plugin.Shim</a></li>
<li><a href="../classes/Plugin.SortScroll.html">Plugin.SortScroll</a></li>
<li><a href="../classes/Plugin.Tree.Lazy.html">Plugin.Tree.Lazy</a></li>
<li><a href="../classes/Plugin.WidgetAnim.html">Plugin.WidgetAnim</a></li>
<li><a href="../classes/Pollable.html">Pollable</a></li>
<li><a href="../classes/Promise.html">Promise</a></li>
<li><a href="../classes/Promise.Resolver.html">Promise.Resolver</a></li>
<li><a href="../classes/QueryString.html">QueryString</a></li>
<li><a href="../classes/Queue.html">Queue</a></li>
<li><a href="../classes/RangeSeries.html">RangeSeries</a></li>
<li><a href="../classes/Record.html">Record</a></li>
<li><a href="../classes/Recordset.html">Recordset</a></li>
<li><a href="../classes/RecordsetFilter.html">RecordsetFilter</a></li>
<li><a href="../classes/RecordsetIndexer.html">RecordsetIndexer</a></li>
<li><a href="../classes/RecordsetSort.html">RecordsetSort</a></li>
<li><a href="../classes/Rect.html">Rect</a></li>
<li><a href="../classes/Renderer.html">Renderer</a></li>
<li><a href="../classes/Resize.html">Resize</a></li>
<li><a href="../classes/RightAxisLayout.html">RightAxisLayout</a></li>
<li><a href="../classes/Router.html">Router</a></li>
<li><a href="../classes/ScrollView.html">ScrollView</a></li>
<li><a href="../classes/Selector.html">Selector</a></li>
<li><a href="../classes/SeriesBase.html">SeriesBase</a></li>
<li><a href="../classes/Shape.html">Shape</a></li>
<li><a href="../classes/ShapeGroup.html">ShapeGroup</a></li>
<li><a href="../classes/Slider.html">Slider</a></li>
<li><a href="../classes/SliderBase.html">SliderBase</a></li>
<li><a href="../classes/SliderValueRange.html">SliderValueRange</a></li>
<li><a href="../classes/Sortable.html">Sortable</a></li>
<li><a href="../classes/SplineSeries.html">SplineSeries</a></li>
<li><a href="../classes/StackedAreaSeries.html">StackedAreaSeries</a></li>
<li><a href="../classes/StackedAreaSplineSeries.html">StackedAreaSplineSeries</a></li>
<li><a href="../classes/StackedAxis.html">StackedAxis</a></li>
<li><a href="../classes/StackedAxisBase.html">StackedAxisBase</a></li>
<li><a href="../classes/StackedBarSeries.html">StackedBarSeries</a></li>
<li><a href="../classes/StackedColumnSeries.html">StackedColumnSeries</a></li>
<li><a href="../classes/StackedComboSeries.html">StackedComboSeries</a></li>
<li><a href="../classes/StackedComboSplineSeries.html">StackedComboSplineSeries</a></li>
<li><a href="../classes/StackedImpl.html">StackedImpl</a></li>
<li><a href="../classes/StackedLineSeries.html">StackedLineSeries</a></li>
<li><a href="../classes/StackedMarkerSeries.html">StackedMarkerSeries</a></li>
<li><a href="../classes/StackedSplineSeries.html">StackedSplineSeries</a></li>
<li><a href="../classes/StackingUtil.html">StackingUtil</a></li>
<li><a href="../classes/State.html">State</a></li>
<li><a href="../classes/StyleSheet.html">StyleSheet</a></li>
<li><a href="../classes/Subscriber.html">Subscriber</a></li>
<li><a href="../classes/SVGCircle.html">SVGCircle</a></li>
<li><a href="../classes/SVGDrawing.html">SVGDrawing</a></li>
<li><a href="../classes/SVGEllipse.html">SVGEllipse</a></li>
<li><a href="../classes/SVGGraphic.html">SVGGraphic</a></li>
<li><a href="../classes/SVGPath.html">SVGPath</a></li>
<li><a href="../classes/SVGPieSlice.html">SVGPieSlice</a></li>
<li><a href="../classes/SVGRect.html">SVGRect</a></li>
<li><a href="../classes/SVGShape.html">SVGShape</a></li>
<li><a href="../classes/SWF.html">SWF</a></li>
<li><a href="../classes/SWFDetect.html">SWFDetect</a></li>
<li><a href="../classes/SyntheticEvent.html">SyntheticEvent</a></li>
<li><a href="../classes/SyntheticEvent.Notifier.html">SyntheticEvent.Notifier</a></li>
<li><a href="../classes/SynthRegistry.html">SynthRegistry</a></li>
<li><a href="../classes/Tab.html">Tab</a></li>
<li><a href="../classes/TabView.html">TabView</a></li>
<li><a href="../classes/Template.html">Template</a></li>
<li><a href="../classes/Template.Micro.html">Template.Micro</a></li>
<li><a href="../classes/Test.ArrayAssert.html">Test.ArrayAssert</a></li>
<li><a href="../classes/Test.Assert.html">Test.Assert</a></li>
<li><a href="../classes/Test.AssertionError.html">Test.AssertionError</a></li>
<li><a href="../classes/Test.ComparisonFailure.html">Test.ComparisonFailure</a></li>
<li><a href="../classes/Test.Console.html">Test.Console</a></li>
<li><a href="../classes/Test.CoverageFormat.html">Test.CoverageFormat</a></li>
<li><a href="../classes/Test.DateAssert.html">Test.DateAssert</a></li>
<li><a href="../classes/Test.EventTarget.html">Test.EventTarget</a></li>
<li><a href="../classes/Test.Mock.html">Test.Mock</a></li>
<li><a href="../classes/Test.Mock.Value.html">Test.Mock.Value</a></li>
<li><a href="../classes/Test.ObjectAssert.html">Test.ObjectAssert</a></li>
<li><a href="../classes/Test.Reporter.html">Test.Reporter</a></li>
<li><a href="../classes/Test.Results.html">Test.Results</a></li>
<li><a href="../classes/Test.Runner.html">Test.Runner</a></li>
<li><a href="../classes/Test.ShouldError.html">Test.ShouldError</a></li>
<li><a href="../classes/Test.ShouldFail.html">Test.ShouldFail</a></li>
<li><a href="../classes/Test.TestCase.html">Test.TestCase</a></li>
<li><a href="../classes/Test.TestFormat.html">Test.TestFormat</a></li>
<li><a href="../classes/Test.TestNode.html">Test.TestNode</a></li>
<li><a href="../classes/Test.TestRunner.html">Test.TestRunner</a></li>
<li><a href="../classes/Test.TestSuite.html">Test.TestSuite</a></li>
<li><a href="../classes/Test.UnexpectedError.html">Test.UnexpectedError</a></li>
<li><a href="../classes/Test.UnexpectedValue.html">Test.UnexpectedValue</a></li>
<li><a href="../classes/Test.Wait.html">Test.Wait</a></li>
<li><a href="../classes/Text.AccentFold.html">Text.AccentFold</a></li>
<li><a href="../classes/Text.WordBreak.html">Text.WordBreak</a></li>
<li><a href="../classes/TimeAxis.html">TimeAxis</a></li>
<li><a href="../classes/TimeAxisBase.html">TimeAxisBase</a></li>
<li><a href="../classes/TimeImpl.html">TimeImpl</a></li>
<li><a href="../classes/ToggleButton.html">ToggleButton</a></li>
<li><a href="../classes/TopAxisLayout.html">TopAxisLayout</a></li>
<li><a href="../classes/Transition.html">Transition</a></li>
<li><a href="../classes/Tree.html">Tree</a></li>
<li><a href="../classes/Tree.Labelable.html">Tree.Labelable</a></li>
<li><a href="../classes/Tree.Node.html">Tree.Node</a></li>
<li><a href="../classes/Tree.Node.Labelable.html">Tree.Node.Labelable</a></li>
<li><a href="../classes/Tree.Node.Openable.html">Tree.Node.Openable</a></li>
<li><a href="../classes/Tree.Node.Selectable.html">Tree.Node.Selectable</a></li>
<li><a href="../classes/Tree.Node.Sortable.html">Tree.Node.Sortable</a></li>
<li><a href="../classes/Tree.Openable.html">Tree.Openable</a></li>
<li><a href="../classes/Tree.Selectable.html">Tree.Selectable</a></li>
<li><a href="../classes/Tree.Sortable.html">Tree.Sortable</a></li>
<li><a href="../classes/UA.html">UA</a></li>
<li><a href="../classes/Uploader.html">Uploader</a></li>
<li><a href="../classes/Uploader.Queue.html">Uploader.Queue</a></li>
<li><a href="../classes/UploaderFlash.html">UploaderFlash</a></li>
<li><a href="../classes/UploaderHTML5.html">UploaderHTML5</a></li>
<li><a href="../classes/ValueChange.html">ValueChange</a></li>
<li><a href="../classes/VerticalLegendLayout.html">VerticalLegendLayout</a></li>
<li><a href="../classes/View.html">View</a></li>
<li><a href="../classes/View.NodeMap.html">View.NodeMap</a></li>
<li><a href="../classes/VMLCircle.html">VMLCircle</a></li>
<li><a href="../classes/VMLDrawing.html">VMLDrawing</a></li>
<li><a href="../classes/VMLEllipse.html">VMLEllipse</a></li>
<li><a href="../classes/VMLGraphic.html">VMLGraphic</a></li>
<li><a href="../classes/VMLPath.html">VMLPath</a></li>
<li><a href="../classes/VMLPieSlice.html">VMLPieSlice</a></li>
<li><a href="../classes/VMLRect.html">VMLRect</a></li>
<li><a href="../classes/VMLShape.html">VMLShape</a></li>
<li><a href="../classes/Widget.html">Widget</a></li>
<li><a href="../classes/WidgetAutohide.html">WidgetAutohide</a></li>
<li><a href="../classes/WidgetButtons.html">WidgetButtons</a></li>
<li><a href="../classes/WidgetChild.html">WidgetChild</a></li>
<li><a href="../classes/WidgetModality.html">WidgetModality</a></li>
<li><a href="../classes/WidgetParent.html">WidgetParent</a></li>
<li><a href="../classes/WidgetPosition.html">WidgetPosition</a></li>
<li><a href="../classes/WidgetPositionAlign.html">WidgetPositionAlign</a></li>
<li><a href="../classes/WidgetPositionConstrain.html">WidgetPositionConstrain</a></li>
<li><a href="../classes/WidgetStack.html">WidgetStack</a></li>
<li><a href="../classes/WidgetStdMod.html">WidgetStdMod</a></li>
<li><a href="../classes/XML.html">XML</a></li>
<li><a href="../classes/YQL.html">YQL</a></li>
<li><a href="../classes/YQLRequest.html">YQLRequest</a></li>
<li><a href="../classes/YUI.html">YUI</a></li>
<li><a href="../classes/YUI~substitute.html">YUI~substitute</a></li>
</ul>
<ul id="api-modules" class="apis modules">
<li><a href="../modules/align-plugin.html">align-plugin</a></li>
<li><a href="../modules/anim.html">anim</a></li>
<li><a href="../modules/anim-base.html">anim-base</a></li>
<li><a href="../modules/anim-color.html">anim-color</a></li>
<li><a href="../modules/anim-curve.html">anim-curve</a></li>
<li><a href="../modules/anim-easing.html">anim-easing</a></li>
<li><a href="../modules/anim-node-plugin.html">anim-node-plugin</a></li>
<li><a href="../modules/anim-scroll.html">anim-scroll</a></li>
<li><a href="../modules/anim-shape.html">anim-shape</a></li>
<li><a href="../modules/anim-shape-transform.html">anim-shape-transform</a></li>
<li><a href="../modules/anim-xy.html">anim-xy</a></li>
<li><a href="../modules/app.html">app</a></li>
<li><a href="../modules/app-base.html">app-base</a></li>
<li><a href="../modules/app-content.html">app-content</a></li>
<li><a href="../modules/app-transitions.html">app-transitions</a></li>
<li><a href="../modules/app-transitions-native.html">app-transitions-native</a></li>
<li><a href="../modules/array-extras.html">array-extras</a></li>
<li><a href="../modules/array-invoke.html">array-invoke</a></li>
<li><a href="../modules/arraylist.html">arraylist</a></li>
<li><a href="../modules/arraylist-add.html">arraylist-add</a></li>
<li><a href="../modules/arraylist-filter.html">arraylist-filter</a></li>
<li><a href="../modules/arraysort.html">arraysort</a></li>
<li><a href="../modules/async-queue.html">async-queue</a></li>
<li><a href="../modules/attribute.html">attribute</a></li>
<li><a href="../modules/attribute-base.html">attribute-base</a></li>
<li><a href="../modules/attribute-complex.html">attribute-complex</a></li>
<li><a href="../modules/attribute-core.html">attribute-core</a></li>
<li><a href="../modules/attribute-extras.html">attribute-extras</a></li>
<li><a href="../modules/attribute-observable.html">attribute-observable</a></li>
<li><a href="../modules/autocomplete.html">autocomplete</a></li>
<li><a href="../modules/autocomplete-base.html">autocomplete-base</a></li>
<li><a href="../modules/autocomplete-filters.html">autocomplete-filters</a></li>
<li><a href="../modules/autocomplete-filters-accentfold.html">autocomplete-filters-accentfold</a></li>
<li><a href="../modules/autocomplete-highlighters.html">autocomplete-highlighters</a></li>
<li><a href="../modules/autocomplete-highlighters-accentfold.html">autocomplete-highlighters-accentfold</a></li>
<li><a href="../modules/autocomplete-list.html">autocomplete-list</a></li>
<li><a href="../modules/autocomplete-list-keys.html">autocomplete-list-keys</a></li>
<li><a href="../modules/autocomplete-plugin.html">autocomplete-plugin</a></li>
<li><a href="../modules/autocomplete-sources.html">autocomplete-sources</a></li>
<li><a href="../modules/axis.html">axis</a></li>
<li><a href="../modules/axis-base.html">axis-base</a></li>
<li><a href="../modules/axis-category.html">axis-category</a></li>
<li><a href="../modules/axis-category-base.html">axis-category-base</a></li>
<li><a href="../modules/axis-numeric.html">axis-numeric</a></li>
<li><a href="../modules/axis-numeric-base.html">axis-numeric-base</a></li>
<li><a href="../modules/axis-stacked.html">axis-stacked</a></li>
<li><a href="../modules/axis-stacked-base.html">axis-stacked-base</a></li>
<li><a href="../modules/axis-time.html">axis-time</a></li>
<li><a href="../modules/axis-time-base.html">axis-time-base</a></li>
<li><a href="../modules/base.html">base</a></li>
<li><a href="../modules/base-base.html">base-base</a></li>
<li><a href="../modules/base-build.html">base-build</a></li>
<li><a href="../modules/base-core.html">base-core</a></li>
<li><a href="../modules/base-observable.html">base-observable</a></li>
<li><a href="../modules/base-pluginhost.html">base-pluginhost</a></li>
<li><a href="../modules/button.html">button</a></li>
<li><a href="../modules/button-core.html">button-core</a></li>
<li><a href="../modules/button-group.html">button-group</a></li>
<li><a href="../modules/button-plugin.html">button-plugin</a></li>
<li><a href="../modules/cache.html">cache</a></li>
<li><a href="../modules/cache-base.html">cache-base</a></li>
<li><a href="../modules/cache-offline.html">cache-offline</a></li>
<li><a href="../modules/cache-plugin.html">cache-plugin</a></li>
<li><a href="../modules/calendar.html">calendar</a></li>
<li><a href="../modules/calendar-base.html">calendar-base</a></li>
<li><a href="../modules/calendarnavigator.html">calendarnavigator</a></li>
<li><a href="../modules/charts.html">charts</a></li>
<li><a href="../modules/charts-base.html">charts-base</a></li>
<li><a href="../modules/charts-legend.html">charts-legend</a></li>
<li><a href="../modules/classnamemanager.html">classnamemanager</a></li>
<li><a href="../modules/clickable-rail.html">clickable-rail</a></li>
<li><a href="../modules/collection.html">collection</a></li>
<li><a href="../modules/color.html">color</a></li>
<li><a href="../modules/color-base.html">color-base</a></li>
<li><a href="../modules/color-harmony.html">color-harmony</a></li>
<li><a href="../modules/color-hsl.html">color-hsl</a></li>
<li><a href="../modules/color-hsv.html">color-hsv</a></li>
<li><a href="../modules/console.html">console</a></li>
<li><a href="../modules/console-filters.html">console-filters</a></li>
<li><a href="../modules/content-editable.html">content-editable</a></li>
<li><a href="../modules/cookie.html">cookie</a></li>
<li><a href="../modules/createlink-base.html">createlink-base</a></li>
<li><a href="../modules/dataschema.html">dataschema</a></li>
<li><a href="../modules/dataschema-array.html">dataschema-array</a></li>
<li><a href="../modules/dataschema-base.html">dataschema-base</a></li>
<li><a href="../modules/dataschema-json.html">dataschema-json</a></li>
<li><a href="../modules/dataschema-text.html">dataschema-text</a></li>
<li><a href="../modules/dataschema-xml.html">dataschema-xml</a></li>
<li><a href="../modules/datasource.html">datasource</a></li>
<li><a href="../modules/datasource-arrayschema.html">datasource-arrayschema</a></li>
<li><a href="../modules/datasource-cache.html">datasource-cache</a></li>
<li><a href="../modules/datasource-function.html">datasource-function</a></li>
<li><a href="../modules/datasource-get.html">datasource-get</a></li>
<li><a href="../modules/datasource-io.html">datasource-io</a></li>
<li><a href="../modules/datasource-jsonschema.html">datasource-jsonschema</a></li>
<li><a href="../modules/datasource-local.html">datasource-local</a></li>
<li><a href="../modules/datasource-polling.html">datasource-polling</a></li>
<li><a href="../modules/datasource-textschema.html">datasource-textschema</a></li>
<li><a href="../modules/datasource-xmlschema.html">datasource-xmlschema</a></li>
<li><a href="../modules/datatable.html">datatable</a></li>
<li><a href="../modules/datatable-base.html">datatable-base</a></li>
<li><a href="../modules/datatable-body.html">datatable-body</a></li>
<li><a href="../modules/datatable-column-widths.html">datatable-column-widths</a></li>
<li><a href="../modules/datatable-core.html">datatable-core</a></li>
<li><a href="../modules/datatable-datasource.html">datatable-datasource</a></li>
<li><a href="../modules/datatable-foot.html">datatable-foot</a></li>
<li><a href="../modules/datatable-formatters.html">datatable-formatters</a></li>
<li><a href="../modules/datatable-head.html">datatable-head</a></li>
<li><a href="../modules/datatable-highlight.html">datatable-highlight</a></li>
<li><a href="../modules/datatable-keynav.html">datatable-keynav</a></li>
<li><a href="../modules/datatable-message.html">datatable-message</a></li>
<li><a href="../modules/datatable-mutable.html">datatable-mutable</a></li>
<li><a href="../modules/datatable-paginator.html">datatable-paginator</a></li>
<li><a href="../modules/datatable-scroll.html">datatable-scroll</a></li>
<li><a href="../modules/datatable-sort.html">datatable-sort</a></li>
<li><a href="../modules/datatable-table.html">datatable-table</a></li>
<li><a href="../modules/datatype.html">datatype</a></li>
<li><a href="../modules/datatype-date.html">datatype-date</a></li>
<li><a href="../modules/datatype-date-format.html">datatype-date-format</a></li>
<li><a href="../modules/datatype-date-math.html">datatype-date-math</a></li>
<li><a href="../modules/datatype-date-parse.html">datatype-date-parse</a></li>
<li><a href="../modules/datatype-number.html">datatype-number</a></li>
<li><a href="../modules/datatype-number-format.html">datatype-number-format</a></li>
<li><a href="../modules/datatype-number-parse.html">datatype-number-parse</a></li>
<li><a href="../modules/datatype-xml.html">datatype-xml</a></li>
<li><a href="../modules/datatype-xml-format.html">datatype-xml-format</a></li>
<li><a href="../modules/datatype-xml-parse.html">datatype-xml-parse</a></li>
<li><a href="../modules/dd.html">dd</a></li>
<li><a href="../modules/dd-constrain.html">dd-constrain</a></li>
<li><a href="../modules/dd-ddm.html">dd-ddm</a></li>
<li><a href="../modules/dd-ddm-base.html">dd-ddm-base</a></li>
<li><a href="../modules/dd-ddm-drop.html">dd-ddm-drop</a></li>
<li><a href="../modules/dd-delegate.html">dd-delegate</a></li>
<li><a href="../modules/dd-drag.html">dd-drag</a></li>
<li><a href="../modules/dd-drop.html">dd-drop</a></li>
<li><a href="../modules/dd-drop-plugin.html">dd-drop-plugin</a></li>
<li><a href="../modules/dd-gestures.html">dd-gestures</a></li>
<li><a href="../modules/dd-plugin.html">dd-plugin</a></li>
<li><a href="../modules/dd-proxy.html">dd-proxy</a></li>
<li><a href="../modules/dd-scroll.html">dd-scroll</a></li>
<li><a href="../modules/dial.html">dial</a></li>
<li><a href="../modules/dom.html">dom</a></li>
<li><a href="../modules/dom-base.html">dom-base</a></li>
<li><a href="../modules/dom-screen.html">dom-screen</a></li>
<li><a href="../modules/dom-style.html">dom-style</a></li>
<li><a href="../modules/dump.html">dump</a></li>
<li><a href="../modules/editor.html">editor</a></li>
<li><a href="../modules/editor-base.html">editor-base</a></li>
<li><a href="../modules/editor-bidi.html">editor-bidi</a></li>
<li><a href="../modules/editor-br.html">editor-br</a></li>
<li><a href="../modules/editor-inline.html">editor-inline</a></li>
<li><a href="../modules/editor-lists.html">editor-lists</a></li>
<li><a href="../modules/editor-para.html">editor-para</a></li>
<li><a href="../modules/editor-para-base.html">editor-para-base</a></li>
<li><a href="../modules/editor-para-ie.html">editor-para-ie</a></li>
<li><a href="../modules/editor-tab.html">editor-tab</a></li>
<li><a href="../modules/escape.html">escape</a></li>
<li><a href="../modules/event.html">event</a></li>
<li><a href="../modules/event-base.html">event-base</a></li>
<li><a href="../modules/event-contextmenu.html">event-contextmenu</a></li>
<li><a href="../modules/event-custom.html">event-custom</a></li>
<li><a href="../modules/event-custom-base.html">event-custom-base</a></li>
<li><a href="../modules/event-custom-complex.html">event-custom-complex</a></li>
<li><a href="../modules/event-delegate.html">event-delegate</a></li>
<li><a href="../modules/event-flick.html">event-flick</a></li>
<li><a href="../modules/event-focus.html">event-focus</a></li>
<li><a href="../modules/event-gestures.html">event-gestures</a></li>
<li><a href="../modules/event-hover.html">event-hover</a></li>
<li><a href="../modules/event-key.html">event-key</a></li>
<li><a href="../modules/event-mouseenter.html">event-mouseenter</a></li>
<li><a href="../modules/event-mousewheel.html">event-mousewheel</a></li>
<li><a href="../modules/event-move.html">event-move</a></li>
<li><a href="../modules/event-outside.html">event-outside</a></li>
<li><a href="../modules/event-resize.html">event-resize</a></li>
<li><a href="../modules/event-simulate.html">event-simulate</a></li>
<li><a href="../modules/event-synthetic.html">event-synthetic</a></li>
<li><a href="../modules/event-tap.html">event-tap</a></li>
<li><a href="../modules/event-touch.html">event-touch</a></li>
<li><a href="../modules/event-valuechange.html">event-valuechange</a></li>
<li><a href="../modules/exec-command.html">exec-command</a></li>
<li><a href="../modules/features.html">features</a></li>
<li><a href="../modules/file.html">file</a></li>
<li><a href="../modules/file-flash.html">file-flash</a></li>
<li><a href="../modules/file-html5.html">file-html5</a></li>
<li><a href="../modules/frame.html">frame</a></li>
<li><a href="../modules/gesture-simulate.html">gesture-simulate</a></li>
<li><a href="../modules/get.html">get</a></li>
<li><a href="../modules/get-nodejs.html">get-nodejs</a></li>
<li><a href="../modules/graphics.html">graphics</a></li>
<li><a href="../modules/graphics-group.html">graphics-group</a></li>
<li><a href="../modules/handlebars.html">handlebars</a></li>
<li><a href="../modules/handlebars-base.html">handlebars-base</a></li>
<li><a href="../modules/handlebars-compiler.html">handlebars-compiler</a></li>
<li><a href="../modules/highlight.html">highlight</a></li>
<li><a href="../modules/highlight-accentfold.html">highlight-accentfold</a></li>
<li><a href="../modules/highlight-base.html">highlight-base</a></li>
<li><a href="../modules/history.html">history</a></li>
<li><a href="../modules/history-base.html">history-base</a></li>
<li><a href="../modules/history-hash.html">history-hash</a></li>
<li><a href="../modules/history-hash-ie.html">history-hash-ie</a></li>
<li><a href="../modules/history-html5.html">history-html5</a></li>
<li><a href="../modules/imageloader.html">imageloader</a></li>
<li><a href="../modules/intl.html">intl</a></li>
<li><a href="../modules/io.html">io</a></li>
<li><a href="../modules/io-base.html">io-base</a></li>
<li><a href="../modules/io-form.html">io-form</a></li>
<li><a href="../modules/io-nodejs.html">io-nodejs</a></li>
<li><a href="../modules/io-queue.html">io-queue</a></li>
<li><a href="../modules/io-upload-iframe.html">io-upload-iframe</a></li>
<li><a href="../modules/io-xdr.html">io-xdr</a></li>
<li><a href="../modules/json.html">json</a></li>
<li><a href="../modules/json-parse.html">json-parse</a></li>
<li><a href="../modules/json-stringify.html">json-stringify</a></li>
<li><a href="../modules/jsonp.html">jsonp</a></li>
<li><a href="../modules/jsonp-url.html">jsonp-url</a></li>
<li><a href="../modules/lazy-model-list.html">lazy-model-list</a></li>
<li><a href="../modules/loader.html">loader</a></li>
<li><a href="../modules/loader-base.html">loader-base</a></li>
<li><a href="../modules/loader-yui3.html">loader-yui3</a></li>
<li><a href="../modules/matrix.html">matrix</a></li>
<li><a href="../modules/model.html">model</a></li>
<li><a href="../modules/model-list.html">model-list</a></li>
<li><a href="../modules/model-sync-rest.html">model-sync-rest</a></li>
<li><a href="../modules/node.html">node</a></li>
<li><a href="../modules/node-base.html">node-base</a></li>
<li><a href="../modules/node-core.html">node-core</a></li>
<li><a href="../modules/node-data.html">node-data</a></li>
<li><a href="../modules/node-event-delegate.html">node-event-delegate</a></li>
<li><a href="../modules/node-event-html5.html">node-event-html5</a></li>
<li><a href="../modules/node-event-simulate.html">node-event-simulate</a></li>
<li><a href="../modules/node-flick.html">node-flick</a></li>
<li><a href="../modules/node-focusmanager.html">node-focusmanager</a></li>
<li><a href="../modules/node-load.html">node-load</a></li>
<li><a href="../modules/node-menunav.html">node-menunav</a></li>
<li><a href="../modules/node-pluginhost.html">node-pluginhost</a></li>
<li><a href="../modules/node-screen.html">node-screen</a></li>
<li><a href="../modules/node-scroll-info.html">node-scroll-info</a></li>
<li><a href="../modules/node-style.html">node-style</a></li>
<li><a href="../modules/oop.html">oop</a></li>
<li><a href="../modules/overlay.html">overlay</a></li>
<li><a href="../modules/paginator.html">paginator</a></li>
<li><a href="../modules/paginator-core.html">paginator-core</a></li>
<li><a href="../modules/paginator-url.html">paginator-url</a></li>
<li><a href="../modules/panel.html">panel</a></li>
<li><a href="../modules/parallel.html">parallel</a></li>
<li><a href="../modules/pjax.html">pjax</a></li>
<li><a href="../modules/pjax-base.html">pjax-base</a></li>
<li><a href="../modules/pjax-content.html">pjax-content</a></li>
<li><a href="../modules/pjax-plugin.html">pjax-plugin</a></li>
<li><a href="../modules/plugin.html">plugin</a></li>
<li><a href="../modules/pluginhost.html">pluginhost</a></li>
<li><a href="../modules/pluginhost-base.html">pluginhost-base</a></li>
<li><a href="../modules/pluginhost-config.html">pluginhost-config</a></li>
<li><a href="../modules/promise.html">promise</a></li>
<li><a href="../modules/querystring.html">querystring</a></li>
<li><a href="../modules/querystring-parse.html">querystring-parse</a></li>
<li><a href="../modules/querystring-parse-simple.html">querystring-parse-simple</a></li>
<li><a href="../modules/querystring-stringify.html">querystring-stringify</a></li>
<li><a href="../modules/querystring-stringify-simple.html">querystring-stringify-simple</a></li>
<li><a href="../modules/queue-promote.html">queue-promote</a></li>
<li><a href="../modules/range-slider.html">range-slider</a></li>
<li><a href="../modules/recordset.html">recordset</a></li>
<li><a href="../modules/recordset-base.html">recordset-base</a></li>
<li><a href="../modules/recordset-filter.html">recordset-filter</a></li>
<li><a href="../modules/recordset-indexer.html">recordset-indexer</a></li>
<li><a href="../modules/recordset-sort.html">recordset-sort</a></li>
<li><a href="../modules/resize.html">resize</a></li>
<li><a href="../modules/resize-contrain.html">resize-contrain</a></li>
<li><a href="../modules/resize-plugin.html">resize-plugin</a></li>
<li><a href="../modules/resize-proxy.html">resize-proxy</a></li>
<li><a href="../modules/rollup.html">rollup</a></li>
<li><a href="../modules/router.html">router</a></li>
<li><a href="../modules/scrollview.html">scrollview</a></li>
<li><a href="../modules/scrollview-base.html">scrollview-base</a></li>
<li><a href="../modules/scrollview-base-ie.html">scrollview-base-ie</a></li>
<li><a href="../modules/scrollview-list.html">scrollview-list</a></li>
<li><a href="../modules/scrollview-paginator.html">scrollview-paginator</a></li>
<li><a href="../modules/scrollview-scrollbars.html">scrollview-scrollbars</a></li>
<li><a href="../modules/selection.html">selection</a></li>
<li><a href="../modules/selector-css2.html">selector-css2</a></li>
<li><a href="../modules/selector-css3.html">selector-css3</a></li>
<li><a href="../modules/selector-native.html">selector-native</a></li>
<li><a href="../modules/series-area.html">series-area</a></li>
<li><a href="../modules/series-area-stacked.html">series-area-stacked</a></li>
<li><a href="../modules/series-areaspline.html">series-areaspline</a></li>
<li><a href="../modules/series-areaspline-stacked.html">series-areaspline-stacked</a></li>
<li><a href="../modules/series-bar.html">series-bar</a></li>
<li><a href="../modules/series-bar-stacked.html">series-bar-stacked</a></li>
<li><a href="../modules/series-base.html">series-base</a></li>
<li><a href="../modules/series-candlestick.html">series-candlestick</a></li>
<li><a href="../modules/series-cartesian.html">series-cartesian</a></li>
<li><a href="../modules/series-column.html">series-column</a></li>
<li><a href="../modules/series-column-stacked.html">series-column-stacked</a></li>
<li><a href="../modules/series-combo.html">series-combo</a></li>
<li><a href="../modules/series-combo-stacked.html">series-combo-stacked</a></li>
<li><a href="../modules/series-combospline.html">series-combospline</a></li>
<li><a href="../modules/series-combospline-stacked.html">series-combospline-stacked</a></li>
<li><a href="../modules/series-curve-util.html">series-curve-util</a></li>
<li><a href="../modules/series-fill-util.html">series-fill-util</a></li>
<li><a href="../modules/series-histogram.html">series-histogram</a></li>
<li><a href="../modules/series-line.html">series-line</a></li>
<li><a href="../modules/series-line-stacked.html">series-line-stacked</a></li>
<li><a href="../modules/series-line-util.html">series-line-util</a></li>
<li><a href="../modules/series-marker.html">series-marker</a></li>
<li><a href="../modules/series-marker-stacked.html">series-marker-stacked</a></li>
<li><a href="../modules/series-ohlc.html">series-ohlc</a></li>
<li><a href="../modules/series-pie.html">series-pie</a></li>
<li><a href="../modules/series-plot-util.html">series-plot-util</a></li>
<li><a href="../modules/series-range.html">series-range</a></li>
<li><a href="../modules/series-spline.html">series-spline</a></li>
<li><a href="../modules/series-spline-stacked.html">series-spline-stacked</a></li>
<li><a href="../modules/series-stacked.html">series-stacked</a></li>
<li><a href="../modules/shim-plugin.html">shim-plugin</a></li>
<li><a href="../modules/slider.html">slider</a></li>
<li><a href="../modules/slider-base.html">slider-base</a></li>
<li><a href="../modules/slider-value-range.html">slider-value-range</a></li>
<li><a href="../modules/sortable.html">sortable</a></li>
<li><a href="../modules/sortable-scroll.html">sortable-scroll</a></li>
<li><a href="../modules/stylesheet.html">stylesheet</a></li>
<li><a href="../modules/substitute.html">substitute</a></li>
<li><a href="../modules/swf.html">swf</a></li>
<li><a href="../modules/swfdetect.html">swfdetect</a></li>
<li><a href="../modules/tabview.html">tabview</a></li>
<li><a href="../modules/template.html">template</a></li>
<li><a href="../modules/template-base.html">template-base</a></li>
<li><a href="../modules/template-micro.html">template-micro</a></li>
<li><a href="../modules/test.html">test</a></li>
<li><a href="../modules/test-console.html">test-console</a></li>
<li><a href="../modules/text.html">text</a></li>
<li><a href="../modules/text-accentfold.html">text-accentfold</a></li>
<li><a href="../modules/text-wordbreak.html">text-wordbreak</a></li>
<li><a href="../modules/timers.html">timers</a></li>
<li><a href="../modules/transition.html">transition</a></li>
<li><a href="../modules/transition-timer.html">transition-timer</a></li>
<li><a href="../modules/tree.html">tree</a></li>
<li><a href="../modules/tree-labelable.html">tree-labelable</a></li>
<li><a href="../modules/tree-lazy.html">tree-lazy</a></li>
<li><a href="../modules/tree-node.html">tree-node</a></li>
<li><a href="../modules/tree-openable.html">tree-openable</a></li>
<li><a href="../modules/tree-selectable.html">tree-selectable</a></li>
<li><a href="../modules/tree-sortable.html">tree-sortable</a></li>
<li><a href="../modules/uploader.html">uploader</a></li>
<li><a href="../modules/uploader-flash.html">uploader-flash</a></li>
<li><a href="../modules/uploader-html5.html">uploader-html5</a></li>
<li><a href="../modules/uploader-queue.html">uploader-queue</a></li>
<li><a href="../modules/view.html">view</a></li>
<li><a href="../modules/view-node-map.html">view-node-map</a></li>
<li><a href="../modules/widget.html">widget</a></li>
<li><a href="../modules/widget-anim.html">widget-anim</a></li>
<li><a href="../modules/widget-autohide.html">widget-autohide</a></li>
<li><a href="../modules/widget-base.html">widget-base</a></li>
<li><a href="../modules/widget-base-ie.html">widget-base-ie</a></li>
<li><a href="../modules/widget-buttons.html">widget-buttons</a></li>
<li><a href="../modules/widget-child.html">widget-child</a></li>
<li><a href="../modules/widget-htmlparser.html">widget-htmlparser</a></li>
<li><a href="../modules/widget-modality.html">widget-modality</a></li>
<li><a href="../modules/widget-parent.html">widget-parent</a></li>
<li><a href="../modules/widget-position.html">widget-position</a></li>
<li><a href="../modules/widget-position-align.html">widget-position-align</a></li>
<li><a href="../modules/widget-position-constrain.html">widget-position-constrain</a></li>
<li><a href="../modules/widget-skin.html">widget-skin</a></li>
<li><a href="../modules/widget-stack.html">widget-stack</a></li>
<li><a href="../modules/widget-stdmod.html">widget-stdmod</a></li>
<li><a href="../modules/widget-uievents.html">widget-uievents</a></li>
<li><a href="../modules/yql.html">yql</a></li>
<li><a href="../modules/yql-jsonp.html">yql-jsonp</a></li>
<li><a href="../modules/yql-nodejs.html">yql-nodejs</a></li>
<li><a href="../modules/yql-winjs.html">yql-winjs</a></li>
<li><a href="../modules/yui.html">yui</a></li>
<li><a href="../modules/yui-base.html">yui-base</a></li>
<li><a href="../modules/yui-later.html">yui-later</a></li>
<li><a href="../modules/yui-log.html">yui-log</a></li>
<li><a href="../modules/yui-throttle.html">yui-throttle</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>cache-plugin Module</h1>
<div class="box clearfix meta">
<a class="button link-docs" href="/yui/docs/cache">User Guide & Examples</a>
<div class="foundat">
Defined in: <a href="../files/cache_js_cache-plugin.js.html#l8"><code>cache/js/cache-plugin.js:8</code></a>
</div>
</div>
<div class="box intro">
<p>Provides support to use Cache as a Plugin to a Base-based class.</p>
</div>
<div class="yui3-g">
<div class="yui3-u-1-2">
<p>This module provides the following classes:</p>
<ul class="module-classes">
<li class="module-class">
<a href="../classes/Plugin.Cache.html">
Plugin.Cache
</a>
</li>
</ul>
</div>
<div class="yui3-u-1-2">
</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>
|
test/expected/buttons.html | chris5marsh/grunt-makedocs | <!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Buttons :: Design Patterns</title>
<meta name="description" content="University of York Design Patterns">
<meta name="author" content="University of York">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:title" content="">
<meta property="og:type" content="website">
<meta property="og:url" content="">
<meta property="og:image" content="">
<meta property="og:site_name" content="">
<meta property="og:description" content="">
<link rel="shortcut icon" href="favicon.ico">
<link rel="icon" type="image/x-icon" href="/favicon.ico">
<link rel="canonical" href="">
<link rel="stylesheet" href="css/styles.min.css">
</head>
<body id="buttons-page">
<ul>
<li><a href="index.html">Homepage</a></li>
<li>
<a href="#">Components</a>
<ul>
<li><a href="buttons.html">Buttons</a></li>
</ul>
</li>
<li>
<a href="#">Layout</a>
<ul>
<li><a href="grid.html">Grid</a></li>
</ul>
</li>
</ul>
<div class="default">
<h1 id="lots-of-buttons">Lots of Buttons</h1>
<p>Buttons come in four different types and three different sizes. Usually a <code>button</code> element should be used, although an <code>a</code>, an <code>input[type=button]</code>, an <code>input[type=reset]</code> or an <code>input[type=submit]</code> could be used.</p>
<p>The simplest is just a plain button:</p>
<script>
component("button", { "text": "Click me" });
component("button-link", { "text": "Go here", "href": "http://google.com" });
component("button-input", { "text": "Send" });
component("button-reset", { "text": "Reset" });
component("button-submit", { "text": "Submit" });
</script>
<p>Other types are <em>cancel</em>, <em>primary</em> and <em>highlight</em>:</p>
<script>
component("button", { "text": "Cancel", "type": "cancel" });
component("button", { "text": "Click this!", "type": "primary" });
component("button", { "text": "Or this", "type": "highlight" });
</script>
<p>You can define the size of the button too:</p>
<script>
component("button", { "text": "Tiny button", "size": "tiny" });
component("button", { "text": "Small button", "size": "small" });
component("button", { "text": "Medium button", "size": "medium" });
component("button", { "text": "Large button", "size": "large" });
component("button", { "text": "Huge button", "size": "huge" });
</script>
<p>It's also easy to add an icon to a button, either at the front, the end, or both (which doesn't look good, so don't do it).</p>
<script>
component("button", { "text": "Help", "icon-before": "help" });
component("button", { "text": "Info", "icon-after": "info" });
component("button", { "text": "Please don't", "icon-before": "mobile", "icon-after": "tick" });
</script>
<p>You can join this all together to make a monster button:</p>
<script>
component("button", { "text": "Oh gosh", "icon-after": "tick", "size": "large", "type": "warning" });
</script>
<h2 id="button-groups">Button groups</h2>
<p>You can combine buttons together in a <code>btn-group</code>. This will join the buttons together seamlessly.</p>
<script>
component("button-group", { atoms: [
{ "button": { "text": "Back" } },
{ "button": { "type": "warning", "text": "Help", "icon-after": "help" } },
{ "button": { "text": "Next" } }
]});
</script>
<h2 id="complete-options">Complete options</h2>
<h3 id="component-names">Component names</h3>
<ul>
<li>button</li>
<li>button-link</li>
<li>button-input</li>
<li>button-submit</li>
</ul>
<h3 id="options">Options</h3>
<h4 id="required">Required</h4>
<ul>
<li><strong>text</strong>: the text on the button</li>
</ul>
<h4 id="optional">Optional</h4>
<ul>
<li><strong>type</strong>: one of <em>default</em> (default), <em>cancel</em>, <em>primary</em> and <em>highlight</em></li>
<li><strong>size</strong>: one of <em>tiny</em>, <em>small</em>, <em>medium</em> (default), <em>large</em> or <em>huge</em></li>
<li><strong>icon-before</strong>: the type of <a href="icons">icon</a> to appear at the front of the button (doesn't work with input[type=submit] or input[type=button])</li>
<li><strong>icon-after</strong>: the type of <a href="icons">icon</a> to appear at the end of the button (doesn't work with input[type=submit] or input[type=button])</li>
<li><strong>href</strong>: the URL to visit when clicked (only for button-link, defaults to "#")</li>
</ul>
</div>
<script src="js/prism.js"></script>
</body>
</html> |
src/lib/components/sk-wandering-cubes/sk-wandering-cubes.component.html | mpalourdio/ng-http-loader | <!--
Copyright (c) 2015 Tobias Ahlin
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-->
<div class="sk-wandering-cubes" [class.colored]="!backgroundColor">
<div class="sk-cube sk-cube1" [style.background-color]='backgroundColor'></div>
<div class="sk-cube sk-cube2" [style.background-color]='backgroundColor'></div>
</div>
|
doc/serialized-form.html | tokahuke/java-for-playwrights | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="pt">
<head>
<!-- Generated by javadoc (1.8.0_60) on Wed Mar 02 17:26:14 BRT 2016 -->
<title>Serialized Form</title>
<meta name="date" content="2016-03-02">
<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="Serialized Form";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="overview-summary.html">Overview</a></li>
<li>Package</li>
<li>Class</li>
<li>Use</li>
<li><a href="overview-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?serialized-form.html" target="_top">Frames</a></li>
<li><a href="serialized-form.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h1 title="Serialized Form" class="title">Serialized Form</h1>
</div>
<div class="serializedFormContainer">
<ul class="blockList">
<li class="blockList">
<h2 title="Package">Package communications</h2>
<ul class="blockList">
<li class="blockList"><a name="communications.MessageLimboException">
<!-- -->
</a>
<h3>Class <a href="communications/MessageLimboException.html" title="class in communications">communications.MessageLimboException</a> extends java.lang.Throwable implements Serializable</h3>
<dl class="nameValue">
<dt>serialVersionUID:</dt>
<dd>5847753593427512374L</dd>
</dl>
</li>
<li class="blockList"><a name="communications.NoSuchCharacter">
<!-- -->
</a>
<h3>Class <a href="communications/NoSuchCharacter.html" title="class in communications">communications.NoSuchCharacter</a> extends java.lang.IllegalStateException implements Serializable</h3>
<dl class="nameValue">
<dt>serialVersionUID:</dt>
<dd>1L</dd>
</dl>
</li>
<li class="blockList"><a name="communications.NoSuchMessage">
<!-- -->
</a>
<h3>Class <a href="communications/NoSuchMessage.html" title="class in communications">communications.NoSuchMessage</a> extends java.lang.IllegalStateException implements Serializable</h3>
<dl class="nameValue">
<dt>serialVersionUID:</dt>
<dd>1L</dd>
</dl>
</li>
<li class="blockList"><a name="communications.ReceiveException">
<!-- -->
</a>
<h3>Class <a href="communications/ReceiveException.html" title="class in communications">communications.ReceiveException</a> extends java.lang.RuntimeException implements Serializable</h3>
<dl class="nameValue">
<dt>serialVersionUID:</dt>
<dd>476L</dd>
</dl>
</li>
<li class="blockList"><a name="communications.SendException">
<!-- -->
</a>
<h3>Class <a href="communications/SendException.html" title="class in communications">communications.SendException</a> extends java.lang.RuntimeException implements Serializable</h3>
<dl class="nameValue">
<dt>serialVersionUID:</dt>
<dd>-753L</dd>
</dl>
</li>
<li class="blockList"><a name="communications.ShortMessage">
<!-- -->
</a>
<h3>Class <a href="communications/ShortMessage.html" title="class in communications">communications.ShortMessage</a> extends java.lang.Object implements Serializable</h3>
<dl class="nameValue">
<dt>serialVersionUID:</dt>
<dd>1666L</dd>
</dl>
<ul class="blockList">
<li class="blockList">
<h3>Serialized Fields</h3>
<ul class="blockList">
<li class="blockList">
<h4>protocol</h4>
<pre>java.lang.String protocol</pre>
<div class="block">The name of the protocol this message belongs to.</div>
</li>
<li class="blockList">
<h4>id</h4>
<pre>long id</pre>
<div class="block">The id of the protocol round this message belongs to.</div>
</li>
<li class="blockList">
<h4>name</h4>
<pre>java.lang.String name</pre>
<div class="block">The name of the message.</div>
</li>
<li class="blockListLast">
<h4>payload</h4>
<pre>java.lang.Object payload</pre>
<div class="block">The content of the message.</div>
</li>
</ul>
</li>
</ul>
</li>
<li class="blockList"><a name="communications.TimeoutException">
<!-- -->
</a>
<h3>Class <a href="communications/TimeoutException.html" title="class in communications">communications.TimeoutException</a> extends <a href="communications/ReceiveException.html" title="class in communications">ReceiveException</a> implements Serializable</h3>
<dl class="nameValue">
<dt>serialVersionUID:</dt>
<dd>1952L</dd>
</dl>
</li>
</ul>
</li>
<li class="blockList">
<h2 title="Package">Package compose</h2>
<ul class="blockList">
<li class="blockList"><a name="compose.Connectionless">
<!-- -->
</a>
<h3>Class compose.Connectionless extends java.lang.Object implements Serializable</h3>
</li>
<li class="blockList"><a name="compose.OneWayConnection">
<!-- -->
</a>
<h3>Class compose.OneWayConnection extends java.lang.Object implements Serializable</h3>
</li>
</ul>
</li>
<li class="blockList">
<h2 title="Package">Package dsl</h2>
<ul class="blockList">
<li class="blockList"><a name="dsl.Actor.AlreadyLoadedException">
<!-- -->
</a>
<h3>Class <a href="dsl/Actor.AlreadyLoadedException.html" title="class in dsl">dsl.Actor.AlreadyLoadedException</a> extends java.lang.IllegalStateException implements Serializable</h3>
<dl class="nameValue">
<dt>serialVersionUID:</dt>
<dd>1L</dd>
</dl>
</li>
<li class="blockList"><a name="dsl.Actor.NotLoadedException">
<!-- -->
</a>
<h3>Class <a href="dsl/Actor.NotLoadedException.html" title="class in dsl">dsl.Actor.NotLoadedException</a> extends java.lang.IllegalStateException implements Serializable</h3>
<dl class="nameValue">
<dt>serialVersionUID:</dt>
<dd>1L</dd>
</dl>
</li>
<li class="blockList"><a name="dsl.Part">
<!-- -->
</a>
<h3>Class <a href="dsl/Part.html" title="class in dsl">dsl.Part</a> extends java.lang.Object implements Serializable</h3>
<dl class="nameValue">
<dt>serialVersionUID:</dt>
<dd>1992L</dd>
</dl>
<ul class="blockList">
<li class="blockList">
<h3>Serialized Fields</h3>
<ul class="blockList">
<li class="blockList">
<h4>characterName</h4>
<pre>java.lang.String characterName</pre>
<div class="block">The identifier of the character whose part is being modeled.</div>
</li>
<li class="blockList">
<h4>protocolName</h4>
<pre>java.lang.String protocolName</pre>
<div class="block">The name of the protocol being modeled.</div>
</li>
<li class="blockList">
<h4>actorClass</h4>
<pre>java.lang.Class<T> actorClass</pre>
<div class="block">The Actor class for which this part is intended.</div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="dsl/Actor.html" title="class in dsl"><code>Actor</code></a></dd>
</dl>
</li>
<li class="blockList">
<h4>inMessageIds</h4>
<pre>java.util.Map<K,V> inMessageIds</pre>
<div class="block">The mapping between incoming message names to numeric ids.</div>
</li>
<li class="blockList">
<h4>outMessageIds</h4>
<pre>java.util.Map<K,V> outMessageIds</pre>
<div class="block">The mapping between outgoing message names to numeric ids.</div>
</li>
<li class="blockList">
<h4>characterIds</h4>
<pre>java.util.Map<K,V> characterIds</pre>
<div class="block">The mapping between character identifiers to numeric ids.</div>
</li>
<li class="blockList">
<h4>characterForMessage</h4>
<pre>short[] characterForMessage</pre>
<div class="block">The mapping between sending character ids to incoming message ids.</div>
</li>
<li class="blockList">
<h4>nextActions</h4>
<pre>java.lang.Object[] nextActions</pre>
<div class="block">The next step to be taken when a message is received. It can be an int[],
indicating more messages to be received (this forms the expected messages
graph), or a Node, indicating a final message and the action to be taken
after it is received.</div>
</li>
<li class="blockList">
<h4>nextMessagesReverse</h4>
<pre>short[][] nextMessagesReverse</pre>
<div class="block">The reverse of the expected messages graph.</div>
</li>
<li class="blockList">
<h4>noReceiveHandlers</h4>
<pre><a href="dsl/Node.html" title="class in dsl">Node</a>[] noReceiveHandlers</pre>
<div class="block">The mapping between incoming message ids and NoReceiveException handlers.
Null positions indicate no handler was supplied.</div>
</li>
<li class="blockList">
<h4>causalRelation</h4>
<pre>short[][] causalRelation</pre>
<div class="block">The mapping between outgoing messages and the incoming messages that are
caused by each outgoing message.</div>
</li>
<li class="blockList">
<h4>maxDelays</h4>
<pre>int[][] maxDelays</pre>
<div class="block">The maximum delay acceptable for each causation pair listed in
<a href="dsl/Part.html#causalRelation"><code>Part.causalRelation</code></a>, with the same data structure.</div>
</li>
<li class="blockList">
<h4>isCausFinal</h4>
<pre>java.util.BitSet[] isCausFinal</pre>
<div class="block">Indicates whether a certain out message id in the bit set is the last
message to be sent for the in message id in the array position to be
receivable.</div>
</li>
<li class="blockList">
<h4>stackSize</h4>
<pre>int stackSize</pre>
<div class="block">Size of the stack to be used in the search.</div>
</li>
<li class="blockListLast">
<h4>rootNode</h4>
<pre><a href="dsl/RootNode.html" title="class in dsl">RootNode</a> rootNode</pre>
<div class="block">The reference to the first action to be executed (either to do something
or to wait for a message). This makes the execution always begin on an
active Node, even if it is a dummy Node.</div>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="overview-summary.html">Overview</a></li>
<li>Package</li>
<li>Class</li>
<li>Use</li>
<li><a href="overview-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?serialized-form.html" target="_top">Frames</a></li>
<li><a href="serialized-form.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>
|
examples/wadors/index.html | mikewolfd/cornerstoneWADOImageLoader | <!DOCTYPE HTML>
<html>
<head>
<!-- twitter bootstrap CSS stylesheet - included to make things pretty, not needed or used by cornerstone -->
<link href="../bootstrap.min.css" rel="stylesheet">
<link href="../cornerstone.min.css" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="page-header">
<h1>Example of displaying a WADO-RS RetreiveFrame response using Cornerstone</h1>
<p class="lead">
Enter a WADO-RS URL to a SOP Instance.
</p>
</div>
<div id="loadProgress">Image Load Progress:</div>
<div class="row">
<form class="form-horizontal">
<div class="form-group">
<label class="control-label col-sm-1" for="apikey">APIKEY</label>
<div class="col-sm-8">
<input class="form-control" type="text" id="apikey" placeholder="APIKEY" value="">
</div>
</div>
<div class="form-group">
<label class="control-label col-sm-1" for="wadoURL">URL</label>
<div class="col-sm-8">
https://api.hackathon.siim.org/dicomweb/studies/1.3.6.1.4.1.14519.5.2.1.7777.9002.198875685720513246512710453733/series/1.3.6.1.4.1.14519.5.2.1.7777.9002.207203214132667549392101803048/instances/1.3.6.1.4.1.14519.5.2.1.7777.9002.327873213718058651550666129029/frames/1
<input class="form-control" type="text" id="wadoURL" placeholder="Enter WADO URL" value="../../testImages/wadors">
</div>
</div>
<div class="form-group">
<div class="col-sm-3">
<button class="form-control" type="button" id="downloadAndView" class="btn btn-primary">Download and View</button>
</div>
</div>
</form>
</div>
<div style="width:512px;height:512px;position:relative;color: white;display:inline-block;border-style:solid;border-color:black;"
oncontextmenu="return false"
class='disable-selection noIbar'
unselectable='on'
onselectstart='return false;'
onmousedown='return false;'>
<div id="dicomImage"
style="width:512px;height:512px;top:0px;left:0px; position:absolute">
</div>
</div>
</div>
</body>
<!-- jquery - currently a dependency and thus required for using cornerstoneWADOImageLoader -->
<script src="../jquery.min.js"></script>
<!-- bootstrap -->
<script src="../bootstrap.min.js"></script>
<!-- include the cornerstone library -->
<script src="../cornerstone.min.js"></script>
<SCRIPT src="../cornerstoneMath.js"></SCRIPT>
<SCRIPT src="../cornerstoneTools.js"></SCRIPT>
<!-- include the dicomParser library as the WADO image loader depends on it -->
<script src="../dicomParser.min.js"></script>
<!-- BEGIN Optional Codecs -->
<!-- OpenJPEG based jpeg 2000 codec -->
<script src="../../codecs/openJPEG-FixedMemory.js"></script>
<!-- PDF.js based jpeg 2000 codec -->
<!-- NOTE: do not load the OpenJPEG codec if you use this one -->
<!--<script src="../../codecs/jpx.min.js"></script>-->
<!-- JPEG-LS codec -->
<script src="../../codecs/charLS-FixedMemory-browser.js"></script>
<!-- JPEG Lossless codec -->
<script src="../../codecs/jpegLossless.js"></script>
<!-- JPEG Baseline codec -->
<script src="../../codecs/jpeg.js"></script>
<!-- Deflate transfer syntax codec -->
<script src="../../codecs/pako.min.js"></script>
<!-- END Optional Codecs -->
<!-- include the cornerstoneWADOImageLoader library -->
<script src="../../dist/cornerstoneWADOImageLoader.js"></script>
<script>
cornerstoneWADOImageLoader.configure({
beforeSend: function(xhr) {
// Add custom headers here (e.g. auth tokens)
var apiKey = $('#apikey').val();
if(apiKey && apiKey.length) {
xhr.setRequestHeader('APIKEY', apiKey);
}
}
});
var loaded = false;
function loadAndViewImage(imageId) {
var element = $('#dicomImage').get(0);
//try {
cornerstone.loadImage(imageId).then(function(image) {
console.log(image);
var viewport = cornerstone.getDefaultViewportForImage(element, image);
cornerstone.displayImage(element, image, viewport);
if(loaded === false) {
cornerstoneTools.mouseInput.enable(element);
cornerstoneTools.mouseWheelInput.enable(element);
cornerstoneTools.wwwc.activate(element, 1); // ww/wc is the default tool for left mouse button
cornerstoneTools.pan.activate(element, 2); // pan is the default tool for middle mouse button
cornerstoneTools.zoom.activate(element, 4); // zoom is the default tool for right mouse button
cornerstoneTools.zoomWheel.activate(element); // zoom is the default tool for middle mouse wheel
loaded = true;
}
}, function(err) {
alert(err);
});
/*}
catch(err) {
alert(err);
}*/
}
function getImageFrameURI(metadataURI, metadata) {
// Use the BulkDataURI if present int the metadata
if(metadata["7FE00010"] && metadata["7FE00010"].BulkDataURI) {
return metadata["7FE00010"].BulkDataURI
}
// fall back to using frame #1
return metadataURI + '/frames/1';
}
function downloadAndView()
{
var url = $('#wadoURL').val();
var metadataURI = url + "/metadata";
$.get(metadataURI, function(data) {
console.log(data);
var metadata = data[0];
var imageFrameURI = getImageFrameURI(metadataURI, metadata);
var imageId = 'wadors:' + imageFrameURI;
cornerstoneWADOImageLoader.wadors.metaDataManager.add(imageId, metadata);
// image enable the dicomImage element and activate a few tools
loadAndViewImage(imageId);
}, 'json');
}
$(cornerstone).bind('CornerstoneImageLoadProgress', function(eventData) {
$('#loadProgress').text('Image Load Progress: ' + eventData.percentComplete + "%");
});
$(document).ready(function() {
var element = $('#dicomImage').get(0);
cornerstone.enable(element);
$('#downloadAndView').click(function(e) {
downloadAndView();
});
$('form').submit(function() {
downloadAndView();
return false;
});
$('#selectFile').on('change', function(e) {
// Add the file to the cornerstoneFileImageLoader and get unique
// number for that file
var file = e.target.files[0];
var imageId = cornerstoneWADOImageLoader.fileManager.add(file);
loadAndViewImage(imageId);
});
});
</script>
</html>
|
SkylishCSS/grid/sky.grid.css | Schmidtwar/SkylishCSS | /* Version 0.5
Copyright by: Cremotdesign.com @ 2016
Github: https://github.com/Schmidtwar/SkylishCSS
*/
/* Breakers */
.sky-space {
display: inline-block;
width: 100%;
}
.sky-space-25px {
display: inline-block;
width: 100%;
height: 25px;
}
.sky-space-35px {
display: inline-block;
width: 100%;
height: 35px;
}
.sky-space-45px {
display: inline-block;
width: 100%;
height: 45px;
}
/* CENTER THE GRID */
.main-grid-center {
display: block;
width: 100%;
height: auto;
margin-top: 1%;
text-align: center;
}
/* MAKES GRID TO THE RIGHT */
.main-grid-right {
display: block;
width: 100%;
height: auto;
margin-top: 1%;
text-align: right;
}
/* MAKES GRID TO THE LEFT */
.main-grid-left {
display: block;
width: 100%;
height: auto;
margin-top: 1%;
text-align: left;
}
.sky-column-10, .sky-column-20, .sky-column-30,
.sky-column-40, .sky-column-50, .sky-column-60,
.sky-column-70, .sky-column-80, .sky-column-90,
.sky-column-100 {
vertical-align: top;
}
/* column STARTS HERE INLINE */
.sky-column-10 {
display: inline-block;
vertical-align: top;
width: 10%;
min-width: 150px;
height: auto;
min-height: 200px;
background: rgb(230, 230, 230);
text-align: center;
}
.sky-column-20 {
display: inline-block;
vertical-align: top;
width: 20%;
min-width: 150px;
height: auto;
min-height: 200px;
background: rgb(230, 230, 230);
text-align: center;
}
.sky-column-30 {
display: inline-block;
vertical-align: top;
width: 30%;
min-width: 250px;
height: auto;
min-height: 200px;
background: rgb(230, 230, 230);
text-align: center;
}
.sky-column-40 {
display: inline-block;
vertical-align: top;
width: 40%;
height: auto;
min-height: 200px;
background: rgb(230, 230, 230);
text-align: center;
}
.sky-column-50 {
display: inline-block;
vertical-align: top;
width: 50%;
height: auto;
min-height: 200px;
background: rgb(230, 230, 230);
text-align: center;
}
.sky-column-60 {
display: inline-block;
vertical-align: top;
width: 60%;
height: auto;
min-height: 200px;
background: rgb(230, 230, 230);
text-align: center;
}
.sky-column-70 {
display: inline-block;
vertical-align: top;
width: 70%;
height: auto;
min-height: 200px;
background: rgb(230, 230, 230);
text-align: center;
}
.sky-column-80 {
display: inline-block;
vertical-align: top;
width: 80%;
height: auto;
min-height: 200px;
background: rgb(230, 230, 230);
text-align: center;
}
.sky-column-90 {
display: inline-block;
vertical-align: top;
width: 90%;
height: auto;
min-height: 200px;
background: rgb(230, 230, 230);
text-align: center;
}
.sky-column-100 {
display: inline-block;
vertical-align: top;
width: 100%;
height: auto;
min-height: 200px;
background: rgb(230, 230, 230);
text-align: center;
}
|
app/src/components/files-tree-folder/template.html | brunosimon/keppler | <div v-show="visible">
<a href="#" class="name" :style="{ paddingLeft:(depth + 1) * 20 + 'px' }" @click.prevent="onNameClick">
<file-icon class="icon" extension="folder-active" v-show="open"></file-icon>
<file-icon class="icon" extension="folder" v-show="!open"></file-icon>
<span class="text">
<template v-for="(letter, key) in content.name">
<span class="letter" :class="[matchingPositions.indexOf(key) !== -1 ? 'highlight' : '']">{{ letter }}</span>
</template>
</span>
</a>
<div v-show="open">
<files-tree-folder class="js-child" v-for="folder of content.folders" :key="folder.name" :content="folder" :depth="depth + 1" :directory="fullPath + '/'"></files-tree-folder>
<files-tree-file class="js-child" v-for="file of files" :key="file.path.full" :content="file" :depth="depth + 2"></files-tree-file>
</div>
</div> |
templates/base.html | zaabjuda/GB_Fabrica | {% load staticfiles %}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Dmitry Zhiltsov">
<title>GBF</title>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" rel="stylesheet"
integrity="sha256-MfvZlkHCEqatNoGiOXveE8FIwMzZg4W85qfrfIFBfYc= sha512-dTfge/zgoMYpP7QbHy4gWMEGsbsdZeCXz7irItjcC3sPUFtf0kuFbDz/ixG7ArTxmDjLXDmezHubeNikyKGVyQ=="
crossorigin="anonymous">
<link href="{% static 'css/custom.css' %}" rel="stylesheet">
</head>
<body>
{% include 'components/toolbar.html' %}
<div class="container">
<div class="main_area">
{% block main_content %}
<h1>Hello!</h1>
<p class="lead">Use this document as a way to quickly start any new project.
<br> All you get is this text and a mostly barebones HTML document.</p>
{% endblock %}
</div>
</div>
<!-- /.container -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"
integrity="sha256-Sk3nkD6mLTMOF0EOpNtsIry+s1CsaqQC1rVLTAy+0yc= sha512-K1qjQ+NcF2TYO/eI3M6v8EiNYZfA95pQumfvcVrTHtwQVDG+aHRqLi/ETn2uB+1JqwYqVG3LIvdm9lj6imS/pQ=="
crossorigin="anonymous"></script>
</body>
</html> |
subDirectory/TEMPLATE.html | hotborsh/ReallyAnnoyingDirectory | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<style>
/* Styles Here */
</style>
</head>
<body>
<a href="https://learndevelopmentpublic.github.io/ReallyAnnoyingDirectory/">Back to Directory</a>
<script>
/* Javascript Here*/
</script>
</body>
</html> |
tests/simple.css | klamping/color-match | body {
background: #eee;
color: #888;
}
p, a {
font-size: 13px;
color: #888889;
text-shadow: 4px 4px 2px rgba(150, 150, 150, 1);
} |
PPT/JS-06-loginState2.html | ptteng/PPT | <!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>葡萄藤PPT</title>
<link rel="stylesheet" href="../css/reveal/reveal.css">
<!-- PPT主题,可以在/css/reveal/theme/中选择其他主题,目前暂时只能使用该模板 -->
<link rel="stylesheet" href="../css/reveal/theme/ptt.css">
<!-- syntax highlighting 代码高亮主题 -->
<link rel="stylesheet" href="../lib/reveal/css/zenburn.css">
<!-- 打印和PDF输出样式 -->
<script>
var link = document.createElement( 'link' );
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = window.location.search.match( /print-pdf/gi ) ? '../css/reveal/print/pdf.css' : '../css/reveal/print/paper.css';
document.getElementsByTagName( 'head' )[0].appendChild( link );
</script>
</head>
<body>
<img src="../img/demo/logo.png" alt="" usemap="#pttmap" class="base-logo">
<map name="pttmap">
<area shape="rect" coords="0,0,276,58" href="http://www.jnshu.com" alt="" target="_blank"/>
</map>
<div class="reveal">
<div class="slides">
<section>
<h2>【js-06】登录之后,在其他页面怎么判断是否已经登录?</h2>
<p>分享人:杨超</p>
</section>
<section>
<p>目录</p>
<p>1.背景介绍</p>
<p>2.知识剖析</p>
<p>3.常见问题</p>
<p>4.解决方案</p>
<p>5.编码实战</p>
<p>6.扩展思考</p>
<p>7.参考文献</p>
<p>8.更多讨论</p>
</section>
<section>
<h3>1.背景介绍</h3>
</section>
<section>
<p>登录功能,是前端经常要完成的需求之一。</p>
<p>但是如何进行登录判断?</p>
<p>需要用到什么样的属性或者方法?</p>
<p>有什么地方的细节需要注意?</p>
<p>以上这些,都是本次小课堂要讲解的重点!</p>
</section>
<section>
<h3>2.知识剖析</h3>
</section>
<section>
<p>Web Storage</p>
<p>WebStorage是HTML5中本地存储的解决方案之一</p>
<p>Web Storage实际上由两部分组成:sessionStorage与localStorage。</p>
</section>
<section>
<p>localStorage和sessionStorage</p>
<p>localStorage用于持久化的本地存储,除非主动删除数据,否则数据是永远不会过期的。</p>
<p>sessionStorage存储的数据只在会话期间有效,关闭浏览器则自动删除。</p>
</section>
<section>
<p>所以,在其它页面保持登录,可以在登录后往本地storage中存储一个关键字段(存储用户信息),如 :login:true</p>
<p>在路由变化的时候,或者在页面跳转的时候,检测是该字段值是否正确,不正确则跳转登录页;</p>
<p>点击注销可以执行删除</p>
</section>
<section>
<h3>3.常见问题</h3>
</section>
<section>
<p>为什么不用cookie?</p>
</section>
<section>
<h3>解决方案</h3>
</section>
<section>
<h3>cookie怎么了?</h3>
<p style="font-size: 35px;text-align: left">1. 数据大小:作为存储容器,cookie的大小限制在4KB左右。</p>
<p style="font-size: 35px;text-align: left">2. 安全性问题:由于在HTTP请求中的cookie是明文传递的(HTTPS不是),带来的安全性问题还是很大的。</p>
<p style="font-size: 35px;text-align: left">3. 网络负担:我们知道cookie会被附加在每个HTTP请求中,在HttpRequest和HttpResponse的header中都是要被传输的,
所以无形中增加了一些不必要的流量损失。</p>
</section>
<section>
<h3>5.编码实战</h3>
</section>
<section>
<p style="font-size: 35px;text-align: left">storage、cookie的设置与获取</p>
<p>getItem(key):获取指定key本地存储的值</p>
<p>setItem(key,value):将value存储到key字段</p>
<p>removeItem(key):删除指定key本地存储的值</p>
</section>
<section>
<h3>6.扩展思考</h3>
</section>
<section>
<h4>Web Storage相对于cookie的优势</h4>
<p style="font-size: 35px;text-align: left">1.从容量上讲WebStorage一般浏览器提供5M的存储空间,用来存储视频、图片神马的不够,但对于绝大部分操作足矣</p>
<p style="font-size: 35px;text-align: left">2.安全性上WebStorage并不作为HTTP header发送的浏览器,所以相对安全。</p>
<p style="font-size: 35px;text-align: left">3.从流量上讲,因为WebStorage不传送到服务器,所以不必要的流量可以节省。</p>
</section>
<section>
<h3>7.参考文献</h3>
</section>
<section style="margin-left: 18rem">
<p style="font-size: 35px;text-align: left">参考一:<a href="http://www.cnblogs.com/dolphinX/p/3348469.html">HTML5 WebStorage</a></p>
<p style="font-size: 35px;text-align: left">参考二:<a href="http://baike.so.com/doc/4477793-4686855.html">360百科</a></p>
<p style="font-size: 35px;text-align: left">参考二:<a href="http://blog.csdn.net/xtzz92/article/details/51668644">Nancy的专栏</a></p>
</section>
<section>
<h3>8.更多讨论</h3>
</section>
<section>
<h3>还有其他的本地存储方案吗?各自的性能如何?</h3>
</section>
<section>
<h4>鸣谢</h4>
<p>感谢大家观看</p>
<p><small>BY : 杨超|徐浩程|李绍博</small></p>
</section>
</div>
</div>
<script src="../lib/reveal/js/head.min.js"></script>
<script src="../lib/reveal/reveal.js"></script>
<script>
// 以下为常见配置属性的默认值
// {
// controls: true, // 是否在右下角展示控制条
// progress: true, // 是否显示演示的进度条
// slideNumber: false, // 是否显示当前幻灯片的页数编号,也可以使用代码slideNumber: 'c / t' ,表示当前页/总页数。
// history: false, // 是否将每个幻灯片改变加入到浏览器的历史记录中去
// keyboard: true, // 是否启用键盘快捷键来导航
// overview: true, // 是否启用幻灯片的概览模式,可使用"Esc"或"o"键来切换概览模式
// center: true, // 是否将幻灯片垂直居中
// touch: true, // 是否在触屏设备上启用触摸滑动切换
// loop: false, // 是否循环演示
// rtl: false, // 是否将演示的方向变成RTL,即从右往左
// fragments: true, // 全局开启和关闭碎片。
// autoSlide: 0, // 两个幻灯片之间自动切换的时间间隔(毫秒),当设置成 0 的时候则禁止自动切换,该值可以被幻灯片上的 ` data-autoslide` 属性覆盖
// transition: 'default', // 切换过渡效果,有none/fade/slide/convex/concave/zoom
// transitionSpeed: 'default', // 过渡速度,default/fast/slow
// mouseWheel: true, //是否启用通过鼠标滚轮来切换幻灯片
// }
// 初始化幻灯片
Reveal.initialize({
// history: true,
transition: 'default',
transitionSpeed: 'slow',
dependencies: [
{ src: '../plugin/markdown/marked.js' },
{ src: '../plugin/markdown/markdown.js' },
{ src: '../plugin/notes/notes.js', async: true },
{ src: '../plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } }
]
});
</script> |
doc/DocumentationBasics.html | jeancharles-roger/fr.minibilles.basics | <html>
<head>
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Documentation de Basics</title>
<style type="text/css" media="all">@import "DocumentationBasics.css";</style>
</head>
<body id="css-zen-garden">
<div id="Root">
<div id="Basics">
<h1 class="title">Documentation de Basics</h1>
<div>Basics est un framework d'application Java. Son but est de fournir un ensemble de fonctionnalités de bases nécessaires à la création d'une application. Il propose des solutions simples et efficaces à des problèmes courants dans le développement d'applications. À l'origine, ce framework a été développé pour la création d'outils logiciels. Il peut très bien s'adapter à d'autres domaines.</div>
<div>Une application créée avec Basics pourra offrir rapidement une sauvegarde sur fichier très efficace, une fonctionnalité d'anuler/refaire, une interface graphique homogène, dynamique et souple ainsi qu'une édition graphique (diagramme) de modèles. Elle pourra aussi offrir des fonctionnalités de génération, de compilation et d'exécution de code source Java, C ou autre.</div>
<div>D'un point de vue technique, Basics est framework Java (version 1.5 minimum). La partie graphique est basée sur SWT (Standard Widget Toolkit). Le choix de SWT s'est imposé par son intégration parfaite dans le système hôte. De plus, SWT a été très bien pensé et son utilisation reste intuitive.</div>
<div>Le mot d’ordre dans Basics est la simplicité, la simplicité dans l’implémentation et dans l’utilisation, attention cependant, simple mais pas simpliste. Les concepts abordés et les problèmes résolus ne sont pas triviaux. Un autre point important, un soin particulier a été et est apporté aux API proposées afin d’en rendre l’utilisation intuitive.</div>
</div>
<div id="Core">
<div id="Core">
<h2 class="title">Core</h2>
<div></div>
</div>
<div id="Commun">
<div id="Commun">
<h3 class="title">Commun</h3>
<div>Cette page présente les aspects communs de Basics utilisés par la plupart des autres composants.</div>
<h4 class="title">Styles</h4>
<div>Si vous connaissez SWT, vous ne serez pas perdu avec ce principe. L'idée des styles est d'indiquer lors de la création d'un objet un ensemble de paramètres regroupés à l'intérieur d'un seul entier. Ces paramètres sont immuables, une fois l'objet créé, ils ne peuvent plus être modifiés.</div>
<div>Les classes qui utilisent des styles possèdent des constructeurs contentant un paramètre entier nommé style.</div>
<div>La classe Basics regroupe les styles pour Basics.</div>
<div>La classe BasicsUI regroupe les styles pour les aspects graphiques de Basics.</div>
<h4 class="title">Gestion d'erreurs</h4>
<div>La gestion des erreurs dans Basics est délégué aux ErrorHandler.</div>
<div class="TODO"> (Diagnostic, ErrorHandler, DiagnosticUtil)</div>
<h4 class="title">Gestion d'actions longues</h4>
<div class="TODO"> (ActionMonitor)</div>
</div>
</div>
<div id="Serialisation">
<div id="Serialisation">
<h3 class="title">Sérialisation</h3>
<h4 class="title">Concept</h4>
<div>Basics permet de sauvegarder et charger des objets dans des fichiers ou des flux au travers des classes Boost. Le format de fichier utilisé est un format texte simple ou seules les informations nécessaires et suffisantes sont enregistrées. Les séparateurs sont minimaux et seules les données brutes sont présentes. Le but est de rendre la lecture et l’écriture la plus rapide possible limitant au maximum le nombre de calculs.</div>
<div class="note">
<span class="emphasis">Pourquoi un format texte</span> Le format texte permet d’enregistrer les petits nombres entiers et décimaux avec une petite précision avec moins d’octets. Ces nombres sont les plus couramment utilisés, cela permet un gain de taille. Le format texte permet aussi d’éditer les fichiers plus simplement, cependant le format n’est pas simple à lire.</div>
<div>Il est est prévu à terme de permettre d’utiliser un fichier de sauvegarde binaire ainsi que la compression des données à la volée.</div>
<div>Chaque objet sauvegardé (hors type primitif et la classe <span class="code">java.lang.String</span>) doit contenir le code nécessaire à sa sauvegarde et à sa lecture, l’un étant le stricte symétrique de l’autre. Boost fournit l’ensemble des méthodes nécessaires pour rendre se code simple, lisible et maintenable sans effort.</div>
<div>La sauvegarde est effectuée à partir d’une série d’objets racines, en général un seul, et parcours le graphe des objets en fonction de leur apparition dans les méthodes de sauvegarde. Chaque fois qu’un objet inconnu apparait, il est sauvegardé, il est ensuite référencé dans le reste du fichier. Cela correspond à un parcours en profondeur d’abord du graphe d’objets.</div>
<div class="note">
<span class="emphasis">Référence d’objet</span> Un objet, lorsqu’il est sauvegardé, est référencé par Boost. L’id qui lui est donnée un chiffre unique dans le fichier. Ce procédé interdit toute référence externe, puisque d’une sauvegarde à une autre cette référence à de grandes probabilités de changer. Ce mécanisme de référencement ne permet pas une sauvegarde multi-fichiers. Pour résoudre ce problème, le référencement doit être revu.</div>
<div>Si, il parait surprenant d’avoir à écrire du code pour sérialiser, alors que la plupart des autres techniques la proposent sans avoir à en écrire. Cette approche a pour avantages que le code de lecture/chargement est compilé et exécuté par la JVM qui l’optimise et que la gestion de version de fichiers et l’évolution des objets à sérialiser est simple à maintenir. Les performances sont alors optimales pour un effort minimal.</div>
<h4 class="title">Mise en oeuvre pour un flux simple</h4>
<div>La classe JBoost permet de lire et d'écrire au format boost dans un flux des objets primitifs. JBoost est une implementation de l'interface Boost.</div>
<div class="code">JBoost boost = new JBoost("SimpleTest", 1);</div>
<div>Pour écrire dans un fichier, il faut initialiser l'objet boost,</div>
<div class="code">boost.initializeWriting(new FileOutputStream("to/my/file.ext"));</div>
<div>puis écrire dedans.</div>
<div class="code">boost.initializeWriting(new FileOutputStream(file));</div>
<div class="code">boost.writeBoolean(true);</div>
<div class="code">boost.writeDouble(Math.PI);</div>
<div class="code">boost.writeString("Here is a ù string with \" strange things \' inside.");</div>
<div class="code">BoostUtil.writeIntArray(boost, new int[] { 0, 1, 2, 3, 4 });</div>
<div>L'écriture se termine par la fermeture de boost. Cette opération ferme le flux donné en paramètre de l'initialisation.</div>
<div class="code">boost.close(); </div>
<div>Pour relire, la procédure est similaire. Il faut initialiser l'objet boost,</div>
<div class="code">boost.initializeReading(new FileInputStream("to/my/file.ext"));</div>
<div>Puis relire les objets dans le même ordre, la sérialisation Boost est prédictive.</div>
<div class="code">System.out.println("Reading :");</div>
<div class="code">System.out.println("- " + boost.readBoolean());</div>
<div class="code">System.out.println("- " + boost.readDouble());</div>
<div class="code">System.out.println("- " + boost.readString());</div>
<div class="code">System.out.println("- " + Arrays.toString(BoostUtil.readIntArray(boost)));</div>
<div>Enfin, on ferme boost.</div>
<div class="code">boost.close(); </div>
<div>Exemple: BoostSimpleTest.</div>
<h4 class="title">Sérialiser un <span class="code">BoostObject</span>
</h4>
<div>Lorsque qu'une classe implémente l'interface BoostObject, ses instances peuvent être lus ou écrites dans un flux Boost. La classe doit aussi fournir un constructeur ayant un seul paramètre typé Boost pour que JBoost puisse créer une instance lors de la lecture. Ce constructeur doit exister, mais il peut être private ou protected.</div>
<div>Exemple: PersonV1.</div>
<div class="note">
<span class="emphasis">Enregistrer un objet</span> Dans l'exemple précédant, la première ligne du constructeur de Person1(Boost boost) est: <span class="code">boost.register(this);</span>. Cette instruction est indispensable et doit-être présente dans chaque constructeur Boost des BoostObject. Elle enregistre l'objet nouvellement créer dans le mécanisme de référencement afin de le rendre disponible pour les objets suivants.</div>
<div>En effet, cet enregistrement permet de résoudre les liens entre les objets. Si il n'est pas fait, certains liens seront cassés et il est peu probable que la lecture se termine correctement.</div>
<h4 class="title">Gestion de version de fichier</h4>
<div>Boost permet de gérer les versions de fichiers. Reprenons la création d'un objet JBoost:</div>
<div class="code">JBoost boost = new JBoost("SimpleTest", 1);</div>
<div>"SimpleTest" est le nom de format de fichier Boost, cela permet de différencier un fichier Boost d'un autre. 1 est la version du fichier, cela permet de différencier les versions.</div>
<div>Exemple: PersonV2.</div>
</div>
</div>
<div id="SuivitDesModifications">
<div id="SuivitDesModifications">
<h3 class="title">Suivit des modifications</h3>
<h4 class="title">Concept</h4>
<div>Basics propose des outils pour suivre les modifications d’un ensemble d’objets. Ce suivi permet d’effectuer les actions de annuler/refaire. La mise en place du suivit est simple et peu intrusif. Cependant, il apporte quelques contraintes sur le code des objets suivis. Un ChangeHandler permet de mettre en oeuvre ce mécanisme. Dans la suite de cette article, un modèle est un ensemble d'objets dont nous souhaitons suivre l'état.</div>
<div>Lors de la modification d’un modèle, le ChangeHandler sauvegarde les informations nécessaires pour être capable d’exécuter l’ordre inverse lors d’une annulation de la modification. Afin de rester simple, les informations enregistrées sont minimales, cela impose des heuristiques sur le prototype et le nom des méthodes d’accès des attributs des objets.</div>
<h4 class="title">Sauvegarder les changements</h4>
<div>Le ChangeHandler pour un modèle donné doit être unique. Chaque objet du modèle doit avoir accès au ChangeHandler. Le mécanisme pour le fournir est libre, par contre si l'accès y est impossible le fonctionnement du suivit deviendra hiératique. En effet, la gestion de ce mécanisme est sensible aux ratés, si il manque une information le modèle risque d'être inconsistant.</div>
<div>La mise en oeuvre d'un ChangeHandler sur un modèle est délicate au départ, mais avec un peu de rigueur le résultat est plus que satisfaisant.</div>
<h4 class="title">Heuristiques de nom de méthodes d’accès</h4>
<div>Les heuristiques utilisées par ChangeHandler sont simples et courantes dans le monde Java. Les méthodes d’accès à un attribut sont:</div>
<div>pour une cardinalité simple:</div>
<div class="code">set[nom de l’attribut au format CamelCase]([type de l’attribut]).</div>
<div>pour une table ou une liste:</div>
<div class="code">add[nom de l’attribut au format CamelCase](int, [type de l’attribut]) et</div>
<div>remove[nom de l’attribut au format CamelCase](int),</div>
<div>pour un dictionnaire:</div>
<div class="code">put[nom de l’attribut au format CamelCase]([type de la clé], [type de la valeur]) et</div>
<div class="code">remove[nom de l’attribut au format CamelCase]([type de la clé]).</div>
<div>Seules ces méthodes doivent être instrumentées pour sauvegarder les changements. Il est possible (même conseillé :) ) de fournir d'autres accesseurs. Cependant, ils devront impérativement appelés les accesseurs instrumentés. Les méthodes instrumentées peuvent être aussi bien publiques que privée.</div>
<div class="note">
<span class="emphasis">CamelCase</span> C'est un formatage de la case d'une suite de mot, par exemple 'toto fait du vélo' devient 'totoFaitDuVélo' ( Wikipedia).</div>
<div>Exemple pour un modèle simple: Person.</div>
<h4 class="title">Transactions</h4>
<div class="TODO"> Transactions</div>
</div>
</div>
</div>
</div>
</body>
</html>
|
documentation/test_python/content_parse_docstrings/content_parse_docstrings.Class.html | mosra/m.css | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>content_parse_docstrings.Class | My Python Project</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,400i,600,600i%7CSource+Code+Pro:400,400i,600" />
<link rel="stylesheet" href="m-dark+documentation.compiled.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>
<body>
<header><nav id="navigation">
<div class="m-container">
<div class="m-row">
<a href="index.html" id="m-navbar-brand" class="m-col-t-8 m-col-m-none m-left-m">My Python Project</a>
</div>
</div>
</nav></header>
<main><article>
<div class="m-container m-container-inflatable">
<div class="m-row">
<div class="m-col-l-10 m-push-l-1">
<h1>
<span class="m-breadcrumb"><a href="content_parse_docstrings.html">content_parse_docstrings</a>.<wbr/></span>Class <span class="m-thin">class</span>
</h1>
<p>This class has a <em>serious</em> docstring.
With a multi-line summary. Relative reference to <a class="m-doc" href="content_parse_docstrings.Class.html#a_property">a_property</a> works
even from a summary.</p>
<nav class="m-block m-default">
<h3>Contents</h3>
<ul>
<li>
Reference
<ul>
<li><a href="#properties">Properties</a></li>
</ul>
</li>
</ul>
</nav>
<p>And class <strong>details</strong> as well.</p>
<section id="properties">
<h2><a href="#properties">Properties</a></h2>
<dl class="m-doc">
<dt>
<a href="#a_property" class="m-doc">a_property</a>: float <span class="m-label m-flat m-warning">get</span>
</dt>
<dd>The <a class="m-doc" href="content_parse_docstrings.Class.html#a_property">a_property</a> has a <em>serious</em> docstring.</dd>
</dl>
</section>
<section>
<h2>Property documentation</h2>
<section class="m-doc-details" id="a_property"><div>
<h3>
content_parse_docstrings.<wbr />Class.<wbr /><a href="#a_property" class="m-doc-self">a_property</a>: float <span class="m-label m-flat m-warning">get</span>
</h3>
<p>The <a class="m-doc" href="content_parse_docstrings.Class.html#a_property">a_property</a> has a <em>serious</em> docstring.</p>
<p>And property <strong>details</strong> as well.</p>
</div></section>
</section>
</div>
</div>
</div>
</article></main>
</body>
</html>
|
doc/main/VNReader.html | BradleyCai/VN-RW | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_31) on Thu Jun 04 07:30:53 PDT 2015 -->
<title>VNReader</title>
<meta name="date" content="2015-06-04">
<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="VNReader";
}
}
catch(err) {
}
//-->
var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
var tableTab = "tableTab";
var activeTableTab = "activeTableTab";
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../main/package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/VNReader.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../deprecated-list.html">Deprecated</a></li>
<li><a href="../index-files/index-1.html">Index</a></li>
<li><a href="../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../main/VNMenu.html" title="class in main"><span class="typeNameLink">Prev Class</span></a></li>
<li><a href="../main/VNSound.html" title="class in main"><span class="typeNameLink">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../index.html?main/VNReader.html" target="_top">Frames</a></li>
<li><a href="VNReader.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li>Field | </li>
<li><a href="#constructor.summary">Constr</a> | </li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li><a href="#constructor.detail">Constr</a> | </li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">main</div>
<h2 title="Class VNReader" class="title">Class VNReader</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li>org.newdawn.slick.state.BasicGameState</li>
<li>
<ul class="inheritance">
<li>main.VNReader</li>
</ul>
</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Implemented Interfaces:</dt>
<dd>org.newdawn.slick.ControlledInputReciever, org.newdawn.slick.ControllerListener, org.newdawn.slick.InputListener, org.newdawn.slick.KeyListener, org.newdawn.slick.MouseListener, org.newdawn.slick.state.GameState</dd>
</dl>
<hr>
<br>
<pre>public class <span class="typeNameLabel">VNReader</span>
extends org.newdawn.slick.state.BasicGameState</pre>
<div class="block">Main reader for the VN. Will read the VNC and display the commands in there</div>
<dl>
<dt><span class="simpleTagLabel">Author:</span></dt>
<dd>Bradley</dd>
</dl>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor.summary">
<!-- -->
</a>
<h3>Constructor Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
<caption><span>Constructors</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../main/VNReader.html#VNReader-int-main.VNDir-">VNReader</a></span>(int state,
<a href="../main/VNDir.html" title="class in main">VNDir</a> dir)</code>
<div class="block">Starts off VNReader with path name information with VNDir and its state</div>
</td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method.summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd"> </span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd"> </span></span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr id="i0" class="altColor">
<td class="colFirst"><code>int</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../main/VNReader.html#getID--">getID</a></span>()</code>
<div class="block">Returns the state based ID</div>
</td>
</tr>
<tr id="i1" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../main/VNReader.html#init-org.newdawn.slick.GameContainer-org.newdawn.slick.state.StateBasedGame-">init</a></span>(org.newdawn.slick.GameContainer gc,
org.newdawn.slick.state.StateBasedGame sbg)</code>
<div class="block">Will initialize state</div>
</td>
</tr>
<tr id="i2" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../main/VNReader.html#mouseClicked-int-int-int-int-">mouseClicked</a></span>(int button,
int x,
int y,
int clickCount)</code>
<div class="block">Will check if mouse is clicked</div>
</td>
</tr>
<tr id="i3" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../main/VNReader.html#render-org.newdawn.slick.GameContainer-org.newdawn.slick.state.StateBasedGame-org.newdawn.slick.Graphics-">render</a></span>(org.newdawn.slick.GameContainer gc,
org.newdawn.slick.state.StateBasedGame sbg,
org.newdawn.slick.Graphics g)</code>
<div class="block">Stamps the graphics to the screen</div>
</td>
</tr>
<tr id="i4" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../main/VNReader.html#update-org.newdawn.slick.GameContainer-org.newdawn.slick.state.StateBasedGame-int-">update</a></span>(org.newdawn.slick.GameContainer gc,
org.newdawn.slick.state.StateBasedGame sbg,
int delta)</code>
<div class="block">Updates the game logic</div>
</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.org.newdawn.slick.state.BasicGameState">
<!-- -->
</a>
<h3>Methods inherited from class org.newdawn.slick.state.BasicGameState</h3>
<code>controllerButtonPressed, controllerButtonReleased, controllerDownPressed, controllerDownReleased, controllerLeftPressed, controllerLeftReleased, controllerRightPressed, controllerRightReleased, controllerUpPressed, controllerUpReleased, enter, inputEnded, inputStarted, isAcceptingInput, keyPressed, keyReleased, leave, mouseDragged, mouseMoved, mousePressed, mouseReleased, mouseWheelMoved, setInput</code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class java.lang.Object</h3>
<code>equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor.detail">
<!-- -->
</a>
<h3>Constructor Detail</h3>
<a name="VNReader-int-main.VNDir-">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>VNReader</h4>
<pre>public VNReader(int state,
<a href="../main/VNDir.html" title="class in main">VNDir</a> dir)</pre>
<div class="block">Starts off VNReader with path name information with VNDir and its state</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>state</code> - - State based game state</dd>
<dd><code>dir</code> - - VNDir to help guide directories</dd>
</dl>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method.detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="mouseClicked-int-int-int-int-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>mouseClicked</h4>
<pre>public void mouseClicked(int button,
int x,
int y,
int clickCount)</pre>
<div class="block">Will check if mouse is clicked</div>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code>mouseClicked</code> in interface <code>org.newdawn.slick.MouseListener</code></dd>
<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
<dd><code>mouseClicked</code> in class <code>org.newdawn.slick.state.BasicGameState</code></dd>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>button</code> - - mouse button</dd>
<dd><code>x</code> - - x</dd>
<dd><code>y</code> - - y</dd>
<dd><code>clickCount</code> - - How many times clicked</dd>
<dd><code>sbg</code> - - State based game to change modes</dd>
</dl>
</li>
</ul>
<a name="init-org.newdawn.slick.GameContainer-org.newdawn.slick.state.StateBasedGame-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>init</h4>
<pre>public void init(org.newdawn.slick.GameContainer gc,
org.newdawn.slick.state.StateBasedGame sbg)
throws org.newdawn.slick.SlickException</pre>
<div class="block">Will initialize state</div>
<dl>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code>org.newdawn.slick.SlickException</code></dd>
</dl>
</li>
</ul>
<a name="render-org.newdawn.slick.GameContainer-org.newdawn.slick.state.StateBasedGame-org.newdawn.slick.Graphics-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>render</h4>
<pre>public void render(org.newdawn.slick.GameContainer gc,
org.newdawn.slick.state.StateBasedGame sbg,
org.newdawn.slick.Graphics g)
throws org.newdawn.slick.SlickException</pre>
<div class="block">Stamps the graphics to the screen</div>
<dl>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code>org.newdawn.slick.SlickException</code></dd>
</dl>
</li>
</ul>
<a name="update-org.newdawn.slick.GameContainer-org.newdawn.slick.state.StateBasedGame-int-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>update</h4>
<pre>public void update(org.newdawn.slick.GameContainer gc,
org.newdawn.slick.state.StateBasedGame sbg,
int delta)
throws org.newdawn.slick.SlickException</pre>
<div class="block">Updates the game logic</div>
<dl>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code>org.newdawn.slick.SlickException</code></dd>
</dl>
</li>
</ul>
<a name="getID--">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>getID</h4>
<pre>public int getID()</pre>
<div class="block">Returns the state based ID</div>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code>getID</code> in interface <code>org.newdawn.slick.state.GameState</code></dd>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code>getID</code> in class <code>org.newdawn.slick.state.BasicGameState</code></dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>state based ID</dd>
</dl>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../main/package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/VNReader.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../deprecated-list.html">Deprecated</a></li>
<li><a href="../index-files/index-1.html">Index</a></li>
<li><a href="../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../main/VNMenu.html" title="class in main"><span class="typeNameLink">Prev Class</span></a></li>
<li><a href="../main/VNSound.html" title="class in main"><span class="typeNameLink">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../index.html?main/VNReader.html" target="_top">Frames</a></li>
<li><a href="VNReader.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li>Field | </li>
<li><a href="#constructor.summary">Constr</a> | </li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li><a href="#constructor.detail">Constr</a> | </li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>
|
OpenNI-Bin-Dev-MacOSX-v1.5.7.10/Documentation/html/classxn_1_1_map_meta_data.html | jeremywrnr/life-of-the-party | <!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.3.1"/>
<title>OpenNI 1.5.7: xn::MapMetaData Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="OpenNILogo.bmp"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">OpenNI 1.5.7
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.3.1 -->
<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="inherits.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="namespacexn.html">xn</a></li><li class="navelem"><a class="el" href="classxn_1_1_map_meta_data.html">MapMetaData</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> |
<a href="#pro-methods">Protected Member Functions</a> |
<a href="classxn_1_1_map_meta_data-members.html">List of all members</a> </div>
<div class="headertitle">
<div class="title">xn::MapMetaData Class Reference<div class="ingroups"><a class="el" href="group__cppref__meta__data.html">Meta-Data Objects (Frame Objects)</a></div></div> </div>
</div><!--header-->
<div class="contents">
<p><code>#include <<a class="el" href="_xn_cpp_wrapper_8h_source.html">XnCppWrapper.h</a>></code></p>
<div class="dynheader">
Inheritance diagram for xn::MapMetaData:</div>
<div class="dyncontent">
<div class="center"><img src="classxn_1_1_map_meta_data__inherit__graph.png" border="0" usemap="#xn_1_1_map_meta_data_inherit__map" alt="Inheritance graph"/></div>
<map name="xn_1_1_map_meta_data_inherit__map" id="xn_1_1_map_meta_data_inherit__map">
<area shape="rect" id="node5" href="classxn_1_1_depth_meta_data.html" title="xn::DepthMetaData" alt="" coords="5,155,152,181"/><area shape="rect" id="node7" href="classxn_1_1_image_meta_data.html" title="xn::ImageMetaData" alt="" coords="177,155,324,181"/><area shape="rect" id="node9" href="classxn_1_1_i_r_meta_data.html" title="xn::IRMetaData" alt="" coords="349,155,467,181"/><area shape="rect" id="node11" href="classxn_1_1_scene_meta_data.html" title="xn::SceneMetaData" alt="" coords="491,155,639,181"/><area shape="rect" id="node2" href="classxn_1_1_output_meta_data.html" title="xn::OutputMetaData" alt="" coords="253,5,405,32"/></map>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>
<table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr class="memitem:acaa4d4a6d9177f4407a9fd24d30835fa"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classxn_1_1_map_meta_data.html#acaa4d4a6d9177f4407a9fd24d30835fa">MapMetaData</a> (<a class="el" href="_xn_types_8h.html#a1353b63052b435e150ca0f652539b431">XnPixelFormat</a> format, const XnUInt8 **ppData)</td></tr>
<tr class="separator:acaa4d4a6d9177f4407a9fd24d30835fa"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a597e11801d9305dfa4c1f78ec249bf0a"><td class="memItemLeft" align="right" valign="top">XnUInt32 </td><td class="memItemRight" valign="bottom"><a class="el" href="classxn_1_1_map_meta_data.html#a597e11801d9305dfa4c1f78ec249bf0a">XRes</a> () const </td></tr>
<tr class="separator:a597e11801d9305dfa4c1f78ec249bf0a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a88773e165cbc69e091e87781ca43bdb7"><td class="memItemLeft" align="right" valign="top">XnUInt32 & </td><td class="memItemRight" valign="bottom"><a class="el" href="classxn_1_1_map_meta_data.html#a88773e165cbc69e091e87781ca43bdb7">XRes</a> ()</td></tr>
<tr class="separator:a88773e165cbc69e091e87781ca43bdb7"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4daff8222744af42afbb8114600967f9"><td class="memItemLeft" align="right" valign="top">XnUInt32 </td><td class="memItemRight" valign="bottom"><a class="el" href="classxn_1_1_map_meta_data.html#a4daff8222744af42afbb8114600967f9">YRes</a> () const </td></tr>
<tr class="separator:a4daff8222744af42afbb8114600967f9"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a59e8d198dada0c527436196592dc320c"><td class="memItemLeft" align="right" valign="top">XnUInt32 & </td><td class="memItemRight" valign="bottom"><a class="el" href="classxn_1_1_map_meta_data.html#a59e8d198dada0c527436196592dc320c">YRes</a> ()</td></tr>
<tr class="separator:a59e8d198dada0c527436196592dc320c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a67eeb509e4eeb845b65f0a9c60941080"><td class="memItemLeft" align="right" valign="top">XnUInt32 </td><td class="memItemRight" valign="bottom"><a class="el" href="classxn_1_1_map_meta_data.html#a67eeb509e4eeb845b65f0a9c60941080">XOffset</a> () const </td></tr>
<tr class="separator:a67eeb509e4eeb845b65f0a9c60941080"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8acd70349641f5e65efcbea469a6b1e2"><td class="memItemLeft" align="right" valign="top">XnUInt32 & </td><td class="memItemRight" valign="bottom"><a class="el" href="classxn_1_1_map_meta_data.html#a8acd70349641f5e65efcbea469a6b1e2">XOffset</a> ()</td></tr>
<tr class="separator:a8acd70349641f5e65efcbea469a6b1e2"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a61d2331614d071aa087376551ab161b9"><td class="memItemLeft" align="right" valign="top">XnUInt32 </td><td class="memItemRight" valign="bottom"><a class="el" href="classxn_1_1_map_meta_data.html#a61d2331614d071aa087376551ab161b9">YOffset</a> () const </td></tr>
<tr class="separator:a61d2331614d071aa087376551ab161b9"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:abed18a4840ea9d3627890911b285e8f5"><td class="memItemLeft" align="right" valign="top">XnUInt32 & </td><td class="memItemRight" valign="bottom"><a class="el" href="classxn_1_1_map_meta_data.html#abed18a4840ea9d3627890911b285e8f5">YOffset</a> ()</td></tr>
<tr class="separator:abed18a4840ea9d3627890911b285e8f5"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a02936294900df06cbe9661dd004af570"><td class="memItemLeft" align="right" valign="top">XnUInt32 </td><td class="memItemRight" valign="bottom"><a class="el" href="classxn_1_1_map_meta_data.html#a02936294900df06cbe9661dd004af570">FullXRes</a> () const </td></tr>
<tr class="separator:a02936294900df06cbe9661dd004af570"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aab0c5091d10a2bf27e2e6e6204888531"><td class="memItemLeft" align="right" valign="top">XnUInt32 & </td><td class="memItemRight" valign="bottom"><a class="el" href="classxn_1_1_map_meta_data.html#aab0c5091d10a2bf27e2e6e6204888531">FullXRes</a> ()</td></tr>
<tr class="separator:aab0c5091d10a2bf27e2e6e6204888531"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a864b583a263d8233cdfc5d29c609e62b"><td class="memItemLeft" align="right" valign="top">XnUInt32 </td><td class="memItemRight" valign="bottom"><a class="el" href="classxn_1_1_map_meta_data.html#a864b583a263d8233cdfc5d29c609e62b">FullYRes</a> () const </td></tr>
<tr class="separator:a864b583a263d8233cdfc5d29c609e62b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae087d7ea0aacda7854edea49b1419e4f"><td class="memItemLeft" align="right" valign="top">XnUInt32 & </td><td class="memItemRight" valign="bottom"><a class="el" href="classxn_1_1_map_meta_data.html#ae087d7ea0aacda7854edea49b1419e4f">FullYRes</a> ()</td></tr>
<tr class="separator:ae087d7ea0aacda7854edea49b1419e4f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a27e7229fa184e39859057b9cdc7c3989"><td class="memItemLeft" align="right" valign="top">XnUInt32 </td><td class="memItemRight" valign="bottom"><a class="el" href="classxn_1_1_map_meta_data.html#a27e7229fa184e39859057b9cdc7c3989">FPS</a> () const </td></tr>
<tr class="separator:a27e7229fa184e39859057b9cdc7c3989"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a417c9c08dffb07fc3694226dc402d0d4"><td class="memItemLeft" align="right" valign="top">XnUInt32 & </td><td class="memItemRight" valign="bottom"><a class="el" href="classxn_1_1_map_meta_data.html#a417c9c08dffb07fc3694226dc402d0d4">FPS</a> ()</td></tr>
<tr class="separator:a417c9c08dffb07fc3694226dc402d0d4"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a042e65c9b7717fd30dbfe0f71e8f1c07"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_xn_types_8h.html#a1353b63052b435e150ca0f652539b431">XnPixelFormat</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classxn_1_1_map_meta_data.html#a042e65c9b7717fd30dbfe0f71e8f1c07">PixelFormat</a> () const </td></tr>
<tr class="separator:a042e65c9b7717fd30dbfe0f71e8f1c07"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a868330b5de7741fc2384275557d1943e"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="struct_xn_map_meta_data.html">XnMapMetaData</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classxn_1_1_map_meta_data.html#a868330b5de7741fc2384275557d1943e">GetUnderlying</a> () const </td></tr>
<tr class="separator:a868330b5de7741fc2384275557d1943e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a89c978c2fec3d32165e82e90ec4419ad"><td class="memItemLeft" align="right" valign="top"><a class="el" href="struct_xn_map_meta_data.html">XnMapMetaData</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classxn_1_1_map_meta_data.html#a89c978c2fec3d32165e82e90ec4419ad">GetUnderlying</a> ()</td></tr>
<tr class="separator:a89c978c2fec3d32165e82e90ec4419ad"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4a406104fae68924009a7adbccd27b2f"><td class="memItemLeft" align="right" valign="top">XnUInt32 </td><td class="memItemRight" valign="bottom"><a class="el" href="classxn_1_1_map_meta_data.html#a4a406104fae68924009a7adbccd27b2f">BytesPerPixel</a> () const </td></tr>
<tr class="separator:a4a406104fae68924009a7adbccd27b2f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a692ae5e21bf4e9f4f7322f1207996ae1"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_xn_status_8h.html#a23967099202ddb640cd2044b3808253c">XnStatus</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classxn_1_1_map_meta_data.html#a692ae5e21bf4e9f4f7322f1207996ae1">AllocateData</a> (XnUInt32 nXRes, XnUInt32 nYRes)</td></tr>
<tr class="separator:a692ae5e21bf4e9f4f7322f1207996ae1"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a147e0d22c4d92a4915706d53914ac3ac"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_xn_status_8h.html#a23967099202ddb640cd2044b3808253c">XnStatus</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classxn_1_1_map_meta_data.html#a147e0d22c4d92a4915706d53914ac3ac">ReAdjust</a> (XnUInt32 nXRes, XnUInt32 nYRes, const XnUInt8 *pExternalBuffer)</td></tr>
<tr class="separator:a147e0d22c4d92a4915706d53914ac3ac"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_methods_classxn_1_1_output_meta_data"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classxn_1_1_output_meta_data')"><img src="closed.png" alt="-"/> Public Member Functions inherited from <a class="el" href="classxn_1_1_output_meta_data.html">xn::OutputMetaData</a></td></tr>
<tr class="memitem:a82bedc38dc7ea8d42de24d54ba4f3634 inherit pub_methods_classxn_1_1_output_meta_data"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classxn_1_1_output_meta_data.html#a82bedc38dc7ea8d42de24d54ba4f3634">OutputMetaData</a> (const XnUInt8 **ppData)</td></tr>
<tr class="separator:a82bedc38dc7ea8d42de24d54ba4f3634 inherit pub_methods_classxn_1_1_output_meta_data"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3cd35071f471fd8969a4877900375fd8 inherit pub_methods_classxn_1_1_output_meta_data"><td class="memItemLeft" align="right" valign="top">virtual </td><td class="memItemRight" valign="bottom"><a class="el" href="classxn_1_1_output_meta_data.html#a3cd35071f471fd8969a4877900375fd8">~OutputMetaData</a> ()</td></tr>
<tr class="separator:a3cd35071f471fd8969a4877900375fd8 inherit pub_methods_classxn_1_1_output_meta_data"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a75a74a9408b517cc75461e29905886a3 inherit pub_methods_classxn_1_1_output_meta_data"><td class="memItemLeft" align="right" valign="top">XnUInt64 </td><td class="memItemRight" valign="bottom"><a class="el" href="classxn_1_1_output_meta_data.html#a75a74a9408b517cc75461e29905886a3">Timestamp</a> () const </td></tr>
<tr class="separator:a75a74a9408b517cc75461e29905886a3 inherit pub_methods_classxn_1_1_output_meta_data"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2f0c86efbdc6cb6bf589b3dedc5bfc99 inherit pub_methods_classxn_1_1_output_meta_data"><td class="memItemLeft" align="right" valign="top">XnUInt64 & </td><td class="memItemRight" valign="bottom"><a class="el" href="classxn_1_1_output_meta_data.html#a2f0c86efbdc6cb6bf589b3dedc5bfc99">Timestamp</a> ()</td></tr>
<tr class="separator:a2f0c86efbdc6cb6bf589b3dedc5bfc99 inherit pub_methods_classxn_1_1_output_meta_data"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a044fe14926c6cb478e680e2a0cfb9d96 inherit pub_methods_classxn_1_1_output_meta_data"><td class="memItemLeft" align="right" valign="top">XnUInt32 </td><td class="memItemRight" valign="bottom"><a class="el" href="classxn_1_1_output_meta_data.html#a044fe14926c6cb478e680e2a0cfb9d96">FrameID</a> () const </td></tr>
<tr class="separator:a044fe14926c6cb478e680e2a0cfb9d96 inherit pub_methods_classxn_1_1_output_meta_data"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9f1b71bee803673f2330511a64bafe05 inherit pub_methods_classxn_1_1_output_meta_data"><td class="memItemLeft" align="right" valign="top">XnUInt32 & </td><td class="memItemRight" valign="bottom"><a class="el" href="classxn_1_1_output_meta_data.html#a9f1b71bee803673f2330511a64bafe05">FrameID</a> ()</td></tr>
<tr class="separator:a9f1b71bee803673f2330511a64bafe05 inherit pub_methods_classxn_1_1_output_meta_data"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:adfd08316c0f65641f6255e36a8c7ebe3 inherit pub_methods_classxn_1_1_output_meta_data"><td class="memItemLeft" align="right" valign="top">XnUInt32 </td><td class="memItemRight" valign="bottom"><a class="el" href="classxn_1_1_output_meta_data.html#adfd08316c0f65641f6255e36a8c7ebe3">DataSize</a> () const </td></tr>
<tr class="separator:adfd08316c0f65641f6255e36a8c7ebe3 inherit pub_methods_classxn_1_1_output_meta_data"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6a56e7563f713a832050659ca1da0099 inherit pub_methods_classxn_1_1_output_meta_data"><td class="memItemLeft" align="right" valign="top">XnUInt32 & </td><td class="memItemRight" valign="bottom"><a class="el" href="classxn_1_1_output_meta_data.html#a6a56e7563f713a832050659ca1da0099">DataSize</a> ()</td></tr>
<tr class="separator:a6a56e7563f713a832050659ca1da0099 inherit pub_methods_classxn_1_1_output_meta_data"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a43a8eaa0d2747802564e81de0ba7450a inherit pub_methods_classxn_1_1_output_meta_data"><td class="memItemLeft" align="right" valign="top">XnBool </td><td class="memItemRight" valign="bottom"><a class="el" href="classxn_1_1_output_meta_data.html#a43a8eaa0d2747802564e81de0ba7450a">IsDataNew</a> () const </td></tr>
<tr class="separator:a43a8eaa0d2747802564e81de0ba7450a inherit pub_methods_classxn_1_1_output_meta_data"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af2e76ab3e3998d54bb101da983951eb3 inherit pub_methods_classxn_1_1_output_meta_data"><td class="memItemLeft" align="right" valign="top">XnBool & </td><td class="memItemRight" valign="bottom"><a class="el" href="classxn_1_1_output_meta_data.html#af2e76ab3e3998d54bb101da983951eb3">IsDataNew</a> ()</td></tr>
<tr class="separator:af2e76ab3e3998d54bb101da983951eb3 inherit pub_methods_classxn_1_1_output_meta_data"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a16546b1745af152785c6404c238bde4d inherit pub_methods_classxn_1_1_output_meta_data"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="struct_xn_output_meta_data.html">XnOutputMetaData</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classxn_1_1_output_meta_data.html#a16546b1745af152785c6404c238bde4d">GetUnderlying</a> () const </td></tr>
<tr class="separator:a16546b1745af152785c6404c238bde4d inherit pub_methods_classxn_1_1_output_meta_data"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a20065ef9603d265cb494031ee5600725 inherit pub_methods_classxn_1_1_output_meta_data"><td class="memItemLeft" align="right" valign="top"><a class="el" href="struct_xn_output_meta_data.html">XnOutputMetaData</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classxn_1_1_output_meta_data.html#a20065ef9603d265cb494031ee5600725">GetUnderlying</a> ()</td></tr>
<tr class="separator:a20065ef9603d265cb494031ee5600725 inherit pub_methods_classxn_1_1_output_meta_data"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4799c73efd2c56810ef153d0b9daf08f inherit pub_methods_classxn_1_1_output_meta_data"><td class="memItemLeft" align="right" valign="top">const XnUInt8 * </td><td class="memItemRight" valign="bottom"><a class="el" href="classxn_1_1_output_meta_data.html#a4799c73efd2c56810ef153d0b9daf08f">Data</a> () const </td></tr>
<tr class="separator:a4799c73efd2c56810ef153d0b9daf08f inherit pub_methods_classxn_1_1_output_meta_data"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3dc4bdaf58ce7b4600b8116abb295e4b inherit pub_methods_classxn_1_1_output_meta_data"><td class="memItemLeft" align="right" valign="top">const XnUInt8 *& </td><td class="memItemRight" valign="bottom"><a class="el" href="classxn_1_1_output_meta_data.html#a3dc4bdaf58ce7b4600b8116abb295e4b">Data</a> ()</td></tr>
<tr class="separator:a3dc4bdaf58ce7b4600b8116abb295e4b inherit pub_methods_classxn_1_1_output_meta_data"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8be895e3c2507e933891aaf4dc320aee inherit pub_methods_classxn_1_1_output_meta_data"><td class="memItemLeft" align="right" valign="top">XnUInt8 * </td><td class="memItemRight" valign="bottom"><a class="el" href="classxn_1_1_output_meta_data.html#a8be895e3c2507e933891aaf4dc320aee">WritableData</a> ()</td></tr>
<tr class="separator:a8be895e3c2507e933891aaf4dc320aee inherit pub_methods_classxn_1_1_output_meta_data"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a62c3847520da5bb1c27a139ec8d62e7f inherit pub_methods_classxn_1_1_output_meta_data"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_xn_status_8h.html#a23967099202ddb640cd2044b3808253c">XnStatus</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classxn_1_1_output_meta_data.html#a62c3847520da5bb1c27a139ec8d62e7f">AllocateData</a> (XnUInt32 nBytes)</td></tr>
<tr class="separator:a62c3847520da5bb1c27a139ec8d62e7f inherit pub_methods_classxn_1_1_output_meta_data"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1d7e6b42255e29c44547bb1c0f1c337a inherit pub_methods_classxn_1_1_output_meta_data"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classxn_1_1_output_meta_data.html#a1d7e6b42255e29c44547bb1c0f1c337a">Free</a> ()</td></tr>
<tr class="separator:a1d7e6b42255e29c44547bb1c0f1c337a inherit pub_methods_classxn_1_1_output_meta_data"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a70d17b28fc0127d0ac10b6dc58942e97 inherit pub_methods_classxn_1_1_output_meta_data"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_xn_status_8h.html#a23967099202ddb640cd2044b3808253c">XnStatus</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classxn_1_1_output_meta_data.html#a70d17b28fc0127d0ac10b6dc58942e97">MakeDataWritable</a> ()</td></tr>
<tr class="separator:a70d17b28fc0127d0ac10b6dc58942e97 inherit pub_methods_classxn_1_1_output_meta_data"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pro-methods"></a>
Protected Member Functions</h2></td></tr>
<tr class="memitem:afb6b8729277c98b2206940ad0a4546fa"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_xn_types_8h.html#a1353b63052b435e150ca0f652539b431">XnPixelFormat</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classxn_1_1_map_meta_data.html#afb6b8729277c98b2206940ad0a4546fa">PixelFormatImpl</a> ()</td></tr>
<tr class="separator:afb6b8729277c98b2206940ad0a4546fa"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="inherited"></a>
Additional Inherited Members</h2></td></tr>
<tr class="inherit_header pro_attribs_classxn_1_1_output_meta_data"><td colspan="2" onclick="javascript:toggleInherit('pro_attribs_classxn_1_1_output_meta_data')"><img src="closed.png" alt="-"/> Protected Attributes inherited from <a class="el" href="classxn_1_1_output_meta_data.html">xn::OutputMetaData</a></td></tr>
<tr class="memitem:a0ec75e849f54f8e8806cc7854a0d25bf inherit pro_attribs_classxn_1_1_output_meta_data"><td class="memItemLeft" align="right" valign="top">XnUInt8 * </td><td class="memItemRight" valign="bottom"><a class="el" href="classxn_1_1_output_meta_data.html#a0ec75e849f54f8e8806cc7854a0d25bf">m_pAllocatedData</a></td></tr>
<tr class="separator:a0ec75e849f54f8e8806cc7854a0d25bf inherit pro_attribs_classxn_1_1_output_meta_data"><td class="memSeparator" colspan="2"> </td></tr>
</table>
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
<div class="textblock"><p>The <a class="el" href="classxn_1_1_map_meta_data.html">MapMetaData</a> class is a base class for providing the fast data access functionality for the <a class="el" href="glossary.html#glos_frame_object">frame object</a> saved in metadata. This functionality is applicable to all generator nodes that have an associated metadata object.</p>
<p><a class="el" href="classxn_1_1_map_meta_data.html">MapMetaData</a> is the next metadata class in the metadata hierarchy after the <a class="el" href="classxn_1_1_output_meta_data.html">OutputMetaData</a> class.</p>
<p>The <a class="el" href="classxn_1_1_map_meta_data.html">MapMetaData</a> class - like <a class="el" href="classxn_1_1_output_meta_data.html">OutputMetaData</a> - is never instantiated; it is a base class of the OpenNI metadata class hierarchy. </p>
</div><h2 class="groupheader">Constructor & Destructor Documentation</h2>
<a class="anchor" id="acaa4d4a6d9177f4407a9fd24d30835fa"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">xn::MapMetaData::MapMetaData </td>
<td>(</td>
<td class="paramtype"><a class="el" href="_xn_types_8h.html#a1353b63052b435e150ca0f652539b431">XnPixelFormat</a> </td>
<td class="paramname"><em>format</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const XnUInt8 ** </td>
<td class="paramname"><em>ppData</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>Ctor. Intended for use by inheriting classes.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramdir">[in]</td><td class="paramname">format</td><td>Pixel Format </td></tr>
<tr><td class="paramdir">[in]</td><td class="paramname">ppData</td><td>A pointer to the data member of the meta data object </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<h2 class="groupheader">Member Function Documentation</h2>
<a class="anchor" id="a692ae5e21bf4e9f4f7322f1207996ae1"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="_xn_status_8h.html#a23967099202ddb640cd2044b3808253c">XnStatus</a> xn::MapMetaData::AllocateData </td>
<td>(</td>
<td class="paramtype">XnUInt32 </td>
<td class="paramname"><em>nXRes</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">XnUInt32 </td>
<td class="paramname"><em>nYRes</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>Allocates a writable buffer. If a previous buffer was allocated it will be freed (or reused if possible). </p>
</div>
</div>
<a class="anchor" id="a4a406104fae68924009a7adbccd27b2f"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">XnUInt32 xn::MapMetaData::BytesPerPixel </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</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>Gets the number of bytes each pixel occupies. </p>
</div>
</div>
<a class="anchor" id="a27e7229fa184e39859057b9cdc7c3989"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">XnUInt32 xn::MapMetaData::FPS </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</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>Gets the FPS in which frame was generated. </p>
</div>
</div>
<a class="anchor" id="a417c9c08dffb07fc3694226dc402d0d4"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">XnUInt32& xn::MapMetaData::FPS </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Gets the FPS in which frame was generated. </p>
</div>
</div>
<a class="anchor" id="a02936294900df06cbe9661dd004af570"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">XnUInt32 xn::MapMetaData::FullXRes </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</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>Gets the number of columns in the full frame (entire field-of-view, ignoring cropping). </p>
</div>
</div>
<a class="anchor" id="aab0c5091d10a2bf27e2e6e6204888531"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">XnUInt32& xn::MapMetaData::FullXRes </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Gets the number of columns in the full frame (entire field-of-view, ignoring cropping). </p>
</div>
</div>
<a class="anchor" id="a864b583a263d8233cdfc5d29c609e62b"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">XnUInt32 xn::MapMetaData::FullYRes </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</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>Gets the number of rows in the full frame (entire field-of-view, ignoring cropping). </p>
</div>
</div>
<a class="anchor" id="ae087d7ea0aacda7854edea49b1419e4f"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">XnUInt32& xn::MapMetaData::FullYRes </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Gets the number of rows in the full frame (entire field-of-view, ignoring cropping). </p>
</div>
</div>
<a class="anchor" id="a868330b5de7741fc2384275557d1943e"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">const <a class="el" href="struct_xn_map_meta_data.html">XnMapMetaData</a>* xn::MapMetaData::GetUnderlying </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</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>Gets the C object that is wrapped by this object. </p>
</div>
</div>
<a class="anchor" id="a89c978c2fec3d32165e82e90ec4419ad"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="struct_xn_map_meta_data.html">XnMapMetaData</a>* xn::MapMetaData::GetUnderlying </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Gets the C object that is wrapped by this object. </p>
</div>
</div>
<a class="anchor" id="a042e65c9b7717fd30dbfe0f71e8f1c07"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="_xn_types_8h.html#a1353b63052b435e150ca0f652539b431">XnPixelFormat</a> xn::MapMetaData::PixelFormat </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</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>Gets the pixel format of the pixel-map. </p>
</div>
</div>
<a class="anchor" id="afb6b8729277c98b2206940ad0a4546fa"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="_xn_types_8h.html#a1353b63052b435e150ca0f652539b431">XnPixelFormat</a>& xn::MapMetaData::PixelFormatImpl </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span><span class="mlabel">protected</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="a147e0d22c4d92a4915706d53914ac3ac"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="_xn_status_8h.html#a23967099202ddb640cd2044b3808253c">XnStatus</a> xn::MapMetaData::ReAdjust </td>
<td>(</td>
<td class="paramtype">XnUInt32 </td>
<td class="paramname"><em>nXRes</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">XnUInt32 </td>
<td class="paramname"><em>nYRes</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const XnUInt8 * </td>
<td class="paramname"><em>pExternalBuffer</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>Changes dimensions of the pixel-map.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramdir">[in]</td><td class="paramname">nXRes</td><td>Number of columns in the map </td></tr>
<tr><td class="paramdir">[in]</td><td class="paramname">nYRes</td><td>Number of rows in the map </td></tr>
<tr><td class="paramdir">[in]</td><td class="paramname">pExternalBuffer</td><td>Optional. An external buffer to be used. If NULL is passed, a buffer will be allocated. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a67eeb509e4eeb845b65f0a9c60941080"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">XnUInt32 xn::MapMetaData::XOffset </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</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>Gets the cropping area X offset of the <a class="el" href="glossary.html#glos_frame_object">frame object</a> saved in this object. This is the horizontal offset, measured in units of pixel columns, of the buffer within the field of view.</p>
<p><b>Remarks</b></p>
<p>The X offset is 0 if cropping is disabled (see <a class="el" href="struct_xn_cropping.html">XnCropping</a>). </p>
</div>
</div>
<a class="anchor" id="a8acd70349641f5e65efcbea469a6b1e2"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">XnUInt32& xn::MapMetaData::XOffset </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Gets the cropping area X offset of the <a class="el" href="glossary.html#glos_frame_object">frame object</a> saved in this object. This is the horizontal offset, measured in units of pixel columns, of the buffer within the field of view.</p>
<p><b>Remarks</b></p>
<p>The X offset is 0 if cropping is disabled (see <a class="el" href="struct_xn_cropping.html">XnCropping</a>). </p>
</div>
</div>
<a class="anchor" id="a597e11801d9305dfa4c1f78ec249bf0a"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">XnUInt32 xn::MapMetaData::XRes </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</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>Gets the frame X resolution of the <a class="el" href="glossary.html#glos_frame_object">frame object</a> saved in this object. The X resolution is the actual number of columns in the frame after any required cropping has been applied. </p>
</div>
</div>
<a class="anchor" id="a88773e165cbc69e091e87781ca43bdb7"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">XnUInt32& xn::MapMetaData::XRes </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Gets the frame X resolution of the <a class="el" href="glossary.html#glos_frame_object">frame object</a> saved in this object. The X resolution is the actual number of columns in the frame after any required cropping has been applied. </p>
</div>
</div>
<a class="anchor" id="a61d2331614d071aa087376551ab161b9"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">XnUInt32 xn::MapMetaData::YOffset </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</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>Gets the cropping area Y offset of the <a class="el" href="glossary.html#glos_frame_object">frame object</a> saved in this object. This is the vertical offset, measured in units of pixel rows, of the buffer within the field of view.</p>
<p><b>Remarks</b></p>
<p>The Y offset is 0 if cropping is disabled (see <a class="el" href="struct_xn_cropping.html">XnCropping</a>). </p>
</div>
</div>
<a class="anchor" id="abed18a4840ea9d3627890911b285e8f5"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">XnUInt32& xn::MapMetaData::YOffset </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Gets the cropping area Y offset of the <a class="el" href="glossary.html#glos_frame_object">frame object</a> saved in this object. This is the vertical offset, measured in units of pixel rows, of the buffer within the field of view.</p>
<p><b>Remarks</b></p>
<p>The Y offset is 0 if cropping is disabled (see <a class="el" href="struct_xn_cropping.html">XnCropping</a>). </p>
</div>
</div>
<a class="anchor" id="a4daff8222744af42afbb8114600967f9"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">XnUInt32 xn::MapMetaData::YRes </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</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>Gets the frame Y resolution of the <a class="el" href="glossary.html#glos_frame_object">frame object</a> saved in this object. The Y resolution is the actual number of rows in the frame after any required cropping has been applied. </p>
</div>
</div>
<a class="anchor" id="a59e8d198dada0c527436196592dc320c"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">XnUInt32& xn::MapMetaData::YRes </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Gets the frame Y resolution of the <a class="el" href="glossary.html#glos_frame_object">frame object</a> saved in this object. The Y resolution is the actual number of rows in the frame after any required cropping has been applied. </p>
</div>
</div>
<hr/>The documentation for this class was generated from the following file:<ul>
<li><a class="el" href="_xn_cpp_wrapper_8h_source.html">XnCppWrapper.h</a></li>
</ul>
</div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Tue Nov 12 2013 13:40:22 for OpenNI 1.5.7 by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.3.1
</small></address>
</body>
</html>
|
wp-content/plugins/page-builder-sandwich/page_builder_sandwich/css/editor.css | michaelbontyes/ekogito | .pbs-editing[data-name="main-content"] [data-shortcode]:hover {
cursor: -webkit-grab;
cursor: grab;
}
body .ce-element--focused:not(pre) {
background-color: rgba(150, 150, 150, 0.06);
}
body .ce-element--focused:not(pre):before {
display: none !important;
}
body .ct-widget.ct-inspector {
display: none !important;
}
body .ce-element--over:not(.ce-element--drop):not(.ce-element--focused),
body .pbs-editing[data-name="main-content"] [data-shortcode]:hover {
position: relative;
}
.pbs-row.ce-element--dragging {
z-index: 1;
}
.ce-element--dragging {
z-index: 1;
}
/************************************************************************************************
* Dragging on the top/bottom of the column turns it to drop before/after the parent row.
************************************************************************************************/
/************************************************************************************************
* Dragging on the left most side of the 1st column turns it into a ROW drag handle.
************************************************************************************************/
/************************************************************
* Override img display block by ContentTools.
************************************************************/
.ce-element--type-image,
[data-base="caption"] {
z-index: 2;
}
.ce-element--focused.ce-element--type-image,
.ce-element--focused.ce-element--type-video,
.ce-element--over.ce-element--type-image,
.ce-element--over.ce-element--type-video {
outline: none;
background: transparent !important;
}
.ce-element--type-icon.ce-element--focused,
.ce-element--type-icon.ce-element--over {
outline: none !important;
}
/************************************************************
* Change the behavior of tool tooltips to show right away
************************************************************/
.ct-widget .ct-tool[data-tooltip]:after {
padding: 5px 10px !important;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
width: auto;
background: rgba(51, 51, 51, 0.7);
padding: 1px 8px;
border-radius: 3px;
bottom: auto;
transform: scale(0.8) translateX(-50%) translateY(-20%);
opacity: 0;
transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
transform-origin: left;
pointer-events: none;
z-index: 5 !important;
position: absolute;
white-space: nowrap;
text-transform: uppercase;
font-size: 12px !important;
margin: 0 0 0 18px;
}
.ct-widget .ct-tool[data-tooltip]:hover:after {
transform: scale(1) translateX(-50%);
opacity: 1;
}
.ct-widget .ct-tool.ct-tool--color:after {
top: 41px !important;
}
.ct-widget .ct-tool.ct-tool--paragraph-picker:after {
margin-left: 54.5px;
}
.ct-widget .ct-tool-heading:after,
.pbs-option-inline:after,
.pbs-border:after,
.pbs-margins-and-paddings:after {
display: none !important;
}
/************************************************************
* Adjust the link popup location because of the dock
************************************************************/
.pbs-inspector-docked-left .ct-widget.ct-anchored-dialog {
margin-left: calc(-144px - 288px);
}
.ct-widget.ct-anchored-dialog {
margin-top: calc(-48px - 32px);
}
/************************************************************
* Remove the dark background on images & video on hover.
************************************************************/
.pbs-size-indicator {
z-index: 9999;
position: absolute;
background: #5CC4B8;
color: #fff;
font-size: 12px;
line-height: 24px;
padding: 1px 8px;
font-weight: bold;
border-radius: 3px;
transform: translateX(-100%) translateX(-3px);
margin: -29px 0 0 0;
}
.ce-drag-helper {
margin-top: -76px;
pointer-events: none !important;
}
.pbs-drop-indicator {
z-index: 999;
position: absolute;
pointer-events: none;
background: rgba(92, 196, 184, 0.4);
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}
.pbs-drop-indicator:before {
pointer-events: none;
content: "\EA68";
font-family: pbs;
font-size: 40px;
color: #fff;
left: 50%;
top: 50%;
transform: translateX(-50%) translateY(-50%);
position: absolute;
background: rgba(92, 196, 184, 0.7);
height: 50px;
width: 50px;
text-align: center;
line-height: 50px;
border-radius: 100%;
transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.pbs-drop-indicator.pbs-drop-indicator-small:before {
height: 20px;
width: 20px;
line-height: 20px;
font-size: 18px;
}
.pbs-drop-indicator.pbs-drop-indicator-below:before {
transform: translateX(-50%) translateY(-50%) rotate(180deg);
}
.pbs-drop-indicator > span {
position: absolute;
text-align: center;
font-size: 10px;
line-height: 11px;
text-transform: uppercase;
color: #fff;
font-weight: bold;
height: 11px;
pointer-events: none;
background: #5CC4B8;
width: 100%;
transform: scaleY(0.1);
transition: transform .3s, opacity .3s;
opacity: 0;
}
.pbs-drop-indicator > span:nth-child(1) {
top: -11px;
transform-origin: bottom;
}
.pbs-drop-indicator > span:nth-child(2) {
bottom: -11px;
transform-origin: top;
}
.pbs-drop-indicator.pbs-drop-indicator-show.pbs-drop-indicator-above > span:nth-child(1) {
transform: scaleY(1);
opacity: 1;
}
.pbs-drop-indicator.pbs-drop-indicator-show.pbs-drop-indicator-below > span:nth-child(2) {
transform: scaleY(1);
opacity: 1;
}
.ce-element--dragging.ce-element--over {
cursor: no-drop;
}
.ce-drag-helper {
width: 70px;
height: 70px;
border-radius: 100%;
background-color: #F37369;
box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
box-sizing: border-box;
opacity: 0;
transform: scale(0.7);
transition: opacity 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.ce-drag-helper:before {
top: 0;
left: 0;
right: auto;
background: rgba(243, 115, 105, 0.7);
font-size: 9px;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
font-weight: bold;
text-transform: uppercase;
z-index: 1;
height: 70px;
display: -ms-flexbox;
display: flex;
-ms-flex-direction: row;
flex-direction: row;
-ms-flex-align: center;
align-items: center;
-ms-flex-pack: center;
justify-content: center;
line-height: 12px;
width: 70px;
text-align: center;
padding: 0;
}
.ce-drag-helper:after {
background-image: linear-gradient(rgba(255, 255, 255, 0), #F37369 66%);
}
.ce-drag-helper.pbs-drag-helper-show {
opacity: 1;
transform: scale(1);
}
.pbs-row,
.pbs-col {
outline: none !important;
}
.pbs-col.ce-element--dragging {
z-index: 1 !important;
}
.pbs-row.ce-element--over,
.pbs-col.ce-element--over {
cursor: -webkit-grab;
cursor: grab;
}
/************************************************
* Outline highlighter (hold down shift key).
************************************************/
body.ce--dragging .pbs-col > .ce-element--empty:first-child:last-child {
height: 100%;
}
.ce-element--empty.ce-element--type-text:before {
content: attr(data-placeholder);
color: rgba(0, 0, 0, 0.2);
}
.pbs-editing[data-name="main-content"] [data-ce-tag="embed"] {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
cursor: pointer;
}
.pbs-editing[data-name="main-content"] [data-ce-tag="embed"] * {
pointer-events: none;
}
.pbs-editing[data-name="main-content"] [data-ce-tag="embed"].pbs--rendering {
opacity: .4;
background-color: rgba(82, 179, 217, 0.3);
pointer-events: none;
position: relative;
overflow: hidden;
height: 150px;
}
.pbs-editing[data-name="main-content"] [data-ce-tag="embed"].pbs--rendering:before {
content: "\f499";
font-family: "dashicons";
font-size: 40px;
line-height: 40px;
position: absolute;
top: 50%;
margin-top: -20px;
color: #333;
left: 50%;
margin-left: -20px;
}
.pbs-editing[data-name="main-content"] [data-shortcode] * {
pointer-events: none;
}
.pbs-editing[data-name="main-content"] [data-shortcode] > * {
float: none !important;
}
.pbs-editing[data-name="main-content"] .pbs--rendering {
opacity: .6;
background-color: rgba(82, 179, 217, 0.3);
pointer-events: none;
}
.pbs-editing[data-name="main-content"] [data-ce-tag="shortcode"] {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.pbs-editing[data-name="main-content"] .pbs--rendering[data-ce-tag="shortcode"],
.pbs-editing[data-name="main-content"] [data-ce-tag="shortcode"]:empty,
.pbs-editing[data-name="main-content"] .pbs--blank[data-ce-tag="shortcode"] {
min-height: 50px;
border: 2px dashed #f0f0f0;
position: relative;
background: rgba(240, 240, 240, 0.8);
}
.pbs-editing[data-name="main-content"] .pbs--rendering[data-ce-tag="shortcode"]:after,
.pbs-editing[data-name="main-content"] [data-ce-tag="shortcode"]:empty:after,
.pbs-editing[data-name="main-content"] .pbs--blank[data-ce-tag="shortcode"]:after {
content: "[" attr(data-base) "] is empty or needs a page refresh";
display: block;
top: 50%;
position: absolute;
transform: translateY(-50%);
font-size: .8em;
font-style: italic;
color: #555;
left: 0;
right: 0;
text-align: center;
}
.pbs-editing[data-name="main-content"] .pbs--rendering[data-ce-tag="shortcode"]:after {
content: "[" attr(data-base) "]";
}
.pbs-modal-frame.pbs-shortcode-modal .pbs-search-list > * {
width: calc(33% - 2px);
position: relative;
}
.pbs-modal-frame.pbs-shortcode-modal .pbs-search-list > *.pbs-has-owner-image {
padding-left: 90px !important;
min-height: 90px;
}
.pbs-modal-frame.pbs-shortcode-modal .pbs-search-list-frame .pbs-search-list h4 {
text-transform: capitalize;
line-height: 1em !important;
margin-bottom: 5px !important;
}
.pbs-modal-frame.pbs-shortcode-modal .pbs-search-list-frame .pbs-search-list p.pbs-shortcode-owner {
font-size: 11px !important;
color: #2C82C9 !important;
line-height: 1em !important;
margin-top: 5px !important;
opacity: .8;
}
.pbs-modal-frame.pbs-shortcode-modal .pbs-shortcode-owner-image {
position: absolute;
left: 20px;
display: block;
background-image: url(../assets/element-icons/shortcode_single.svg);
background-size: cover;
background-position: center;
height: 50px;
top: 20px;
border-radius: 100%;
width: 50px;
}
#wpadminbar #wp-admin-bar-gambit_builder_edit .ab-icon:before {
top: 2px;
}
#wpadminbar .pbs-adminbar-right {
float: right;
}
[dir="rtl"] #wpadminbar .pbs-adminbar-right {
float: left;
}
#wp-admin-bar-gambit_builder_edit .ab-item .ab-icon:before {
content: "\ea2d";
font-family: pbs !important;
}
html.pbs-editing #wpadminbar.ct-widget--active {
background: #303135;
}
html.pbs-editing #wpadminbar.ct-widget--active .ab-item,
html.pbs-editing #wpadminbar.ct-widget--active #pbs-save-button * {
padding: 0 14px;
font-size: 10px !important;
text-transform: uppercase;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-moz-font-feature-settings: "liga" on;
}
html.pbs-editing #wpadminbar.ct-widget--active .pbs-adminbar-icon .ab-item {
color: #ccc;
}
html.pbs-editing #wpadminbar.ct-widget--active .pbs-adminbar-icon:hover .ab-item {
color: #fff !important;
}
html.pbs-editing #wpadminbar.ct-widget--active .pbs-adminbar-icon:hover .ab-item .ab-icon:before {
color: #fff !important;
}
#wp-admin-bar-gambit_builder_save {
display: none;
}
#wp-admin-bar-gambit_builder_save .ab-item {
background: #27ae60 !important;
color: #fff !important;
}
#wp-admin-bar-gambit_builder_save .ab-item .ab-icon:before {
content: "\f147";
}
#wp-admin-bar-gambit_builder_save .ab-item:hover {
background: #2cc36b !important;
}
#wpadminbar #wp-admin-bar-gambit_builder_save_options.pbs-adminbar-icon {
display: none;
position: static;
}
#wpadminbar #wp-admin-bar-gambit_builder_save_options.pbs-adminbar-icon .ab-item {
background: #27ae60;
padding: 0 7px !important;
border-right: 1px solid #209652;
}
#wpadminbar #wp-admin-bar-gambit_builder_save_options.pbs-adminbar-icon .ab-item .ab-icon {
margin: -1px 0 0 !important;
padding: 0 !important;
}
#wpadminbar #wp-admin-bar-gambit_builder_save_options.pbs-adminbar-icon .ab-item .ab-icon:before {
font-family: 'pbs' !important;
content: '\EA6B';
color: #fff !important;
font-size: 10px;
top: 3px;
}
#wpadminbar #wp-admin-bar-gambit_builder_save_options.pbs-adminbar-icon .ab-item:hover {
background: #2cc36b !important;
}
#wpadminbar #wp-admin-bar-gambit_builder_save_options.pbs-adminbar-icon #pbs-save-button {
position: absolute;
top: 32px;
right: 0;
background: #2cc36b;
display: none;
transition: all .4s 1s ease-in-out;
}
#wpadminbar #wp-admin-bar-gambit_builder_save_options.pbs-adminbar-icon #pbs-save-button span {
display: block;
padding: 2px 15px;
white-space: nowrap;
}
#wpadminbar #wp-admin-bar-gambit_builder_save_options.pbs-adminbar-icon #pbs-save-button span:hover {
background: #27ae60;
}
#wpadminbar #wp-admin-bar-gambit_builder_save_options.pbs-adminbar-icon:hover #pbs-save-button {
display: block;
}
#wpadminbar #wp-admin-bar-gambit_builder_save_options.pbs-adminbar-icon [data-current-post-type="publish"] #pbs-save-publish {
display: none;
}
#wpadminbar #wp-admin-bar-gambit_builder_save_options.pbs-adminbar-icon [data-current-post-type="draft"] #pbs-save-draft,
#wpadminbar #wp-admin-bar-gambit_builder_save_options.pbs-adminbar-icon [data-current-post-type="auto-draft"] #pbs-save-draft {
display: none;
}
#wpadminbar #wp-admin-bar-gambit_builder_save_options.pbs-adminbar-icon [data-current-post-type="pending"] #pbs-save-pending {
display: none;
}
#wpadminbar #wp-admin-bar-gambit_builder_cancel.pbs-adminbar-icon .ab-item {
color: #f7857a;
}
#wpadminbar #wp-admin-bar-gambit_builder_cancel.pbs-adminbar-icon .ab-item:hover {
color: #f5ada6 !important;
background: #63312c !important;
}
#wp-admin-bar-gambit_builder_busy {
display: none;
pointer-events: none;
float: none;
text-align: center;
font-style: italic;
position: absolute !important;
left: 0;
right: 0;
}
#wp-admin-bar-gambit_builder_busy .ab-item {
padding: 0 14px 0 7px !important;
}
#wp-admin-bar-gambit_builder_busy .ab-item .ab-icon {
float: none !important;
top: 4px;
}
#wp-admin-bar-gambit_builder_busy .ab-item .ab-icon:before {
animation: pbs-spin 1.5s ease infinite;
content: "\EA2D";
display: inline-block;
font-family: pbs !important;
top: 2px;
}
#wpadminbar #wp-admin-bar-pbs_help_docs {
border-left: 1px solid #2a2a2a;
border-right: 1px solid #2a2a2a;
}
#wpadminbar #wp-admin-bar-pbs_help_docs .ab-item {
padding: 0 11px !important;
}
#wpadminbar #wp-admin-bar-pbs_help_docs .ab-item .ab-icon {
margin-right: 0 !important;
}
#wpadminbar #wp-admin-bar-pbs_help_docs .ab-item .ab-icon:before {
font-family: "pbs" !important;
content: "\EA82";
font-size: 14px;
top: -1px !important;
}
[dir="rtl"] #wpadminbar #wp-admin-bar-pbs_help_icon .ab-item .pbs-help-label {
right: auto;
left: 0;
}
#wpadminbar #wp-admin-bar-pbs_go_premium {
opacity: 1;
}
#wpadminbar #wp-admin-bar-pbs_go_premium,
#wpadminbar #wp-admin-bar-pbs_go_premium .ab-item:focus {
background: #0fa6f3 !important;
}
#wpadminbar #wp-admin-bar-pbs_go_premium:hover .ab-item {
background: #44c0ff !important;
}
#wpadminbar #wp-admin-bar-pbs_go_premium .ab-item {
color: #fff;
}
#wpadminbar #wp-admin-bar-pbs_go_premium .ab-item .ab-icon:before {
font-family: 'pbs' !important;
content: "\ea2d";
top: 2px;
color: #fff;
}
.pbs-adminbar-icon {
display: none;
}
#wp-admin-bar-gambit_builder_edit {
display: block;
opacity: 0;
transition: opacity .4s ease-in-out;
pointer-events: none;
}
#wpadminbar.ct-widget--active #wp-admin-bar-gambit_builder_edit {
opacity: 1;
pointer-events: all;
}
#wpadminbar.ct-widget--active.ct-ignition--editing li,
#wpadminbar.ct-widget--active.ct-ignition--busy li {
display: none !important;
}
#wpadminbar.ct-widget--active.ct-ignition--editing li.pbs-adminbar-icon,
#wpadminbar.ct-widget--active.ct-ignition--busy li.pbs-adminbar-icon {
display: block !important;
}
#wpadminbar.ct-widget--active.ct-ignition--editing .pbs-adminbar-icon {
display: block !important;
}
#wpadminbar.ct-widget--active.ct-ignition--editing #wp-admin-bar-gambit_builder_edit,
#wpadminbar.ct-widget--active.ct-ignition--editing #wp-admin-bar-gambit_builder_busy {
display: none !important;
}
#wpadminbar.ct-widget--active.ct-ignition--busy li:not(#wp-admin-bar-gambit_builder_busy) {
display: none !important;
}
#wpadminbar.ct-widget--active.ct-ignition--busy #wp-admin-bar-gambit_builder_busy {
display: block !important;
}
.pbs-editing[data-name="main-content"] hr.ce-element--type-hr {
position: relative;
cursor: -webkit-grab;
cursor: grab;
z-index: 2;
}
.pbs-editing[data-name="main-content"] hr.ce-element--type-hr:after,
.pbs-editing[data-name="main-content"] hr.ce-element--type-hr:before {
position: absolute;
content: '';
z-index: 1;
display: block;
top: -10px;
bottom: -10px;
left: 0;
right: 0;
}
.pbs-editing[data-name="main-content"] hr.ce-element--type-hr:after {
background: transparent;
}
.ct-widget.ct-flash {
display: none !important;
}
.ct-widget .ct-tool.ct-tool-heading {
width: auto;
text-align: left;
clear: both;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
background-color: #eee !important;
float: none;
height: auto;
font-size: 12px;
color: #444;
border-radius: 0;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
cursor: default;
}
body .ct-widget .ct-tool {
width: 45px;
padding: 0 !important;
margin: 0 !important;
height: auto;
border-radius: 0;
position: static;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-moz-font-feature-settings: "liga" on;
}
body .ct-widget .ct-tool.ct-tool--disabled:before {
color: #6c6d6f;
}
body .ct-widget .ct-tool.ct-tool--disabled:hover {
background: rgba(200, 200, 200, 0.04);
}
body .ct-widget .ct-tool:before {
line-height: 45px;
}
body .ct-widget .ct-tool:after {
margin-top: 5px;
padding: 12px 15px !important;
background: rgba(0, 0, 0, 0.8);
border-radius: 3px !important;
pointer-events: none;
line-height: 1.6em !important;
font-size: 13px !important;
margin-left: 10px;
margin-right: 10px;
left: auto;
right: auto;
top: 51px;
}
body .ct-widget .ct-tool.ct-tool--applied {
box-shadow: inset 0 3px 15px 0 rgba(0, 0, 0, 0.1);
}
body .ct-widget .pbs-inspector-group .ct-tool:not(.pbs-button) {
width: 100%;
padding: 13px !important;
text-align: inherit;
text-align: initial;
}
/*
body .ct-widget .pbs-text-formatting-group .ct-tool {
&:nth-child(6n+0):after {
left: 0;
right: auto;
}
&:nth-child(6n+1):after {
left: 48px;
right: auto;
}
&:nth-child(6n+2):after {
left: 62px;
right: auto;
}
&:nth-child(6n+3):after {
left: auto;
right: 62px;
}
&:nth-child(6n+4):after {
left: auto;
right: 48px;
}
&:nth-child(6n+5):after {
left: auto;
right: 0;
}
&:nth-child(2):after {
left: 0;
right: auto;
}
}
*/
body .ct-widget [data-subgroup] .ct-tool:nth-child(6n+2):after {
left: 0;
right: auto;
}
body .ct-widget [data-subgroup] .ct-tool:nth-child(6n+3):after {
left: 48px;
right: auto;
}
body .ct-widget [data-subgroup] .ct-tool:nth-child(6n+4):after {
left: 62px;
right: auto;
}
body .ct-widget [data-subgroup] .ct-tool:nth-child(6n+5):after {
left: auto;
right: 62px;
}
body .ct-widget [data-subgroup] .ct-tool:nth-child(6n+6):after {
left: auto;
right: 48px;
}
body .ct-widget [data-subgroup] .ct-tool:nth-child(6n+7):after {
left: auto;
right: 0;
}
body .ct-widget .ct-tool.pbs-tool-large {
cursor: move;
}
body .ct-widget .ct-tool.pbs-tool-large:after {
display: none !important;
}
body .ct-widget .ct-tool.pbs-tool-large.ct-tool--down {
transform: translateY(-10%) scale(1.05) !important;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
[dir="rtl"] body .ct-widget [data-subgroup] .ct-tool:nth-child(6n+2):after {
right: 0;
left: auto;
}
[dir="rtl"] body .ct-widget [data-subgroup] .ct-tool:nth-child(6n+3):after {
right: 48px;
left: auto;
}
[dir="rtl"] body .ct-widget [data-subgroup] .ct-tool:nth-child(6n+4):after {
right: 62px;
left: auto;
}
[dir="rtl"] body .ct-widget [data-subgroup] .ct-tool:nth-child(6n+5):after {
right: auto;
left: 62px;
}
[dir="rtl"] body .ct-widget [data-subgroup] .ct-tool:nth-child(6n+6):after {
right: auto;
left: 48px;
}
[dir="rtl"] body .ct-widget [data-subgroup] .ct-tool:nth-child(6n+7):after {
right: auto;
left: 0;
}
body .ct-widget .ct-tool[class*="pbs-button-change-col-"]:after {
left: 0 !important;
right: 0 !important;
}
.ct-tool.ct-tool--row:before,
.ct-tool[class*="ct-tool--column"]:before {
font-family: 'pbs';
font-size: 16px;
}
.ct-tool.ct-tool--h1:before,
.ct-tool.ct-tool--h2:before,
.ct-tool.ct-tool--h3:before,
.ct-tool.ct-tool--h4:before,
.ct-tool.ct-tool--h5:before,
.ct-tool.ct-tool--h6:before,
.ct-tool.ct-tool--font-size-up:before,
.ct-tool.ct-tool--font-size-down:before,
.ct-tool.ct-tool--font-down:before,
.ct-tool.ct-tool--underline:before,
.ct-tool.ct-tool--blockquote:before,
.ct-tool.ct-tool--clear-formatting:before,
.ct-tool.ct-tool--line-height:before,
.ct-tool.ct-tool--margin-bottom-up:before,
.ct-tool.ct-tool--margin-bottom-down:before,
.ct-tool.ct-tool--margin-top-up:before,
.ct-tool.ct-tool--margin-top-down:before,
.ct-tool.ct-tool--margin-reset:before,
.ct-tool.ct-tool--hr:before,
.ct-tool.ct-tool--button:before,
.ct-tool.ct-tool--image:before,
.ct-tool.ct-tool--image-border-radius:before,
.ct-tool.ct-tool--image-circle:before,
.ct-tool.ct-tool--carousel:before,
.ct-tool.ct-tool--newsletter:before,
.ct-tool.ct-tool--icon:before,
.ct-tool.ct-tool--align:before,
.ct-tool.ct-tool--align-left:before,
.ct-tool.ct-tool--align-center:before,
.ct-tool.ct-tool--align-right:before,
.ct-tool.ct-tool--align-justify:before,
.ct-tool.ct-tool--border-top:before,
.ct-tool.ct-tool--border-right:before,
.ct-tool.ct-tool--border-bottom:before,
.ct-tool.ct-tool--border-left:before,
.ct-tool.ct-tool--border-none:before,
.ct-tool.ct-tool--border-top-bottom:before,
.ct-tool.ct-tool--border-left-right:before,
.ct-tool.ct-tool--border-all:before,
.ct-tool.ct-tool--uppercase:before,
.ct-tool.ct-tool--strikethrough:before,
.ct-tool.ct-tool--widget:before,
.ct-tool.ct-tool--sidebar:before,
.ct-tool.ct-tool--html:before,
.ct-tool.ct-tool--shortcode:before,
.ct-tool.ct-tool--predesigned:before,
.ct-tool.ct-tool--onecolumn:before,
.ct-tool.ct-tool--twocolumn:before,
.ct-tool.ct-tool--threecolumn:before,
.ct-tool.ct-tool--fourcolumn:before,
.ct-tool.ct-tool--insert-element:before,
.ct-tool.ct-tool--responsive-hide:before {
font-family: 'pbs';
font-size: 16px;
}
.ct-tool.ct-tool--h1:before {
content: '\EA17';
}
.ct-tool.ct-tool--h2:before {
content: '\EA12';
}
.ct-tool.ct-tool--h3:before {
content: '\EA13';
}
.ct-tool.ct-tool--h4:before {
content: '\EA14';
}
.ct-tool.ct-tool--h5:before {
content: '\EA15';
}
.ct-tool.ct-tool--h6:before {
content: '\EA16';
}
.ct-tool.ct-tool--row:before {
content: '\EA01';
}
.ct-tool.ct-tool--column-2:before {
content: '\EA03';
}
.ct-tool.ct-tool--column-3:before {
content: "\EA05";
}
.ct-tool.ct-tool--column-4:before {
content: "\EA06";
}
.ct-tool.ct-tool--column-23-3:before {
content: "\EA04";
}
.ct-tool.ct-tool--column-3-23:before {
content: "\EA08";
}
.ct-tool.ct-tool--column-4-2-4:before {
content: "\EA09";
}
.ct-tool.ct-tool--column-14-12-14:before {
content: "\EA02";
}
.ct-tool.ct-tool--column-custom:before {
content: "\EA07";
}
.ct-tool.ct-tool--font-size-up:before {
content: "\EA6E";
}
.ct-tool.ct-tool--font-size-down:before {
content: "\EA6D";
}
.ct-tool.ct-tool--font-down:before {
content: "\EA19";
}
.ct-tool.ct-tool--clear-formatting:before {
content: "\EA35";
}
.ct-tool.ct-tool--underline:before {
content: "\EA1B";
}
.ct-tool.ct-tool--blockquote:before {
content: "\EA1C";
}
.ct-tool.ct-tool--line-height:before {
content: "\EA1D";
}
.ct-tool.ct-tool--margin-bottom-up:before {
content: "\EA1F";
}
.ct-tool.ct-tool--margin-bottom-down:before {
content: "\EA1E";
}
.ct-tool.ct-tool--margin-top-up:before {
content: "\EA21";
}
.ct-tool.ct-tool--margin-top-down:before {
content: "\EA20";
}
.ct-tool.ct-tool--margin-reset:before {
content: "\EA35";
}
.ct-tool.ct-tool--code:before {
content: "\ea80";
}
.ct-tool.ct-tool--hr:before {
content: "\ea2b";
}
.ct-tool.ct-tool--button:before {
content: "\ea2c";
}
.ct-tool.ct-tool--image:before {
content: "\ea42";
}
.ct-tool.ct-tool--image-border-radius:before {
content: '\EA3E';
}
.ct-tool.ct-tool--image-circle:before {
content: '\EA45';
}
.ct-tool.ct-tool--carousel:before {
content: '\EA46';
}
.ct-tool.ct-tool--icon:before {
content: '\EA4D';
}
.ct-tool.ct-tool--newsletter:before {
content: '\EA4F';
}
.ct-tool.ct-tool--align:before,
.ct-tool.ct-tool--align-left:before {
content: '\EA52';
}
.ct-tool.ct-tool--align-center:before {
content: '\EA50';
}
.ct-tool.ct-tool--align-right:before {
content: '\EA53';
}
.ct-tool.ct-tool--align-justify:before {
content: '\EA51';
}
.ct-tool.ct-tool--border-top:before {
content: '\EA5B';
}
.ct-tool.ct-tool--border-right:before {
content: '\EA59';
}
.ct-tool.ct-tool--border-bottom:before {
content: '\EA55';
}
.ct-tool.ct-tool--border-left:before {
content: '\EA57';
}
.ct-tool.ct-tool--border-none:before {
content: '\EA58';
}
.ct-tool.ct-tool--border-top-bottom:before {
content: '\EA5A';
}
.ct-tool.ct-tool--border-left-right:before {
content: '\EA56';
}
.ct-tool.ct-tool--border-all:before {
content: '\EA54';
}
.ct-tool.ct-tool--uppercase:before {
content: '\EA5D';
}
.ct-tool.ct-tool--strikethrough:before {
content: '\EA5E';
}
.ct-tool.ct-tool--widget:before {
content: '\EA60';
}
.ct-tool.ct-tool--sidebar:before {
content: '\EA5F';
}
.ct-tool.ct-tool--html:before {
content: '\EA63';
}
.ct-tool.ct-tool--shortcode:before {
content: '\EA64';
}
.ct-tool.ct-tool--predesigned:before {
content: '\EA72';
}
.ct-tool.ct-tool--onecolumn:before {
content: '\EA01';
}
.ct-tool.ct-tool--twocolumn:before {
content: '\EA03';
}
.ct-tool.ct-tool--threecolumn:before {
content: "\EA05";
}
.ct-tool.ct-tool--fourcolumn:before {
content: "\EA05";
}
.ct-tool.ct-tool--insert-element:before {
content: "\EA6E";
}
.ct-tool.ct-tool--responsive-hide:before {
content: "\EA87";
}
.ct-tool.ct-tool--color {
box-shadow: inset 0 0 1px 0 rgba(0, 0, 0, 0.7);
border: 0;
line-height: 34px;
}
.ct-tool.ct-tool--color .iris-picker {
clear: both;
position: relative;
margin: 0px auto;
box-shadow: none;
}
.pbs-interactive-elements-group .ct-tool.ct-tool--carousel:before,
.pbs-interactive-elements-group .ct-tool.ct-tool--sidebar:before,
.pbs-interactive-elements-group .ct-tool.ct-tool--widget:before,
.pbs-interactive-elements-group .ct-tool.ct-tool--icon:before,
.pbs-interactive-elements-group .ct-tool.ct-tool--image:before,
.pbs-interactive-elements-group .ct-tool.ct-tool--button:before,
.pbs-interactive-elements-group .ct-tool.ct-tool--newsletter:before,
.pbs-interactive-elements-group .ct-tool.ct-tool--table:before,
.pbs-interactive-elements-group .ct-tool.ct-tool--shortcode:before,
.pbs-interactive-elements-group .ct-tool.ct-tool--html:before,
.pbs-interactive-elements-group .ct-tool.ct-tool--predesigned:before,
.pbs-interactive-elements-group .ct-tool.ct-tool--onecolumn:before,
.pbs-interactive-elements-group .ct-tool.ct-tool--twocolumn:before,
.pbs-interactive-elements-group .ct-tool.ct-tool--threecolumn:before,
.pbs-interactive-elements-group .ct-tool.ct-tool--fourcolumn:before,
.pbs-interactive-elements-group .ct-tool.ct-tool--map:before,
.pbs-interactive-elements-group .ct-tool.ct-tool--text:before,
.pbs-interactive-elements-group .ct-tool.ct-tool--tabs:before,
.pbs-interactive-elements-group .ct-tool.ct-tool--toggle:before,
.pbs-interactive-elements-group .ct-tool.ct-tool--countdown:before,
.pbs-interactive-elements-group .ct-tool.ct-tool--countup:before,
.pbs-interactive-elements-group .ct-tool.ct-tool--woocommerce:before,
.pbs-interactive-elements-group .ct-tool.ct-tool--acf:before,
.pbs-interactive-elements-group .ct-tool.ct-tool--cf7:before,
.pbs-interactive-elements-group .ct-tool.ct-tool--events-calendar:before,
.pbs-interactive-elements-group .ct-tool.ct-tool--instagram-feed:before,
.pbs-interactive-elements-group .ct-tool.ct-tool--nextgen:before,
.pbs-interactive-elements-group .ct-tool.ct-tool--page-heading:before,
.pbs-interactive-elements-group .ct-tool.ct-tool--call-to-action:before,
.pbs-interactive-elements-group .ct-tool.ct-tool--testimonial:before,
.pbs-interactive-elements-group .ct-tool.ct-tool--icon-label:before,
.pbs-interactive-elements-group .ct-tool.ct-tool--contact-details:before,
.pbs-interactive-elements-group .ct-tool.ct-tool--pricing-table:before,
.pbs-interactive-elements-group .ct-tool.ct-tool--image-box:before,
.pbs-interactive-elements-group .ct-tool.ct-tool--social-icons:before,
.pbs-interactive-elements-group .ct-tool.ct-tool--hr:before,
.pbs-interactive-elements-group .ct-tool.ct-tool--spacer:before,
.pbs-interactive-elements-group .ct-tool.ct-tool--gallery:before,
.pbs-interactive-elements-group .ct-tool.ct-tool--featurette:before,
.pbs-interactive-elements-group .ct-tool.ct-tool--team-members:before {
content: '';
height: 46px;
width: 46px;
background-position: center;
margin: 0 auto;
background-size: 100%;
}
.pbs-interactive-elements-group .ct-tool.ct-tool--carousel:before {
background-image: url("../assets/element-icons/carousel.svg");
}
.pbs-interactive-elements-group .ct-tool.ct-tool--sidebar:before {
background-image: url("../assets/element-icons/sidebar.svg");
}
.pbs-interactive-elements-group .ct-tool.ct-tool--widget:before {
background-image: url("../assets/element-icons/widget.svg");
}
.pbs-interactive-elements-group .ct-tool.ct-tool--icon:before {
background-image: url("../assets/element-icons/icon.svg");
}
.pbs-interactive-elements-group .ct-tool.ct-tool--image:before {
background-image: url("../assets/element-icons/image.svg");
}
.pbs-interactive-elements-group .ct-tool.ct-tool--button:before {
background-image: url("../assets/element-icons/button.svg");
}
.pbs-interactive-elements-group .ct-tool.ct-tool--newsletter:before {
background-image: url("../assets/element-icons/newsletter.svg");
}
.pbs-interactive-elements-group .ct-tool.ct-tool--table:before {
background-image: url("../assets/element-icons/table.svg");
}
.pbs-interactive-elements-group .ct-tool.ct-tool--shortcode:before {
background-image: url("../assets/element-icons/shortcode.svg");
}
.pbs-interactive-elements-group .ct-tool.ct-tool--html:before {
background-image: url("../assets/element-icons/html.svg");
}
.pbs-interactive-elements-group .ct-tool.ct-tool--predesigned:before {
background-image: url("../assets/element-icons/predesigned.svg");
}
.pbs-interactive-elements-group .ct-tool.ct-tool--onecolumn:before {
background-image: url("../assets/element-icons/onecolumn.svg");
}
.pbs-interactive-elements-group .ct-tool.ct-tool--twocolumn:before {
background-image: url("../assets/element-icons/twocolumn.svg");
}
.pbs-interactive-elements-group .ct-tool.ct-tool--threecolumn:before {
background-image: url("../assets/element-icons/threecolumn.svg");
}
.pbs-interactive-elements-group .ct-tool.ct-tool--fourcolumn:before {
background-image: url("../assets/element-icons/fourcolumn.svg");
}
.pbs-interactive-elements-group .ct-tool.ct-tool--map:before {
background-image: url("../assets/element-icons/map.svg");
}
.pbs-interactive-elements-group .ct-tool.ct-tool--text:before {
background-image: url("../assets/element-icons/text.svg");
}
.pbs-interactive-elements-group .ct-tool.ct-tool--tabs:before {
background-image: url("../assets/element-icons/tabs.svg");
}
.pbs-interactive-elements-group .ct-tool.ct-tool--toggle:before {
background-image: url("../assets/element-icons/toggle.svg");
}
.pbs-interactive-elements-group .ct-tool.ct-tool--countdown:before {
background-image: url("../assets/element-icons/countdown.svg");
}
.pbs-interactive-elements-group .ct-tool.ct-tool--countup:before {
background-image: url("../assets/element-icons/countup.svg");
}
.pbs-interactive-elements-group .ct-tool.ct-tool--woocommerce:before {
background-image: url("../assets/element-icons/woocommerce.svg");
}
.pbs-interactive-elements-group .ct-tool.ct-tool--acf:before {
background-image: url("../assets/element-icons/acf.svg");
}
.pbs-interactive-elements-group .ct-tool.ct-tool--cf7:before {
background-image: url("../assets/element-icons/cf7.svg");
}
.pbs-interactive-elements-group .ct-tool.ct-tool--events-calendar:before {
background-image: url("../assets/element-icons/events-calendar.svg");
}
.pbs-interactive-elements-group .ct-tool.ct-tool--instagram-feed:before {
background-image: url("../assets/element-icons/instagram-feed.svg");
}
.pbs-interactive-elements-group .ct-tool.ct-tool--nextgen:before {
background-image: url("../assets/element-icons/nextgen.svg");
}
.pbs-interactive-elements-group .ct-tool.ct-tool--page-heading:before {
background-image: url("../assets/element-icons/page-heading.svg");
}
.pbs-interactive-elements-group .ct-tool.ct-tool--call-to-action:before {
background-image: url("../assets/element-icons/call-to-action.svg");
}
.pbs-interactive-elements-group .ct-tool.ct-tool--testimonial:before {
background-image: url("../assets/element-icons/testimonial.svg");
}
.pbs-interactive-elements-group .ct-tool.ct-tool--icon-label:before {
background-image: url("../assets/element-icons/icon-label.svg");
}
.pbs-interactive-elements-group .ct-tool.ct-tool--contact-details:before {
background-image: url("../assets/element-icons/contact-details.svg");
}
.pbs-interactive-elements-group .ct-tool.ct-tool--pricing-table:before {
background-image: url("../assets/element-icons/pricing-table.svg");
}
.pbs-interactive-elements-group .ct-tool.ct-tool--image-box:before {
background-image: url("../assets/element-icons/image-box.svg");
}
.pbs-interactive-elements-group .ct-tool.ct-tool--social-icons:before {
background-image: url("../assets/element-icons/social-icons.svg");
}
.pbs-interactive-elements-group .ct-tool.ct-tool--hr:before {
background-image: url("../assets/element-icons/hr.svg");
}
.pbs-interactive-elements-group .ct-tool.ct-tool--spacer:before {
background-image: url("../assets/element-icons/spacer.svg");
}
.pbs-interactive-elements-group .ct-tool.ct-tool--gallery:before {
background-image: url("../assets/element-icons/gallery.svg");
}
.pbs-interactive-elements-group .ct-tool.ct-tool--featurette:before {
background-image: url("../assets/element-icons/featurette.svg");
}
.pbs-interactive-elements-group .ct-tool.ct-tool--team-members:before {
background-image: url("../assets/element-icons/team-members.svg");
}
body .ct-widget .ct-tool.ct-tool--color {
margin: 10px 8px !important;
width: 24px !important;
height: 24px !important;
box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.3);
border-radius: 100%;
-ms-flex-negative: 0;
flex-shrink: 0;
}
.pbs-toolbox-bar .ct-tool.ct-tool--color > * {
position: relative;
margin: 40px 0px 0px;
width: 220px !important;
}
body .ct-widget.ct-toolbox {
top: 32px;
left: 0;
overflow-y: auto;
padding-bottom: 100px;
}
body .ct-widget .ct-tool:hover {
background: rgba(200, 200, 200, 0.1);
}
.ct-tool:not([data-tooltip]):after {
display: none !important;
}
.ct-tool[data-tooltip=""]:after {
display: none !important;
}
body .ct-tool.pbs-tool-option {
cursor: default;
height: auto;
border-radius: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
font-size: 12px;
display: block;
float: none;
background: transparent !important;
}
body .ct-tool.pbs-tool-option .pbs-option-subtitle {
text-align: inherit;
text-align: initial;
}
.iris-picker {
z-index: 9999;
box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
}
.iris-picker,
.iris-picker * {
box-sizing: content-box !important;
}
.iris-picker .iris-square,
.iris-picker .iris-slider,
.iris-picker .iris-square-inner,
.iris-picker .iris-palette {
box-shadow: inset 0 0 0px 1px rgba(0, 0, 0, 0.25) !important;
}
.ct-toolbox input {
border-radius: 2px;
border: 1px solid rgba(0, 0, 0, 0.2);
}
.ct-tool--color > div,
.pbs-color-popup.pbs-color-popup {
padding-bottom: 68px !important;
}
.ct-tool--color > div .iris-picker .iris-square,
.pbs-color-popup.pbs-color-popup .iris-picker .iris-square {
height: 100% !important;
}
.ct-tool--color > div .iris-picker .iris-palette-container,
.pbs-color-popup.pbs-color-popup .iris-picker .iris-palette-container {
bottom: -54px;
display: -ms-flexbox;
display: flex;
width: 100%;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
padding: 0 8px;
left: 0;
right: 0;
box-sizing: border-box !important;
}
.ct-tool--color > div .iris-picker .iris-palette,
.pbs-color-popup.pbs-color-popup .iris-picker .iris-palette {
height: 14px !important;
width: 14px !important;
margin: 2px !important;
-ms-flex-positive: 1;
flex-grow: 1;
border-radius: 1px;
box-shadow: inset 0 0 1px 0px rgba(0, 0, 0, 0.3) !important;
outline: none;
}
.ct-tool--color > div .iris-picker .iris-square-inner,
.ct-tool--color > div .iris-picker .iris-strip,
.pbs-color-popup.pbs-color-popup .iris-picker .iris-square-inner,
.pbs-color-popup.pbs-color-popup .iris-picker .iris-strip {
box-shadow: inset 0 0 1px 0px rgba(0, 0, 0, 0.3) !important;
border: 0;
border-radius: 2px;
}
.ct-tool--color > div .iris-picker .iris-square-handle,
.ct-tool--color > div .iris-picker .iris-strip .ui-slider-handle,
.pbs-color-popup.pbs-color-popup .iris-picker .iris-square-handle,
.pbs-color-popup.pbs-color-popup .iris-picker .iris-strip .ui-slider-handle {
border: 3px solid #fff;
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), inset 0 0 0 1px rgba(0, 0, 0, 0.2);
opacity: 1;
}
.ct-tool--color > div .iris-picker .iris-square-handle:after,
.ct-tool--color > div .iris-picker .iris-strip .ui-slider-handle:after,
.pbs-color-popup.pbs-color-popup .iris-picker .iris-square-handle:after,
.pbs-color-popup.pbs-color-popup .iris-picker .iris-strip .ui-slider-handle:after {
display: none !important;
}
.ct-widget .ct-tool.pbs-button-background-image,
.ct-widget .ct-tool.pbs-button-background-image:hover {
background-size: cover !important;
background-position: center !important;
}
.ct-widget .ct-tool.pbs-button-background-image.ct-tool--applied {
text-shadow: 0 0 30px black;
}
.ct-widget .ct-tool.pbs-tool-large {
display: -ms-flexbox;
display: flex;
-ms-flex-direction: column;
flex-direction: column;
-ms-flex-pack: center;
justify-content: center;
line-height: 20px !important;
-ms-flex: 1 1 auto;
flex: 1 1 auto;
border: 0;
border-bottom: 1px solid #eee;
border-right: 1px solid #eee;
height: 86px;
background: #fff;
margin: 5px !important;
width: calc(50% - 10px) !important;
min-width: calc(50% - 10px) !important;
border-radius: 4px;
transition: all .1s;
}
.ct-widget .ct-tool.pbs-tool-large:hover {
background: #fff;
transform: scale(1.02);
}
.ct-widget .ct-tool.pbs-tool-large.ct-tool--disabled {
border-color: #ECF0F1;
opacity: 0.6;
}
.ct-widget .ct-tool.pbs-tool-large .pbs-tool-title {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
font-size: 11px;
line-height: 1em;
display: block;
}
.ct-widget .ct-tool.pbs-tool-large:before {
font-size: 26px;
line-height: 1em !important;
margin-bottom: 3px;
}
.ct-widget .ct-tool.pbs-tool-large:after {
margin-top: 25px;
}
.ct-widget .ct-tool.pbs-tool-large.pbs-tool-is-premium {
color: #95A5A6;
border-color: #ECECEC;
}
.ct-widget .ct-tool.pbs-tool-large .pbs-tool-premium {
position: absolute;
top: 4px;
left: 4px;
font-size: 9px;
line-height: 1em;
transform: rotate(-8deg);
opacity: .7;
}
.ct-widget .ct-tool.pbs-tool-large .pbs-tool-premium:before {
font-family: dashicons;
content: "\f155";
}
[dir="rtl"] .ct-widget .ct-tool.pbs-tool-large {
border-right: none;
border-left: 1px solid #eee;
}
.pbs-show-advanced .pbs-advanced-tool.pbs-tool-large {
display: -ms-flexbox !important;
display: flex !important;
}
.ct-tool-group:not(.pbs-inspector-group) .pbs-group-tip,
[data-subgroup] .pbs-group-tip {
display: none;
float: right !important;
font-size: 9px !important;
color: #555 !important;
background: rgba(0, 0, 0, 0.06) !important;
border: 1px solid rgba(0, 0, 0, 0.15) !important;
line-height: 14px !important;
padding: 0 4px !important;
border-radius: 8px !important;
height: 15px !important;
cursor: help !important;
position: relative !important;
font-weight: bold !important;
}
.ct-tool-group:not(.pbs-inspector-group) .pbs-group-tip .pbs-group-tip-details,
[data-subgroup] .pbs-group-tip .pbs-group-tip-details {
display: none;
position: absolute;
right: 0;
top: calc(100% + 5px);
background: #21A056;
padding: 10px;
width: 200px;
z-index: 9;
color: #fff;
font-size: 13px;
text-transform: none !important;
line-height: 1.4em;
pointer-events: none;
border-radius: 3px;
box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
font-weight: normal;
}
.ct-tool-group:not(.pbs-inspector-group) .pbs-group-tip:hover .pbs-group-tip-details,
[data-subgroup] .pbs-group-tip:hover .pbs-group-tip-details {
display: block;
}
.ct-tool-group:not(.pbs-inspector-group):hover .pbs-group-tip,
[data-subgroup]:hover .pbs-group-tip {
display: block;
}
[data-subgroup] .pbs-group-tip {
background: rgba(255, 255, 255, 0.15) !important;
border-color: rgba(255, 255, 255, 0.3) !important;
color: #fff !important;
}
.pbs-color-button.ct-tool--disabled {
opacity: .6;
pointer-events: none;
}
[dir="rtl"] .ct-widget .ct-tool {
float: right;
}
.ct-app .ct-toolbox {
width: 250px;
}
.pbs-toolbox-bar.ct-widget .ct-tool.ct-tool--insert-element {
width: auto !important;
padding: 0 5px !important;
vertical-align: top;
}
.pbs-toolbox-bar.ct-widget .ct-tool.ct-tool--insert-element span {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
height: auto;
line-height: 45px;
display: inline-block;
font-size: 10px;
margin: 0 5px;
vertical-align: top;
text-transform: uppercase;
}
.pbs-toolbox-bar.ct-widget .ct-tool.ct-tool--insert-element:before {
margin: 0 5px;
}
body .ct-widget.ct-toolbox.pbs-toolbox-bar .ct-tool.ct-tool--responsive-hide {
position: absolute;
left: 0;
display: none;
}
/**
* Styles to keep the link dialog modal as close to WP's defaults.
*/
#wp-link {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
font-size: 13px !important;
line-height: 1.4em !important;
}
#wp-link label {
max-width: none !important;
margin-bottom: 0 !important;
display: block !important;
font-weight: normal !important;
}
#wp-link input {
padding: 3px 5px !important;
height: auto !important;
line-height: 1em !important;
outline: none;
border: 1px solid #ddd !important;
display: inline-block !important;
}
#wp-link input:focus {
outline: none;
border: 1px solid #ddd !important;
}
#wp-link input[type="submit"] {
height: auto !important;
text-transform: none !important;
text-shadow: 0 -1px 1px #006799, 1px 0 1px #006799, 0 1px 1px #006799, -1px 0 1px #006799;
border-color: #006799 !important;
background: #008ec2 !important;
font-size: 13px !important;
line-height: 26px !important;
display: inline-block !important;
padding: 0 10px 1px !important;
}
#wp-link p {
font-style: italic !important;
}
#wp-link .link-target {
line-height: 1em !important;
}
#wp-link .button {
font-weight: normal !important;
}
#dummy-wplink-textarea {
display: none !important;
}
/* Icons */
@font-face {
font-family: 'pbs';
src: url("../fonts/pbs.eot");
src: url("../fonts/pbs.eot") format("embedded-opentype"), url("../fonts/pbs.ttf") format("truetype"), url("../fonts/pbs.woff") format("woff"), url("../fonts/pbs.svg") format("svg");
font-weight: normal;
font-style: normal;
}
body .ct-widget.ct-toolbox {
border-radius: 0px !important;
padding: 0;
overflow-x: hidden;
overflow-y: auto;
background: #fff;
z-index: 10000;
border: 0;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}
.pbs-toolbox-titlebar {
display: -ms-flexbox;
display: flex;
cursor: move;
-ms-flex-pack: justify;
justify-content: space-between;
height: 30px;
background: #53555D;
color: #fff;
}
.pbs-toolbox-title {
pointer-events: none;
line-height: 30px !important;
padding: 0 10px !important;
font-size: 10px !important;
text-transform: uppercase;
}
.pbs-titlebox-close {
width: 30px;
height: 30px;
cursor: pointer;
}
.pbs-titlebox-close:before {
content: "\EA6A";
font-family: pbs;
display: block;
text-align: center;
margin-top: 6px;
}
body .ct-widget.ct-toolbox .ct-tool-group.pbs-collapse {
padding-bottom: 0 !important;
}
[dir="rtl"] body .ct-widget.ct-toolbox .ct-tool-group .pbs-group-title {
padding: 13px 13px 13px 40px;
}
[dir="rtl"] body .ct-widget.ct-toolbox .ct-tool-group .pbs-group-title:after {
right: auto;
left: 13px;
}
.pbs-inspector-group input,
.pbs-inspector-group textarea,
.pbs-inspector-group select {
border: none !important;
padding: 4px 8px !important;
background: rgba(255, 255, 255, 0.1) !important;
color: #fff !important;
width: 100% !important;
box-sizing: border-box !important;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
font-size: 12px !important;
}
.pbs-inspector-group select {
cursor: pointer;
}
.pbs-inspector-group textarea[id="content"] {
height: 100px;
}
.pbs-inspector-group input[type="checkbox"] {
width: auto !important;
}
.pbs-inspector-group label {
font-weight: normal !important;
font-style: normal !important;
margin-right: 10px !important;
}
.pbs-inspector-group .ct-tool {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.pbs-inspector-group .pbs-tool-option {
width: 100%;
padding: 10px 13px 20px;
margin: 0;
}
.pbs-inspector-group .pbs-tool-option:empty {
display: none;
}
.pbs-inspector-group small {
font-size: 10px !important;
font-style: italic;
}
.pbs-inspector-group a,
.pbs-inspector-group a:active,
.pbs-inspector-group a:link {
color: #fff !important;
text-decoration: none !important;
border-bottom: 1px dotted #fff;
}
.pbs-inspector-group a:hover,
.pbs-inspector-group a:active:hover,
.pbs-inspector-group a:link:hover {
color: #fff !important;
border-bottom: 1px solid #fff;
text-decoration: none !important;
}
.pbs-inspector [disabled="disabled"] {
opacity: .3;
}
.ct-toolbox input,
.ct-toolbox select,
.ct-toolbox textarea {
height: auto !important;
line-height: 1.6em !important;
border: 1px solid #e2e2e2 !important;
border-radius: 4px !important;
outline: none !important;
padding: .4em .6em !important;
font-size: 12px;
}
.ct-toolbox input:focus,
.ct-toolbox select:focus,
.ct-toolbox textarea:focus {
outline: none !important;
background: rgba(0, 0, 0, 0.02) !important;
}
.ct-toolbox textarea {
height: 100px !important;
}
.ct-toolbox input.color-picker,
.ct-toolbox .pbs-color-popup input {
border: 1px solid rgba(0, 0, 0, 0.1) !important;
}
/****************************************************************
* Show advanced button
****************************************************************/
.pbs-show-advanced button,
.pbs-show-advanced button:focus {
padding: 0;
font-size: 12px;
font-weight: normal !important;
font-style: italic !important;
text-transform: none !important;
text-decoration: none !important;
background: #67809F !important;
color: #fff !important;
font-size: 9px !important;
padding: 0.4em 0.8em !important;
border-radius: 2px !important;
opacity: .7 !important;
}
.pbs-show-advanced button:hover,
.pbs-show-advanced button:focus:hover {
opacity: 1 !important;
}
.ct-widget .ct-tool-group {
position: relative;
}
.ct-widget .ct-tool-group .pbs-description {
font-style: italic;
opacity: .8;
margin-top: 3px;
margin-bottom: 0;
text-align: inherit;
text-align: initial;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
font-size: 12px;
line-height: 1.2em;
}
.ct-widget .ct-tool-group .pbs-description a {
color: #fff !important;
opacity: .8;
}
.ct-widget .ct-tool-group .pbs-description a:hover {
opacity: 1;
}
.pbs-option-inline > * {
display: inline-block;
}
.pbs-option-inline .pbs-option-subtitle {
margin-right: 10px !important;
}
.pbs-option-inline input {
width: 60px !important;
}
.pbs-option-inline select {
width: auto !important;
}
.pbs-option-inline.pbs-option-medium input {
width: 100px !important;
}
.pbs-option-inline.pbs-option-large input {
width: 150px !important;
}
.pbs-button-clone:before {
font-family: dashicons;
line-height: 32px;
content: "\f105";
}
.pbs-button-clone:before {
font-size: 18px;
}
.pbs-button-add-column:before {
font-family: 'pbs';
content: '\EA0A';
font-size: 16px;
}
.pbs-inspector .pbs-button {
margin-bottom: 15px !important;
}
.pbs-button-vertical-alignment:before {
font-family: 'pbs';
content: '\EA0D';
font-size: 16px;
}
.pbs-button-vertical-alignment.flex-start:before {
content: '\EA0E';
}
.pbs-button-vertical-alignment.center:before {
content: '\EA0C';
}
.pbs-button-vertical-alignment.flex-end:before {
content: '\EA0B';
}
.pbs-button-vertical-content-alignment:before {
font-family: 'pbs';
content: '\EA28';
font-size: 16px;
}
.pbs-button-vertical-content-alignment.space-between:before {
content: '\EA2A';
}
.pbs-button-vertical-content-alignment.space-around:before {
content: '\EA29';
}
.pbs-button-vertical-content-alignment.flex-end:before {
content: '\EA27';
}
.pbs-button-vertical-content-alignment.center:before {
content: '\EA26';
}
.pbs-button-horizontal-content-alignment:before {
font-family: 'pbs';
content: '\EA25';
font-size: 16px;
}
.pbs-button-horizontal-content-alignment.flex-start:before {
content: '\EA24';
}
.pbs-button-horizontal-content-alignment.flex-end:before {
content: '\EA23';
}
.pbs-button-horizontal-content-alignment.center:before {
content: '\EA41';
}
.pbs-button-row-width:before {
font-family: 'pbs';
content: '\EA11';
font-size: 16px;
}
.pbs-button-row-width.full:before {
content: '\EA10';
}
.pbs-button-row-width.full-retain:before {
content: '\EA0F';
}
.pbs-button-column-gap:before,
.pbs-button-row-margin-top-increase:before,
.pbs-button-row-margin-top-decrease:before,
.pbs-button-row-margin-bottom-increase:before,
.pbs-button-row-margin-bottom-decrease:before,
.pbs-button-col-padding-horizontal:before,
.pbs-button-col-padding-vertical:before,
.pbs-clear-formatting:before,
.pbs-button-col-width-decrease:before,
.pbs-button-col-width-increase:before,
.pbs-button-row-padding-top:before,
.pbs-button-row-padding-bottom:before,
.pbs-button-row-padding-left:before,
.pbs-button-row-padding-right:before,
.pbs-button-change-col-1:before,
.pbs-button-change-col-2-1:before,
.pbs-button-change-col-2:before,
.pbs-button-change-col-3:before,
.pbs-button-change-col-4:before,
.pbs-button-change-col-1-2:before,
.pbs-button-change-col-1-2-1:before,
.pbs-button-change-col-1-1-2:before,
.pbs-button-change-col-1-3-1-3:before,
.pbs-button-change-col-1-3-3-1:before,
.pbs-button-col-border-style:before,
.pbs-button-col-border-width:before,
.pbs-button-col-border-radius:before,
.pbs-button-background-image:before,
.pbs-button-tint:before,
.pbs-button-carousel-bullet-location:before,
.pbs-button-carousel-remove-slide:before,
.pbs-button-carousel-add-slide:before,
.pbs-button-carousel-move-slide-left:before,
.pbs-button-carousel-move-slide-right:before,
.pbs-button-carousel-delay:before,
.pbs-button-carousel-anim-speed:before,
.pbs-button-ghost-style:before,
.pbs-button-visibility:before,
.pbs-button-tooltip-location:before,
.pbs-button-shadow:before,
.pbs-button-zoom:before,
.pbs-button-map-ui:before,
.pbs-button-map-marker:before,
.pbs-tabs-orientation:before,
.pbs-tabs-alignment:before {
font-family: 'pbs';
font-size: 16px;
}
.pbs-button-column-gap:before {
content: '\EA2E';
}
.pbs-button-row-margin-top-increase:before {
content: '\EA32';
}
.pbs-button-row-margin-top-decrease:before {
content: '\EA31';
}
.pbs-button-row-margin-bottom-increase:before {
content: '\EA30';
}
.pbs-button-row-margin-bottom-decrease:before {
content: '\EA2F';
}
.pbs-button-col-padding-horizontal:before,
.pbs-button-row-padding-left:before {
content: '\EA33';
}
.pbs-button-col-padding-vertical:before,
.pbs-button-row-padding-top:before {
content: '\EA34';
}
.pbs-button-row-padding-bottom:before {
content: '\EA38';
}
.pbs-clear-formatting:before {
content: '\EA35';
}
.pbs-button-col-width-increase:before {
content: '\EA36';
}
.pbs-button-col-width-decrease:before {
content: '\EA37';
}
.pbs-button-row-padding-right:before {
content: '\EA39';
}
.pbs-button-change-col-1:before {
content: '\EA01';
}
.pbs-button-change-col-2:before {
content: '\EA03';
}
.pbs-button-change-col-2-1:before {
content: '\EA04';
}
.pbs-button-change-col-3:before {
content: '\EA05';
}
.pbs-button-change-col-4:before {
content: '\EA06';
}
.pbs-button-change-col-1-2:before {
content: '\EA08';
}
.pbs-button-change-col-1-2-1:before {
content: '\EA09';
}
.pbs-button-change-col-1-1-2:before {
content: '\EA3C';
}
.pbs-button-change-col-1-3-1-3:before {
content: '\EA3A';
}
.pbs-button-change-col-1-3-3-1:before {
content: '\EA3B';
}
.pbs-button-col-border-style:before {
content: '\EA3F';
}
.pbs-button-col-border-width:before {
content: '\EA40';
}
.pbs-button-col-border-radius:before {
content: '\EA3E';
}
.pbs-button-background-image:before {
content: '\EA42';
}
.pbs-button-tint:before {
content: '\EA44';
}
.pbs-button-carousel-bullet-location:before {
content: '\EA48';
}
.pbs-button-carousel-remove-slide:before {
content: '\EA4A';
}
.pbs-button-carousel-add-slide:before {
content: '\EA0A';
}
.pbs-button-carousel-move-slide-left:before {
content: '\EA4B';
}
.pbs-button-carousel-move-slide-right:before {
content: '\EA4C';
}
.pbs-button-carousel-delay:before {
content: '\EA49';
}
.pbs-button-carousel-anim-speed:before {
content: '\EA47';
}
.pbs-button-ghost-style:before {
content: '\EA4E';
}
.pbs-button-visibility:before {
content: '\EA5C';
}
.pbs-button-tooltip-location:before {
content: '\EA62';
}
.pbs-button-shadow:before {
content: '\EA61';
}
.pbs-button-zoom:before {
content: '\EA6E';
}
.pbs-button-map-ui:before {
content: '\EA73';
}
.pbs-button-map-marker:before {
content: '\EA74';
}
.pbs-tabs-orientation:before {
content: '\EA76';
}
.pbs-tabs-alignment:before {
content: '\EA75';
}
.pbs-inspector-group .ct-tool--disabled {
color: rgba(255, 255, 255, 0.6) !important;
}
.pbs-inspector-group .ct-tool--disabled.ct-tool--color {
opacity: 0.4;
}
.pbs-inspector-group .pbs-button-hide {
display: none !important;
}
.pbs-margins-and-paddings h4 {
margin-bottom: 10px;
}
.pbs-border .pbs-color-preview {
margin: 0 10px 0 0 !important;
vertical-align: middle;
}
.pbs-border select {
width: auto !important;
vertical-align: middle;
display: inline-block;
margin-right: 10px;
}
.pbs-border input.width,
.pbs-border input.radius {
width: 50px !important;
vertical-align: middle;
margin-right: 0;
padding: 4px !important;
margin-right: 0 !important;
}
.pbs-border input {
margin-right: 5px;
}
.pbs-border > div {
line-height: 27px !important;
}
body .ct-widget.ct-toolbox .ct-tool-group {
margin: 0 !important;
display: -ms-flexbox;
display: flex;
-ms-flex-direction: row;
flex-direction: row;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-ms-flex-pack: start;
justify-content: flex-start;
width: 100%;
-ms-flex-line-pack: start;
align-content: flex-start;
transition: transform .2s ease-in-out, opacity .2s ease-in-out;
opacity: 1;
padding: 5px;
}
body .ct-widget.ct-toolbox .ct-tool-group:empty {
border-left: none;
}
body .ct-widget.ct-toolbox .ct-tool-group.pbs-inspector-hide {
opacity: 0;
transform: scale(0.97);
}
body .ct-widget.ct-toolbox .pbs-group-title {
display: block;
width: 100%;
-ms-flex-negative: 0;
flex-shrink: 0;
font-size: 13px !important;
text-transform: uppercase !important;
font-weight: normal !important;
line-height: 1.6em;
margin: 0;
padding: 13px 40px 13px 13px;
color: #fff !important;
background: rgba(0, 0, 0, 0.15);
}
body .ct-widget.ct-toolbox .pbs-group-title span {
display: block;
text-transform: none;
font-style: italic;
font-size: .8em;
opacity: .8;
line-height: 1.2em;
}
body .ct-widget.ct-toolbox .pbs-inspector-group {
background: #1ABC9C;
color: #fff;
border-left: none;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
}
body .ct-widget.ct-toolbox .pbs-inspector-group .ct-tool {
color: #fff;
border: 0;
}
body .ct-widget.ct-toolbox .pbs-inspector-group .ct-tool.pbs-button:hover {
background-color: rgba(0, 0, 0, 0.1) !important;
}
body .ct-widget.ct-toolbox .pbs-inspector-group .ct-tool p {
color: #fff;
}
body .ct-widget.ct-toolbox .pbs-inspector-group .pbs-color-preview {
box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}
body .ct-widget.ct-toolbox .pbs-inspector-group + .pbs-inspector-group {
background: #14967C;
}
body .ct-widget.ct-toolbox .pbs-inspector-group + .pbs-inspector-group + .pbs-inspect-group {
background: #0F705D;
}
body .ct-widget.ct-toolbox .pbs-shortcode-group .pbs-option-subtitle {
font-size: 12px !important;
font-weight: normal !important;
margin: 4px 0;
text-transform: uppercase !important;
}
body .ct-widget.ct-toolbox .pbs-shortcode-group .ct-tool.pbs-button.pbs-color {
width: 100% !important;
text-align: inherit;
padding: 13px !important;
}
body .ct-widget.ct-toolbox .pbs-shortcode-group .ct-tool.pbs-button.pbs-color:hover {
background: transparent !important;
}
body .ct-widget.ct-toolbox .pbs-shortcode-group .ct-tool.pbs-button.pbs-color .pbs-option-subtitle {
display: inline-block;
}
body .ct-widget.ct-toolbox .pbs-shortcode-group .ct-tool.pbs-button.pbs-color .pbs-color-preview {
margin: 0 10px !important;
}
body .ct-widget.ct-toolbox .pbs-shortcode-group .ct-tool.pbs-button.pbs-color:after {
display: none !important;
}
body .ct-widget.ct-toolbox .pbs-shortcode-group .ct-tool.pbs-button.pbs-color .pbs-color-popup {
position: absolute;
}
body .ct-widget.ct-toolbox .pbs-inspector-shortcode-note {
padding: 13px;
font-style: italic;
font-size: .8em;
line-height: 1.2em;
border: 0;
margin-bottom: -50px;
background: transparent;
color: #555;
margin-top: 30px;
font-weight: normal;
text-align: center;
}
body .ct-widget.ct-toolbox .pbs-text-formatting-title {
background: #FDAB0F;
}
body .ct-widget.ct-toolbox .pbs-change-type-title {
background: #00C7AB;
}
body .ct-widget.ct-toolbox .pbs-advanced-formatting-title {
background: #5696D4;
}
body .ct-widget.ct-toolbox .pbs-interactive-elements-title {
background: #6D808C;
}
body .ct-widget.ct-toolbox .pbs-design-elements-title {
background: #D2527F;
}
body .ct-widget.ct-toolbox .pbs-shortcodes-title {
background: #F89406;
}
body .ct-widget.ct-toolbox .pbs-rows-columns-title {
background: #EB7565;
}
[data-subgroup] {
width: 100%;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
background: white;
margin: 5px !important;
border-radius: 3px;
width: calc(100% - 10px);
}
[data-subgroup] > .pbs-option-subtitle {
width: 100%;
padding-bottom: 3px;
font-size: 12px !important;
text-transform: uppercase !important;
font-weight: bold !important;
padding: 10px;
letter-spacing: -.5px;
}
.ct-widget .ct-tool.pbs-toggle-advanced {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
width: 100px !important;
height: auto !important;
text-transform: uppercase;
font-size: 10px !important;
line-height: 2.5em !important;
color: #384044 !important;
background: rgba(0, 0, 0, 0.1);
padding: 8px !important;
margin: 20px auto !important;
}
.ct-widget .ct-tool.pbs-toggle-advanced:after {
display: none !important;
}
.pbs-advanced-tool {
display: none !important;
}
.pbs-show-advanced .pbs-advanced-tool {
display: block !important;
}
body .ct-widget.ct-toolbox .pbs-dom-group {
background: #00C7AB !important;
}
body .ct-widget.ct-toolbox .pbs-row-group {
background: #d8335b !important;
}
body .ct-widget.ct-toolbox .pbs-col-group {
background: #5696D4 !important;
}
body .ct-widget.ct-toolbox .pbs-shortcode-group {
background: #F06050 !important;
}
.pbs-collapsable-title {
-webkit-user-select: none;
-ms-user-select: none;
-moz-user-select: none;
user-select: none;
cursor: n-resize;
position: relative;
}
.pbs-collapsable-title:after {
content: '\EA6B';
font-family: 'pbs';
font-size: 15px;
position: absolute;
right: 13px;
top: 50%;
opacity: .8;
transition: all .2s ease-in-out;
transform: translateY(-50%) rotate(0deg);
}
.pbs-collapse {
padding-bottom: 0 !important;
overflow: hidden;
}
.pbs-collapse .pbs-collapsable-title {
cursor: s-resize;
}
.pbs-collapse .pbs-collapsable-title:after {
transform: translateY(-50%) rotate(180deg);
}
/**
* Shortcode grouped options. Make them look like an accordion.
*/
.pbs-shortcode-group.pbs-collapse [data-subgroup] {
box-shadow: none !important;
}
.pbs-shortcode-group [data-subgroup] > .pbs-option-subtitle {
padding: 10px 40px 10px 13px;
margin: 0 !important;
background: rgba(0, 0, 0, 0.17);
}
.pbs-shortcode-group [data-subgroup] > .pbs-option-subtitle:after {
font-size: 12px;
opacity: 1;
}
.pbs-shortcode-group [data-subgroup] > .pbs-option-subtitle:after {
display: none;
}
.pbs-shortcode-group [data-subgroup].pbs-collapse > .pbs-option-subtitle:after {
transform: none;
}
/**
* Paragraph Tool styles.
*/
body .ct-widget .ct-tool.ct-tool--paragraph-picker {
width: 135px !important;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
line-height: 45px;
font-size: 13px;
text-align: left;
padding: 0 24px 0 13px !important;
position: relative;
}
body .ct-widget .ct-tool.ct-tool--paragraph-picker.ct-tool--applied {
background: transparent;
box-shadow: none !important;
}
body .ct-widget .ct-tool.ct-tool--paragraph-picker:before {
content: '\EA6B';
font-family: pbs !important;
font-size: 13px !important;
font-weight: normal !important;
font-style: normal !important;
position: absolute;
right: 7px;
}
body .ct-widget .ct-tool.ct-tool--paragraph-picker > div {
left: -13px;
display: none;
width: 220px;
background: #fff;
position: relative;
z-index: 999;
border-radius: 3px;
}
body .ct-widget .ct-tool.ct-tool--paragraph-picker > div > * {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
line-height: 20px !important;
padding: 10px 13px !important;
margin: 0 !important;
}
body .ct-widget .ct-tool.ct-tool--paragraph-picker > div > *:hover {
background: #5CC4B8;
color: #fff;
}
body .ct-widget .ct-tool.ct-tool--paragraph-picker > div > *:before,
body .ct-widget .ct-tool.ct-tool--paragraph-picker > div > *:after {
display: none !important;
}
body .ct-widget .ct-tool.ct-tool--paragraph-picker > div p,
body .ct-widget .ct-tool.ct-tool--paragraph-picker > div pre,
body .ct-widget .ct-tool.ct-tool--paragraph-picker > div blockquote {
font-size: 13px !important;
font-weight: normal !important;
border: 0 !important;
line-height: 1em !important;
display: block !important;
width: 100% !important;
font-style: normal !important;
}
body .ct-widget .ct-tool.ct-tool--paragraph-picker > div pre {
font-family: courier,"Bitstream Vera Sans Mono",Consolas,Courier,monospace !important;
}
body .ct-widget .ct-tool.ct-tool--paragraph-picker > div blockquote {
font-family: Georgia,Times,"Times New Roman",serif !important;
font-style: italic !important;
}
body .ct-widget .ct-tool.ct-tool--paragraph-picker > div h1,
body .ct-widget .ct-tool.ct-tool--paragraph-picker > div h2,
body .ct-widget .ct-tool.ct-tool--paragraph-picker > div h3,
body .ct-widget .ct-tool.ct-tool--paragraph-picker > div h4,
body .ct-widget .ct-tool.ct-tool--paragraph-picker > div h5,
body .ct-widget .ct-tool.ct-tool--paragraph-picker > div h6 {
font-weight: bold !important;
font-style: normal !important;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
}
body .ct-widget .ct-tool.ct-tool--paragraph-picker > div h1 {
font-size: 27px !important;
line-height: 24px !important;
}
body .ct-widget .ct-tool.ct-tool--paragraph-picker > div h2 {
font-size: 22px !important;
}
body .ct-widget .ct-tool.ct-tool--paragraph-picker > div h3 {
font-size: 19px !important;
}
body .ct-widget .ct-tool.ct-tool--paragraph-picker > div h4 {
font-size: 15px !important;
}
body .ct-widget .ct-tool.ct-tool--paragraph-picker > div h5 {
font-size: 13px !important;
}
body .ct-widget .ct-tool.ct-tool--paragraph-picker > div h6 {
font-size: 11px !important;
}
body .ct-widget .ct-tool.ct-tool--paragraph-picker.pbs-paragraph-picker-type-p [data-tag="p"],
body .ct-widget .ct-tool.ct-tool--paragraph-picker.pbs-paragraph-picker-type-h1 [data-tag="h1"],
body .ct-widget .ct-tool.ct-tool--paragraph-picker.pbs-paragraph-picker-type-h2 [data-tag="h2"],
body .ct-widget .ct-tool.ct-tool--paragraph-picker.pbs-paragraph-picker-type-h3 [data-tag="h3"],
body .ct-widget .ct-tool.ct-tool--paragraph-picker.pbs-paragraph-picker-type-h4 [data-tag="h4"],
body .ct-widget .ct-tool.ct-tool--paragraph-picker.pbs-paragraph-picker-type-h5 [data-tag="h5"],
body .ct-widget .ct-tool.ct-tool--paragraph-picker.pbs-paragraph-picker-type-h6 [data-tag="h6"],
body .ct-widget .ct-tool.ct-tool--paragraph-picker.pbs-paragraph-picker-type-blockquote [data-tag="blockquote"],
body .ct-widget .ct-tool.ct-tool--paragraph-picker.pbs-paragraph-picker-type-pre [data-tag="pre"] {
background: #04AA99;
color: #fff;
}
body .ct-widget .ct-tool.ct-tool--paragraph-picker.pbs-paragraph-picker-type-h1,
body .ct-widget .ct-tool.ct-tool--paragraph-picker.pbs-paragraph-picker-type-h2,
body .ct-widget .ct-tool.ct-tool--paragraph-picker.pbs-paragraph-picker-type-h3,
body .ct-widget .ct-tool.ct-tool--paragraph-picker.pbs-paragraph-picker-type-h4,
body .ct-widget .ct-tool.ct-tool--paragraph-picker.pbs-paragraph-picker-type-h5,
body .ct-widget .ct-tool.ct-tool--paragraph-picker.pbs-paragraph-picker-type-h6 {
font-weight: bold;
}
body .ct-widget .ct-tool.ct-tool--paragraph-picker.pbs-paragraph-picker-type-blockquote {
font-style: italic;
font-family: Georgia,Times,"Times New Roman",serif !important;
}
body .ct-widget .ct-tool.ct-tool--paragraph-picker.pbs-paragraph-picker-type-pre {
font-family: courier,"Bitstream Vera Sans Mono",Consolas,Courier,monospace !important;
font-size: 12px;
}
.ct-toolbox .pbs-option-error {
border: 1px solid #D33257 !important;
}
.pbs-shortcode-group .pbs-tool-option:not(.pbs-collapsable-title) {
border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
}
.pbs-option-horizontal-layout {
display: -ms-flexbox;
display: flex;
-ms-flex-align: center;
align-items: center;
-ms-flex-pack: justify;
justify-content: space-between;
margin-left: -10px !important;
margin-right: -10px !important;
width: calc(100% + 20px) !important;
}
.pbs-option-horizontal-layout > * {
margin-left: 10px !important;
margin-right: 10px !important;
-ms-flex-positive: 1;
flex-grow: 1;
}
.pbs-option-horizontal-layout > *:last-child {
-ms-flex-positive: 0;
flex-grow: 0;
-ms-flex-negative: 0;
flex-shrink: 0;
}
.pbs-description-sc-map-premium {
font-style: italic;
background: rgba(0, 0, 0, 0.02);
padding: 8px;
border-radius: 4px;
border: 1px solid rgba(0, 0, 0, 0.1);
margin: 10px 0 0;
}
.pbs-group-footer {
margin: 10px !important;
padding: 8px !important;
border: 1px solid rgba(0, 0, 0, 0.1) !important;
font-size: 12px !important;
font-style: italic !important;
text-align: center;
background: rgba(0, 0, 0, 0.02);
border-radius: 4px;
}
.ct-tool.ct-tool--add-element-button:before {
content: "\f132";
font-size: 20px;
font-family: dashicons;
}
.ct-tool.ct-tool--add-element-button.ct-tool--applied:before {
content: "\f460";
}
.ct-tool.pbs-add-element-list {
width: 100% !important;
background: transparent !important;
margin: 0 !important;
display: none;
cursor: default !important;
box-shadow: none !important;
height: auto !important;
padding: 15px 0 0 !important;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
}
.ct-tool.pbs-add-element-list > div {
width: calc(50% - 6px);
float: left;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
margin: 3px 3px !important;
padding: 5px;
box-shadow: inset 0 0 1px 0 rgba(0, 0, 0, 0.4);
border-radius: 2px;
background: rgba(0, 0, 0, 0.04);
box-sizing: border-box;
cursor: pointer;
font-size: 10px;
font-weight: bold;
padding: 5px;
word-break: break-all;
transition: all .2s ease-in-out;
}
.ct-tool.pbs-add-element-list > div:hover {
background: rgba(0, 0, 0, 0.1);
}
.ct-tool.pbs-add-element-list h4 {
margin: 3px 0 10px !important;
padding: 0 !important;
font-size: 10px !important;
font-weight: bold !important;
line-height: 1.1em;
color: #444 !important;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
word-break: break-word;
}
.ct-tool.pbs-add-element-list p {
font-style: italic;
color: #999;
margin: -4px 0 1px !important;
font-size: 9px !important;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
word-break: break-word;
line-height: 1.4em !important;
}
.ct-tool.pbs-add-element-list .pbs-add-element-list-none-found {
width: 100%;
font-size: 11px;
font-style: italic;
display: none;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
}
.ct-tool.pbs-add-element-list img {
margin: -4px -4px 8px;
box-shadow: inset 0 0 1px 0 rgba(0, 0, 0, 0.4);
border-top-left-radius: 2px;
border-top-right-radius: 2px;
width: calc(100% + 8px);
height: auto !important;
max-width: none;
}
.ct-tool.pbs-add-element-list:after {
content: '';
display: block;
clear: both;
}
.ct-tool.pbs-add-element-list input[type="search"] {
position: absolute;
left: 50px;
top: -36px;
width: calc(100% - 50px) !important;
background: none !important;
box-sizing: border-box;
height: 32px !important;
padding: 0 24px 0 8px !important;
border-top: 0 !important;
border-left: 0 !important;
border-right: 0 !important;
border-color: #95A5A6 !important;
border-radius: 0 !important;
color: #4E5863 !important;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
font-size: 12px !important;
line-height: 32px !important;
box-sizing: border-box !important;
}
.ct-tool.pbs-add-element-list input[type="search"]:hover {
background: rgba(0, 0, 0, 0.02) !important;
}
.ct-tool.pbs-add-element-list input[type="search"]:focus {
background: rgba(0, 0, 0, 0.04) !important;
}
.ct-tool.pbs-add-element-list:before {
content: "\f179";
position: absolute;
top: -35px;
right: -5px;
width: 32px;
height: 32px;
font-family: "dashicons";
color: #95A5A6;
}
.pbs-shortcodes-group .ct-tool.pbs-add-element-list h4 {
margin: 3px 0 !important;
}
.pbs-inspector-group .pbs-option-margins-and-paddings {
height: 166px;
position: relative;
}
.pbs-inspector-group .pbs-option-margins-and-paddings .pbs-option-row-margin {
height: 100%;
position: relative;
margin: 5px -3px -3px;
}
.pbs-inspector-group .pbs-option-margins-and-paddings input {
position: absolute;
width: 30px !important;
font-size: 9px !important;
padding: 2px 3px !important;
}
.pbs-inspector-group .pbs-option-margins-and-paddings [data-style*="-top"] {
top: 3px;
left: 50%;
transform: translateX(-20%);
}
.pbs-inspector-group .pbs-option-margins-and-paddings [data-style*="-right"] {
top: 50%;
right: 3px;
transform: translateY(-50%);
}
.pbs-inspector-group .pbs-option-margins-and-paddings [data-style*="-bottom"] {
bottom: 3px;
left: 50%;
transform: translateX(-20%);
}
.pbs-inspector-group .pbs-option-margins-and-paddings [data-style*="-left"] {
left: 3px;
top: 50%;
transform: translateY(-50%);
}
.pbs-inspector-group .pbs-option-margins-and-paddings .pbs-option-row-border {
width: calc(100% - 64px);
height: calc(100% - 48px);
position: absolute;
top: 24px;
left: 32px;
box-shadow: inset 0 0 1px #fff;
border-radius: 3px;
}
.pbs-inspector-group .pbs-option-margins-and-paddings .pbs-option-row-padding {
width: calc(100% - 134px);
height: calc(100% - 96px);
position: absolute;
top: 48px;
left: 67px;
box-shadow: inset 0 0 1px #fff;
border-radius: 3px;
}
.pbs-inspector-group .pbs-option-margins-and-paddings span {
font-size: 8px;
font-style: italic;
left: 3px;
position: absolute;
top: 3px;
}
.pbs-inspector .pbs-color h4 {
display: inline-block;
}
.pbs-color-preview {
width: 24px;
height: 24px;
display: inline-block;
border-radius: 100%;
vertical-align: middle !important;
cursor: pointer;
box-shadow: inset 0 0 1px 0 rgba(0, 0, 0, 0.7);
transform: translateY(-1px);
background: linear-gradient(45deg, #aaa 0, #aaa 25%, transparent 25%, transparent 75%, #aaa 75%, #aaa 100%), linear-gradient(45deg, #aaa 0, #aaa 3px, #aaa 25%, transparent 25%, transparent 75%, #aaa 75%, #aaa 100%), white;
background-position: 0 0, 36px 36px;
background-origin: padding-box;
background-clip: border-box;
background-size: 24px 24px;
}
.pbs-color-popup {
display: none;
box-sizing: border-box;
width: auto;
padding: 15px 0 0 !important;
}
.pbs-color-popup .iris-picker {
box-shadow: none;
margin: 0 auto !important;
}
.pbs-color-popup input {
padding: 4px !important;
width: 180px !important;
display: block;
margin: 5px auto 0;
}
.pbs-color-popup input,
.pbs-color-popup input:focus,
.pbs-color-popup input:hover {
background: #fff !important;
color: #1a1a1a !important;
}
.pbs-color-button {
float: left !important;
margin: 10px !important;
clear: none;
width: auto !important;
cursor: pointer;
}
.pbs-color-button .pbs-color-popup {
position: absolute;
}
.pbs-shortcode-group .pbs-color .pbs-color-preview {
border-radius: 100%;
}
.pbs-option-number-slider .ui-slider-handle {
position: absolute;
z-index: 2;
border-radius: 7px;
margin-left: -6px;
outline: none;
top: -9px;
background: #fff;
border: 1px solid #CECDCD;
height: 23px;
width: 12px;
}
.pbs-option-number-slider .ui-slider a:focus {
outline: none;
}
.pbs-option-number-slider .ui-slider-range {
background: #eee;
height: 100%;
}
.pbs-option-number-slider {
position: relative;
background: #eaeaea;
border: none !important;
border-radius: 6px;
width: 250px;
height: 5px;
margin-right: 20px;
display: inline-block;
vertical-align: bottom;
margin-bottom: 6px;
cursor: ew-resize;
margin-left: 15px !important;
}
.pbs-option-number-slider ~ input {
width: 60px !important;
}
.pbs-checkbox input {
display: none;
}
.pbs-checkbox input,
.pbs-checkbox input:after,
.pbs-checkbox input:before,
.pbs-checkbox input *,
.pbs-checkbox input *:after,
.pbs-checkbox input *:before,
.pbs-checkbox input + label {
box-sizing: border-box;
}
.pbs-checkbox input::-moz-selection,
.pbs-checkbox input:after::-moz-selection,
.pbs-checkbox input:before::-moz-selection,
.pbs-checkbox input *::-moz-selection,
.pbs-checkbox input *:after::-moz-selection,
.pbs-checkbox input *:before::-moz-selection,
.pbs-checkbox input + label::-moz-selection {
background: none;
}
.pbs-checkbox input::selection,
.pbs-checkbox input:after::selection,
.pbs-checkbox input:before::selection,
.pbs-checkbox input *::selection,
.pbs-checkbox input *:after::selection,
.pbs-checkbox input *:before::selection,
.pbs-checkbox input + label::selection {
background: none;
}
.pbs-checkbox input + label {
outline: 0;
display: block;
width: 40px;
height: 22px;
position: relative;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.pbs-checkbox input + label:after,
.pbs-checkbox input + label:before {
position: relative;
display: block;
content: "";
width: 50%;
height: 100%;
}
.pbs-checkbox input + label:after {
left: 0;
}
.pbs-checkbox input + label:before {
display: none;
}
.pbs-checkbox input:checked + label:after {
left: 50%;
}
.pbs-checkbox input + label {
background: rgba(255, 255, 255, 0.1);
border-radius: 2em;
padding: 2px;
transition: all .4s ease;
background: #dadada;
}
.pbs-checkbox input + label:after {
border-radius: 50%;
background: #fff;
transition: all .2s ease;
}
.pbs-checkbox input:checked + label {
background: #5CC4B8;
}
.pbs-toolbox-properties .pbs-image-preview {
margin-top: 10px;
min-height: 80px;
background-size: cover;
background-position: center;
border-radius: 4px;
cursor: pointer;
transition: opacity .3s ease-in-out;
position: relative;
z-index: 1;
}
.pbs-toolbox-properties .pbs-image-preview:before {
display: none;
position: absolute;
content: '\EA42';
font-family: 'pbs';
font-size: 30px;
width: 30px;
height: 30px;
line-height: 1em;
top: 50%;
left: 50%;
color: #dadada;
opacity: 0.9;
margin-left: -.5em;
margin-top: -.5em;
}
.pbs-toolbox-properties .pbs-image-preview[data-id=""],
.pbs-toolbox-properties .pbs-image-preview.pbs-loading,
.pbs-toolbox-properties .pbs-image-preview.pbs-ajax-error {
background-color: #fff;
border: 1px solid #dadada;
}
.pbs-toolbox-properties .pbs-image-preview[data-id=""]:before,
.pbs-toolbox-properties .pbs-image-preview.pbs-loading:before,
.pbs-toolbox-properties .pbs-image-preview.pbs-ajax-error:before {
display: block;
}
.pbs-toolbox-properties .pbs-image-preview[data-id]:not([data-id=""]) {
background-color: #53555D;
}
.pbs-toolbox-properties .pbs-image-preview.pbs-loading:before {
content: '\EA77';
animation: pbs-spin 1s infinite linear;
}
.pbs-toolbox-properties .pbs-image-preview.pbs-ajax-error:before {
content: '\EA78';
}
.pbs-toolbox-properties .pbs-image-preview .pbs-image-preview-remove {
position: absolute;
z-index: 2;
top: 4px;
right: 4px;
height: 24px;
width: 24px;
border-radius: 4px;
background: rgba(255, 255, 255, 0.6);
border: 1px solid rgba(255, 255, 255, 0.3);
color: #222;
font-size: 18px;
}
.pbs-toolbox-properties .pbs-image-preview .pbs-image-preview-remove:before {
position: absolute;
top: 50%;
left: 50%;
transform: translateY(-50%) translateX(-50%);
content: '\EA6A';
font-family: 'pbs';
}
.pbs-toolbox-properties .pbs-image-preview:hover {
opacity: .7;
}
.pbs-toolbox-properties .pbs-image-preview:before {
content: '\EA79';
}
.pbs-tool-option.pbs-file .pbs-option-horizontal-layout {
margin-left: -5px !important;
margin-right: -5px !important;
width: calc(100% + 10px) !important;
}
.pbs-tool-option.pbs-file .pbs-option-horizontal-layout > * {
margin: 0 5px !important;
}
.pbs-tool-option.pbs-file .pbs-option-horizontal-layout button {
background: #5CC4B8;
fill: #fff;
border: 0;
outline: none;
}
.pbs-tool-option.pbs-multicheck .pbs-option-multicheck-list {
margin-top: 10px;
}
.pbs-tool-option.pbs-multicheck label {
margin-bottom: 10px;
display: -ms-flexbox;
display: flex;
cursor: pointer;
}
.pbs-tool-option.pbs-multicheck label svg {
transition: transform 0.2s ease;
pointer-events: none;
display: inline-block;
fill: #fff;
background: #fff;
margin-right: 10px;
box-shadow: inset 0 0 0 1px #dadada;
border-radius: 2px;
}
.pbs-tool-option.pbs-multicheck label:active > svg {
transform: scale3d(0.8, 0.8, 1);
}
.pbs-tool-option.pbs-multicheck label input + svg .checked {
display: none;
}
.pbs-tool-option.pbs-multicheck label input:checked + svg {
box-shadow: none;
background: #5CC4B8;
box-shadow: inset 0 0 0 1px #fff;
}
.pbs-tool-option.pbs-multicheck label input:checked + svg .unchecked {
display: none;
}
.pbs-tool-option.pbs-multicheck label input:checked + svg .checked {
display: inline-block;
fill: #fafafa;
}
.pbs-tool-option.pbs-multicheck label input:checked + svg path {
fill: rgba(255, 255, 255, 0.9);
}
.pbs-tool-option.pbs-multicheck label input:disabled + svg {
cursor: default;
}
.pbs-tool-option.pbs-multicheck label input:disabled + svg:active {
transform: none;
}
.pbs-tool-option.pbs-multicheck label input:disabled + svg path {
fill: #B0B0B0;
}
.pbs-tool-option.pbs-multicheck label input {
display: block;
position: absolute;
opacity: 0;
width: 0 !important;
height: 0 !important;
}
.pbs-inspector-group .pbs-iframe .pbs-option-subtitle:empty {
display: none;
}
.pbs-inspector-group .pbs-iframe .pbs-description {
margin-top: 10px;
}
.pbs-inspector-group input.pbs-option-iframe-button {
width: auto !important;
min-width: 70px;
max-width: 150px;
}
.pbs-inspector-group input.pbs-option-iframe-button[disabled] {
opacity: .6;
}
.pbs-inspector-group input.pbs-option-iframe-button:hover {
background: rgba(255, 255, 255, 0.2) !important;
}
/* Compatibility for Twenty Fifteen */
.ce-element--type-icon * {
pointer-events: none;
}
.ce-element--type-icon.ce-element--over,
.ce-element--type-icon.ce-element--focused {
outline: 4px solid rgba(243, 156, 18, 0.35);
}
.pbs-modal-frame.media-modal.pbs-icon-modal .pbs-search-list-frame .pbs-search-list > * {
width: 65px;
height: 65px;
padding: 4px;
width: 100px;
height: 100px;
min-width: 100px;
}
.pbs-modal-frame.media-modal.pbs-icon-modal .pbs-search-list-frame .pbs-search-list svg {
width: 100%;
height: 100%;
}
.pbs-modal-frame.media-modal.pbs-icon-modal .pbs-search-list-frame .pbs-search-list .pbs-icon-group-title {
width: 100%;
margin: 0;
font-size: 12px;
text-transform: none;
border: 0;
padding: 0;
height: auto;
background: transparent;
cursor: default;
-ms-flex-preferred-size: inherit;
flex-basis: inherit;
-ms-flex-preferred-size: initial;
flex-basis: initial;
}
.pbs-modal-frame.media-modal.pbs-icon-modal .pbs-search-list-frame .pbs-search-list .pbs-icon-group-title:hover {
background: transparent !important;
}
.pbs-modal-frame.pbs-icon-modal {
left: 15%;
right: 15%;
}
[data-ce-tag=img] {
margin-left: inherit;
margin-right: inherit;
box-shadow: none !important;
}
a[data-ce-tag="img"][data-ce-tag="img"] {
border: none;
}
.wp-core-ui button,
.wp-core-ui .button,
.wp-core-ui .button-primary,
.wp-core-ui label {
font-weight: inherit;
}
.wp-core-ui .advanced-toggle {
line-height: inherit;
font-weight: inherit;
font-size: inherit;
}
.wp-core-ui .attachment .thumbnail img {
max-width: none !important;
}
.wp-clearfix:after {
display: block;
content: '';
clear: both;
}
.ce-element--type-image.pbs-image-loading {
background: url(../assets/element-icons/image.svg) !important;
background-size: 30px !important;
background-position: center !important;
background-repeat: no-repeat !important;
background-color: #f1f1f1 !important;
}
#pbs-learn-premium-wrapper {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 999999;
background: rgba(0, 0, 0, 0.6);
display: -ms-flexbox;
display: flex;
-ms-flex-pack: center;
justify-content: center;
-ms-flex-align: center;
align-items: center;
opacity: 0;
}
#pbs-learn-premium-wrapper .pbs-learn-premium-tag {
background: url(../assets/element-icons/premium_flag.svg) 100px;
height: 100px;
width: 100px;
display: block;
margin: 30px auto;
border-top-right-radius: 10px;
}
#pbs-learn-premium-wrapper .pbs-learn-premium-tag-wrapper {
margin: -30px -30px 0;
background: #ef584d;
}
#pbs-learn-premium-wrapper .pbs-learn-premium-elements h2 {
padding-bottom: 30px;
}
#pbs-learn-premium-wrapper .pbs-learn-premium-elements h2 + div {
padding: 30px 100px;
text-align: center;
font-style: italic;
-ms-flex-positive: 1;
flex-grow: 1;
-ms-flex-pack: center;
justify-content: center;
-ms-flex-item-align: center;
align-self: center;
-ms-flex-align: center;
align-items: center;
display: -ms-flexbox;
display: flex;
}
#pbs-learn-premium-wrapper .pbs-learn-premium {
overflow: hidden;
height: calc(90% - 30px);
width: calc(90% - 30px);
background-color: #fff;
padding: 30px;
box-sizing: border-box;
border-radius: 10px;
max-width: 900px;
max-height: 550px;
transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
transform: scale(0.7);
display: -ms-flexbox;
display: flex;
-ms-flex-direction: column;
flex-direction: column;
}
#pbs-learn-premium-wrapper .pbs-learn-premium > .pbs-learn-carousel {
-ms-flex-positive: 1;
flex-grow: 1;
}
#pbs-learn-premium-wrapper.pbs-shown {
opacity: 1;
}
#pbs-learn-premium-wrapper.pbs-shown .pbs-learn-premium {
transform: scale(1);
}
#pbs-learn-premium-wrapper * {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}
#pbs-learn-premium-wrapper h2 {
font-size: 24px;
text-align: center;
margin-bottom: 10px;
margin-top: -30px;
margin-left: -30px;
margin-right: -30px;
padding: 50px 30px 10px;
margin-bottom: 0;
font-size: 24px;
color: #939598;
text-transform: uppercase;
}
#pbs-learn-premium-wrapper h2 span {
font-weight: bold;
font-size: 30px;
color: #504F4D;
}
#pbs-learn-premium-wrapper h2 strong {
color: #FB7268;
}
#pbs-learn-premium-wrapper h2 + p {
text-align: center;
padding: 0 20px 20px;
line-height: 1.6em;
margin-bottom: 0;
font-size: 14px;
color: #939598;
}
#pbs-learn-premium-wrapper .pbs-learn-buy-button {
text-align: center;
margin: 0 -30px -30px;
padding: 24px 30px;
background: #F4F4F4;
}
#pbs-learn-premium-wrapper .pbs-learn-buy-button a {
cursor: pointer;
display: inline-block;
color: #fff;
background: #FB7268;
padding: .7em 1.2em;
font-size: 14px;
border-radius: 3px;
text-transform: uppercase;
margin: 0 10px;
transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 2.075);
transform: scale(1);
}
#pbs-learn-premium-wrapper .pbs-learn-buy-button a:hover {
background: #ef584d;
transform: scale(1.05);
}
#pbs-learn-premium-wrapper .pbs-learn-buy-button a.pbs-trial-button {
background: #fff;
color: #FB7268;
box-sizing: content-box;
box-shadow: inset 0 0 0 1px #FB7268;
}
#pbs-learn-premium-wrapper .pbs-learn-buy-button a.pbs-trial-button:hover {
color: #ef584d;
box-shadow: inset 0 0 0 1px #ef584d;
}
#pbs-learn-premium-wrapper .pbs-learn-carousel {
margin-top: -150px;
z-index: -1;
position: relative;
display: -ms-flexbox;
display: flex;
-ms-flex-direction: column;
flex-direction: column;
margin-left: -30px;
margin-right: -30px;
}
#pbs-learn-premium-wrapper .pbs-learn-carousel .pbs-learn-slides {
height: 100%;
width: 100%;
position: relative;
-ms-flex-positive: 1;
flex-grow: 1;
}
#pbs-learn-premium-wrapper .pbs-learn-carousel .pbs-learn-slides img {
opacity: .9;
}
#pbs-learn-premium-wrapper .pbs-learn-carousel .pbs-learn-slides > div {
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
text-align: center;
opacity: 0;
transition: opacity 1000ms;
background-size: cover;
background-position: center;
}
#pbs-learn-premium-wrapper .pbs-learn-carousel .pbs-learn-slides > div[data-state=active] {
display: block;
opacity: 1;
z-index: 2;
}
#pbs-learn-premium-wrapper .pbs-learn-carousel .pbs-learn-slides > div h3 {
margin-top: 15px !important;
font-weight: bold;
font-size: 26px;
margin-bottom: 0;
color: #FB7268;
text-shadow: 0 0 30px rgba(255, 255, 255, 0.6);
padding: 0 30px;
}
#pbs-learn-premium-wrapper .pbs-learn-carousel .pbs-learn-slides > div p {
font-size: 14px;
line-height: 1.6em;
text-shadow: 0 0 30px rgba(255, 255, 255, 0.7);
color: #939598;
padding: 0 30px;
}
#pbs-learn-premium-wrapper .pbs-learn-carousel .pbs-learn-slides > div:nth-child(4) h3 {
margin-top: 90px;
}
#pbs-learn-premium-wrapper .pbs-learn-carousel .pbs-learn-indicators {
text-align: center;
margin-bottom: 10px;
}
#pbs-learn-premium-wrapper .pbs-learn-carousel .pbs-learn-indicators label {
cursor: pointer;
margin: 10px 6px;
width: 14px;
height: 14px;
background: transparent;
border-radius: 100%;
display: inline-block;
box-sizing: border-box;
padding: 4px;
background: #e0e0e0;
transition: all .3s ease-in-out;
}
#pbs-learn-premium-wrapper .pbs-learn-carousel .pbs-learn-indicators label:hover {
background: #BCBEC0;
}
#pbs-learn-premium-wrapper .pbs-learn-carousel .pbs-learn-indicators label[data-state="active"] {
background: #BCBEC0;
}
#pbs-learn-premium-wrapper .pbs-learn-carousel .pbs-learn-indicators label input {
position: absolute;
visibility: hidden;
}
.pbs-premium-flag,
body .ct-tool.pbs-tool-option.pbs-premium-flag {
cursor: help !important;
position: relative;
background-image: url(../assets/element-icons/premium_flag.svg) !important;
background-repeat: no-repeat !important;
background-position: top right !important;
background-size: 25px !important;
}
.pbs-premium-flag:before,
body .ct-tool.pbs-tool-option.pbs-premium-flag:before {
opacity: .4;
}
.pbs-premium-flag > *,
body .ct-tool.pbs-tool-option.pbs-premium-flag > * {
opacity: .6;
}
.pbs-description-sc-map-premium.pbs-premium-flag {
background-size: 20px !important;
}
.pbs-toolbox-bar .pbs-premium-flag,
#wpadminbar .pbs-premium-flag {
background-size: 6px !important;
background-image: url(../assets/element-icons/premium_flag_dark.svg) !important;
}
.pbs-toolbox-bar .pbs-premium-flag .ab-item,
#wpadminbar .pbs-premium-flag .ab-item {
cursor: help;
}
body .ct-tool.pbs-tool-option.pbs-premium-flag {
background-color: #fafafa !important;
background-size: 15px !important;
background-image: url(../assets/element-icons/premium_flag.svg) !important;
}
body .ct-tool.pbs-tool-option.pbs-premium-flag > * {
transition: .3s all ease-in-out;
opacity: .4 !important;
}
body .ct-tool.pbs-tool-option.pbs-premium-flag * {
cursor: no-drop !important;
}
body .ct-tool.pbs-tool-option.pbs-premium-flag:hover > * {
opacity: 1 !important;
}
.pbs-collapsable-title.pbs-premium-flag {
background-size: 15px !important;
}
body .pbs-premium-flag-container .ct-tool.pbs-premium-flag:not(.pbs-collapsable-title) {
background-image: none !important;
}
.pbs-modal-frame .pbs-premium-flag {
background: #fff;
border-radius: 3px;
padding: 10px 15px;
}
#pbs-learn-premium-wrapper .pbs-learn-premium.pbs-learn-premium-elements {
background-image: url("../images/learn-premium-flag.png");
background-color: #fff;
background-position: 50px bottom;
background-repeat: no-repeat;
background-size: 300px;
padding-left: 330px;
padding-right: 60px;
-ms-flex-align: center;
align-items: center;
-ms-flex-pack: center;
justify-content: center;
max-width: 800px;
}
#pbs-learn-premium-wrapper .pbs-learn-premium.pbs-learn-premium-elements .pbs-learn-buy-button {
background: none;
}
#pbs-learn-premium-wrapper .pbs-learn-premium.pbs-learn-premium-elements div {
-ms-flex-positive: 0;
flex-grow: 0;
}
#pbs-learn-premium-wrapper .pbs-learn-premium.pbs-learn-premium-elements > *:not(.pbs-tour-close) {
padding: 10px;
}
#pbs-learn-premium-wrapper .pbs-learn-premium.pbs-learn-premium-elements h2 strong {
font-size: 35px;
display: block;
}
#pbs-learn-premium-wrapper .pbs-learn-premium.pbs-learn-premium-elements h2 + div {
color: #939598;
font-size: 16px;
line-height: 1.5em;
margin-top: 5px;
margin-bottom: 5px;
}
#pbs-learn-premium-wrapper .pbs-learn-premium.pbs-learn-premium-elements .pbs-learn-buy-button {
margin-bottom: 0;
}
#pbs-learn-premium-wrapper .pbs-learn-premium.pbs-learn-premium-elements .pbs-learn-buy-button a {
display: block;
margin: 11px;
}
#pbs-learn-premium-wrapper .pbs-learn-premium.pbs-learn-premium-elements .pbs-learn-small {
margin: 0;
line-height: 1em;
font-size: 11px;
font-style: italic;
color: #999;
padding: 0;
position: absolute;
bottom: 10px;
right: 10px;
}
.ce-element--type-iframe.ce-element--focused *,
.ce-element--type-iframe:hover * {
opacity: .7;
}
.ce-element--type-iframe * {
pointer-events: none;
}
.pbs-tour-modal-wrapper {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 99999;
display: -ms-flexbox;
display: flex;
-ms-flex-pack: center;
justify-content: center;
-ms-flex-align: center;
align-items: center;
background: transparent;
transition: all .3s;
}
.pbs-tour-modal-wrapper .pbs-tour-modal {
background: #fff;
padding: 10px;
border-radius: 10px;
position: relative;
transform: scale(0.9);
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
opacity: 0;
}
.pbs-tour-modal-wrapper.pbs-tour-shown {
background: rgba(0, 0, 0, 0.7);
}
.pbs-tour-modal-wrapper.pbs-tour-shown .pbs-tour-modal {
transform: scale(1);
opacity: 1;
}
.pbs-tour-close {
width: 30px;
height: 30px;
position: absolute;
top: 10px;
right: 10px;
cursor: pointer;
z-index: 999;
}
.pbs-tour-close:before {
content: "\EA6A";
font-family: pbs;
font-size: 30px;
color: #333;
line-height: 30px;
}
.pbs-modal-frame {
left: 5%;
right: 5%;
opacity: 1;
transform: scale(1) translateY(0px);
transition: opacity .3s ease-in-out, transform .3s ease-in-out;
}
.pbs-modal-frame,
.pbs-modal-frame * {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}
.pbs-modal-frame .media-frame-title,
.pbs-modal-frame .media-frame-content,
.pbs-modal-frame .media-frame-toolbar {
left: 0;
right: 0;
}
.pbs-modal-frame.pbs-frame-hide {
opacity: 0;
transform: translateY(30px);
transition: none;
}
.pbs-modal-frame .media-frame-title {
display: -ms-flexbox;
display: flex;
-ms-flex-direction: row;
flex-direction: row;
padding-right: 60px;
width: 100%;
-ms-flex-pack: justify;
justify-content: space-between;
box-sizing: border-box;
-ms-flex-align: center;
align-items: center;
height: 60px;
background: #fff;
color: #333;
border-bottom: 1px solid #ddd;
box-sizing: border-box;
}
.pbs-modal-frame .media-frame-title h1 {
line-height: 1em;
height: auto;
padding: 0 20px;
font-size: 18px;
color: #333;
}
.pbs-modal-frame .media-frame-title label {
position: relative;
display: -ms-flexbox;
display: flex;
-ms-flex-align: center;
align-items: center;
padding: 0 20px;
}
.pbs-modal-frame .media-frame-title label:before {
font-family: 'pbs';
content: '\EA70';
font-size: 20px;
display: block;
margin: 0 20px;
color: #333;
}
.pbs-modal-frame .media-frame-title input {
width: 500px;
min-width: 300px;
background: #fff;
border: 0;
line-height: 1.6em;
height: 40px;
color: #444;
border: 1px solid #ddd;
border-radius: 40px;
padding: 0 20px !important;
outline: none;
font-size: 14px;
}
.pbs-modal-frame .media-frame-content {
top: 60px;
bottom: 70px;
padding: 16px;
display: -ms-flexbox;
display: flex;
-ms-flex-direction: column;
flex-direction: column;
border: 0;
}
.pbs-modal-frame .media-frame-toolbar {
background: #fafafa;
border-top: 1px solid #ddd;
box-sizing: content-box;
height: 70px;
}
.pbs-modal-frame .media-toolbar {
padding: 0 20px;
height: 70px;
}
.pbs-modal-frame.pbs-shortcode-modal .media-frame-content {
bottom: 100px;
}
.pbs-modal-frame.pbs-shortcode-modal .media-frame-toolbar,
.pbs-modal-frame.pbs-shortcode-modal .media-toolbar {
height: 100px;
}
.pbs-modal-frame .media-toolbar-secondary {
width: 66%;
display: -ms-flexbox;
display: flex;
-ms-flex-align: center;
align-items: center;
-ms-flex-direction: row;
flex-direction: row;
font-style: italic;
color: #444;
}
.pbs-modal-frame .media-toolbar-secondary p {
line-height: 1.4em;
margin: 0 !important;
}
.pbs-modal-frame .media-toolbar-secondary a {
color: #2C82C9;
border-bottom: 1px dotted #2c82c9;
}
.pbs-modal-frame .media-toolbar-secondary a:hover {
color: #42729B;
border-bottom: 1px dotted #42729B;
}
.pbs-modal-frame .media-toolbar-primary {
display: -ms-flexbox;
display: flex;
-ms-flex-align: center;
align-items: center;
-ms-flex-direction: row;
flex-direction: row;
-ms-flex-pack: end;
justify-content: flex-end;
}
.pbs-modal-frame .media-toolbar-primary button.button-large {
border: 0;
margin: 0 0 0 15px;
border-radius: 3px;
text-shadow: none !important;
box-shadow: none;
font-size: 12px;
text-transform: uppercase;
padding: .4em 1em;
height: auto;
font-weight: normal;
}
.pbs-modal-frame .media-toolbar-primary .button-primary {
background: #2C82C9;
}
.pbs-modal-frame .media-toolbar-primary .button-primary:hover,
.pbs-modal-frame .media-toolbar-primary .button-primary:active:hover {
background: #42729B;
}
.pbs-modal-frame input:not([type="checkbox"]):not([type="radio"]):not([type="button"]):not([type="submit"]):not([type="reset"]) {
box-sizing: border-box;
padding: .3em .5em;
}
.pbs-modal-frame input[type="search"] {
width: 100%;
box-sizing: border-box;
padding: .3em .5em;
}
.pbs-modal-frame .media-modal-close {
line-height: 60px;
height: 60px;
padding: 0 10px;
}
.pbs-modal-frame .media-modal-close .media-modal-icon:before {
color: #333;
font-size: 20px;
content: "\EA6A";
font-family: "pbs";
text-shadow: none;
}
.pbs-modal-frame .media-modal-close:hover .media-modal-icon:before,
.pbs-modal-frame .media-modal-close:focus .media-modal-icon:before {
color: #1DABB8;
}
.pbs-modal-frame .pbs-search-list-frame {
display: -ms-flexbox;
display: flex;
-ms-flex-direction: column;
flex-direction: column;
}
.pbs-modal-frame .pbs-search-list-frame > label {
margin-bottom: 16px;
}
.pbs-modal-frame .pbs-search-list-frame .pbs-search-list {
-ms-flex: 1 1 auto;
flex: 1 1 auto;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-ms-flex-align: start;
align-items: flex-start;
-ms-flex-line-pack: start;
align-content: flex-start;
overflow-y: auto;
}
.pbs-modal-frame .pbs-search-list-frame .pbs-search-list > * {
border: 1px solid #ddd;
border-radius: 3px;
padding: 10px;
box-sizing: border-box;
cursor: pointer;
-ms-flex: 1 1 auto;
flex: 1 1 auto;
transition: background .2s ease-in-out;
transition: all .4s;
}
.pbs-modal-frame .pbs-search-list-frame .pbs-search-list > *:not(h4):hover {
background: #fafafa;
box-shadow: 0 0 30px -8px rgba(0, 0, 0, 0.2);
transform: translateY(-5px);
}
.pbs-modal-frame .pbs-search-list-frame .pbs-search-list > *.pbs-selected {
background: #fafafa;
}
.pbs-modal-frame .pbs-search-list-frame .pbs-search-list > * img {
box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.1);
}
.pbs-modal-frame .pbs-search-list-frame .pbs-search-list > * * {
margin: 0 !important;
padding: 0 !important;
border: 0 !important;
}
.pbs-modal-frame .pbs-search-list-frame .pbs-search-list h4 {
font-size: 15px !important;
line-height: 1.7em !important;
color: #555 !important;
height: auto;
font-weight: bold !important;
}
.pbs-modal-frame .pbs-search-list-frame .pbs-search-list * + h4 {
margin-top: 15px !important;
}
.pbs-modal-frame .pbs-search-list-frame .pbs-search-list p {
font-size: 13px !important;
font-style: italic !important;
color: #777 !important;
line-height: 1.4em !important;
}
.pbs-modal-frame .pbs-search-list-frame .pbs-search-list .pbs-no-results {
font-style: italic;
color: #444;
border: 0;
width: auto;
padding: 0;
display: none;
pointer-events: none;
font-size: 14px;
width: 100% !important;
-ms-flex-pack: center;
justify-content: center;
-ms-flex-align: center;
align-items: center;
height: auto !important;
-ms-flex-item-align: stretch !important;
-ms-grid-row-align: stretch !important;
align-self: stretch !important;
width: 100% !important;
max-width: none !important;
border: 0 !important;
padding: 0 !important;
margin: 0 !important;
}
.pbs-modal-frame .pbs-search-list-frame .pbs-search-list .pbs-lite-template img {
transition: .3s all;
}
.pbs-modal-frame .pbs-search-list-frame .pbs-search-list .pbs-lite-template button.preview {
position: absolute;
top: 50%;
left: 50%;
z-index: 999;
transform: translateX(-50%) translateY(-50%);
padding: .8em 1em !important;
background: #0fa6f3 !important;
color: #fff !important;
text-transform: none;
font-size: 12px;
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
opacity: 0;
transition: .3s all;
}
.pbs-modal-frame .pbs-search-list-frame .pbs-search-list .pbs-lite-template:hover img {
opacity: .4;
}
.pbs-modal-frame .pbs-search-list-frame .pbs-search-list .pbs-lite-template:hover button.preview {
opacity: 1;
}
[dir="rtl"] .pbs-modal-frame .media-frame-title {
padding-right: 0px;
padding-left: 60px;
-ms-flex-pack: start;
justify-content: flex-start;
}
[dir="rtl"] .pbs-modal-frame .media-frame-title label {
-ms-flex-direction: row-reverse;
flex-direction: row-reverse;
}
.pbs-modal-frame .pbs-search-list-frame {
padding: 0;
}
.pbs-modal-frame .pbs-search-list-frame .pbs-search-list {
overflow-y: auto;
overflow-x: hidden;
box-sizing: border-box;
padding: 0;
}
.pbs-modal-frame .pbs-search-list-frame .pbs-search-list > * {
width: 25%;
min-width: 300px;
-ms-flex-item-align: stretch;
-ms-grid-row-align: stretch;
align-self: stretch;
border-radius: 0px !important;
padding: 20px !important;
border: 1px solid #eee;
margin-top: -1px;
margin-left: -1px;
}
#wp-link-wrap,
#wp-link-wrap * {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}
#wp-link-wrap #link-modal-title {
background: #fff;
height: 60px;
color: #333;
border: 0;
line-height: 60px;
box-sizing: border-box;
border-bottom: 1px solid #ddd;
padding-left: 20px;
}
#wp-link-wrap #wp-link-close {
height: 60px;
color: #333;
padding-right: 20px;
}
#wp-link-wrap #wp-link-close:before {
line-height: 60px;
content: "\EA6A";
font-family: "pbs";
}
#wp-link-wrap #link-selector {
top: 60px !important;
bottom: 60px !important;
padding: 0 20px 80px;
}
#wp-link-wrap .submitbox {
background: #fafafa;
border: 0;
border-top: 1px solid #ddd;
display: -ms-flexbox;
display: flex;
-ms-flex-pack: justify;
justify-content: space-between;
-ms-flex-align: center;
align-items: center;
height: 60px;
box-sizing: border-box;
}
#wp-link-wrap .submitbox #wp-link-submit,
#wp-link-wrap .submitbox #wp-link-cancel button {
border: 0 !important;
margin: 0 !important;
border-radius: 3px;
text-shadow: none !important;
box-shadow: none;
font-size: 12px !important;
text-transform: uppercase !important;
padding: .4em 1em !important;
height: auto !important;
background: #2C82C9 !important;
margin: 0 !Important;
}
#wp-link-wrap .submitbox #wp-link-submit:hover,
#wp-link-wrap .submitbox #wp-link-submit:active:hover,
#wp-link-wrap .submitbox #wp-link-cancel button:hover,
#wp-link-wrap .submitbox #wp-link-cancel button:active:hover {
background: #42729B !important;
}
#wp-link-wrap .submitbox #wp-link-cancel button {
background: #ccc !important;
color: #444 !important;
}
#wp-link-wrap .submitbox #wp-link-cancel button:hover,
#wp-link-wrap .submitbox #wp-link-cancel button:active:hover {
background: #bbb !important;
}
.pbs-busy[tabindex] > .pbs-modal-frame > .media-modal-content > * {
opacity: .2;
}
.pbs-busy[tabindex] > .pbs-modal-frame > .media-modal-content:before {
position: absolute;
content: '\EA77';
font-family: 'pbs';
top: 50%;
left: 50%;
font-size: 40px;
z-index: 9;
animation: pbs-spin 1s linear infinite;
margin-left: -20px;
margin-top: -20px;
}
[tabindex] .media-modal h1,
[tabindex] .media-modal h2,
[tabindex] .media-modal h3,
[tabindex] .media-modal h4,
[tabindex] .media-modal h5,
[tabindex] .media-modal h6,
[tabindex] .media-modal button {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
}
[tabindex] .media-modal .media-sidebar th,
[tabindex] .media-modal .media-sidebar td {
border: inherit;
}
[tabindex] .media-modal .media-sidebar .alignleft,
[tabindex] .media-modal .media-sidebar .alignright,
[tabindex] .media-modal .media-sidebar .aligncenter {
margin-bottom: inherit;
margin-right: inherit;
}
.pbs-admin-modal .media-frame-content {
bottom: 0;
padding: 0;
overflow: hidden;
}
.pbs-admin-modal .media-frame-content .media-toolbar-secondary {
width: 100%;
border: 0;
}
.pbs-editing[data-name="main-content"] .pbs--rendering[data-ce-tag="shortcode"][data-base="pbs_widget"]:after,
.pbs-editing[data-name="main-content"] [data-ce-tag="shortcode"][data-base="pbs_widget"]:empty:after {
content: "Widget is empty";
}
.pbs-editing[data-name="main-content"] .pbs--rendering[data-ce-tag="shortcode"][data-base="pbs_widget"]:after {
content: "Rendering Widget...";
}
.pbs-editing[data-name="main-content"] .pbs--rendering[data-ce-tag="shortcode"][data-base="pbs_sidebar"]:after,
.pbs-editing[data-name="main-content"] [data-ce-tag="shortcode"][data-base="pbs_sidebar"]:empty:after {
content: "Sidebar is empty";
}
.pbs-editing[data-name="main-content"] .pbs--rendering[data-ce-tag="shortcode"][data-base="pbs_sidebar"]:after {
content: "Rendering sidebar...";
}
.pbs-html-modal textarea {
height: 100%;
font-family: Inconsolata, monospace;
border: 0;
outline: none;
font-size: 15px;
}
.pbs-editing[data-name="main-content"] [data-ce-tag="html"] * {
pointer-events: none;
}
#wpadminbar {
z-index: 100000;
}
body .ct-widget.ct-toolbox.pbs-toolbox-bar {
top: 32px;
left: 0;
right: 0;
height: 45px;
position: fixed;
background: #42444a !important;
width: auto;
z-index: 99999;
overflow: visible;
opacity: 1;
transform: translateY(-100%);
transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1);
}
body .ct-widget.ct-toolbox.pbs-toolbox-bar .ct-tool-group {
height: 45px;
padding: 0;
-ms-flex-pack: center;
justify-content: center;
position: relative;
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
}
body .ct-widget.ct-toolbox.pbs-toolbox-bar .pbs-tool-sep {
margin: 5px;
width: 1px;
background: #323338;
}
body .ct-widget.ct-toolbox.pbs-toolbox-bar .ct-tool {
position: relative;
}
body .ct-widget.ct-toolbox.pbs-toolbox-bar.ct-widget--active {
transform: translateY(0%);
}
body:not([data-pbs-focused="ListItemText"]) .ct-widget.ct-toolbox.pbs-toolbox-bar .ct-tool--indent,
body:not([data-pbs-focused="ListItemText"]) .ct-widget.ct-toolbox.pbs-toolbox-bar .ct-tool--unindent {
display: none;
}
.pbs-toolbox-bar.ct-widget .ct-tool {
color: #fff;
width: 36px;
height: 45px !important;
line-height: 45px;
}
.pbs-toolbox-bar.ct-widget .ct-tool:before {
font-size: 14px;
}
.pbs-toolbox-bar.ct-widget .ct-tool.ct-tool--paragraph-picker div {
color: #333;
padding: 0;
transform: translateX(-50%);
left: 50%;
}
.pbs-toolbox-bar.ct-widget .ct-tool.ct-tool--color > div {
margin-top: 41px;
}
.pbs-toolbox-bar.ct-widget .ct-tool > div {
display: none;
background: #fff;
z-index: 99999;
position: absolute;
border-radius: 4px;
box-shadow: 0 3px 15px 0 rgba(0, 0, 0, 0.2);
padding: 10px;
box-sizing: border-box;
width: auto;
transform: translateX(-50%);
left: 50%;
margin-top: 6px;
}
.pbs-toolbox-bar.ct-widget .ct-tool input {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
font-size: 12px;
padding: 4px;
width: 180px !important;
}
.pbs-toolbox-bar.ct-widget .ct-tool:not(.ct-tool--color):not(.ct-tool--insert-element) .ui-slider {
height: 4px;
background: #ddd;
width: 100%;
margin-right: 10px;
border-radius: 2px;
cursor: ew-resize;
}
.pbs-toolbox-bar.ct-widget .ct-tool:not(.ct-tool--color):not(.ct-tool--insert-element) .ui-slider span {
left: 40%;
height: 15px;
border: 1px solid #dddddd;
width: 15px;
position: relative;
display: block;
background: white;
border-radius: 100%;
transform: translateY(-50%) translateX(-50%);
top: 2px;
margin-left: 0;
}
.pbs-toolbox-bar.ct-widget .ct-tool:not(.ct-tool--color):not(.ct-tool--insert-element) .ui-slider + input {
width: 40px !important;
padding: 5px !important;
line-height: 12px !important;
}
.pbs-toolbox-bar.ct-widget .ct-tool:not(.ct-tool--color):not(.ct-tool--insert-element) span {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
color: #42444a;
font-size: 11px;
line-height: 1em;
margin-left: 5px;
}
.pbs-toolbox-bar.ct-widget .ct-tool:not(.ct-tool--color):not(.ct-tool--insert-element) div {
-ms-flex-align: center;
align-items: center;
}
.pbs-toolbox-bar.ct-widget .ct-tool.ct-tool--line-height > div {
width: 200px;
}
.pbs-toolbox-bar.ct-widget .ct-tool.pbs-tool-show > div {
display: -ms-flexbox;
display: flex;
}
.pbs-toolbox-bar.ct-widget .ct-tool.ct-tool--color.pbs-tool-show > div {
display: block;
}
.pbs-toolbox-bar.ct-widget .ct-tool.pbs-tool-show:after {
display: none;
}
.pbs-toolbox-bar.ct-widget .ct-tool.ct-tool--color:before {
content: '';
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
border-radius: 100%;
background: linear-gradient(45deg, #aaa 0, #aaa 25%, transparent 25%, transparent 75%, #aaa 75%, #aaa 100%), linear-gradient(45deg, #aaa 0, #aaa 3px, #aaa 25%, transparent 25%, transparent 75%, #aaa 75%, #aaa 100%), #fff;
background-position: 0 0,36px 36px;
background-origin: padding-box;
background-clip: border-box;
background-size: 24px 24px;
z-index: -1;
}
.pbs-toolbox-bar.ct-widget .ct-tool.ct-tool--align > div {
width: 150px;
padding: 5px;
}
.pbs-toolbox-bar.ct-widget .ct-tool.ct-tool--align > div > div {
border-radius: 3px;
height: 36px !important;
width: 36px;
}
.pbs-toolbox-bar.ct-widget .ct-tool.ct-tool--align > div > div:before {
color: #42444a;
line-height: 36px;
display: block;
}
.pbs-toolbox-bar.ct-widget .ct-tool.ct-tool--align > div .ct-tool--disabled {
opacity: .3;
}
.pbs-toolbox-bar.ct-widget .ct-tool.ct-tool--align > div .ct-tool--applied {
background: rgba(200, 200, 200, 0.2);
}
.ct-tool--paragraph-picker.ct-tool--disabled {
opacity: .4;
}
.ct-tool--paragraph-picker.ct-tool--disabled > * {
display: none !important;
}
.pbs-toolbox-bar .ct-tool--color.ct-tool--disabled {
opacity: .4;
}
.pbs-toolbox-elements {
width: 230px !important;
top: 77px !important;
height: calc(100% - 77px) !important;
background: #f5f5f5 !important;
opacity: 1;
transform: translateX(-100%);
transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1);
}
.pbs-toolbox-elements.ct-widget--active {
transform: translateX(0);
}
.ct-tool--insert-element {
position: absolute !important;
left: 0;
}
.ct-tool--insert-element:after {
transform: translateX(50%) !important;
left: -33px !important;
}
body .ct-widget.pbs-toolbox-elements .ct-tool.pbs-element-label {
width: 100%;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
font-size: 11px;
text-align: left;
margin: 5px 10px !important;
pointer-events: none;
}
.pbs-toolbox-properties {
opacity: 0;
transform: scale(0.8);
transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
min-height: 300px;
display: -ms-flexbox;
display: flex;
-ms-flex-direction: column;
flex-direction: column;
overflow: hidden;
}
.pbs-toolbox-properties,
.pbs-toolbox-properties * {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
}
.pbs-toolbox-properties [type="button"] {
letter-spacing: -.5px;
}
.pbs-toolbox-properties:not(.ct-widget--active) {
pointer-events: none;
}
.pbs-toolbox-properties.ct-widget--active {
opacity: 1;
transform: scale(1);
}
.pbs-toolbox-properties .pbs-toolbox-titlebar,
.pbs-toolbox-properties .pbs-toolbox-tabs {
-ms-flex-negative: 0;
flex-shrink: 0;
}
.pbs-toolbox-properties .pbs-toolbox-sections {
-ms-flex-positive: 1;
flex-grow: 1;
height: auto;
overflow: auto;
overflow-x: hidden;
display: -ms-flexbox;
display: flex;
-ms-flex-direction: column;
flex-direction: column;
}
.pbs-toolbox-properties .pbs-toolbox-section {
display: none;
-ms-flex-positive: 1;
flex-grow: 1;
padding-bottom: 50px;
}
.pbs-toolbox-properties .pbs-toolbox-section.pbs-toolbox-section-shown {
display: block;
}
.pbs-toolbox-properties .pbs-toolbox-section.pbs-has-group {
background: #eaeaea;
}
.pbs-toolbox-properties .pbs-toolbox-section.pbs-shortcode-generic > *:first-child {
padding: 20px;
font-style: italic;
font-size: 12px;
line-height: 1.2em;
text-align: center;
background: #41D5C2;
color: #fff;
font-weight: bold;
}
.pbs-toolbox-properties .pbs-toolbox-section.pbs-shortcode-generic .pbs-tool-option {
padding: 15px 10px;
border-bottom: 1px solid #f1f1f1;
border-top: 1px solid #f1f1f1;
margin-top: -1px;
}
.pbs-toolbox-properties .pbs-toolbox-section.pbs-shortcode-generic .pbs-option-subtitle {
margin-bottom: 5px;
font-weight: 500;
font-size: 12px;
text-transform: capitalize;
}
.pbs-toolbox-properties .pbs-shortcode-no-options {
font-style: italic;
font-size: 13px;
text-align: center;
width: 100%;
padding: 26px 20px;
}
.pbs-toolbox-properties .pbs-toolbox-resizer {
position: absolute;
bottom: 0;
right: 0;
left: 0;
height: 10px;
background: transparent;
opacity: 0;
z-index: 9;
cursor: ns-resize;
transition: all .3s;
}
.pbs-toolbox-properties .pbs-toolbox-resizer:hover {
opacity: 1;
}
.pbs-toolbox-properties .pbs-button2 input[type="button"],
.pbs-toolbox-properties .pbs-button2 input[type="button"]:focus {
background: #5CC4B8 !important;
}
.pbs-toolbox-properties .pbs-button2 input[type="button"]:hover {
opacity: .8;
}
.pbs-toolbox-properties .pbs-button2 input[type="button"]:disabled {
background: #dadada !important;
}
.pbs-toolbox-tabs {
display: -ms-flexbox;
display: flex;
overflow: hidden;
background: #53555D;
color: #504E4D;
padding-bottom: 4px !important;
position: relative;
}
.pbs-toolbox-tabs > * {
-ms-flex-positive: 1;
flex-grow: 1;
text-align: center;
font-size: 10px !important;
text-transform: uppercase;
display: -ms-flexbox;
display: flex;
-ms-flex-pack: center;
justify-content: center;
-ms-flex-align: center;
align-items: center;
background: #dadada;
cursor: pointer;
color: #8a8a8a;
transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1);
min-height: 30px;
padding: 2px 10px !important;
max-height: 50px;
position: relative;
transform: translateY(3px);
box-shadow: inset 0 -8px 10px -4px rgba(0, 0, 0, 0.1);
color: #fff;
font-weight: bold !important;
letter-spacing: -.5px;
line-height: 1.2em !important;
}
.pbs-toolbox-tabs > *:after {
content: '';
position: absolute;
left: -300px;
right: -300px;
bottom: -4px;
height: 4px;
opacity: 0;
pointer-events: none;
transition: all .3s;
}
.pbs-toolbox-tabs > *.pbs-toolbox-tab-shown {
box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
z-index: 1;
transform: translateY(0px);
}
.pbs-toolbox-tabs > *.pbs-toolbox-tab-shown:after {
opacity: 1;
}
.pbs-toolbox-tabs > *:not(.pbs-toolbox-tab-shown):hover {
transform: translateY(0px);
}
.pbs-toolbox-tab {
background: #41D5C2;
}
.pbs-toolbox-tab:after {
background: #41D5C2;
}
.pbs-toolbox-tab:last-child:not(:first-child) {
background: #FFC63D;
}
.pbs-toolbox-tab:last-child:not(:first-child):after {
background: #FFC63D;
}
.pbs-toolbox-tab:nth-child(2) {
background: #FFC63D;
}
.pbs-toolbox-tab:nth-child(2):after {
background: #FFC63D;
}
.pbs-toolbox-tab:nth-last-child(2):not(:first-child) {
background: #01A999;
}
.pbs-toolbox-tab:nth-last-child(2):not(:first-child):after {
background: #01A999;
}
.pbs-toolbox-tab[data-name="DivRow"] {
background: #FB7268 !important;
}
.pbs-toolbox-tab[data-name="DivRow"]:after {
background: #FB7268 !important;
}
.pbs-toolbox-tab[data-name="DivCol"] {
background: #5696D4 !important;
}
.pbs-toolbox-tab[data-name="DivCol"]:after {
background: #5696D4 !important;
}
.pbs-toolbox-tab[data-name="Carousel"] {
background: #FFC63D !important;
}
.pbs-toolbox-tab[data-name="Carousel"]:after {
background: #FFC63D !important;
}
.ct-app > .ct-widget:not(.pbs-toolbox-properties):not(.ct-table-dialog) {
display: none !important;
}
.pbs-toolbox-properties .ct-tool:not(.pbs-button) {
width: 100%;
padding: 15px 10px !important;
margin: -1px 0 0 !important;
border-bottom: 1px solid #f1f1f1;
border-top: 1px solid #f1f1f1;
text-align: left;
line-height: 1.3em;
}
.pbs-toolbox-properties .ct-tool:not(.pbs-button) > * {
margin: 5px 0;
width: 100%;
}
.pbs-toolbox-properties .ct-tool:not(.pbs-button) * {
font-size: 12px !important;
}
.pbs-toolbox-properties .ct-tool:not(.pbs-button) .pbs-option-subtitle {
font-weight: 500;
}
.pbs-toolbox-properties .ct-tool:not(.pbs-button) .pbs-description {
font-style: italic;
color: #777;
letter-spacing: -.5px;
}
.pbs-toolbox-properties .ct-tool:not(.pbs-button) input[type="button"] {
background: #5CC4B8;
color: #fff;
border: 0 !important;
font-size: 10px !important;
padding: .8em 1em !important;
font-weight: bold;
}
.pbs-toolbox-properties .ct-tool:not(.pbs-button) input[type="button"]:disabled {
background: #dadada;
cursor: not-allowed;
}
.pbs-toolbox-properties .ct-tool:not(.pbs-button) select,
.pbs-toolbox-properties .ct-tool:not(.pbs-button) select:focus {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
background-color: #fff !important;
background-image: url(../assets/element-icons/select_icon.svg) !important;
background-repeat: no-repeat !important;
padding-right: 26px !important;
background-position: calc(100% - 5px) 50% !important;
background-size: 16px !important;
}
.pbs-toolbox-elements-note {
padding: 10px 40px 0 !important;
font-size: 10px !important;
line-height: 1.1em !important;
font-style: italic !important;
text-align: center !important;
color: #888 !important;
}
.pbs-tooltip {
position: absolute;
content: attr(data-tooltip);
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
width: auto;
background: rgba(51, 51, 51, 0.7);
padding: 0 10px;
border-radius: 3px;
transform: scale(0.9) translateX(-50%) translateY(-70%);
opacity: 0;
transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s;
transform-origin: left;
z-index: 99999 !important;
color: #fff;
font-weight: bold;
font-size: 10px;
margin-top: -37px;
z-index: 9999;
display: -ms-flexbox;
display: flex;
}
.pbs-tooltip,
.pbs-tooltip * {
pointer-events: none;
}
.pbs-tooltip > * {
display: -ms-flexbox;
display: flex;
-ms-flex-align: center;
align-items: center;
}
.pbs-tooltip.pbs-tooltip-show {
opacity: 1;
transform: scale(1) translateX(-50%) translateY(-100%);
}
.pbs-tooltip.pbs-tooltip-show,
.pbs-tooltip.pbs-tooltip-show * {
pointer-events: all;
}
.pbs-tooltip:before {
content: '';
background: transparent;
position: absolute;
top: 0;
bottom: -7px;
left: 0;
right: 0;
display: block;
z-index: 9998;
}
.pbs-tooltip .pbs-tooltip-button {
width: 26px;
height: 27px;
color: #fff;
cursor: pointer;
z-index: 9999;
}
.pbs-tooltip-button {
position: relative;
font-weight: normal;
}
.pbs-tooltip-button:before {
top: 0;
left: 0;
right: 0;
line-height: 27px;
text-align: center;
font-family: pbs;
font-size: 13px;
color: #fff;
position: absolute;
transition: all .3s;
}
.pbs-tooltip-button:hover:before {
background: rgba(0, 0, 0, 0.3);
}
.pbs-tooltip-button:first-child {
text-transform: uppercase;
}
.pbs-tooltip-button:nth-child(2) {
margin-left: 10px;
}
.pbs-tooltip-button:last-child {
margin-right: -10px;
}
.pbs-tooltip-button.pbs-tooltip-button-settings:before {
content: "\EA7D";
}
.pbs-tooltip-button.pbs-tooltip-button-edit:before {
content: "\f464";
font-family: dashicons;
font-size: 18px;
}
.pbs-tooltip-button.pbs-tooltip-button-unlink:before,
.pbs-tooltip-button.pbs-tooltip-button-remove:before {
border-top-right-radius: 3px;
border-bottom-right-radius: 3px;
}
.pbs-tooltip-button.pbs-tooltip-button-unlink:hover:before,
.pbs-tooltip-button.pbs-tooltip-button-remove:hover:before {
background: #F37369;
}
.pbs-tooltip-button.pbs-tooltip-button-unlink:before,
.pbs-tooltip-button.pbs-tooltip-button-remove:before {
content: "\EA7F";
}
.pbs-tooltip-button.pbs-tooltip-button-remove:before {
content: "\EA7B";
}
.pbs-tooltip-button.pbs-tooltip-button-visit:before {
content: "\EA80";
}
body.ce--dragging .pbs-tooltip[class*="pbs-tooltip--"] {
display: none !important;
}
.pbs-quick-action-overlay {
margin-top: -32px;
}
.pbs-quick-action-overlay {
-webkit-user-select: none;
-ms-user-select: none;
-moz-user-select: none;
user-select: none;
-ms-flex-align: center;
align-items: center;
-ms-flex-pack: center;
justify-content: center;
}
.pbs-quick-action-overlay > * {
display: none;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
font-size: 11px;
text-transform: uppercase;
background: rgba(255, 255, 255, 0.8);
color: #444;
padding: 3px;
transform: translateX(50%);
line-height: 1em;
z-index: 999;
}
.pbs-quick-action-overlay:hover > * {
display: block;
}
.pbs-quick-action-overlay.pbs-active > * {
display: block;
}
.pbs-quick-action-overlay {
position: absolute;
z-index: 9999;
}
.pbs-quick-action-overlay.pbs-overlay-overlayelement {
pointer-events: none;
border: 1px solid #5CC4B8;
}
.pbs-quick-action-overlay.pbs-overlay-overlaycolumn {
pointer-events: none;
border-style: dashed;
border-color: #777;
border-image-source: url(../assets/element-icons/dashes.svg);
border-image-slice: 8% 8%;
border-image-repeat: repeat;
border-width: 1px;
}
.pbs-quick-action-overlay.pbs-overlay-overlayrow {
pointer-events: none;
border-style: dashed;
border-color: #777;
border-image-source: url(../assets/element-icons/dashes.svg);
border-image-slice: 8% 8%;
border-image-repeat: repeat;
border-width: 1px;
}
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-margin-top {
left: -1px;
right: -1px;
bottom: calc(100% + 1px);
cursor: ns-resize;
background: transparent;
min-height: 11px;
}
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-margin-top:after,
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-margin-top:before {
content: '';
display: block;
position: absolute;
left: 0;
right: 0;
bottom: 0;
opacity: 0;
}
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-margin-top:after {
transition: none;
transform-origin: bottom;
background: #5CC4B8;
transform: scaleY(0.1);
content: attr(data-label);
text-align: center;
z-index: 1;
font-size: 10px;
line-height: 11px;
color: #fff;
font-weight: bold;
height: 11px;
}
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-margin-top.pbs-control-active:before,
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-margin-top.pbs-control-active:after,
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-margin-top.pbs-control-over:before,
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-margin-top.pbs-control-over:after {
transform: scaleY(1);
opacity: 1;
}
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-margin-top.pbs-control-active:after,
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-margin-top.pbs-control-over:after {
transition: all 0.1s;
}
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-margin-top:before {
height: auto;
top: 0;
border: 1px dashed #5CC4B8;
}
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-margin-top[data-value="margin-0px"]:before {
display: none;
}
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-margin-bottom {
left: -1px;
right: -1px;
top: calc(100% + 1px);
cursor: ns-resize;
background: transparent;
min-height: 11px;
}
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-margin-bottom:after,
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-margin-bottom:before {
content: '';
display: block;
position: absolute;
left: 0;
right: 0;
top: 0;
opacity: 0;
}
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-margin-bottom:after {
transition: none;
transform-origin: top;
background: #5CC4B8;
transform: scaleY(0.1);
content: attr(data-label);
text-align: center;
z-index: 1;
font-size: 10px;
line-height: 11px;
color: #fff;
font-weight: bold;
height: 11px;
}
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-margin-bottom.pbs-control-active:before,
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-margin-bottom.pbs-control-active:after,
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-margin-bottom.pbs-control-over:before,
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-margin-bottom.pbs-control-over:after {
transform: scaleY(1);
opacity: 1;
}
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-margin-bottom.pbs-control-active:after,
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-margin-bottom.pbs-control-over:after {
transition: all 0.1s;
}
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-margin-bottom:before {
height: auto;
bottom: 0;
border: 1px dashed #5CC4B8;
}
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-margin-bottom[data-value="margin-0px"]:before {
display: none;
}
.pbs-quick-action-overlay.pbs-overlay-overlaycolumn .pbs-overlay-padding-top {
left: -1px;
right: -1px;
top: 0;
cursor: ns-resize;
background: transparent;
min-height: 11px;
}
.pbs-quick-action-overlay.pbs-overlay-overlaycolumn .pbs-overlay-padding-top:after,
.pbs-quick-action-overlay.pbs-overlay-overlaycolumn .pbs-overlay-padding-top:before {
content: '';
display: block;
position: absolute;
left: 0;
right: 0;
top: 0;
opacity: 0;
}
.pbs-quick-action-overlay.pbs-overlay-overlaycolumn .pbs-overlay-padding-top:after {
transition: all 0.1s;
transform-origin: top;
background: #8f949e;
transform: scaleY(0.1);
content: attr(data-label);
text-align: center;
z-index: 1;
font-size: 10px;
line-height: 11px;
color: #fff;
font-weight: bold;
height: 11px;
}
.pbs-quick-action-overlay.pbs-overlay-overlaycolumn .pbs-overlay-padding-top.pbs-control-active:before,
.pbs-quick-action-overlay.pbs-overlay-overlaycolumn .pbs-overlay-padding-top.pbs-control-active:after,
.pbs-quick-action-overlay.pbs-overlay-overlaycolumn .pbs-overlay-padding-top.pbs-control-over:before,
.pbs-quick-action-overlay.pbs-overlay-overlaycolumn .pbs-overlay-padding-top.pbs-control-over:after {
transform: scaleY(1);
opacity: 1;
}
.pbs-quick-action-overlay.pbs-overlay-overlaycolumn .pbs-overlay-padding-top:before {
height: auto;
bottom: 0;
border-style: dashed;
border-color: #777;
border-image-source: url(../assets/element-icons/dashes.svg);
border-image-slice: 8% 8%;
border-image-repeat: repeat;
border-width: 1px;
}
.pbs-quick-action-overlay.pbs-overlay-overlaycolumn .pbs-overlay-padding-top[data-value="padding-0px"]:before {
display: none;
}
.pbs-quick-action-overlay.pbs-overlay-overlaycolumn .pbs-overlay-padding-bottom {
left: -1px;
right: -1px;
bottom: 0;
cursor: ns-resize;
background: transparent;
min-height: 11px;
}
.pbs-quick-action-overlay.pbs-overlay-overlaycolumn .pbs-overlay-padding-bottom:after,
.pbs-quick-action-overlay.pbs-overlay-overlaycolumn .pbs-overlay-padding-bottom:before {
content: '';
display: block;
position: absolute;
left: 0;
right: 0;
bottom: 0;
opacity: 0;
}
.pbs-quick-action-overlay.pbs-overlay-overlaycolumn .pbs-overlay-padding-bottom:after {
transition: all 0.1s;
transform-origin: bottom;
background: #8f949e;
transform: scaleY(0.1);
content: attr(data-label);
text-align: center;
z-index: 1;
font-size: 10px;
line-height: 11px;
color: #fff;
font-weight: bold;
height: 11px;
}
.pbs-quick-action-overlay.pbs-overlay-overlaycolumn .pbs-overlay-padding-bottom.pbs-control-active:before,
.pbs-quick-action-overlay.pbs-overlay-overlaycolumn .pbs-overlay-padding-bottom.pbs-control-active:after,
.pbs-quick-action-overlay.pbs-overlay-overlaycolumn .pbs-overlay-padding-bottom.pbs-control-over:before,
.pbs-quick-action-overlay.pbs-overlay-overlaycolumn .pbs-overlay-padding-bottom.pbs-control-over:after {
transform: scaleY(1);
opacity: 1;
}
.pbs-quick-action-overlay.pbs-overlay-overlaycolumn .pbs-overlay-padding-bottom:before {
height: auto;
top: 0;
border-style: dashed;
border-color: #777;
border-image-source: url(../assets/element-icons/dashes.svg);
border-image-slice: 8% 8%;
border-image-repeat: repeat;
border-width: 1px;
}
.pbs-quick-action-overlay.pbs-overlay-overlaycolumn .pbs-overlay-padding-bottom[data-value="padding-0px"]:before {
display: none;
}
.pbs-quick-action-overlay.pbs-overlay-overlaycolumn .pbs-overlay-padding-left {
left: 0;
top: -1px;
bottom: -1px;
cursor: ew-resize;
background: transparent;
min-width: 11px;
overflow: hidden;
}
.pbs-quick-action-overlay.pbs-overlay-overlaycolumn .pbs-overlay-padding-left:after,
.pbs-quick-action-overlay.pbs-overlay-overlaycolumn .pbs-overlay-padding-left:before {
content: '';
display: block;
position: absolute;
left: 0;
top: 0;
bottom: 0;
opacity: 0;
}
.pbs-quick-action-overlay.pbs-overlay-overlaycolumn .pbs-overlay-padding-left:after {
transition: all 0.1s;
transform-origin: center;
transform: translateY(-50%) translateX(-50%) scaleX(0.1) rotate(90deg) translateY(-50%);
background: #8f949e;
content: attr(data-label);
text-align: center;
z-index: 1;
font-size: 10px;
line-height: 11px;
color: #fff;
font-weight: bold;
height: 11px;
width: 2000px;
top: 50%;
}
.pbs-quick-action-overlay.pbs-overlay-overlaycolumn .pbs-overlay-padding-left.pbs-control-active:before,
.pbs-quick-action-overlay.pbs-overlay-overlaycolumn .pbs-overlay-padding-left.pbs-control-active:after,
.pbs-quick-action-overlay.pbs-overlay-overlaycolumn .pbs-overlay-padding-left.pbs-control-over:before,
.pbs-quick-action-overlay.pbs-overlay-overlaycolumn .pbs-overlay-padding-left.pbs-control-over:after {
transform: scaleX(1);
opacity: 1;
}
.pbs-quick-action-overlay.pbs-overlay-overlaycolumn .pbs-overlay-padding-left.pbs-control-active:after,
.pbs-quick-action-overlay.pbs-overlay-overlaycolumn .pbs-overlay-padding-left.pbs-control-over:after {
transform: translateY(-50%) translateX(-50%) rotate(90deg) translateY(-50%);
}
.pbs-quick-action-overlay.pbs-overlay-overlaycolumn .pbs-overlay-padding-left:before {
height: auto;
bottom: 0;
border-style: dashed;
border-color: #777;
border-image-source: url(../assets/element-icons/dashes.svg);
border-image-slice: 8% 8%;
border-image-repeat: repeat;
border-width: 1px;
right: 0;
}
.pbs-quick-action-overlay.pbs-overlay-overlaycolumn .pbs-overlay-padding-left[data-value="padding-0px"]:before {
display: none;
}
.pbs-quick-action-overlay.pbs-overlay-overlaycolumn .pbs-overlay-padding-right {
right: 0;
top: -1px;
bottom: -1px;
cursor: ew-resize;
background: transparent;
min-width: 11px;
overflow: hidden;
}
.pbs-quick-action-overlay.pbs-overlay-overlaycolumn .pbs-overlay-padding-right:after,
.pbs-quick-action-overlay.pbs-overlay-overlaycolumn .pbs-overlay-padding-right:before {
content: '';
display: block;
position: absolute;
right: 0;
top: 0;
bottom: 0;
opacity: 0;
}
.pbs-quick-action-overlay.pbs-overlay-overlaycolumn .pbs-overlay-padding-right:after {
transition: all 0.1s;
transform-origin: center;
transform: translateY(-50%) translateX(50%) scaleX(0.1) rotate(90deg) translateY(50%);
background: #8f949e;
content: attr(data-label);
text-align: center;
z-index: 1;
font-size: 10px;
line-height: 11px;
color: #fff;
font-weight: bold;
height: 11px;
width: 2000px;
top: 50%;
}
.pbs-quick-action-overlay.pbs-overlay-overlaycolumn .pbs-overlay-padding-right.pbs-control-active:before,
.pbs-quick-action-overlay.pbs-overlay-overlaycolumn .pbs-overlay-padding-right.pbs-control-active:after,
.pbs-quick-action-overlay.pbs-overlay-overlaycolumn .pbs-overlay-padding-right.pbs-control-over:before,
.pbs-quick-action-overlay.pbs-overlay-overlaycolumn .pbs-overlay-padding-right.pbs-control-over:after {
transform: scaleX(1);
opacity: 1;
}
.pbs-quick-action-overlay.pbs-overlay-overlaycolumn .pbs-overlay-padding-right.pbs-control-active:after,
.pbs-quick-action-overlay.pbs-overlay-overlaycolumn .pbs-overlay-padding-right.pbs-control-over:after {
transform: translateY(-50%) translateX(50%) rotate(90deg) translateY(50%);
}
.pbs-quick-action-overlay.pbs-overlay-overlaycolumn .pbs-overlay-padding-right:before {
height: auto;
bottom: 0;
border-style: dashed;
border-color: #777;
border-image-source: url(../assets/element-icons/dashes.svg);
border-image-slice: 8% 8%;
border-image-repeat: repeat;
border-width: 1px;
left: 0;
}
.pbs-quick-action-overlay.pbs-overlay-overlaycolumn .pbs-overlay-padding-right[data-value="padding-0px"]:before {
display: none;
}
.pbs-quick-action-overlay.pbs-overlay-overlayrow .pbs-overlay-margin-top {
position: absolute;
display: block;
left: -1px;
right: -1px;
bottom: 100%;
padding: 0;
transform: none;
cursor: ns-resize;
pointer-events: all;
background: transparent;
min-height: 11px;
}
.pbs-quick-action-overlay.pbs-overlay-overlayrow .pbs-overlay-margin-top:after,
.pbs-quick-action-overlay.pbs-overlay-overlayrow .pbs-overlay-margin-top:before {
content: '';
display: block;
position: absolute;
left: 0;
right: 0;
bottom: 0;
opacity: 0;
}
.pbs-quick-action-overlay.pbs-overlay-overlayrow .pbs-overlay-margin-top:after {
transition: all 0.1s;
transform-origin: bottom;
background: #4c4f56;
transform: scaleY(0.1);
content: attr(data-label);
text-align: center;
z-index: 1;
font-size: 10px;
line-height: 11px;
color: #fff;
font-weight: bold;
height: 11px;
}
.pbs-quick-action-overlay.pbs-overlay-overlayrow .pbs-overlay-margin-top:before {
height: auto;
top: 0;
border-style: dashed;
border-color: #777;
border-image-source: url(../assets/element-icons/dashes.svg);
border-image-slice: 8% 8%;
border-image-repeat: repeat;
border-width: 1px;
}
.pbs-quick-action-overlay.pbs-overlay-overlayrow .pbs-overlay-margin-top[data-value="margin-0px"]:before {
display: none;
}
.pbs-quick-action-overlay.pbs-overlay-overlayrow.pbs-active-margin-top .pbs-overlay-margin-top:before,
.pbs-quick-action-overlay.pbs-overlay-overlayrow.pbs-active-margin-top .pbs-overlay-margin-top:after,
.pbs-quick-action-overlay.pbs-overlay-overlayrow.pbs-over-margin-top.pbs-over .pbs-overlay-margin-top:before,
.pbs-quick-action-overlay.pbs-overlay-overlayrow.pbs-over-margin-top.pbs-over .pbs-overlay-margin-top:after {
transform: scaleY(1);
opacity: 1;
}
.pbs-quick-action-overlay.pbs-overlay-overlayrow .pbs-overlay-margin-bottom {
position: absolute;
display: block;
left: -1px;
right: -1px;
top: 100%;
padding: 0;
transform: none;
cursor: ns-resize;
pointer-events: all;
background: transparent;
min-height: 11px;
z-index: 1;
}
.pbs-quick-action-overlay.pbs-overlay-overlayrow .pbs-overlay-margin-bottom:after,
.pbs-quick-action-overlay.pbs-overlay-overlayrow .pbs-overlay-margin-bottom:before {
content: '';
display: block;
position: absolute;
left: 0;
right: 0;
top: 0;
opacity: 0;
}
.pbs-quick-action-overlay.pbs-overlay-overlayrow .pbs-overlay-margin-bottom:after {
transition: all 0.1s;
transform-origin: top;
background: #4c4f56;
transform: scaleY(0.1);
content: attr(data-label);
text-align: center;
z-index: 1;
font-size: 10px;
line-height: 11px;
color: #fff;
font-weight: bold;
height: 11px;
}
.pbs-quick-action-overlay.pbs-overlay-overlayrow .pbs-overlay-margin-bottom:before {
height: auto;
bottom: 0;
border-style: dashed;
border-color: #777;
border-image-source: url(../assets/element-icons/dashes.svg);
border-image-slice: 8% 8%;
border-image-repeat: repeat;
border-width: 1px;
}
.pbs-quick-action-overlay.pbs-overlay-overlayrow .pbs-overlay-margin-bottom[data-value="margin-0px"]:before {
display: none;
}
.pbs-quick-action-overlay.pbs-overlay-overlayrow.pbs-active-margin-bottom .pbs-overlay-margin-bottom:before,
.pbs-quick-action-overlay.pbs-overlay-overlayrow.pbs-active-margin-bottom .pbs-overlay-margin-bottom:after,
.pbs-quick-action-overlay.pbs-overlay-overlayrow.pbs-over-margin-bottom.pbs-over .pbs-overlay-margin-bottom:before,
.pbs-quick-action-overlay.pbs-overlay-overlayrow.pbs-over-margin-bottom.pbs-over .pbs-overlay-margin-bottom:after {
transform: scaleY(1);
opacity: 1;
}
.pbs-quick-action-overlay.pbs-overlay-overlayrow .pbs-overlay-resize-bottom {
position: absolute;
display: block;
max-width: 40px;
width: 30%;
left: 50%;
transform: translateX(-50%);
bottom: -10px;
height: 30px;
z-index: 2;
background: transparent;
padding: 0;
cursor: ns-resize;
pointer-events: all;
}
.pbs-quick-action-overlay.pbs-overlay-overlayrow .pbs-overlay-resize-bottom:before {
transition: all 0.1s;
content: '';
bottom: 6px;
left: 0;
right: 0;
height: 2px;
width: 100%;
border: 1px solid #4c4f56;
border-top: 0;
box-sizing: content-box;
position: absolute;
background: transparent;
}
.pbs-quick-action-overlay.pbs-overlay-overlayrow.pbs-active-resize-bottom .pbs-overlay-resize-bottom:before,
.pbs-quick-action-overlay.pbs-overlay-overlayrow.pbs-over-resize-bottom.pbs-over .pbs-overlay-resize-bottom:before {
background: #4c4f56;
}
.pbs-quick-action-overlay.pbs-overlay-overlayrow.pbs-active-margin-top :not(.pbs-overlay-margin-top),
.pbs-quick-action-overlay.pbs-overlay-overlayrow.pbs-active-margin-bottom :not(.pbs-overlay-margin-bottom),
.pbs-quick-action-overlay.pbs-overlay-overlayrow.pbs-active-resize-bottom :not(.pbs-overlay-resize-bottom),
.pbs-quick-action-overlay.pbs-overlay-overlayrow.pbs-active-overlay-column :not(.pbs-overlay-column-width):not(.pbs-overlay-column-label) {
display: none !important;
}
.pbs-quick-action-overlay.pbs-overlay-overlayrow.pbs-over-margin-bottom .pbs-overlay-resize-bottom {
opacity: 0 !important;
}
.pbs-quick-action-overlay.pbs-overlay-overlayrow .pbs-overlay-column-width {
position: absolute;
display: block;
right: 0;
top: 0;
bottom: 0;
width: 9px;
margin-left: -4.5px;
transform: none;
cursor: ew-resize;
pointer-events: all;
background: transparent;
overflow: hidden;
}
.pbs-quick-action-overlay.pbs-overlay-overlayrow .pbs-overlay-column-width:after,
.pbs-quick-action-overlay.pbs-overlay-overlayrow .pbs-overlay-column-width:before {
content: '';
display: block;
position: absolute;
right: 0;
top: 0;
bottom: 0;
opacity: 0;
}
.pbs-quick-action-overlay.pbs-overlay-overlayrow .pbs-overlay-column-width:after {
transition: all 0.1s;
transform-origin: center;
transform: translateY(-50%) translateX(50%) scaleX(0.1) rotate(90deg) translateY(50%);
background: #4c4f56;
content: attr(data-label);
text-align: center;
z-index: 1;
font-size: 9px;
line-height: 9px;
color: #fff;
font-weight: bold;
height: 9px;
width: 2000px;
top: 50%;
}
.pbs-quick-action-overlay.pbs-overlay-overlayrow .pbs-overlay-column-width[data-value="padding-0px"]:before {
display: none;
}
.pbs-quick-action-overlay.pbs-overlay-overlayrow.pbs-active-column-width-0 .pbs-overlay-column-width-0:before,
.pbs-quick-action-overlay.pbs-overlay-overlayrow.pbs-active-column-width-0 .pbs-overlay-column-width-0:after,
.pbs-quick-action-overlay.pbs-overlay-overlayrow.pbs-over-column-width-0.pbs-over .pbs-overlay-column-width-0:before,
.pbs-quick-action-overlay.pbs-overlay-overlayrow.pbs-over-column-width-0.pbs-over .pbs-overlay-column-width-0:after,
.pbs-quick-action-overlay.pbs-overlay-overlayrow.pbs-active-column-width-1 .pbs-overlay-column-width-1:before,
.pbs-quick-action-overlay.pbs-overlay-overlayrow.pbs-active-column-width-1 .pbs-overlay-column-width-1:after,
.pbs-quick-action-overlay.pbs-overlay-overlayrow.pbs-over-column-width-1.pbs-over .pbs-overlay-column-width-1:before,
.pbs-quick-action-overlay.pbs-overlay-overlayrow.pbs-over-column-width-1.pbs-over .pbs-overlay-column-width-1:after,
.pbs-quick-action-overlay.pbs-overlay-overlayrow.pbs-active-column-width-2 .pbs-overlay-column-width-2:before,
.pbs-quick-action-overlay.pbs-overlay-overlayrow.pbs-active-column-width-2 .pbs-overlay-column-width-2:after,
.pbs-quick-action-overlay.pbs-overlay-overlayrow.pbs-over-column-width-2.pbs-over .pbs-overlay-column-width-2:before,
.pbs-quick-action-overlay.pbs-overlay-overlayrow.pbs-over-column-width-2.pbs-over .pbs-overlay-column-width-2:after,
.pbs-quick-action-overlay.pbs-overlay-overlayrow.pbs-active-column-width-3 .pbs-overlay-column-width-3:before,
.pbs-quick-action-overlay.pbs-overlay-overlayrow.pbs-active-column-width-3 .pbs-overlay-column-width-3:after,
.pbs-quick-action-overlay.pbs-overlay-overlayrow.pbs-over-column-width-3.pbs-over .pbs-overlay-column-width-3:before,
.pbs-quick-action-overlay.pbs-overlay-overlayrow.pbs-over-column-width-3.pbs-over .pbs-overlay-column-width-3:after,
.pbs-quick-action-overlay.pbs-overlay-overlayrow.pbs-active-column-width-4 .pbs-overlay-column-width-4:before,
.pbs-quick-action-overlay.pbs-overlay-overlayrow.pbs-active-column-width-4 .pbs-overlay-column-width-4:after,
.pbs-quick-action-overlay.pbs-overlay-overlayrow.pbs-over-column-width-4.pbs-over .pbs-overlay-column-width-4:before,
.pbs-quick-action-overlay.pbs-overlay-overlayrow.pbs-over-column-width-4.pbs-over .pbs-overlay-column-width-4:after,
.pbs-quick-action-overlay.pbs-overlay-overlayrow.pbs-active-column-width-5 .pbs-overlay-column-width-5:before,
.pbs-quick-action-overlay.pbs-overlay-overlayrow.pbs-active-column-width-5 .pbs-overlay-column-width-5:after,
.pbs-quick-action-overlay.pbs-overlay-overlayrow.pbs-over-column-width-5.pbs-over .pbs-overlay-column-width-5:before,
.pbs-quick-action-overlay.pbs-overlay-overlayrow.pbs-over-column-width-5.pbs-over .pbs-overlay-column-width-5:after,
.pbs-quick-action-overlay.pbs-overlay-overlayrow.pbs-active-column-width-6 .pbs-overlay-column-width-6:before,
.pbs-quick-action-overlay.pbs-overlay-overlayrow.pbs-active-column-width-6 .pbs-overlay-column-width-6:after,
.pbs-quick-action-overlay.pbs-overlay-overlayrow.pbs-over-column-width-6.pbs-over .pbs-overlay-column-width-6:before,
.pbs-quick-action-overlay.pbs-overlay-overlayrow.pbs-over-column-width-6.pbs-over .pbs-overlay-column-width-6:after,
.pbs-quick-action-overlay.pbs-overlay-overlayrow.pbs-active-column-width-7 .pbs-overlay-column-width-7:before,
.pbs-quick-action-overlay.pbs-overlay-overlayrow.pbs-active-column-width-7 .pbs-overlay-column-width-7:after,
.pbs-quick-action-overlay.pbs-overlay-overlayrow.pbs-over-column-width-7.pbs-over .pbs-overlay-column-width-7:before,
.pbs-quick-action-overlay.pbs-overlay-overlayrow.pbs-over-column-width-7.pbs-over .pbs-overlay-column-width-7:after,
.pbs-quick-action-overlay.pbs-overlay-overlayrow.pbs-active-column-width-8 .pbs-overlay-column-width-8:before,
.pbs-quick-action-overlay.pbs-overlay-overlayrow.pbs-active-column-width-8 .pbs-overlay-column-width-8:after,
.pbs-quick-action-overlay.pbs-overlay-overlayrow.pbs-over-column-width-8.pbs-over .pbs-overlay-column-width-8:before,
.pbs-quick-action-overlay.pbs-overlay-overlayrow.pbs-over-column-width-8.pbs-over .pbs-overlay-column-width-8:after {
transform: scaleX(1);
opacity: 1;
}
.pbs-quick-action-overlay.pbs-overlay-overlayrow.pbs-active-column-width-0 .pbs-overlay-column-width-0:after,
.pbs-quick-action-overlay.pbs-overlay-overlayrow.pbs-over-column-width-0.pbs-over .pbs-overlay-column-width-0:after,
.pbs-quick-action-overlay.pbs-overlay-overlayrow.pbs-active-column-width-1 .pbs-overlay-column-width-1:after,
.pbs-quick-action-overlay.pbs-overlay-overlayrow.pbs-over-column-width-1.pbs-over .pbs-overlay-column-width-1:after,
.pbs-quick-action-overlay.pbs-overlay-overlayrow.pbs-active-column-width-2 .pbs-overlay-column-width-2:after,
.pbs-quick-action-overlay.pbs-overlay-overlayrow.pbs-over-column-width-2.pbs-over .pbs-overlay-column-width-2:after,
.pbs-quick-action-overlay.pbs-overlay-overlayrow.pbs-active-column-width-3 .pbs-overlay-column-width-3:after,
.pbs-quick-action-overlay.pbs-overlay-overlayrow.pbs-over-column-width-3.pbs-over .pbs-overlay-column-width-3:after,
.pbs-quick-action-overlay.pbs-overlay-overlayrow.pbs-active-column-width-4 .pbs-overlay-column-width-4:after,
.pbs-quick-action-overlay.pbs-overlay-overlayrow.pbs-over-column-width-4.pbs-over .pbs-overlay-column-width-4:after,
.pbs-quick-action-overlay.pbs-overlay-overlayrow.pbs-active-column-width-5 .pbs-overlay-column-width-5:after,
.pbs-quick-action-overlay.pbs-overlay-overlayrow.pbs-over-column-width-5.pbs-over .pbs-overlay-column-width-5:after,
.pbs-quick-action-overlay.pbs-overlay-overlayrow.pbs-active-column-width-6 .pbs-overlay-column-width-6:after,
.pbs-quick-action-overlay.pbs-overlay-overlayrow.pbs-over-column-width-6.pbs-over .pbs-overlay-column-width-6:after,
.pbs-quick-action-overlay.pbs-overlay-overlayrow.pbs-active-column-width-7 .pbs-overlay-column-width-7:after,
.pbs-quick-action-overlay.pbs-overlay-overlayrow.pbs-over-column-width-7.pbs-over .pbs-overlay-column-width-7:after,
.pbs-quick-action-overlay.pbs-overlay-overlayrow.pbs-active-column-width-8 .pbs-overlay-column-width-8:after,
.pbs-quick-action-overlay.pbs-overlay-overlayrow.pbs-over-column-width-8.pbs-over .pbs-overlay-column-width-8:after {
transform: translateY(-50%) translateX(50%) rotate(90deg) translateY(50%);
}
.pbs-quick-action-overlay.pbs-overlay-overlayrow.pbs-active-overlay-column.pbs-active .pbs-overlay-column-width {
display: none;
}
.pbs-overlay-changing-cols > .pbs-col {
border-style: dashed;
border-color: #777;
border-image-source: url(../assets/element-icons/dashes.svg);
border-image-slice: 8% 8%;
border-image-repeat: repeat;
border-width: 1px;
}
.pbs-quick-action-overlay.pbs-overlay-overlayrow .pbs-overlay-column-label {
position: absolute;
display: block;
right: 0;
top: -28px;
left: 0;
width: 56px;
height: 28px;
font-size: 10px;
line-height: 28px;
pointer-events: none;
background: #4c4f56;
text-align: center;
color: #fff;
font-weight: bold;
padding: 0 !important;
letter-spacing: -0.5px;
border-top-right-radius: 4px;
border-top-left-radius: 4px;
margin-left: -1px;
transform-origin: bottom;
transition: opacity .3s, transform .3s;
transform: scaleY(0.1);
opacity: 0;
}
.pbs-quick-action-overlay.pbs-overlay-overlayrow.pbs-overlay-column-width.pbs-over .pbs-overlay-column-label,
.pbs-quick-action-overlay.pbs-overlay-overlayrow.pbs-active-overlay-column .pbs-overlay-column-label {
transform: scaleY(1);
opacity: 1;
}
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-resize-bottom-left,
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-resize-top-left,
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-resize-top-right,
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-resize-bottom-right,
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-resize-bottom {
width: 40px;
height: 40px;
background: transparent;
bottom: 0;
left: 0;
cursor: nesw-resize;
}
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-resize-bottom-left:before,
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-resize-bottom-left:after,
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-resize-top-left:before,
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-resize-top-left:after,
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-resize-top-right:before,
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-resize-top-right:after,
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-resize-bottom-right:before,
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-resize-bottom-right:after,
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-resize-bottom:before,
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-resize-bottom:after {
content: '';
display: block;
left: -3px;
bottom: -3px;
position: absolute;
width: 1px;
height: 100%;
background: rgba(255, 255, 255, 0.3);
border: 1px solid #5CC4B8;
border-right: 0;
box-sizing: content-box;
transition: all 0.1s;
}
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-resize-bottom-left:after,
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-resize-top-left:after,
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-resize-top-right:after,
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-resize-bottom-right:after,
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-resize-bottom:after {
height: 1px;
width: 100%;
border: 1px solid #5CC4B8;
border-top: 0;
}
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-resize-bottom-left:hover:before,
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-resize-bottom-left:hover:after,
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-resize-bottom-left.pbs-control-active:before,
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-resize-bottom-left.pbs-control-active:after,
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-resize-top-left:hover:before,
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-resize-top-left:hover:after,
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-resize-top-left.pbs-control-active:before,
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-resize-top-left.pbs-control-active:after,
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-resize-top-right:hover:before,
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-resize-top-right:hover:after,
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-resize-top-right.pbs-control-active:before,
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-resize-top-right.pbs-control-active:after,
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-resize-bottom-right:hover:before,
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-resize-bottom-right:hover:after,
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-resize-bottom-right.pbs-control-active:before,
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-resize-bottom-right.pbs-control-active:after,
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-resize-bottom:hover:before,
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-resize-bottom:hover:after,
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-resize-bottom.pbs-control-active:before,
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-resize-bottom.pbs-control-active:after {
background: #5CC4B8;
}
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-resize-bottom-left {
border-top-right-radius: 100%;
}
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-resize-top-left {
bottom: auto;
top: 0;
left: 0;
cursor: nwse-resize;
border-bottom-right-radius: 100%;
}
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-resize-top-left:before,
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-resize-top-left:after {
bottom: auto;
top: -3px;
}
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-resize-top-left:after {
border: 1px solid #5CC4B8;
border-bottom: none;
}
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-resize-top-right {
bottom: auto;
top: 0;
left: auto;
right: 0;
border-bottom-left-radius: 100%;
}
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-resize-top-right:before,
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-resize-top-right:after {
bottom: auto;
top: -3px;
left: auto;
right: -3px;
}
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-resize-top-right:before {
border: 1px solid #5CC4B8;
border-left: none;
}
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-resize-top-right:after {
border: 1px solid #5CC4B8;
border-bottom: none;
}
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-resize-bottom-right {
left: auto;
right: 0;
cursor: nwse-resize;
border-top-left-radius: 100%;
}
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-resize-bottom-right:before,
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-resize-bottom-right:after {
left: auto;
right: -3px;
}
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-resize-bottom-right:before {
border: 1px solid #5CC4B8;
border-left: none;
}
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-resize-bottom {
bottom: 0;
top: auto;
left: 50%;
transform: translateX(-50%);
cursor: ns-resize;
}
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-resize-bottom:before {
display: none;
}
.pbs-quick-action-overlay.pbs-overlay-overlayelement .pbs-overlay-resize-bottom:after {
border: 1px solid #5CC4B8;
border-top: none;
}
/* We NEED these two positions to force the toolbar's relative position to be based on the document, or else in some themes the toolbar will be off. */
html {
position: relative !important;
}
body {
position: static !important;
}
.pbs-quick-action-overlay.pbs-toolbar-newsletter .pbs-toolbar-label,
.pbs-quick-action-overlay.pbs-toolbar-tabcontainer .pbs-toolbar-label {
pointer-events: none !important;
}
.pbs-quick-action-overlay.pbs-overlay-toolbar {
pointer-events: none;
}
.pbs-quick-action-overlay.pbs-overlay-toolbar .pbs-toolbar-wrapper {
background: transparent;
width: auto;
top: 0;
right: 0;
left: 0;
bottom: 0;
padding: 0;
display: -ms-flexbox;
display: flex;
-ms-flex-direction: row;
flex-direction: row;
min-width: auto;
width: auto !important;
transform: none;
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
-ms-flex-pack: end;
justify-content: flex-end;
pointer-events: none;
position: absolute;
}
.pbs-quick-action-overlay.pbs-overlay-toolbar .pbs-toolbar-wrapper > * {
display: block;
height: 28px;
width: 28px;
background: #5CC4B8;
cursor: pointer;
position: relative;
pointer-events: all;
transition: background .3s;
}
.pbs-quick-action-overlay.pbs-overlay-toolbar .pbs-toolbar-wrapper > *:not(.pbs-toolbar-label):hover {
background: #449c92;
}
.pbs-quick-action-overlay.pbs-overlay-toolbar .pbs-toolbar-wrapper > *:before,
.pbs-quick-action-overlay.pbs-overlay-toolbar .pbs-toolbar-wrapper > *:after {
content: '';
font-family: pbs;
font-size: 12px;
line-height: 28px;
text-align: center;
width: 100%;
position: absolute;
top: 0;
color: #fff;
left: 0;
}
.pbs-quick-action-overlay.pbs-overlay-toolbar .pbs-toolbar-wrapper > *[data-tooltip]:after {
content: attr(data-tooltip);
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
width: auto;
background: rgba(51, 51, 51, 0.7);
padding: 1px 8px;
border-radius: 3px;
top: -33px;
margin-left: 11px;
transform: scale(0.5) translateX(-50%) translateY(100%);
opacity: 0;
transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
transition-delay: 0s;
transform-origin: left;
pointer-events: none;
z-index: 99999 !important;
position: absolute;
}
.pbs-quick-action-overlay.pbs-overlay-toolbar .pbs-toolbar-wrapper > *[data-tooltip]:hover:after {
transform: scale(1) translateX(-50%);
opacity: 1;
transition-delay: 1s;
}
.pbs-quick-action-overlay.pbs-overlay-toolbar .pbs-toolbar-wrapper .pbs-toolbar-label {
color: #fff;
line-height: 28px;
padding: 0 10px;
width: auto;
font-size: 10px;
font-weight: bold;
min-width: 28px;
}
.pbs-quick-action-overlay[class*="pbs-toolbar-"] *:after {
white-space: nowrap;
}
.pbs-quick-action-overlay[class*="pbs-toolbar-"] .pbs-toolbar-tool.pbs-toolbar-tool-hide {
display: none;
}
.pbs-quick-action-overlay[class*="pbs-toolbar-"] .pbs-toolbar-tool-remove:hover {
background: #F37369 !important;
}
.pbs-quick-action-overlay[class*="pbs-toolbar-"] .pbs-toolbar-tool-remove:before {
content: "\EA7B";
}
.pbs-quick-action-overlay[class*="pbs-toolbar-"] .pbs-toolbar-tool-clone:before {
content: "\EA7A";
}
.pbs-quick-action-overlay[class*="pbs-toolbar-"] .pbs-toolbar-tool-edit:before {
content: "\f464";
font-family: dashicons;
font-size: 17px;
}
.pbs-quick-action-overlay[class*="pbs-toolbar-"] .pbs-toolbar-tool-move {
cursor: move;
}
.pbs-quick-action-overlay[class*="pbs-toolbar-"] .pbs-toolbar-tool-move:before {
content: "\EA7E";
}
.pbs-quick-action-overlay[class*="pbs-toolbar-"] .pbs-toolbar-tool-align-right:before {
content: "\f136";
font-family: dashicons;
font-size: 16px;
text-rendering: geometricPrecision;
-webkit-font-smoothing: antialiased;
}
.pbs-quick-action-overlay[class*="pbs-toolbar-"] .pbs-toolbar-tool-align-center:before {
content: "\f134";
font-family: dashicons;
font-size: 16px;
text-rendering: geometricPrecision;
-webkit-font-smoothing: antialiased;
}
.pbs-quick-action-overlay[class*="pbs-toolbar-"] .pbs-toolbar-tool-align-left:before {
content: "\f135";
font-family: dashicons;
font-size: 16px;
text-rendering: geometricPrecision;
-webkit-font-smoothing: antialiased;
}
.pbs-quick-action-overlay[class*="pbs-toolbar-"] .pbs-toolbar-tool-settings:before {
content: "\EA7D";
}
.pbs-quick-action-overlay[class*="pbs-toolbar-"] .pbs-toolbar-tool-add:before {
content: "\EA6E";
}
.pbs-quick-action-overlay[class*="pbs-toolbar-"] .pbs-toolbar-tool-minus:before {
content: "\EA6D";
}
.pbs-quick-action-overlay[class*="pbs-toolbar-"] .pbs-toolbar-tool-link:before {
content: "\EA81";
}
.pbs-quick-action-overlay[class*="pbs-toolbar-"] .pbs-toolbar-tool-unlink:before {
content: "\EA7F";
}
.pbs-quick-action-overlay[class*="pbs-toolbar-"] .pbs-toolbar-tool-responsive_hide:before {
content: "\EA88";
}
.pbs-quick-action-overlay[class*="pbs-toolbar-"] .pbs-toolbar-tool-responsive_hide.pbs-responsive-hidden:before {
opacity: 0.7;
content: "\EA87";
}
.pbs-quick-action-overlay.pbs-overlay-toolbar.pbs-toolbar-divrow .pbs-toolbar-wrapper
.pbs-toolbar-tool.pbs-toolbar-yellow {
background: #8f949e !important;
}
.pbs-quick-action-overlay.pbs-overlay-toolbar.pbs-toolbar-divrow .pbs-toolbar-wrapper
.pbs-toolbar-tool.pbs-toolbar-yellow.pbs-toolbar-label:hover {
background: #8f949e !important;
}
.pbs-quick-action-overlay.pbs-overlay-toolbar.pbs-toolbar-divrow .pbs-toolbar-wrapper
.pbs-toolbar-tool.pbs-toolbar-yellow:not(.pbs-toolbar-label):hover {
background: #747a86 !important;
}
.pbs-quick-action-overlay.pbs-overlay-toolbar.pbs-toolbar-divrow .pbs-toolbar-wrapper
.pbs-toolbar-tool.pbs-toolbar-yellow.pbs-toolbar-tool-remove:hover {
background: #F37369 !important;
}
.pbs-quick-action-overlay.pbs-overlay-toolbar.pbs-toolbar-divrow .pbs-toolbar-wrapper
.pbs-toolbar-tool.pbs-toolbar-green {
background: #5CC4B8 !important;
}
.pbs-quick-action-overlay.pbs-overlay-toolbar.pbs-toolbar-divrow .pbs-toolbar-wrapper
.pbs-toolbar-tool.pbs-toolbar-green:hover {
background: #4ca097 !important;
}
.pbs-quick-action-overlay.pbs-overlay-toolbar.pbs-toolbar-divrow .pbs-toolbar-wrapper
.pbs-toolbar-tool.pbs-toolbar-green.pbs-toolbar-tool-remove:hover {
background: #F37369 !important;
}
.pbs-overlay-wrapper {
display: block;
top: 0;
left: 0;
bottom: 0;
right: 0;
position: absolute;
pointer-events: none;
background: transparent;
padding: 0;
transform: none;
}
.pbs-overlay-wrapper > * {
position: absolute;
transform: none;
display: block;
padding: 0;
pointer-events: all;
}
.pbs-quick-action-overlay.pbs-active .pbs-overlay-wrapper * {
display: none;
}
.pbs-quick-action-overlay.pbs-active .pbs-overlay-wrapper .pbs-control-active {
display: block;
}
.pbs-quick-action-overlay.pbs-overlay-toolbar.pbs-toolbar-divrow .pbs-toolbar-wrapper,
.pbs-quick-action-overlay.pbs-overlay-toolbar.pbs-toolbar-divcol .pbs-toolbar-wrapper {
top: auto;
left: 0;
right: auto;
bottom: calc(100% - 1px);
}
.pbs-quick-action-overlay.pbs-overlay-toolbar.pbs-toolbar-divrow .pbs-toolbar-wrapper *,
.pbs-quick-action-overlay.pbs-overlay-toolbar.pbs-toolbar-divcol .pbs-toolbar-wrapper * {
background: #4c4f56;
}
.pbs-quick-action-overlay.pbs-overlay-toolbar.pbs-toolbar-divrow .pbs-toolbar-wrapper *:not(.pbs-toolbar-label):hover,
.pbs-quick-action-overlay.pbs-overlay-toolbar.pbs-toolbar-divcol .pbs-toolbar-wrapper *:not(.pbs-toolbar-label):hover {
background: #34363b;
}
.pbs-quick-action-overlay.pbs-overlay-toolbar.pbs-toolbar-divcol .pbs-toolbar-wrapper * {
background: #8f949e;
}
.pbs-quick-action-overlay.pbs-overlay-toolbar.pbs-toolbar-divcol .pbs-toolbar-wrapper *:not(.pbs-toolbar-label):hover {
background: #747a86;
}
.pbs-quick-action-overlay.pbs-overlay-toolbar.pbs-small-toolbar .pbs-toolbar-label:not(.pbs-toolbar-yellow) {
display: none;
}
.pbs-quick-action-overlay.pbs-overlay-toolbar.pbs-toolbar-divcol .pbs-toolbar-wrapper {
left: auto;
right: 0;
}
.pbs-quick-action-overlay.pbs-overlay-toolbar.pbs-toolbar-icon.pbs-small-toolbar .pbs-toolbar-wrapper > .pbs-toolbar-label {
display: none !important;
}
.pbs-quick-action-overlay.pbs-overlay-toolbar.pbs-smaller-toolbar:not(.pbs-over) .pbs-toolbar-tool:not(.pbs-toolbar-label) {
display: none;
}
.pbs-quick-action-overlay.pbs-overlay-toolbar.pbs-tiny-toolbar:not(.pbs-over) .pbs-toolbar-tool:not(.pbs-toolbar-label) {
display: none;
}
.pbs-quick-action-overlay.pbs-overlay-toolbar.pbs-toolbar-top .pbs-toolbar-wrapper {
bottom: calc(100% - 1px);
top: auto;
right: auto;
left: 50%;
transform: translateX(-50%);
}
.pbs-quick-action-overlay.pbs-overlay-toolbar.pbs-toolbar-divcol.pbs-tiny-toolbar:not(.pbs-over) .pbs-toolbar-label,
.pbs-quick-action-overlay.pbs-overlay-toolbar.pbs-toolbar-divrow.pbs-tiny-toolbar:not(.pbs-over) .pbs-toolbar-label {
text-indent: -99999px;
overflow: hidden;
position: relative;
}
.pbs-quick-action-overlay.pbs-overlay-toolbar.pbs-toolbar-divcol.pbs-tiny-toolbar:not(.pbs-over) .pbs-toolbar-label:before,
.pbs-quick-action-overlay.pbs-overlay-toolbar.pbs-toolbar-divrow.pbs-tiny-toolbar:not(.pbs-over) .pbs-toolbar-label:before {
content: '\EA7D';
font-family: 'pbs';
position: absolute;
top: 0;
left: 0;
display: block;
text-indent: 0;
font-size: 10px;
}
.pbs-quick-action-overlay.pbs-overlay-toolbar.pbs-smaller-toolbar.pbs-over,
.pbs-quick-action-overlay.pbs-overlay-toolbar.pbs-tiny-toolbar.pbs-over {
z-index: 99999;
}
.pbs-quick-action-overlay.pbs-overlay-overlayrow.pbs-overlay-column-width ~
.pbs-quick-action-overlay.pbs-overlay-toolbar.pbs-toolbar-divrow,
.pbs-quick-action-overlay.pbs-overlay-overlayrow.pbs-overlay-column-width ~
.pbs-quick-action-overlay.pbs-overlay-toolbar.pbs-toolbar-divcol {
display: none !important;
}
.pbs-quick-action-overlay.pbs-overlay-overlayrow.pbs-over-margin-top ~
.pbs-quick-action-overlay.pbs-overlay-toolbar.pbs-toolbar-divrow,
.pbs-quick-action-overlay.pbs-overlay-overlayrow.pbs-over-margin-top ~
.pbs-quick-action-overlay.pbs-overlay-toolbar.pbs-toolbar-divcol {
display: none !important;
}
.pbs-quick-action-overlay.pbs-overlay-overlayrow,
.pbs-quick-action-overlay.pbs-overlay-overlaycolumn,
.pbs-quick-action-overlay.pbs-toolbar-divrow,
.pbs-quick-action-overlay.pbs-toolbar-divcol {
z-index: 9998;
}
/*
.pbs-toolbar-wrapper .pbs-toolbar-tool:first-child:not(.pbs-toolbar-tool-hide) {
border-bottom-left-radius: 4px;
}
.pbs-toolbar-wrapper .pbs-toolbar-tool.pbs-toolbar-tool-hide + .pbs-toolbar-tool:not(.pbs-toolbar-tool-hide) {
border-bottom-left-radius: 4px;
}
body .pbs-overlay-toolbarcolumn, body .pbs-overlay-toolbarrow {
.pbs-toolbar-wrapper .pbs-toolbar-tool:first-child:not(.pbs-toolbar-tool-hide) {
border-top-left-radius: 4px;
border-bottom-left-radius: 0;
}
.pbs-toolbar-wrapper .pbs-toolbar-tool.pbs-toolbar-tool-hide + .pbs-toolbar-tool:not(.pbs-toolbar-tool-hide) {
border-top-left-radius: 4px;
border-bottom-left-radius: 0;
}
.pbs-toolbar-wrapper .pbs-toolbar-tool:last-child {
border-top-right-radius: 4px;
}
&.pbs-tiny-toolbar, &.pbs-smaller-toolbar {
&:not(.pbs-over) .pbs-toolbar-label {
border-top-right-radius: 4px;
}
}
&.pbs-small-toolbar .pbs-toolbar-wrapper .pbs-toolbar-tool.pbs-toolbar-label:not(.pbs-toolbar-tool-hide) + .pbs-toolbar-tool {
border-top-left-radius: 4px;
}
.pbs-toolbar-wrapper .pbs-toolbar-yellow:not(.pbs-toolbar-tool-hide) ~ .pbs-toolbar-tool {
border-top-left-radius: 0 !important;
}
.pbs-toolbar-wrapper .pbs-toolbar-yellow:not(.pbs-toolbar-tool-hide) ~ .pbs-toolbar-tool.pbs-toolbar-tool-add:not(.pbs-toolbar-yellow) {
border-top-right-radius: 4px;
}
.pbs-toolbar-tool.pbs-toolbar-label.pbs-toolbar-yellow {
border-top-right-radius: 0;
}
}
*/
body #wp-auth-check-wrap .wp-auth-check-close {
padding: 0;
background: transparent;
line-height: 1em;
border: 0;
}
body #wp-auth-check-wrap .wp-auth-check-close span {
display: none;
}
#pbs-post-locked-dialog .pbs-notification-dialog-background {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: #000;
opacity: 0.7;
filter: alpha(opacity=70);
z-index: 1000000;
}
#pbs-post-locked-dialog .pbs-notification-dialog {
position: fixed;
top: 30%;
max-height: 70%;
left: 50%;
width: 450px;
margin-left: -225px;
background: #fff;
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
line-height: 1.5;
z-index: 1000005;
overflow-y: auto;
}
#pbs-post-locked-dialog .pbs-notification-dialog > * {
margin: 25px;
}
#pbs-post-locked-dialog .pbs-notification-dialog .post-locked-avatar {
float: left;
margin: 0 20px 20px 0;
}
#pbs-post-locked-dialog .pbs-notification-dialog p {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
font-size: 13px;
line-height: 1.5;
margin: 1em 0;
outline: none;
padding: 0;
}
#pbs-post-locked-dialog .pbs-notification-dialog a.button {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
margin-right: 10px;
display: inline-block;
text-decoration: none;
font-size: 13px;
line-height: 26px;
height: 28px;
margin: 0 10px 0 0;
padding: 0 10px 1px;
cursor: pointer;
border-width: 1px;
border-style: solid;
-webkit-appearance: none;
border-radius: 3px;
white-space: nowrap;
box-sizing: border-box;
color: #555;
border-color: #cccccc;
background: #f7f7f7;
box-shadow: 0 1px 0 #cccccc;
vertical-align: top;
vertical-align: baseline;
text-transform: none;
font-weight: normal;
}
#pbs-post-locked-dialog .pbs-notification-dialog a.button.button-primary {
background: #008ec2;
border-color: #006799;
color: #fff;
}
#wpadminbar.ct-ignition--busy #wp-admin-bar-pbs_responsive_desktop,
#wpadminbar.ct-ignition--busy #wp-admin-bar-pbs_responsive_tablet,
#wpadminbar.ct-ignition--busy #wp-admin-bar-pbs_responsive_phone {
display: none !important;
}
#wpadminbar #wp-toolbar #wp-admin-bar-pbs_responsive_desktop,
#wpadminbar #wp-toolbar #wp-admin-bar-pbs_responsive_tablet,
#wpadminbar #wp-toolbar #wp-admin-bar-pbs_responsive_phone {
text-align: center;
border-left: 1px solid #2a2a2a;
border-right: 1px solid #2a2a2a;
margin-right: -1px;
}
#wpadminbar #wp-toolbar #wp-admin-bar-pbs_responsive_desktop .ab-item,
#wpadminbar #wp-toolbar #wp-admin-bar-pbs_responsive_tablet .ab-item,
#wpadminbar #wp-toolbar #wp-admin-bar-pbs_responsive_phone .ab-item {
padding: 0 !important;
}
#wpadminbar #wp-toolbar #wp-admin-bar-pbs_responsive_desktop .ab-item .ab-icon,
#wpadminbar #wp-toolbar #wp-admin-bar-pbs_responsive_tablet .ab-item .ab-icon,
#wpadminbar #wp-toolbar #wp-admin-bar-pbs_responsive_phone .ab-item .ab-icon {
margin: 0;
padding: 0;
width: 36px;
}
#wpadminbar #wp-toolbar #wp-admin-bar-pbs_responsive_desktop .ab-item .ab-icon:before,
#wpadminbar #wp-toolbar #wp-admin-bar-pbs_responsive_tablet .ab-item .ab-icon:before,
#wpadminbar #wp-toolbar #wp-admin-bar-pbs_responsive_phone .ab-item .ab-icon:before {
content: '\EA84';
font-family: 'pbs';
font-size: 13px;
line-height: 1em;
top: 10px !important;
display: block;
}
#wpadminbar #wp-toolbar #wp-admin-bar-pbs_responsive_tablet .ab-item .ab-icon:before {
content: '\EA86';
font-size: 15px;
top: 9px !important;
}
#wpadminbar #wp-toolbar #wp-admin-bar-pbs_responsive_phone .ab-item .ab-icon:before {
content: '\EA85';
font-size: 15px;
top: 9px !important;
}
html.pbs-editing {
margin-top: 77px !important;
}
@keyframes pbs-spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.pbs-ignore-while-editing {
pointer-events: none;
}
@media screen and (min-width: 59.6875em) {
html.theme-twenty-fifteen.pbs-inspector-docked-right body:before,
html.theme-twenty-fifteen.pbs-inspector-docked-left body:before {
width: calc((100% - 288px) * .294118);
}
html.theme-twenty-fifteen.pbs-inspector-docked-left body:before {
margin-left: 288px;
}
}
@media screen and (max-width: 1400px) {
body .ct-widget.ct-toolbox.pbs-toolbox-bar .ct-tool {
width: 32px;
}
body .ct-widget.ct-toolbox.pbs-toolbox-bar .ct-tool:before {
font-size: 13px;
}
}
@media screen and (max-width: 1200px) {
body .ct-widget .ct-tool.ct-tool--color {
margin: 14px 8px !important;
width: 17px !important;
height: 17px !important;
}
.pbs-toolbox-bar.ct-widget .ct-tool.ct-tool--insert-element {
width: 32px !important;
}
.pbs-toolbox-bar.ct-widget .ct-tool.ct-tool--insert-element span {
display: none;
}
.pbs-tool-sep {
display: none;
}
}
@media screen and (max-width: 1000px) {
#pbs-learn-premium-wrapper .pbs-learn-premium {
max-height: 800px;
}
#pbs-learn-premium-wrapper .pbs-learn-carousel {
margin-top: -5vh;
}
#pbs-learn-premium-wrapper .pbs-learn-premium.pbs-learn-premium-elements {
max-height: 500px;
padding-left: 30vw;
background-image: rgba(255, 255, 255, 0.6), url("../images/learn-premium-flag.png");
}
}
@media screen and (max-width: 900px) {
body .ct-widget.ct-toolbox.pbs-toolbox-bar .ct-tool.ct-tool--responsive-hide {
display: block;
}
.pbs-toolbox-bar .pbs-premium-flag {
display: none !important;
}
.ct-tool--indent,
.ct-tool--unindent,
.ct-tool--undo,
.ct-tool--redo,
.ct-tool--code,
.ct-tool--strikethrough,
.ct-tool--uppercase,
.ct-tool--hr {
display: none;
}
.pbs-toolbox-bar.ct-widget .ct-tool.ct-tool--color:before {
background-position: 0 0,40px 40px;
background-size: 16px 16px;
}
}
@media screen and (max-width: 850px) {
#pbs-learn-premium-wrapper .pbs-learn-premium.pbs-learn-premium-elements {
max-height: 500px;
background: #fff !important;
padding: 30px;
}
}
@media screen and (max-width: 800px) {
.pbs-quick-action-overlay {
margin-top: 0;
}
html.pbs-editing {
transition: none !important;
margin-top: 45px !important;
}
html.pbs-editing #wpadminbar,
html.pbs-editing .pbs-interactive-elements-group {
transition: none !important;
display: none;
}
.pbs-toolbox-bar {
transition: none !important;
}
body .ct-widget.ct-toolbox.pbs-toolbox-bar {
top: 0;
}
.pbs-tooltip,
[class*="pbs-overlay-resize-"],
.pbs-overlay-overlaycolumn [class*="pbs-overlay-padding-"],
body.pbs-overlay-is-nested-row .pbs-overlay-overlayrow [class*="pbs-overlay-margin"],
.pbs-overlay-overlayrow [class*="pbs-overlay-column-"],
.ct-tool.ct-tool--insert-element,
.pbs-overlay-toolbar .pbs-toolbar-tool:not(.pbs-toolbar-label):not(.pbs-toolbar-tool-responsive_hide),
.pbs-toolbox-properties {
display: none !important;
}
body.pbs-force-mobile-adjustments.pbs-overlay-active-toolbarimage .pbs-overlay-overlayelement [class*="pbs-overlay-margin-"] {
display: none !important;
}
}
@media screen and (max-width: 700px) and (max-height: 700px) {
#pbs-learn-premium-wrapper .pbs-learn-premium {
max-height: 800px;
}
#pbs-learn-premium-wrapper .pbs-learn-premium .pbs-learn-carousel.pbs-learn-carousel {
margin-top: 0px !important;
}
#pbs-learn-premium-wrapper .pbs-learn-carousel .pbs-learn-slides .pbs-learn-slide img {
position: absolute;
}
#pbs-learn-premium-wrapper .pbs-learn-carousel .pbs-learn-slides .pbs-learn-slide h3 {
margin-top: 30px !important;
}
}
@media screen and (max-width: 700px) {
body .ct-widget.ct-toolbox.pbs-toolbox-bar {
display: none;
}
}
@media only screen and (max-width: 640px), screen and (max-height: 400px) {
.pbs-modal-frame {
left: 0 !important;
right: 0 !important;
}
}
@media screen and (max-width: 600px) and (max-height: 600px) {
.pbs-learn-carousel {
display: none !important;
}
}
@media screen and (max-width: 600px) {
#pbs-learn-premium-wrapper .pbs-learn-buy-button a {
margin: 5px;
}
}
@media screen and (max-width: 400px) {
.pbs-quick-action-overlay {
margin-top: 45px;
}
html.pbs-editing {
margin-top: 0 !important;
}
body:not(.pbs-hide-responsive) .pbs-main-wrapper.pbs-editing [data-pbs-hide-phone="1"],
body:not(.pbs-hide-responsive) .pbs-main-wrapper.pbs-editing [data-pbs-hide-phone="2"] {
opacity: 0.15;
display: block !important;
}
}
@media screen and (max-width: 900px) and (min-width: 400px) {
body:not(.pbs-hide-responsive) .pbs-main-wrapper.pbs-editing [data-pbs-hide-tablet] {
opacity: 0.15;
display: block !important;
}
}
@media screen and (max-height: 700px) {
#pbs-learn-premium-wrapper .pbs-learn-premium {
height: 400px !important;
}
#pbs-learn-premium-wrapper .pbs-learn-premium .pbs-learn-carousel {
margin-top: 0 !important;
}
#pbs-learn-premium-wrapper .pbs-learn-premium h2 + p {
display: none;
}
#pbs-learn-premium-wrapper .pbs-learn-premium .pbs-learn-carousel {
margin-top: -200px !important;
}
#pbs-learn-premium-wrapper .pbs-learn-premium .pbs-learn-carousel .pbs-learn-slides .pbs-learn-slide img {
opacity: .2;
top: 0;
}
#pbs-learn-premium-wrapper .pbs-learn-premium .pbs-learn-carousel .pbs-learn-slides .pbs-learn-slide h3 {
margin-top: 0px !important;
}
#pbs-learn-premium-wrapper .pbs-learn-premium .pbs-learn-indicators {
z-index: 2;
margin-bottom: 0;
}
#pbs-learn-premium-wrapper .pbs-learn-premium .pbs-learn-indicators label {
width: 8px;
height: 8px;
margin: 5px 6px;
}
#pbs-learn-premium-wrapper .pbs-learn-premium.pbs-learn-premium-elements {
background-position-y: 30px;
}
} |
src/styles/global.css | goldylucks/adamgoldman.me | a,
button,
.btn {
cursor: pointer;
}
|
ATTACHMENTS/EducationalAssignments/WebServer/thewall.html | SeattleTestbed/docs | <html>
<head></head>
<body>
<table width="90%" align="center">
<tr><td><b>Mike</b> : Hello</td></tr>
<tr><td><b>Me</b> : Hi</td></tr>
<tr><td><hr></td></tr>
<tr><td>
<form method="GET">
Name: <input type="text" name="name"><br>
Comment: <input type="text" name="comment"><br>
<input type="submit" value="Send Message">
</form>
</td></tr>
</table>
</body>
</html>
|
38041fc/html/classv8_1_1_debug-members.html | v8-dox/v8-dox.github.io | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.9.1"/>
<title>V8 API Reference Guide for node.js v0.1.90: Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<script type="text/javascript">
$(document).ready(function() { init_search(); });
</script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td style="padding-left: 0.5em;">
<div id="projectname">V8 API Reference Guide for node.js v0.1.90
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.9.1 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "search",false,'Search');
</script>
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
<li><a href="examples.html"><span>Examples</span></a></li>
<li>
<div id="MSearchBox" class="MSearchBoxInactive">
<span class="left">
<img id="MSearchSelect" src="search/mag_sel.png"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
<input type="text" id="MSearchField" value="Search" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
</span><span class="right">
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
</span>
</div>
</li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class List</span></a></li>
<li><a href="classes.html"><span>Class Index</span></a></li>
<li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class Members</span></a></li>
</ul>
</div>
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><a class="el" href="namespacev8.html">v8</a></li><li class="navelem"><a class="el" href="classv8_1_1_debug.html">Debug</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="headertitle">
<div class="title">v8::Debug Member List</div> </div>
</div><!--header-->
<div class="contents">
<p>This is the complete list of members for <a class="el" href="classv8_1_1_debug.html">v8::Debug</a>, including all inherited members.</p>
<table class="directory">
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1_debug.html#a49a3e0cf585cfd201d8ab1bc395d0593">Call</a>(v8::Handle< v8::Function > fun, Handle< Value > data=Handle< Value >())</td><td class="entry"><a class="el" href="classv8_1_1_debug.html">v8::Debug</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>DebugBreak</b>() (defined in <a class="el" href="classv8_1_1_debug.html">v8::Debug</a>)</td><td class="entry"><a class="el" href="classv8_1_1_debug.html">v8::Debug</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1_debug.html#a91cd8aa9743e3478bc63fe73abcd557c">DebugMessageDispatchHandler</a> typedef</td><td class="entry"><a class="el" href="classv8_1_1_debug.html">v8::Debug</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1_debug.html#a78506e80b599010624c5fcde72a643a7">EnableAgent</a>(const char *name, int port, bool wait_for_connection=false)</td><td class="entry"><a class="el" href="classv8_1_1_debug.html">v8::Debug</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1_debug.html#a4be52510b70764b730dd1289bd9bbe37">EventCallback</a> typedef</td><td class="entry"><a class="el" href="classv8_1_1_debug.html">v8::Debug</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1_debug.html#a2343a321b0db41324b7e8a7402f57cf0">GetDebugContext</a>()</td><td class="entry"><a class="el" href="classv8_1_1_debug.html">v8::Debug</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1_debug.html#aa7d07c7d5c9ee2eaaa9af310bcbf58f5">GetMirror</a>(v8::Handle< v8::Value > obj)</td><td class="entry"><a class="el" href="classv8_1_1_debug.html">v8::Debug</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1_debug.html#a442f686afe7d80928b57b3ff8ac3f6e7">HostDispatchHandler</a> typedef</td><td class="entry"><a class="el" href="classv8_1_1_debug.html">v8::Debug</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1_debug.html#aea5c8ab838a3b3c263a71828fb0767ac">MessageHandler</a> typedef</td><td class="entry"><a class="el" href="classv8_1_1_debug.html">v8::Debug</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classv8_1_1_debug.html#a0fb8f7e1f8fa47cb23f7ad72cd533c77">MessageHandler2</a> typedef</td><td class="entry"><a class="el" href="classv8_1_1_debug.html">v8::Debug</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1_debug.html#a888e06766caee0380c6aa010b00e1a54">ProcessDebugMessages</a>()</td><td class="entry"><a class="el" href="classv8_1_1_debug.html">v8::Debug</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>SendCommand</b>(const uint16_t *command, int length, ClientData *client_data=NULL) (defined in <a class="el" href="classv8_1_1_debug.html">v8::Debug</a>)</td><td class="entry"><a class="el" href="classv8_1_1_debug.html">v8::Debug</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>SetDebugEventListener</b>(EventCallback that, Handle< Value > data=Handle< Value >()) (defined in <a class="el" href="classv8_1_1_debug.html">v8::Debug</a>)</td><td class="entry"><a class="el" href="classv8_1_1_debug.html">v8::Debug</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>SetDebugEventListener</b>(v8::Handle< v8::Object > that, Handle< Value > data=Handle< Value >()) (defined in <a class="el" href="classv8_1_1_debug.html">v8::Debug</a>)</td><td class="entry"><a class="el" href="classv8_1_1_debug.html">v8::Debug</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classv8_1_1_debug.html#a5147f6cfeb9b87a67630b8c959996e9c">SetDebugMessageDispatchHandler</a>(DebugMessageDispatchHandler handler, bool provide_locker=false)</td><td class="entry"><a class="el" href="classv8_1_1_debug.html">v8::Debug</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>SetHostDispatchHandler</b>(HostDispatchHandler handler, int period=100) (defined in <a class="el" href="classv8_1_1_debug.html">v8::Debug</a>)</td><td class="entry"><a class="el" href="classv8_1_1_debug.html">v8::Debug</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>SetMessageHandler</b>(MessageHandler handler, bool message_handler_thread=false) (defined in <a class="el" href="classv8_1_1_debug.html">v8::Debug</a>)</td><td class="entry"><a class="el" href="classv8_1_1_debug.html">v8::Debug</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>SetMessageHandler2</b>(MessageHandler2 handler) (defined in <a class="el" href="classv8_1_1_debug.html">v8::Debug</a>)</td><td class="entry"><a class="el" href="classv8_1_1_debug.html">v8::Debug</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
</table></div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Tue Aug 11 2015 23:44:39 for V8 API Reference Guide for node.js v0.1.90 by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.9.1
</small></address>
</body>
</html>
|
test/index.html | diddledan/broadway-heading | <!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Tests</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="../../../mocha/mocha.js"></script>
<script src="../../../wct-mocha/wct-mocha.js"></script>
</head>
<body>
<script>
WCT.loadSuites([
'broadway-heading_test.html',
'broadway-heading_test.html?wc-shadydom=true&wc-ce=true',
]);
</script>
</body>
</html> |
Catstagram/app/assets/stylesheets/application.css | ValentinMinder/catstagram | /*
* This is a manifest file that'll be compiled into application.css, which will include all the files
* listed below.
*
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
* or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
*
* You're free to add application-wide styles to this file and they'll appear at the bottom of the
* compiled file so the styles you add here take precedence over styles defined in any styles
* defined in the other CSS/SCSS files in this directory. It is generally better to create a new
* file per style scope.
*
*= require bootstrap-theme.min
*= require bootstrap.min
*= require_tree .
*= require_self
*/
|
stylesheets/default.css | axblum/axblum.github.io | * {
margin: 0;
padding: 0;
}
html,
body {
margin: 0;
padding: 0;
height: 100%;
background-color: black;
font-family: 'Muli', sans-serif;
color: #6EB84A;
}
.wrapper {
position: relative;
min-height: 100%;
width: 100%;
overflow: hidden;
}
nav ul li {
display: inline;
padding-right: 10px;
padding-left: 10px;
}
nav ul {
display: inline;
padding: 0px;
margin: 0px;
}
.logo-nav {
height: 30px;
}
.logo {
float: left;
}
.nav {
float: right;
}
.pano {
width: 100%;
}
a:link
{
color:#6EB84A;
}
a:hover {
color: white;
}
a:visited{
color: white;
}
main {
margin-bottom: 100px;
overflow: hidden;
}
h2{
text-align: center;
font-size: 2em;
margin: .75em auto;
}
h3{
margin: .75em auto;
}
.aboutme h3 a img{
width:61px;
height:60px;
vertical-align:middle;
padding:5px
}
.left-col {
float: left;
width: 49%;
text-align: center;
margin-right: 3px;
}
.right-col {
float: left;
width: 49%;
}
footer {
position: absolute;
bottom: 0;
height: 60px;
width: 100%;
text-align: center;
}
footer img{
width: 30px;
height: 30px;
padding-right: 5px;
padding-left: 5px;
}
footer p{
margin-top: 3px;
}
|
index.html | Smotko/jumpdrive | <html>
<head>
<title>Ludum Dare 27</title>
<meta charset="UTF-8">
<link href='http://fonts.googleapis.com/css?family=Quicksand:400,700' rel='stylesheet' type='text/css'>
<style>
body {
font-family: Monospace;
background-color: #000000;
background: url(bg2.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
margin: 0px;
overflow: hidden;
}
a{
text-decoration: none;
}
#story {
width: 500px;
position: absolute;
background-color:rgba(0,0,0,0.5);
right: 20px;
bottom:20px;
color: white;
border: 1px solid white;
display:none;
}
img {
padding: 10px;
float: left;
}
h1{
padding: 0px;
margin: 0px;
font-size: 18px;
}
.content {
padding: 10px;
}
p {
margin-bottom:0px;
}
#end{
width: 500px;
position: absolute;
background-color:rgba(0,0,0,0.5);
right: 20px;
top:20px;
color: white;
border: 1px solid white;
display:none;
}
#hardcore{
width: 500px;
position: absolute;
background-color:rgba(0,0,0,0.5);
left: 20px;
top:20px;
color: gold;
border: 1px solid gold;
display:none;
}
#gstats{
width: 500px;
position: absolute;
background-color:rgba(0,0,0,0.5);
left: 20px;
bottom:20px;
color: white;
border: 1px solid white;
display:none;
}
</style>
</head>
<body>
<div id="story"><img src="face.png" /><div class="content"><h1>Navigation Officer Arnold J. Rimmer says:</h1>
<p id="sc">
</p>
</div><div style="clear:both"></div></div>
<div id="hardcore"><div class="content"><h1>You've done it, you made it through the hardcore mode!</h1>
<p id="hcp">
</p>
</div><div style="clear:both"></div></div>
<div id="gstats"><div class="content"><h1>Some awesome stats, just for you!</h1>
<p>
Collisions: <strong id="colls"></strong><br />
</p>
<p>
Deaths: <strong id="deaths"></strong><br />
</p>
<p>
Fuel consumed: <strong id="traveled"></strong><br />
</p>
</div><div style="clear:both"></div></div>
<div id="end"><div class="content"><h1>The End</h1>
<p>
<strong style='color:green'>GOOD</strong> news: It isn't a black hole! <strong style='color:red'>BAD</strong> news: It's the end of the game.
</p>
<p>
Thank you for playing!
</p>
<p>
This game was made for <a href="http://www.ludumdare.com/compo/ludum-dare-27/">LudumDare 27</a> game jam. If you enjoyed playing it let me know on twitter (<a href="">@smotko</a>)!
</p>
<p>
The awesome music loop is from SoundCloud <a href="https://soundcloud.com/nickleus/anthem-of-the-cosmos-last-man-in-space-music-to-fall-asleep-too-in-a-dark-and-lonely-room" >SoundCloud</a>
</p>
<p>
But wait, there is more. If you're looking for a challange try out the <strong style="color:purple">HARDCORE MODE</strong>! To unlock [long press mouse button]
</p>
</div><div style="clear:both"></div></div>
<script src="/libs/Stats.js"></script>
<script src="/libs/jquery-2.0.0.min.js"></script>
<script src="/libs/underscore-min.js"></script>
<script src="/libs/three.js"></script>
<script src="/libs/Detector.js"></script>
<script src="/libs/OrbitControls.js"></script>
<script src="/fonts/helvetiker_bold.typeface.js"></script>
<script src="/fonts/helvetiker_regular.typeface.js"></script>
<script src="/libs/cannon.js"></script>
<script src="/libs/cannon.demo.js"></script>
<script src="/libs/hammer.min.js"></script>
<script src="/libs/howler.min.js"></script>
<script src="/libs/inheritance.js"></script>
<script>
tv3 = THREE.Vector3;
cv3 = CANNON.Vec3;
</script>
<script data-main="/game/main" src="/libs/require-min.js"></script>
<script>
var sound = new Howl({
urls: ['bgsound.mp3'],
autoplay: true,
loop: true,
volume: 0.5,
onend: function() {
console.log('Finished!');
}
});
</script>
</body>
</html>
|
all-data/18000-18999/18451-22.html | BuzzAcademy/idioms-moe-unformatted-data | <table width="90%" border="0"><tr><td><script>function openfile(url) {fullwin = window.open(url, "fulltext", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes");}</script><div class="flayoutclass"><div class="flayoutclass_first"><table class="tableoutfmt2"><tr><th class="std1"><b>條目 </b></th><td class="std2">西子捧心</td></tr>
<tr><th class="std1"><b>注音 </b></th><td class="std2">ㄒ| ㄗ<sup class="subfont">ˇ</sup> ㄆㄥ<sup class="subfont">ˇ</sup> ㄒ|ㄣ</td></tr>
<tr><th class="std1"><b>漢語拼音 </b></th><td class="std2"><font class="english_word">xī zǐ pěng xīn</font></td></tr>
<tr><th class="std1"><b>釋義 </b></th><td class="std2">比喻別具風姿或病困愁苦之態。見<img src=/cydic/dicword/fa40.gif border=0 alt=* class=fontimg valign=center>西施捧心<img src=/cydic/dicword/fa41.gif border=0 alt=* class=fontimg valign=center>條。幼學瓊林˙卷二˙身體類:<img src=/cydic/dicword/fa40.gif border=0 alt=* class=fontimg valign=center>西子捧心,愈見增妍。醜婦效顰,弄巧反拙。<img src=/cydic/dicword/fa41.gif border=0 alt=* class=fontimg valign=center></td></tr>
<tr><th class="std1"><b><font class="fltypefont">附錄</font> </b></th><td class="std2">修訂本參考資料</td></tr>
</td></tr></table></div> <!-- flayoutclass_first --><div class="flayoutclass_second"></div> <!-- flayoutclass_second --></div> <!-- flayoutclass --></td></tr></table>
|
web_app/app/templates/fly.html | BradAJ/zipflights | <!-- extend from base layout -->
{% extends "base.html" %}
{% block content %}
<h2>Find Destinations</h2>
<form action="" method="post" name="dests">
{{form.hidden_tag()}}
<h3><ul>Departing from:
{{form.origin(size = 3, maxlength = 3)}} (airport code)</ul>
{% for error in form.errors.origin %}
<span style="color: red;">[{{error}}]</span>
{% endfor %}
<ul><input type="submit" value="Fly!"></ul>
</h3>
</form>
{% endblock %}
|
docs/styles/prettify-tomorrow.css | tostegroo/rivescript-nginb-js | /* Tomorrow Theme */
/* Original theme - https://github.com/chriskempson/tomorrow-theme */
/* Pretty printing styles. Used with prettify.js. */
/* SPAN elements with the classes below are added by prettyprint. */
/* plain text */
.pln {
color: #1c1c1b; }
@media screen {
/* string content */
.str {
color: #489963; }
/* a keyword */
.kwd {
color: #06a9b9; }
/* a comment */
.com {
color: #78877d; }
/* a type name */
.typ {
color: #20bdaf; }
/* a literal value */
.lit {
color: #55859b; }
/* punctuation */
.pun {
color: #1c1c1b; }
/* lisp open bracket */
.opn {
color: #1c1c1b; }
/* lisp close bracket */
.clo {
color: #1c1c1b; }
/* a markup tag name */
.tag {
color: #b16139; }
/* a markup attribute name */
.atn {
color: #55859b; }
/* a markup attribute value */
.atv {
color: #1c9aa0; }
/* a declaration */
.dec {
color: #f5871f; }
/* a variable name */
.var {
color: #c82829; }
/* a function name */
.fun {
color: #4271ae; } }
/* Use higher contrast and text-weight for printable form. */
@media print, projection {
.str {
color: #060; }
.kwd {
color: #006;
font-weight: bold; }
.com {
color: #600;
font-style: italic; }
.typ {
color: #404;
font-weight: bold; }
.lit {
color: #044; }
.pun, .opn, .clo {
color: #440; }
.tag {
color: #006;
font-weight: bold; }
.atn {
color: #404; }
.atv {
color: #060; } }
/* Style */
/*
pre.prettyprint {
background: white;
font-family: Consolas, Monaco, 'Andale Mono', monospace;
font-size: 12px;
line-height: 1.5;
border: 1px solid #ccc;
padding: 10px; }
*/
/* Specify class=linenums on a pre to get line numbering */
ol.linenums {
margin-top: 0;
margin-bottom: 0; }
/* IE indents via margin-left */
li.L0,
li.L1,
li.L2,
li.L3,
li.L4,
li.L5,
li.L6,
li.L7,
li.L8,
li.L9 {
/* */ }
/* Alternate shading for lines */
li.L1,
li.L3,
li.L5,
li.L7,
li.L9 {
/* */ }
|
static/login.html | dagnelies/restfs | <!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous">
</head>
<body>
<div class="container">
<center><h1>FTP Explorer</h1></center>
<br/>
<div class="row">
<div class="col-md-3"></div>
<div class="col-md-6">
<div class="jumbotron">
<form action="/do_login">
<div class="form-group">
<label>Server</label>
<input name="server" class="form-control" placeholder="ftp(s)://...">
</div>
<div class="form-group">
<label>Username</label>
<input name="username" class="form-control" placeholder="anonymous">
</div>
<div class="form-group">
<label>Password</label>
<input name="password" type="password" class="form-control">
</div>
<hr/>
<!-- >div class="form-group">
<label>Protocol</label>
<select><option>FTP</option><option>SFTP</option><option>FTPS</option></select>
</div>
<div class="form-group">
<label>Language</label>
<select><option>English</option></select>
</div>
<div class="form-group">
<label>Theme</label>
<select><option>Classic</option></select>
</div-->
<button type="submit" class="btn btn-primary btn-block">Connect</a>
</form>
</div>
</div>
<div class="col-md-3"></div>
</div>
</div>
</body>
</html> |
public/css/selection.css | arlenpan/CSE170Collaborate | a:hover {
text-decoration: none;
}
/* SEARCHBAR */
.input-group {
margin-bottom: 15px;
}
.input-group button {
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}
/* GIANT LIST OF CUSIINES */
.btn-group {
margin-bottom: 15px;
vertical-align: middle;
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.btn-group label {
border-radius: 0;
flex-grow: 1;
}
.active {
background-color: #DE7684 !important;
border: 1px solid #DE7684 !important;
color: white !important;
}
/* CHOOSING/DONE TAGS (in jquery)*/
.tag-choosing {
color: #DE7684;
font-weight: bold;
}
.tag-done {
color: #70AE5D;
font-weight: bold;
}
/* ALL DONE MODAL */
.modal-submitted {
padding: 50px;
text-align: center;
} |
_includes/header.html | improve100/improve100.github.io | <header class="navbar navbar-inverse navbar-fixed-top docs-nav" role="banner">
<div class="container">
<div class="navbar-header">
<button class="navbar-toggle" type="button" data-toggle="collapse" data-target=".bs-navbar-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a href="/" class="navbar-brand">
<img src="{{ '/styles/images/logo.jpg' | prepend: site.baseurl }}">
</a>
</div>
<nav class="collapse navbar-collapse bs-navbar-collapse" role="navigation">
<ul class="nav navbar-nav">
<li>
<a href="{{ '/' | prepend: site.baseurl }}">时间轴</a>
</li>
<li>
<a href="{{ '/categories/' | prepend: site.baseurl }}">目录</a>
</li>
<li>
<a href="{{ '/tag' | prepend: site.baseurl }}">标签</a>
</li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li>
<a href="{{ '/donate/' | prepend: site.baseurl }}"><strong>打赏</strong></a>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">关于<b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a rel="nofollow" target="_blank" href="{{site.github}}">Github</a></li>
<li><a rel="nofollow" target="_blank" href="{{site.resume_site}}">关于作者</a></li>
<li><a rel="nofollow" href="{{ '/books' | prepend: site.baseurl }}">我的书单</a></li>
<li><a rel="nofollow" href="{{ '/reference' | prepend: site.baseurl }}">推荐博客</a></li>
<li><a href="{{ '/feed.xml' | prepend: site.baseurl }}">RSS订阅</a></li>
<li class="divider"></li>
<!--<li><a rel="nofollow" target="_blank" href="https://github.com/luoyan35714/LessOrMore.git">本项目</a></li>-->
</ul>
</li>
</ul>
</nav>
</div>
</header>
|
api/v0.6.6/utility/input/InputManager.setKeyState.html | Circular-Studios/Dash-Docs |
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8"/><!-- using block title in layout.dt--><!-- using block ddox.defs in ddox.layout.dt--><!-- using block ddox.title in ddox.layout.dt-->
<title>Method InputManager.setKeyState</title>
<link rel="stylesheet" type="text/css" href="../../styles/ddox.css"/>
<link rel="stylesheet" href="../../prettify/prettify.css" type="text/css"/>
<script type="text/javascript" src="../../scripts/jquery.js">/**/</script>
<script type="text/javascript" src="../../prettify/prettify.js">/**/</script>
<script type="text/javascript" src="../../scripts/ddox.js">/**/</script>
</head>
<body onload="prettyPrint(); setupDdox();">
<nav id="main-nav"><!-- using block navigation in layout.dt-->
<ul class="tree-view">
<li class="collapsed tree-view">
<a href="#" class="package">components</a>
<ul class="tree-view">
<li>
<a href="../../components/animation.html" class=" module">animation</a>
</li>
<li>
<a href="../../components/assets.html" class=" module">assets</a>
</li>
<li>
<a href="../../components/camera.html" class=" module">camera</a>
</li>
<li>
<a href="../../components/icomponent.html" class=" module">icomponent</a>
</li>
<li>
<a href="../../components/lights.html" class=" module">lights</a>
</li>
<li>
<a href="../../components/material.html" class=" module">material</a>
</li>
<li>
<a href="../../components/mesh.html" class=" module">mesh</a>
</li>
<li>
<a href="../../components/userinterface.html" class=" module">userinterface</a>
</li>
</ul>
</li>
<li class="collapsed tree-view">
<a href="#" class="package">core</a>
<ul class="tree-view">
<li>
<a href="../../core/dgame.html" class=" module">dgame</a>
</li>
<li>
<a href="../../core/gameobject.html" class=" module">gameobject</a>
</li>
<li>
<a href="../../core/prefabs.html" class=" module">prefabs</a>
</li>
<li>
<a href="../../core/properties.html" class=" module">properties</a>
</li>
<li>
<a href="../../core/reflection.html" class=" module">reflection</a>
</li>
<li>
<a href="../../core/scene.html" class=" module">scene</a>
</li>
</ul>
</li>
<li class="collapsed tree-view">
<a href="#" class="package">graphics</a>
<ul class="tree-view">
<li class="collapsed tree-view">
<a href="#" class="package">adapters</a>
<ul class="tree-view">
<li>
<a href="../../graphics/adapters/adapter.html" class=" module">adapter</a>
</li>
<li>
<a href="../../graphics/adapters/linux.html" class=" module">linux</a>
</li>
<li>
<a href="../../graphics/adapters/mac.html" class=" module">mac</a>
</li>
<li>
<a href="../../graphics/adapters/win32.html" class=" module">win32</a>
</li>
</ul>
</li>
<li class="collapsed tree-view">
<a href="#" class="package">shaders</a>
<ul class="tree-view">
<li class="collapsed tree-view">
<a href="#" class="package">glsl</a>
<ul class="tree-view">
<li>
<a href="../../graphics/shaders/glsl/ambientlight.html" class=" module">ambientlight</a>
</li>
<li>
<a href="../../graphics/shaders/glsl/animatedgeometry.html" class=" module">animatedgeometry</a>
</li>
<li>
<a href="../../graphics/shaders/glsl/directionallight.html" class=" module">directionallight</a>
</li>
<li>
<a href="../../graphics/shaders/glsl/geometry.html" class=" module">geometry</a>
</li>
<li>
<a href="../../graphics/shaders/glsl/pointlight.html" class=" module">pointlight</a>
</li>
<li>
<a href="../../graphics/shaders/glsl/userinterface.html" class=" module">userinterface</a>
</li>
</ul>
</li>
<li>
<a href="../../graphics/shaders/glsl.html" class=" module">glsl</a>
</li>
<li>
<a href="../../graphics/shaders/shaders.html" class=" module">shaders</a>
</li>
</ul>
</li>
<li>
<a href="../../graphics/adapters.html" class=" module">adapters</a>
</li>
<li>
<a href="../../graphics/graphics.html" class=" module">graphics</a>
</li>
<li>
<a href="../../graphics/shaders.html" class=" module">shaders</a>
</li>
</ul>
</li>
<li class=" tree-view">
<a href="#" class="package">utility</a>
<ul class="tree-view">
<li>
<a href="../../utility/awesomium.html" class=" module">awesomium</a>
</li>
<li>
<a href="../../utility/concurrency.html" class=" module">concurrency</a>
</li>
<li>
<a href="../../utility/config.html" class=" module">config</a>
</li>
<li>
<a href="../../utility/filepath.html" class=" module">filepath</a>
</li>
<li>
<a href="../../utility/input.html" class="selected module">input</a>
</li>
<li>
<a href="../../utility/output.html" class=" module">output</a>
</li>
<li>
<a href="../../utility/string.html" class=" module">string</a>
</li>
<li>
<a href="../../utility/tasks.html" class=" module">tasks</a>
</li>
<li>
<a href="../../utility/time.html" class=" module">time</a>
</li>
</ul>
</li>
<li>
<a href="../../components.html" class=" module">components</a>
</li>
<li>
<a href="../../core.html" class=" module">core</a>
</li>
<li>
<a href="../../graphics.html" class=" module">graphics</a>
</li>
<li>
<a href="../../utility.html" class=" module">utility</a>
</li>
</ul>
<noscript>
<p style="color: red">The search functionality needs JavaScript enabled</p>
</noscript>
<div id="symbolSearchPane" style="display: none">
<p>
<input id="symbolSearch" type="text" placeholder="Search for symbols" onchange="performSymbolSearch(24);" onkeypress="this.onchange();" onpaste="this.onchange();" oninput="this.onchange();"/>
</p>
<ul id="symbolSearchResults" style="display: none"></ul>
<script type="application/javascript" src="../../symbols.js"></script>
<script type="application/javascript">
//<![CDATA[
var symbolSearchRootDir = "../../"; $('#symbolSearchPane').show();
//]]>
</script>
</div>
</nav>
<div id="main-contents">
<h1>Method InputManager.setKeyState</h1><!-- using block body in layout.dt--><!-- Default block ddox.description in ddox.layout.dt--><!-- Default block ddox.sections in ddox.layout.dt--><!-- using block ddox.members in ddox.layout.dt-->
<p> Sets the state of the key to be assigned at the beginning of next frame.
Should only be called from a window controller.
</p>
<section>
</section>
<section>
<h2>Prototype</h2>
<pre class="code prettyprint lang-d prototype">
void setKeyState(
uint keyCode,
bool newState
) shared final;</pre>
</section>
<section>
<h2>Authors</h2><!-- using block ddox.authors in ddox.layout.dt-->
</section>
<section>
<h2>Copyright</h2><!-- using block ddox.copyright in ddox.layout.dt-->
</section>
<section>
<h2>License</h2><!-- using block ddox.license in ddox.layout.dt-->
</section>
</div>
</body>
</html> |
src/pages/preaprobadas/cr-prestamos-personales-baccredomatic.html | guayom/bacceredomatic-email-templates | ---
subject: Tenés un préstamo pre-aprobado
header: Tenés un préstamo pre-aprobado
preheader: Obtené tu préstamo personal en-línea y sin costos de formalización.
description:
charset: ISO-8859-1
replyto: prestamospersonales@baccredomatic.com
version_web: "https://content.baccredomatic.com/es-cr/mailing/com/2x16/cr-prestamos-personales-baccredomatic-web.html"
cta_text: Solicitalo aquí
cta_link: "https://www.baccredomatic.com/es-cr/form/3491?utm_source=email&utm_medium=eloqua&utm_campaign=cr_prestamos_personales_email_julio_2018"
cta_title: "Click para descubrir como"
disclaimer: " Aplican restricciones, ver reglamento en baccredomatic.com. Si ya formalizaste tu Préstamo Personal, omití este mensaje. Si no deseas recibir más información o promociones en el futuro a través de esta vía, envianos un email para darte de baja en el servicio, a la dirección remover@credomatic.com con la palabra 'remover' en el asunto, incluyendo nombre completo y número de cédula y te excluiremos en los próximos 15 días."
layout: ventas
---
<row>
<columns small="12" large="6">
<h1>{{ header }}</h1>
<spacer size="20"></spacer>
<button href="{{cta_link}}" class="secondary button button-right" title="{{cta_title}}">{{cta_text}}</button>
</columns>
<columns small="12" large="6">
<row>
<img src="/assets/img/prestamos.jpg"/>
</row>
</columns>
</row>
<row>
<columns small="12" large="12" class="">
<p>Solicitá tu préstamo pre-aprobado desde la comodidad de tu casa o negocio y sin costos de formalización. Solicitalo hoy mismo y empezá a cumplir tus metas.</p>
<ul>
<li>Convenientes tasas de interés</li>
<li>Trámites ágiles y sin fiador</li>
<li>Sin comisiones por desembolso</li>
<li>Solicitud en Línea</li>
<li>Plazos de 36, 48 o 60 meses</li>
<li>Red de Pagos y agencias BAC Credomatic</li>
</ul>
</columns>
</row>
{{> contact}}
<row>
<columns>
<p style="text-align: center;">
</p>
<spacer size="10"></spacer>
<center>
<button href="{{cta_link}}" class="cta-rojo" title="{{cta_title}}">{{cta_text}}</button>
</center>
</columns>
</row>
|
Bivi/src/Bivi.FrontOffice/Bivi.FrontOffice.Web/Libs/telerik.kendoui.2014.3.1119.core/src/styles/mobile/kendo.mobile.materialblack.css | apo-j/Projects_Working | /**
* Copyright 2014 Telerik AD
*
* 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.
*/
/* Common Platform CSS */
@-ms-viewport {
width: device-width;
user-zoom: fixed;
max-zoom: 1;
min-zoom: 1;
}
@media (orientation: landscape) {
.km-tablet .km-on-ios.km-horizontal.km-web:not(.km-ios-chrome) {
position: fixed;
bottom: 0;
}
}
.km-root {
font-size: .92em;
}
.km-root a {
color: inherit;
}
.km-tablet {
font-size: 1em;
}
.km-root *:focus {
outline-width: 0;
}
.km-root,
.km-pane,
.km-pane-wrapper {
width: 100%;
height: 100%;
-ms-touch-action: none;
-ms-content-zooming: none;
-ms-user-select: none;
-webkit-user-select: none;
-webkit-text-size-adjust: none;
-moz-text-size-adjust: none;
text-size-adjust: none;
overflow-x: hidden;
}
.km-pane-wrapper {
position: absolute;
}
.km-pane,
.km-shim {
font-family: sans-serif;
}
.km-pane {
overflow-x: hidden;
position: relative;
}
.km-vertical .km-collapsible-pane {
position: absolute;
z-index: 2 !important;
-webkit-transition: -webkit-transform 350ms ease-out;
-ms-transition: -ms-transform 350ms ease-out;
-webkit-transform: translatex(-100%);
-moz-transform: translatex(-100%);
-ms-transform: translatex(-100%);
-o-transform: translatex(-100%);
transform: translatex(-100%);
}
.km-vertical .km-expanded-splitview .km-collapsible-pane {
-webkit-transform: translatex(0);
-moz-transform: translatex(0);
-ms-transform: translatex(0);
-o-transform: translatex(0);
transform: translatex(0);
}
.km-expanded-pane-shim {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
display: none;
}
.km-expanded-splitview .km-expanded-pane-shim {
display: block;
z-index: 1;
}
.km-root > * {
margin: 0;
padding: 0;
}
.km-root * {
-webkit-touch-callout: none;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.km-content {
display: block;
}
.km-view,
.km-split-content {
top: 0;
left: 0;
position: absolute;
display: -moz-box;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
height: 100%;
width: 100%;
-moz-box-orient: vertical;
-webkit-box-orient: vertical;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-align-items: stretch;
-ms-align-items: stretch;
align-items: stretch;
-webkit-align-content: stretch;
align-content: stretch;
vertical-align: top;
}
.k-ff .km-view,
.k-ff .km-pane {
overflow: hidden;
}
.k-ff18 .km-view,
.k-ff18 .km-pane,
.k-ff19 .km-view,
.k-ff19 .km-pane,
.k-ff20 .km-view,
.k-ff20 .km-pane,
.k-ff21 .km-view,
.k-ff21 .km-pane {
position: relative;
}
.k-ff .km-view {
display: -moz-inline-box;
display: inline-flex;
}
.km-content {
min-height: 1px;
-moz-box-flex: 1;
-webkit-box-flex: 1;
-webkit-flex: 1;
-ms-flex: 1;
flex: 1;
-moz-box-align: stretch;
-webkit-box-align: stretch;
-ms-flex-align: stretch;
flex-align: stretch;
width: auto;
overflow: hidden;
position: relative;
}
.km-content p,
.km-content h1,
.km-content h2,
.km-content h3,
.km-content h4,
.km-content h5,
.km-content h6 {
margin-left: 1rem;
margin-right: 1rem;
}
.km-header,
.km-footer {
display: block;
display: -moz-box;
-moz-box-orient: vertical;
width: 100%;
}
.km-header {
padding: 0;
}
.km-footer {
background: #1a1a1a;
}
[data-role="layout"] {
display: none;
}
/**
* The angular tags will be converted to div kendo-mobile-view
*
*/
[data-role="view"],
[data-role="drawer"],
kendo-mobile-view,
kendo-mobile-split-view,
kendo-mobile-drawer {
visibility: hidden;
}
.km-view {
visibility: visible;
}
.km-header,
.km-footer {
position: relative;
z-index: 1;
}
@media all and (-webkit-min-device-pixel-ratio: 10000), not all and (-webkit-min-device-pixel-ratio: 0) {
.km-view {
display: table;
}
.km-header,
.km-footer,
.km-content {
display: table-row;
}
.km-header,
.km-footer {
height: 1px;
}
}
.km-root .k-toolbar,
.km-navbar,
.km-button,
.km-buttongroup,
.km-tabstrip,
.km-blackberry li.km-actionsheet-cancel > a {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
background-origin: border-box;
position: relative;
display: inline-block;
padding: .4em .7em;
margin: .1rem;
overflow: visible;
text-decoration: none;
}
.km-tabstrip,
.km-root .k-toolbar,
.km-navbar {
display: block;
padding: .8em;
margin: 0;
width: 100%;
border-width: 0;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.km-native-scroller {
overflow: auto;
-webkit-overflow-scrolling: touch;
-ms-touch-action: pan-x pan-y;
-ms-overflow-style: -ms-autohiding-scrollbar;
-ms-scroll-snap-type: proximity;
}
.km-default-content {
padding: 1em;
}
.km-shim {
left: 0;
bottom: 0;
position: fixed;
width: 100%;
height: 100% !important;
background: rgba(0, 0, 0, 0.6);
z-index: 10001;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.km-root .km-shim {
position: absolute;
}
.km-shim:before {
content: "\a0";
height: 100%;
width: 0;
display: inline-block;
vertical-align: middle;
}
.km-shim .k-animation-container {
box-shadow: none;
-webkit-box-shadow: none;
border: 0;
width: auto;
}
/* Loader */
.km-loader {
top: 50%;
left: 50%;
width: 180px;
height: 130px;
z-index: 100000;
padding: 30px 30px;
position: absolute;
margin-top: -70px;
margin-left: -90px;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
background-color: rgba(0, 0, 0, 0.5);
}
.km-loader h1 {
font-size: 1rem;
color: white;
text-align: center;
vertical-align: middle;
}
.km-loader .km-loading,
.km-load-more .km-icon,
.km-scroller-refresh .km-icon {
animation: km-spin 1s infinite linear;
-moz-animation: km-spin 1s infinite linear;
-webkit-animation: km-spin 1s infinite linear;
display: block;
margin: 0 auto;
width: 35px;
height: 35px;
font-size: 35px;
}
.km-loader .km-loading:after,
.km-load-more .km-icon:after {
color: #ccc;
}
.km-loading-left,
.km-loading-right {
display: none;
}
@-webkit-keyframes km-spin {
from {
-webkit-transform: rotate(0deg);
}
to {
-webkit-transform: rotate(360deg);
}
}
@-moz-keyframes km-spin {
from {
-moz-transform: rotate(0deg);
}
to {
-moz-transform: rotate(360deg);
}
}
@-ms-keyframes km-spin {
from {
-ms-transform: rotate(0deg);
}
to {
-ms-transform: rotate(360deg);
}
}
@-o-keyframes km-spin {
from {
-o-transform: rotate(0deg);
}
to {
-o-transform: rotate(360deg);
}
}
@-webkit-keyframes km-ios-spin {
from {
-webkit-transform: rotate(0deg);
}
to {
-webkit-transform: rotate(360deg);
}
}
@-webkit-keyframes km-ios-spin1 {
from {
-webkit-transform: rotate(-135deg);
}
to {
-webkit-transform: rotate(225deg);
}
}
@-moz-keyframes km-ios-spin {
from {
-moz-transform: rotate(0deg);
}
to {
-moz-transform: rotate(360deg);
}
}
@-moz-keyframes km-ios-spin1 {
from {
-moz-transform: rotate(-135deg);
}
to {
-moz-transform: rotate(225deg);
}
}
@keyframes km-ios-spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
@keyframes km-ios-spin1 {
from {
transform: rotate(-135deg);
}
to {
transform: rotate(225deg);
}
}
/* Stretched View */
.km-stretched-view {
display: -moz-box;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
}
.km-stretched-view > * {
width: 100%;
}
.km-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: transparent;
z-index: 100000;
}
.km-root.km-native-scrolling,
.km-root.km-native-scrolling .km-view,
.km-root.km-native-scrolling .km-splitview .km-pane {
min-height: 100%;
height: auto;
-webkit-transform: none;
overflow-x: visible;
}
.km-native-scrolling .km-pane,
.km-native-scrolling .km-view {
-ms-touch-action: auto;
display: block;
}
.km-native-scrolling .km-content {
-ms-flex: auto;
}
.km-native-scrolling .km-blackberry .km-content {
min-height: auto;
}
/* Restore position:absolute during animation */
.km-native-scrolling .km-splitview {
position: absolute;
}
.km-native-scrolling .km-header {
position: fixed;
top: 0;
}
.km-native-scrolling .km-android .km-header {
top: auto;
bottom: 0;
}
.km-native-scrolling .km-footer {
position: fixed;
bottom: 0;
}
.km-native-scrolling .km-android .km-footer {
top: 0;
bottom: auto;
}
.km-native-scrolling .km-badge {
z-index: auto;
}
.km-native-scrolling .km-splitview .km-header,
.km-native-scrolling .km-splitview .km-footer,
.km-native-scrolling .km-popup.km-pane .km-header,
.km-native-scrolling .km-popup.km-pane .km-footer {
position: absolute;
}
.km-native-scrolling .km-modalview .km-header,
.km-native-scrolling .km-modalview .km-footer {
position: relative;
}
.km-native-scrolling .km-content {
width: 100%;
}
.km-native-scrolling .km-shim,
.km-native-scrolling .km-popup-overlay {
position: fixed;
top: 0;
bottom: 0;
height: auto !important;
}
.km-native-scrolling .km-drawer {
position: fixed;
top: 0;
height: 100% !important;
overflow: auto !important;
-webkit-overflow-scrolling: touch;
}
.km-native-scrolling > .km-pane > .km-loader {
position: fixed;
top: 50%;
margin-top: -2em;
}
.km-native-scrolling .km-header,
.km-native-scrolling .km-footer {
z-index: 2;
}
/* Disabled states */
.km-state-disabled {
opacity: 0.5;
}
.km-badge,
.km-detail {
text-decoration: none;
display: inline-block;
vertical-align: middle;
overflow: hidden;
text-align: center;
position: absolute;
z-index: 1;
height: 2em;
font-size: .6rem;
text-shadow: none;
}
.km-badge {
top: -1em;
right: -1em;
line-height: 2em;
margin-left: .5em;
min-width: .9em;
padding: 0 .55em;
-moz-background-clip: padding-box;
-webkit-background-clip: padding-box;
background-clip: padding-box;
}
.km-tabstrip .km-badge {
top: -0.2em;
right: auto;
margin-left: -1em;
}
/* DetailButtons */
.km-detail {
position: absolute;
float: right;
right: .8rem;
top: 50%;
margin-top: -0.7rem;
width: 1.3rem;
height: 1.3rem;
font-size: 1rem;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.km-widget .km-detaildisclose {
font-size: .8em;
}
.k-ff .km-detail {
width: 1rem;
height: 1rem;
}
.km-detail .km-text {
display: none;
}
.km-widget .km-rowinsert:after,
.km-widget .km-rowdelete:after,
.km-widget .km-contactadd:after,
.km-widget .km-detaildisclose:after,
.km-widget .km-rowinsert:before,
.km-widget .km-rowdelete:before,
.km-widget .km-contactadd:before,
.km-widget .km-detaildisclose:before,
.km-detail .km-icon {
left: .15em;
top: .15em;
line-height: 1em;
font-size: 1em;
position: absolute;
}
.km-widget .km-detaildisclose:after {
left: .1em;
top: .25em;
text-align: center;
font-weight: bold;
}
/* Buttons */
.km-button {
cursor: pointer;
outline: 0;
text-align: center;
}
button.km-button {
display: inline-block;
font: inherit;
}
.km-button:hover {
text-decoration: none;
}
.km-button::-moz-focus-inner {
padding: 0;
border: 0;
}
.km-ios .km-state-disabled .km-button,
.km-android .km-state-disabled .km-button,
.km-blackberry .km-state-disabled .km-button,
.km-meego .km-state-disabled .km-button {
color: #aaa;
text-shadow: none;
}
.km-root .km-pane .k-button:focus,
.km-root .km-pane .k-button:active,
.km-root .km-pane .k-button:focus:active {
box-shadow: none;
-webkit-box-shadow: none;
}
.km-buttongroup {
padding: .4rem .7rem;
-webkit-margin-collapse: separate;
margin-collapse: separate;
margin: .5em auto;
}
.km-widget.km-buttongroup {
padding: 0;
border-color: transparent;
background: none;
white-space: nowrap;
display: table;
}
.km-buttongroup > .km-button {
display: table-cell;
}
.km-widget.km-buttongroup .km-button {
margin: 0;
border-width: 1px 0 1px 1px;
padding: .48em .9em .44em;
}
.km-tablet .km-buttongroup .km-button {
padding: .4em .8em .34em;
}
.km-widget.km-navbar .km-buttongroup {
font-size: .95rem;
line-height: 1em;
margin: 0 0 .2em;
display: inline-block;
height: 1.5em;
top: -2px;
}
.k-toolbar .km-buttongroup {
margin: 0;
display: inline-block;
}
.km-tablet .km-navbar .km-buttongroup {
top: -1px;
}
.km-widget.km-navbar .km-buttongroup > .km-button {
font-size: 1em;
min-width: 4rem;
text-align: center;
}
.km-tablet .km-navbar .km-buttongroup > .km-button {
min-width: 6rem;
}
.km-view .km-buttongroup .km-button:last-child {
border-right-width: 1px;
}
.km-ios .km-buttongroup .km-button {
font-size: 1.2em;
font-weight: bold;
}
.km-hide-title {
display: none;
}
.km-show-title:after {
display: block;
content: "\a0";
height: 0;
}
.km-fill-title:after {
height: auto;
}
.km-footer .km-show-title:after {
display: inline-block;
}
.km-view-title,
.km-dialog-title {
position: relative;
visibility: visible;
text-align: center;
font-size: 1.4em;
line-height: 2.3em;
margin-left: auto;
margin-right: auto;
}
.km-horizontal .km-view-title {
line-height: 2em;
}
.km-root .k-toolbar,
.km-navbar {
padding: 0;
-moz-box-flex: 1;
-webkit-box-flex: 1;
-webkit-flex: 1;
-ms-flex: 1;
flex: 1;
position: relative;
overflow: hidden;
display: block;
border-width: 0 0 1px 0;
background-color: #fff;
}
.k-ff.km-root .k-toolbar,
.k-ff .km-navbar {
overflow: visible;
}
.km-navbar .km-button {
margin-top: .5rem;
margin-bottom: .5rem;
}
.km-navbar .km-no-title {
padding-top: .7rem;
padding-bottom: .7rem;
}
.km-horizontal .km-navbar .km-button {
margin-top: .3rem;
margin-bottom: .3rem;
}
.km-horizontal .km-navbar .km-no-title {
padding-top: .5rem;
padding-bottom: .5rem;
}
.km-tablet.km-root .km-no-title {
padding-top: .55rem;
padding-bottom: .55rem;
}
.km-tablet .km-navbar .km-button {
margin-top: .45rem;
margin-bottom: .45rem;
}
.km-root .km-pane .km-navbar .km-no-title {
visibility: visible;
line-height: 0;
}
/* Navbar */
.km-on-ios.km-black-translucent-status-bar.km-app .km-header .km-navbar {
padding-top: 1.4em;
background-clip: border-box;
}
.km-on-ios.km-ios5.km-cordova .km-header .km-navbar,
.km-on-ios.km-ios6.km-cordova .km-header .km-navbar {
padding-top: 0;
}
.km-leftitem,
.km-rightitem {
z-index: 1;
position: absolute;
right: .5em;
}
.km-popup .km-rightitem {
right: 0;
}
.km-leftitem {
left: .5em;
right: auto;
}
.km-popup .km-leftitem {
left: 0;
}
/* Center left/right item contents */
.km-leftitem,
.km-rightitem {
height: 100%;
}
.km-on-ios.km-black-translucent-status-bar.km-app .km-leftitem,
.km-on-ios.km-black-translucent-status-bar.km-app .km-rightitem {
height: auto;
}
.km-leftitem > *,
.km-rightitem > * {
display: inline-block;
vertical-align: middle;
}
.km-leftitem:before,
.km-rightitem:before {
content: "\a0";
display: inline-block;
height: 100%;
width: 0;
vertical-align: middle;
}
/* Toolbar */
.km-root .k-toolbar {
position: relative;
display: block;
vertical-align: middle;
text-align: right;
line-height: 2.2em;
border-style: solid;
box-shadow: none;
-webkit-box-shadow: none;
padding: .55em 3.4em .55em .5em;
}
.km-root .km-widget.k-toolbar {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.km-root .k-toolbar span.km-icon {
vertical-align: middle;
}
.km-root .k-toolbar .k-button-icon {
padding-left: .4em;
padding-right: .4em;
}
.km-root .k-toolbar .k-button-icon .km-icon {
margin-left: 0;
margin-right: 0;
}
.km-root .k-toolbar-resizable {
overflow: hidden;
white-space: nowrap;
}
.km-root .k-toolbar > * {
display: inline-block;
vertical-align: middle;
text-align: left;
line-height: inherit;
}
.km-root .k-toolbar .km-button {
line-height: inherit;
}
.km-root div.k-toolbar > .k-align-left {
float: left;
line-height: inherit;
}
.km-root div.k-toolbar > .k-align-right {
float: none;
}
.km-root .k-toolbar > .km-button,
.km-root .k-toolbar .km-buttongroup,
.km-root .k-toolbar .k-split-button,
.km-root .k-toolbar .k-widget,
.km-root .k-toolbar .km-widget,
.km-root .k-toolbar .k-textbox,
.km-root .k-toolbar label,
.km-root .k-toolbar .k-separator {
margin: 0 .4em;
}
.km-root .k-toolbar .k-button-icontext .km-icon {
margin-left: -0.15em;
}
.km-root .k-toolbar .k-split-button {
padding-left: 0;
}
.km-root .k-toolbar .k-split-button .km-button,
.km-root .k-toolbar .km-buttongroup .km-group-start {
margin: 0;
}
.km-root .k-toolbar .k-split-button > .km-button {
padding-left: 1em;
padding-right: .6em;
}
.km-root .k-toolbar .k-split-button .k-split-button-arrow {
margin: 0 0 0 -1px;
padding-left: .2em;
padding-right: .2em;
}
.km-root .km-pane .k-toolbar .k-overflow-anchor {
border-width: 0;
width: 1.5em;
height: 100%;
margin: 0;
font-size: 2.2em;
border-radius: 0;
position: absolute;
top: 0;
right: 0;
padding: 0;
}
.km-root .k-overflow-anchor span.km-icon {
position: absolute;
top: 50%;
left: 50%;
margin: -0.5em 0 0 -0.5em;
}
.km-root .k-overflow-anchor .km-icon:after,
.km-root .k-overflow-anchor .km-icon:before {
margin-left: 0;
}
.km-root .k-overflow-container .k-item {
float: none;
border: 0;
}
.km-root .k-overflow-container .k-overflow-button,
.km-root .k-split-container .km-button {
text-align: left;
display: block;
white-space: nowrap;
margin: 0 0 1px;
}
.km-root .k-overflow-container li:last-child .k-overflow-button,
.km-root .k-split-container li:last-child .km-button {
margin: 0;
}
.km-root .k-overflow-container .km-buttongroup {
padding: 0;
}
.km-root .k-overflow-container .km-buttongroup > li {
display: block;
}
.km-root .k-overflow-container .k-overflow-group {
border-width: 1px 0;
border-style: solid;
border-radius: 0;
padding: 1px 0 0;
margin: 0 0 1px;
}
.km-root .k-overflow-container .km-state-disabled {
opacity: 1;
}
.km-root .k-overflow-container .k-overflow-hidden {
display: none;
}
.km-root .k-overflow-container .k-toolbar-first-visible,
.km-root .k-overflow-container .k-overflow-group + .k-overflow-group {
border-top: 0;
margin-top: 0;
padding-top: 0;
}
.km-root .k-overflow-container .k-toolbar-last-visible {
border-bottom: 0;
margin-bottom: 0;
}
.km-root .k-overflow-wrapper .km-actionsheet-wrapper .km-actionsheet {
overflow: hidden;
overflow-y: auto;
}
.km-tabstrip {
padding: .4rem .7rem;
}
.km-horizontal .km-tabstrip {
padding: .2rem .7rem;
}
.km-tabstrip {
-moz-box-orient: horizontal;
-webkit-box-orient: horizontal;
-moz-box-align: start;
-webkit-box-align: start;
-ms-flex-align: start;
flex-align: start;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
-moz-box-pack: start;
padding: 0;
text-align: center;
word-spacing: -1em;
}
.km-tabstrip .km-button {
word-spacing: normal;
box-shadow: none;
-webkit-box-shadow: none;
vertical-align: bottom;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
.km-tabstrip {
word-spacing: normal;
width: 100%;
}
}
.km-tabstrip .km-button {
font-family: Arial, Helvetica, sans-serif;
color: #a8a8a8;
padding: .4em .8em;
border-width: 0;
border-color: transparent;
background: none;
margin: 0;
text-align: center;
}
.km-tabstrip .km-button:first-child {
border-left: 0;
}
.km-tabstrip .km-button:last-child {
border-right: 0;
}
.km-switch input[type=checkbox] {
display: none;
}
.km-switch,
.km-checkbox {
text-align: left;
font-size: 1rem;
display: inline-block;
width: 6.4rem;
height: 2rem;
line-height: 2rem;
position: relative;
overflow: hidden;
}
.km-switch-wrapper,
.km-slider-wrapper {
display: block;
height: 100%;
width: 100%;
overflow: hidden;
}
.km-switch-background,
.km-slider-background {
display: block;
margin: 0 1px 1px -5em;
height: 100%;
width: 200%;
}
.km-switch-container {
top: 0;
left: 0;
position: absolute;
display: block;
height: 100%;
width: 100%;
overflow: hidden;
background: transparent;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.km-checkbox {
width: 1.8rem;
height: 1.8rem;
}
.km-checkbox-checked:after {
content: "\a0";
display: block;
width: 100%;
height: 100%;
}
.km-switch-handle {
top: 0;
left: 0;
width: 2.72em;
height: 100%;
display: inline-block;
margin: -1px 0 0 -1px;
background-color: #000;
}
.km-switch-label-on,
.km-switch-label-off {
display: block;
width: 130%;
font-size: 1em;
line-height: 2em;
text-align: center;
position: absolute;
text-transform: uppercase;
}
.km-switch-label-off {
left: 104%;
}
.km-switch-label-on {
left: -134%;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3);
}
.km-list .km-switch {
position: absolute;
top: 50%;
right: .8rem;
margin-top: -1rem;
}
.km-listview-link:after {
width: .5rem;
height: .5rem;
content: "\a0";
display: inline-block;
vertical-align: middle;
margin-left: -0.2rem;
border-style: solid;
border-width: .24rem .24rem 0 0;
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-o-transform: rotate(45deg);
transform: rotate(45deg);
}
.km-listview-wrapper > ul:not(.km-listview) {
margin: 0 auto;
}
.km-list,
.km-listview {
padding: 0;
margin: 0;
list-style-type: none;
}
.km-listinset,
.km-listgroupinset {
margin: 1em;
}
.k-ff .km-listinset:after,
.k-ff .km-listgroupinset:after {
display: block;
height: 0;
content: "\a0";
}
.km-listinset,
.km-listgroupinset .km-list {
overflow: hidden;
}
.km-listview .km-switch {
margin-top: -0.95rem;
position: absolute;
right: .8rem;
top: 50%;
}
.km-listview .km-list {
text-indent: 0;
}
.km-list > li,
.km-widget .km-listview-link,
.km-widget .km-listview-label {
margin: 0;
display: block;
position: relative;
list-style-type: none;
vertical-align: middle;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
padding: .5em .7em;
}
.km-list > li {
line-height: 1.6em;
overflow: hidden;
}
.km-virtual-list {
position: relative;
width: 100%;
-webkit-transform: translateZ(0);
}
.km-virtual-list > li {
width: 100%;
position: absolute;
top: 0;
-webkit-transform: translateZ(0);
}
.km-widget.km-list .km-load-more,
.km-widget .km-list .km-load-more {
border-bottom: 0;
}
.km-list > li > * {
line-height: normal;
}
.km-group-title {
display: block;
font-weight: bold;
padding: .2em 0;
text-indent: .8em;
}
.km-listgroupinset .km-group-title {
margin-top: .65em;
line-height: 2em;
}
.km-list:not(.km-virtual-list) > li:first-child {
border-top-width: 0;
}
.km-list:not(.km-virtual-list) > li:last-child {
border-bottom-width: 0;
}
.km-widget .km-listview-link,
.km-widget .km-listview-label {
line-height: inherit;
text-decoration: none;
margin: -0.5em -0.7em;
}
.km-listview-link:after,
.km-listview-label:after {
border-color: #777;
content: "\a0";
display: block;
position: absolute;
right: 1rem;
top: 50%;
margin-top: -0.32rem;
}
/* Filtering */
.km-filter-form {
width: 100%;
padding: .5em 0;
border: 1px solid transparent;
border-width: 1px 0;
-webkit-transform: translatez(0);
-moz-transform: translatez(0);
-ms-transform: translatez(0);
-o-transform: translatez(0);
transform: translatez(0);
}
.km-filter-wrap {
position: relative;
margin: 0 .7em;
padding: .2em .4em;
border: 1px solid transparent;
}
.km-widget .km-filter-wrap:before {
display: inline-block;
vertical-align: middle;
content: "\e0e9";
font-size: 1.6em;
width: 1em;
height: 1em;
margin-right: -1em;
color: inherit;
}
.km-tablet .km-filter-wrap {
max-width: 24em;
margin: 0 auto;
}
.km-filter-wrap > input[type="search"]::-webkit-search-cancel-button {
display: none;
}
.km-filter-wrap input {
width: 100%;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
border: 0;
background: transparent;
-moz-appearance: none;
-webkit-appearance: none;
vertical-align: middle;
padding: 0 1.4em;
}
.km-filter-reset {
display: inline-block;
margin-left: -1.6em;
vertical-align: middle;
text-align: center;
z-index: 1;
text-decoration: none;
height: 100%;
}
.km-filter-reset .km-clear {
font-size: 1.6em;
width: 1em;
height: 1em;
display: block;
}
.km-filter-reset > .km-text {
position: absolute;
top: -3333px;
left: -3333px;
}
/* Load more */
.km-load-more {
display: block;
padding: .3em 0 1.2em;
height: 3.2em;
text-align: center;
}
/* Pull to refresh */
.km-scroller-pull {
width: 100%;
display: block;
position: absolute;
line-height: 3em;
font-size: 1.4em;
text-align: center;
-webkit-transform: translate3d(0, -3em, 0);
-moz-transform: translate3d(0, -3em, 0);
-ms-transform: translate3d(0, -3em, 0);
-o-transform: translate3d(0, -3em, 0);
transform: translate3d(0, -3em, 0);
}
.km-scroller-pull .km-template {
display: inline-block;
min-width: 200px;
text-align: left;
}
.km-load-more .km-icon,
.km-widget .km-scroller-pull .km-icon {
display: inline-block;
height: 2rem;
margin-right: 1rem;
vertical-align: middle;
width: 2rem;
font-size: 2rem;
-webkit-transform: rotate(0deg);
-moz-transform: rotate(0deg);
-ms-transform: rotate(0deg);
-o-transform: rotate(0deg);
transform: rotate(0deg);
-webkit-transition: -webkit-transform 300ms linear;
-moz-transition: -moz-transform 300ms linear;
-ms-transition: -ms-transform 300ms linear;
-o-transition: -o-transform 300ms linear;
transition: transform 300ms linear;
}
.km-widget .km-scroller-release .km-icon {
-webkit-transform: rotate(180deg);
-moz-transform: rotate(180deg);
-ms-transform: rotate(180deg);
-o-transform: rotate(180deg);
transform: rotate(180deg);
}
.km-widget .km-scroller-refresh .km-icon {
-webkit-transition: none;
-moz-transition: none;
-ms-transition: none;
-o-transition: none;
transition: none;
}
/* Scroller */
.km-touch-scrollbar {
position: absolute;
visibility: hidden;
z-index: 200000;
height: .4em;
width: .4em;
background-color: #333;
opacity: 0;
-webkit-transform-origin: 0 0;
-moz-transform-origin: 0 0;
-ms-transform-origin: 0 0;
-o-transform-origin: 0 0;
transform-origin: 0 0;
-webkit-transition: opacity 0.3s linear;
-moz-transition: opacity 0.3s linear;
-ms-transition: opacity 0.3s linear;
-o-transition: opacity 0.3s linear;
transition: opacity 0.3s linear;
}
.km-vertical-scrollbar {
height: 100%;
right: 2px;
top: 0;
}
.km-horizontal-scrollbar {
width: 100%;
left: 0;
bottom: 2px;
}
.km-scrollview,
.km-scroll-container {
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
-moz-user-select: -moz-none;
-webkit-margin-collapse: separate;
margin-collapse: separate;
}
.km-scroll-wrapper {
position: relative;
}
.km-scroll-header {
position: absolute;
z-index: 1001;
width: 100%;
top: 0;
left: 0;
}
.km-scrollview {
white-space: nowrap;
overflow: hidden;
position: relative;
width: 100%;
}
.km-scrollview > div > * {
-webkit-transform: translatez(0);
}
.km-scrollview > div > [data-role=page] {
vertical-align: top;
display: inline-block;
min-height: 1px;
}
.km-scrollview .km-virtual-page {
min-height: 1px;
position: absolute;
top: 0;
left: 0;
display: inline-block;
}
.k-ff18 .km-scrollview > div,
.k-ff19 .km-scrollview > div,
.k-ff20 .km-scrollview > div,
.k-ff21 .km-scrollview > div {
width: 0;
}
.km-pages {
text-align: center;
margin: 0;
padding: .6em 0 0;
height: 1.5em;
}
.km-pages li {
display: inline-block;
width: .5em;
height: .55em;
margin: 0 .3em;
}
/* PopUp + ActionSheet */
.km-root .km-popup .k-item,
.km-widget.km-actionsheet > li {
list-style-type: none;
padding: inherit 1em;
border-bottom: 1px solid #555;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.km-widget.km-actionsheet > li {
line-height: 2em;
border-bottom: 0;
}
.km-widget.km-actionsheet > li > a {
line-height: 1.5em;
text-align: left;
background: transparent;
}
.km-root .km-popup .k-list,
.km-widget.km-actionsheet {
padding: 0;
margin: 0;
}
.km-root .km-popup .k-item:last-child,
.km-widget.km-actionsheet > li:last-child {
border: 0;
}
.km-widget.km-actionsheet-wrapper {
width: 100%;
box-shadow: none;
-webkit-box-shadow: none;
border: 0;
}
.km-actionsheet-root.km-shim .k-animation-container {
width: 100% !important;
height: 100% !important;
}
.km-tablet .km-pane div.km-actionsheet-phone {
background: transparent;
}
.km-tablet .km-actionsheet-phone li.km-actionsheet-title,
.km-tablet div.km-actionsheet-phone li.km-actionsheet-cancel {
display: block;
}
/* PopOver */
.km-popover-root .km-popup-wrapper {
position: relative !important;
}
.km-popup-wrapper,
.km-modalview-wrapper {
z-index: 10001;
position: relative;
background: none;
border: 0;
box-shadow: none;
-webkit-box-shadow: none;
}
.km-popup-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 10000;
}
.km-popup-arrow,
.km-popup-arrow:after,
.km-popup-arrow:before {
position: absolute;
width: 15px;
height: 15px;
top: 0;
left: 0;
z-index: 2;
}
.km-left .km-popup-arrow,
.km-right .km-popup-arrow {
margin-top: -8px;
}
.km-up .km-popup-arrow,
.km-down .km-popup-arrow {
margin-left: -8px;
}
.km-popup-arrow:after,
.km-popup-arrow:before {
display: block;
content: "\a0";
width: 0;
height: 0;
}
.km-up .km-popup-arrow {
top: auto;
bottom: 0;
}
.km-left .km-popup-arrow {
left: auto;
right: 0;
}
.km-popup.km-pane {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
width: 100%;
height: 100%;
min-height: 100px;
background: transparent;
}
.km-popover-root .km-view {
position: relative;
}
.km-popover-root .km-content {
-ms-flex: auto;
}
/* SplitView */
.km-splitview > .km-content {
-moz-box-orient: horizontal;
-webkit-box-orient: horizontal;
-moz-box-direction: normal;
-webkit-box-direction: normal;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
}
.km-split-vertical > .km-content {
-moz-box-orient: vertical;
-webkit-box-orient: vertical;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
}
.km-split-content > .km-pane {
-moz-box-flex: 2;
-webkit-box-flex: 2;
-webkit-flex: 2;
-ms-flex: 2;
flex: 2;
width: auto;
height: auto;
}
.km-split-content > .km-pane:first-child {
-moz-box-flex: 1;
-webkit-box-flex: 1;
-webkit-flex: 1;
-ms-flex: 1;
flex: 1;
}
.km-split-horizontal > .km-content > .km-pane {
top: 0;
bottom: 0;
}
.km-split-vertical > .km-content > .km-pane > .km-view {
display: -webkit-box;
}
/* ModalView */
.km-modalview-root {
text-align: center;
}
.km-modalview-root > .k-animation-container {
text-align: left;
position: relative !important;
top: auto !important;
left: auto !important;
display: inline-block !important;
vertical-align: middle;
}
.km-modalview,
.km-modalview-wrapper:before {
overflow: hidden;
position: relative;
display: -moz-inline-box;
display: -webkit-inline-box;
display: -webkit-inline-flex;
display: -ms-inline-flexbox;
display: inline-flex;
width: 100%;
height: 100%;
vertical-align: middle;
max-height: 100%;
}
.km-modalview .km-content {
box-flex: 1;
}
.km-auto-height .km-content {
-ms-flex: auto;
}
.km-modalview-root:before,
.km-modalview-wrapper:before {
vertical-align: middle;
height: 100%;
margin-left: -1px;
content: "\a0";
width: 0px;
display: inline-block;
}
/* Drawer */
.km-drawer,
[data-role=drawer] {
top: 0;
left: auto;
width: 250px;
}
.km-drawer .km-header,
.km-drawer .km-footer {
z-index: 0;
}
.km-left-drawer {
left: 0;
}
.km-right-drawer {
right: 0;
}
/* Forms and icons */
.km-item label:before,
.km-item label.km-item-checked:after {
position: absolute;
content: " ";
display: block;
top: 50%;
left: .6em;
width: 36px;
height: 36px;
margin-top: -18px;
}
/* Slider */
.km-widget .k-slider {
line-height: .6em;
position: relative;
display: inline-block;
vertical-align: middle;
text-align: center;
}
.km-widget .k-slider-horizontal {
width: 50%;
height: .6em;
line-height: .6em;
}
.km-list .k-slider {
position: absolute;
right: 0;
margin-top: -0.5em;
top: 50%;
}
.km-root .k-slider-track {
left: 1em !important;
right: 1em;
height: 100%;
display: block;
position: absolute;
border: .5em solid transparent;
border-width: .5em 0;
}
.km-widget .k-slider-horizontal .k-slider-track {
width: auto !important;
}
.km-widget .k-slider .k-slider-track {
background-clip: padding-box;
}
.km-widget .k-slider-track,
.km-widget .k-slider-selection {
margin-top: 0;
border-radius: 5px;
box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.3);
-webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.3);
}
.km-widget .k-slider-horizontal .k-slider-selection {
top: 0;
height: 100%;
}
.km-widget .k-slider-items {
margin: 0;
}
.km-widget .k-slider .k-draghandle {
text-indent: -3333px;
left: 0;
width: 1.2em;
height: 1.2em;
display: block;
position: absolute;
}
.km-widget .k-slider-tooltip {
display: none;
}
/* Dialog */
.km-dialog {
position: absolute;
min-width: 19em;
max-width: 25em;
overflow: hidden;
}
.km-dialog-title {
position: static;
float: none;
height: 2.6em;
margin-top: -2.6em;
font-size: 1.22em;
line-height: 3em;
}
.km-dialog:before {
content: "\a0";
display: block;
overflow: visible;
width: 100%;
height: 3em;
opacity: .2;
}
.km-dialog-content {
font-weight: normal;
min-height: 2em;
text-align: center;
}
.km-dialog .km-button {
display: block;
margin: .4em;
font-size: 1.3em;
text-align: center;
padding: .44em;
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
}
/* Form elements */
.km-list input[type=text]:not(.k-input),
.km-list input[type=password],
.km-list input[type=search],
.km-list input[type=number],
.km-list input[type=tel],
.km-list input[type=url],
.km-list input[type=email],
.km-list input[type=file],
.km-list input[type=month],
.km-list input[type=color],
.km-list input[type=week],
.km-list input[type=date],
.km-list input[type=time],
.km-list input[type=datetime],
.km-list input[type=datetime-local],
.km-list select:not([multiple]),
.km-list .k-dropdown,
.km-list textarea {
width: 50%;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
font-size: 1.2em;
position: absolute;
top: 50%;
line-height: normal;
z-index: 1;
right: 0;
margin-top: -1em;
}
.km-widget .k-slider .k-tick,
.km-widget .k-slider .k-label,
.km-widget .k-slider .k-button {
display: none;
}
.km-list textarea {
position: relative;
width: -webkit-calc(50% + .7em);
width: -moz-calc(50% + .7em);
width: calc(50% + .7em);
margin-right: -0.7em;
}
.km-list input,
.km-list select,
.km-list textarea,
.km-list input[type=checkbox],
.km-list input[type=radio] {
appearance: none;
-moz-appearance: none;
-webkit-appearance: none;
}
.km-list input[type=checkbox],
.km-list input[type=radio] {
position: absolute;
top: 50%;
right: .7em;
margin-top: -0.5em;
background: none;
}
.km-widget input,
.km-widget textarea {
-moz-user-select: text;
-webkit-user-select: text;
-ms-user-select: text;
user-select: text;
}
.km-widget input[readonly],
.km-widget input[type=image],
.km-widget select:not([multiple]) {
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
}
.km-list textarea {
top: 0;
}
.km-list .k-dropdown {
line-height: 1.4em;
}
.km-list .k-dropdown,
.km-list .k-dropdown .k-input {
background-color: transparent;
}
.km-list .k-dropdown-wrap {
display: inline-block;
}
.km-list .km-listview-label:after,
.km-list input ~ .km-listview-link:after,
.km-list textarea ~ .km-listview-link:after,
.km-list select ~ .km-listview-link:after,
.km-list .k-dropdown ~ .km-listview-link:after {
display: none;
}
.km-list .k-dropdown select,
.km-list .k-dropdown .k-select {
display: none;
}
.km-widget .km-list textarea {
position: relative;
float: right;
margin-top: 0;
font-family: inherit;
}
/* Checkboxes and Radios */
.km-listview-label input[type=radio],
.km-listview-label input[type=checkbox] {
border: 0;
font-size: inherit;
width: 1em;
height: .9em;
}
/* animation classes */
.k-fx-end .k-fx-next,
.k-fx-end .k-fx-current {
-webkit-transition: all 350ms ease-out;
-moz-transition: all 350ms ease-out;
-ms-transition: all 350ms ease-out;
-o-transition: all 350ms ease-out;
transition: all 350ms ease-out;
}
.k-fx {
position: relative;
}
.k-fx .k-fx-current {
z-index: 0;
}
.k-fx .k-fx-next {
z-index: 1;
}
.k-fx-hidden,
.k-fx-hidden * {
visibility: hidden !important;
}
.k-fx-hidden .km-view-title {
visibility: visible !important;
opacity: 0;
}
.k-fx-reverse .k-fx-current {
z-index: 1;
}
.k-fx-reverse .k-fx-next {
z-index: 0;
}
/* Zoom */
.k-fx-zoom.k-fx-start .k-fx-next {
-webkit-transform: scale(0) !important;
-moz-transform: scale(0) !important;
-ms-transform: scale(0) !important;
-o-transform: scale(0) !important;
transform: scale(0) !important;
}
.k-fx-zoom.k-fx-end .k-fx-next {
-webkit-transform: scale(1) !important;
-moz-transform: scale(1) !important;
-ms-transform: scale(1) !important;
-o-transform: scale(1) !important;
transform: scale(1) !important;
}
.k-fx-zoom.k-fx-reverse.k-fx-start .k-fx-next,
.k-fx-zoom.k-fx-reverse.k-fx-end .k-fx-next {
-webkit-transform: scale(1) !important;
-moz-transform: scale(1) !important;
-ms-transform: scale(1) !important;
-o-transform: scale(1) !important;
transform: scale(1) !important;
}
.k-fx-zoom.k-fx-reverse.k-fx-start .k-fx-current {
-webkit-transform: scale(1) !important;
-moz-transform: scale(1) !important;
-ms-transform: scale(1) !important;
-o-transform: scale(1) !important;
transform: scale(1) !important;
}
.k-fx-zoom.k-fx-reverse.k-fx-end .k-fx-current {
-webkit-transform: scale(0) !important;
-moz-transform: scale(0) !important;
-ms-transform: scale(0) !important;
-o-transform: scale(0) !important;
transform: scale(0) !important;
}
/* Fade */
.k-fx-fade.k-fx-start .k-fx-next {
will-change: opacity;
opacity: 0;
}
.k-fx-fade.k-fx-end .k-fx-next {
opacity: 1;
}
.k-fx-fade.k-fx-reverse.k-fx-start .k-fx-current {
will-change: opacity;
opacity: 1;
}
.k-fx-fade.k-fx-reverse.k-fx-end .k-fx-current {
opacity: 0;
}
/* Slide */
.k-fx-slide {
/* left */
/* left reverse */
/* right */
}
.k-fx-slide.k-fx-end .k-fx-next .km-content,
.k-fx-slide.k-fx-end .k-fx-next .km-header,
.k-fx-slide.k-fx-end .k-fx-next .km-footer,
.k-fx-slide.k-fx-end .k-fx-current .km-content,
.k-fx-slide.k-fx-end .k-fx-current .km-header,
.k-fx-slide.k-fx-end .k-fx-current .km-footer {
-webkit-transition: all 350ms ease-out;
-moz-transition: all 350ms ease-out;
-ms-transition: all 350ms ease-out;
-o-transition: all 350ms ease-out;
transition: all 350ms ease-out;
}
.k-fx-slide.k-fx-start .k-fx-next .km-content {
will-change: transform;
-webkit-transform: translatex(100%);
-moz-transform: translatex(100%);
-ms-transform: translatex(100%);
-o-transform: translatex(100%);
transform: translatex(100%);
}
.k-fx-slide.k-fx-start .k-fx-next .km-header,
.k-fx-slide.k-fx-start .k-fx-next .km-footer {
will-change: opacity;
opacity: 0;
}
.k-fx-slide.k-fx-end .k-fx-current .km-content {
-webkit-transform: translatex(-100%);
-moz-transform: translatex(-100%);
-ms-transform: translatex(-100%);
-o-transform: translatex(-100%);
transform: translatex(-100%);
}
.k-fx-slide.k-fx-end .k-fx-next .km-header,
.k-fx-slide.k-fx-end .k-fx-next .km-footer {
opacity: 1;
}
.k-fx-slide.k-fx-reverse.k-fx-start .k-fx-current .km-content {
will-change: transform;
-webkit-transform: translatex(0);
-moz-transform: translatex(0);
-ms-transform: translatex(0);
-o-transform: translatex(0);
transform: translatex(0);
}
.k-fx-slide.k-fx-reverse.k-fx-end .k-fx-current .km-content {
-webkit-transform: translatex(100%);
-moz-transform: translatex(100%);
-ms-transform: translatex(100%);
-o-transform: translatex(100%);
transform: translatex(100%);
}
.k-fx-slide.k-fx-reverse.k-fx-start .k-fx-next .km-content {
-webkit-transform: translatex(-100%);
-moz-transform: translatex(-100%);
-ms-transform: translatex(-100%);
-o-transform: translatex(-100%);
transform: translatex(-100%);
}
.k-fx-slide.k-fx-reverse.k-fx-end .k-fx-next .km-content {
-webkit-transform: translatex(0);
-moz-transform: translatex(0);
-ms-transform: translatex(0);
-o-transform: translatex(0);
transform: translatex(0);
}
.k-fx-slide.k-fx-reverse.k-fx-start .k-fx-current .km-header,
.k-fx-slide.k-fx-reverse.k-fx-start .k-fx-current .km-footer {
will-change: opacity;
opacity: 1;
}
.k-fx-slide.k-fx-reverse.k-fx-start .k-fx-next .km-header,
.k-fx-slide.k-fx-reverse.k-fx-start .k-fx-next .km-footer {
opacity: 1;
}
.k-fx-slide.k-fx-reverse.k-fx-end .k-fx-current .km-header,
.k-fx-slide.k-fx-reverse.k-fx-end .k-fx-current .km-footer {
opacity: 0;
}
.k-fx-slide.k-fx-reverse.k-fx-end .k-fx-next .km-header,
.k-fx-slide.k-fx-reverse.k-fx-end .k-fx-next .km-footer {
opacity: 1;
}
.k-fx-slide.k-fx-right {
/* right reverse */
}
.k-fx-slide.k-fx-right.k-fx-start .k-fx-next .km-content {
-webkit-transform: translatex(-100%);
-moz-transform: translatex(-100%);
-ms-transform: translatex(-100%);
-o-transform: translatex(-100%);
transform: translatex(-100%);
}
.k-fx-slide.k-fx-right.k-fx-end .k-fx-current .km-content {
-webkit-transform: translatex(100%);
-moz-transform: translatex(100%);
-ms-transform: translatex(100%);
-o-transform: translatex(100%);
transform: translatex(100%);
}
.k-fx-slide.k-fx-right.k-fx-reverse.k-fx-start .k-fx-current .km-content {
-webkit-transform: translatex(0);
-moz-transform: translatex(0);
-ms-transform: translatex(0);
-o-transform: translatex(0);
transform: translatex(0);
}
.k-fx-slide.k-fx-right.k-fx-reverse.k-fx-end .k-fx-current .km-content {
-webkit-transform: translatex(-100%);
-moz-transform: translatex(-100%);
-ms-transform: translatex(-100%);
-o-transform: translatex(-100%);
transform: translatex(-100%);
}
.k-fx-slide.k-fx-right.k-fx-reverse.k-fx-start .k-fx-next .km-content {
-webkit-transform: translatex(100%);
-moz-transform: translatex(100%);
-ms-transform: translatex(100%);
-o-transform: translatex(100%);
transform: translatex(100%);
}
.k-fx-slide.k-fx-right.k-fx-reverse.k-fx-end .k-fx-next .km-content {
-webkit-transform: translatex(0%);
-moz-transform: translatex(0%);
-ms-transform: translatex(0%);
-o-transform: translatex(0%);
transform: translatex(0%);
}
/* Tile */
.k-fx-tile {
/* left */
/* left reverse */
/* right */
}
.k-fx-tile.k-fx-start .k-fx-next {
will-change: transform;
-webkit-transform: translatex(100%);
-moz-transform: translatex(100%);
-ms-transform: translatex(100%);
-o-transform: translatex(100%);
transform: translatex(100%);
}
.k-fx-tile.k-fx-end .k-fx-current {
-webkit-transform: translatex(-100%);
-moz-transform: translatex(-100%);
-ms-transform: translatex(-100%);
-o-transform: translatex(-100%);
transform: translatex(-100%);
}
.k-fx-tile.k-fx-reverse.k-fx-start .k-fx-current {
will-change: transform;
-webkit-transform: translatex(0);
-moz-transform: translatex(0);
-ms-transform: translatex(0);
-o-transform: translatex(0);
transform: translatex(0);
}
.k-fx-tile.k-fx-reverse.k-fx-end .k-fx-current {
-webkit-transform: translatex(100%);
-moz-transform: translatex(100%);
-ms-transform: translatex(100%);
-o-transform: translatex(100%);
transform: translatex(100%);
}
.k-fx-tile.k-fx-reverse.k-fx-start .k-fx-next {
-webkit-transform: translatex(-100%);
-moz-transform: translatex(-100%);
-ms-transform: translatex(-100%);
-o-transform: translatex(-100%);
transform: translatex(-100%);
}
.k-fx-tile.k-fx-reverse.k-fx-end .k-fx-next {
-webkit-transform: translatex(0);
-moz-transform: translatex(0);
-ms-transform: translatex(0);
-o-transform: translatex(0);
transform: translatex(0);
}
.k-fx-tile.k-fx-right {
/* right reverse */
}
.k-fx-tile.k-fx-right.k-fx-start .k-fx-next {
-webkit-transform: translatex(-100%);
-moz-transform: translatex(-100%);
-ms-transform: translatex(-100%);
-o-transform: translatex(-100%);
transform: translatex(-100%);
}
.k-fx-tile.k-fx-right.k-fx-end .k-fx-current {
-webkit-transform: translatex(100%);
-moz-transform: translatex(100%);
-ms-transform: translatex(100%);
-o-transform: translatex(100%);
transform: translatex(100%);
}
.k-fx-tile.k-fx-right.k-fx-reverse.k-fx-start .k-fx-current {
-webkit-transform: translatex(0);
-moz-transform: translatex(0);
-ms-transform: translatex(0);
-o-transform: translatex(0);
transform: translatex(0);
}
.k-fx-tile.k-fx-right.k-fx-reverse.k-fx-end .k-fx-current {
-webkit-transform: translatex(-100%);
-moz-transform: translatex(-100%);
-ms-transform: translatex(-100%);
-o-transform: translatex(-100%);
transform: translatex(-100%);
}
.k-fx-tile.k-fx-right.k-fx-reverse.k-fx-start .k-fx-next {
-webkit-transform: translatex(100%);
-moz-transform: translatex(100%);
-ms-transform: translatex(100%);
-o-transform: translatex(100%);
transform: translatex(100%);
}
.k-fx-tile.k-fx-right.k-fx-reverse.k-fx-end .k-fx-next {
-webkit-transform: translatex(0%);
-moz-transform: translatex(0%);
-ms-transform: translatex(0%);
-o-transform: translatex(0%);
transform: translatex(0%);
}
/* Tile */
.k-fx-tile {
/* left */
/* left reverse */
/* right */
}
.k-fx-tile.k-fx-start .k-fx-next {
will-change: transform;
-webkit-transform: translatex(100%);
-moz-transform: translatex(100%);
-ms-transform: translatex(100%);
-o-transform: translatex(100%);
transform: translatex(100%);
}
.k-fx-tile.k-fx-end .k-fx-current {
-webkit-transform: translatex(-100%);
-moz-transform: translatex(-100%);
-ms-transform: translatex(-100%);
-o-transform: translatex(-100%);
transform: translatex(-100%);
}
.k-fx-tile.k-fx-reverse.k-fx-start .k-fx-current {
will-change: transform;
-webkit-transform: translatex(0);
-moz-transform: translatex(0);
-ms-transform: translatex(0);
-o-transform: translatex(0);
transform: translatex(0);
}
.k-fx-tile.k-fx-reverse.k-fx-end .k-fx-current {
-webkit-transform: translatex(100%);
-moz-transform: translatex(100%);
-ms-transform: translatex(100%);
-o-transform: translatex(100%);
transform: translatex(100%);
}
.k-fx-tile.k-fx-reverse.k-fx-start .k-fx-next {
-webkit-transform: translatex(-100%);
-moz-transform: translatex(-100%);
-ms-transform: translatex(-100%);
-o-transform: translatex(-100%);
transform: translatex(-100%);
}
.k-fx-tile.k-fx-reverse.k-fx-end .k-fx-next {
-webkit-transform: translatex(0);
-moz-transform: translatex(0);
-ms-transform: translatex(0);
-o-transform: translatex(0);
transform: translatex(0);
}
.k-fx-tile.k-fx-right {
/* right reverse */
}
.k-fx-tile.k-fx-right.k-fx-start .k-fx-next {
-webkit-transform: translatex(-100%);
-moz-transform: translatex(-100%);
-ms-transform: translatex(-100%);
-o-transform: translatex(-100%);
transform: translatex(-100%);
}
.k-fx-tile.k-fx-right.k-fx-end .k-fx-current {
-webkit-transform: translatex(100%);
-moz-transform: translatex(100%);
-ms-transform: translatex(100%);
-o-transform: translatex(100%);
transform: translatex(100%);
}
.k-fx-tile.k-fx-right.k-fx-reverse.k-fx-start .k-fx-current {
-webkit-transform: translatex(0);
-moz-transform: translatex(0);
-ms-transform: translatex(0);
-o-transform: translatex(0);
transform: translatex(0);
}
.k-fx-tile.k-fx-right.k-fx-reverse.k-fx-end .k-fx-current {
-webkit-transform: translatex(-100%);
-moz-transform: translatex(-100%);
-ms-transform: translatex(-100%);
-o-transform: translatex(-100%);
transform: translatex(-100%);
}
.k-fx-tile.k-fx-right.k-fx-reverse.k-fx-start .k-fx-next {
-webkit-transform: translatex(100%);
-moz-transform: translatex(100%);
-ms-transform: translatex(100%);
-o-transform: translatex(100%);
transform: translatex(100%);
}
.k-fx-tile.k-fx-right.k-fx-reverse.k-fx-end .k-fx-next {
-webkit-transform: translatex(0%);
-moz-transform: translatex(0%);
-ms-transform: translatex(0%);
-o-transform: translatex(0%);
transform: translatex(0%);
}
/* Overlay */
.k-fx.k-fx-overlay.k-fx-start .k-fx-next,
.k-fx.k-fx-overlay.k-fx-left.k-fx-start .k-fx-next {
will-change: transform;
-webkit-transform: translatex(100%);
-moz-transform: translatex(100%);
-ms-transform: translatex(100%);
-o-transform: translatex(100%);
transform: translatex(100%);
}
.k-fx.k-fx-overlay.k-fx-right.k-fx-start .k-fx-next {
-webkit-transform: translatex(-100%);
-moz-transform: translatex(-100%);
-ms-transform: translatex(-100%);
-o-transform: translatex(-100%);
transform: translatex(-100%);
}
.k-fx.k-fx-overlay.k-fx-up.k-fx-start .k-fx-next {
-webkit-transform: translatey(100%);
-moz-transform: translatey(100%);
-ms-transform: translatey(100%);
-o-transform: translatey(100%);
transform: translatey(100%);
}
.k-fx.k-fx-overlay.k-fx-down.k-fx-start .k-fx-next {
-webkit-transform: translatey(-100%);
-moz-transform: translatey(-100%);
-ms-transform: translatey(-100%);
-o-transform: translatey(-100%);
transform: translatey(-100%);
}
.k-fx.k-fx-overlay.k-fx-reverse.k-fx-start .k-fx-next {
-webkit-transform: none;
-moz-transform: none;
-ms-transform: none;
-o-transform: none;
transform: none;
}
.k-fx.k-fx-overlay.k-fx-reverse.k-fx-start .k-fx-current {
will-change: transform;
-webkit-transform: none;
-moz-transform: none;
-ms-transform: none;
-o-transform: none;
transform: none;
}
.k-fx.k-fx-overlay.k-fx-reverse.k-fx-end .k-fx-current,
.k-fx.k-fx-overlay.k-fx-reverse.k-fx-left.k-fx-end .k-fx-current {
-webkit-transform: translatex(100%);
-moz-transform: translatex(100%);
-ms-transform: translatex(100%);
-o-transform: translatex(100%);
transform: translatex(100%);
}
.k-fx.k-fx-overlay.k-fx-reverse.k-fx-right.k-fx-end .k-fx-current {
-webkit-transform: translatex(-100%);
-moz-transform: translatex(-100%);
-ms-transform: translatex(-100%);
-o-transform: translatex(-100%);
transform: translatex(-100%);
}
.k-fx.k-fx-overlay.k-fx-reverse.k-fx-up.k-fx-end .k-fx-current {
-webkit-transform: translatey(100%);
-moz-transform: translatey(100%);
-ms-transform: translatey(100%);
-o-transform: translatey(100%);
transform: translatey(100%);
}
.k-fx.k-fx-overlay.k-fx-reverse.k-fx-down.k-fx-end .k-fx-current {
-webkit-transform: translatey(-100%);
-moz-transform: translatey(-100%);
-ms-transform: translatey(-100%);
-o-transform: translatey(-100%);
transform: translatey(-100%);
}
/* Platform specific workarounds */
.km-on-wp .km-view,
.km-on-wp .km-header,
.km-on-wp .km-footer,
.km-on-wp .km-slider,
.km-on-wp .km-switch,
.km-on-wp .km-filter-reset,
.km-on-wp .km-shim .k-animation-container,
.km-on-wp .km-scroll-container {
transform: translateZ(0);
}
.km-ios,
.km-blackberry,
.km-on-ios .km-view,
.km-on-ios .km-header,
.km-on-ios .km-footer,
.km-on-ios .km-slider,
.km-on-ios .km-switch,
.km-on-ios .km-group-title,
.km-on-ios .km-filter-reset,
.km-on-ios .km-shim .k-animation-container,
.km-on-ios .km-scroll-container,
.km-on-blackberry .km-view,
.km-on-blackberry .km-content,
.km-on-blackberry .km-header,
.km-on-blackberry .km-footer,
.km-on-blackberry .km-icon,
.km-on-blackberry .km-switch,
.km-on-blackberry .km-popup .k-item,
.km-on-blackberry .km-actionsheet-wrapper,
.km-on-android.km-4 .k-slider {
-webkit-transform: translatez(0);
}
.km-on-android.km-4 .km-switch,
.km-on-android.km-4 .km-listview-wrapper,
.km-on-android.km-4 .km-content,
.km-on-android.km-4 .km-switch-handle,
.km-android.km-4.km-on-android .km-switch-wrapper,
.km-on-android.km-4 .km-scroll-container,
.km-on-meego .km-content,
.km-on-meego .km-switch,
.km-on-meego .km-icon,
.km-on-meego .km-header,
.km-on-meego .km-footer,
.km-on-meego .km-content,
.km-on-meego .km-switch-handle,
.km-on-meego .km-switch-wrapper {
-webkit-transform: translatez(0);
-webkit-backface-visibility: hidden;
}
.km-android4.km-ios-chrome .km-listview-wrapper {
-webkit-transform: none;
}
.km-native-scrolling .km-header,
.km-native-scrolling .km-footer,
.km-native-scrolling .km-shim,
.km-native-scrolling .km-popup-overlay,
.km-native-scrolling .km-drawer,
.km-native-scrolling > .km-pane > .km-loader,
.km-on-android.km-4 .km-scroller-pull .km-icon {
-webkit-backface-visibility: hidden;
}
.km-on-android.km-4 input {
-webkit-user-modify: read-write-plaintext-only;
}
.km-wp .km-view .km-absolute,
.km-meego .km-view .km-absolute {
position: absolute;
}
/* Icon per-widget styles */
.km-detail .km-icon,
.km-button .km-icon,
.km-list .km-icon,
.km-ios .km-button .km-icon {
width: 1em;
height: 1em;
font-size: 1em;
margin-left: -0.3em;
margin-right: 0.3em;
vertical-align: baseline;
display: inline-block;
background-size: auto 100%;
}
html .km-widget .km-view .km-notext {
margin-left: 0;
margin-right: 0;
}
.km-buttongroup .km-button .km-icon {
width: 1em;
height: 1em;
font-size: 1em;
margin: .05em .16em 0 0;
}
.km-tabstrip .km-button .km-icon {
width: 2.5rem;
height: 2.5rem;
font-size: 2.5rem;
}
.km-tabstrip .km-image,
.km-tabstrip .km-button .km-icon {
margin: 0 auto .1em;
display: inline-block;
}
.km-tabstrip .km-text {
display: block;
}
.km-phone .km-tabstrip .km-icon {
height: 2.2rem;
width: 2.2rem;
font-size: 2.2rem;
}
.km-phone .km-horizontal .km-tabstrip .km-icon {
height: 2rem;
width: 2rem;
font-size: 2rem;
}
/* Icons */
@font-face {
font-family: "Kendo UI";
src: url("images/kendoui.woff?v=1.1") format("woff"), url("images/kendoui.ttf?v=1.1") format("truetype"), url("images/kendoui.svg#kendoui") format("svg");
}
body:before {
font-family: "Kendo UI";
content: "\a0";
font-size: 0;
width: 0;
height: 0;
position: absolute;
z-index: -1;
}
.km-root .km-pane .km-view .km-icon {
-webkit-background-clip: text;
background-size: 0 0;
}
.km-icon {
position: relative;
}
.km-icon:after,
.km-icon:before,
.km-contactadd:after,
.km-contactadd:before,
.km-rowdelete:after,
.km-rowdelete:before,
.km-rowinsert:after,
.km-rowinsert:before,
.km-detaildisclose:after,
.km-detaildisclose:before,
.km-loading:after,
.km-filter-wrap:before {
position: relative;
content: "\a0";
display: block;
width: 100%;
height: 100%;
text-align: left;
vertical-align: middle;
background-size: auto;
font: 1em/1em "Kendo UI";
}
.km-icon:before,
.km-contactadd:before,
.km-rowdelete:before,
.km-rowinsert:before,
.km-detaildisclose:before {
position: absolute;
margin-top: 1px;
color: rgba(0, 0, 0, 0.7);
display: none;
}
.km-state-active .km-icon:before,
.km-state-active .km-contactadd:before,
.km-state-active .km-rowdelete:before,
.km-state-active .km-rowinsert:before,
.km-state-active .km-detaildisclose:before {
display: block;
}
.km-ios7 .km-detaildisclose:after {
font-family: serif;
}
.km-ios7 .km-icon:before,
.km-ios7 .km-contactadd:before,
.km-ios7 .km-rowdelete:before,
.km-ios7 .km-rowinsert:before,
.km-ios7 .km-detaildisclose:before {
display: none;
}
.k-webkit .km-ios:not(.km-android):not(.km-blackberry6):not(.km-blackberry7) .km-icon:after,
.k-webkit .km-blackberry:not(.km-android):not(.km-blackberry6):not(.km-blackberry7) .km-icon:after,
.k-safari .km-ios:not(.km-android):not(.km-blackberry6):not(.km-blackberry7) .km-icon:after,
.k-safari .km-blackberry:not(.km-android):not(.km-blackberry6):not(.km-blackberry7) .km-icon:after {
background-image: inherit;
background-repeat: inherit;
background-position: inherit;
background-color: currentcolor;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.km-root .km-pane.km-on-blackberry.km-blackberry6 .km-view .km-icon:after,
.km-root .km-pane.km-on-blackberry.km-blackberry7 .km-view .km-icon:after,
.km-root .km-pane.km-pane.km-on-android .km-view .km-icon:after,
.km-root .km-pane.km-pane.km-on-meego .km-view .km-icon:after {
background: none;
-webkit-text-fill-color: inherit;
}
.km-contactadd:after,
.km-contactadd:before,
.km-rowinsert:after,
.km-rowinsert:before {
content: "\E039";
}
.km-rowdelete:after,
.km-rowdelete:before {
content: "\E03a";
}
.km-detaildisclose:after,
.km-detaildisclose:before {
content: "\E0E2";
}
.km-action:after,
.km-action:before {
content: "\e0ca";
}
.km-add:after,
.km-add:before {
content: "\e0cb";
}
.km-battery:after,
.km-battery:before {
content: "\e0ce";
}
.km-bookmarks:after,
.km-bookmarks:before {
content: "\e0cf";
}
.km-camera:after,
.km-camera:before {
content: "\e0d0";
}
.km-cart:after,
.km-cart:before {
content: "\e0d1";
}
.km-edit:after,
.km-compose:after,
.km-edit:before,
.km-compose:before {
content: "\e0d5";
}
.km-contacts:after,
.km-contacts:before {
content: "\e0e4";
}
.km-trash:after,
.km-delete:after,
.km-trash:before,
.km-delete:before {
content: "\e0ec";
}
.km-details:after,
.km-details:before {
content: "\e0e2";
}
.km-download:after,
.km-downloads:after,
.km-download:before,
.km-downloads:before {
content: "\e0d4";
}
.km-fastforward:after,
.km-fastforward:before {
content: "\e0d9";
}
.km-toprated:after,
.km-favorites:after,
.km-toprated:before,
.km-favorites:before {
content: "\e0d7";
}
.km-featured:after,
.km-featured:before {
content: "\e0d8";
}
.km-globe:after,
.km-globe:before {
content: "\e0dc";
}
.km-history:after,
.km-history:before {
content: "\e0e7";
}
.km-home:after,
.km-home:before {
content: "\e0dd";
}
.km-info:after,
.km-about:after,
.km-info:before,
.km-about:before {
content: "\e0de";
}
.km-more:after,
.km-more:before {
content: "\e0e0";
}
.km-mostrecent:after,
.km-mostrecent:before {
content: "\e0cc";
}
.km-mostviewed:after,
.km-mostviewed:before {
content: "\e0d6";
}
.km-organize:after,
.km-organize:before {
content: "\e0eb";
}
.km-pause:after,
.km-pause:before {
content: "\e0e3";
}
.km-play:after,
.km-play:before {
content: "\e0e5";
}
.km-recents:after,
.km-recents:before {
content: "\e0d2";
}
.km-refresh:after,
.km-refresh:before {
content: "\e0e6";
}
.km-reply:after,
.km-reply:before {
content: "\e0ed";
}
.km-rewind:after,
.km-rewind:before {
content: "\e0e8";
}
.km-search:after,
.km-search:before {
content: "\e0e9";
}
.km-settings:after,
.km-settings:before {
content: "\e0da";
}
.km-share:after,
.km-share:before {
content: "\e0df";
}
.km-sounds:after,
.km-volume:after,
.km-sounds:before,
.km-volume:before {
content: "\e0ef";
}
.km-stop:after,
.km-stop:before {
content: "\e0ea";
}
.km-wifi:after,
.km-wifi:before {
content: "\e0f0";
}
.km-root .km-pane .km-icon.km-check {
-webkit-background-clip: initial;
}
.km-root .km-pane .km-check:checked:after,
.km-widget .km-check:checked:after {
content: "\e227";
}
.km-android .km-more:after,
.km-android .km-more:before {
content: "\e0e1";
}
.km-meego .km-more:after,
.km-meego .km-more:before {
content: "\e0f1";
}
.km-wp .km-loading:after,
.km-wp .km-load-more .km-icon:after,
.km-wp .km-scroller-refresh .km-icon:after {
content: "\e0f6";
}
.km-meego .km-loading:after,
.km-meego .km-load-more .km-icon:after,
.km-meego .km-scroller-refresh .km-icon:after {
content: "\e0f6";
}
.km-root .km-android .km-loading:after,
.km-android .km-load-more .km-icon:after,
.km-root .km-android .km-scroller-refresh .km-icon:after {
content: "\e0f6";
}
.km-scroller-pull .km-icon:after {
content: "\e0f2";
}
.km-icon.km-phone:after,
.km-ios7 .km-state-active .km-phone:after {
content: "\e326";
}
.km-ios7 .km-detaildisclose:after {
content: "i";
}
.km-ios7 .km-action:after {
content: "\e1ff";
}
.km-ios7 .km-add:after {
content: "\e200";
}
.km-ios7 .km-mostrecent:after {
content: "\e201";
}
.km-ios7 .km-battery:after {
content: "\e203";
}
.km-ios7 .km-bookmarks:after {
content: "\e204";
}
.km-ios7 .km-camera:after {
content: "\e205";
}
.km-ios7 .km-cart:after {
content: "\e206";
}
.km-ios7 .km-recents:after {
content: "\e207";
}
.km-ios7 .km-download:after,
.km-ios7 .km-downloads:after {
content: "\e209";
}
.km-ios7 .km-edit:after {
content: "\e20a";
}
.km-ios7 .km-mostviewed:after {
content: "\e20b";
}
.km-ios7 .km-toprated:after,
.km-ios7 .km-favorites:after {
content: "\e20c";
}
.km-ios7 .km-featured:after {
content: "\e20d";
}
.km-ios7 .km-fastforward:after {
content: "\e20e";
}
.km-ios7 .km-settings:after {
content: "\e20f";
}
.km-ios7 .km-globe:after {
content: "\e211";
}
.km-ios7 .km-home:after {
content: "\e212";
}
.km-ios7 .km-info:after,
.km-ios7 .km-about:after {
content: "\e213";
}
.km-ios7 .km-share:after {
content: "\e214";
}
.km-ios7 .km-more:after {
content: "\e215";
}
.km-ios7 .km-details:after {
content: "\e217";
}
.km-ios7 .km-pause:after {
content: "\e218";
}
.km-ios7 .km-contacts:after {
content: "\e219";
}
.km-ios7 .km-play:after {
content: "\e21a";
}
.km-ios7 .km-refresh:after {
content: "\e21b";
}
.km-ios7 .km-history:after {
content: "\e21c";
}
.km-ios7 .km-rewind:after {
content: "\e21d";
}
.km-ios7 .km-search:after {
content: "\e21e";
}
.km-ios7 .km-stop:after {
content: "\e21f";
}
.km-ios7 .km-organize:after {
content: "\e220";
}
.km-ios7 .km-trash:after,
.km-ios7 .km-delete:after {
content: "\e221";
}
.km-ios7 .km-reply:after {
content: "\e222";
}
.km-ios7 .km-forward:after {
content: "\e223";
}
.km-ios7 .km-sounds:after,
.km-ios7 .km-volume:after {
content: "\e224";
}
.km-ios7 .km-wifi:after {
content: "\e225";
}
.km-ios7 .km-phone:after {
content: "\e226";
}
.km-ios7 .km-state-active .km-action:after {
content: "\e2ff";
}
.km-ios7 .km-state-active .km-add:after {
content: "\e300";
}
.km-ios7 .km-state-active .km-mostrecent:after {
content: "\e301";
}
.km-ios7 .km-state-active .km-battery:after {
content: "\e303";
}
.km-ios7 .km-state-active .km-bookmarks:after {
content: "\e304";
}
.km-ios7 .km-state-active .km-camera:after {
content: "\e305";
}
.km-ios7 .km-state-active .km-cart:after {
content: "\e306";
}
.km-ios7 .km-state-active .km-recents:after {
content: "\e307";
}
.km-ios7 .km-state-active .km-download:after,
.km-ios7 .km-state-active .km-downloads:after {
content: "\e309";
}
.km-ios7 .km-state-active .km-edit:after {
content: "\e30a";
}
.km-ios7 .km-state-active .km-mostviewed:after {
content: "\e30b";
}
.km-ios7 .km-state-active .km-toprated:after,
.km-ios7 .km-state-active .km-favorites:after {
content: "\e30c";
}
.km-ios7 .km-state-active .km-featured:after {
content: "\e30d";
}
.km-ios7 .km-state-active .km-fastforward:after {
content: "\e30e";
}
.km-ios7 .km-state-active .km-settings:after {
content: "\e30f";
}
.km-ios7 .km-state-active .km-globe:after {
content: "\e311";
}
.km-ios7 .km-state-active .km-home:after {
content: "\e312";
}
.km-ios7 .km-state-active .km-info:after,
.km-ios7 .km-state-active .km-about:after {
content: "\e313";
}
.km-ios7 .km-state-active .km-share:after {
content: "\e314";
}
.km-ios7 .km-state-active .km-more:after {
content: "\e315";
}
.km-ios7 .km-state-active .km-details:after {
content: "\e317";
}
.km-ios7 .km-state-active .km-pause:after {
content: "\e318";
}
.km-ios7 .km-state-active .km-contacts:after {
content: "\e319";
}
.km-ios7 .km-state-active .km-play:after {
content: "\e31a";
}
.km-ios7 .km-state-active .km-refresh:after {
content: "\e31b";
}
.km-ios7 .km-state-active .km-history:after {
content: "\e31c";
}
.km-ios7 .km-state-active .km-rewind:after {
content: "\e31d";
}
.km-ios7 .km-state-active .km-search:after {
content: "\e31e";
}
.km-ios7 .km-state-active .km-stop:after {
content: "\e31f";
}
.km-ios7 .km-state-active .km-organize:after {
content: "\e320";
}
.km-ios7 .km-state-active .km-trash:after,
.km-ios7 .km-state-active .km-delete:after {
content: "\e321";
}
.km-ios7 .km-state-active .km-reply:after {
content: "\e322";
}
.km-ios7 .km-state-active .km-forward:after {
content: "\e323";
}
.km-ios7 .km-state-active .km-sounds:after,
.km-ios7 .km-state-active .km-volume:after {
content: "\e324";
}
.km-ios7 .km-state-active .km-wifi:after {
content: "\e325";
}
.km-arrowdown:after,
.km-arrowdown:before {
content: "\e002";
}
.km-wp .km-scroller-pull .km-icon:after {
content: "\E0D4";
}
.km-on-wp.km-app .km-icon:after,
.km-on-wp.km-app .km-filter-wrap:before,
.km-on-wp.km-app .km-state-active .km-icon:after {
color: transparent;
background-image: url("images/wp8_icons.png");
background-size: auto 100%;
height: 1em;
margin-top: 0;
vertical-align: middle;
}
.km-wp-light.km-app .km-icon:after,
.km-wp-light.km-app .km-filter-wrap:before {
background-image: url("images/wp8_inverseicons.png");
}
.km-on-wp.km-app .km-icon {
line-height: 1em;
}
.km-on-wp.km-app .km-icon:before {
display: none;
}
.km-on-wp.km-app .km-action:after {
background-position-x: 20%;
}
.km-on-wp.km-app .km-add:after,
.km-on-wp.km-app .km-filter-reset .km-clear:after {
background-position-x: 22%;
}
.km-on-wp.km-app .km-battery:after {
background-position-x: 24%;
}
.km-on-wp.km-app .km-bookmarks:after {
background-position-x: 26%;
}
.km-on-wp.km-app .km-camera:after {
background-position-x: 28%;
}
.km-on-wp.km-app .km-cart:after {
background-position-x: 30%;
}
.km-on-wp.km-app .km-edit:after,
.km-on-wp.km-app .km-compose:after {
background-position-x: 32%;
}
.km-on-wp.km-app .km-contacts:after {
background-position-x: 34%;
}
.km-on-wp.km-app .km-trash:after,
.km-on-wp.km-app .km-delete:after {
background-position-x: 36%;
}
.km-on-wp.km-app .km-details:after {
background-position-x: 38%;
}
.km-on-wp.km-app .km-download:after,
.km-on-wp.km-app .km-downloads:after {
background-position-x: 40%;
}
.km-on-wp.km-app .km-fastforward:after {
background-position-x: 42%;
}
.km-on-wp.km-app .km-toprated:after,
.km-on-wp.km-app .km-favorites:after {
background-position-x: 44%;
}
.km-on-wp.km-app .km-featured:after {
background-position-x: 46%;
}
.km-on-wp.km-app .km-globe:after {
background-position-x: 48%;
}
.km-on-wp.km-app .km-history:after {
background-position-x: 50%;
}
.km-on-wp.km-app .km-home:after {
background-position-x: 52%;
}
.km-on-wp.km-app .km-info:after,
.km-on-wp.km-app .km-about:after {
background-position-x: 54%;
}
.km-on-wp.km-app .km-more:after {
background-position-x: 56%;
}
.km-on-wp.km-app .km-mostrecent:after {
background-position-x: 58%;
}
.km-on-wp.km-app .km-mostviewed:after {
background-position-x: 60%;
}
.km-on-wp.km-app .km-organize:after {
background-position-x: 62%;
}
.km-on-wp.km-app .km-pause:after {
background-position-x: 64%;
}
.km-on-wp.km-app .km-play:after {
background-position-x: 66%;
}
.km-on-wp.km-app .km-recents:after {
background-position-x: 68%;
}
.km-on-wp.km-app .km-refresh:after {
background-position-x: 70%;
}
.km-on-wp.km-app .km-reply:after {
background-position-x: 72%;
}
.km-on-wp.km-app .km-rewind:after {
background-position-x: 74%;
}
.km-on-wp.km-app .km-search:after,
.km-on-wp.km-app .km-filter-wrap:before {
background-position-x: 76%;
}
.km-on-wp.km-app .km-settings:after {
background-position-x: 78%;
}
.km-on-wp.km-app .km-share:after {
background-position-x: 80%;
}
.km-on-wp.km-app .km-sounds:after,
.km-on-wp.km-app .km-volume:after {
background-position-x: 82%;
}
.km-on-wp.km-app .km-stop:after {
background-position-x: 84%;
}
.km-on-wp.km-app .km-wifi:after {
background-position-x: 86%;
}
.km-on-wp.km-app.km-android .km-more:after {
background-position-x: 88%;
}
.km-on-wp.km-app.km-meego .km-more:after {
background-position-x: 90%;
}
.km-on-wp.km-app.km-meego .km-loading:after,
.km-on-wp.km-app.km-meego .km-load-more .km-icon:after,
.km-on-wp.km-app.km-meego .km-scroller-refresh .km-icon:after {
background-position-x: 94%;
}
.km-on-wp.km-app .km-scroller-pull .km-icon:after {
background-position-x: 100%;
}
.km-on-wp.km-app .km-filter-wrap:before {
display: inline-block;
content: "\a0";
}
.km-on-wp.km-app .km-filter-reset .km-clear:after {
transform: rotate(45deg);
}
.km-materialblack {
font: normal 1em "HelveticaNeue Light", "Roboto Light", "Slate Light", "Segoe WP", NokiaPureTextLight, sans-serif;
}
/* override transform options for performance */
.km-root .km-materialblack.km-pane,
.km-root .km-materialblack .km-view,
.km-root .km-materialblack .km-slider,
.km-root .km-materialblack .km-switch,
.km-root .km-materialblack .km-group-title,
.km-root .km-materialblack .km-filter-reset,
.km-root .km-materialblack .km-shim .k-animation-container {
-webkit-transform: none;
}
.km-materialblack,
.km-materialblack * {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
-moz-background-clip: border-box;
-webkit-background-clip: border-box;
background-clip: border-box;
}
/* Revert box/clip for Web widgets */
.km-materialblack [class^=k-] {
-moz-box-sizing: content-box;
-webkit-box-sizing: content-box;
box-sizing: content-box;
}
.km-materialblack .km-tabstrip .km-button {
background: none;
}
/* PopUp */
.km-materialblack .km-popup .k-popup {
font-size: 1em !important;
}
.km-materialblack .km-popup .k-item,
.km-materialblack .km-actionsheet > li > a {
text-decoration: none;
padding: .5em .6em;
border-radius: 0;
border-width: 0 0 0;
border-style: solid;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.km-materialblack .km-popup {
left: 0 !important;
top: 0 !important;
width: 100% !important;
height: 100% !important;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.km-materialblack .km-popup .k-list-container {
width: 100% !important;
height: auto !important;
}
.km-materialblack .km-actionsheet,
.km-materialblack .km-popup .k-list-container {
max-height: 80%;
}
.km-materialblack .km-actionsheet-wrapper,
.km-materialblack .km-popup .k-list-container {
bottom: 0;
border-width: 0 0 0;
border-style: solid;
border-radius: 0;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.km-materialblack .km-shim .k-animation-container {
left: 0;
top: auto;
bottom: 0;
}
.km-materialblack .km-popup-wrapper {
padding: 15px;
}
.km-materialblack .km-popup.km-pane,
.km-materialblack .km-actionsheet-wrapper.km-popup {
border-radius: 3px;
}
/* Loader & Pull-to-refresh */
.km-materialblack .km-load-more {
height: 3.4em;
}
.km-materialblack .km-load-more .km-button {
margin: 0 .8em;
display: block;
}
.km-materialblack .km-loader:before,
.km-materialblack .km-scroller-refresh.km-load-more,
.km-materialblack .km-scroller-pull {
border-radius: 20em;
overflow: visible;
}
.km-materialblack .km-loader:before {
content: "\a0";
display: block;
position: absolute;
margin-top: -2em;
margin-left: -2em;
width: 4em;
height: 4em;
top: 50%;
left: 50%;
border-radius: 5em;
}
.km-materialblack .km-loader {
left: 0;
top: 0;
margin: 0;
width: 100%;
height: 100%;
}
.km-materialblack .km-scroller-refresh.km-load-more {
padding: 0;
position: relative;
margin: auto;
}
.km-materialblack .km-scroller-refresh.km-load-more,
.km-materialblack .km-scroller-pull {
font-size: 1em;
width: 2.5em;
height: 2.5em;
top: .25em;
white-space: nowrap;
}
.km-materialblack .km-scroller-pull {
left: 50%;
margin: 0 0 0 -90px;
}
.km-materialblack .km-loader h1 {
display: none;
font-size: 1em;
position: absolute;
left: -50%;
width: 200%;
top: 55%;
}
.km-materialblack .km-scroller-pull .km-template {
position: absolute;
line-height: 2em;
font-size: 1.2em;
min-width: 0;
top: 0;
left: 3em;
}
.km-materialblack .km-loading,
.km-materialblack .km-loader .km-loading-left,
.km-materialblack .km-loader .km-loading-right,
.km-materialblack .km-load-more.km-scroller-refresh .km-icon,
.km-materialblack .km-scroller-pull.km-scroller-refresh .km-icon,
.km-materialblack .km-scroller-refresh .km-loading-left,
.km-materialblack .km-scroller-refresh .km-loading-right {
font-size: 1em;
display: block;
width: .36em;
height: 1em;
position: absolute;
top: 50%;
left: 50%;
margin-left: -0.8em;
margin-top: -0.5em;
border-radius: 1em;
animation: km-materialload 0.6s infinite linear;
-moz-animation: km-materialload 0.6s infinite linear;
-webkit-animation: km-materialload 0.6s infinite linear;
-webkit-background-clip: none;
}
.km-materialblack .km-scroller-pull .km-icon {
margin-right: 0;
display: block;
position: absolute;
top: 50%;
left: 50%;
margin-left: -1rem;
margin-top: -1rem;
}
.km-materialblack .km-load-more.km-scroller-refresh .km-icon,
.km-materialblack .km-scroller-pull.km-scroller-refresh .km-icon,
.km-materialblack .km-scroller-refresh .km-loading-left,
.km-materialblack .km-scroller-refresh .km-loading-right {
height: .6em;
margin-top: -0.3em;
margin-left: -0.6em;
width: .25em;
animation: km-materialrefresh 0.6s infinite linear;
-moz-animation: km-materialrefresh 0.6s infinite linear;
-webkit-animation: km-materialrefresh 0.6s infinite linear;
}
.km-materialblack .km-scroller-pull .km-icon:after {
content: "\e012";
margin-left: -3px;
}
.km-materialblack .km-scroller-refresh .km-icon:after {
display: none;
}
.km-root .km-materialblack .km-loading-left {
margin-left: -0.2em;
animation-delay: 0.2s;
-moz-animation-delay: 0.2s;
-webkit-animation-delay: 0.2s;
}
.km-root .km-materialblack .km-loading-right {
margin-left: .42em;
animation-delay: 0.4s;
-moz-animation-delay: 0.4s;
-webkit-animation-delay: 0.4s;
}
.km-materialblack .km-scroller-refresh .km-loading-left {
margin-left: -0.18em;
}
.km-materialblack .km-scroller-refresh .km-loading-right {
margin-left: .28em;
}
@keyframes km-materialload {
0% {
height: 1em;
margin-top: -0.5em;
}
33% {
height: 2em;
margin-top: -1em;
}
66% {
height: 1em;
margin-top: -0.5em;
}
}
@-moz-keyframes km-materialload {
0% {
height: 1em;
margin-top: -0.5em;
}
33% {
height: 2em;
margin-top: -1em;
}
66% {
height: 1em;
margin-top: -0.5em;
}
}
@-webkit-keyframes km-materialload {
0% {
height: 1em;
margin-top: -0.5em;
}
33% {
height: 2em;
margin-top: -1em;
}
66% {
height: 1em;
margin-top: -0.5em;
}
}
@keyframes km-materialrefresh {
0% {
height: .6em;
margin-top: -0.3em;
}
33% {
height: 1.2em;
margin-top: -0.6em;
}
66% {
height: .6em;
margin-top: -0.3em;
}
}
@-moz-keyframes km-materialrefresh {
0% {
height: .6em;
margin-top: -0.3em;
}
33% {
height: 1.2em;
margin-top: -0.6em;
}
66% {
height: .6em;
margin-top: -0.3em;
}
}
@-webkit-keyframes km-materialrefresh {
0% {
height: .6em;
margin-top: -0.3em;
}
33% {
height: 1.2em;
margin-top: -0.6em;
}
66% {
height: .6em;
margin-top: -0.3em;
}
}
/* Color Template */
/* Button */
.km-materialblack .km-button {
background: #303030;
border-color: #303030;
}
/* Badges and Details */
.km-materialblack .km-detail,
.km-materialblack .k-toolbar {
border-color: #545454;
}
/* Switch */
.km-materialblack .km-switch-wrapper {
background-color: #ffffff;
}
.km-materialblack .km-switch-handle {
background: #3f51b5;
border-color: rgba(0, 0, 0, 0.1);
-webkit-box-shadow: 0 2px 4px #3f51b5, 0 2px #3f51b5;
box-shadow: 0 2px 4px #3f51b5, 0 2px #3f51b5;
}
.km-materialblack .km-switch-off .km-switch-handle {
background-color: #7d7d7d;
-webkit-box-shadow: 0 2px 4px #545454, 0 2px rgba(0, 0, 0, 0.2);
box-shadow: 0 2px 4px #545454, 0 2px rgba(0, 0, 0, 0.2);
}
.km-materialblack .km-switch-container,
.km-materialblack .km-switch-wrapper {
border-color: #ffffff;
}
/* ListView */
.km-materialblack .km-group-container {
border-color: #545454;
}
.km-materialblack .km-list > li {
border-color: #545454;
}
.km-materialblack .km-listinset > li:first-child,
.km-materialblack .km-listgroupinset .km-list > li:first-child {
border-color: #545454;
}
.km-materialblack .km-listinset > li:last-child,
.km-materialblack .km-listgroupinset .km-list > li:last-child {
border-color: #545454;
}
.km-materialblack .km-listview-link:after {
color: #ffffff;
}
.km-materialblack .km-group-title {
color: #3f51b5;
background: #303030;
border-color: #545454;
}
.km-materialblack .km-filter-wrap:before,
.km-materialblack .km-filter-reset .km-clear {
color: #ffffff;
}
.km-materialblack .km-filter-wrap > input {
color: #ffffff;
}
/* ScrollView */
.km-materialblack .km-pages li {
background: #545454;
}
/* Forms */
.km-materialblack .km-list select:not([multiple]) option {
color: #333;
}
/* Checkboxes and Radios */
.km-materialblack .km-listview-label input[type=radio],
.km-materialblack .km-listview-label input[type=checkbox] {
border-color: #ffffff;
background: #ffffff;
}
.km-materialblack .km-listview-label input[type=checkbox]:checked:after {
color: #ffffff;
}
/* Shim */
.km-materialblack .km-shim {
background: rgba(0, 0, 0, 0.2);
}
.km-phone .km-materialblack .km-actionsheet-wrapper {
background: #303030;
}
/* PopUp */
.km-materialblack .km-popup .k-item,
.km-materialblack .km-actionsheet > li > a {
color: #ffffff;
background: #303030;
border-bottom-color: #303030;
}
.km-materialblack .km-popup {
background: #303030;
}
.km-materialblack .km-actionsheet-wrapper,
.km-materialblack .km-popup .k-list-container {
background: #303030;
border-top-color: #303030;
box-shadow: 0 15px 30px 3px rgba(0, 0, 0, 0.3);
}
.km-materialblack .km-popup.km-pane,
.km-tablet .km-materialblack .km-actionsheet-wrapper {
color: #ffffff;
background-color: #303030;
}
.km-materialblack .km-popup-arrow:after {
border-color: #303030;
}
.km-materialblack .km-left .km-popup-arrow:after,
.km-materialblack .km-right .km-popup-arrow:after {
border-color: transparent #303030;
}
/* Loader & Pull-to-refresh */
.km-materialblack .km-loader {
background: rgba(0, 0, 0, 0.05);
}
.km-materialblack .km-loader h1 {
color: #ffffff;
}
/* Active States */
.km-materialblack .km-detail:active,
.km-materialblack .km-state-active .km-detail,
.km-materialblack .km-state-active[style*=background] {
box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.2);
-webkit-box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.2);
}
/* Active States */
.km-materialblack .km-badge,
.km-materialblack .km-rowinsert,
.km-materialblack .km-rowdelete,
.km-materialblack .km-switch-label-on,
.km-materialblack .km-switch-label-off,
.km-materialblack .k-slider .k-draghandle,
.km-materialblack .k-slider .k-draghandle:hover,
.km-materialblack .km-scroller-pull .km-icon,
.km-materialblack .km-popup.km-pane .k-toolbar,
.km-materialblack .km-popup.km-pane .km-tabstrip,
.km-materialblack .km-popup .k-state-hover,
.km-materialblack .km-popup .k-state-focused,
.km-materialblack li.km-state-active .km-listview-label,
.km-materialblack .km-state-active .km-listview-link:after {
color: #ffffff;
}
.km-materialblack .km-loader > *:not(h1),
.km-materialblack .km-filter-wrap > input,
.km-materialblack .km-switch-handle.km-state-active,
.km-root .km-materialblack .km-scroller-refresh span:not(.km-template) {
background: #ffffff;
}
.km-materialblack .km-switch-handle,
.km-materialblack .k-slider-selection {
color: #3f51b5;
}
.km-materialblack .km-switch-background {
color: #8591d5;
}
.km-materialblack .km-switch-off .km-switch-background {
background-color: rgba(0, 0, 0, 0.3);
}
.km-materialblack .km-rowinsert,
.km-materialblack .km-state-active,
.km-materialblack .km-scroller-pull,
.km-materialblack .km-loader:before,
.km-materialblack .k-slider-selection,
.km-materialblack .km-touch-scrollbar,
.km-materialblack .km-pages .km-current-page,
.km-materialblack .k-slider .k-draghandle,
.km-materialblack .k-slider .k-draghandle:hover,
.km-materialblack li.km-state-active .km-listview-label,
.km-materialblack .km-listview-label input[type=radio]:checked,
.km-materialblack .km-listview-label input[type=checkbox]:checked {
background: #3f51b5;
}
.km-materialblack .km-filter-wrap > input:focus {
border-color: #3f51b5;
}
.km-materialblack .km-badge,
.km-materialblack .km-rowdelete {
background: #da2228;
}
.km-materialblack .km-button,
.km-materialblack .km-modalview .km-navbar .km-button {
color: #3f51b5;
background: transparent;
border-color: transparent;
}
.km-materialblack .km-listview .km-state-active,
.km-materialblack .km-button.km-state-active,
.km-materialblack li.km-state-active .km-listview-label {
background: #454545;
}
.km-materialblack .km-state-active,
.km-materialblack li.km-state-active .km-listview-label,
.km-materialblack .km-state-active .km-listview-link:after,
.km-materialblack li.km-state-active .km-listview-link {
color: #ffffff;
}
.km-materialblack .km-button.km-state-active {
color: #3f51b5;
}
.km-materialblack .km-button.km-state-disabled {
color: rgba(0, 0, 0, 0.3);
opacity: 1;
}
.km-materialblack .km-buttongroup,
.km-materialblack .km-widget.km-navbar .km-buttongroup {
border-color: #545454;
}
.km-materialblack .km-buttongroup .km-button {
color: #ffffff;
}
.km-materialblack .km-widget.km-navbar .km-buttongroup .km-button {
color: #ffffff;
}
.km-materialblack .km-buttongroup > .km-state-active {
color: #3f51b5;
background-color: transparent;
border-color: #3f51b5;
}
.km-materialblack .km-widget.km-navbar .km-buttongroup .km-state-active {
border-color: #00b0ff;
}
.km-materialblack .km-listview-label input[type=radio]:checked,
.km-materialblack .km-listview-label input[type=checkbox]:checked {
background-color: #3f51b5;
border-color: #3f51b5;
}
.km-materialblack .km-content {
color: #ffffff;
background-color: #303030;
}
.km-materialblack .km-navbar,
.km-materialblack .km-navbar .km-view-title,
.km-materialblack .km-navbar .km-button,
.km-materialblack .k-toolbar,
.km-materialblack .k-toolbar .km-button,
.km-materialblack .km-detail,
.km-materialblack .km-footer {
color: #ffffff;
background-color: #3f51b5;
border-color: #3f51b5;
}
.km-materialblack .km-tabstrip .km-button {
color: rgba(255, 255, 255, 0.5);
}
.km-materialblack .km-tabstrip .km-button.km-state-active {
color: #ffffff;
border-color: #00b0ff;
background-color: #3f51b5;
}
.km-materialblack .k-toolbar .km-button,
.km-materialblack .km-popup .k-state-hover,
.km-materialblack .km-popup .k-state-focused,
.km-materialblack .km-popup .k-state-selected,
.km-materialblack .km-popup .k-list-container {
border-color: #3f51b5;
}
.km-materialblack .k-toolbar .km-state-active {
background-color: #283593;
}
.km-materialblack .km-popup .k-popup .k-item.k-state-selected,
.km-materialblack .km-popup .k-popup .k-item.k-state-focused {
color: #ffffff;
background-color: #454545;
}
.km-materialblack .km-popup .k-popup .k-item.k-state-hover {
color: #ffffff;
}
.km-materialblack .km-modalview {
box-shadow: 0 15px 30px 3px rgba(0, 0, 0, 0.3);
}
.km-materialblack .km-modalview .km-navbar {
color: #ffffff;
background-color: #303030;
}
.km-materialblack,
.km-materialblack .km-header,
.km-materialblack .km-pane,
.km-materialblack .km-scroll-header .km-group-title,
.km-materialblack input[type=password],
.km-materialblack input[type=search],
.km-materialblack input[type=number],
.km-materialblack input[type=tel],
.km-materialblack input[type=url],
.km-materialblack input[type=email],
.km-materialblack input[type=text]:not(.k-input),
.km-root .km-materialblack textarea {
background: #ffffff;
outline-color: #ffffff;
}
.km-materialblack input,
.km-materialblack select,
.km-materialblack textarea,
.km-materialblack .k-dropdown .k-input {
color: rgba(0, 0, 0, 0.3);
border-color: #545454;
}
.km-materialblack input[type=password],
.km-materialblack input[type=search],
.km-materialblack input[type=number],
.km-materialblack input[type=tel],
.km-materialblack input[type=url],
.km-materialblack input[type=email],
.km-materialblack input[type=text]:not(.k-input),
.km-root .km-materialblack textarea {
color: rgba(128, 128, 128, 0.3);
border-color: #545454;
}
.km-materialblack input[type=radio],
.km-materialblack input[type=checkbox] {
color: #ffffff;
border-color: #545454;
}
.km-materialblack input[type=month],
.km-materialblack input[type=color],
.km-materialblack input[type=week],
.km-materialblack input[type=date],
.km-materialblack input[type=time],
.km-materialblack input[type=datetime],
.km-materialblack input[type=datetime-local],
.km-materialblack select:not([multiple]),
.km-materialblack .k-dropdown .k-dropdown-wrap {
border-bottom-color: #545454;
background-size: auto 100%;
}
.km-materialblack select:focus,
.km-materialblack textarea:focus,
.km-materialblack.km-pane input:focus,
.km-materialblack li.km-actionsheet-title,
.km-materialblack .k-dropdown .k-state-focused {
border-color: #545454;
}
.km-materialblack select:focus,
.km-materialblack textarea:focus,
.km-materialblack.km-pane input:focus,
.km-materialblack li.km-actionsheet-title,
.km-materialblack .k-dropdown .k-state-focused {
border-color: #3f51b5;
}
.km-materialblack .km-shim,
.km-materialblack .km-popup,
.km-materialblack .k-slider,
.km-materialblack .km-badge,
.km-materialblack .km-switch-on,
.km-materialblack .km-current-page,
.km-materialblack input:focus,
.km-materialblack select:focus,
.km-materialblack textarea:focus,
.km-materialblack input:checked,
.km-materialblack .km-touch-scrollbar,
.km-materialblack input[type=text]:not(.k-input):focus {
color: #ffffff;
}
/* Tablet Styles */
.km-tablet .km-materialblack.km-horizontal .km-navbar .km-button,
.km-tablet .km-materialblack.km-horizontal .km-toolbar .km-button {
margin-top: .2rem;
margin-bottom: .2rem;
}
.km-materialblack .km-view-title {
font-size: 1.25em;
font-weight: 500;
margin-top: 0.5em;
}
.km-root {
font-size: 1em;
}
.km-materialblack .k-popup .km-button {
text-transform: uppercase;
}
/* Button */
.km-materialblack .km-button {
padding: .714em 1.143em;
border-style: solid;
border-width: 0;
border-radius: 3px;
text-transform: uppercase;
}
/* Badges and Details */
.km-materialblack .km-badge,
.km-materialblack .km-detail {
border: 0;
min-width: 1.8em;
height: 1.8em;
line-height: 1.8em;
border-radius: 5em;
}
.km-materialblack .km-detail {
min-width: 1.4em;
height: 1.4em;
line-height: 1.4em;
border-width: 0;
border-style: solid;
}
.km-materialblack .km-detaildisclose {
min-width: 1.4em;
height: 1.4em;
line-height: 1.4em;
}
.km-materialblack .km-detaildisclose:after,
.km-materialblack .km-detaildisclose:before {
left: .1em;
top: 0.35em;
}
.km-materialblack .km-detail .km-icon:before {
display: none;
}
.km-materialblack .km-button {
font-size: .875em;
font-weight: 500;
}
.km-materialblack .km-navbar .km-button {
margin-top: 0;
margin-bottom: 0;
}
.km-materialblack .km-navbar .km-back:before {
content: "\a0";
display: inline-block;
color: currentcolor;
width: .8em;
height: .8em;
border-width: 0;
box-shadow: inset 0.25rem -0.25rem 0 currentcolor;
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-o-transform: rotate(45deg);
transform: rotate(45deg);
}
.km-materialblack .km-navbar .km-back .km-text {
display: none;
}
/* ButtonGroup */
.km-materialblack .km-buttongroup > *:not(:first-child):not(:last-child) {
border-radius: 0;
}
.km-materialblack .km-buttongroup > *:first-child {
border-radius: 3px 0 0 3px;
border-radius: 0;
}
.km-materialblack .km-buttongroup > *:last-child {
border-radius: 0 3px 3px 0;
border-radius: 0;
}
.km-buttongroup {
margin: 0;
}
.km-materialblack .km-buttongroup {
border-bottom-width: 1px;
border-bottom-style: solid;
width: 100%;
text-align: center;
}
.km-materialblack .km-buttongroup .km-button {
padding: 1.429em 1.267em 1.357em;
border-width: 0 0 2px;
display: inline-block;
}
.km-view .km-buttongroup .km-button:last-child {
border-right-width: 0;
}
.km-materialblack .km-widget.km-navbar .km-buttongroup {
font-size: .875em;
line-height: 1em;
margin: 0;
display: inline-block;
top: 0;
height: auto;
margin-bottom: -1px;
}
.km-materialblack .km-widget.km-navbar .km-buttongroup > .km-button {
font-size: .778em;
text-indent: 0;
}
/* NavBar */
.km-materialblack .km-navbar {
border: 0 solid #545454;
}
.km-materialblack .km-header .km-navbar {
border-width: 0 0 0;
}
.km-materialblack .km-footer .km-navbar {
border-width: 0 0 0;
}
.km-materialblack .km-toolbar,
.km-materialblack .km-navbar,
.km-materialblack .km-tabstrip,
.km-materialblack .km-tabstrip .km-button {
border-radius: 0;
}
.km-materialblack .km-navbar .km-view-title {
line-height: 2.8em;
margin-top: 0;
}
.km-materialblack .km-navbar .km-icon + .km-text {
display: none;
}
.km-materialblack .km-navbar .km-no-title {
padding-top: 0;
padding-bottom: 0;
}
/* ToolBar */
.km-materialblack .k-toolbar {
line-height: 2.25em;
}
.km-materialblack .k-toolbar .km-button,
.km-materialblack .k-toolbar .k-split-button {
padding-top: 0;
padding-bottom: 0;
line-height: inherit;
}
.km-materialblack .k-toolbar .k-button-icon .km-icon,
.km-materialblack .k-toolbar .k-button-icontext .km-icon,
.km-materialblack .k-split-button .km-arrowdown {
width: 1em;
height: 1em;
font-size: 1.286em;
vertical-align: middle;
margin-top: -7px;
margin-bottom: -2px;
margin-left: -1px;
margin-right: 1px;
}
.km-materialblack .k-split-button .km-arrowdown {
margin-left: 2px;
margin-right: 1px;
}
.km-materialblack .k-split-button .k-button-icontext {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
.km-materialblack .k-split-button-arrow {
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}
.km-materialblack .km-actionsheet.k-split-container > li > .km-button,
.km-materialblack .km-actionsheet.k-overflow-container > li > .km-button {
min-width: 10em;
text-align: center;
font-size: 1.1em;
border: 0;
border-radius: 0;
}
.km-materialblack .km-actionsheet.k-split-container > li > .km-button {
min-width: 5em;
}
.km-materialblack .k-split-wrapper .km-actionsheet-wrapper,
.km-materialblack .k-overflow-wrapper .km-actionsheet-wrapper {
padding: 1px;
}
html .km-materialblack .k-split-container.km-actionsheet > li,
html .km-materialblack .k-overflow-container.km-actionsheet > li {
margin-top: 0;
margin-bottom: 0;
}
.km-materialblack .k-split-container.km-actionsheet,
.km-materialblack .k-overflow-container.km-actionsheet {
border-top: 0;
}
.km-materialblack .k-toolbar .k-button-icon {
padding: 0 .643em;
}
/* TabStrip */
.km-materialblack .km-tabstrip {
padding: 0;
display: table;
table-layout: fixed;
}
.km-materialblack .km-tabstrip .km-button {
font-size: .7em;
display: table-cell;
border: 0;
}
.km-materialblack .km-tabstrip .km-icon:before {
display: none;
}
.km-materialblack .km-tabstrip .km-button.km-state-active {
border-top-width: 2px;
border-top-style: solid;
}
/* Switch */
.km-materialblack .km-switch {
width: 2.25rem;
height: .875rem;
line-height: .875rem;
overflow: visible;
}
.km-materialblack .km-switch-wrapper {
overflow: hidden;
}
.km-materialblack .km-switch-background,
.km-materialblack .k-slider-selection {
background-position: 4.25em 0;
background-repeat: no-repeat;
background-color: currentcolor;
margin-left: -1.125rem;
}
.km-materialblack .km-switch-container {
padding: 1px 0;
border-width: 0;
overflow: visible;
}
.km-materialblack .km-switch-handle {
width: 1.125em;
height: 1.125em;
margin: -4px 0 0;
border-width: 0;
border-style: solid;
border-radius: 50%;
}
.km-materialblack .km-switch-label-off {
left: 1.5em;
}
.km-materialblack .km-switch-label-on {
left: -2.8em;
}
.km-materialblack .km-switch-label-on,
.km-materialblack .km-switch-label-off {
display: none;
text-shadow: none;
width: 185%;
font-size: 1em;
line-height: 1.5em;
vertical-align: middle;
}
.km-materialblack .km-switch-wrapper,
.km-materialblack .km-switch-container,
.km-materialblack .km-switch-background {
border-radius: 6px;
}
.km-materialblack .km-switch-container,
.km-materialblack .km-switch-wrapper {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
border-width: 0;
border-style: solid;
background-clip: content-box;
}
.km-materialblack .km-switch-background {
width: 150%;
}
/* ListView */
.km-materialblack .km-list > li {
border-style: solid;
border-width: 0 0 0 0;
}
.km-materialblack .km-listinset > li:first-child,
.km-materialblack .km-listgroupinset .km-list > li:first-child {
border-style: solid;
border-width: 0;
border-radius: 0;
}
.km-materialblack .km-listinset > li,
.km-materialblack .km-listgroupinset .km-list > li {
border-width: 0 0 0 0;
}
.km-materialblack .km-listinset > li:last-child,
.km-materialblack .km-listgroupinset .km-list > li:last-child {
border-style: solid;
border-width: 0 0 0 0;
border-radius: 0;
}
.km-materialblack .km-listinset > li:first-child:last-child,
.km-materialblack .km-listgroupinset .km-list > li:first-child:last-child {
border-width: 0;
border-radius: 3px;
}
.km-materialblack .km-listview-link:after {
border-width: .2rem .2rem 0 0;
}
.km-materialblack:not(.km-on-android) .km-listview-link:after {
width: .66rem;
height: .64rem;
border-width: 0;
box-shadow: inset -0.2rem 0.2rem 0;
}
.km-materialblack .km-listinset li:first-child > .km-listview-link,
.km-materialblack .km-listgroupinset li:first-child > .km-listview-link,
.km-materialblack .km-listinset li:first-child > .km-listview-label,
.km-materialblack .km-listgroupinset li:first-child > .km-listview-label {
border-radius: 2px 2px 0 0;
}
.km-materialblack .km-listinset li:last-child > .km-listview-link,
.km-materialblack .km-listgroupinset li:last-child > .km-listview-link,
.km-materialblack .km-listinset li:last-child > .km-listview-label,
.km-materialblack .km-listgroupinset li:last-child > .km-listview-label {
border-radius: 0 0 2px 2px;
}
.km-materialblack .km-listinset li:first-child:last-child > .km-listview-link,
.km-materialblack .km-listgroupinset li:first-child:last-child > .km-listview-link,
.km-materialblack .km-listinset li:first-child:last-child > .km-listview-label,
.km-materialblack .km-listgroupinset li:first-child:last-child > .km-listview-label {
border-radius: 2px;
}
.km-materialblack .km-group-title {
border-style: solid;
border-width: 0 0;
}
.km-materialblack .km-scroll-header .km-group-title {
border-width: 0 0 0;
}
.km-materialblack .km-listgroupinset .km-group-title {
border: 0;
background: none;
}
.km-materialblack .km-listview .km-switch {
margin-top: -0.9rem;
}
/* Filter box */
.km-materialblack .km-listview-wrapper form .km-filter-wrap > input {
font-size: 1.2em;
padding: .3em 1.8em;
}
.km-materialblack .km-filter-wrap:before {
margin: 0.05em -1.3em 0 0.3em;
}
.km-materialblack .km-filter-reset {
margin: 0.05em 0 0 -2em;
}
.km-materialblack .km-filter-reset .km-clear:after {
content: "\e038";
}
.km-materialblack .km-filter-wrap > input {
border-radius: 3px;
border-width: 0;
border-style: solid;
}
.km-materialblack .km-filter-wrap > input:focus {
border-width: 0;
border-style: solid;
}
.km-list > li {
padding: .750em .7em .688em;
}
.km-materialblack .km-group-container {
border-bottom-width: 1px;
border-bottom-style: solid;
}
.km-materialblack .km-listinset,
.km-materialblack .km-listgroupinset {
margin: 0.643em;
}
.km-materialblack .km-group-title {
text-indent: .4em;
}
.km-materialblack .km-listgroupinset .km-group-title {
margin-top: 0;
font-weight: 500;
}
.km-materialblack .km-listview .km-text {
font-size: .875em;
line-height: 1em;
padding: 1.429em 0 1.429em;
}
.km-materialblack .km-list .km-icon {
font-size: 1.5em;
margin-right: 1.333em;
vertical-align: middle;
}
.km-materialblack .km-icon:before,
.km-materialblack .km-contactadd:before,
.km-materialblack .km-rowdelete:before,
.km-materialblack .km-rowinsert:before,
.km-materialblack .km-detaildisclose:before {
margin-top: 0;
}
.km-widget .km-listview-link,
.km-widget .km-listview-label {
margin: -0.75em -0.7em -0.688em;
padding: .750em .7em .688em;
}
.km-materialblack .km-detail {
width: 2em;
height: 2em;
}
.km-materialblack .km-detaildisclose {
font-size: 0.857em;
}
/* ScrollView */
.km-materialblack .km-pages {
padding-top: .5em;
}
.km-materialblack .km-pages li {
border-radius: 1em;
}
/* Slider */
.km-materialblack .k-slider .k-draghandle,
.km-materialblack .k-slider .k-draghandle:hover {
border: 0;
border-radius: 5em;
}
.km-materialblack .k-slider-track {
margin: -0.5em 0.5em 0 0;
border-radius: .5em;
}
.km-materialblack .k-slider-selection {
margin-left: 0;
}
/* Forms */
.km-materialblack .km-list input[type=password],
.km-materialblack .km-list input[type=search],
.km-materialblack .km-list input[type=number],
.km-materialblack .km-list input[type=tel],
.km-materialblack .km-list input[type=url],
.km-materialblack .km-list input[type=email],
.km-materialblack .km-list input[type=month],
.km-materialblack .km-list input[type=color],
.km-materialblack .km-list input[type=week],
.km-materialblack .km-list input[type=date],
.km-materialblack .km-list input[type=time],
.km-materialblack .km-list input[type=datetime],
.km-materialblack .km-list input[type=datetime-local],
.km-materialblack .km-list input[type=text]:not(.k-input),
.km-materialblack .km-list select:not([multiple]),
.km-materialblack .km-list .k-dropdown-wrap,
.km-materialblack .km-list textarea {
appearance: none;
-moz-appearance: none;
-webkit-appearance: none;
font-size: 1.1rem;
min-width: 6em;
padding: .4em;
outline: none;
background: transparent;
}
.km-materialblack .km-list .k-dropdown-wrap {
padding: .2em;
}
.km-materialblack .km-list .k-dropdown {
margin-top: -1.05em;
font-weight: normal;
}
.km-materialblack .km-list input[type=color],
.km-materialblack .km-list input[type=week],
.km-materialblack .km-list input[type=date],
.km-materialblack .km-list input[type=time],
.km-materialblack .km-list input[type=month],
.km-materialblack .km-list input[type=datetime],
.km-materialblack .km-list input[type=datetime-local],
.km-materialblack .km-list .k-dropdown {
text-align: left;
}
.km-materialblack .km-list .k-dropdown .k-dropdown-wrap {
display: block;
border-radius: 0;
background: transparent;
box-shadow: none;
-webkit-box-shadow: none;
}
/* Checkboxes and Radios */
.km-materialblack .km-listview-label input[type=checkbox] {
margin-top: -0.7em;
}
.km-materialblack .km-listview-label input[type=radio],
.km-materialblack .km-listview-label input[type=checkbox] {
border-width: 0;
border-style: solid;
width: 1.2em;
height: 1.2em;
border-radius: 3px;
}
.km-materialblack .km-listview-label input[type=radio] {
width: 1.2em;
height: 1.2em;
border-radius: 1em;
}
.km-materialblack .km-listview-label input[type=checkbox]:after {
content: "\a0";
display: block;
width: 90%;
height: 76%;
-webkit-transform: scale(0.9, 1);
-moz-transform: scale(0.9, 1);
-ms-transform: scale(0.9, 1);
-o-transform: scale(0.9, 1);
transform: scale(0.9, 1);
-webkit-transform-origin: 10% 50%;
-moz-transform-origin: 10% 50%;
-ms-transform-origin: 10% 50%;
-o-transform-origin: 10% 50%;
transform-origin: 10% 50%;
}
.km-materialblack .km-listview-label input[type=checkbox]:checked:after {
font-size: 1.2em;
}
.km-materialblack .km-listview-label input[type=radio]:after {
color: transparent;
}
.km-materialblack .km-list .km-icon.km-check {
font-size: 1.071em;
}
.km-materialblack input[type=password],
.km-materialblack input[type=search],
.km-materialblack input[type=number],
.km-materialblack input[type=tel],
.km-materialblack input[type=url],
.km-materialblack input[type=email],
.km-materialblack input[type=month],
.km-materialblack input[type=color],
.km-materialblack input[type=week],
.km-materialblack input[type=date],
.km-materialblack input[type=time],
.km-materialblack input[type=datetime],
.km-materialblack input[type=datetime-local],
.km-materialblack input[type=text]:not(.k-input),
.km-materialblack select:not([multiple]),
.km-materialblack .k-dropdown,
.km-materialblack textarea {
padding: .4em;
border-radius: 0;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.km-materialblack .km-list input[type=password],
.km-materialblack .km-list input[type=search],
.km-materialblack .km-list input[type=number],
.km-materialblack .km-list input[type=tel],
.km-materialblack .km-list input[type=url],
.km-materialblack .km-list input[type=email],
.km-materialblack .km-list input[type=month],
.km-materialblack .km-list input[type=color],
.km-materialblack .km-list input[type=week],
.km-materialblack .km-list input[type=date],
.km-materialblack .km-list input[type=time],
.km-materialblack .km-list input[type=datetime],
.km-materialblack .km-list input[type=datetime-local],
.km-materialblack .km-list input[type=text]:not(.k-input),
.km-materialblack .km-list select:not([multiple]),
.km-materialblack .km-list .k-dropdown {
margin-top: -1.05em;
font-size: 1em;
}
.km-native-scrolling .km-materialblack .km-list input[type=password],
.km-native-scrolling .km-materialblack .km-list input[type=search],
.km-native-scrolling .km-materialblack .km-list input[type=number],
.km-native-scrolling .km-materialblack .km-list input[type=tel],
.km-native-scrolling .km-materialblack .km-list input[type=url],
.km-native-scrolling .km-materialblack .km-list input[type=email],
.km-native-scrolling .km-materialblack .km-list input[type=month],
.km-native-scrolling .km-materialblack .km-list input[type=color],
.km-native-scrolling .km-materialblack .km-list input[type=week],
.km-native-scrolling .km-materialblack .km-list input[type=date],
.km-native-scrolling .km-materialblack .km-list input[type=time],
.km-native-scrolling .km-materialblack .km-list input[type=datetime],
.km-native-scrolling .km-materialblack .km-list input[type=datetime-local],
.km-native-scrolling .km-materialblack .km-list input[type=text]:not(.k-input),
.km-native-scrolling .km-materialblack .km-list select:not([multiple]),
.km-native-scrolling .km-materialblack .km-list textarea {
position: static;
float: right;
margin-top: 0;
margin-bottom: -0.2em;
}
.km-materialblack input[type=file] {
padding: .25em;
outline: none;
}
.km-materialblack textarea {
outline: none;
border-width: 0 0 1px;
}
.km-materialblack .k-dropdown .k-input {
border-radius: 0;
}
.km-materialblack input[type=password],
.km-materialblack input[type=search],
.km-materialblack input[type=number],
.km-materialblack input[type=tel],
.km-materialblack input[type=url],
.km-materialblack input[type=email],
.km-materialblack input[type=text]:not(.k-input) {
outline-width: 2px;
outline-style: solid;
outline-offset: -5px;
border-width: 0 0 1px;
border-style: solid;
}
.km-materialblack input[type=password]:focus,
.km-materialblack input[type=search]:focus,
.km-materialblack input[type=number]:focus,
.km-materialblack input[type=tel]:focus,
.km-materialblack input[type=url]:focus,
.km-materialblack input[type=email]:focus,
.km-materialblack input[type=text]:not(.k-input):focus,
.km-materialblack textarea:focus {
outline-offset: -6px;
}
.km-materialblack input[type=month],
.km-materialblack input[type=color],
.km-materialblack input[type=week],
.km-materialblack input[type=date],
.km-materialblack input[type=time],
.km-materialblack input[type=datetime],
.km-materialblack input[type=datetime-local],
.km-materialblack select:not([multiple]),
.km-materialblack .k-dropdown .k-dropdown-wrap {
border-width: 0 0 1px;
border-style: solid;
margin-bottom: 1px;
background-clip: border-box;
}
.km-materialblack input[type=password]:focus,
.km-materialblack input[type=search]:focus,
.km-materialblack input[type=number]:focus,
.km-materialblack input[type=tel]:focus,
.km-materialblack input[type=url]:focus,
.km-materialblack input[type=email]:focus,
.km-materialblack input[type=text]:not(.k-input):focus {
border-width: 0 0 2px;
}
.km-materialblack .k-slider-horizontal {
margin-top: -0.5em;
height: .1em;
}
.km-materialblack .k-slider .k-draghandle,
.km-materialblack .k-slider .k-draghandle:hover {
width: .857em;
height: .857em;
box-shadow: none;
-webkit-box-shadow: none;
border-radius: 5em;
border: 0;
}
.km-materialblack .k-slider .k-draghandle.k-state-selected {
width: 1.286em;
height: 1.286em;
top: -1px;
}
.km-materialblack .k-slider-horizontal .k-draghandle {
top: 2px;
}
.km-materialblack .k-slider-vertical .k-draghandle {
left: -0.5em;
}
.km-materialblack .k-slider-horizontal .k-slider-selection {
margin-top: 0;
}
.km-materialblack .k-slider-vertical .k-slider-selection {
margin-left: -0.1em;
width: .2em;
}
.km-materialblack .k-slider-horizontal .k-slider-track {
height: .143em;
}
.km-materialblack .k-slider-vertical .k-slider-track {
width: .143em;
}
.km-materialblack .k-slider-selection {
margin-left: 0;
}
.km-materialblack .k-slider .k-draghandle,
.km-materialblack .k-slider .k-draghandle:hover {
margin-top: -0.5em;
padding: 0;
background-clip: content-box;
-webkit-background-clip: content-box;
}
.km-materialblack .k-slider .k-draghandle:before {
content: "\a0";
display: block;
margin-top: -0.5em;
margin-left: -0.5em;
width: 100%;
height: 100%;
opacity: .3;
border-radius: 5em;
padding: .5em;
margin-bottom: .5em;
}
.km-materialblack .k-slider .k-draghandle:active:before {
opacity: .4;
}
.km-materialblack .km-popup .k-popup .k-item.k-state-hover {
cursor: pointer;
}
/* ActionSheet */
.km-materialblack .km-actionsheet > li > a {
font-weight: normal;
text-align: left;
}
.km-materialblack .km-actionsheet > li > a {
padding: .7em 1em;
display: block;
margin: 0;
}
.km-materialblack .km-actionsheet > li:last-child > a {
border: 0;
}
.km-materialblack .km-shim li.km-actionsheet-title,
.km-materialblack .km-popup li.km-actionsheet-title {
display: none;
}
.km-materialblack .km-actionsheet-wrapper.km-popup {
padding: 2px 0;
}
.km-materialblack .km-widget.km-actionsheet-wrapper {
width: 100%;
box-shadow: none;
-webkit-box-shadow: none;
border: 0;
padding: .55em 0;
}
/* PopOver */
.km-materialblack .km-popup.km-pane {
border: 5px solid transparent;
}
.km-materialblack .km-popup.km-pane .km-navbar,
.km-materialblack .km-popup.km-pane .km-toolbar,
.km-materialblack .km-popup.km-pane .km-tabstrip {
background: none;
}
.km-materialblack .km-popup.km-pane .km-header {
padding: 0 5px;
margin: -5px -5px 2px;
border-radius: 3px 3px 0 0;
-webkit-margin-collapse: separate;
}
.km-materialblack .km-popup-arrow:after {
border-color: rgba(0, 0, 0, 0.5) transparent;
border-style: solid;
border-width: 0 15px 15px;
}
.km-materialblack .km-down .km-popup-arrow:before {
margin-top: -1px;
}
.km-materialblack .km-up .km-popup-arrow:after {
border-width: 15px 15px 0 15px;
}
.km-materialblack .km-left .km-popup-arrow:after {
border-width: 15px 0 15px 15px;
}
.km-materialblack .km-right .km-popup-arrow:after {
border-width: 15px 15px 15px 0;
}
.km-materialblack .km-modalview {
border-radius: 2px;
}
.km-materialblack .km-modalview .km-content {
line-height: 1.5em;
font-size: 16px;
padding: 0 1.438em 1.438em;
}
.km-materialblack .km-modalview .km-content .km-button {
float: right;
}
.km-scroll-container:after {
content: "";
display: block;
clear: both;
}
.km-materialblack .km-modalview .km-navbar .km-button {
margin-top: .875em;
}
.km-materialblack .km-modalview .km-navbar .km-rightitem {
right: 1.4em;
}
/* Scroller */
.km-materialblack .km-touch-scrollbar {
border: 0;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
border-radius: 1em;
}
.km-touch-scrollbar {
width: .143em;
}
/* SplitView */
.km-on-blackberry.km-blackberry6 .km-view .km-icon,
.km-on-blackberry.km-blackberry7 .km-view .km-icon,
.km-on-blackberry.km-ios .km-view .km-icon,
.km-pane.km-on-android .km-view .km-icon,
.km-pane.km-on-meego .km-view .km-icon {
background: none;
}
|
css/minesweeper.css | aohost/aohost.github.io | .minesweeper-game div {
line-height: 0;
font-size: 0;
float: left;
}
.minesweeper-board {
display: inline-block;
font-family: Arial;
background-color: silver;
}
.minesweeper-medium {
width: 276px;
height: 318px;
margin: 50px auto;
}
.minesweeper-board div {
background-image: url(../images/minesweeper/sprite100.gif);
}
.minesweeper-gamepiece {
min-width: 16px;
min-height: 16px;
max-width: 16px;
max-height: 16px;
font-size: 0px;
}
.minesweeper-unrevealed {
background-position: 0px -39px;
}
.minesweeper-flagged {
background-position: -16px -39px;
}
.minesweeper-mine {
background-position: -64px -39px;
}
.minesweeper-mine-smiley {
background-image: url("../smiley-small.png");
}
.minesweeper-0 {
background-position: 0px -23px;
}
.minesweeper-1 {
background-position: -16px -23px;
}
.minesweeper-2 {
background-position: -32px -23px;
}
.minesweeper-3 {
background-position: -48px -23px;
}
.minesweeper-4 {
background-position: -64px -23px;
}
.minesweeper-5 {
background-position: -80px -23px;
}
.minesweeper-6 {
background-position: -96px -23px;
}
.minesweeper-7 {
background-position: -112px -23px;
}
.minesweeper-8 {
background-position: -128px -23px;
}
.minesweeper-border-jointleft {
background-position: -56px -81px;
width: 10px;
height: 10px
}
.minesweeper-border-jointright {
background-position: -66px -81px;
width: 10px;
height: 10px
}
.minesweeper-border-horizontal {
background-position: -40px -81px;
width: 16px;
height: 10px;
}
.minesweeper-border-vertical {
background-position: -134px -39px;
width: 10px;
height: 16px;
}
.minesweeper-border-vertical-long {
background-position: -134px -39px;
width: 10px;
height: 32px;
}
.minesweeper-border-bottomleft {
background-position: -20px -81px;
width: 10px;
height: 10px;
}
.minesweeper-border-bottomright {
background-position: -30px -81px;
width: 10px;
height: 10px;
}
.minesweeper-border-topleft {
background-position: 0px -81px;
width: 10px;
height: 10px;
}
.minesweeper-border-topright {
background-position: -10px -81px;
width: 10px;
height: 10px;
}
.minesweeper-time-0 {
background-position: 0 0;
width: 13px;
height: 23px;
}
.minesweeper-time-1 {
background-position: -13px 0;
width: 13px;
height: 23px;
}
.minesweeper-time-2 {
background-position: -26px 0;
width: 13px;
height: 23px;
}
.minesweeper-time-3 {
background-position: -39px 0;
width: 13px;
height: 23px;
}
.minesweeper-time-4 {
background-position: -52px 0;
width: 13px;
height: 23px;
}
.minesweeper-time-5 {
background-position: -65px 0;
width: 13px;
height: 23px;
}
.minesweeper-time-6 {
background-position: -78px 0;
width: 13px;
height: 23px;
}
.minesweeper-time-7 {
background-position: -91px 0;
width: 13px;
height: 23px;
}
.minesweeper-time-8 {
background-position: -104px 0;
width: 13px;
height: 23px;
}
.minesweeper-time-9 {
background-position: -117px 0;
width: 13px;
height: 23px;
}
.minesweeper-time-blank {
background-position: -130px 0;
width: 13px;
height: 23px;
}
.minesweeper-board #mines_hundreds {
margin: 4px 0 5px 6px;
}
.minesweeper-board #mines_tens {
margin: 4px 0 5px 0px;
}
.minesweeper-board #mines_ones {
margin: 4px 0 5px 0px;
}
.minesweeper-board #seconds_hundreds {
margin: 4px 0 5px 0;
}
.minesweeper-board #seconds_tens {
margin: 4px 0 5px 0;
}
.minesweeper-board #seconds_ones {
margin: 4px 6px 5px 0;
}
.minesweeper-board #face {
margin-top: 3px;
margin-bottom: 3px;
}
.minesweeper-board .minesweeper-face-smile {
background-position: 0px -55px;
width: 26px;
height: 26px;
}
.minesweeper-board .minesweeper-face-dead {
background-position: -78px -55px;
width: 26px;
height: 26px;
}
.minesweeper-board .minesweeper-face-oooh {
background-position: -52px -55px;
width: 26px;
height: 26px;
}
.minesweeper-board .minesweeper-face-win {
background-position: -104px -55px;
width: 26px;
height: 26px;
} |
commute_together/commute_together/static/style.css | DimaWittmann/commute-together | .autocomplete-suggestions { border: 1px solid #999; background: #FFF; overflow: auto; }
.autocomplete-suggestion { padding: 2px 5px; white-space: nowrap; overflow: hidden; }
.autocomplete-selected { background: #F0F0F0; }
.autocomplete-suggestions strong { font-weight: normal; color: #3399FF; }
.autocomplete-group { padding: 2px 5px; }
.autocomplete-group strong { display: block; border-bottom: 1px solid #000; }
.label{
font-size: 100%;
display: block;
padding: 6px 12px;
}
.jumbotron h1{
text-align: center;
} |
kettle-data-integration/docs/api/org/pentaho/di/trans/steps/singlethreader/package-summary.html | ColFusion/PentahoKettle | <!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_27) on Wed Nov 21 16:03:52 EST 2012 -->
<TITLE>
org.pentaho.di.trans.steps.singlethreader
</TITLE>
<META NAME="date" CONTENT="2012-11-21">
<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="org.pentaho.di.trans.steps.singlethreader";
}
}
</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="../../../../../../org/pentaho/di/trans/steps/setvariable/package-summary.html"><B>PREV PACKAGE</B></A>
<A HREF="../../../../../../org/pentaho/di/trans/steps/socketreader/package-summary.html"><B>NEXT PACKAGE</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../index.html?org/pentaho/di/trans/steps/singlethreader/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 org.pentaho.di.trans.steps.singlethreader
</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="../../../../../../org/pentaho/di/trans/steps/singlethreader/SingleThreader.html" title="class in org.pentaho.di.trans.steps.singlethreader">SingleThreader</A></B></TD>
<TD>Execute a mapping: a re-usuable transformation</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD WIDTH="15%"><B><A HREF="../../../../../../org/pentaho/di/trans/steps/singlethreader/SingleThreaderData.html" title="class in org.pentaho.di.trans.steps.singlethreader">SingleThreaderData</A></B></TD>
<TD> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD WIDTH="15%"><B><A HREF="../../../../../../org/pentaho/di/trans/steps/singlethreader/SingleThreaderMeta.html" title="class in org.pentaho.di.trans.steps.singlethreader">SingleThreaderMeta</A></B></TD>
<TD>Meta-data for the Mapping step: contains name of the (sub-)transformation to
execute</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="../../../../../../org/pentaho/di/trans/steps/setvariable/package-summary.html"><B>PREV PACKAGE</B></A>
<A HREF="../../../../../../org/pentaho/di/trans/steps/socketreader/package-summary.html"><B>NEXT PACKAGE</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../index.html?org/pentaho/di/trans/steps/singlethreader/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>
|
Template/profil.html | UMBTeamProject/UMBTeamProject | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<title>Projekt</title>
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/carousel.css" rel="stylesheet">
<link href="css/cover.css" rel="stylesheet">
<!-- Add custom CSS here -->
<link href="css/portfolio.css" rel="stylesheet">
<link href="font-awesome/css/font-awesome.min.css" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="col-md-3 col-xs-4">
<div class="masthead-brand">
<a href="./"><h1>
<img class="img-circle" src="http://placehold.it/100x100" alt="logo" > Projekt</h1>
</a>
</div>
</div>
<div class="col-md-2"></div>
<div class="col-md-7 col-xs-12">
<ul class="nav masthead-nav">
<li><a href="projekt.html"><span class="glyphicon glyphicon-home"></span> Projekty</a>
</li>
<li><a href="ulohy.html"><span class="glyphicon glyphicon-list"></span> Úlohy</a>
</li>
<li><a href="profil.html"><span class="glyphicon glyphicon-user"></span> Profil</a>
</li>
<li><a href="logout.html"><span class="glyphicon glyphicon-remove"></span> Odlhásenie </a>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Karty GitHub <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="about.html">Credits #9</a>
</li>
<li><a href="reg.html">Registracia #12</a>
</li>
<li><a href="index_login.html">Index_Login</a>
</li>
</ul>
</li>
</ul>
</div>
</div>
<div class="container"> <!-- container -->
<div class="row"> <!-- row -->
<div class="col-lg-12">
<h2 class="page-header">Full Name
</h2>
<ol class="breadcrumb">
<li><a href="index.html">Home</a>
</li>
<li class="active">Profil</li>
</ol>
</div>
<div class="col-sm-2">
<img class="img-responsive" src="http://placehold.it/200x200">
</div>
<div class="col-sm-4">
<p>Service two description. Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Nunc placerat diam quis nisl vestibulum dignissim. In hac habitasse platea dictumst.
Service two description. Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Nunc placerat diam quis nisl vestibulum dignissim. In hac habitasse platea dictumst.
</p>
</div>
<div class="col-sm-2">
</div>
<div class="col-sm-4">
<div class="panel panel-primary">
<div class="panel-heading">
<h2 class="panel-title">Skúsenosti</h2>
</div>
<div class="panel-body">
<p>Service three description. Lorem ipsum dolor sit amet,s nisl vestibulum dignissim. In hac habitasse platea dictumst.</p>
</div>
</div>
</div>
</div> <!-- row -->
<div class="row"> <!-- row -->
<div class="prof-header">
<h2>Referencie</h2>
</div>
<div class="col-md-3 col-sm-4">
<div class="thumbnails thumbnail-style">
<div class="thumbnail-img">
<img class="img-circle" src="http://placehold.it/200x200" alt="">
</div>
<div class="caption">
<h4><a class="hover-effect" href="#">Project One</a></h4>
<p>Donec id elit non mi porta gravida at eget metus. Fusce dapibus, justo sit amet risus etiam porta sem.</p>
<a class="btn-more hover-effect" href="#">read more +</a>
</div>
</div>
</div>
<div class="col-md-3 col-sm-4">
<div class="thumbnails thumbnail-style">
<div class="thumbnail-img">
<img class="img-circle" src="http://placehold.it/200x200" alt="">
</div>
<div class="caption">
<h4><a class="hover-effect" href="#">Project 2</a></h4>
<p>Donec id elit non mi porta gravida at eget metus. Fusce dapibus, justo sit amet risus etiam porta sem.</p>
<a class="btn-more hover-effect" href="#">read more +</a>
</div>
</div>
</div>
<div class="col-md-3 col-sm-4">
<div class="thumbnails thumbnail-style">
<div class="thumbnail-img">
<img class="img-circle" src="http://placehold.it/200x200" alt="">
</div>
<div class="caption">
<h4><a class="hover-effect" href="#">Project 3</a></h4>
<p>Donec id elit non mi porta gravida at eget metus. Fusce dapibus, justo sit amet risus etiam porta sem.</p>
<a class="btn-more hover-effect" href="#">read more +</a>
</div>
</div>
</div>
<div class="col-md-3 col-sm-4">
<div class="thumbnails thumbnail-style">
<div class="thumbnail-img">
<img class="img-circle" src="http://placehold.it/200x200" alt="">
</div>
<div class="caption">
<h4><a class="hover-effect" href="#">Project 4</a></h4>
<p>Donec id elit non mi porta gravida at eget metus. Fusce dapibus, justo sit amet risus etiam porta sem.</p>
<a class="btn-more hover-effect" href="#">read more +</a>
</div>
</div>
</div>
</div> <!-- row -->
<div class="row"> <!-- row -->
<div class="prof-header">
<h2>Zoznam projektov</h2>
</div>
<div class="col-md-12">
<ul id="myTab" class="nav nav-tabs">
<li class="active"><a href="#moje" data-toggle="tab">Moje</a>
</li>
<li><a href="#all" data-toggle="tab">Všetky</a>
</li>
</ul>
<div class="tab-content">
<div class="tab-pane active" id="moje">
<div class="thumbnail">
<div class="caption">
<p class="proj">Projekt 1337 <small>13.5 2015</small></p>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque porta ac augue bibendum facilisis. Nulla ut vulputate metus. Mauris at lectus vel risus feugiat faucibus eu quis ante. Nulla consequat nibh a quam luctus pretium. Etiam sed vestibulum sem, vel viverra enim. Vestibulum sodales ligula magna,</p>
<a href="projekt_d.html" class="btn btn-primary" role="button">Get In!</a>
</div>
</div>
<div class="thumbnail">
<div class="caption">
<p class="proj">Projekt 1 <small>13.5 2015</small></p>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque porta ac augue bibendum facilisis. Nulla ut vulputate metus. Mauris at lectus vel risus feugiat faucibus eu quis ante. Nulla consequat nibh a quam luctus pretium. Etiam sed vestibulum sem, vel viverra enim. Vestibulum sodales ligula magna,</p>
<a href="projekt_d.html" class="btn btn-primary" role="button">Get In!</a>
</div>
</div>
</div>
<div class="tab-pane" id="all">
<div class="thumbnail">
<div class="caption">
<p class="proj">Projekt 4 <small>13.5 2015</small></p>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque porta ac augue bibendum facilisis. Nulla ut vulputate metus. Mauris at lectus vel risus feugiat faucibus eu quis ante. Nulla consequat nibh a quam luctus pretium. Etiam sed vestibulum sem, vel viverra enim. Vestibulum sodales ligula magna,</p>
<a href="projekt_d.html" class="btn btn-primary" role="button">Get In!</a>
</div>
</div>
<div class="thumbnail">
<div class="caption">
<<p class="proj">Projekt 3 <small>13.5 2015</small></p>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque porta ac augue bibendum facilisis. Nulla ut vulputate metus. Mauris at lectus vel risus feugiat faucibus eu quis ante. Nulla consequat nibh a quam luctus pretium. Etiam sed vestibulum sem, vel viverra enim. Vestibulum sodales ligula magna,</p>
<a href="projekt_d.html" class="btn btn-primary" role="button">Get In!</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div> <!-- row -->
</div> <!-- container -->
<!-- Footer -->
<footer>
<div class="container">
<div class="row">
<div class="col-md-4 col-xs-6">
<div class="headline"><h2>About Us</h2></div>
</div>
<div class="col-md-4 col-xs-6">
<div class="headline"><h2>Feed</h2></div>
<ul class="list-inline">
<li><a href="#"><i class="fa fa-facebook fa-3x"></a></i>
</li>
<li><i class="fa fa-twitter fa-3x"></i>
</li>
<li><i class="fa fa-dribbble fa-3x"></i>
</li>
</ul>
</div>
<div class="col-md-4 col-xs-6">
<div id="login" class="headline"><h2>login in</h2></div>
<form class="form-signin" role="form">
<h2 class="form-signin-heading">Please log in</h2>
<input type="email" class="form-control" placeholder="Email address" required="" >
<input type="password" class="form-control" placeholder="Password" required="">
<label class="checkbox">
<input type="checkbox" value="remember-me"> Remember me
</label>
<button class="btn btn-lg btn-primary btn-block" type="submit">Sign in</button>
</form>
</div>
<div class="col-md-12 col-xs-12">
<div class="top-scroll">
<a href="#top">
<span class="glyphicon glyphicon-chevron-up">
<strong>Top</strong>
</span>
</a>
<br />
</div>
<hr>
<p>Copyright © Company 2013</p>
</div>
</div>
</div>
</footer>
<!-- /Footer -->
<!-- JavaScript -->
<script src="js/jquery-1.10.2.js"></script>
<script src="js/bootstrap.js"></script>
<script src="js/modern-business.js"></script>
<!-- Custom JavaScript for the Side Menu and Smooth Scrolling -->
<script>
$("#menu-close").click(function(e) {
e.preventDefault();
$("#sidebar-wrapper").toggleClass("active");
});
</script>
<script>
$("#menu-toggle").click(function(e) {
e.preventDefault();
$("#sidebar-wrapper").toggleClass("active");
});
</script>
<script>
$(function() {
$('a[href*=#]:not([href=#])').click(function() {
if (location.pathname.replace(/^\//, '') == this.pathname.replace(/^\//, '') || location.hostname == this.hostname) {
var target = $(this.hash);
target = target.length ? target : $('[name=' + this.hash.slice(1) + ']');
if (target.length) {
$('html,body').animate({
scrollTop: target.offset().top
}, 1000);
return false;
}
}
});
});
</script>
<script>
$('#myTab a').click(function (e) {
e.preventDefault()
$(this).tab('show')
})
</script>
</body>
</html>
|
_includes/social-links.html | FionaLu/FionaLu.github.io | <!-- <hr class="hr-line">
<h3 class="title" style="font-size:30px;">
{% if site.email %}<a class="social-btn" href="mailto:{{ site.email }}" target="_blank" rel="noopener noreferrer"><i class="fa fa-fw fa-envelope-square"></i></a>{% endif %}
{% if site.twitter %}<a class="social-btn" href="http://twitter.com/{{ site.twitter }}" target="_blank" rel="noopener noreferrer"><i class="fa fa-fw fa-twitter-square"></i></a>{% endif %}
{% if site.facebook %}<a class="social-btn" href="http://facebook.com/{{ site.facebook }}" target="_blank" rel="noopener noreferrer"><i class="fa fa-fw fa-facebook-square"></i></a>{% endif %}
{% if site.google.plus %}<a class="social-btn" href="http://plus.google.com/+{{ site.google.plus }}" target="_blank" rel="noopener noreferrer"><i class="fa fa-fw fa-google-plus-square"></i></a>{% endif %}
{% if site.linkedin %}<a class="social-btn" href="http://linkedin.com/in/{{ site.linkedin }}" target="_blank" rel="noopener noreferrer"><i class="fa fa-fw fa-linkedin-square"></i></a>{% endif %}
{% if site.xing %}<a class="social-btn" href="http://www.xing.com/profile/{{ site.xing }}" target="_blank" rel="noopener noreferrer"><i class="fa fa-fw fa-xing-square"></i></a>{% endif %}
{% if site.instagram %}<a class="social-btn" href="http://instagram.com/{{ site.instagram }}" target="_blank" rel="noopener noreferrer"><i class="fa fa-fw fa-instagram"></i></a>{% endif %}
{% if site.tumblr %}<a class="social-btn" href="http://{{ site.tumblr }}.tumblr.com" target="_blank" rel="noopener noreferrer"><i class="fa fa-fw fa-tumblr-square"></i></a>{% endif %}
{% if site.github %}<a class="social-btn" href="http://github.com/{{ site.github }}" target="_blank" rel="noopener noreferrer"><i class="fa fa-fw fa-github"></i></a>{% endif %}
{% if site.stackoverflow %}<a class="social-btn" href="http://stackoverflow.com/users/{{ site.stackoverflow }}" target="_blank" rel="noopener noreferrer"><i class="fa fa-fw fa-stack-overflow"></i></a>{% endif %}
{% if site.lastfm %}<a class="social-btn" href="http://lastfm.com/user/{{ site.lastfm }}" target="_blank" rel="noopener noreferrer"><i class="fa fa-fw fa-music"></i></a>{% endif %}
{% if site.dribbble %}<a class="social-btn" href="http://dribbble.com/{{ site.dribbble }}" target="_blank" rel="noopener noreferrer"><i class="fa fa-fw fa-dribbble"></i></a>{% endif %}
{% if site.pinterest %}<a class="social-btn" href="http://www.pinterest.com/{{ site.pinterest }}" target="_blank" rel="noopener noreferrer"><i class="fa fa-fw fa-pinterest"></i></a>{% endif %}
{% if site.foursquare %}<a class="social-btn" href="http://foursquare.com/{{ site.foursquare }}" target="_blank" rel="noopener noreferrer"><i class="fa fa-fw fa-foursquare"></i></a>{% endif %}
{% if site.steam %}<a class="social-btn" href="http://steamcommunity.com/id/{{ site.steam }}" target="_blank" rel="noopener noreferrer"><i class="fa fa-fw fa-steam-square"></i></a>{% endif %}
{% if site.youtube %}<a class="social-btn" href="https://youtube.com/user/{{ site.youtube }}" target="_blank" rel="noopener noreferrer"><i class="fa fa-fw fa-youtube-square"></i></a>{% endif %}
{% if site.soundcloud %}<a class="social-btn" href="http://soundcloud.com/{{ site.soundcloud }}" target="_blank" rel="noopener noreferrer"><i class="fa fa-fw fa-soundcloud"></i></a>{% endif %}
{% if site.weibo %}<a class="social-btn" href="http://www.weibo.com/{{ site.weibo }}" target="_blank" rel="noopener noreferrer"><i class="fa fa-fw fa-weibo"></i></a>{% endif %}
{% if site.flickr %}<a class="social-btn" href="http://www.flickr.com/{{ site.flickr }}" target="_blank" rel="noopener noreferrer"><i class="fa fa-fw fa-flickr"></i></a>{% endif %}
{% if site.codepen %}<a class="social-btn" href="http://codepen.io/{{ site.codepen }}" target="_blank" rel="noopener noreferrer"><i class="fa fa-fw fa-codepen"></i></a>{% endif %}
{% if site.keybase %}<a class="social-btn" href="https://keybase.io/{{ site.keybase }}" target="_blank" rel="noopener noreferrer"><i class="fa fa-fw fa-key"></i></a>{% endif %}
{% if site.xmpp %}<a class="social-btn" href="xmpp:{{ site.xmpp }}" target="_blank" rel="noopener noreferrer"><i class="fa fa-fw fa-lightbulb-o"></i></a>{% endif %}
{% if site.hackernews %}<a class="social-btn" href="https://news.ycombinator.com/user?id={{ site.hackernews }}" target="_blank" rel="noopener noreferrer"><i class="fa fa-fw fa-hacker-news"></i></a>{% endif %}
</h3>
--> |
docs/_modules/pymatgen/io/gaussian.html | czhengsci/pymatgen |
<!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="X-UA-Compatible" content="IE=Edge" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>pymatgen.io.gaussian — pymatgen 2018.3.14 documentation</title>
<link rel="stylesheet" href="../../../_static/proBlue.css" type="text/css" />
<link rel="stylesheet" href="../../../_static/pygments.css" type="text/css" />
<script type="text/javascript" src="../../../_static/documentation_options.js"></script>
<script type="text/javascript" src="../../../_static/jquery.js"></script>
<script type="text/javascript" src="../../../_static/underscore.js"></script>
<script type="text/javascript" src="../../../_static/doctools.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
<link rel="shortcut icon" href="../../../_static/favicon.ico"/>
<link rel="index" title="Index" href="../../../genindex.html" />
<link rel="search" title="Search" href="../../../search.html" />
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-33990148-1']);
_gaq.push(['_trackPageview']);
</script>
</head><body>
<div class="related" role="navigation" aria-label="related navigation">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a href="../../../genindex.html" title="General Index"
accesskey="I">index</a></li>
<li class="right" >
<a href="../../../py-modindex.html" title="Python Module Index"
>modules</a> |</li>
<li class="nav-item nav-item-0"><a href="../../../index.html">pymatgen 2018.3.14 documentation</a> »</li>
<li class="nav-item nav-item-1"><a href="../../index.html" >Module code</a> »</li>
<li class="nav-item nav-item-2"><a href="../../pymatgen.html" accesskey="U">pymatgen</a> »</li>
</ul>
</div>
<div class="document">
<div class="documentwrapper">
<div class="bodywrapper">
<div class="body" role="main">
<h1>Source code for pymatgen.io.gaussian</h1><div class="highlight"><pre>
<span></span><span class="c1"># coding: utf-8</span>
<span class="c1"># Copyright (c) Pymatgen Development Team.</span>
<span class="c1"># Distributed under the terms of the MIT License.</span>
<span class="kn">from</span> <span class="nn">__future__</span> <span class="k">import</span> <span class="n">division</span><span class="p">,</span> <span class="n">unicode_literals</span>
<span class="kn">import</span> <span class="nn">re</span>
<span class="kn">import</span> <span class="nn">numpy</span> <span class="k">as</span> <span class="nn">np</span>
<span class="kn">import</span> <span class="nn">warnings</span>
<span class="kn">from</span> <span class="nn">pymatgen.core.operations</span> <span class="k">import</span> <span class="n">SymmOp</span>
<span class="kn">from</span> <span class="nn">pymatgen</span> <span class="k">import</span> <span class="n">Element</span><span class="p">,</span> <span class="n">Molecule</span><span class="p">,</span> <span class="n">Composition</span>
<span class="kn">from</span> <span class="nn">monty.io</span> <span class="k">import</span> <span class="n">zopen</span>
<span class="kn">from</span> <span class="nn">pymatgen.core.units</span> <span class="k">import</span> <span class="n">Ha_to_eV</span>
<span class="kn">from</span> <span class="nn">pymatgen.util.coord</span> <span class="k">import</span> <span class="n">get_angle</span>
<span class="kn">import</span> <span class="nn">scipy.constants</span> <span class="k">as</span> <span class="nn">cst</span>
<span class="kn">from</span> <span class="nn">pymatgen.electronic_structure.core</span> <span class="k">import</span> <span class="n">Spin</span>
<span class="sd">"""</span>
<span class="sd">This module implements input and output processing from Gaussian.</span>
<span class="sd">"""</span>
<span class="n">__author__</span> <span class="o">=</span> <span class="s1">'Shyue Ping Ong, Germain Salvato-Vallverdu, Xin Chen'</span>
<span class="n">__copyright__</span> <span class="o">=</span> <span class="s1">'Copyright 2013, The Materials Virtual Lab'</span>
<span class="n">__version__</span> <span class="o">=</span> <span class="s1">'0.1'</span>
<span class="n">__maintainer__</span> <span class="o">=</span> <span class="s1">'Shyue Ping Ong'</span>
<span class="n">__email__</span> <span class="o">=</span> <span class="s1">'ongsp@ucsd.edu'</span>
<span class="n">__date__</span> <span class="o">=</span> <span class="s1">'8/1/15'</span>
<span class="n">float_patt</span> <span class="o">=</span> <span class="n">re</span><span class="o">.</span><span class="n">compile</span><span class="p">(</span><span class="sa">r</span><span class="s2">"\s*([+-]?\d+\.\d+)"</span><span class="p">)</span>
<div class="viewcode-block" id="read_route_line"><a class="viewcode-back" href="../../../pymatgen.io.gaussian.html#pymatgen.io.gaussian.read_route_line">[docs]</a><span class="k">def</span> <span class="nf">read_route_line</span><span class="p">(</span><span class="n">route</span><span class="p">):</span>
<span class="sd">"""</span>
<span class="sd"> read route line in gaussian input/output and return functional basis_set</span>
<span class="sd"> and a dictionary of other route parameters</span>
<span class="sd"> Args:</span>
<span class="sd"> route (str) : the route line</span>
<span class="sd"> return</span>
<span class="sd"> functional (str) : the method (HF, PBE ...)</span>
<span class="sd"> basis_set (str) : the basis set</span>
<span class="sd"> route (dict) : dictionary of parameters</span>
<span class="sd"> """</span>
<span class="n">scrf_patt</span> <span class="o">=</span> <span class="n">re</span><span class="o">.</span><span class="n">compile</span><span class="p">(</span><span class="sa">r</span><span class="s2">"^([sS][cC][rR][fF])\s*=\s*(.+)"</span><span class="p">)</span>
<span class="n">multi_params_patt</span> <span class="o">=</span> <span class="n">re</span><span class="o">.</span><span class="n">compile</span><span class="p">(</span><span class="s2">"^([A-z]+[0-9]*)[\s=]+\((.*)\)$"</span><span class="p">)</span>
<span class="n">functional</span> <span class="o">=</span> <span class="kc">None</span>
<span class="n">basis_set</span> <span class="o">=</span> <span class="kc">None</span>
<span class="n">route_params</span> <span class="o">=</span> <span class="p">{}</span>
<span class="n">dieze_tag</span> <span class="o">=</span> <span class="kc">None</span>
<span class="k">if</span> <span class="n">route</span><span class="p">:</span>
<span class="k">if</span> <span class="s2">"/"</span> <span class="ow">in</span> <span class="n">route</span><span class="p">:</span>
<span class="n">tok</span> <span class="o">=</span> <span class="n">route</span><span class="o">.</span><span class="n">split</span><span class="p">(</span><span class="s2">"/"</span><span class="p">)</span>
<span class="n">functional</span> <span class="o">=</span> <span class="n">tok</span><span class="p">[</span><span class="mi">0</span><span class="p">]</span><span class="o">.</span><span class="n">split</span><span class="p">()[</span><span class="o">-</span><span class="mi">1</span><span class="p">]</span>
<span class="n">basis_set</span> <span class="o">=</span> <span class="n">tok</span><span class="p">[</span><span class="mi">1</span><span class="p">]</span><span class="o">.</span><span class="n">split</span><span class="p">()[</span><span class="mi">0</span><span class="p">]</span>
<span class="k">for</span> <span class="n">tok</span> <span class="ow">in</span> <span class="p">[</span><span class="n">functional</span><span class="p">,</span> <span class="n">basis_set</span><span class="p">,</span> <span class="s2">"/"</span><span class="p">]:</span>
<span class="n">route</span> <span class="o">=</span> <span class="n">route</span><span class="o">.</span><span class="n">replace</span><span class="p">(</span><span class="n">tok</span><span class="p">,</span> <span class="s2">""</span><span class="p">)</span>
<span class="k">for</span> <span class="n">tok</span> <span class="ow">in</span> <span class="n">route</span><span class="o">.</span><span class="n">split</span><span class="p">():</span>
<span class="k">if</span> <span class="n">scrf_patt</span><span class="o">.</span><span class="n">match</span><span class="p">(</span><span class="n">tok</span><span class="p">):</span>
<span class="n">m</span> <span class="o">=</span> <span class="n">scrf_patt</span><span class="o">.</span><span class="n">match</span><span class="p">(</span><span class="n">tok</span><span class="p">)</span>
<span class="n">route_params</span><span class="p">[</span><span class="n">m</span><span class="o">.</span><span class="n">group</span><span class="p">(</span><span class="mi">1</span><span class="p">)]</span> <span class="o">=</span> <span class="n">m</span><span class="o">.</span><span class="n">group</span><span class="p">(</span><span class="mi">2</span><span class="p">)</span>
<span class="k">elif</span> <span class="n">tok</span><span class="o">.</span><span class="n">upper</span><span class="p">()</span> <span class="ow">in</span> <span class="p">[</span><span class="s2">"#"</span><span class="p">,</span> <span class="s2">"#N"</span><span class="p">,</span> <span class="s2">"#P"</span><span class="p">,</span> <span class="s2">"#T"</span><span class="p">]:</span>
<span class="c1"># does not store # in route to avoid error in input</span>
<span class="k">if</span> <span class="n">tok</span> <span class="o">==</span> <span class="s2">"#"</span><span class="p">:</span>
<span class="n">dieze_tag</span> <span class="o">=</span> <span class="s2">"#N"</span>
<span class="k">else</span><span class="p">:</span>
<span class="n">dieze_tag</span> <span class="o">=</span> <span class="n">tok</span>
<span class="k">continue</span>
<span class="k">else</span><span class="p">:</span>
<span class="n">m</span> <span class="o">=</span> <span class="n">re</span><span class="o">.</span><span class="n">match</span><span class="p">(</span><span class="n">multi_params_patt</span><span class="p">,</span> <span class="n">tok</span><span class="o">.</span><span class="n">strip</span><span class="p">(</span><span class="s2">"#"</span><span class="p">))</span>
<span class="k">if</span> <span class="n">m</span><span class="p">:</span>
<span class="n">pars</span> <span class="o">=</span> <span class="p">{}</span>
<span class="k">for</span> <span class="n">par</span> <span class="ow">in</span> <span class="n">m</span><span class="o">.</span><span class="n">group</span><span class="p">(</span><span class="mi">2</span><span class="p">)</span><span class="o">.</span><span class="n">split</span><span class="p">(</span><span class="s2">","</span><span class="p">):</span>
<span class="n">p</span> <span class="o">=</span> <span class="n">par</span><span class="o">.</span><span class="n">split</span><span class="p">(</span><span class="s2">"="</span><span class="p">)</span>
<span class="n">pars</span><span class="p">[</span><span class="n">p</span><span class="p">[</span><span class="mi">0</span><span class="p">]]</span> <span class="o">=</span> <span class="kc">None</span> <span class="k">if</span> <span class="nb">len</span><span class="p">(</span><span class="n">p</span><span class="p">)</span> <span class="o">==</span> <span class="mi">1</span> <span class="k">else</span> <span class="n">p</span><span class="p">[</span><span class="mi">1</span><span class="p">]</span>
<span class="n">route_params</span><span class="p">[</span><span class="n">m</span><span class="o">.</span><span class="n">group</span><span class="p">(</span><span class="mi">1</span><span class="p">)]</span> <span class="o">=</span> <span class="n">pars</span>
<span class="k">else</span><span class="p">:</span>
<span class="n">d</span> <span class="o">=</span> <span class="n">tok</span><span class="o">.</span><span class="n">strip</span><span class="p">(</span><span class="s2">"#"</span><span class="p">)</span><span class="o">.</span><span class="n">split</span><span class="p">(</span><span class="s2">"="</span><span class="p">)</span>
<span class="n">route_params</span><span class="p">[</span><span class="n">d</span><span class="p">[</span><span class="mi">0</span><span class="p">]]</span> <span class="o">=</span> <span class="kc">None</span> <span class="k">if</span> <span class="nb">len</span><span class="p">(</span><span class="n">d</span><span class="p">)</span> <span class="o">==</span> <span class="mi">1</span> <span class="k">else</span> <span class="n">d</span><span class="p">[</span><span class="mi">1</span><span class="p">]</span>
</div>
<span class="k">return</span> <span class="n">functional</span><span class="p">,</span> <span class="n">basis_set</span><span class="p">,</span> <span class="n">route_params</span><span class="p">,</span> <span class="n">dieze_tag</span>
<div class="viewcode-block" id="GaussianInput"><a class="viewcode-back" href="../../../pymatgen.io.gaussian.html#pymatgen.io.gaussian.GaussianInput">[docs]</a><span class="k">class</span> <span class="nc">GaussianInput</span><span class="p">(</span><span class="nb">object</span><span class="p">):</span>
<span class="sd">"""</span>
<span class="sd"> An object representing a Gaussian input file.</span>
<span class="sd"> Args:</span>
<span class="sd"> mol: Input molecule. If molecule is a single string, it is used as a</span>
<span class="sd"> direct input to the geometry section of the Gaussian input</span>
<span class="sd"> file.</span>
<span class="sd"> charge: Charge of the molecule. If None, charge on molecule is used.</span>
<span class="sd"> Defaults to None. This allows the input file to be set a</span>
<span class="sd"> charge independently from the molecule itself.</span>
<span class="sd"> spin_multiplicity: Spin multiplicity of molecule. Defaults to None,</span>
<span class="sd"> which means that the spin multiplicity is set to 1 if the</span>
<span class="sd"> molecule has no unpaired electrons and to 2 if there are</span>
<span class="sd"> unpaired electrons.</span>
<span class="sd"> title: Title for run. Defaults to formula of molecule if None.</span>
<span class="sd"> functional: Functional for run.</span>
<span class="sd"> basis_set: Basis set for run.</span>
<span class="sd"> route_parameters: Additional route parameters as a dict. For example,</span>
<span class="sd"> {'SP':"", "SCF":"Tight"}</span>
<span class="sd"> input_parameters: Additional input parameters for run as a dict. Used</span>
<span class="sd"> for example, in PCM calculations. E.g., {"EPS":12}</span>
<span class="sd"> link0_parameters: Link0 parameters as a dict. E.g., {"%mem": "1000MW"}</span>
<span class="sd"> dieze_tag: # preceding the route line. E.g. "#p"</span>
<span class="sd"> gen_basis: allows a user-specified basis set to be used in a Gaussian</span>
<span class="sd"> calculation. If this is not None, the attribute ``basis_set`` will</span>
<span class="sd"> be set to "Gen".</span>
<span class="sd"> """</span>
<span class="c1"># Commonly used regex patterns</span>
<span class="n">_zmat_patt</span> <span class="o">=</span> <span class="n">re</span><span class="o">.</span><span class="n">compile</span><span class="p">(</span><span class="sa">r</span><span class="s2">"^(\w+)*([\s,]+(\w+)[\s,]+(\w+))*[\-\.\s,\w]*$"</span><span class="p">)</span>
<span class="n">_xyz_patt</span> <span class="o">=</span> <span class="n">re</span><span class="o">.</span><span class="n">compile</span><span class="p">(</span><span class="sa">r</span><span class="s2">"^(\w+)[\s,]+([\d\.eE\-]+)[\s,]+([\d\.eE\-]+)[\s,]+"</span>
<span class="sa">r</span><span class="s2">"([\d\.eE\-]+)[\-\.\s,\w.]*$"</span><span class="p">)</span>
<span class="k">def</span> <span class="nf">__init__</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">mol</span><span class="p">,</span> <span class="n">charge</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">spin_multiplicity</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">title</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span>
<span class="n">functional</span><span class="o">=</span><span class="s2">"HF"</span><span class="p">,</span> <span class="n">basis_set</span><span class="o">=</span><span class="s2">"6-31G(d)"</span><span class="p">,</span> <span class="n">route_parameters</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span>
<span class="n">input_parameters</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">link0_parameters</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">dieze_tag</span><span class="o">=</span><span class="s2">"#P"</span><span class="p">,</span>
<span class="n">gen_basis</span><span class="o">=</span><span class="kc">None</span><span class="p">):</span>
<span class="bp">self</span><span class="o">.</span><span class="n">_mol</span> <span class="o">=</span> <span class="n">mol</span>
<span class="bp">self</span><span class="o">.</span><span class="n">charge</span> <span class="o">=</span> <span class="n">charge</span> <span class="k">if</span> <span class="n">charge</span> <span class="ow">is</span> <span class="ow">not</span> <span class="kc">None</span> <span class="k">else</span> <span class="n">mol</span><span class="o">.</span><span class="n">charge</span>
<span class="n">nelectrons</span> <span class="o">=</span> <span class="o">-</span> <span class="bp">self</span><span class="o">.</span><span class="n">charge</span> <span class="o">+</span> <span class="n">mol</span><span class="o">.</span><span class="n">charge</span> <span class="o">+</span> <span class="n">mol</span><span class="o">.</span><span class="n">nelectrons</span>
<span class="k">if</span> <span class="n">spin_multiplicity</span> <span class="ow">is</span> <span class="ow">not</span> <span class="kc">None</span><span class="p">:</span>
<span class="bp">self</span><span class="o">.</span><span class="n">spin_multiplicity</span> <span class="o">=</span> <span class="n">spin_multiplicity</span>
<span class="k">if</span> <span class="p">(</span><span class="n">nelectrons</span> <span class="o">+</span> <span class="n">spin_multiplicity</span><span class="p">)</span> <span class="o">%</span> <span class="mi">2</span> <span class="o">!=</span> <span class="mi">1</span><span class="p">:</span>
<span class="k">raise</span> <span class="ne">ValueError</span><span class="p">(</span>
<span class="s2">"Charge of </span><span class="si">{}</span><span class="s2"> and spin multiplicity of </span><span class="si">{}</span><span class="s2"> is"</span>
<span class="s2">" not possible for this molecule"</span><span class="o">.</span><span class="n">format</span><span class="p">(</span>
<span class="bp">self</span><span class="o">.</span><span class="n">charge</span><span class="p">,</span> <span class="n">spin_multiplicity</span><span class="p">))</span>
<span class="k">else</span><span class="p">:</span>
<span class="bp">self</span><span class="o">.</span><span class="n">spin_multiplicity</span> <span class="o">=</span> <span class="mi">1</span> <span class="k">if</span> <span class="n">nelectrons</span> <span class="o">%</span> <span class="mi">2</span> <span class="o">==</span> <span class="mi">0</span> <span class="k">else</span> <span class="mi">2</span>
<span class="bp">self</span><span class="o">.</span><span class="n">functional</span> <span class="o">=</span> <span class="n">functional</span>
<span class="bp">self</span><span class="o">.</span><span class="n">basis_set</span> <span class="o">=</span> <span class="n">basis_set</span>
<span class="bp">self</span><span class="o">.</span><span class="n">link0_parameters</span> <span class="o">=</span> <span class="n">link0_parameters</span> <span class="k">if</span> <span class="n">link0_parameters</span> <span class="k">else</span> <span class="p">{}</span>
<span class="bp">self</span><span class="o">.</span><span class="n">route_parameters</span> <span class="o">=</span> <span class="n">route_parameters</span> <span class="k">if</span> <span class="n">route_parameters</span> <span class="k">else</span> <span class="p">{}</span>
<span class="bp">self</span><span class="o">.</span><span class="n">input_parameters</span> <span class="o">=</span> <span class="n">input_parameters</span> <span class="k">if</span> <span class="n">input_parameters</span> <span class="k">else</span> <span class="p">{}</span>
<span class="bp">self</span><span class="o">.</span><span class="n">title</span> <span class="o">=</span> <span class="n">title</span> <span class="k">if</span> <span class="n">title</span> <span class="k">else</span> <span class="bp">self</span><span class="o">.</span><span class="n">_mol</span><span class="o">.</span><span class="n">composition</span><span class="o">.</span><span class="n">formula</span>
<span class="bp">self</span><span class="o">.</span><span class="n">dieze_tag</span> <span class="o">=</span> <span class="n">dieze_tag</span> <span class="k">if</span> <span class="n">dieze_tag</span><span class="p">[</span><span class="mi">0</span><span class="p">]</span> <span class="o">==</span> <span class="s2">"#"</span> <span class="k">else</span> <span class="s2">"#"</span> <span class="o">+</span> <span class="n">dieze_tag</span>
<span class="bp">self</span><span class="o">.</span><span class="n">gen_basis</span> <span class="o">=</span> <span class="n">gen_basis</span>
<span class="k">if</span> <span class="n">gen_basis</span> <span class="ow">is</span> <span class="ow">not</span> <span class="kc">None</span><span class="p">:</span>
<span class="bp">self</span><span class="o">.</span><span class="n">basis_set</span> <span class="o">=</span> <span class="s2">"Gen"</span>
<span class="nd">@property</span>
<span class="k">def</span> <span class="nf">molecule</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span>
<span class="sd">"""</span>
<span class="sd"> Returns molecule associated with this GaussianInput.</span>
<span class="sd"> """</span>
<span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">_mol</span>
<span class="nd">@staticmethod</span>
<span class="k">def</span> <span class="nf">_parse_coords</span><span class="p">(</span><span class="n">coord_lines</span><span class="p">):</span>
<span class="sd">"""</span>
<span class="sd"> Helper method to parse coordinates.</span>
<span class="sd"> """</span>
<span class="n">paras</span> <span class="o">=</span> <span class="p">{}</span>
<span class="n">var_pattern</span> <span class="o">=</span> <span class="n">re</span><span class="o">.</span><span class="n">compile</span><span class="p">(</span><span class="sa">r</span><span class="s2">"^([A-Za-z]+\S*)[\s=,]+([\d\-\.]+)$"</span><span class="p">)</span>
<span class="k">for</span> <span class="n">l</span> <span class="ow">in</span> <span class="n">coord_lines</span><span class="p">:</span>
<span class="n">m</span> <span class="o">=</span> <span class="n">var_pattern</span><span class="o">.</span><span class="n">match</span><span class="p">(</span><span class="n">l</span><span class="o">.</span><span class="n">strip</span><span class="p">())</span>
<span class="k">if</span> <span class="n">m</span><span class="p">:</span>
<span class="n">paras</span><span class="p">[</span><span class="n">m</span><span class="o">.</span><span class="n">group</span><span class="p">(</span><span class="mi">1</span><span class="p">)</span><span class="o">.</span><span class="n">strip</span><span class="p">(</span><span class="s2">"="</span><span class="p">)]</span> <span class="o">=</span> <span class="nb">float</span><span class="p">(</span><span class="n">m</span><span class="o">.</span><span class="n">group</span><span class="p">(</span><span class="mi">2</span><span class="p">))</span>
<span class="n">species</span> <span class="o">=</span> <span class="p">[]</span>
<span class="n">coords</span> <span class="o">=</span> <span class="p">[]</span>
<span class="c1"># Stores whether a Zmatrix format is detected. Once a zmatrix format</span>
<span class="c1"># is detected, it is assumed for the remaining of the parsing.</span>
<span class="n">zmode</span> <span class="o">=</span> <span class="kc">False</span>
<span class="k">for</span> <span class="n">l</span> <span class="ow">in</span> <span class="n">coord_lines</span><span class="p">:</span>
<span class="n">l</span> <span class="o">=</span> <span class="n">l</span><span class="o">.</span><span class="n">strip</span><span class="p">()</span>
<span class="k">if</span> <span class="ow">not</span> <span class="n">l</span><span class="p">:</span>
<span class="k">break</span>
<span class="k">if</span> <span class="p">(</span><span class="ow">not</span> <span class="n">zmode</span><span class="p">)</span> <span class="ow">and</span> <span class="n">GaussianInput</span><span class="o">.</span><span class="n">_xyz_patt</span><span class="o">.</span><span class="n">match</span><span class="p">(</span><span class="n">l</span><span class="p">):</span>
<span class="n">m</span> <span class="o">=</span> <span class="n">GaussianInput</span><span class="o">.</span><span class="n">_xyz_patt</span><span class="o">.</span><span class="n">match</span><span class="p">(</span><span class="n">l</span><span class="p">)</span>
<span class="n">species</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="n">m</span><span class="o">.</span><span class="n">group</span><span class="p">(</span><span class="mi">1</span><span class="p">))</span>
<span class="n">toks</span> <span class="o">=</span> <span class="n">re</span><span class="o">.</span><span class="n">split</span><span class="p">(</span><span class="sa">r</span><span class="s2">"[,\s]+"</span><span class="p">,</span> <span class="n">l</span><span class="o">.</span><span class="n">strip</span><span class="p">())</span>
<span class="k">if</span> <span class="nb">len</span><span class="p">(</span><span class="n">toks</span><span class="p">)</span> <span class="o">></span> <span class="mi">4</span><span class="p">:</span>
<span class="n">coords</span><span class="o">.</span><span class="n">append</span><span class="p">([</span><span class="nb">float</span><span class="p">(</span><span class="n">i</span><span class="p">)</span> <span class="k">for</span> <span class="n">i</span> <span class="ow">in</span> <span class="n">toks</span><span class="p">[</span><span class="mi">2</span><span class="p">:</span><span class="mi">5</span><span class="p">]])</span>
<span class="k">else</span><span class="p">:</span>
<span class="n">coords</span><span class="o">.</span><span class="n">append</span><span class="p">([</span><span class="nb">float</span><span class="p">(</span><span class="n">i</span><span class="p">)</span> <span class="k">for</span> <span class="n">i</span> <span class="ow">in</span> <span class="n">toks</span><span class="p">[</span><span class="mi">1</span><span class="p">:</span><span class="mi">4</span><span class="p">]])</span>
<span class="k">elif</span> <span class="n">GaussianInput</span><span class="o">.</span><span class="n">_zmat_patt</span><span class="o">.</span><span class="n">match</span><span class="p">(</span><span class="n">l</span><span class="p">):</span>
<span class="n">zmode</span> <span class="o">=</span> <span class="kc">True</span>
<span class="n">toks</span> <span class="o">=</span> <span class="n">re</span><span class="o">.</span><span class="n">split</span><span class="p">(</span><span class="sa">r</span><span class="s2">"[,\s]+"</span><span class="p">,</span> <span class="n">l</span><span class="o">.</span><span class="n">strip</span><span class="p">())</span>
<span class="n">species</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="n">toks</span><span class="p">[</span><span class="mi">0</span><span class="p">])</span>
<span class="n">toks</span><span class="o">.</span><span class="n">pop</span><span class="p">(</span><span class="mi">0</span><span class="p">)</span>
<span class="k">if</span> <span class="nb">len</span><span class="p">(</span><span class="n">toks</span><span class="p">)</span> <span class="o">==</span> <span class="mi">0</span><span class="p">:</span>
<span class="n">coords</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="n">np</span><span class="o">.</span><span class="n">array</span><span class="p">([</span><span class="mi">0</span><span class="p">,</span> <span class="mi">0</span><span class="p">,</span> <span class="mi">0</span><span class="p">]))</span>
<span class="k">else</span><span class="p">:</span>
<span class="n">nn</span> <span class="o">=</span> <span class="p">[]</span>
<span class="n">parameters</span> <span class="o">=</span> <span class="p">[]</span>
<span class="k">while</span> <span class="nb">len</span><span class="p">(</span><span class="n">toks</span><span class="p">)</span> <span class="o">></span> <span class="mi">1</span><span class="p">:</span>
<span class="n">ind</span> <span class="o">=</span> <span class="n">toks</span><span class="o">.</span><span class="n">pop</span><span class="p">(</span><span class="mi">0</span><span class="p">)</span>
<span class="n">data</span> <span class="o">=</span> <span class="n">toks</span><span class="o">.</span><span class="n">pop</span><span class="p">(</span><span class="mi">0</span><span class="p">)</span>
<span class="k">try</span><span class="p">:</span>
<span class="n">nn</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="nb">int</span><span class="p">(</span><span class="n">ind</span><span class="p">))</span>
<span class="k">except</span> <span class="ne">ValueError</span><span class="p">:</span>
<span class="n">nn</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="n">species</span><span class="o">.</span><span class="n">index</span><span class="p">(</span><span class="n">ind</span><span class="p">)</span> <span class="o">+</span> <span class="mi">1</span><span class="p">)</span>
<span class="k">try</span><span class="p">:</span>
<span class="n">val</span> <span class="o">=</span> <span class="nb">float</span><span class="p">(</span><span class="n">data</span><span class="p">)</span>
<span class="n">parameters</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="n">val</span><span class="p">)</span>
<span class="k">except</span> <span class="ne">ValueError</span><span class="p">:</span>
<span class="k">if</span> <span class="n">data</span><span class="o">.</span><span class="n">startswith</span><span class="p">(</span><span class="s2">"-"</span><span class="p">):</span>
<span class="n">parameters</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="o">-</span><span class="n">paras</span><span class="p">[</span><span class="n">data</span><span class="p">[</span><span class="mi">1</span><span class="p">:]])</span>
<span class="k">else</span><span class="p">:</span>
<span class="n">parameters</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="n">paras</span><span class="p">[</span><span class="n">data</span><span class="p">])</span>
<span class="k">if</span> <span class="nb">len</span><span class="p">(</span><span class="n">nn</span><span class="p">)</span> <span class="o">==</span> <span class="mi">1</span><span class="p">:</span>
<span class="n">coords</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="n">np</span><span class="o">.</span><span class="n">array</span><span class="p">([</span><span class="mi">0</span><span class="p">,</span> <span class="mi">0</span><span class="p">,</span> <span class="n">parameters</span><span class="p">[</span><span class="mi">0</span><span class="p">]]))</span>
<span class="k">elif</span> <span class="nb">len</span><span class="p">(</span><span class="n">nn</span><span class="p">)</span> <span class="o">==</span> <span class="mi">2</span><span class="p">:</span>
<span class="n">coords1</span> <span class="o">=</span> <span class="n">coords</span><span class="p">[</span><span class="n">nn</span><span class="p">[</span><span class="mi">0</span><span class="p">]</span> <span class="o">-</span> <span class="mi">1</span><span class="p">]</span>
<span class="n">coords2</span> <span class="o">=</span> <span class="n">coords</span><span class="p">[</span><span class="n">nn</span><span class="p">[</span><span class="mi">1</span><span class="p">]</span> <span class="o">-</span> <span class="mi">1</span><span class="p">]</span>
<span class="n">bl</span> <span class="o">=</span> <span class="n">parameters</span><span class="p">[</span><span class="mi">0</span><span class="p">]</span>
<span class="n">angle</span> <span class="o">=</span> <span class="n">parameters</span><span class="p">[</span><span class="mi">1</span><span class="p">]</span>
<span class="n">axis</span> <span class="o">=</span> <span class="p">[</span><span class="mi">0</span><span class="p">,</span> <span class="mi">1</span><span class="p">,</span> <span class="mi">0</span><span class="p">]</span>
<span class="n">op</span> <span class="o">=</span> <span class="n">SymmOp</span><span class="o">.</span><span class="n">from_origin_axis_angle</span><span class="p">(</span><span class="n">coords1</span><span class="p">,</span> <span class="n">axis</span><span class="p">,</span>
<span class="n">angle</span><span class="p">,</span> <span class="kc">False</span><span class="p">)</span>
<span class="n">coord</span> <span class="o">=</span> <span class="n">op</span><span class="o">.</span><span class="n">operate</span><span class="p">(</span><span class="n">coords2</span><span class="p">)</span>
<span class="n">vec</span> <span class="o">=</span> <span class="n">coord</span> <span class="o">-</span> <span class="n">coords1</span>
<span class="n">coord</span> <span class="o">=</span> <span class="n">vec</span> <span class="o">*</span> <span class="n">bl</span> <span class="o">/</span> <span class="n">np</span><span class="o">.</span><span class="n">linalg</span><span class="o">.</span><span class="n">norm</span><span class="p">(</span><span class="n">vec</span><span class="p">)</span> <span class="o">+</span> <span class="n">coords1</span>
<span class="n">coords</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="n">coord</span><span class="p">)</span>
<span class="k">elif</span> <span class="nb">len</span><span class="p">(</span><span class="n">nn</span><span class="p">)</span> <span class="o">==</span> <span class="mi">3</span><span class="p">:</span>
<span class="n">coords1</span> <span class="o">=</span> <span class="n">coords</span><span class="p">[</span><span class="n">nn</span><span class="p">[</span><span class="mi">0</span><span class="p">]</span> <span class="o">-</span> <span class="mi">1</span><span class="p">]</span>
<span class="n">coords2</span> <span class="o">=</span> <span class="n">coords</span><span class="p">[</span><span class="n">nn</span><span class="p">[</span><span class="mi">1</span><span class="p">]</span> <span class="o">-</span> <span class="mi">1</span><span class="p">]</span>
<span class="n">coords3</span> <span class="o">=</span> <span class="n">coords</span><span class="p">[</span><span class="n">nn</span><span class="p">[</span><span class="mi">2</span><span class="p">]</span> <span class="o">-</span> <span class="mi">1</span><span class="p">]</span>
<span class="n">bl</span> <span class="o">=</span> <span class="n">parameters</span><span class="p">[</span><span class="mi">0</span><span class="p">]</span>
<span class="n">angle</span> <span class="o">=</span> <span class="n">parameters</span><span class="p">[</span><span class="mi">1</span><span class="p">]</span>
<span class="n">dih</span> <span class="o">=</span> <span class="n">parameters</span><span class="p">[</span><span class="mi">2</span><span class="p">]</span>
<span class="n">v1</span> <span class="o">=</span> <span class="n">coords3</span> <span class="o">-</span> <span class="n">coords2</span>
<span class="n">v2</span> <span class="o">=</span> <span class="n">coords1</span> <span class="o">-</span> <span class="n">coords2</span>
<span class="n">axis</span> <span class="o">=</span> <span class="n">np</span><span class="o">.</span><span class="n">cross</span><span class="p">(</span><span class="n">v1</span><span class="p">,</span> <span class="n">v2</span><span class="p">)</span>
<span class="n">op</span> <span class="o">=</span> <span class="n">SymmOp</span><span class="o">.</span><span class="n">from_origin_axis_angle</span><span class="p">(</span>
<span class="n">coords1</span><span class="p">,</span> <span class="n">axis</span><span class="p">,</span> <span class="n">angle</span><span class="p">,</span> <span class="kc">False</span><span class="p">)</span>
<span class="n">coord</span> <span class="o">=</span> <span class="n">op</span><span class="o">.</span><span class="n">operate</span><span class="p">(</span><span class="n">coords2</span><span class="p">)</span>
<span class="n">v1</span> <span class="o">=</span> <span class="n">coord</span> <span class="o">-</span> <span class="n">coords1</span>
<span class="n">v2</span> <span class="o">=</span> <span class="n">coords1</span> <span class="o">-</span> <span class="n">coords2</span>
<span class="n">v3</span> <span class="o">=</span> <span class="n">np</span><span class="o">.</span><span class="n">cross</span><span class="p">(</span><span class="n">v1</span><span class="p">,</span> <span class="n">v2</span><span class="p">)</span>
<span class="n">adj</span> <span class="o">=</span> <span class="n">get_angle</span><span class="p">(</span><span class="n">v3</span><span class="p">,</span> <span class="n">axis</span><span class="p">)</span>
<span class="n">axis</span> <span class="o">=</span> <span class="n">coords1</span> <span class="o">-</span> <span class="n">coords2</span>
<span class="n">op</span> <span class="o">=</span> <span class="n">SymmOp</span><span class="o">.</span><span class="n">from_origin_axis_angle</span><span class="p">(</span>
<span class="n">coords1</span><span class="p">,</span> <span class="n">axis</span><span class="p">,</span> <span class="n">dih</span> <span class="o">-</span> <span class="n">adj</span><span class="p">,</span> <span class="kc">False</span><span class="p">)</span>
<span class="n">coord</span> <span class="o">=</span> <span class="n">op</span><span class="o">.</span><span class="n">operate</span><span class="p">(</span><span class="n">coord</span><span class="p">)</span>
<span class="n">vec</span> <span class="o">=</span> <span class="n">coord</span> <span class="o">-</span> <span class="n">coords1</span>
<span class="n">coord</span> <span class="o">=</span> <span class="n">vec</span> <span class="o">*</span> <span class="n">bl</span> <span class="o">/</span> <span class="n">np</span><span class="o">.</span><span class="n">linalg</span><span class="o">.</span><span class="n">norm</span><span class="p">(</span><span class="n">vec</span><span class="p">)</span> <span class="o">+</span> <span class="n">coords1</span>
<span class="n">coords</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="n">coord</span><span class="p">)</span>
<span class="k">def</span> <span class="nf">_parse_species</span><span class="p">(</span><span class="n">sp_str</span><span class="p">):</span>
<span class="sd">"""</span>
<span class="sd"> The species specification can take many forms. E.g.,</span>
<span class="sd"> simple integers representing atomic numbers ("8"),</span>
<span class="sd"> actual species string ("C") or a labelled species ("C1").</span>
<span class="sd"> Sometimes, the species string is also not properly capitalized,</span>
<span class="sd"> e.g, ("c1"). This method should take care of these known formats.</span>
<span class="sd"> """</span>
<span class="k">try</span><span class="p">:</span>
<span class="k">return</span> <span class="nb">int</span><span class="p">(</span><span class="n">sp_str</span><span class="p">)</span>
<span class="k">except</span> <span class="ne">ValueError</span><span class="p">:</span>
<span class="n">sp</span> <span class="o">=</span> <span class="n">re</span><span class="o">.</span><span class="n">sub</span><span class="p">(</span><span class="sa">r</span><span class="s2">"\d"</span><span class="p">,</span> <span class="s2">""</span><span class="p">,</span> <span class="n">sp_str</span><span class="p">)</span>
<span class="k">return</span> <span class="n">sp</span><span class="o">.</span><span class="n">capitalize</span><span class="p">()</span>
<span class="n">species</span> <span class="o">=</span> <span class="p">[</span><span class="n">_parse_species</span><span class="p">(</span><span class="n">sp</span><span class="p">)</span> <span class="k">for</span> <span class="n">sp</span> <span class="ow">in</span> <span class="n">species</span><span class="p">]</span>
<span class="k">return</span> <span class="n">Molecule</span><span class="p">(</span><span class="n">species</span><span class="p">,</span> <span class="n">coords</span><span class="p">)</span>
<div class="viewcode-block" id="GaussianInput.from_string"><a class="viewcode-back" href="../../../pymatgen.io.gaussian.html#pymatgen.io.gaussian.GaussianInput.from_string">[docs]</a> <span class="nd">@staticmethod</span>
<span class="k">def</span> <span class="nf">from_string</span><span class="p">(</span><span class="n">contents</span><span class="p">):</span>
<span class="sd">"""</span>
<span class="sd"> Creates GaussianInput from a string.</span>
<span class="sd"> Args:</span>
<span class="sd"> contents: String representing an Gaussian input file.</span>
<span class="sd"> Returns:</span>
<span class="sd"> GaussianInput object</span>
<span class="sd"> """</span>
<span class="n">lines</span> <span class="o">=</span> <span class="p">[</span><span class="n">l</span><span class="o">.</span><span class="n">strip</span><span class="p">()</span> <span class="k">for</span> <span class="n">l</span> <span class="ow">in</span> <span class="n">contents</span><span class="o">.</span><span class="n">split</span><span class="p">(</span><span class="s2">"</span><span class="se">\n</span><span class="s2">"</span><span class="p">)]</span>
<span class="n">link0_patt</span> <span class="o">=</span> <span class="n">re</span><span class="o">.</span><span class="n">compile</span><span class="p">(</span><span class="sa">r</span><span class="s2">"^(%.+)\s*=\s*(.+)"</span><span class="p">)</span>
<span class="n">link0_dict</span> <span class="o">=</span> <span class="p">{}</span>
<span class="k">for</span> <span class="n">i</span><span class="p">,</span> <span class="n">l</span> <span class="ow">in</span> <span class="nb">enumerate</span><span class="p">(</span><span class="n">lines</span><span class="p">):</span>
<span class="k">if</span> <span class="n">link0_patt</span><span class="o">.</span><span class="n">match</span><span class="p">(</span><span class="n">l</span><span class="p">):</span>
<span class="n">m</span> <span class="o">=</span> <span class="n">link0_patt</span><span class="o">.</span><span class="n">match</span><span class="p">(</span><span class="n">l</span><span class="p">)</span>
<span class="n">link0_dict</span><span class="p">[</span><span class="n">m</span><span class="o">.</span><span class="n">group</span><span class="p">(</span><span class="mi">1</span><span class="p">)</span><span class="o">.</span><span class="n">strip</span><span class="p">(</span><span class="s2">"="</span><span class="p">)]</span> <span class="o">=</span> <span class="n">m</span><span class="o">.</span><span class="n">group</span><span class="p">(</span><span class="mi">2</span><span class="p">)</span>
<span class="n">route_patt</span> <span class="o">=</span> <span class="n">re</span><span class="o">.</span><span class="n">compile</span><span class="p">(</span><span class="sa">r</span><span class="s2">"^#[sSpPnN]*.*"</span><span class="p">)</span>
<span class="n">route</span> <span class="o">=</span> <span class="s2">""</span>
<span class="n">route_index</span> <span class="o">=</span> <span class="kc">None</span>
<span class="k">for</span> <span class="n">i</span><span class="p">,</span> <span class="n">l</span> <span class="ow">in</span> <span class="nb">enumerate</span><span class="p">(</span><span class="n">lines</span><span class="p">):</span>
<span class="k">if</span> <span class="n">route_patt</span><span class="o">.</span><span class="n">match</span><span class="p">(</span><span class="n">l</span><span class="p">):</span>
<span class="n">route</span> <span class="o">+=</span> <span class="s2">" "</span> <span class="o">+</span> <span class="n">l</span>
<span class="n">route_index</span> <span class="o">=</span> <span class="n">i</span>
<span class="c1"># This condition allows for route cards spanning multiple lines</span>
<span class="k">elif</span> <span class="p">(</span><span class="n">l</span> <span class="o">==</span> <span class="s2">""</span> <span class="ow">or</span> <span class="n">l</span><span class="o">.</span><span class="n">isspace</span><span class="p">())</span> <span class="ow">and</span> <span class="n">route_index</span><span class="p">:</span>
<span class="k">break</span>
<span class="n">functional</span><span class="p">,</span> <span class="n">basis_set</span><span class="p">,</span> <span class="n">route_paras</span><span class="p">,</span> <span class="n">dieze_tag</span> <span class="o">=</span> <span class="n">read_route_line</span><span class="p">(</span><span class="n">route</span><span class="p">)</span>
<span class="n">ind</span> <span class="o">=</span> <span class="mi">2</span>
<span class="n">title</span> <span class="o">=</span> <span class="p">[]</span>
<span class="k">while</span> <span class="n">lines</span><span class="p">[</span><span class="n">route_index</span> <span class="o">+</span> <span class="n">ind</span><span class="p">]</span><span class="o">.</span><span class="n">strip</span><span class="p">():</span>
<span class="n">title</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="n">lines</span><span class="p">[</span><span class="n">route_index</span> <span class="o">+</span> <span class="n">ind</span><span class="p">]</span><span class="o">.</span><span class="n">strip</span><span class="p">())</span>
<span class="n">ind</span> <span class="o">+=</span> <span class="mi">1</span>
<span class="n">title</span> <span class="o">=</span> <span class="s1">' '</span><span class="o">.</span><span class="n">join</span><span class="p">(</span><span class="n">title</span><span class="p">)</span>
<span class="n">ind</span> <span class="o">+=</span> <span class="mi">1</span>
<span class="n">toks</span> <span class="o">=</span> <span class="n">re</span><span class="o">.</span><span class="n">split</span><span class="p">(</span><span class="sa">r</span><span class="s2">"[,\s]+"</span><span class="p">,</span> <span class="n">lines</span><span class="p">[</span><span class="n">route_index</span> <span class="o">+</span> <span class="n">ind</span><span class="p">])</span>
<span class="n">charge</span> <span class="o">=</span> <span class="nb">int</span><span class="p">(</span><span class="n">toks</span><span class="p">[</span><span class="mi">0</span><span class="p">])</span>
<span class="n">spin_mult</span> <span class="o">=</span> <span class="nb">int</span><span class="p">(</span><span class="n">toks</span><span class="p">[</span><span class="mi">1</span><span class="p">])</span>
<span class="n">coord_lines</span> <span class="o">=</span> <span class="p">[]</span>
<span class="n">spaces</span> <span class="o">=</span> <span class="mi">0</span>
<span class="n">input_paras</span> <span class="o">=</span> <span class="p">{}</span>
<span class="n">ind</span> <span class="o">+=</span> <span class="mi">1</span>
<span class="k">for</span> <span class="n">i</span> <span class="ow">in</span> <span class="nb">range</span><span class="p">(</span><span class="n">route_index</span> <span class="o">+</span> <span class="n">ind</span><span class="p">,</span> <span class="nb">len</span><span class="p">(</span><span class="n">lines</span><span class="p">)):</span>
<span class="k">if</span> <span class="n">lines</span><span class="p">[</span><span class="n">i</span><span class="p">]</span><span class="o">.</span><span class="n">strip</span><span class="p">()</span> <span class="o">==</span> <span class="s2">""</span><span class="p">:</span>
<span class="n">spaces</span> <span class="o">+=</span> <span class="mi">1</span>
<span class="k">if</span> <span class="n">spaces</span> <span class="o">>=</span> <span class="mi">2</span><span class="p">:</span>
<span class="n">d</span> <span class="o">=</span> <span class="n">lines</span><span class="p">[</span><span class="n">i</span><span class="p">]</span><span class="o">.</span><span class="n">split</span><span class="p">(</span><span class="s2">"="</span><span class="p">)</span>
<span class="k">if</span> <span class="nb">len</span><span class="p">(</span><span class="n">d</span><span class="p">)</span> <span class="o">==</span> <span class="mi">2</span><span class="p">:</span>
<span class="n">input_paras</span><span class="p">[</span><span class="n">d</span><span class="p">[</span><span class="mi">0</span><span class="p">]]</span> <span class="o">=</span> <span class="n">d</span><span class="p">[</span><span class="mi">1</span><span class="p">]</span>
<span class="k">else</span><span class="p">:</span>
<span class="n">coord_lines</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="n">lines</span><span class="p">[</span><span class="n">i</span><span class="p">]</span><span class="o">.</span><span class="n">strip</span><span class="p">())</span>
<span class="n">mol</span> <span class="o">=</span> <span class="n">GaussianInput</span><span class="o">.</span><span class="n">_parse_coords</span><span class="p">(</span><span class="n">coord_lines</span><span class="p">)</span>
<span class="n">mol</span><span class="o">.</span><span class="n">set_charge_and_spin</span><span class="p">(</span><span class="n">charge</span><span class="p">,</span> <span class="n">spin_mult</span><span class="p">)</span>
<span class="k">return</span> <span class="n">GaussianInput</span><span class="p">(</span><span class="n">mol</span><span class="p">,</span> <span class="n">charge</span><span class="o">=</span><span class="n">charge</span><span class="p">,</span> <span class="n">spin_multiplicity</span><span class="o">=</span><span class="n">spin_mult</span><span class="p">,</span>
<span class="n">title</span><span class="o">=</span><span class="n">title</span><span class="p">,</span> <span class="n">functional</span><span class="o">=</span><span class="n">functional</span><span class="p">,</span>
<span class="n">basis_set</span><span class="o">=</span><span class="n">basis_set</span><span class="p">,</span>
<span class="n">route_parameters</span><span class="o">=</span><span class="n">route_paras</span><span class="p">,</span>
<span class="n">input_parameters</span><span class="o">=</span><span class="n">input_paras</span><span class="p">,</span>
<span class="n">link0_parameters</span><span class="o">=</span><span class="n">link0_dict</span><span class="p">,</span></div>
<span class="n">dieze_tag</span><span class="o">=</span><span class="n">dieze_tag</span><span class="p">)</span>
<div class="viewcode-block" id="GaussianInput.from_file"><a class="viewcode-back" href="../../../pymatgen.io.gaussian.html#pymatgen.io.gaussian.GaussianInput.from_file">[docs]</a> <span class="nd">@staticmethod</span>
<span class="k">def</span> <span class="nf">from_file</span><span class="p">(</span><span class="n">filename</span><span class="p">):</span>
<span class="sd">"""</span>
<span class="sd"> Creates GaussianInput from a file.</span>
<span class="sd"> Args:</span>
<span class="sd"> filename: Gaussian input filename</span>
<span class="sd"> Returns:</span>
<span class="sd"> GaussianInput object</span>
<span class="sd"> """</span>
<span class="k">with</span> <span class="n">zopen</span><span class="p">(</span><span class="n">filename</span><span class="p">,</span> <span class="s2">"r"</span><span class="p">)</span> <span class="k">as</span> <span class="n">f</span><span class="p">:</span></div>
<span class="k">return</span> <span class="n">GaussianInput</span><span class="o">.</span><span class="n">from_string</span><span class="p">(</span><span class="n">f</span><span class="o">.</span><span class="n">read</span><span class="p">())</span>
<span class="k">def</span> <span class="nf">_find_nn_pos_before_site</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">siteindex</span><span class="p">):</span>
<span class="sd">"""</span>
<span class="sd"> Returns index of nearest neighbor atoms.</span>
<span class="sd"> """</span>
<span class="n">alldist</span> <span class="o">=</span> <span class="p">[(</span><span class="bp">self</span><span class="o">.</span><span class="n">_mol</span><span class="o">.</span><span class="n">get_distance</span><span class="p">(</span><span class="n">siteindex</span><span class="p">,</span> <span class="n">i</span><span class="p">),</span> <span class="n">i</span><span class="p">)</span>
<span class="k">for</span> <span class="n">i</span> <span class="ow">in</span> <span class="nb">range</span><span class="p">(</span><span class="n">siteindex</span><span class="p">)]</span>
<span class="n">alldist</span> <span class="o">=</span> <span class="nb">sorted</span><span class="p">(</span><span class="n">alldist</span><span class="p">,</span> <span class="n">key</span><span class="o">=</span><span class="k">lambda</span> <span class="n">x</span><span class="p">:</span> <span class="n">x</span><span class="p">[</span><span class="mi">0</span><span class="p">])</span>
<span class="k">return</span> <span class="p">[</span><span class="n">d</span><span class="p">[</span><span class="mi">1</span><span class="p">]</span> <span class="k">for</span> <span class="n">d</span> <span class="ow">in</span> <span class="n">alldist</span><span class="p">]</span>
<div class="viewcode-block" id="GaussianInput.get_zmatrix"><a class="viewcode-back" href="../../../pymatgen.io.gaussian.html#pymatgen.io.gaussian.GaussianInput.get_zmatrix">[docs]</a> <span class="k">def</span> <span class="nf">get_zmatrix</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span>
<span class="sd">"""</span>
<span class="sd"> Returns a z-matrix representation of the molecule.</span>
<span class="sd"> """</span>
<span class="n">output</span> <span class="o">=</span> <span class="p">[]</span>
<span class="n">outputvar</span> <span class="o">=</span> <span class="p">[]</span>
<span class="k">for</span> <span class="n">i</span><span class="p">,</span> <span class="n">site</span> <span class="ow">in</span> <span class="nb">enumerate</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">_mol</span><span class="p">):</span>
<span class="k">if</span> <span class="n">i</span> <span class="o">==</span> <span class="mi">0</span><span class="p">:</span>
<span class="n">output</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="s2">"</span><span class="si">{}</span><span class="s2">"</span><span class="o">.</span><span class="n">format</span><span class="p">(</span><span class="n">site</span><span class="o">.</span><span class="n">specie</span><span class="p">))</span>
<span class="k">elif</span> <span class="n">i</span> <span class="o">==</span> <span class="mi">1</span><span class="p">:</span>
<span class="n">nn</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">_find_nn_pos_before_site</span><span class="p">(</span><span class="n">i</span><span class="p">)</span>
<span class="n">bondlength</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">_mol</span><span class="o">.</span><span class="n">get_distance</span><span class="p">(</span><span class="n">i</span><span class="p">,</span> <span class="n">nn</span><span class="p">[</span><span class="mi">0</span><span class="p">])</span>
<span class="n">output</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="s2">"</span><span class="si">{}</span><span class="s2"> </span><span class="si">{}</span><span class="s2"> B</span><span class="si">{}</span><span class="s2">"</span><span class="o">.</span><span class="n">format</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">_mol</span><span class="p">[</span><span class="n">i</span><span class="p">]</span><span class="o">.</span><span class="n">specie</span><span class="p">,</span>
<span class="n">nn</span><span class="p">[</span><span class="mi">0</span><span class="p">]</span> <span class="o">+</span> <span class="mi">1</span><span class="p">,</span> <span class="n">i</span><span class="p">))</span>
<span class="n">outputvar</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="s2">"B</span><span class="si">{}</span><span class="s2">=</span><span class="si">{:.6f}</span><span class="s2">"</span><span class="o">.</span><span class="n">format</span><span class="p">(</span><span class="n">i</span><span class="p">,</span> <span class="n">bondlength</span><span class="p">))</span>
<span class="k">elif</span> <span class="n">i</span> <span class="o">==</span> <span class="mi">2</span><span class="p">:</span>
<span class="n">nn</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">_find_nn_pos_before_site</span><span class="p">(</span><span class="n">i</span><span class="p">)</span>
<span class="n">bondlength</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">_mol</span><span class="o">.</span><span class="n">get_distance</span><span class="p">(</span><span class="n">i</span><span class="p">,</span> <span class="n">nn</span><span class="p">[</span><span class="mi">0</span><span class="p">])</span>
<span class="n">angle</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">_mol</span><span class="o">.</span><span class="n">get_angle</span><span class="p">(</span><span class="n">i</span><span class="p">,</span> <span class="n">nn</span><span class="p">[</span><span class="mi">0</span><span class="p">],</span> <span class="n">nn</span><span class="p">[</span><span class="mi">1</span><span class="p">])</span>
<span class="n">output</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="s2">"</span><span class="si">{}</span><span class="s2"> </span><span class="si">{}</span><span class="s2"> B</span><span class="si">{}</span><span class="s2"> </span><span class="si">{}</span><span class="s2"> A</span><span class="si">{}</span><span class="s2">"</span><span class="o">.</span><span class="n">format</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">_mol</span><span class="p">[</span><span class="n">i</span><span class="p">]</span><span class="o">.</span><span class="n">specie</span><span class="p">,</span>
<span class="n">nn</span><span class="p">[</span><span class="mi">0</span><span class="p">]</span> <span class="o">+</span> <span class="mi">1</span><span class="p">,</span> <span class="n">i</span><span class="p">,</span>
<span class="n">nn</span><span class="p">[</span><span class="mi">1</span><span class="p">]</span> <span class="o">+</span> <span class="mi">1</span><span class="p">,</span> <span class="n">i</span><span class="p">))</span>
<span class="n">outputvar</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="s2">"B</span><span class="si">{}</span><span class="s2">=</span><span class="si">{:.6f}</span><span class="s2">"</span><span class="o">.</span><span class="n">format</span><span class="p">(</span><span class="n">i</span><span class="p">,</span> <span class="n">bondlength</span><span class="p">))</span>
<span class="n">outputvar</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="s2">"A</span><span class="si">{}</span><span class="s2">=</span><span class="si">{:.6f}</span><span class="s2">"</span><span class="o">.</span><span class="n">format</span><span class="p">(</span><span class="n">i</span><span class="p">,</span> <span class="n">angle</span><span class="p">))</span>
<span class="k">else</span><span class="p">:</span>
<span class="n">nn</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">_find_nn_pos_before_site</span><span class="p">(</span><span class="n">i</span><span class="p">)</span>
<span class="n">bondlength</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">_mol</span><span class="o">.</span><span class="n">get_distance</span><span class="p">(</span><span class="n">i</span><span class="p">,</span> <span class="n">nn</span><span class="p">[</span><span class="mi">0</span><span class="p">])</span>
<span class="n">angle</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">_mol</span><span class="o">.</span><span class="n">get_angle</span><span class="p">(</span><span class="n">i</span><span class="p">,</span> <span class="n">nn</span><span class="p">[</span><span class="mi">0</span><span class="p">],</span> <span class="n">nn</span><span class="p">[</span><span class="mi">1</span><span class="p">])</span>
<span class="n">dih</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">_mol</span><span class="o">.</span><span class="n">get_dihedral</span><span class="p">(</span><span class="n">i</span><span class="p">,</span> <span class="n">nn</span><span class="p">[</span><span class="mi">0</span><span class="p">],</span> <span class="n">nn</span><span class="p">[</span><span class="mi">1</span><span class="p">],</span> <span class="n">nn</span><span class="p">[</span><span class="mi">2</span><span class="p">])</span>
<span class="n">output</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="s2">"</span><span class="si">{}</span><span class="s2"> </span><span class="si">{}</span><span class="s2"> B</span><span class="si">{}</span><span class="s2"> </span><span class="si">{}</span><span class="s2"> A</span><span class="si">{}</span><span class="s2"> </span><span class="si">{}</span><span class="s2"> D</span><span class="si">{}</span><span class="s2">"</span>
<span class="o">.</span><span class="n">format</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">_mol</span><span class="p">[</span><span class="n">i</span><span class="p">]</span><span class="o">.</span><span class="n">specie</span><span class="p">,</span> <span class="n">nn</span><span class="p">[</span><span class="mi">0</span><span class="p">]</span> <span class="o">+</span> <span class="mi">1</span><span class="p">,</span> <span class="n">i</span><span class="p">,</span>
<span class="n">nn</span><span class="p">[</span><span class="mi">1</span><span class="p">]</span> <span class="o">+</span> <span class="mi">1</span><span class="p">,</span> <span class="n">i</span><span class="p">,</span> <span class="n">nn</span><span class="p">[</span><span class="mi">2</span><span class="p">]</span> <span class="o">+</span> <span class="mi">1</span><span class="p">,</span> <span class="n">i</span><span class="p">))</span>
<span class="n">outputvar</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="s2">"B</span><span class="si">{}</span><span class="s2">=</span><span class="si">{:.6f}</span><span class="s2">"</span><span class="o">.</span><span class="n">format</span><span class="p">(</span><span class="n">i</span><span class="p">,</span> <span class="n">bondlength</span><span class="p">))</span>
<span class="n">outputvar</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="s2">"A</span><span class="si">{}</span><span class="s2">=</span><span class="si">{:.6f}</span><span class="s2">"</span><span class="o">.</span><span class="n">format</span><span class="p">(</span><span class="n">i</span><span class="p">,</span> <span class="n">angle</span><span class="p">))</span>
<span class="n">outputvar</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="s2">"D</span><span class="si">{}</span><span class="s2">=</span><span class="si">{:.6f}</span><span class="s2">"</span><span class="o">.</span><span class="n">format</span><span class="p">(</span><span class="n">i</span><span class="p">,</span> <span class="n">dih</span><span class="p">))</span></div>
<span class="k">return</span> <span class="s2">"</span><span class="se">\n</span><span class="s2">"</span><span class="o">.</span><span class="n">join</span><span class="p">(</span><span class="n">output</span><span class="p">)</span> <span class="o">+</span> <span class="s2">"</span><span class="se">\n\n</span><span class="s2">"</span> <span class="o">+</span> <span class="s2">"</span><span class="se">\n</span><span class="s2">"</span><span class="o">.</span><span class="n">join</span><span class="p">(</span><span class="n">outputvar</span><span class="p">)</span>
<div class="viewcode-block" id="GaussianInput.get_cart_coords"><a class="viewcode-back" href="../../../pymatgen.io.gaussian.html#pymatgen.io.gaussian.GaussianInput.get_cart_coords">[docs]</a> <span class="k">def</span> <span class="nf">get_cart_coords</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span>
<span class="sd">"""</span>
<span class="sd"> Return the cartesian coordinates of the molecule</span>
<span class="sd"> """</span>
<span class="k">def</span> <span class="nf">to_s</span><span class="p">(</span><span class="n">x</span><span class="p">):</span>
<span class="k">return</span> <span class="s2">"</span><span class="si">%0.6f</span><span class="s2">"</span> <span class="o">%</span> <span class="n">x</span>
<span class="n">outs</span> <span class="o">=</span> <span class="p">[]</span>
<span class="k">for</span> <span class="n">i</span><span class="p">,</span> <span class="n">site</span> <span class="ow">in</span> <span class="nb">enumerate</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">_mol</span><span class="p">):</span>
<span class="n">outs</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="s2">" "</span><span class="o">.</span><span class="n">join</span><span class="p">([</span><span class="n">site</span><span class="o">.</span><span class="n">species_string</span><span class="p">,</span>
<span class="s2">" "</span><span class="o">.</span><span class="n">join</span><span class="p">([</span><span class="n">to_s</span><span class="p">(</span><span class="n">j</span><span class="p">)</span> <span class="k">for</span> <span class="n">j</span> <span class="ow">in</span> <span class="n">site</span><span class="o">.</span><span class="n">coords</span><span class="p">])]))</span></div>
<span class="k">return</span> <span class="s2">"</span><span class="se">\n</span><span class="s2">"</span><span class="o">.</span><span class="n">join</span><span class="p">(</span><span class="n">outs</span><span class="p">)</span>
<span class="k">def</span> <span class="nf">__str__</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span>
<span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">to_string</span><span class="p">()</span>
<div class="viewcode-block" id="GaussianInput.to_string"><a class="viewcode-back" href="../../../pymatgen.io.gaussian.html#pymatgen.io.gaussian.GaussianInput.to_string">[docs]</a> <span class="k">def</span> <span class="nf">to_string</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">cart_coords</span><span class="o">=</span><span class="kc">False</span><span class="p">):</span>
<span class="sd">"""</span>
<span class="sd"> Return GaussianInput string</span>
<span class="sd"> Option: whe cart_coords sets to True return the cartesian coordinates</span>
<span class="sd"> instead of the z-matrix</span>
<span class="sd"> """</span>
<span class="k">def</span> <span class="nf">para_dict_to_string</span><span class="p">(</span><span class="n">para</span><span class="p">,</span> <span class="n">joiner</span><span class="o">=</span><span class="s2">" "</span><span class="p">):</span>
<span class="n">para_str</span> <span class="o">=</span> <span class="p">[]</span>
<span class="c1"># sorted is only done to make unittests work reliably</span>
<span class="k">for</span> <span class="n">par</span><span class="p">,</span> <span class="n">val</span> <span class="ow">in</span> <span class="nb">sorted</span><span class="p">(</span><span class="n">para</span><span class="o">.</span><span class="n">items</span><span class="p">()):</span>
<span class="k">if</span> <span class="n">val</span> <span class="ow">is</span> <span class="kc">None</span> <span class="ow">or</span> <span class="n">val</span> <span class="o">==</span> <span class="s2">""</span><span class="p">:</span>
<span class="n">para_str</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="n">par</span><span class="p">)</span>
<span class="k">elif</span> <span class="nb">isinstance</span><span class="p">(</span><span class="n">val</span><span class="p">,</span> <span class="nb">dict</span><span class="p">):</span>
<span class="n">val_str</span> <span class="o">=</span> <span class="n">para_dict_to_string</span><span class="p">(</span><span class="n">val</span><span class="p">,</span> <span class="n">joiner</span><span class="o">=</span><span class="s2">","</span><span class="p">)</span>
<span class="n">para_str</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="s2">"</span><span class="si">{}</span><span class="s2">=(</span><span class="si">{}</span><span class="s2">)"</span><span class="o">.</span><span class="n">format</span><span class="p">(</span><span class="n">par</span><span class="p">,</span> <span class="n">val_str</span><span class="p">))</span>
<span class="k">else</span><span class="p">:</span>
<span class="n">para_str</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="s2">"</span><span class="si">{}</span><span class="s2">=</span><span class="si">{}</span><span class="s2">"</span><span class="o">.</span><span class="n">format</span><span class="p">(</span><span class="n">par</span><span class="p">,</span> <span class="n">val</span><span class="p">))</span>
<span class="k">return</span> <span class="n">joiner</span><span class="o">.</span><span class="n">join</span><span class="p">(</span><span class="n">para_str</span><span class="p">)</span>
<span class="n">output</span> <span class="o">=</span> <span class="p">[]</span>
<span class="k">if</span> <span class="bp">self</span><span class="o">.</span><span class="n">link0_parameters</span><span class="p">:</span>
<span class="n">output</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="n">para_dict_to_string</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">link0_parameters</span><span class="p">,</span> <span class="s2">"</span><span class="se">\n</span><span class="s2">"</span><span class="p">))</span>
<span class="n">output</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="s2">"</span><span class="si">{diez}</span><span class="s2"> </span><span class="si">{func}</span><span class="s2">/</span><span class="si">{bset}</span><span class="s2"> </span><span class="si">{route}</span><span class="s2">"</span>
<span class="o">.</span><span class="n">format</span><span class="p">(</span><span class="n">diez</span><span class="o">=</span><span class="bp">self</span><span class="o">.</span><span class="n">dieze_tag</span><span class="p">,</span> <span class="n">func</span><span class="o">=</span><span class="bp">self</span><span class="o">.</span><span class="n">functional</span><span class="p">,</span>
<span class="n">bset</span><span class="o">=</span><span class="bp">self</span><span class="o">.</span><span class="n">basis_set</span><span class="p">,</span>
<span class="n">route</span><span class="o">=</span><span class="n">para_dict_to_string</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">route_parameters</span><span class="p">))</span>
<span class="p">)</span>
<span class="n">output</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="s2">""</span><span class="p">)</span>
<span class="n">output</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">title</span><span class="p">)</span>
<span class="n">output</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="s2">""</span><span class="p">)</span>
<span class="n">output</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="s2">"</span><span class="si">{}</span><span class="s2"> </span><span class="si">{}</span><span class="s2">"</span><span class="o">.</span><span class="n">format</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">charge</span><span class="p">,</span> <span class="bp">self</span><span class="o">.</span><span class="n">spin_multiplicity</span><span class="p">))</span>
<span class="k">if</span> <span class="nb">isinstance</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">_mol</span><span class="p">,</span> <span class="n">Molecule</span><span class="p">):</span>
<span class="k">if</span> <span class="n">cart_coords</span> <span class="ow">is</span> <span class="kc">True</span><span class="p">:</span>
<span class="n">output</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">get_cart_coords</span><span class="p">())</span>
<span class="k">else</span><span class="p">:</span>
<span class="n">output</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">get_zmatrix</span><span class="p">())</span>
<span class="k">else</span><span class="p">:</span>
<span class="n">output</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="nb">str</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">_mol</span><span class="p">))</span>
<span class="n">output</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="s2">""</span><span class="p">)</span>
<span class="k">if</span> <span class="bp">self</span><span class="o">.</span><span class="n">gen_basis</span> <span class="ow">is</span> <span class="ow">not</span> <span class="kc">None</span><span class="p">:</span>
<span class="n">output</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="s2">"</span><span class="si">{:s}</span><span class="se">\n</span><span class="s2">"</span><span class="o">.</span><span class="n">format</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">gen_basis</span><span class="p">))</span>
<span class="n">output</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="n">para_dict_to_string</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">input_parameters</span><span class="p">,</span> <span class="s2">"</span><span class="se">\n</span><span class="s2">"</span><span class="p">))</span>
<span class="n">output</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="s2">"</span><span class="se">\n</span><span class="s2">"</span><span class="p">)</span></div>
<span class="k">return</span> <span class="s2">"</span><span class="se">\n</span><span class="s2">"</span><span class="o">.</span><span class="n">join</span><span class="p">(</span><span class="n">output</span><span class="p">)</span>
<div class="viewcode-block" id="GaussianInput.write_file"><a class="viewcode-back" href="../../../pymatgen.io.gaussian.html#pymatgen.io.gaussian.GaussianInput.write_file">[docs]</a> <span class="k">def</span> <span class="nf">write_file</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">filename</span><span class="p">,</span> <span class="n">cart_coords</span><span class="o">=</span><span class="kc">False</span><span class="p">):</span>
<span class="sd">"""</span>
<span class="sd"> Write the input string into a file</span>
<span class="sd"> Option: see __str__ method</span>
<span class="sd"> """</span>
<span class="k">with</span> <span class="n">zopen</span><span class="p">(</span><span class="n">filename</span><span class="p">,</span> <span class="s2">"w"</span><span class="p">)</span> <span class="k">as</span> <span class="n">f</span><span class="p">:</span></div>
<span class="n">f</span><span class="o">.</span><span class="n">write</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">to_string</span><span class="p">(</span><span class="n">cart_coords</span><span class="p">))</span>
<div class="viewcode-block" id="GaussianInput.as_dict"><a class="viewcode-back" href="../../../pymatgen.io.gaussian.html#pymatgen.io.gaussian.GaussianInput.as_dict">[docs]</a> <span class="k">def</span> <span class="nf">as_dict</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span>
<span class="k">return</span> <span class="p">{</span><span class="s2">"@module"</span><span class="p">:</span> <span class="bp">self</span><span class="o">.</span><span class="vm">__class__</span><span class="o">.</span><span class="vm">__module__</span><span class="p">,</span>
<span class="s2">"@class"</span><span class="p">:</span> <span class="bp">self</span><span class="o">.</span><span class="vm">__class__</span><span class="o">.</span><span class="vm">__name__</span><span class="p">,</span>
<span class="s2">"molecule"</span><span class="p">:</span> <span class="bp">self</span><span class="o">.</span><span class="n">molecule</span><span class="o">.</span><span class="n">as_dict</span><span class="p">(),</span>
<span class="s2">"functional"</span><span class="p">:</span> <span class="bp">self</span><span class="o">.</span><span class="n">functional</span><span class="p">,</span>
<span class="s2">"basis_set"</span><span class="p">:</span> <span class="bp">self</span><span class="o">.</span><span class="n">basis_set</span><span class="p">,</span>
<span class="s2">"route_parameters"</span><span class="p">:</span> <span class="bp">self</span><span class="o">.</span><span class="n">route_parameters</span><span class="p">,</span>
<span class="s2">"title"</span><span class="p">:</span> <span class="bp">self</span><span class="o">.</span><span class="n">title</span><span class="p">,</span>
<span class="s2">"charge"</span><span class="p">:</span> <span class="bp">self</span><span class="o">.</span><span class="n">charge</span><span class="p">,</span>
<span class="s2">"spin_multiplicity"</span><span class="p">:</span> <span class="bp">self</span><span class="o">.</span><span class="n">spin_multiplicity</span><span class="p">,</span>
<span class="s2">"input_parameters"</span><span class="p">:</span> <span class="bp">self</span><span class="o">.</span><span class="n">input_parameters</span><span class="p">,</span>
<span class="s2">"link0_parameters"</span><span class="p">:</span> <span class="bp">self</span><span class="o">.</span><span class="n">link0_parameters</span><span class="p">,</span></div>
<span class="s2">"dieze_tag"</span><span class="p">:</span> <span class="bp">self</span><span class="o">.</span><span class="n">dieze_tag</span><span class="p">}</span>
<div class="viewcode-block" id="GaussianInput.from_dict"><a class="viewcode-back" href="../../../pymatgen.io.gaussian.html#pymatgen.io.gaussian.GaussianInput.from_dict">[docs]</a> <span class="nd">@classmethod</span>
<span class="k">def</span> <span class="nf">from_dict</span><span class="p">(</span><span class="bp">cls</span><span class="p">,</span> <span class="n">d</span><span class="p">):</span>
<span class="k">return</span> <span class="n">GaussianInput</span><span class="p">(</span><span class="n">mol</span><span class="o">=</span><span class="n">Molecule</span><span class="o">.</span><span class="n">from_dict</span><span class="p">(</span><span class="n">d</span><span class="p">[</span><span class="s2">"molecule"</span><span class="p">]),</span>
<span class="n">functional</span><span class="o">=</span><span class="n">d</span><span class="p">[</span><span class="s2">"functional"</span><span class="p">],</span>
<span class="n">basis_set</span><span class="o">=</span><span class="n">d</span><span class="p">[</span><span class="s2">"basis_set"</span><span class="p">],</span>
<span class="n">route_parameters</span><span class="o">=</span><span class="n">d</span><span class="p">[</span><span class="s2">"route_parameters"</span><span class="p">],</span>
<span class="n">title</span><span class="o">=</span><span class="n">d</span><span class="p">[</span><span class="s2">"title"</span><span class="p">],</span>
<span class="n">charge</span><span class="o">=</span><span class="n">d</span><span class="p">[</span><span class="s2">"charge"</span><span class="p">],</span>
<span class="n">spin_multiplicity</span><span class="o">=</span><span class="n">d</span><span class="p">[</span><span class="s2">"spin_multiplicity"</span><span class="p">],</span>
<span class="n">input_parameters</span><span class="o">=</span><span class="n">d</span><span class="p">[</span><span class="s2">"input_parameters"</span><span class="p">],</span></div></div>
<span class="n">link0_parameters</span><span class="o">=</span><span class="n">d</span><span class="p">[</span><span class="s2">"link0_parameters"</span><span class="p">])</span>
<div class="viewcode-block" id="GaussianOutput"><a class="viewcode-back" href="../../../pymatgen.io.gaussian.html#pymatgen.io.gaussian.GaussianOutput">[docs]</a><span class="k">class</span> <span class="nc">GaussianOutput</span><span class="p">(</span><span class="nb">object</span><span class="p">):</span>
<span class="sd">"""</span>
<span class="sd"> Parser for Gaussian output files.</span>
<span class="sd"> Args:</span>
<span class="sd"> filename: Filename of Gaussian output file.</span>
<span class="sd"> .. note::</span>
<span class="sd"> Still in early beta.</span>
<span class="sd"> Attributes:</span>
<span class="sd"> .. attribute:: structures</span>
<span class="sd"> All structures from the calculation in the standard orientation. If the</span>
<span class="sd"> symmetry is not considered, the standard orientation is not printed out</span>
<span class="sd"> and the input orientation is used instead. Check the `standard_orientation`</span>
<span class="sd"> attribute.</span>
<span class="sd"> .. attribute:: structures_input_orientation</span>
<span class="sd"> All structures from the calculation in the input orientation.</span>
<span class="sd"> .. attribute:: energies</span>
<span class="sd"> All energies from the calculation.</span>
<span class="sd"> .. attribute:: eigenvalues</span>
<span class="sd"> List of eigenvalues for the last geometry</span>
<span class="sd"> .. attribute:: MO_coefficients</span>
<span class="sd"> Matrix of MO coefficients for the last geometry</span>
<span class="sd"> .. attribute:: cart_forces</span>
<span class="sd"> All cartesian forces from the calculation.</span>
<span class="sd"> .. attribute:: frequencies</span>
<span class="sd"> A list for each freq calculation and for each mode of a dict with</span>
<span class="sd"> {</span>
<span class="sd"> "frequency": freq in cm-1,</span>
<span class="sd"> "symmetry": symmetry tag</span>
<span class="sd"> "r_mass": Reduce mass,</span>
<span class="sd"> "f_constant": force constant,</span>
<span class="sd"> "IR_intensity": IR Intensity,</span>
<span class="sd"> "mode": normal mode</span>
<span class="sd"> }</span>
<span class="sd"> The normal mode is a 1D vector of dx, dy dz of each atom.</span>
<span class="sd"> .. attribute:: hessian</span>
<span class="sd"> Matrix of second derivatives of the energy with respect to cartesian</span>
<span class="sd"> coordinates in the **input orientation** frame. Need #P in the</span>
<span class="sd"> route section in order to be in the output.</span>
<span class="sd"> .. attribute:: properly_terminated</span>
<span class="sd"> True if run has properly terminated</span>
<span class="sd"> .. attribute:: is_pcm</span>
<span class="sd"> True if run is a PCM run.</span>
<span class="sd"> .. attribute:: is_spin</span>
<span class="sd"> True if it is an unrestricted run</span>
<span class="sd"> .. attribute:: stationary_type</span>
<span class="sd"> If it is a relaxation run, indicates whether it is a minimum (Minimum)</span>
<span class="sd"> or a saddle point ("Saddle").</span>
<span class="sd"> .. attribute:: corrections</span>
<span class="sd"> Thermochemical corrections if this run is a Freq run as a dict. Keys</span>
<span class="sd"> are "Zero-point", "Thermal", "Enthalpy" and "Gibbs Free Energy"</span>
<span class="sd"> .. attribute:: functional</span>
<span class="sd"> Functional used in the run.</span>
<span class="sd"> .. attribute:: basis_set</span>
<span class="sd"> Basis set used in the run</span>
<span class="sd"> .. attribute:: route</span>
<span class="sd"> Additional route parameters as a dict. For example,</span>
<span class="sd"> {'SP':"", "SCF":"Tight"}</span>
<span class="sd"> .. attribute:: dieze_tag</span>
<span class="sd"> # preceding the route line, e.g. "#P"</span>
<span class="sd"> .. attribute:: link0</span>
<span class="sd"> Link0 parameters as a dict. E.g., {"%mem": "1000MW"}</span>
<span class="sd"> .. attribute:: charge</span>
<span class="sd"> Charge for structure</span>
<span class="sd"> .. attribute:: spin_multiplicity</span>
<span class="sd"> Spin multiplicity for structure</span>
<span class="sd"> .. attribute:: num_basis_func</span>
<span class="sd"> Number of basis functions in the run.</span>
<span class="sd"> .. attribute:: electrons</span>
<span class="sd"> number of alpha and beta electrons as (N alpha, N beta)</span>
<span class="sd"> .. attribute:: pcm</span>
<span class="sd"> PCM parameters and output if available.</span>
<span class="sd"> .. attribute:: errors</span>
<span class="sd"> error if not properly terminated (list to be completed in error_defs)</span>
<span class="sd"> .. attribute:: Mulliken_charges</span>
<span class="sd"> Mulliken atomic charges</span>
<span class="sd"> .. attribute:: eigenvectors</span>
<span class="sd"> Matrix of shape (num_basis_func, num_basis_func). Each column is an</span>
<span class="sd"> eigenvectors and contains AO coefficients of an MO.</span>
<span class="sd"> eigenvectors[Spin] = mat(num_basis_func, num_basis_func)</span>
<span class="sd"> .. attribute:: molecular_orbital</span>
<span class="sd"> MO development coefficients on AO in a more convenient array dict</span>
<span class="sd"> for each atom and basis set label.</span>
<span class="sd"> mo[Spin][OM j][atom i] = {AO_k: coeff, AO_k: coeff ... }</span>
<span class="sd"> .. attribute:: atom_basis_labels</span>
<span class="sd"> Labels of AO for each atoms. These labels are those used in the output</span>
<span class="sd"> of molecular orbital coefficients (POP=Full) and in the</span>
<span class="sd"> molecular_orbital array dict.</span>
<span class="sd"> atom_basis_labels[iatom] = [AO_k, AO_k, ...]</span>
<span class="sd"> .. attribute:: resumes</span>
<span class="sd"> List of gaussian data resume given at the end of the output file before</span>
<span class="sd"> the quotation. The resumes are given as string.</span>
<span class="sd"> .. attribute:: title</span>
<span class="sd"> Title of the gaussian run.</span>
<span class="sd"> .. attribute:: standard_orientation</span>
<span class="sd"> If True, the geometries stored in the structures are in the standard</span>
<span class="sd"> orientation. Else, the geometries are in the input orientation.</span>
<span class="sd"> .. attribute:: bond_orders</span>
<span class="sd"> Dict of bond order values read in the output file such as:</span>
<span class="sd"> {(0, 1): 0.8709, (1, 6): 1.234, ...}</span>
<span class="sd"> The keys are the atom indexes and the values are the Wiberg bond indexes</span>
<span class="sd"> that are printed using `pop=NBOREAD` and `$nbo bndidx $end`.</span>
<span class="sd"> Methods:</span>
<span class="sd"> .. method:: to_input()</span>
<span class="sd"> Return a GaussianInput object using the last geometry and the same</span>
<span class="sd"> calculation parameters.</span>
<span class="sd"> .. method:: read_scan()</span>
<span class="sd"> Read a potential energy surface from a gaussian scan calculation.</span>
<span class="sd"> .. method:: get_scan_plot()</span>
<span class="sd"> Get a matplotlib plot of the potential energy surface</span>
<span class="sd"> .. method:: save_scan_plot()</span>
<span class="sd"> Save a matplotlib plot of the potential energy surface to a file</span>
<span class="sd"> """</span>
<span class="k">def</span> <span class="nf">__init__</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">filename</span><span class="p">):</span>
<span class="bp">self</span><span class="o">.</span><span class="n">filename</span> <span class="o">=</span> <span class="n">filename</span>
<span class="bp">self</span><span class="o">.</span><span class="n">_parse</span><span class="p">(</span><span class="n">filename</span><span class="p">)</span>
<span class="nd">@property</span>
<span class="k">def</span> <span class="nf">final_energy</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span>
<span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">energies</span><span class="p">[</span><span class="o">-</span><span class="mi">1</span><span class="p">]</span>
<span class="nd">@property</span>
<span class="k">def</span> <span class="nf">final_structure</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span>
<span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">structures</span><span class="p">[</span><span class="o">-</span><span class="mi">1</span><span class="p">]</span>
<span class="k">def</span> <span class="nf">_parse</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">filename</span><span class="p">):</span>
<span class="n">start_patt</span> <span class="o">=</span> <span class="n">re</span><span class="o">.</span><span class="n">compile</span><span class="p">(</span><span class="sa">r</span><span class="s2">" \(Enter \S+l101\.exe\)"</span><span class="p">)</span>
<span class="n">route_patt</span> <span class="o">=</span> <span class="n">re</span><span class="o">.</span><span class="n">compile</span><span class="p">(</span><span class="sa">r</span><span class="s2">" #[pPnNtT]*.*"</span><span class="p">)</span>
<span class="n">link0_patt</span> <span class="o">=</span> <span class="n">re</span><span class="o">.</span><span class="n">compile</span><span class="p">(</span><span class="sa">r</span><span class="s2">"^\s(%.+)\s*=\s*(.+)"</span><span class="p">)</span>
<span class="n">charge_mul_patt</span> <span class="o">=</span> <span class="n">re</span><span class="o">.</span><span class="n">compile</span><span class="p">(</span><span class="sa">r</span><span class="s2">"Charge\s+=\s*([-\d]+)\s+"</span>
<span class="sa">r</span><span class="s2">"Multiplicity\s+=\s*(\d+)"</span><span class="p">)</span>
<span class="n">num_basis_func_patt</span> <span class="o">=</span> <span class="n">re</span><span class="o">.</span><span class="n">compile</span><span class="p">(</span><span class="sa">r</span><span class="s2">"([0-9]+)\s+basis functions"</span><span class="p">)</span>
<span class="n">num_elec_patt</span> <span class="o">=</span> <span class="n">re</span><span class="o">.</span><span class="n">compile</span><span class="p">(</span><span class="sa">r</span><span class="s2">"(\d+)\s+alpha electrons\s+(\d+)\s+beta electrons"</span><span class="p">)</span>
<span class="n">pcm_patt</span> <span class="o">=</span> <span class="n">re</span><span class="o">.</span><span class="n">compile</span><span class="p">(</span><span class="sa">r</span><span class="s2">"Polarizable Continuum Model"</span><span class="p">)</span>
<span class="n">stat_type_patt</span> <span class="o">=</span> <span class="n">re</span><span class="o">.</span><span class="n">compile</span><span class="p">(</span><span class="sa">r</span><span class="s2">"imaginary frequencies"</span><span class="p">)</span>
<span class="n">scf_patt</span> <span class="o">=</span> <span class="n">re</span><span class="o">.</span><span class="n">compile</span><span class="p">(</span><span class="sa">r</span><span class="s2">"E\(.*\)\s*=\s*([-\.\d]+)\s+"</span><span class="p">)</span>
<span class="n">mp2_patt</span> <span class="o">=</span> <span class="n">re</span><span class="o">.</span><span class="n">compile</span><span class="p">(</span><span class="sa">r</span><span class="s2">"EUMP2\s*=\s*(.*)"</span><span class="p">)</span>
<span class="n">oniom_patt</span> <span class="o">=</span> <span class="n">re</span><span class="o">.</span><span class="n">compile</span><span class="p">(</span><span class="sa">r</span><span class="s2">"ONIOM:\s+extrapolated energy\s*=\s*(.*)"</span><span class="p">)</span>
<span class="n">termination_patt</span> <span class="o">=</span> <span class="n">re</span><span class="o">.</span><span class="n">compile</span><span class="p">(</span><span class="sa">r</span><span class="s2">"(Normal|Error) termination"</span><span class="p">)</span>
<span class="n">error_patt</span> <span class="o">=</span> <span class="n">re</span><span class="o">.</span><span class="n">compile</span><span class="p">(</span>
<span class="sa">r</span><span class="s2">"(! Non-Optimized Parameters !|Convergence failure)"</span><span class="p">)</span>
<span class="n">mulliken_patt</span> <span class="o">=</span> <span class="n">re</span><span class="o">.</span><span class="n">compile</span><span class="p">(</span>
<span class="sa">r</span><span class="s2">"^\s*(Mulliken charges|Mulliken atomic charges)"</span><span class="p">)</span>
<span class="n">mulliken_charge_patt</span> <span class="o">=</span> <span class="n">re</span><span class="o">.</span><span class="n">compile</span><span class="p">(</span>
<span class="sa">r</span><span class="s1">'^\s+(\d+)\s+([A-Z][a-z]?)\s*(\S*)'</span><span class="p">)</span>
<span class="n">end_mulliken_patt</span> <span class="o">=</span> <span class="n">re</span><span class="o">.</span><span class="n">compile</span><span class="p">(</span>
<span class="sa">r</span><span class="s1">'(Sum of Mulliken )(.*)(charges)\s*=\s*(\D)'</span><span class="p">)</span>
<span class="n">std_orientation_patt</span> <span class="o">=</span> <span class="n">re</span><span class="o">.</span><span class="n">compile</span><span class="p">(</span><span class="sa">r</span><span class="s2">"Standard orientation"</span><span class="p">)</span>
<span class="n">input_orientation_patt</span> <span class="o">=</span> <span class="n">re</span><span class="o">.</span><span class="n">compile</span><span class="p">(</span><span class="sa">r</span><span class="s2">"Input orientation"</span><span class="p">)</span>
<span class="n">end_patt</span> <span class="o">=</span> <span class="n">re</span><span class="o">.</span><span class="n">compile</span><span class="p">(</span><span class="sa">r</span><span class="s2">"--+"</span><span class="p">)</span>
<span class="n">orbital_patt</span> <span class="o">=</span> <span class="n">re</span><span class="o">.</span><span class="n">compile</span><span class="p">(</span><span class="sa">r</span><span class="s2">"(Alpha|Beta)\s*\S+\s*eigenvalues --(.*)"</span><span class="p">)</span>
<span class="n">thermo_patt</span> <span class="o">=</span> <span class="n">re</span><span class="o">.</span><span class="n">compile</span><span class="p">(</span><span class="sa">r</span><span class="s2">"(Zero-point|Thermal) correction(.*)="</span>
<span class="sa">r</span><span class="s2">"\s+([\d\.-]+)"</span><span class="p">)</span>
<span class="n">forces_on_patt</span> <span class="o">=</span> <span class="n">re</span><span class="o">.</span><span class="n">compile</span><span class="p">(</span>
<span class="sa">r</span><span class="s2">"Center\s+Atomic\s+Forces\s+\(Hartrees/Bohr\)"</span><span class="p">)</span>
<span class="n">forces_off_patt</span> <span class="o">=</span> <span class="n">re</span><span class="o">.</span><span class="n">compile</span><span class="p">(</span><span class="sa">r</span><span class="s2">"Cartesian\s+Forces:\s+Max.*RMS.*"</span><span class="p">)</span>
<span class="n">forces_patt</span> <span class="o">=</span> <span class="n">re</span><span class="o">.</span><span class="n">compile</span><span class="p">(</span>
<span class="sa">r</span><span class="s2">"\s+(\d+)\s+(\d+)\s+([0-9\.-]+)\s+([0-9\.-]+)\s+([0-9\.-]+)"</span><span class="p">)</span>
<span class="n">freq_on_patt</span> <span class="o">=</span> <span class="n">re</span><span class="o">.</span><span class="n">compile</span><span class="p">(</span>
<span class="sa">r</span><span class="s2">"Harmonic\sfrequencies\s+\(cm\*\*-1\),\sIR\sintensities.*Raman.*"</span><span class="p">)</span>
<span class="n">freq_patt</span> <span class="o">=</span> <span class="n">re</span><span class="o">.</span><span class="n">compile</span><span class="p">(</span><span class="sa">r</span><span class="s2">"Frequencies\s--\s+(.*)"</span><span class="p">)</span>
<span class="n">normal_mode_patt</span> <span class="o">=</span> <span class="n">re</span><span class="o">.</span><span class="n">compile</span><span class="p">(</span>
<span class="sa">r</span><span class="s2">"\s+(\d+)\s+(\d+)\s+([0-9\.-]{4,5})\s+([0-9\.-]{4,5}).*"</span><span class="p">)</span>
<span class="n">mo_coeff_patt</span> <span class="o">=</span> <span class="n">re</span><span class="o">.</span><span class="n">compile</span><span class="p">(</span><span class="sa">r</span><span class="s2">"Molecular Orbital Coefficients:"</span><span class="p">)</span>
<span class="n">mo_coeff_name_patt</span> <span class="o">=</span> <span class="n">re</span><span class="o">.</span><span class="n">compile</span><span class="p">(</span><span class="sa">r</span><span class="s2">"\d+\s((\d+|\s+)\s+([a-zA-Z]{1,2}|\s+))\s+(\d+\S+)"</span><span class="p">)</span>
<span class="n">hessian_patt</span> <span class="o">=</span> <span class="n">re</span><span class="o">.</span><span class="n">compile</span><span class="p">(</span><span class="sa">r</span><span class="s2">"Force constants in Cartesian coordinates:"</span><span class="p">)</span>
<span class="n">resume_patt</span> <span class="o">=</span> <span class="n">re</span><span class="o">.</span><span class="n">compile</span><span class="p">(</span><span class="sa">r</span><span class="s2">"^\s1</span><span class="se">\\</span><span class="s2">1</span><span class="se">\\</span><span class="s2">GINC-\S*"</span><span class="p">)</span>
<span class="n">resume_end_patt</span> <span class="o">=</span> <span class="n">re</span><span class="o">.</span><span class="n">compile</span><span class="p">(</span><span class="sa">r</span><span class="s2">"^\s.*</span><span class="se">\\\\</span><span class="s2">@"</span><span class="p">)</span>
<span class="n">bond_order_patt</span> <span class="o">=</span> <span class="n">re</span><span class="o">.</span><span class="n">compile</span><span class="p">(</span><span class="sa">r</span><span class="s2">"Wiberg bond index matrix in the NAO basis:"</span><span class="p">)</span>
<span class="bp">self</span><span class="o">.</span><span class="n">properly_terminated</span> <span class="o">=</span> <span class="kc">False</span>
<span class="bp">self</span><span class="o">.</span><span class="n">is_pcm</span> <span class="o">=</span> <span class="kc">False</span>
<span class="bp">self</span><span class="o">.</span><span class="n">stationary_type</span> <span class="o">=</span> <span class="s2">"Minimum"</span>
<span class="bp">self</span><span class="o">.</span><span class="n">corrections</span> <span class="o">=</span> <span class="p">{}</span>
<span class="bp">self</span><span class="o">.</span><span class="n">energies</span> <span class="o">=</span> <span class="p">[]</span>
<span class="bp">self</span><span class="o">.</span><span class="n">pcm</span> <span class="o">=</span> <span class="kc">None</span>
<span class="bp">self</span><span class="o">.</span><span class="n">errors</span> <span class="o">=</span> <span class="p">[]</span>
<span class="bp">self</span><span class="o">.</span><span class="n">Mulliken_charges</span> <span class="o">=</span> <span class="p">{}</span>
<span class="bp">self</span><span class="o">.</span><span class="n">link0</span> <span class="o">=</span> <span class="p">{}</span>
<span class="bp">self</span><span class="o">.</span><span class="n">cart_forces</span> <span class="o">=</span> <span class="p">[]</span>
<span class="bp">self</span><span class="o">.</span><span class="n">frequencies</span> <span class="o">=</span> <span class="p">[]</span>
<span class="bp">self</span><span class="o">.</span><span class="n">eigenvalues</span> <span class="o">=</span> <span class="p">[]</span>
<span class="bp">self</span><span class="o">.</span><span class="n">is_spin</span> <span class="o">=</span> <span class="kc">False</span>
<span class="bp">self</span><span class="o">.</span><span class="n">hessian</span> <span class="o">=</span> <span class="kc">None</span>
<span class="bp">self</span><span class="o">.</span><span class="n">resumes</span> <span class="o">=</span> <span class="p">[]</span>
<span class="bp">self</span><span class="o">.</span><span class="n">title</span> <span class="o">=</span> <span class="kc">None</span>
<span class="bp">self</span><span class="o">.</span><span class="n">bond_orders</span> <span class="o">=</span> <span class="p">{}</span>
<span class="n">coord_txt</span> <span class="o">=</span> <span class="p">[]</span>
<span class="n">read_coord</span> <span class="o">=</span> <span class="mi">0</span>
<span class="n">read_mulliken</span> <span class="o">=</span> <span class="kc">False</span>
<span class="n">read_eigen</span> <span class="o">=</span> <span class="kc">False</span>
<span class="n">eigen_txt</span> <span class="o">=</span> <span class="p">[]</span>
<span class="n">parse_stage</span> <span class="o">=</span> <span class="mi">0</span>
<span class="n">num_basis_found</span> <span class="o">=</span> <span class="kc">False</span>
<span class="n">terminated</span> <span class="o">=</span> <span class="kc">False</span>
<span class="n">parse_forces</span> <span class="o">=</span> <span class="kc">False</span>
<span class="n">forces</span> <span class="o">=</span> <span class="p">[]</span>
<span class="n">parse_freq</span> <span class="o">=</span> <span class="kc">False</span>
<span class="n">frequencies</span> <span class="o">=</span> <span class="p">[]</span>
<span class="n">read_mo</span> <span class="o">=</span> <span class="kc">False</span>
<span class="n">parse_hessian</span> <span class="o">=</span> <span class="kc">False</span>
<span class="n">routeline</span> <span class="o">=</span> <span class="s2">""</span>
<span class="n">standard_orientation</span> <span class="o">=</span> <span class="kc">False</span>
<span class="n">parse_bond_order</span> <span class="o">=</span> <span class="kc">False</span>
<span class="n">input_structures</span> <span class="o">=</span> <span class="nb">list</span><span class="p">()</span>
<span class="n">std_structures</span> <span class="o">=</span> <span class="nb">list</span><span class="p">()</span>
<span class="k">with</span> <span class="n">zopen</span><span class="p">(</span><span class="n">filename</span><span class="p">)</span> <span class="k">as</span> <span class="n">f</span><span class="p">:</span>
<span class="k">for</span> <span class="n">line</span> <span class="ow">in</span> <span class="n">f</span><span class="p">:</span>
<span class="k">if</span> <span class="n">parse_stage</span> <span class="o">==</span> <span class="mi">0</span><span class="p">:</span>
<span class="k">if</span> <span class="n">start_patt</span><span class="o">.</span><span class="n">search</span><span class="p">(</span><span class="n">line</span><span class="p">):</span>
<span class="n">parse_stage</span> <span class="o">=</span> <span class="mi">1</span>
<span class="k">elif</span> <span class="n">link0_patt</span><span class="o">.</span><span class="n">match</span><span class="p">(</span><span class="n">line</span><span class="p">):</span>
<span class="n">m</span> <span class="o">=</span> <span class="n">link0_patt</span><span class="o">.</span><span class="n">match</span><span class="p">(</span><span class="n">line</span><span class="p">)</span>
<span class="bp">self</span><span class="o">.</span><span class="n">link0</span><span class="p">[</span><span class="n">m</span><span class="o">.</span><span class="n">group</span><span class="p">(</span><span class="mi">1</span><span class="p">)]</span> <span class="o">=</span> <span class="n">m</span><span class="o">.</span><span class="n">group</span><span class="p">(</span><span class="mi">2</span><span class="p">)</span>
<span class="k">elif</span> <span class="n">route_patt</span><span class="o">.</span><span class="n">search</span><span class="p">(</span><span class="n">line</span><span class="p">)</span> <span class="ow">or</span> <span class="n">routeline</span> <span class="o">!=</span> <span class="s2">""</span><span class="p">:</span>
<span class="k">if</span> <span class="nb">set</span><span class="p">(</span><span class="n">line</span><span class="o">.</span><span class="n">strip</span><span class="p">())</span> <span class="o">==</span> <span class="p">{</span><span class="s2">"-"</span><span class="p">}:</span>
<span class="n">params</span> <span class="o">=</span> <span class="n">read_route_line</span><span class="p">(</span><span class="n">routeline</span><span class="p">)</span>
<span class="bp">self</span><span class="o">.</span><span class="n">functional</span> <span class="o">=</span> <span class="n">params</span><span class="p">[</span><span class="mi">0</span><span class="p">]</span>
<span class="bp">self</span><span class="o">.</span><span class="n">basis_set</span> <span class="o">=</span> <span class="n">params</span><span class="p">[</span><span class="mi">1</span><span class="p">]</span>
<span class="bp">self</span><span class="o">.</span><span class="n">route_parameters</span> <span class="o">=</span> <span class="n">params</span><span class="p">[</span><span class="mi">2</span><span class="p">]</span>
<span class="n">route_lower</span> <span class="o">=</span> <span class="p">{</span><span class="n">k</span><span class="o">.</span><span class="n">lower</span><span class="p">():</span> <span class="n">v</span>
<span class="k">for</span> <span class="n">k</span><span class="p">,</span> <span class="n">v</span> <span class="ow">in</span>
<span class="bp">self</span><span class="o">.</span><span class="n">route_parameters</span><span class="o">.</span><span class="n">items</span><span class="p">()}</span>
<span class="bp">self</span><span class="o">.</span><span class="n">dieze_tag</span> <span class="o">=</span> <span class="n">params</span><span class="p">[</span><span class="mi">3</span><span class="p">]</span>
<span class="n">parse_stage</span> <span class="o">=</span> <span class="mi">1</span>
<span class="k">else</span><span class="p">:</span>
<span class="n">routeline</span> <span class="o">+=</span> <span class="n">line</span><span class="o">.</span><span class="n">strip</span><span class="p">()</span>
<span class="k">elif</span> <span class="n">parse_stage</span> <span class="o">==</span> <span class="mi">1</span><span class="p">:</span>
<span class="k">if</span> <span class="nb">set</span><span class="p">(</span><span class="n">line</span><span class="o">.</span><span class="n">strip</span><span class="p">())</span> <span class="o">==</span> <span class="p">{</span><span class="s2">"-"</span><span class="p">}</span> <span class="ow">and</span> <span class="bp">self</span><span class="o">.</span><span class="n">title</span> <span class="ow">is</span> <span class="kc">None</span><span class="p">:</span>
<span class="bp">self</span><span class="o">.</span><span class="n">title</span> <span class="o">=</span> <span class="s2">""</span>
<span class="k">elif</span> <span class="bp">self</span><span class="o">.</span><span class="n">title</span> <span class="o">==</span> <span class="s2">""</span><span class="p">:</span>
<span class="bp">self</span><span class="o">.</span><span class="n">title</span> <span class="o">=</span> <span class="n">line</span><span class="o">.</span><span class="n">strip</span><span class="p">()</span>
<span class="k">elif</span> <span class="n">charge_mul_patt</span><span class="o">.</span><span class="n">search</span><span class="p">(</span><span class="n">line</span><span class="p">):</span>
<span class="n">m</span> <span class="o">=</span> <span class="n">charge_mul_patt</span><span class="o">.</span><span class="n">search</span><span class="p">(</span><span class="n">line</span><span class="p">)</span>
<span class="bp">self</span><span class="o">.</span><span class="n">charge</span> <span class="o">=</span> <span class="nb">int</span><span class="p">(</span><span class="n">m</span><span class="o">.</span><span class="n">group</span><span class="p">(</span><span class="mi">1</span><span class="p">))</span>
<span class="bp">self</span><span class="o">.</span><span class="n">spin_multiplicity</span> <span class="o">=</span> <span class="nb">int</span><span class="p">(</span><span class="n">m</span><span class="o">.</span><span class="n">group</span><span class="p">(</span><span class="mi">2</span><span class="p">))</span>
<span class="n">parse_stage</span> <span class="o">=</span> <span class="mi">2</span>
<span class="k">elif</span> <span class="n">parse_stage</span> <span class="o">==</span> <span class="mi">2</span><span class="p">:</span>
<span class="k">if</span> <span class="bp">self</span><span class="o">.</span><span class="n">is_pcm</span><span class="p">:</span>
<span class="bp">self</span><span class="o">.</span><span class="n">_check_pcm</span><span class="p">(</span><span class="n">line</span><span class="p">)</span>
<span class="k">if</span> <span class="s2">"freq"</span> <span class="ow">in</span> <span class="n">route_lower</span> <span class="ow">and</span> <span class="n">thermo_patt</span><span class="o">.</span><span class="n">search</span><span class="p">(</span><span class="n">line</span><span class="p">):</span>
<span class="n">m</span> <span class="o">=</span> <span class="n">thermo_patt</span><span class="o">.</span><span class="n">search</span><span class="p">(</span><span class="n">line</span><span class="p">)</span>
<span class="k">if</span> <span class="n">m</span><span class="o">.</span><span class="n">group</span><span class="p">(</span><span class="mi">1</span><span class="p">)</span> <span class="o">==</span> <span class="s2">"Zero-point"</span><span class="p">:</span>
<span class="bp">self</span><span class="o">.</span><span class="n">corrections</span><span class="p">[</span><span class="s2">"Zero-point"</span><span class="p">]</span> <span class="o">=</span> <span class="nb">float</span><span class="p">(</span><span class="n">m</span><span class="o">.</span><span class="n">group</span><span class="p">(</span><span class="mi">3</span><span class="p">))</span>
<span class="k">else</span><span class="p">:</span>
<span class="n">key</span> <span class="o">=</span> <span class="n">m</span><span class="o">.</span><span class="n">group</span><span class="p">(</span><span class="mi">2</span><span class="p">)</span><span class="o">.</span><span class="n">strip</span><span class="p">(</span><span class="s2">" to "</span><span class="p">)</span>
<span class="bp">self</span><span class="o">.</span><span class="n">corrections</span><span class="p">[</span><span class="n">key</span><span class="p">]</span> <span class="o">=</span> <span class="nb">float</span><span class="p">(</span><span class="n">m</span><span class="o">.</span><span class="n">group</span><span class="p">(</span><span class="mi">3</span><span class="p">))</span>
<span class="k">if</span> <span class="n">read_coord</span><span class="p">:</span>
<span class="p">[</span><span class="n">f</span><span class="o">.</span><span class="n">readline</span><span class="p">()</span> <span class="k">for</span> <span class="n">i</span> <span class="ow">in</span> <span class="nb">range</span><span class="p">(</span><span class="mi">3</span><span class="p">)]</span>
<span class="n">line</span> <span class="o">=</span> <span class="n">f</span><span class="o">.</span><span class="n">readline</span><span class="p">()</span>
<span class="n">sp</span> <span class="o">=</span> <span class="p">[]</span>
<span class="n">coords</span> <span class="o">=</span> <span class="p">[]</span>
<span class="k">while</span> <span class="nb">set</span><span class="p">(</span><span class="n">line</span><span class="o">.</span><span class="n">strip</span><span class="p">())</span> <span class="o">!=</span> <span class="p">{</span><span class="s2">"-"</span><span class="p">}:</span>
<span class="n">toks</span> <span class="o">=</span> <span class="n">line</span><span class="o">.</span><span class="n">split</span><span class="p">()</span>
<span class="n">sp</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="n">Element</span><span class="o">.</span><span class="n">from_Z</span><span class="p">(</span><span class="nb">int</span><span class="p">(</span><span class="n">toks</span><span class="p">[</span><span class="mi">1</span><span class="p">])))</span>
<span class="n">coords</span><span class="o">.</span><span class="n">append</span><span class="p">([</span><span class="nb">float</span><span class="p">(</span><span class="n">x</span><span class="p">)</span> <span class="k">for</span> <span class="n">x</span> <span class="ow">in</span> <span class="n">toks</span><span class="p">[</span><span class="mi">3</span><span class="p">:</span><span class="mi">6</span><span class="p">]])</span>
<span class="n">line</span> <span class="o">=</span> <span class="n">f</span><span class="o">.</span><span class="n">readline</span><span class="p">()</span>
<span class="n">read_coord</span> <span class="o">=</span> <span class="kc">False</span>
<span class="k">if</span> <span class="n">geom_orientation</span> <span class="o">==</span> <span class="s2">"input"</span><span class="p">:</span>
<span class="n">input_structures</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="n">Molecule</span><span class="p">(</span><span class="n">sp</span><span class="p">,</span> <span class="n">coords</span><span class="p">))</span>
<span class="k">elif</span> <span class="n">geom_orientation</span> <span class="o">==</span> <span class="s2">"standard"</span><span class="p">:</span>
<span class="n">std_structures</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="n">Molecule</span><span class="p">(</span><span class="n">sp</span><span class="p">,</span> <span class="n">coords</span><span class="p">))</span>
<span class="k">if</span> <span class="n">parse_forces</span><span class="p">:</span>
<span class="n">m</span> <span class="o">=</span> <span class="n">forces_patt</span><span class="o">.</span><span class="n">search</span><span class="p">(</span><span class="n">line</span><span class="p">)</span>
<span class="k">if</span> <span class="n">m</span><span class="p">:</span>
<span class="n">forces</span><span class="o">.</span><span class="n">extend</span><span class="p">([</span><span class="nb">float</span><span class="p">(</span><span class="n">_v</span><span class="p">)</span>
<span class="k">for</span> <span class="n">_v</span> <span class="ow">in</span> <span class="n">m</span><span class="o">.</span><span class="n">groups</span><span class="p">()[</span><span class="mi">2</span><span class="p">:</span><span class="mi">5</span><span class="p">]])</span>
<span class="k">elif</span> <span class="n">forces_off_patt</span><span class="o">.</span><span class="n">search</span><span class="p">(</span><span class="n">line</span><span class="p">):</span>
<span class="bp">self</span><span class="o">.</span><span class="n">cart_forces</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="n">forces</span><span class="p">)</span>
<span class="n">forces</span> <span class="o">=</span> <span class="p">[]</span>
<span class="n">parse_forces</span> <span class="o">=</span> <span class="kc">False</span>
<span class="c1"># read molecular orbital eigenvalues</span>
<span class="k">if</span> <span class="n">read_eigen</span><span class="p">:</span>
<span class="n">m</span> <span class="o">=</span> <span class="n">orbital_patt</span><span class="o">.</span><span class="n">search</span><span class="p">(</span><span class="n">line</span><span class="p">)</span>
<span class="k">if</span> <span class="n">m</span><span class="p">:</span>
<span class="n">eigen_txt</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="n">line</span><span class="p">)</span>
<span class="k">else</span><span class="p">:</span>
<span class="n">read_eigen</span> <span class="o">=</span> <span class="kc">False</span>
<span class="bp">self</span><span class="o">.</span><span class="n">eigenvalues</span> <span class="o">=</span> <span class="p">{</span><span class="n">Spin</span><span class="o">.</span><span class="n">up</span><span class="p">:</span> <span class="p">[]}</span>
<span class="k">for</span> <span class="n">eigenline</span> <span class="ow">in</span> <span class="n">eigen_txt</span><span class="p">:</span>
<span class="k">if</span> <span class="s2">"Alpha"</span> <span class="ow">in</span> <span class="n">eigenline</span><span class="p">:</span>
<span class="bp">self</span><span class="o">.</span><span class="n">eigenvalues</span><span class="p">[</span><span class="n">Spin</span><span class="o">.</span><span class="n">up</span><span class="p">]</span> <span class="o">+=</span> <span class="p">[</span><span class="nb">float</span><span class="p">(</span><span class="n">e</span><span class="p">)</span>
<span class="k">for</span> <span class="n">e</span> <span class="ow">in</span> <span class="n">float_patt</span><span class="o">.</span><span class="n">findall</span><span class="p">(</span><span class="n">eigenline</span><span class="p">)]</span>
<span class="k">elif</span> <span class="s2">"Beta"</span> <span class="ow">in</span> <span class="n">eigenline</span><span class="p">:</span>
<span class="k">if</span> <span class="n">Spin</span><span class="o">.</span><span class="n">down</span> <span class="ow">not</span> <span class="ow">in</span> <span class="bp">self</span><span class="o">.</span><span class="n">eigenvalues</span><span class="p">:</span>
<span class="bp">self</span><span class="o">.</span><span class="n">eigenvalues</span><span class="p">[</span><span class="n">Spin</span><span class="o">.</span><span class="n">down</span><span class="p">]</span> <span class="o">=</span> <span class="p">[]</span>
<span class="bp">self</span><span class="o">.</span><span class="n">eigenvalues</span><span class="p">[</span><span class="n">Spin</span><span class="o">.</span><span class="n">down</span><span class="p">]</span> <span class="o">+=</span> <span class="p">[</span><span class="nb">float</span><span class="p">(</span><span class="n">e</span><span class="p">)</span>
<span class="k">for</span> <span class="n">e</span> <span class="ow">in</span> <span class="n">float_patt</span><span class="o">.</span><span class="n">findall</span><span class="p">(</span><span class="n">eigenline</span><span class="p">)]</span>
<span class="n">eigen_txt</span> <span class="o">=</span> <span class="p">[]</span>
<span class="c1"># read molecular orbital coefficients</span>
<span class="k">if</span> <span class="p">(</span><span class="ow">not</span> <span class="n">num_basis_found</span><span class="p">)</span> <span class="ow">and</span> \
<span class="n">num_basis_func_patt</span><span class="o">.</span><span class="n">search</span><span class="p">(</span><span class="n">line</span><span class="p">):</span>
<span class="n">m</span> <span class="o">=</span> <span class="n">num_basis_func_patt</span><span class="o">.</span><span class="n">search</span><span class="p">(</span><span class="n">line</span><span class="p">)</span>
<span class="bp">self</span><span class="o">.</span><span class="n">num_basis_func</span> <span class="o">=</span> <span class="nb">int</span><span class="p">(</span><span class="n">m</span><span class="o">.</span><span class="n">group</span><span class="p">(</span><span class="mi">1</span><span class="p">))</span>
<span class="n">num_basis_found</span> <span class="o">=</span> <span class="kc">True</span>
<span class="k">elif</span> <span class="n">read_mo</span><span class="p">:</span>
<span class="c1"># build a matrix with all coefficients</span>
<span class="n">all_spin</span> <span class="o">=</span> <span class="p">[</span><span class="n">Spin</span><span class="o">.</span><span class="n">up</span><span class="p">]</span>
<span class="k">if</span> <span class="bp">self</span><span class="o">.</span><span class="n">is_spin</span><span class="p">:</span>
<span class="n">all_spin</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="n">Spin</span><span class="o">.</span><span class="n">down</span><span class="p">)</span>
<span class="n">mat_mo</span> <span class="o">=</span> <span class="p">{}</span>
<span class="k">for</span> <span class="n">spin</span> <span class="ow">in</span> <span class="n">all_spin</span><span class="p">:</span>
<span class="n">mat_mo</span><span class="p">[</span><span class="n">spin</span><span class="p">]</span> <span class="o">=</span> <span class="n">np</span><span class="o">.</span><span class="n">zeros</span><span class="p">((</span><span class="bp">self</span><span class="o">.</span><span class="n">num_basis_func</span><span class="p">,</span>
<span class="bp">self</span><span class="o">.</span><span class="n">num_basis_func</span><span class="p">))</span>
<span class="n">nMO</span> <span class="o">=</span> <span class="mi">0</span>
<span class="n">end_mo</span> <span class="o">=</span> <span class="kc">False</span>
<span class="k">while</span> <span class="n">nMO</span> <span class="o"><</span> <span class="bp">self</span><span class="o">.</span><span class="n">num_basis_func</span> <span class="ow">and</span> <span class="ow">not</span> <span class="n">end_mo</span><span class="p">:</span>
<span class="n">f</span><span class="o">.</span><span class="n">readline</span><span class="p">()</span>
<span class="n">f</span><span class="o">.</span><span class="n">readline</span><span class="p">()</span>
<span class="bp">self</span><span class="o">.</span><span class="n">atom_basis_labels</span> <span class="o">=</span> <span class="p">[]</span>
<span class="k">for</span> <span class="n">i</span> <span class="ow">in</span> <span class="nb">range</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">num_basis_func</span><span class="p">):</span>
<span class="n">line</span> <span class="o">=</span> <span class="n">f</span><span class="o">.</span><span class="n">readline</span><span class="p">()</span>
<span class="c1"># identify atom and OA labels</span>
<span class="n">m</span> <span class="o">=</span> <span class="n">mo_coeff_name_patt</span><span class="o">.</span><span class="n">search</span><span class="p">(</span><span class="n">line</span><span class="p">)</span>
<span class="k">if</span> <span class="n">m</span><span class="o">.</span><span class="n">group</span><span class="p">(</span><span class="mi">1</span><span class="p">)</span><span class="o">.</span><span class="n">strip</span><span class="p">()</span> <span class="o">!=</span> <span class="s2">""</span><span class="p">:</span>
<span class="n">iat</span> <span class="o">=</span> <span class="nb">int</span><span class="p">(</span><span class="n">m</span><span class="o">.</span><span class="n">group</span><span class="p">(</span><span class="mi">2</span><span class="p">))</span> <span class="o">-</span> <span class="mi">1</span>
<span class="c1"># atname = m.group(3)</span>
<span class="bp">self</span><span class="o">.</span><span class="n">atom_basis_labels</span><span class="o">.</span><span class="n">append</span><span class="p">([</span><span class="n">m</span><span class="o">.</span><span class="n">group</span><span class="p">(</span><span class="mi">4</span><span class="p">)])</span>
<span class="k">else</span><span class="p">:</span>
<span class="bp">self</span><span class="o">.</span><span class="n">atom_basis_labels</span><span class="p">[</span><span class="n">iat</span><span class="p">]</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="n">m</span><span class="o">.</span><span class="n">group</span><span class="p">(</span><span class="mi">4</span><span class="p">))</span>
<span class="c1"># MO coefficients</span>
<span class="n">coeffs</span> <span class="o">=</span> <span class="p">[</span><span class="nb">float</span><span class="p">(</span><span class="n">c</span><span class="p">)</span> <span class="k">for</span> <span class="n">c</span> <span class="ow">in</span>
<span class="n">float_patt</span><span class="o">.</span><span class="n">findall</span><span class="p">(</span><span class="n">line</span><span class="p">)]</span>
<span class="k">for</span> <span class="n">j</span> <span class="ow">in</span> <span class="nb">range</span><span class="p">(</span><span class="nb">len</span><span class="p">(</span><span class="n">coeffs</span><span class="p">)):</span>
<span class="n">mat_mo</span><span class="p">[</span><span class="n">spin</span><span class="p">][</span><span class="n">i</span><span class="p">,</span> <span class="n">nMO</span> <span class="o">+</span> <span class="n">j</span><span class="p">]</span> <span class="o">=</span> <span class="n">coeffs</span><span class="p">[</span><span class="n">j</span><span class="p">]</span>
<span class="n">nMO</span> <span class="o">+=</span> <span class="nb">len</span><span class="p">(</span><span class="n">coeffs</span><span class="p">)</span>
<span class="n">line</span> <span class="o">=</span> <span class="n">f</span><span class="o">.</span><span class="n">readline</span><span class="p">()</span>
<span class="c1"># manage pop=regular case (not all MO)</span>
<span class="k">if</span> <span class="n">nMO</span> <span class="o"><</span> <span class="bp">self</span><span class="o">.</span><span class="n">num_basis_func</span> <span class="ow">and</span> \
<span class="p">(</span><span class="s2">"Density Matrix:"</span> <span class="ow">in</span> <span class="n">line</span> <span class="ow">or</span>
<span class="n">mo_coeff_patt</span><span class="o">.</span><span class="n">search</span><span class="p">(</span><span class="n">line</span><span class="p">)):</span>
<span class="n">end_mo</span> <span class="o">=</span> <span class="kc">True</span>
<span class="n">warnings</span><span class="o">.</span><span class="n">warn</span><span class="p">(</span><span class="s2">"POP=regular case, matrix "</span>
<span class="s2">"coefficients not complete"</span><span class="p">)</span>
<span class="n">f</span><span class="o">.</span><span class="n">readline</span><span class="p">()</span>
<span class="bp">self</span><span class="o">.</span><span class="n">eigenvectors</span> <span class="o">=</span> <span class="n">mat_mo</span>
<span class="n">read_mo</span> <span class="o">=</span> <span class="kc">False</span>
<span class="c1"># build a more convenient array dict with MO</span>
<span class="c1"># coefficient of each atom in each MO.</span>
<span class="c1"># mo[Spin][OM j][atom i] =</span>
<span class="c1"># {AO_k: coeff, AO_k: coeff ... }</span>
<span class="n">mo</span> <span class="o">=</span> <span class="p">{}</span>
<span class="k">for</span> <span class="n">spin</span> <span class="ow">in</span> <span class="n">all_spin</span><span class="p">:</span>
<span class="n">mo</span><span class="p">[</span><span class="n">spin</span><span class="p">]</span> <span class="o">=</span> <span class="p">[[{}</span> <span class="k">for</span> <span class="n">iat</span> <span class="ow">in</span>
<span class="nb">range</span><span class="p">(</span><span class="nb">len</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">atom_basis_labels</span><span class="p">))]</span>
<span class="k">for</span> <span class="n">j</span> <span class="ow">in</span> <span class="nb">range</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">num_basis_func</span><span class="p">)]</span>
<span class="k">for</span> <span class="n">j</span> <span class="ow">in</span> <span class="nb">range</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">num_basis_func</span><span class="p">):</span>
<span class="n">i</span> <span class="o">=</span> <span class="mi">0</span>
<span class="k">for</span> <span class="n">iat</span> <span class="ow">in</span> <span class="nb">range</span><span class="p">(</span><span class="nb">len</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">atom_basis_labels</span><span class="p">)):</span>
<span class="k">for</span> <span class="n">label</span> <span class="ow">in</span> <span class="bp">self</span><span class="o">.</span><span class="n">atom_basis_labels</span><span class="p">[</span><span class="n">iat</span><span class="p">]:</span>
<span class="n">mo</span><span class="p">[</span><span class="n">spin</span><span class="p">][</span><span class="n">j</span><span class="p">][</span><span class="n">iat</span><span class="p">][</span><span class="n">label</span><span class="p">]</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">eigenvectors</span><span class="p">[</span><span class="n">spin</span><span class="p">][</span><span class="n">i</span><span class="p">,</span> <span class="n">j</span><span class="p">]</span>
<span class="n">i</span> <span class="o">+=</span> <span class="mi">1</span>
<span class="bp">self</span><span class="o">.</span><span class="n">molecular_orbital</span> <span class="o">=</span> <span class="n">mo</span>
<span class="k">elif</span> <span class="n">parse_freq</span><span class="p">:</span>
<span class="k">while</span> <span class="n">line</span><span class="o">.</span><span class="n">strip</span><span class="p">()</span> <span class="o">!=</span> <span class="s2">""</span><span class="p">:</span> <span class="c1"># blank line</span>
<span class="n">ifreqs</span> <span class="o">=</span> <span class="p">[</span><span class="nb">int</span><span class="p">(</span><span class="n">val</span><span class="p">)</span> <span class="o">-</span> <span class="mi">1</span> <span class="k">for</span> <span class="n">val</span> <span class="ow">in</span> <span class="n">line</span><span class="o">.</span><span class="n">split</span><span class="p">()]</span>
<span class="k">for</span> <span class="n">ifreq</span> <span class="ow">in</span> <span class="n">ifreqs</span><span class="p">:</span>
<span class="n">frequencies</span><span class="o">.</span><span class="n">append</span><span class="p">({</span><span class="s2">"frequency"</span><span class="p">:</span> <span class="kc">None</span><span class="p">,</span>
<span class="s2">"r_mass"</span><span class="p">:</span> <span class="kc">None</span><span class="p">,</span>
<span class="s2">"f_constant"</span><span class="p">:</span> <span class="kc">None</span><span class="p">,</span>
<span class="s2">"IR_intensity"</span><span class="p">:</span> <span class="kc">None</span><span class="p">,</span>
<span class="s2">"symmetry"</span><span class="p">:</span> <span class="kc">None</span><span class="p">,</span>
<span class="s2">"mode"</span><span class="p">:</span> <span class="p">[]})</span>
<span class="c1"># read freq, intensity, masses, symmetry ...</span>
<span class="k">while</span> <span class="s2">"Atom AN"</span> <span class="ow">not</span> <span class="ow">in</span> <span class="n">line</span><span class="p">:</span>
<span class="k">if</span> <span class="s2">"Frequencies --"</span> <span class="ow">in</span> <span class="n">line</span><span class="p">:</span>
<span class="n">freqs</span> <span class="o">=</span> <span class="nb">map</span><span class="p">(</span><span class="nb">float</span><span class="p">,</span>
<span class="n">float_patt</span><span class="o">.</span><span class="n">findall</span><span class="p">(</span><span class="n">line</span><span class="p">))</span>
<span class="k">for</span> <span class="n">ifreq</span><span class="p">,</span> <span class="n">freq</span> <span class="ow">in</span> <span class="nb">zip</span><span class="p">(</span><span class="n">ifreqs</span><span class="p">,</span> <span class="n">freqs</span><span class="p">):</span>
<span class="n">frequencies</span><span class="p">[</span><span class="n">ifreq</span><span class="p">][</span><span class="s2">"frequency"</span><span class="p">]</span> <span class="o">=</span> <span class="n">freq</span>
<span class="k">elif</span> <span class="s2">"Red. masses --"</span> <span class="ow">in</span> <span class="n">line</span><span class="p">:</span>
<span class="n">r_masses</span> <span class="o">=</span> <span class="nb">map</span><span class="p">(</span><span class="nb">float</span><span class="p">,</span>
<span class="n">float_patt</span><span class="o">.</span><span class="n">findall</span><span class="p">(</span><span class="n">line</span><span class="p">))</span>
<span class="k">for</span> <span class="n">ifreq</span><span class="p">,</span> <span class="n">r_mass</span> <span class="ow">in</span> <span class="nb">zip</span><span class="p">(</span><span class="n">ifreqs</span><span class="p">,</span> <span class="n">r_masses</span><span class="p">):</span>
<span class="n">frequencies</span><span class="p">[</span><span class="n">ifreq</span><span class="p">][</span><span class="s2">"r_mass"</span><span class="p">]</span> <span class="o">=</span> <span class="n">r_mass</span>
<span class="k">elif</span> <span class="s2">"Frc consts --"</span> <span class="ow">in</span> <span class="n">line</span><span class="p">:</span>
<span class="n">f_consts</span> <span class="o">=</span> <span class="nb">map</span><span class="p">(</span><span class="nb">float</span><span class="p">,</span>
<span class="n">float_patt</span><span class="o">.</span><span class="n">findall</span><span class="p">(</span><span class="n">line</span><span class="p">))</span>
<span class="k">for</span> <span class="n">ifreq</span><span class="p">,</span> <span class="n">f_const</span> <span class="ow">in</span> <span class="nb">zip</span><span class="p">(</span><span class="n">ifreqs</span><span class="p">,</span> <span class="n">f_consts</span><span class="p">):</span>
<span class="n">frequencies</span><span class="p">[</span><span class="n">ifreq</span><span class="p">][</span><span class="s2">"f_constant"</span><span class="p">]</span> <span class="o">=</span> <span class="n">f_const</span>
<span class="k">elif</span> <span class="s2">"IR Inten --"</span> <span class="ow">in</span> <span class="n">line</span><span class="p">:</span>
<span class="n">IR_intens</span> <span class="o">=</span> <span class="nb">map</span><span class="p">(</span><span class="nb">float</span><span class="p">,</span>
<span class="n">float_patt</span><span class="o">.</span><span class="n">findall</span><span class="p">(</span><span class="n">line</span><span class="p">))</span>
<span class="k">for</span> <span class="n">ifreq</span><span class="p">,</span> <span class="n">intens</span> <span class="ow">in</span> <span class="nb">zip</span><span class="p">(</span><span class="n">ifreqs</span><span class="p">,</span> <span class="n">IR_intens</span><span class="p">):</span>
<span class="n">frequencies</span><span class="p">[</span><span class="n">ifreq</span><span class="p">][</span><span class="s2">"IR_intensity"</span><span class="p">]</span> <span class="o">=</span> <span class="n">intens</span>
<span class="k">else</span><span class="p">:</span>
<span class="n">syms</span> <span class="o">=</span> <span class="n">line</span><span class="o">.</span><span class="n">split</span><span class="p">()[:</span><span class="mi">3</span><span class="p">]</span>
<span class="k">for</span> <span class="n">ifreq</span><span class="p">,</span> <span class="n">sym</span> <span class="ow">in</span> <span class="nb">zip</span><span class="p">(</span><span class="n">ifreqs</span><span class="p">,</span> <span class="n">syms</span><span class="p">):</span>
<span class="n">frequencies</span><span class="p">[</span><span class="n">ifreq</span><span class="p">][</span><span class="s2">"symmetry"</span><span class="p">]</span> <span class="o">=</span> <span class="n">sym</span>
<span class="n">line</span> <span class="o">=</span> <span class="n">f</span><span class="o">.</span><span class="n">readline</span><span class="p">()</span>
<span class="c1"># read normal modes</span>
<span class="n">line</span> <span class="o">=</span> <span class="n">f</span><span class="o">.</span><span class="n">readline</span><span class="p">()</span>
<span class="k">while</span> <span class="n">normal_mode_patt</span><span class="o">.</span><span class="n">search</span><span class="p">(</span><span class="n">line</span><span class="p">):</span>
<span class="n">values</span> <span class="o">=</span> <span class="nb">list</span><span class="p">(</span><span class="nb">map</span><span class="p">(</span><span class="nb">float</span><span class="p">,</span>
<span class="n">float_patt</span><span class="o">.</span><span class="n">findall</span><span class="p">(</span><span class="n">line</span><span class="p">)))</span>
<span class="k">for</span> <span class="n">i</span><span class="p">,</span> <span class="n">ifreq</span> <span class="ow">in</span> <span class="nb">zip</span><span class="p">(</span><span class="nb">range</span><span class="p">(</span><span class="mi">0</span><span class="p">,</span> <span class="nb">len</span><span class="p">(</span><span class="n">values</span><span class="p">),</span> <span class="mi">3</span><span class="p">),</span>
<span class="n">ifreqs</span><span class="p">):</span>
<span class="n">frequencies</span><span class="p">[</span><span class="n">ifreq</span><span class="p">][</span><span class="s2">"mode"</span><span class="p">]</span><span class="o">.</span><span class="n">extend</span><span class="p">(</span><span class="n">values</span><span class="p">[</span><span class="n">i</span><span class="p">:</span><span class="n">i</span><span class="o">+</span><span class="mi">3</span><span class="p">])</span>
<span class="n">line</span> <span class="o">=</span> <span class="n">f</span><span class="o">.</span><span class="n">readline</span><span class="p">()</span>
<span class="n">parse_freq</span> <span class="o">=</span> <span class="kc">False</span>
<span class="bp">self</span><span class="o">.</span><span class="n">frequencies</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="n">frequencies</span><span class="p">)</span>
<span class="n">frequencies</span> <span class="o">=</span> <span class="p">[]</span>
<span class="k">elif</span> <span class="n">parse_hessian</span><span class="p">:</span>
<span class="c1"># read Hessian matrix under "Force constants in Cartesian coordinates"</span>
<span class="c1"># Hessian matrix is in the input orientation framework</span>
<span class="c1"># WARNING : need #P in the route line</span>
<span class="n">parse_hessian</span> <span class="o">=</span> <span class="kc">False</span>
<span class="n">ndf</span> <span class="o">=</span> <span class="mi">3</span> <span class="o">*</span> <span class="nb">len</span><span class="p">(</span><span class="n">input_structures</span><span class="p">[</span><span class="mi">0</span><span class="p">])</span>
<span class="bp">self</span><span class="o">.</span><span class="n">hessian</span> <span class="o">=</span> <span class="n">np</span><span class="o">.</span><span class="n">zeros</span><span class="p">((</span><span class="n">ndf</span><span class="p">,</span> <span class="n">ndf</span><span class="p">))</span>
<span class="n">j_indices</span> <span class="o">=</span> <span class="nb">range</span><span class="p">(</span><span class="mi">5</span><span class="p">)</span>
<span class="n">jndf</span> <span class="o">=</span> <span class="mi">0</span>
<span class="k">while</span> <span class="n">jndf</span> <span class="o"><</span> <span class="n">ndf</span><span class="p">:</span>
<span class="k">for</span> <span class="n">i</span> <span class="ow">in</span> <span class="nb">range</span><span class="p">(</span><span class="n">jndf</span><span class="p">,</span> <span class="n">ndf</span><span class="p">):</span>
<span class="n">line</span> <span class="o">=</span> <span class="n">f</span><span class="o">.</span><span class="n">readline</span><span class="p">()</span>
<span class="n">vals</span> <span class="o">=</span> <span class="n">re</span><span class="o">.</span><span class="n">findall</span><span class="p">(</span><span class="sa">r</span><span class="s2">"\s*([+-]?\d+\.\d+[eEdD]?[+-]\d+)"</span><span class="p">,</span> <span class="n">line</span><span class="p">)</span>
<span class="n">vals</span> <span class="o">=</span> <span class="p">[</span><span class="nb">float</span><span class="p">(</span><span class="n">val</span><span class="o">.</span><span class="n">replace</span><span class="p">(</span><span class="s2">"D"</span><span class="p">,</span> <span class="s2">"E"</span><span class="p">))</span>
<span class="k">for</span> <span class="n">val</span> <span class="ow">in</span> <span class="n">vals</span><span class="p">]</span>
<span class="k">for</span> <span class="n">jval</span><span class="p">,</span> <span class="n">val</span> <span class="ow">in</span> <span class="nb">enumerate</span><span class="p">(</span><span class="n">vals</span><span class="p">):</span>
<span class="n">j</span> <span class="o">=</span> <span class="n">j_indices</span><span class="p">[</span><span class="n">jval</span><span class="p">]</span>
<span class="bp">self</span><span class="o">.</span><span class="n">hessian</span><span class="p">[</span><span class="n">i</span><span class="p">,</span> <span class="n">j</span><span class="p">]</span> <span class="o">=</span> <span class="n">val</span>
<span class="bp">self</span><span class="o">.</span><span class="n">hessian</span><span class="p">[</span><span class="n">j</span><span class="p">,</span> <span class="n">i</span><span class="p">]</span> <span class="o">=</span> <span class="n">val</span>
<span class="n">jndf</span> <span class="o">+=</span> <span class="nb">len</span><span class="p">(</span><span class="n">vals</span><span class="p">)</span>
<span class="n">line</span> <span class="o">=</span> <span class="n">f</span><span class="o">.</span><span class="n">readline</span><span class="p">()</span>
<span class="n">j_indices</span> <span class="o">=</span> <span class="p">[</span><span class="n">j</span> <span class="o">+</span> <span class="mi">5</span> <span class="k">for</span> <span class="n">j</span> <span class="ow">in</span> <span class="n">j_indices</span><span class="p">]</span>
<span class="k">elif</span> <span class="n">parse_bond_order</span><span class="p">:</span>
<span class="c1"># parse Wiberg bond order</span>
<span class="n">line</span> <span class="o">=</span> <span class="n">f</span><span class="o">.</span><span class="n">readline</span><span class="p">()</span>
<span class="n">line</span> <span class="o">=</span> <span class="n">f</span><span class="o">.</span><span class="n">readline</span><span class="p">()</span>
<span class="n">nat</span> <span class="o">=</span> <span class="nb">len</span><span class="p">(</span><span class="n">input_structures</span><span class="p">[</span><span class="mi">0</span><span class="p">])</span>
<span class="n">matrix</span> <span class="o">=</span> <span class="nb">list</span><span class="p">()</span>
<span class="k">for</span> <span class="n">iat</span> <span class="ow">in</span> <span class="nb">range</span><span class="p">(</span><span class="n">nat</span><span class="p">):</span>
<span class="n">line</span> <span class="o">=</span> <span class="n">f</span><span class="o">.</span><span class="n">readline</span><span class="p">()</span>
<span class="n">matrix</span><span class="o">.</span><span class="n">append</span><span class="p">([</span><span class="nb">float</span><span class="p">(</span><span class="n">v</span><span class="p">)</span> <span class="k">for</span> <span class="n">v</span> <span class="ow">in</span> <span class="n">line</span><span class="o">.</span><span class="n">split</span><span class="p">()[</span><span class="mi">2</span><span class="p">:]])</span>
<span class="bp">self</span><span class="o">.</span><span class="n">bond_orders</span> <span class="o">=</span> <span class="nb">dict</span><span class="p">()</span>
<span class="k">for</span> <span class="n">iat</span> <span class="ow">in</span> <span class="nb">range</span><span class="p">(</span><span class="n">nat</span><span class="p">):</span>
<span class="k">for</span> <span class="n">jat</span> <span class="ow">in</span> <span class="nb">range</span><span class="p">(</span><span class="n">iat</span> <span class="o">+</span> <span class="mi">1</span><span class="p">,</span> <span class="n">nat</span><span class="p">):</span>
<span class="bp">self</span><span class="o">.</span><span class="n">bond_orders</span><span class="p">[(</span><span class="n">iat</span><span class="p">,</span> <span class="n">jat</span><span class="p">)]</span> <span class="o">=</span> <span class="n">matrix</span><span class="p">[</span><span class="n">iat</span><span class="p">][</span><span class="n">jat</span><span class="p">]</span>
<span class="n">parse_bond_order</span> <span class="o">=</span> <span class="kc">False</span>
<span class="k">elif</span> <span class="n">termination_patt</span><span class="o">.</span><span class="n">search</span><span class="p">(</span><span class="n">line</span><span class="p">):</span>
<span class="n">m</span> <span class="o">=</span> <span class="n">termination_patt</span><span class="o">.</span><span class="n">search</span><span class="p">(</span><span class="n">line</span><span class="p">)</span>
<span class="k">if</span> <span class="n">m</span><span class="o">.</span><span class="n">group</span><span class="p">(</span><span class="mi">1</span><span class="p">)</span> <span class="o">==</span> <span class="s2">"Normal"</span><span class="p">:</span>
<span class="bp">self</span><span class="o">.</span><span class="n">properly_terminated</span> <span class="o">=</span> <span class="kc">True</span>
<span class="n">terminated</span> <span class="o">=</span> <span class="kc">True</span>
<span class="k">elif</span> <span class="n">error_patt</span><span class="o">.</span><span class="n">search</span><span class="p">(</span><span class="n">line</span><span class="p">):</span>
<span class="n">error_defs</span> <span class="o">=</span> <span class="p">{</span>
<span class="s2">"! Non-Optimized Parameters !"</span><span class="p">:</span> <span class="s2">"Optimization "</span>
<span class="s2">"error"</span><span class="p">,</span>
<span class="s2">"Convergence failure"</span><span class="p">:</span> <span class="s2">"SCF convergence error"</span>
<span class="p">}</span>
<span class="n">m</span> <span class="o">=</span> <span class="n">error_patt</span><span class="o">.</span><span class="n">search</span><span class="p">(</span><span class="n">line</span><span class="p">)</span>
<span class="bp">self</span><span class="o">.</span><span class="n">errors</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="n">error_defs</span><span class="p">[</span><span class="n">m</span><span class="o">.</span><span class="n">group</span><span class="p">(</span><span class="mi">1</span><span class="p">)])</span>
<span class="k">elif</span> <span class="n">num_elec_patt</span><span class="o">.</span><span class="n">search</span><span class="p">(</span><span class="n">line</span><span class="p">):</span>
<span class="n">m</span> <span class="o">=</span> <span class="n">num_elec_patt</span><span class="o">.</span><span class="n">search</span><span class="p">(</span><span class="n">line</span><span class="p">)</span>
<span class="bp">self</span><span class="o">.</span><span class="n">electrons</span> <span class="o">=</span> <span class="p">(</span><span class="nb">int</span><span class="p">(</span><span class="n">m</span><span class="o">.</span><span class="n">group</span><span class="p">(</span><span class="mi">1</span><span class="p">)),</span> <span class="nb">int</span><span class="p">(</span><span class="n">m</span><span class="o">.</span><span class="n">group</span><span class="p">(</span><span class="mi">2</span><span class="p">)))</span>
<span class="k">elif</span> <span class="p">(</span><span class="ow">not</span> <span class="bp">self</span><span class="o">.</span><span class="n">is_pcm</span><span class="p">)</span> <span class="ow">and</span> <span class="n">pcm_patt</span><span class="o">.</span><span class="n">search</span><span class="p">(</span><span class="n">line</span><span class="p">):</span>
<span class="bp">self</span><span class="o">.</span><span class="n">is_pcm</span> <span class="o">=</span> <span class="kc">True</span>
<span class="bp">self</span><span class="o">.</span><span class="n">pcm</span> <span class="o">=</span> <span class="p">{}</span>
<span class="k">elif</span> <span class="s2">"freq"</span> <span class="ow">in</span> <span class="n">route_lower</span> <span class="ow">and</span> <span class="s2">"opt"</span> <span class="ow">in</span> <span class="n">route_lower</span> <span class="ow">and</span> \
<span class="n">stat_type_patt</span><span class="o">.</span><span class="n">search</span><span class="p">(</span><span class="n">line</span><span class="p">):</span>
<span class="bp">self</span><span class="o">.</span><span class="n">stationary_type</span> <span class="o">=</span> <span class="s2">"Saddle"</span>
<span class="k">elif</span> <span class="n">mp2_patt</span><span class="o">.</span><span class="n">search</span><span class="p">(</span><span class="n">line</span><span class="p">):</span>
<span class="n">m</span> <span class="o">=</span> <span class="n">mp2_patt</span><span class="o">.</span><span class="n">search</span><span class="p">(</span><span class="n">line</span><span class="p">)</span>
<span class="bp">self</span><span class="o">.</span><span class="n">energies</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="nb">float</span><span class="p">(</span><span class="n">m</span><span class="o">.</span><span class="n">group</span><span class="p">(</span><span class="mi">1</span><span class="p">)</span><span class="o">.</span><span class="n">replace</span><span class="p">(</span><span class="s2">"D"</span><span class="p">,</span>
<span class="s2">"E"</span><span class="p">)))</span>
<span class="k">elif</span> <span class="n">oniom_patt</span><span class="o">.</span><span class="n">search</span><span class="p">(</span><span class="n">line</span><span class="p">):</span>
<span class="n">m</span> <span class="o">=</span> <span class="n">oniom_patt</span><span class="o">.</span><span class="n">matcher</span><span class="p">(</span><span class="n">line</span><span class="p">)</span>
<span class="bp">self</span><span class="o">.</span><span class="n">energies</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="nb">float</span><span class="p">(</span><span class="n">m</span><span class="o">.</span><span class="n">group</span><span class="p">(</span><span class="mi">1</span><span class="p">)))</span>
<span class="k">elif</span> <span class="n">scf_patt</span><span class="o">.</span><span class="n">search</span><span class="p">(</span><span class="n">line</span><span class="p">):</span>
<span class="n">m</span> <span class="o">=</span> <span class="n">scf_patt</span><span class="o">.</span><span class="n">search</span><span class="p">(</span><span class="n">line</span><span class="p">)</span>
<span class="bp">self</span><span class="o">.</span><span class="n">energies</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="nb">float</span><span class="p">(</span><span class="n">m</span><span class="o">.</span><span class="n">group</span><span class="p">(</span><span class="mi">1</span><span class="p">)))</span>
<span class="k">elif</span> <span class="n">std_orientation_patt</span><span class="o">.</span><span class="n">search</span><span class="p">(</span><span class="n">line</span><span class="p">):</span>
<span class="n">coord_txt</span> <span class="o">=</span> <span class="p">[]</span>
<span class="n">standard_orientation</span> <span class="o">=</span> <span class="kc">True</span>
<span class="n">geom_orientation</span> <span class="o">=</span> <span class="s2">"standard"</span>
<span class="n">read_coord</span> <span class="o">=</span> <span class="kc">True</span>
<span class="k">elif</span> <span class="n">input_orientation_patt</span><span class="o">.</span><span class="n">search</span><span class="p">(</span><span class="n">line</span><span class="p">):</span>
<span class="n">coord_txt</span> <span class="o">=</span> <span class="p">[]</span>
<span class="n">geom_orientation</span> <span class="o">=</span> <span class="s2">"input"</span>
<span class="n">read_coord</span> <span class="o">=</span> <span class="kc">True</span>
<span class="k">elif</span> <span class="ow">not</span> <span class="n">read_eigen</span> <span class="ow">and</span> <span class="n">orbital_patt</span><span class="o">.</span><span class="n">search</span><span class="p">(</span><span class="n">line</span><span class="p">):</span>
<span class="n">eigen_txt</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="n">line</span><span class="p">)</span>
<span class="n">read_eigen</span> <span class="o">=</span> <span class="kc">True</span>
<span class="k">elif</span> <span class="n">mulliken_patt</span><span class="o">.</span><span class="n">search</span><span class="p">(</span><span class="n">line</span><span class="p">):</span>
<span class="n">mulliken_txt</span> <span class="o">=</span> <span class="p">[]</span>
<span class="n">read_mulliken</span> <span class="o">=</span> <span class="kc">True</span>
<span class="k">elif</span> <span class="ow">not</span> <span class="n">parse_forces</span> <span class="ow">and</span> <span class="n">forces_on_patt</span><span class="o">.</span><span class="n">search</span><span class="p">(</span><span class="n">line</span><span class="p">):</span>
<span class="n">parse_forces</span> <span class="o">=</span> <span class="kc">True</span>
<span class="k">elif</span> <span class="n">freq_on_patt</span><span class="o">.</span><span class="n">search</span><span class="p">(</span><span class="n">line</span><span class="p">):</span>
<span class="n">parse_freq</span> <span class="o">=</span> <span class="kc">True</span>
<span class="p">[</span><span class="n">f</span><span class="o">.</span><span class="n">readline</span><span class="p">()</span> <span class="k">for</span> <span class="n">i</span> <span class="ow">in</span> <span class="nb">range</span><span class="p">(</span><span class="mi">3</span><span class="p">)]</span>
<span class="k">elif</span> <span class="n">mo_coeff_patt</span><span class="o">.</span><span class="n">search</span><span class="p">(</span><span class="n">line</span><span class="p">):</span>
<span class="k">if</span> <span class="s2">"Alpha"</span> <span class="ow">in</span> <span class="n">line</span><span class="p">:</span>
<span class="bp">self</span><span class="o">.</span><span class="n">is_spin</span> <span class="o">=</span> <span class="kc">True</span>
<span class="n">read_mo</span> <span class="o">=</span> <span class="kc">True</span>
<span class="k">elif</span> <span class="n">hessian_patt</span><span class="o">.</span><span class="n">search</span><span class="p">(</span><span class="n">line</span><span class="p">):</span>
<span class="n">parse_hessian</span> <span class="o">=</span> <span class="kc">True</span>
<span class="k">elif</span> <span class="n">resume_patt</span><span class="o">.</span><span class="n">search</span><span class="p">(</span><span class="n">line</span><span class="p">):</span>
<span class="n">resume</span> <span class="o">=</span> <span class="p">[]</span>
<span class="k">while</span> <span class="ow">not</span> <span class="n">resume_end_patt</span><span class="o">.</span><span class="n">search</span><span class="p">(</span><span class="n">line</span><span class="p">):</span>
<span class="n">resume</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="n">line</span><span class="p">)</span>
<span class="n">line</span> <span class="o">=</span> <span class="n">f</span><span class="o">.</span><span class="n">readline</span><span class="p">()</span>
<span class="c1"># security if \\@ not in one line !</span>
<span class="k">if</span> <span class="n">line</span> <span class="o">==</span> <span class="s2">"</span><span class="se">\n</span><span class="s2">"</span><span class="p">:</span>
<span class="k">break</span>
<span class="n">resume</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="n">line</span><span class="p">)</span>
<span class="n">resume</span> <span class="o">=</span> <span class="s2">""</span><span class="o">.</span><span class="n">join</span><span class="p">([</span><span class="n">r</span><span class="o">.</span><span class="n">strip</span><span class="p">()</span> <span class="k">for</span> <span class="n">r</span> <span class="ow">in</span> <span class="n">resume</span><span class="p">])</span>
<span class="bp">self</span><span class="o">.</span><span class="n">resumes</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="n">resume</span><span class="p">)</span>
<span class="k">elif</span> <span class="n">bond_order_patt</span><span class="o">.</span><span class="n">search</span><span class="p">(</span><span class="n">line</span><span class="p">):</span>
<span class="n">parse_bond_order</span> <span class="o">=</span> <span class="kc">True</span>
<span class="k">if</span> <span class="n">read_mulliken</span><span class="p">:</span>
<span class="k">if</span> <span class="ow">not</span> <span class="n">end_mulliken_patt</span><span class="o">.</span><span class="n">search</span><span class="p">(</span><span class="n">line</span><span class="p">):</span>
<span class="n">mulliken_txt</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="n">line</span><span class="p">)</span>
<span class="k">else</span><span class="p">:</span>
<span class="n">m</span> <span class="o">=</span> <span class="n">end_mulliken_patt</span><span class="o">.</span><span class="n">search</span><span class="p">(</span><span class="n">line</span><span class="p">)</span>
<span class="n">mulliken_charges</span> <span class="o">=</span> <span class="p">{}</span>
<span class="k">for</span> <span class="n">line</span> <span class="ow">in</span> <span class="n">mulliken_txt</span><span class="p">:</span>
<span class="k">if</span> <span class="n">mulliken_charge_patt</span><span class="o">.</span><span class="n">search</span><span class="p">(</span><span class="n">line</span><span class="p">):</span>
<span class="n">m</span> <span class="o">=</span> <span class="n">mulliken_charge_patt</span><span class="o">.</span><span class="n">search</span><span class="p">(</span><span class="n">line</span><span class="p">)</span>
<span class="n">dic</span> <span class="o">=</span> <span class="p">{</span><span class="nb">int</span><span class="p">(</span><span class="n">m</span><span class="o">.</span><span class="n">group</span><span class="p">(</span><span class="mi">1</span><span class="p">)):</span>
<span class="p">[</span><span class="n">m</span><span class="o">.</span><span class="n">group</span><span class="p">(</span><span class="mi">2</span><span class="p">),</span> <span class="nb">float</span><span class="p">(</span><span class="n">m</span><span class="o">.</span><span class="n">group</span><span class="p">(</span><span class="mi">3</span><span class="p">))]}</span>
<span class="n">mulliken_charges</span><span class="o">.</span><span class="n">update</span><span class="p">(</span><span class="n">dic</span><span class="p">)</span>
<span class="n">read_mulliken</span> <span class="o">=</span> <span class="kc">False</span>
<span class="bp">self</span><span class="o">.</span><span class="n">Mulliken_charges</span> <span class="o">=</span> <span class="n">mulliken_charges</span>
<span class="c1"># store the structures. If symmetry is considered, the standard orientation</span>
<span class="c1"># is used. Else the input orientation is used.</span>
<span class="k">if</span> <span class="n">standard_orientation</span><span class="p">:</span>
<span class="bp">self</span><span class="o">.</span><span class="n">structures</span> <span class="o">=</span> <span class="n">std_structures</span>
<span class="bp">self</span><span class="o">.</span><span class="n">structures_input_orientation</span> <span class="o">=</span> <span class="n">input_structures</span>
<span class="k">else</span><span class="p">:</span>
<span class="bp">self</span><span class="o">.</span><span class="n">structures</span> <span class="o">=</span> <span class="n">input_structures</span>
<span class="bp">self</span><span class="o">.</span><span class="n">structures_input_orientation</span> <span class="o">=</span> <span class="n">input_structures</span>
<span class="k">if</span> <span class="ow">not</span> <span class="n">terminated</span><span class="p">:</span>
<span class="n">warnings</span><span class="o">.</span><span class="n">warn</span><span class="p">(</span><span class="s2">"</span><span class="se">\n</span><span class="s2">"</span> <span class="o">+</span> <span class="bp">self</span><span class="o">.</span><span class="n">filename</span> <span class="o">+</span>
<span class="s2">": Termination error or bad Gaussian output file !"</span><span class="p">)</span>
<span class="k">def</span> <span class="nf">_check_pcm</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">line</span><span class="p">):</span>
<span class="n">energy_patt</span> <span class="o">=</span> <span class="n">re</span><span class="o">.</span><span class="n">compile</span><span class="p">(</span><span class="sa">r</span><span class="s2">"(Dispersion|Cavitation|Repulsion) energy"</span>
<span class="sa">r</span><span class="s2">"\s+\S+\s+=\s+(\S*)"</span><span class="p">)</span>
<span class="n">total_patt</span> <span class="o">=</span> <span class="n">re</span><span class="o">.</span><span class="n">compile</span><span class="p">(</span><span class="sa">r</span><span class="s2">"with all non electrostatic terms\s+\S+\s+"</span>
<span class="sa">r</span><span class="s2">"=\s+(\S*)"</span><span class="p">)</span>
<span class="n">parameter_patt</span> <span class="o">=</span> <span class="n">re</span><span class="o">.</span><span class="n">compile</span><span class="p">(</span><span class="sa">r</span><span class="s2">"(Eps|Numeral density|RSolv|Eps"</span>
<span class="sa">r</span><span class="s2">"\(inf[inity]*\))\s+=\s*(\S*)"</span><span class="p">)</span>
<span class="k">if</span> <span class="n">energy_patt</span><span class="o">.</span><span class="n">search</span><span class="p">(</span><span class="n">line</span><span class="p">):</span>
<span class="n">m</span> <span class="o">=</span> <span class="n">energy_patt</span><span class="o">.</span><span class="n">search</span><span class="p">(</span><span class="n">line</span><span class="p">)</span>
<span class="bp">self</span><span class="o">.</span><span class="n">pcm</span><span class="p">[</span><span class="s1">'</span><span class="si">{}</span><span class="s1"> energy'</span><span class="o">.</span><span class="n">format</span><span class="p">(</span><span class="n">m</span><span class="o">.</span><span class="n">group</span><span class="p">(</span><span class="mi">1</span><span class="p">))]</span> <span class="o">=</span> <span class="nb">float</span><span class="p">(</span><span class="n">m</span><span class="o">.</span><span class="n">group</span><span class="p">(</span><span class="mi">2</span><span class="p">))</span>
<span class="k">elif</span> <span class="n">total_patt</span><span class="o">.</span><span class="n">search</span><span class="p">(</span><span class="n">line</span><span class="p">):</span>
<span class="n">m</span> <span class="o">=</span> <span class="n">total_patt</span><span class="o">.</span><span class="n">search</span><span class="p">(</span><span class="n">line</span><span class="p">)</span>
<span class="bp">self</span><span class="o">.</span><span class="n">pcm</span><span class="p">[</span><span class="s1">'Total energy'</span><span class="p">]</span> <span class="o">=</span> <span class="nb">float</span><span class="p">(</span><span class="n">m</span><span class="o">.</span><span class="n">group</span><span class="p">(</span><span class="mi">1</span><span class="p">))</span>
<span class="k">elif</span> <span class="n">parameter_patt</span><span class="o">.</span><span class="n">search</span><span class="p">(</span><span class="n">line</span><span class="p">):</span>
<span class="n">m</span> <span class="o">=</span> <span class="n">parameter_patt</span><span class="o">.</span><span class="n">search</span><span class="p">(</span><span class="n">line</span><span class="p">)</span>
<span class="bp">self</span><span class="o">.</span><span class="n">pcm</span><span class="p">[</span><span class="n">m</span><span class="o">.</span><span class="n">group</span><span class="p">(</span><span class="mi">1</span><span class="p">)]</span> <span class="o">=</span> <span class="nb">float</span><span class="p">(</span><span class="n">m</span><span class="o">.</span><span class="n">group</span><span class="p">(</span><span class="mi">2</span><span class="p">))</span>
<div class="viewcode-block" id="GaussianOutput.as_dict"><a class="viewcode-back" href="../../../pymatgen.io.gaussian.html#pymatgen.io.gaussian.GaussianOutput.as_dict">[docs]</a> <span class="k">def</span> <span class="nf">as_dict</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span>
<span class="sd">"""</span>
<span class="sd"> Json-serializable dict representation.</span>
<span class="sd"> """</span>
<span class="n">structure</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">final_structure</span>
<span class="n">d</span> <span class="o">=</span> <span class="p">{</span><span class="s2">"has_gaussian_completed"</span><span class="p">:</span> <span class="bp">self</span><span class="o">.</span><span class="n">properly_terminated</span><span class="p">,</span>
<span class="s2">"nsites"</span><span class="p">:</span> <span class="nb">len</span><span class="p">(</span><span class="n">structure</span><span class="p">)}</span>
<span class="n">comp</span> <span class="o">=</span> <span class="n">structure</span><span class="o">.</span><span class="n">composition</span>
<span class="n">d</span><span class="p">[</span><span class="s2">"unit_cell_formula"</span><span class="p">]</span> <span class="o">=</span> <span class="n">comp</span><span class="o">.</span><span class="n">as_dict</span><span class="p">()</span>
<span class="n">d</span><span class="p">[</span><span class="s2">"reduced_cell_formula"</span><span class="p">]</span> <span class="o">=</span> <span class="n">Composition</span><span class="p">(</span><span class="n">comp</span><span class="o">.</span><span class="n">reduced_formula</span><span class="p">)</span><span class="o">.</span><span class="n">as_dict</span><span class="p">()</span>
<span class="n">d</span><span class="p">[</span><span class="s2">"pretty_formula"</span><span class="p">]</span> <span class="o">=</span> <span class="n">comp</span><span class="o">.</span><span class="n">reduced_formula</span>
<span class="n">d</span><span class="p">[</span><span class="s2">"is_pcm"</span><span class="p">]</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">is_pcm</span>
<span class="n">d</span><span class="p">[</span><span class="s2">"errors"</span><span class="p">]</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">errors</span>
<span class="n">d</span><span class="p">[</span><span class="s2">"Mulliken_charges"</span><span class="p">]</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">Mulliken_charges</span>
<span class="n">unique_symbols</span> <span class="o">=</span> <span class="nb">sorted</span><span class="p">(</span><span class="nb">list</span><span class="p">(</span><span class="n">d</span><span class="p">[</span><span class="s2">"unit_cell_formula"</span><span class="p">]</span><span class="o">.</span><span class="n">keys</span><span class="p">()))</span>
<span class="n">d</span><span class="p">[</span><span class="s2">"elements"</span><span class="p">]</span> <span class="o">=</span> <span class="n">unique_symbols</span>
<span class="n">d</span><span class="p">[</span><span class="s2">"nelements"</span><span class="p">]</span> <span class="o">=</span> <span class="nb">len</span><span class="p">(</span><span class="n">unique_symbols</span><span class="p">)</span>
<span class="n">d</span><span class="p">[</span><span class="s2">"charge"</span><span class="p">]</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">charge</span>
<span class="n">d</span><span class="p">[</span><span class="s2">"spin_multiplicity"</span><span class="p">]</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">spin_multiplicity</span>
<span class="n">vin</span> <span class="o">=</span> <span class="p">{</span><span class="s2">"route"</span><span class="p">:</span> <span class="bp">self</span><span class="o">.</span><span class="n">route_parameters</span><span class="p">,</span> <span class="s2">"functional"</span><span class="p">:</span> <span class="bp">self</span><span class="o">.</span><span class="n">functional</span><span class="p">,</span>
<span class="s2">"basis_set"</span><span class="p">:</span> <span class="bp">self</span><span class="o">.</span><span class="n">basis_set</span><span class="p">,</span>
<span class="s2">"nbasisfunctions"</span><span class="p">:</span> <span class="bp">self</span><span class="o">.</span><span class="n">num_basis_func</span><span class="p">,</span>
<span class="s2">"pcm_parameters"</span><span class="p">:</span> <span class="bp">self</span><span class="o">.</span><span class="n">pcm</span><span class="p">}</span>
<span class="n">d</span><span class="p">[</span><span class="s2">"input"</span><span class="p">]</span> <span class="o">=</span> <span class="n">vin</span>
<span class="n">nsites</span> <span class="o">=</span> <span class="nb">len</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">final_structure</span><span class="p">)</span>
<span class="n">vout</span> <span class="o">=</span> <span class="p">{</span>
<span class="s2">"energies"</span><span class="p">:</span> <span class="bp">self</span><span class="o">.</span><span class="n">energies</span><span class="p">,</span>
<span class="s2">"final_energy"</span><span class="p">:</span> <span class="bp">self</span><span class="o">.</span><span class="n">final_energy</span><span class="p">,</span>
<span class="s2">"final_energy_per_atom"</span><span class="p">:</span> <span class="bp">self</span><span class="o">.</span><span class="n">final_energy</span> <span class="o">/</span> <span class="n">nsites</span><span class="p">,</span>
<span class="s2">"molecule"</span><span class="p">:</span> <span class="n">structure</span><span class="o">.</span><span class="n">as_dict</span><span class="p">(),</span>
<span class="s2">"stationary_type"</span><span class="p">:</span> <span class="bp">self</span><span class="o">.</span><span class="n">stationary_type</span><span class="p">,</span>
<span class="s2">"corrections"</span><span class="p">:</span> <span class="bp">self</span><span class="o">.</span><span class="n">corrections</span>
<span class="p">}</span>
<span class="n">d</span><span class="p">[</span><span class="s1">'output'</span><span class="p">]</span> <span class="o">=</span> <span class="n">vout</span>
<span class="n">d</span><span class="p">[</span><span class="s2">"@module"</span><span class="p">]</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="vm">__class__</span><span class="o">.</span><span class="vm">__module__</span>
<span class="n">d</span><span class="p">[</span><span class="s2">"@class"</span><span class="p">]</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="vm">__class__</span><span class="o">.</span><span class="vm">__name__</span>
</div>
<span class="k">return</span> <span class="n">d</span>
<div class="viewcode-block" id="GaussianOutput.read_scan"><a class="viewcode-back" href="../../../pymatgen.io.gaussian.html#pymatgen.io.gaussian.GaussianOutput.read_scan">[docs]</a> <span class="k">def</span> <span class="nf">read_scan</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span>
<span class="sd">"""</span>
<span class="sd"> Read a potential energy surface from a gaussian scan calculation.</span>
<span class="sd"> Returns:</span>
<span class="sd"> A dict: {"energies": [ values ],</span>
<span class="sd"> "coords": {"d1": [ values ], "A2", [ values ], ... }}</span>
<span class="sd"> "energies" are the energies of all points of the potential energy</span>
<span class="sd"> surface. "coords" are the internal coordinates used to compute the</span>
<span class="sd"> potential energy surface and the internal coordinates optimized,</span>
<span class="sd"> labelled by their name as defined in the calculation.</span>
<span class="sd"> """</span>
<span class="k">def</span> <span class="nf">floatList</span><span class="p">(</span><span class="n">l</span><span class="p">):</span>
<span class="sd">""" return a list of float from a list of string """</span>
<span class="k">return</span> <span class="p">[</span><span class="nb">float</span><span class="p">(</span><span class="n">v</span><span class="p">)</span> <span class="k">for</span> <span class="n">v</span> <span class="ow">in</span> <span class="n">l</span><span class="p">]</span>
<span class="n">scan_patt</span> <span class="o">=</span> <span class="n">re</span><span class="o">.</span><span class="n">compile</span><span class="p">(</span><span class="sa">r</span><span class="s2">"^\sSummary of the potential surface scan:"</span><span class="p">)</span>
<span class="n">optscan_patt</span> <span class="o">=</span> <span class="n">re</span><span class="o">.</span><span class="n">compile</span><span class="p">(</span><span class="sa">r</span><span class="s2">"^\sSummary of Optimized Potential Surface Scan"</span><span class="p">)</span>
<span class="c1"># data dict return</span>
<span class="n">data</span> <span class="o">=</span> <span class="p">{</span><span class="s2">"energies"</span><span class="p">:</span> <span class="nb">list</span><span class="p">(),</span> <span class="s2">"coords"</span><span class="p">:</span> <span class="nb">dict</span><span class="p">()}</span>
<span class="c1"># read in file</span>
<span class="k">with</span> <span class="n">zopen</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">filename</span><span class="p">,</span> <span class="s2">"r"</span><span class="p">)</span> <span class="k">as</span> <span class="n">f</span><span class="p">:</span>
<span class="n">line</span> <span class="o">=</span> <span class="n">f</span><span class="o">.</span><span class="n">readline</span><span class="p">()</span>
<span class="k">while</span> <span class="n">line</span> <span class="o">!=</span> <span class="s2">""</span><span class="p">:</span>
<span class="k">if</span> <span class="n">optscan_patt</span><span class="o">.</span><span class="n">match</span><span class="p">(</span><span class="n">line</span><span class="p">):</span>
<span class="n">f</span><span class="o">.</span><span class="n">readline</span><span class="p">()</span>
<span class="n">line</span> <span class="o">=</span> <span class="n">f</span><span class="o">.</span><span class="n">readline</span><span class="p">()</span>
<span class="n">endScan</span> <span class="o">=</span> <span class="kc">False</span>
<span class="k">while</span> <span class="ow">not</span> <span class="n">endScan</span><span class="p">:</span>
<span class="n">data</span><span class="p">[</span><span class="s2">"energies"</span><span class="p">]</span> <span class="o">+=</span> <span class="n">floatList</span><span class="p">(</span><span class="n">float_patt</span><span class="o">.</span><span class="n">findall</span><span class="p">(</span><span class="n">line</span><span class="p">))</span>
<span class="n">line</span> <span class="o">=</span> <span class="n">f</span><span class="o">.</span><span class="n">readline</span><span class="p">()</span>
<span class="k">while</span> <span class="ow">not</span> <span class="n">re</span><span class="o">.</span><span class="n">search</span><span class="p">(</span><span class="sa">r</span><span class="s2">"(^\s+(\d+)|^\s-+)"</span><span class="p">,</span> <span class="n">line</span><span class="p">):</span>
<span class="n">icname</span> <span class="o">=</span> <span class="n">line</span><span class="o">.</span><span class="n">split</span><span class="p">()[</span><span class="mi">0</span><span class="p">]</span><span class="o">.</span><span class="n">strip</span><span class="p">()</span>
<span class="k">if</span> <span class="n">icname</span> <span class="ow">in</span> <span class="n">data</span><span class="p">[</span><span class="s2">"coords"</span><span class="p">]:</span>
<span class="n">data</span><span class="p">[</span><span class="s2">"coords"</span><span class="p">][</span><span class="n">icname</span><span class="p">]</span> <span class="o">+=</span> <span class="n">floatList</span><span class="p">(</span><span class="n">float_patt</span><span class="o">.</span><span class="n">findall</span><span class="p">(</span><span class="n">line</span><span class="p">))</span>
<span class="k">else</span><span class="p">:</span>
<span class="n">data</span><span class="p">[</span><span class="s2">"coords"</span><span class="p">][</span><span class="n">icname</span><span class="p">]</span> <span class="o">=</span> <span class="n">floatList</span><span class="p">(</span><span class="n">float_patt</span><span class="o">.</span><span class="n">findall</span><span class="p">(</span><span class="n">line</span><span class="p">))</span>
<span class="n">line</span> <span class="o">=</span> <span class="n">f</span><span class="o">.</span><span class="n">readline</span><span class="p">()</span>
<span class="k">if</span> <span class="n">re</span><span class="o">.</span><span class="n">search</span><span class="p">(</span><span class="sa">r</span><span class="s2">"^\s-+"</span><span class="p">,</span> <span class="n">line</span><span class="p">):</span>
<span class="n">endScan</span> <span class="o">=</span> <span class="kc">True</span>
<span class="k">else</span><span class="p">:</span>
<span class="n">line</span> <span class="o">=</span> <span class="n">f</span><span class="o">.</span><span class="n">readline</span><span class="p">()</span>
<span class="k">elif</span> <span class="n">scan_patt</span><span class="o">.</span><span class="n">match</span><span class="p">(</span><span class="n">line</span><span class="p">):</span>
<span class="n">line</span> <span class="o">=</span> <span class="n">f</span><span class="o">.</span><span class="n">readline</span><span class="p">()</span>
<span class="n">data</span><span class="p">[</span><span class="s2">"coords"</span><span class="p">]</span> <span class="o">=</span> <span class="p">{</span><span class="n">icname</span><span class="p">:</span> <span class="nb">list</span><span class="p">()</span>
<span class="k">for</span> <span class="n">icname</span> <span class="ow">in</span> <span class="n">line</span><span class="o">.</span><span class="n">split</span><span class="p">()[</span><span class="mi">1</span><span class="p">:</span><span class="o">-</span><span class="mi">1</span><span class="p">]}</span>
<span class="n">f</span><span class="o">.</span><span class="n">readline</span><span class="p">()</span>
<span class="n">line</span> <span class="o">=</span> <span class="n">f</span><span class="o">.</span><span class="n">readline</span><span class="p">()</span>
<span class="k">while</span> <span class="ow">not</span> <span class="n">re</span><span class="o">.</span><span class="n">search</span><span class="p">(</span><span class="sa">r</span><span class="s2">"^\s-+"</span><span class="p">,</span> <span class="n">line</span><span class="p">):</span>
<span class="n">values</span> <span class="o">=</span> <span class="n">floatList</span><span class="p">(</span><span class="n">line</span><span class="o">.</span><span class="n">split</span><span class="p">())</span>
<span class="n">data</span><span class="p">[</span><span class="s2">"energies"</span><span class="p">]</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="n">values</span><span class="p">[</span><span class="o">-</span><span class="mi">1</span><span class="p">])</span>
<span class="k">for</span> <span class="n">i</span><span class="p">,</span> <span class="n">icname</span> <span class="ow">in</span> <span class="nb">enumerate</span><span class="p">(</span><span class="n">data</span><span class="p">[</span><span class="s2">"coords"</span><span class="p">]):</span>
<span class="n">data</span><span class="p">[</span><span class="s2">"coords"</span><span class="p">][</span><span class="n">icname</span><span class="p">]</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="n">values</span><span class="p">[</span><span class="n">i</span><span class="o">+</span><span class="mi">1</span><span class="p">])</span>
<span class="n">line</span> <span class="o">=</span> <span class="n">f</span><span class="o">.</span><span class="n">readline</span><span class="p">()</span>
<span class="k">else</span><span class="p">:</span>
<span class="n">line</span> <span class="o">=</span> <span class="n">f</span><span class="o">.</span><span class="n">readline</span><span class="p">()</span>
</div>
<span class="k">return</span> <span class="n">data</span>
<div class="viewcode-block" id="GaussianOutput.get_scan_plot"><a class="viewcode-back" href="../../../pymatgen.io.gaussian.html#pymatgen.io.gaussian.GaussianOutput.get_scan_plot">[docs]</a> <span class="k">def</span> <span class="nf">get_scan_plot</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">coords</span><span class="o">=</span><span class="kc">None</span><span class="p">):</span>
<span class="sd">"""</span>
<span class="sd"> Get a matplotlib plot of the potential energy surface.</span>
<span class="sd"> Args:</span>
<span class="sd"> coords: internal coordinate name to use as abcissa.</span>
<span class="sd"> """</span>
<span class="kn">from</span> <span class="nn">pymatgen.util.plotting</span> <span class="k">import</span> <span class="n">pretty_plot</span>
<span class="n">plt</span> <span class="o">=</span> <span class="n">pretty_plot</span><span class="p">(</span><span class="mi">12</span><span class="p">,</span> <span class="mi">8</span><span class="p">)</span>
<span class="n">d</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">read_scan</span><span class="p">()</span>
<span class="k">if</span> <span class="n">coords</span> <span class="ow">and</span> <span class="n">coords</span> <span class="ow">in</span> <span class="n">d</span><span class="p">[</span><span class="s2">"coords"</span><span class="p">]:</span>
<span class="n">x</span> <span class="o">=</span> <span class="n">d</span><span class="p">[</span><span class="s2">"coords"</span><span class="p">][</span><span class="n">coords</span><span class="p">]</span>
<span class="n">plt</span><span class="o">.</span><span class="n">xlabel</span><span class="p">(</span><span class="n">coords</span><span class="p">)</span>
<span class="k">else</span><span class="p">:</span>
<span class="n">x</span> <span class="o">=</span> <span class="nb">range</span><span class="p">(</span><span class="nb">len</span><span class="p">(</span><span class="n">d</span><span class="p">[</span><span class="s2">"energies"</span><span class="p">]))</span>
<span class="n">plt</span><span class="o">.</span><span class="n">xlabel</span><span class="p">(</span><span class="s2">"points"</span><span class="p">)</span>
<span class="n">plt</span><span class="o">.</span><span class="n">ylabel</span><span class="p">(</span><span class="s2">"Energy (eV)"</span><span class="p">)</span>
<span class="n">e_min</span> <span class="o">=</span> <span class="nb">min</span><span class="p">(</span><span class="n">d</span><span class="p">[</span><span class="s2">"energies"</span><span class="p">])</span>
<span class="n">y</span> <span class="o">=</span> <span class="p">[(</span><span class="n">e</span> <span class="o">-</span> <span class="n">e_min</span><span class="p">)</span> <span class="o">*</span> <span class="n">Ha_to_eV</span> <span class="k">for</span> <span class="n">e</span> <span class="ow">in</span> <span class="n">d</span><span class="p">[</span><span class="s2">"energies"</span><span class="p">]]</span>
<span class="n">plt</span><span class="o">.</span><span class="n">plot</span><span class="p">(</span><span class="n">x</span><span class="p">,</span> <span class="n">y</span><span class="p">,</span> <span class="s2">"ro--"</span><span class="p">)</span></div>
<span class="k">return</span> <span class="n">plt</span>
<div class="viewcode-block" id="GaussianOutput.save_scan_plot"><a class="viewcode-back" href="../../../pymatgen.io.gaussian.html#pymatgen.io.gaussian.GaussianOutput.save_scan_plot">[docs]</a> <span class="k">def</span> <span class="nf">save_scan_plot</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">filename</span><span class="o">=</span><span class="s2">"scan.pdf"</span><span class="p">,</span>
<span class="n">img_format</span><span class="o">=</span><span class="s2">"pdf"</span><span class="p">,</span> <span class="n">coords</span><span class="o">=</span><span class="kc">None</span><span class="p">):</span>
<span class="sd">"""</span>
<span class="sd"> Save matplotlib plot of the potential energy surface to a file.</span>
<span class="sd"> Args:</span>
<span class="sd"> filename: Filename to write to.</span>
<span class="sd"> img_format: Image format to use. Defaults to EPS.</span>
<span class="sd"> coords: internal coordinate name to use as abcissa.</span>
<span class="sd"> """</span>
<span class="n">plt</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">get_scan_plot</span><span class="p">(</span><span class="n">coords</span><span class="p">)</span></div>
<span class="n">plt</span><span class="o">.</span><span class="n">savefig</span><span class="p">(</span><span class="n">filename</span><span class="p">,</span> <span class="nb">format</span><span class="o">=</span><span class="n">img_format</span><span class="p">)</span>
<div class="viewcode-block" id="GaussianOutput.read_excitation_energies"><a class="viewcode-back" href="../../../pymatgen.io.gaussian.html#pymatgen.io.gaussian.GaussianOutput.read_excitation_energies">[docs]</a> <span class="k">def</span> <span class="nf">read_excitation_energies</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span>
<span class="sd">"""</span>
<span class="sd"> Read a excitation energies after a TD-DFT calculation.</span>
<span class="sd"> Returns:</span>
<span class="sd"> A list: A list of tuple for each transition such as</span>
<span class="sd"> [(energie (eV), lambda (nm), oscillatory strength), ... ]</span>
<span class="sd"> """</span>
<span class="n">transitions</span> <span class="o">=</span> <span class="nb">list</span><span class="p">()</span>
<span class="c1"># read in file</span>
<span class="k">with</span> <span class="n">zopen</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">filename</span><span class="p">,</span> <span class="s2">"r"</span><span class="p">)</span> <span class="k">as</span> <span class="n">f</span><span class="p">:</span>
<span class="n">line</span> <span class="o">=</span> <span class="n">f</span><span class="o">.</span><span class="n">readline</span><span class="p">()</span>
<span class="n">td</span> <span class="o">=</span> <span class="kc">False</span>
<span class="k">while</span> <span class="n">line</span> <span class="o">!=</span> <span class="s2">""</span><span class="p">:</span>
<span class="k">if</span> <span class="n">re</span><span class="o">.</span><span class="n">search</span><span class="p">(</span><span class="sa">r</span><span class="s2">"^\sExcitation energies and oscillator strengths:"</span><span class="p">,</span> <span class="n">line</span><span class="p">):</span>
<span class="n">td</span> <span class="o">=</span> <span class="kc">True</span>
<span class="k">if</span> <span class="n">td</span><span class="p">:</span>
<span class="k">if</span> <span class="n">re</span><span class="o">.</span><span class="n">search</span><span class="p">(</span><span class="sa">r</span><span class="s2">"^\sExcited State\s*\d"</span><span class="p">,</span> <span class="n">line</span><span class="p">):</span>
<span class="n">val</span> <span class="o">=</span> <span class="p">[</span><span class="nb">float</span><span class="p">(</span><span class="n">v</span><span class="p">)</span> <span class="k">for</span> <span class="n">v</span> <span class="ow">in</span> <span class="n">float_patt</span><span class="o">.</span><span class="n">findall</span><span class="p">(</span><span class="n">line</span><span class="p">)]</span>
<span class="n">transitions</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="nb">tuple</span><span class="p">(</span><span class="n">val</span><span class="p">[</span><span class="mi">0</span><span class="p">:</span><span class="mi">3</span><span class="p">]))</span>
<span class="n">line</span> <span class="o">=</span> <span class="n">f</span><span class="o">.</span><span class="n">readline</span><span class="p">()</span></div>
<span class="k">return</span> <span class="n">transitions</span>
<div class="viewcode-block" id="GaussianOutput.get_spectre_plot"><a class="viewcode-back" href="../../../pymatgen.io.gaussian.html#pymatgen.io.gaussian.GaussianOutput.get_spectre_plot">[docs]</a> <span class="k">def</span> <span class="nf">get_spectre_plot</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">sigma</span><span class="o">=</span><span class="mf">0.05</span><span class="p">,</span> <span class="n">step</span><span class="o">=</span><span class="mf">0.01</span><span class="p">):</span>
<span class="sd">"""</span>
<span class="sd"> Get a matplotlib plot of the UV-visible xas. Transition are plotted</span>
<span class="sd"> as vertical lines and as a sum of normal functions with sigma with. The</span>
<span class="sd"> broadening is applied in energy and the xas is plotted as a function</span>
<span class="sd"> of the wavelength.</span>
<span class="sd"> Args:</span>
<span class="sd"> sigma: Full width at half maximum in eV for normal functions.</span>
<span class="sd"> step: bin interval in eV</span>
<span class="sd"> Returns:</span>
<span class="sd"> A dict: {"energies": values, "lambda": values, "xas": values}</span>
<span class="sd"> where values are lists of abscissa (energies, lamba) and</span>
<span class="sd"> the sum of gaussian functions (xas).</span>
<span class="sd"> A matplotlib plot.</span>
<span class="sd"> """</span>
<span class="kn">from</span> <span class="nn">pymatgen.util.plotting</span> <span class="k">import</span> <span class="n">pretty_plot</span>
<span class="kn">from</span> <span class="nn">matplotlib.mlab</span> <span class="k">import</span> <span class="n">normpdf</span>
<span class="n">plt</span> <span class="o">=</span> <span class="n">pretty_plot</span><span class="p">(</span><span class="mi">12</span><span class="p">,</span> <span class="mi">8</span><span class="p">)</span>
<span class="n">transitions</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">read_excitation_energies</span><span class="p">()</span>
<span class="n">minval</span> <span class="o">=</span> <span class="nb">min</span><span class="p">([</span><span class="n">val</span><span class="p">[</span><span class="mi">0</span><span class="p">]</span> <span class="k">for</span> <span class="n">val</span> <span class="ow">in</span> <span class="n">transitions</span><span class="p">])</span> <span class="o">-</span> <span class="mf">5.0</span> <span class="o">*</span> <span class="n">sigma</span>
<span class="n">maxval</span> <span class="o">=</span> <span class="nb">max</span><span class="p">([</span><span class="n">val</span><span class="p">[</span><span class="mi">0</span><span class="p">]</span> <span class="k">for</span> <span class="n">val</span> <span class="ow">in</span> <span class="n">transitions</span><span class="p">])</span> <span class="o">+</span> <span class="mf">5.0</span> <span class="o">*</span> <span class="n">sigma</span>
<span class="n">npts</span> <span class="o">=</span> <span class="nb">int</span><span class="p">((</span><span class="n">maxval</span> <span class="o">-</span> <span class="n">minval</span><span class="p">)</span> <span class="o">/</span> <span class="n">step</span><span class="p">)</span> <span class="o">+</span> <span class="mi">1</span>
<span class="n">eneval</span> <span class="o">=</span> <span class="n">np</span><span class="o">.</span><span class="n">linspace</span><span class="p">(</span><span class="n">minval</span><span class="p">,</span> <span class="n">maxval</span><span class="p">,</span> <span class="n">npts</span><span class="p">)</span> <span class="c1"># in eV</span>
<span class="n">lambdaval</span> <span class="o">=</span> <span class="p">[</span><span class="n">cst</span><span class="o">.</span><span class="n">h</span> <span class="o">*</span> <span class="n">cst</span><span class="o">.</span><span class="n">c</span> <span class="o">/</span> <span class="p">(</span><span class="n">val</span> <span class="o">*</span> <span class="n">cst</span><span class="o">.</span><span class="n">e</span><span class="p">)</span> <span class="o">*</span> <span class="mf">1.e9</span>
<span class="k">for</span> <span class="n">val</span> <span class="ow">in</span> <span class="n">eneval</span><span class="p">]</span> <span class="c1"># in nm</span>
<span class="c1"># sum of gaussian functions</span>
<span class="n">spectre</span> <span class="o">=</span> <span class="n">np</span><span class="o">.</span><span class="n">zeros</span><span class="p">(</span><span class="n">npts</span><span class="p">)</span>
<span class="k">for</span> <span class="n">trans</span> <span class="ow">in</span> <span class="n">transitions</span><span class="p">:</span>
<span class="n">spectre</span> <span class="o">+=</span> <span class="n">trans</span><span class="p">[</span><span class="mi">2</span><span class="p">]</span> <span class="o">*</span> <span class="n">normpdf</span><span class="p">(</span><span class="n">eneval</span><span class="p">,</span> <span class="n">trans</span><span class="p">[</span><span class="mi">0</span><span class="p">],</span> <span class="n">sigma</span><span class="p">)</span>
<span class="n">spectre</span> <span class="o">/=</span> <span class="n">spectre</span><span class="o">.</span><span class="n">max</span><span class="p">()</span>
<span class="n">plt</span><span class="o">.</span><span class="n">plot</span><span class="p">(</span><span class="n">lambdaval</span><span class="p">,</span> <span class="n">spectre</span><span class="p">,</span> <span class="s2">"r-"</span><span class="p">,</span> <span class="n">label</span><span class="o">=</span><span class="s2">"spectre"</span><span class="p">)</span>
<span class="n">data</span> <span class="o">=</span> <span class="p">{</span><span class="s2">"energies"</span><span class="p">:</span> <span class="n">eneval</span><span class="p">,</span> <span class="s2">"lambda"</span><span class="p">:</span> <span class="n">lambdaval</span><span class="p">,</span> <span class="s2">"xas"</span><span class="p">:</span> <span class="n">spectre</span><span class="p">}</span>
<span class="c1"># plot transitions as vlines</span>
<span class="n">plt</span><span class="o">.</span><span class="n">vlines</span><span class="p">([</span><span class="n">val</span><span class="p">[</span><span class="mi">1</span><span class="p">]</span> <span class="k">for</span> <span class="n">val</span> <span class="ow">in</span> <span class="n">transitions</span><span class="p">],</span>
<span class="mf">0.</span><span class="p">,</span>
<span class="p">[</span><span class="n">val</span><span class="p">[</span><span class="mi">2</span><span class="p">]</span> <span class="k">for</span> <span class="n">val</span> <span class="ow">in</span> <span class="n">transitions</span><span class="p">],</span>
<span class="n">color</span><span class="o">=</span><span class="s2">"blue"</span><span class="p">,</span>
<span class="n">label</span><span class="o">=</span><span class="s2">"transitions"</span><span class="p">,</span>
<span class="n">linewidth</span><span class="o">=</span><span class="mi">2</span><span class="p">)</span>
<span class="n">plt</span><span class="o">.</span><span class="n">xlabel</span><span class="p">(</span><span class="s2">"$</span><span class="se">\\</span><span class="s2">lambda$ (nm)"</span><span class="p">)</span>
<span class="n">plt</span><span class="o">.</span><span class="n">ylabel</span><span class="p">(</span><span class="s2">"Arbitrary unit"</span><span class="p">)</span>
<span class="n">plt</span><span class="o">.</span><span class="n">legend</span><span class="p">()</span>
</div>
<span class="k">return</span> <span class="n">data</span><span class="p">,</span> <span class="n">plt</span>
<div class="viewcode-block" id="GaussianOutput.save_spectre_plot"><a class="viewcode-back" href="../../../pymatgen.io.gaussian.html#pymatgen.io.gaussian.GaussianOutput.save_spectre_plot">[docs]</a> <span class="k">def</span> <span class="nf">save_spectre_plot</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">filename</span><span class="o">=</span><span class="s2">"spectre.pdf"</span><span class="p">,</span> <span class="n">img_format</span><span class="o">=</span><span class="s2">"pdf"</span><span class="p">,</span>
<span class="n">sigma</span><span class="o">=</span><span class="mf">0.05</span><span class="p">,</span> <span class="n">step</span><span class="o">=</span><span class="mf">0.01</span><span class="p">):</span>
<span class="sd">"""</span>
<span class="sd"> Save matplotlib plot of the spectre to a file.</span>
<span class="sd"> Args:</span>
<span class="sd"> filename: Filename to write to.</span>
<span class="sd"> img_format: Image format to use. Defaults to EPS.</span>
<span class="sd"> sigma: Full width at half maximum in eV for normal functions.</span>
<span class="sd"> step: bin interval in eV</span>
<span class="sd"> """</span>
<span class="n">d</span><span class="p">,</span> <span class="n">plt</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">get_spectre_plot</span><span class="p">(</span><span class="n">sigma</span><span class="p">,</span> <span class="n">step</span><span class="p">)</span></div>
<span class="n">plt</span><span class="o">.</span><span class="n">savefig</span><span class="p">(</span><span class="n">filename</span><span class="p">,</span> <span class="nb">format</span><span class="o">=</span><span class="n">img_format</span><span class="p">)</span>
<div class="viewcode-block" id="GaussianOutput.to_input"><a class="viewcode-back" href="../../../pymatgen.io.gaussian.html#pymatgen.io.gaussian.GaussianOutput.to_input">[docs]</a> <span class="k">def</span> <span class="nf">to_input</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">mol</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">charge</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span>
<span class="n">spin_multiplicity</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">title</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">functional</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span>
<span class="n">basis_set</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">route_parameters</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">input_parameters</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span>
<span class="n">link0_parameters</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">dieze_tag</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">cart_coords</span><span class="o">=</span><span class="kc">False</span><span class="p">):</span>
<span class="sd">"""</span>
<span class="sd"> Create a new input object using by default the last geometry read in</span>
<span class="sd"> the output file and with the same calculation parameters. Arguments</span>
<span class="sd"> are the same as GaussianInput class.</span>
<span class="sd"> Returns</span>
<span class="sd"> gaunip (GaussianInput) : the gaussian input object</span>
<span class="sd"> """</span>
<span class="k">if</span> <span class="ow">not</span> <span class="n">mol</span><span class="p">:</span>
<span class="n">mol</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">final_structure</span>
<span class="k">if</span> <span class="n">charge</span> <span class="ow">is</span> <span class="kc">None</span><span class="p">:</span>
<span class="n">charge</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">charge</span>
<span class="k">if</span> <span class="n">spin_multiplicity</span> <span class="ow">is</span> <span class="kc">None</span><span class="p">:</span>
<span class="n">spin_multiplicity</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">spin_multiplicity</span>
<span class="k">if</span> <span class="ow">not</span> <span class="n">title</span><span class="p">:</span>
<span class="n">title</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">title</span>
<span class="k">if</span> <span class="ow">not</span> <span class="n">functional</span><span class="p">:</span>
<span class="n">functional</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">functional</span>
<span class="k">if</span> <span class="ow">not</span> <span class="n">basis_set</span><span class="p">:</span>
<span class="n">basis_set</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">basis_set</span>
<span class="k">if</span> <span class="ow">not</span> <span class="n">route_parameters</span><span class="p">:</span>
<span class="n">route_parameters</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">route_parameters</span>
<span class="k">if</span> <span class="ow">not</span> <span class="n">link0_parameters</span><span class="p">:</span>
<span class="n">link0_parameters</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">link0</span>
<span class="k">if</span> <span class="ow">not</span> <span class="n">dieze_tag</span><span class="p">:</span>
<span class="n">dieze_tag</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">dieze_tag</span>
<span class="k">return</span> <span class="n">GaussianInput</span><span class="p">(</span><span class="n">mol</span><span class="o">=</span><span class="n">mol</span><span class="p">,</span>
<span class="n">charge</span><span class="o">=</span><span class="n">charge</span><span class="p">,</span>
<span class="n">spin_multiplicity</span><span class="o">=</span><span class="n">spin_multiplicity</span><span class="p">,</span>
<span class="n">title</span><span class="o">=</span><span class="n">title</span><span class="p">,</span>
<span class="n">functional</span><span class="o">=</span><span class="n">functional</span><span class="p">,</span>
<span class="n">basis_set</span><span class="o">=</span><span class="n">basis_set</span><span class="p">,</span>
<span class="n">route_parameters</span><span class="o">=</span><span class="n">route_parameters</span><span class="p">,</span>
<span class="n">input_parameters</span><span class="o">=</span><span class="n">input_parameters</span><span class="p">,</span>
<span class="n">link0_parameters</span><span class="o">=</span><span class="n">link0_parameters</span><span class="p">,</span></div></div>
<span class="n">dieze_tag</span><span class="o">=</span><span class="n">dieze_tag</span><span class="p">)</span>
</pre></div>
</div>
</div>
</div>
<div class="sphinxsidebar" role="navigation" aria-label="main navigation">
<div class="sphinxsidebarwrapper">
<div id="searchbox" style="display: none" role="search">
<h3>Quick search</h3>
<div class="searchformwrapper">
<form class="search" action="../../../search.html" method="get">
<input type="text" name="q" />
<input type="submit" value="Go" />
<input type="hidden" name="check_keywords" value="yes" />
<input type="hidden" name="area" value="default" />
</form>
</div>
</div>
<script type="text/javascript">$('#searchbox').show(0);</script>
</div>
</div>
<div class="clearer"></div>
</div>
<div class="related" role="navigation" aria-label="related navigation">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a href="../../../genindex.html" title="General Index"
>index</a></li>
<li class="right" >
<a href="../../../py-modindex.html" title="Python Module Index"
>modules</a> |</li>
<li class="nav-item nav-item-0"><a href="../../../index.html">pymatgen 2018.3.14 documentation</a> »</li>
<li class="nav-item nav-item-1"><a href="../../index.html" >Module code</a> »</li>
<li class="nav-item nav-item-2"><a href="../../pymatgen.html" >pymatgen</a> »</li>
</ul>
</div>
<div class="footer" role="contentinfo">
© Copyright 2011, Pymatgen Development Team.
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.7.1.
</div>
<div class="footer">This page uses <a href="http://analytics.google.com/">
Google Analytics</a> to collect statistics. You can disable it by blocking
the JavaScript coming from www.google-analytics.com.
<script type="text/javascript">
(function() {
var ga = document.createElement('script');
ga.src = ('https:' == document.location.protocol ?
'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
ga.setAttribute('async', 'true');
document.documentElement.firstChild.appendChild(ga);
})();
</script>
</div>
</body>
</html> |
style/style.css | jordanyryan/JDTube | .search-bar {
margin: 20px;
text-align: center;
}
.search-bar input {
width: 75%;
}
.video-detail .details {
margin-top: 10px;
padding: 10px;
border: 1px solid #ddd;
border-radius: 4px;
}
.list-group-item {
cursor: pointer;
}
.list-group-item:hover {
background-color: #eee;
} |
index.html | ledlogic/roulette | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Roulette</title>
<link rel="stylesheet" href="roulette.css" media="screen">
<script src="raphael.js"></script>
<script src="roulette.js"></script>
</head>
<body>
<div id="header">
<h1>Roulette</h1>
<p>Raphaël-rendered roulette wheel.</p>
</div>
<div id="body">
<div id="controls">
<ul>
<li><a href="#" onclick="rouletteSpinner.doTogglePause()">Pause / Play</a></li>
<li><a href="#" onclick="rouletteSpinner.doRollBall()">Roll Ball</a></li>
<li><a href="#" onclick="rouletteSpinner.doTakeBall()">Take Ball</a></li>
</ul>
</div>
<div id="rouletteTable">
<div id="rouletteWheel"></div>
<div id="ballWheel"></div>
<div class="clearfix"></div>
<div id="chipTable"></div>
</div>
</div>
<div class="clearfix"></div>
<div id="footer">
<p>© 2010 Jeff D. Conrad. <a href="https://github.com/ledlogic/roulette/blob/master/LICENSE">MIT License.</a></p>
</div>
</body>
</html> |
clean/Linux-x86_64-4.03.0-2.0.5/released/8.7.1+1/int-map/8.8.0.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>int-map: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.7.1+1 / int-map - 8.8.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
int-map
<small>
8.8.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-01-05 21:09:41 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-01-05 21:09:41 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-num base Num library distributed with the OCaml compiler
base-threads base
base-unix base
camlp5 7.14 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-perl 1 Virtual package relying on perl
coq 8.7.1+1 Formal proof management system
num 0 The Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.03.0 The OCaml compiler (virtual package)
ocaml-base-compiler 4.03.0 Official 4.03.0 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "Hugo.Herbelin@inria.fr"
homepage: "https://github.com/coq-contribs/int-map"
license: "Unknown"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/IntMap"]
depends: [
"ocaml"
"coq" {>= "8.8" & < "8.9~"}
]
tags: [ "keyword: finite sets" "keyword: maps" "keyword: binary integers" "keyword: efficient data structures" "keyword: data structures" "category: Computer Science/Data Types and Data Structures" "date: around 1999 (integrated within Coq 7.0)" ]
authors: [ "Jean Goubault <goubault [@] lsv.ens-cachan.fr>" ]
bug-reports: "https://github.com/coq-contribs/int-map/issues"
dev-repo: "git+https://github.com/coq-contribs/int-map.git"
synopsis: "Maps indexed by binary integers : IntMap"
description: """
This library contains a data structure for finite sets implemented by
an efficient structure of map (trees indexed by binary integers).
It was initially developed by Jean Goubault.
This user contribution used to be part of Coq Standard Library.
It is now considered to be obsolete and subsumed by the new
FSets/FMap library. IntMap can be now seen as a particular
implementation of FMapInterface, see file FMapIntMap."""
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/int-map/archive/v8.8.0.tar.gz"
checksum: "md5=8fe4794955fcd652395c3cc687a584d6"
}
</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-int-map.8.8.0 coq.8.7.1+1</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.7.1+1).
The following dependencies couldn't be met:
- coq-int-map -> coq >= 8.8 -> ocaml >= 4.05.0
base of this switch (use `--unlock-base' to force)
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-int-map.8.8.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
src/xpose.sitetheme/xpose/sitetheme/resources/_includes/datapanel.html | potzenheimer/xdash | <div class="datapanel" id="main-stats">
<div class="row datapanel-row">
<div class="col-md-3 col-sm-3 datapanel-item">
<div class="item-data">
<span class="numberic">2457</span>
visits
</div>
<span class="item-date">Today</span>
</div>
<div class="col-md-3 col-sm-3 datapanel-item">
<div class="item-data">
<span class="numberic">3240</span>
users
</div>
<span class="item-date">February 2013</span>
</div>
<div class="col-md-3 col-sm-3 datapanel-item">
<div class="item-data">
<span class="numberic">322</span>
orders
</div>
<span class="item-date">This week</span>
</div>
<div class="col-md-3 col-sm-3 datapanel-item last">
<div class="item-data">
<span class="numberic">$2,340</span>
sales
</div>
<span class="item-date">last 30 days</span>
</div>
</div>
</div> |
2006/09/08/upstart-in-universe-of-ubuntu-edgy/index.html | lethean/lethean.github.io | <!DOCTYPE html>
<html lang="ko-kr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="generator" content="Source Themes Academic 4.7.0">
<meta name="description" content="(http://www.netsplit.com/blog/work/canonical/upstart.html) UNIX System V부터 현재 대부분의 리눅스 배포판에 지금까지 사용하는 sysvinit 시스템이 Ubuntu Edgy 버전에서 upstart라는 이벤트-작업(job) 기반 시스템으로 교체되고 있">
<link rel="alternate" hreflang="ko-kr" href="https://lethean.github.io/2006/09/08/upstart-in-universe-of-ubuntu-edgy/">
<meta name="theme-color" content="#3f51b5">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/academicons/1.8.6/css/academicons.min.css" integrity="sha256-uFVgMKfistnJAfoCUQigIl+JfUaP47GrRKjf6CTPVmw=" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.12.0-1/css/all.min.css" integrity="sha256-4w9DunooKSr3MFXHXWyFER38WmPdm361bQS/2KUWZbU=" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/fancybox/3.5.7/jquery.fancybox.min.css" integrity="sha256-Vzbj7sDDS/woiFS3uNKo8eIuni59rjyNGtXfstRzStA=" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.15.10/styles/github.min.css" crossorigin="anonymous" title="hl-light">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.15.10/styles/dracula.min.css" crossorigin="anonymous" title="hl-dark" disabled>
<script src="https://cdnjs.cloudflare.com/ajax/libs/lazysizes/5.1.2/lazysizes.min.js" integrity="sha256-Md1qLToewPeKjfAHU1zyPwOutccPAm5tahnaw7Osw0A=" crossorigin="anonymous" async></script>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat:400,700%7CRoboto:400,400italic,700%7CRoboto+Mono&display=swap">
<link rel="stylesheet" href="/css/academic.css">
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-3202603-9"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
function trackOutboundLink(url, target) {
gtag('event', 'click', {
'event_category': 'outbound',
'event_label': url,
'transport_type': 'beacon',
'event_callback': function () {
if (target !== '_blank') {
document.location = url;
}
}
});
console.debug("Outbound link clicked: " + url);
}
function onClickCallback(event) {
if ((event.target.tagName !== 'A') || (event.target.host === window.location.host)) {
return;
}
trackOutboundLink(event.target, event.target.getAttribute('target'));
}
gtag('js', new Date());
gtag('config', 'UA-3202603-9', {});
document.addEventListener('click', onClickCallback, false);
</script>
<link rel="manifest" href="/index.webmanifest">
<link rel="icon" type="image/png" href="/images/icon_hu95c16a3019ad21b24832aeafe533c33c_47314_32x32_fill_lanczos_center_2.png">
<link rel="apple-touch-icon" type="image/png" href="/images/icon_hu95c16a3019ad21b24832aeafe533c33c_47314_192x192_fill_lanczos_center_2.png">
<link rel="canonical" href="https://lethean.github.io/2006/09/08/upstart-in-universe-of-ubuntu-edgy/">
<meta property="twitter:card" content="summary">
<meta property="og:site_name" content="대체로 무해함">
<meta property="og:url" content="https://lethean.github.io/2006/09/08/upstart-in-universe-of-ubuntu-edgy/">
<meta property="og:title" content="Upstart in Universe of Ubuntu Edgy | 대체로 무해함">
<meta property="og:description" content="(http://www.netsplit.com/blog/work/canonical/upstart.html) UNIX System V부터 현재 대부분의 리눅스 배포판에 지금까지 사용하는 sysvinit 시스템이 Ubuntu Edgy 버전에서 upstart라는 이벤트-작업(job) 기반 시스템으로 교체되고 있"><meta property="og:image" content="img/map[gravatar:%!s(bool=false) shape:circle]">
<meta property="twitter:image" content="img/map[gravatar:%!s(bool=false) shape:circle]"><meta property="og:locale" content="ko-kr">
<meta property="article:published_time" content="2006-09-08T00:00:00+00:00">
<meta property="article:modified_time" content="2006-09-08T00:00:00+00:00">
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "BlogPosting",
"mainEntityOfPage": {
"@type": "WebPage",
"@id": "https://lethean.github.io/2006/09/08/upstart-in-universe-of-ubuntu-edgy/"
},
"headline": "Upstart in Universe of Ubuntu Edgy",
"datePublished": "2006-09-08T00:00:00Z",
"dateModified": "2006-09-08T00:00:00Z",
"author": {
"@type": "Person",
"name": "대체로 무해함"
},
"publisher": {
"@type": "Organization",
"name": "대체로 무해함",
"logo": {
"@type": "ImageObject",
"url": "img/https://lethean.github.io/"
}
},
"description": "(http://www.netsplit.com/blog/work/canonical/upstart.html) UNIX System V부터 현재 대부분의 리눅스 배포판에 지금까지 사용하는 sysvinit 시스템이 Ubuntu Edgy 버전에서 upstart라는 이벤트-작업(job) 기반 시스템으로 교체되고 있"
}
</script>
<title>Upstart in Universe of Ubuntu Edgy | 대체로 무해함</title>
</head>
<body id="top" data-spy="scroll" data-offset="70" data-target="#TableOfContents" >
<aside class="search-results" id="search">
<div class="container">
<section class="search-header">
<div class="row no-gutters justify-content-between mb-3">
<div class="col-6">
<h1>Search</h1>
</div>
<div class="col-6 col-search-close">
<a class="js-search" href="#"><i class="fas fa-times-circle text-muted" aria-hidden="true"></i></a>
</div>
</div>
<div id="search-box">
<input name="q" id="search-query" placeholder="Search..." autocapitalize="off"
autocomplete="off" autocorrect="off" spellcheck="false" type="search">
</div>
</section>
<section class="section-search-results">
<div id="search-hits">
</div>
</section>
</div>
</aside>
<nav class="navbar navbar-expand-lg navbar-light compensate-for-scrollbar" id="navbar-main">
<div class="container">
<div class="d-none d-lg-inline-flex">
<a class="navbar-brand" href="/">대체로 무해함</a>
</div>
<button type="button" class="navbar-toggler" data-toggle="collapse"
data-target="#navbar-content" aria-controls="navbar" aria-expanded="false" aria-label="네비게이션">
<span><i class="fas fa-bars"></i></span>
</button>
<div class="navbar-brand-mobile-wrapper d-inline-flex d-lg-none">
<a class="navbar-brand" href="/">대체로 무해함</a>
</div>
<div class="navbar-collapse main-menu-item collapse justify-content-start" id="navbar-content">
<ul class="navbar-nav d-md-inline-flex">
<li class="nav-item">
<a class="nav-link " href="/lethean/"><span>About</span></a>
</li>
</ul>
</div>
<ul class="nav-icons navbar-nav flex-row ml-auto d-flex pl-md-2">
<li class="nav-item">
<a class="nav-link js-search" href="#"><i class="fas fa-search" aria-hidden="true"></i></a>
</li>
</ul>
</div>
</nav>
<article class="article">
<div class="article-container pt-3">
<h1>Upstart in Universe of Ubuntu Edgy</h1>
<div class="article-metadata">
<span class="article-date">
2006-09-08
</span>
<span class="middot-divider"></span>
<a href="/2006/09/08/upstart-in-universe-of-ubuntu-edgy/#disqus_thread"></a>
</div>
</div>
<div class="article-container">
<div class="article-style">
<p>(<a href="http://www.netsplit.com/blog/work/canonical/upstart.html">http://www.netsplit.com/blog/work/canonical/upstart.html</a>)</p>
<p><span class="caps">UNIX</span> System V부터 현재 대부분의 리눅스 배포판에 지금까지 사용하는 sysvinit 시스템이 Ubuntu Edgy 버전에서 upstart라는 이벤트-작업(job) 기반 시스템으로 교체되고 있다. 현존하는 initng, launchd, SMF 등과 같은 sysvinit의 다른 대안을 선택하지 않고 우분투 팀에서 새로 만들어가고 있는 것 같다.</p>
<p>아마도 가장 큰 변화는 USB 메모리나 USB 네트웍 장치처럼 실행 중에 추가되고 삭제되는 환경을 고려한다는 점이고, 이벤트 기반으로 시스템 초기화 스크립트(/etc/rcS.d)가 재작성되고, 결국에는 모든 패키지의 데몬이 upstart 방식으로 변경될 것 같다.</p>
<p>과연 upstart 방식이 우분투 리눅스에서만 사용하게 될 것인가, 다른 배포판에도 영향을 끼칠 것인가는 아직 미지수다. 하지만 지금까지 대부분 Unix / Linux 사용자와 관리자에게 너무나 당연하게 여겨졌던 /etc/rc?.d 데몬 방식이 변경되면, 새로 공부할게 한 가지 더 늘어나게 되겠군..</p>
<p>dbus, udev, hal, … 리눅스도 이제 충분히 (개발자에게는) 복잡한 시스템이 되어가고 있다.</p>
</div>
<div class="article-tags">
<a class="badge badge-light" href="/tags/linux/">Linux</a>
<a class="badge badge-light" href="/tags/ubuntu/">Ubuntu</a>
</div>
<div class="share-box" aria-hidden="true">
<ul class="share">
<li>
<a href="https://twitter.com/intent/tweet?url=https://lethean.github.io/2006/09/08/upstart-in-universe-of-ubuntu-edgy/&text=Upstart%20in%20Universe%20of%20Ubuntu%20Edgy" target="_blank" rel="noopener" class="share-btn-twitter">
<i class="fab fa-twitter"></i>
</a>
</li>
<li>
<a href="https://www.facebook.com/sharer.php?u=https://lethean.github.io/2006/09/08/upstart-in-universe-of-ubuntu-edgy/&t=Upstart%20in%20Universe%20of%20Ubuntu%20Edgy" target="_blank" rel="noopener" class="share-btn-facebook">
<i class="fab fa-facebook"></i>
</a>
</li>
<li>
<a href="mailto:?subject=Upstart%20in%20Universe%20of%20Ubuntu%20Edgy&body=https://lethean.github.io/2006/09/08/upstart-in-universe-of-ubuntu-edgy/" target="_blank" rel="noopener" class="share-btn-email">
<i class="fas fa-envelope"></i>
</a>
</li>
<li>
<a href="https://www.linkedin.com/shareArticle?url=https://lethean.github.io/2006/09/08/upstart-in-universe-of-ubuntu-edgy/&title=Upstart%20in%20Universe%20of%20Ubuntu%20Edgy" target="_blank" rel="noopener" class="share-btn-linkedin">
<i class="fab fa-linkedin-in"></i>
</a>
</li>
<li>
<a href="https://web.whatsapp.com/send?text=Upstart%20in%20Universe%20of%20Ubuntu%20Edgy%20https://lethean.github.io/2006/09/08/upstart-in-universe-of-ubuntu-edgy/" target="_blank" rel="noopener" class="share-btn-whatsapp">
<i class="fab fa-whatsapp"></i>
</a>
</li>
<li>
<a href="https://service.weibo.com/share/share.php?url=https://lethean.github.io/2006/09/08/upstart-in-universe-of-ubuntu-edgy/&title=Upstart%20in%20Universe%20of%20Ubuntu%20Edgy" target="_blank" rel="noopener" class="share-btn-weibo">
<i class="fab fa-weibo"></i>
</a>
</li>
</ul>
</div>
<section id="comments">
<div id="disqus_thread"></div>
<script>
let disqus_config = function () {
};
(function() {
if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) {
document.getElementById('disqus_thread').innerHTML = 'Disqus comments not available by default when the website is previewed locally.';
return;
}
var d = document, s = d.createElement('script'); s.async = true;
s.src = 'https://' + "lethean" + '.disqus.com/embed.js';
s.setAttribute('data-timestamp', +new Date());
(d.head || d.body).appendChild(s);
})();
</script>
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
</section>
<div class="article-widget content-widget-hr">
<h3>Related</h3>
<ul>
<li><a href="/2006/07/03/devfs-removed-from-linux-kernel/">리눅스 커널에서 devfs 제거</a></li>
<li><a href="/2006/05/09/celf-2006-conference/">CELF 2006 컨퍼런스</a></li>
<li><a href="/2006/05/08/porting-linux-applications-to-64-bit-systems/">Porting Linux applications to 64-bit systems</a></li>
<li><a href="/2006/03/17/glibc-memory-allocation-tune/">glibc 메모리 할당 방식 튜닝</a></li>
<li><a href="/2006/03/11/vmware-usb-in-ubuntu/">VMWare USB in Ubuntu</a></li>
</ul>
</div>
</div>
</article>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.imagesloaded/4.1.4/imagesloaded.pkgd.min.js" integrity="sha256-lqvxZrPLtfffUl2G/e7szqSvPBILGbwmsGE1MKlOi0Q=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.isotope/3.0.6/isotope.pkgd.min.js" integrity="sha256-CBrpuqrMhXwcLLUd5tvQ4euBHCdh7wGlDfNz8vbu/iI=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/fancybox/3.5.7/jquery.fancybox.min.js" integrity="sha256-yt2kYMy0w8AbtF89WXb2P1rfjcP/HTHLT7097U8Y5b8=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.15.10/highlight.min.js" integrity="sha256-1zu+3BnLYV9LdiY85uXMzii3bdrkelyp37e0ZyTAQh0=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.15.10/languages/r.min.js"></script>
<script>const code_highlighting = true;</script>
<script>
const search_config = {"indexURI":"/index.json","minLength":1,"threshold":0.3};
const i18n = {"no_results":"No results found","placeholder":"Search...","results":"results found"};
const content_type = {
'post': "포스트",
'project': "Projects",
'publication' : "논문",
'talk' : "강연"
};
</script>
<script id="search-hit-fuse-template" type="text/x-template">
<div class="search-hit" id="summary-{{key}}">
<div class="search-hit-content">
<div class="search-hit-name">
<a href="{{relpermalink}}">{{title}}</a>
<div class="article-metadata search-hit-type">{{type}}</div>
<p class="search-hit-description">{{snippet}}</p>
</div>
</div>
</div>
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/fuse.js/3.2.1/fuse.min.js" integrity="sha256-VzgmKYmhsGNNN4Ph1kMW+BjoYJM2jV5i4IlFoeZA9XI=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mark.js/8.11.1/jquery.mark.min.js" integrity="sha256-4HLtjeVgH0eIB3aZ9mLYF6E8oU5chNdjU6p6rrXpl9U=" crossorigin="anonymous"></script>
<script id="dsq-count-scr" src="https://lethean.disqus.com/count.js" async></script>
<script src="/js/academic.min.dd3bd320b283a236b60c707f537377b7.js"></script>
<div class="container">
<footer class="site-footer">
<p class="powered-by">
© lethean ·
Powered by the
<a href="https://sourcethemes.com/academic/" target="_blank" rel="noopener">Academic theme</a> for
<a href="https://gohugo.io" target="_blank" rel="noopener">Hugo</a>.
<span class="float-right" aria-hidden="true">
<a href="#" class="back-to-top">
<span class="button_icon">
<i class="fas fa-chevron-up fa-2x"></i>
</span>
</a>
</span>
</p>
</footer>
</div>
<div id="modal" class="modal fade" role="dialog">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Cite</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<pre><code class="tex hljs"></code></pre>
</div>
<div class="modal-footer">
<a class="btn btn-outline-primary my-1 js-copy-cite" href="#" target="_blank">
<i class="fas fa-copy"></i> Copy
</a>
<a class="btn btn-outline-primary my-1 js-download-cite" href="#" target="_blank">
<i class="fas fa-download"></i> Download
</a>
<div id="modal-error"></div>
</div>
</div>
</div>
</div>
</body>
</html>
|
www/lib/onsen/css-components-src/src/old-theme.css | devmobilenovatec/novacard_monaca |
:root {
/* variables for iOS components */
--background-color: #f9f9f9;
--text-color: #1f1f21;
--sub-text-color: #999;
--highlight-color: rgba(24, 103, 194, 0.81);
--second-highlight-color: #25a6d9;
--border-color: #ccc;
--button-background-color: var(--highlight-color);
--button-cta-background-color: var(--second-highlight-color);
--toolbar-background-color: #fff;
--toolbar-button-color: rgba(38, 100, 171, 0.81);
--toolbar-text-color: #1f1f21;
--toolbar-border-color: #bbb;
--button-bar-color: rgba(18, 114, 224, 0.77);
--button-bar-active-text-color: #fff;
--button-bar-active-background-color: color(var(--button-bar-color) tint(70%));
--button-light-color: black;
--segment-color: rgba(18, 114, 224, 0.77);
--segment-active-text-color: #fff;
--segment-active-background-color: color(var(--segment-color) tint(70%));
--list-background-color: #fff;
--list-header-background-color: #eee;
--list-tap-active-background-color: #d9d9d9;
--list-item-chevron-color: #c7c7cc;
--progress-bar-color: rgba(24, 103, 194, 0.81);
--progress-bar-secondary-color: rgba(24, 103, 194, 0.4);
--progress-bar-background-color: #b6b6b6;
--progress-circle-primary-color: rgba(24, 103, 194, 0.81);
--progress-circle-secondary-color: rgba(24, 103, 194, 0.81);
--progress-circle-background-color: #ddd;
--tabbar-background-color: #fff;
--tabbar-text-color: #999;
--tabbar-highlight-text-color: rgba(24, 103, 194, 0.81);
--tabbar-border-color: #ccc;
--switch-highlight-color: #5198db;
--switch-border-color: #e5e5e5;
--switch-background-color: white;
--range-track-background-color: #a4aab3;
--range-track-background-color-active: var(--highlight-color);
--range-thumb-background-color: #fff;
--modal-background-color: rgba(0, 0, 0, 0.7);
--modal-text-color: #fff;
--alert-dialog-background-color: #f4f4f4;
--alert-dialog-text-color: #1f1f21;
--alert-dialog-button-color: rgba(24, 103, 194, 0.81);
--alert-dialog-separator-color: #ddd;
--dialog-background-color: #f4f4f4;
--dialog-text-color: var(--text-color);
--popover-background-color: white;
--popover-text-color: #1f1f21;
--notification-background-color: #dc5236;
--notification-color: white;
--search-input-background-color: rgba(3, 3, 3, 0.09);
--fab-text-color: #ffffff;
--fab-background-color: rgba(24, 103, 194, 0.81);
--fab-active-background-color: rgba(24, 103, 194, 0.61);
--card-background-color: white;
--card-text-color: #030303;
--toast-background-color: rgba(0, 0, 0, 0.8);
--toast-text-color: white;
--toast-button-text-color: white;
--select-input-color: var(--text-color);
--select-input-border-color: var(--border-color);
/* variables for Material Design components */
--material-background-color: #ffffff;
--material-text-color: var(--text-color);
--material-notification-background-color: #e91e63;
--material-notification-color: white;
--material-switch-active-thumb-color: #009688;
--material-switch-inactive-thumb-color: #f1f1f1;
--material-switch-active-background-color: #77c2bb;
--material-switch-inactive-background-color: #b0afaf;
--material-range-track-color: #bdbdbd;
--material-range-thumb-color: #009688;
--material-range-disabled-thumb-color: #b0b0b0;
--material-range-disabled-thumb-border-color: #eeeeee;
--material-range-zero-thumb-color: #f2f2f2;
--material-toolbar-background-color: #009688;
--material-toolbar-text-color: #ffffff;
--material-toolbar-button-color: #ffffff;
--material-segment-background-color: #fafafa;
--material-segment-active-background-color: #c8c8c8;
--material-segment-text-color: color(black a(38%));
--material-segment-active-text-color: #353535;
--material-button-background-color: #009688;
--material-button-text-color: #ffffff;
--material-button-disabled-background-color: color(#4f4f4f a(26%));
--material-button-disabled-color: color(black a(26%));
--material-flat-button-active-background-color: color(#999 a(20%));
--material-list-background-color: #fff;
--material-list-item-separator-color: #eee;
--material-list-header-text-color: #757575;
--material-checkbox-active-color: #37474f;
--material-checkbox-inactive-color: #717171;
--material-checkbox-checkmark-color: #ffffff;
--material-checkbox-active-color: #009688;
--material-checkbox-inactive-color: #717171;
--material-checkbox-checkmark-color: #ffffff;
--material-radio-button-active-color: #009688;
--material-radio-button-inactive-color: #717171;
--material-radio-button-disabled-color: #afafaf;
--material-text-input-text-color: #212121;
--material-text-input-active-color: #009688;
--material-text-input-inactive-color: #afafaf;
--material-search-background-color: #fafafa;
--material-dialog-background-color: #ffffff;
--material-dialog-text-color: var(--material-text-color);
--material-alert-dialog-background-color: #ffffff;
--material-alert-dialog-title-color: #212121;
--material-alert-dialog-content-color: #727272;
--material-alert-dialog-button-color: #009688;
--material-progress-bar-primary-color: #009688;
--material-progress-bar-secondary-color: #80cbc4;
--material-progress-bar-background-color: #e0e0e0;
--material-progress-circle-primary-color: #009688;
--material-progress-circle-secondary-color: #80cbc4;
--material-progress-circle-background-color: #dbdbdb;
--material-tabbar-background-color: #009688;
--material-tabbar-text-color: rgba(255, 255, 255, 0.6);
--material-tabbar-highlight-text-color: #ffffff;
--material-tabbar-highlight-color: #26a69a;
--material-fab-text-color: #ffffff;
--material-fab-background-color: #009688;
--material-fab-active-background-color: rgba(0, 150, 136, 0.85);
--material-card-background-color: white;
--material-card-text-color: rgba(0, 0, 0, 0.54);
--material-toast-background-color: rgba(0, 0, 0, 0.8);
--material-toast-text-color: white;
--material-toast-button-text-color: #bbdefb;
--material-select-input-color: var(--material-text-color);
--material-select-input-active-color: rgba(0, 0, 0, 0.15);
--material-select-input-inactive-color: rgba(0, 0, 0, 0.81);
--material-select-border-color: color(black a(12%));
--material-popover-background-color: #fafafa;
--material-popover-text-color: var(--material-text-color);
/* others */
--tap-highlight-color: transparent;
}
|
_includes/footer.html | abhishekraj007/blog | <footer>
<p>Credit: Made with <a href="http://jekyllrb.com/" target="_blank">Jekyll</a> <span>Hosted on: Github</span></p>
</footer>
<script src="{{ "/assets/js/main.js" | prepend: site.baseurl }}"></script> |
lib/assets/css/css_compiled/@{photonImagePath}plugins/elrte/images/photon/js/js/bootstrap/js/plugins/prettify/prettify.js.html | user-tony/photon-rails | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Login Page - Photon Admin Panel Theme</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0, minimum-scale=1.0, maximum-scale=1.0">
<link rel="shortcut icon" href="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/js/bootstrap/js/plugins/prettify/favicon.ico"/>
<link rel="apple-touch-icon" href="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/js/bootstrap/js/plugins/prettify/iosicon.png"/>
<link rel="stylesheet" href="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/js/bootstrap/js/plugins/prettify/css/css_compiled/photon-min.css?v1.1" media="all"/>
<link rel="stylesheet" href="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/js/bootstrap/js/plugins/prettify/css/css_compiled/photon-min-part2.css?v1.1" media="all"/>
<link rel="stylesheet" href="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/js/bootstrap/js/plugins/prettify/css/css_compiled/photon-responsive-min.css?v1.1" media="all"/>
<!--[if IE]>
<link rel="stylesheet" type="text/css" href="css/css_compiled/ie-only-min.css?v1.1" />
<![endif]-->
<!--[if lt IE 9]>
<link rel="stylesheet" type="text/css" href="css/css_compiled/ie8-only-min.css?v1.1" />
<script type="text/javascript" src="js/plugins/excanvas.js"></script>
<script type="text/javascript" src="js/plugins/html5shiv.js"></script>
<script type="text/javascript" src="js/plugins/respond.min.js"></script>
<script type="text/javascript" src="js/plugins/fixFontIcons.js"></script>
<![endif]-->
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.0/jquery-ui.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/js/bootstrap/js/plugins/prettify/js/bootstrap/bootstrap.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/js/bootstrap/js/plugins/prettify/js/plugins/modernizr.custom.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/js/bootstrap/js/plugins/prettify/js/plugins/jquery.pnotify.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/js/bootstrap/js/plugins/prettify/js/plugins/less-1.3.1.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/js/bootstrap/js/plugins/prettify/js/plugins/xbreadcrumbs.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/js/bootstrap/js/plugins/prettify/js/plugins/jquery.maskedinput-1.3.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/js/bootstrap/js/plugins/prettify/js/plugins/jquery.autotab-1.1b.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/js/bootstrap/js/plugins/prettify/js/plugins/charCount.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/js/bootstrap/js/plugins/prettify/js/plugins/jquery.textareaCounter.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/js/bootstrap/js/plugins/prettify/js/plugins/elrte.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/js/bootstrap/js/plugins/prettify/js/plugins/elrte.en.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/js/bootstrap/js/plugins/prettify/js/plugins/select2.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/js/bootstrap/js/plugins/prettify/js/plugins/jquery-picklist.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/js/bootstrap/js/plugins/prettify/js/plugins/jquery.validate.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/js/bootstrap/js/plugins/prettify/js/plugins/additional-methods.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/js/bootstrap/js/plugins/prettify/js/plugins/jquery.form.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/js/bootstrap/js/plugins/prettify/js/plugins/jquery.metadata.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/js/bootstrap/js/plugins/prettify/js/plugins/jquery.mockjax.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/js/bootstrap/js/plugins/prettify/js/plugins/jquery.uniform.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/js/bootstrap/js/plugins/prettify/js/plugins/jquery.tagsinput.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/js/bootstrap/js/plugins/prettify/js/plugins/jquery.rating.pack.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/js/bootstrap/js/plugins/prettify/js/plugins/farbtastic.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/js/bootstrap/js/plugins/prettify/js/plugins/jquery.timeentry.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/js/bootstrap/js/plugins/prettify/js/plugins/jquery.dataTables.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/js/bootstrap/js/plugins/prettify/js/plugins/jquery.jstree.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/js/bootstrap/js/plugins/prettify/js/plugins/dataTables.bootstrap.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/js/bootstrap/js/plugins/prettify/js/plugins/jquery.mousewheel.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/js/bootstrap/js/plugins/prettify/js/plugins/jquery.mCustomScrollbar.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/js/bootstrap/js/plugins/prettify/js/plugins/jquery.flot.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/js/bootstrap/js/plugins/prettify/js/plugins/jquery.flot.stack.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/js/bootstrap/js/plugins/prettify/js/plugins/jquery.flot.pie.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/js/bootstrap/js/plugins/prettify/js/plugins/jquery.flot.resize.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/js/bootstrap/js/plugins/prettify/js/plugins/raphael.2.1.0.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/js/bootstrap/js/plugins/prettify/js/plugins/justgage.1.0.1.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/js/bootstrap/js/plugins/prettify/js/plugins/jquery.qrcode.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/js/bootstrap/js/plugins/prettify/js/plugins/jquery.clock.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/js/bootstrap/js/plugins/prettify/js/plugins/jquery.countdown.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/js/bootstrap/js/plugins/prettify/js/plugins/jquery.jqtweet.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/js/bootstrap/js/plugins/prettify/js/plugins/jquery.cookie.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/js/bootstrap/js/plugins/prettify/js/plugins/bootstrap-fileupload.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/js/bootstrap/js/plugins/prettify/js/plugins/prettify/prettify.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/js/bootstrap/js/plugins/prettify/js/plugins/bootstrapSwitch.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/js/bootstrap/js/plugins/prettify/js/plugins/mfupload.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/js/bootstrap/js/plugins/prettify/js/common.js"></script>
</head>
<body class="body-login">
<div class="nav-fixed-topright" style="visibility: hidden">
<ul class="nav nav-user-menu">
<li class="user-sub-menu-container">
<a href="javascript:;">
<i class="user-icon"></i><span class="nav-user-selection">Theme Options</span><i class="icon-menu-arrow"></i>
</a>
<ul class="nav user-sub-menu">
<li class="light">
<a href="javascript:;">
<i class='icon-photon stop'></i>Light Version
</a>
</li>
<li class="dark">
<a href="javascript:;">
<i class='icon-photon stop'></i>Dark Version
</a>
</li>
</ul>
</li>
<li>
<a href="javascript:;">
<i class="icon-photon mail"></i>
</a>
</li>
<li>
<a href="javascript:;">
<i class="icon-photon comment_alt2_stroke"></i>
<div class="notification-count">12</div>
</a>
</li>
</ul>
</div>
<script>
$(function(){
setTimeout(function(){
$('.nav-fixed-topright').removeAttr('style');
}, 300);
$(window).scroll(function(){
if($('.breadcrumb-container').length){
var scrollState = $(window).scrollTop();
if (scrollState > 0) $('.nav-fixed-topright').addClass('nav-released');
else $('.nav-fixed-topright').removeClass('nav-released')
}
});
$('.user-sub-menu-container').on('click', function(){
$(this).toggleClass('active-user-menu');
});
$('.user-sub-menu .light').on('click', function(){
if ($('body').is('.light-version')) return;
$('body').addClass('light-version');
setTimeout(function() {
$.cookie('themeColor', 'light', {
expires: 7,
path: '/'
});
}, 500);
});
$('.user-sub-menu .dark').on('click', function(){
if ($('body').is('.light-version')) {
$('body').removeClass('light-version');
$.cookie('themeColor', 'dark', {
expires: 7,
path: '/'
});
}
});
});
</script>
<div class="container-login">
<div class="form-centering-wrapper">
<div class="form-window-login">
<div class="form-window-login-logo">
<div class="login-logo">
<img src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/js/bootstrap/js/plugins/prettify/images/photon/login-logo@2x.png" alt="Photon UI"/>
</div>
<h2 class="login-title">Welcome to Photon UI!</h2>
<div class="login-member">Not a Member? <a href="prettify.js.html#">Sign Up »</a>
<a href="prettify.js.html#" class="btn btn-facebook"><i class="icon-fb"></i>Login with Facebook<i class="icon-fb-arrow"></i></a>
</div>
<div class="login-or">Or</div>
<div class="login-input-area">
<form method="POST" action="dashboard.php">
<span class="help-block">Login With Your Photon Account</span>
<input type="text" name="email" placeholder="Email">
<input type="password" name="password" placeholder="Password">
<button type="submit" class="btn btn-large btn-success btn-login">Login</button>
</form>
<a href="prettify.js.html#" class="forgot-pass">Forgot Your Password?</a>
</div>
</div>
</div>
</div>
</div>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-1936460-27']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</body>
</html>
|
2012/12/31/Miller-cylindrical/index.html | x6doooo/x6doooo.github.io | <!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en-us">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1">
<link href="http://gmpg.org/xfn/11" rel="profile">
<title>
经纬度转平面坐标的算法(米勒投影) ·
Dx.Yang
</title>
<!-- CSS -->
<link rel="stylesheet" href="/public/css/hyde.css">
<link rel="stylesheet" href="/public/css/syntax.css">
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Open+Sans:300,400italic,400,600,700|Abril+Fatface">
<!-- Icons -->
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="/public/touch-icon-144-precomposed.png">
<link rel="shortcut icon" href="/public/favicon.png">
<!-- RSS -->
<link rel="alternate" type="application/rss+xml" title="RSS" href="/atom.xml">
</head>
<body>
<header class="masthead">
<div class="masthead-inner">
<a href="/">
<img src="https://avatars0.githubusercontent.com/u/1572757?v=3&s=360" width="130" style="border-radius:130px">
</a>
<h1 style="font-size: 40px">Dx.Yang</h1>
<p class="lead">Programmer</p>
<div class="colophon">
<ul class="colophon-links">
<!--li>
<a href="https://github.com/mdo/hyde/archive/v1.1.1.zip">Download</a>
</li-->
<li>
<a href="https://github.com/x6doooo">GitHub</a>
</li>
<li>
<a href="mailto:x6doooo@gmail.com">Email</a>
</li>
<!--li>Currently v1.1.1</li-->
</ul>
<p>© 2014. Dx.Yang All rights reserved.</p>
</div>
</div>
</header>
<div class="content container">
<div class="post">
<h1>经纬度转平面坐标的算法(米勒投影)</h1>
<span class="post-date">31 Dec 2012</span>
<p>地图组件是前端数据可视化非常重要的一个组成部分,根据geoJSON这种通用数据格式来生成地图是比较便捷的做法。不过对于地图坐标转换的算法,还是了解一些比较好,对于设定高阶地图组件会有帮助。这里介绍一下在米勒投影的地图上,如何将经纬度转换为平面坐标的算法,这个算法在生成世界地图的时候比较常见。(<a href="http://en.wikipedia.org/wiki/Miller_cylindrical" target="_blank">维基百科-米勒投影</a>)</p>
<div class="highlight"><pre><code class="language-js" data-lang="js"><span class="c1">// lon 经度,西经为负数</span>
<span class="c1">// lat 纬度,南纬是负数</span>
<span class="kd">function</span> <span class="nx">millerXY</span> <span class="p">(</span><span class="nx">lon</span><span class="p">,</span> <span class="nx">lat</span><span class="p">){</span>
<span class="kd">var</span> <span class="nx">L</span> <span class="o">=</span> <span class="mi">6381372</span> <span class="o">*</span> <span class="nb">Math</span><span class="p">.</span><span class="nx">PI</span> <span class="o">*</span> <span class="mi">2</span><span class="p">,</span> <span class="c1">// 地球周长</span>
<span class="nx">W</span> <span class="o">=</span> <span class="nx">L</span><span class="p">,</span> <span class="c1">// 平面展开后,x轴等于周长</span>
<span class="nx">H</span> <span class="o">=</span> <span class="nx">L</span> <span class="o">/</span> <span class="mi">2</span><span class="p">,</span> <span class="c1">// y轴约等于周长一半</span>
<span class="nx">mill</span> <span class="o">=</span> <span class="mf">2.3</span><span class="p">,</span> <span class="c1">// 米勒投影中的一个常数,范围大约在正负2.3之间</span>
<span class="nx">x</span> <span class="o">=</span> <span class="nx">lon</span> <span class="o">*</span> <span class="nb">Math</span><span class="p">.</span><span class="nx">PI</span> <span class="o">/</span> <span class="mi">180</span><span class="p">,</span> <span class="c1">// 将经度从度数转换为弧度</span>
<span class="nx">y</span> <span class="o">=</span> <span class="nx">lat</span> <span class="o">*</span> <span class="nb">Math</span><span class="p">.</span><span class="nx">PI</span> <span class="o">/</span> <span class="mi">180</span><span class="p">;</span> <span class="c1">// 将纬度从度数转换为弧度</span>
<span class="c1">// 这里是米勒投影的转换</span>
<span class="nx">y</span> <span class="o">=</span> <span class="mf">1.25</span> <span class="o">*</span> <span class="nb">Math</span><span class="p">.</span><span class="nx">log</span><span class="p">(</span> <span class="nb">Math</span><span class="p">.</span><span class="nx">tan</span><span class="p">(</span> <span class="mf">0.25</span> <span class="o">*</span> <span class="nb">Math</span><span class="p">.</span><span class="nx">PI</span> <span class="o">+</span> <span class="mf">0.4</span> <span class="o">*</span> <span class="nx">y</span> <span class="p">)</span> <span class="p">);</span>
<span class="c1">// 这里将弧度转为实际距离</span>
<span class="nx">x</span> <span class="o">=</span> <span class="p">(</span> <span class="nx">W</span> <span class="o">/</span> <span class="mi">2</span> <span class="p">)</span> <span class="o">+</span> <span class="p">(</span> <span class="nx">W</span> <span class="o">/</span> <span class="p">(</span><span class="mi">2</span> <span class="o">*</span> <span class="nb">Math</span><span class="p">.</span><span class="nx">PI</span><span class="p">)</span> <span class="p">)</span> <span class="o">*</span> <span class="nx">x</span><span class="p">;</span>
<span class="nx">y</span> <span class="o">=</span> <span class="p">(</span> <span class="nx">H</span> <span class="o">/</span> <span class="mi">2</span> <span class="p">)</span> <span class="o">-</span> <span class="p">(</span> <span class="nx">H</span> <span class="o">/</span> <span class="p">(</span> <span class="mi">2</span> <span class="o">*</span> <span class="nx">mill</span> <span class="p">)</span> <span class="p">)</span> <span class="o">*</span> <span class="nx">y</span><span class="p">;</span>
<span class="c1">// 转换结果的单位是公里</span>
<span class="c1">// 可以根据此结果,算出在某个尺寸的画布上,各个点的坐标</span>
<span class="k">return</span> <span class="p">{</span>
<span class="nx">x</span> <span class="o">:</span> <span class="nx">x</span><span class="p">,</span>
<span class="nx">y</span> <span class="o">:</span> <span class="nx">y</span>
<span class="p">};</span>
<span class="p">}</span></code></pre></div>
</div>
<div class="related">
<h2>Related Posts</h2>
<ul class="related-posts">
<li>
<h3>
<a href="/2014/04/08/nodejs-cluster/">
Node.js - 利用进程通信实现Cluster共享内存
<small>08 Apr 2014</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/2013/04/07/canvas/">
HTML5 Canvas的事件处理
<small>07 Apr 2013</small>
</a>
</h3>
</li>
</ul>
</div>
</div>
</body>
</html>
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.