path
stringlengths 5
312
| repo_name
stringlengths 5
116
| content
stringlengths 2
1.04M
|
---|---|---|
bedrock/security/templates/security/advisory.html
|
craigcook/bedrock
|
{#
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at https://mozilla.org/MPL/2.0/.
#}
{% extends "security/base.html" %}
{% block page_title %}{{ advisory.title|striptags }}{% endblock %}
{% block article %}
<div class="advisory">
<header>
<h1 class="mzp-c-article-title">{{ _('Mozilla Foundation Security Advisory %s')|format(advisory.id) }}</h1>
</header>
<h2>{{ advisory.title|safe }}</h2>
<dl class="summary">
{% if advisory.announced %}
<dt>Announced</dt>
<dd>{{ advisory.announced|datetime }}</dd>
{% endif %}
{% if advisory.reporter %}
<dt>Reporter</dt>
<dd>{{ advisory.reporter|safe }}</dd>
{% endif %}
{% if 'risk' in advisory.extra_data %}
<dt>Risk</dt>
<dd>{{ advisory.extra_data.risk }}</dd>
{% endif %}
{% if advisory.impact %}
<dt>Impact</dt>
<dd><span class="level {{ advisory.impact_class }}">{{ advisory.impact }}</span></dd>
{% endif %}
<dt>Products</dt>
<dd>{{ ', '.join(advisory.products) }}</dd>
<dt>Fixed in</dt>
<dd>
<ul>
{% for prodver in advisory.fixed_in.all() %}
<li>{{ prodver.name }}</li>
{% endfor %}
</ul>
</dd>
{% if 'vulnerable' in advisory.extra_data %}
<dt>Vulnerable</dt>
<dd>
<ul>
{% for prod in advisory.extra_data.vulnerable %}
<li>{{ prod }}</li>
{% endfor %}
</ul>
</dd>
{% endif %}
</dl>
{{ advisory.html|safe }}
</div>
{% endblock %}
|
lib/booktype/apps/core/static/core/css/helpers.css
|
eos87/Booktype
|
/* ------------- margins ------------ */
.nm { margin: 0 !important; }
.ma5 { margin: 5px !important; }
.ma10{ margin: 10px !important; }
.ma15{ margin: 15px !important; }
.ma20{ margin: 20px !important; }
.ma25{ margin: 25px !important; }
.ma30{ margin: 30px !important; }
.mr0 { margin-right: 0px !important; }
.mr5 { margin-right: 5px !important; }
.mr10 { margin-right: 10px !important; }
.mr15 { margin-right: 15px !important; }
.mr20 { margin-right: 20px !important; }
.mr25 { margin-right: 25px !important; }
.mr30 { margin-right: 30px !important; }
.ml0 { margin-left: 0px !important; }
.ml5 { margin-left: 5px !important; }
.ml10 { margin-left: 10px !important; }
.ml15 { margin-left: 15px !important; }
.ml20 { margin-left: 20px !important; }
.ml25 { margin-left: 25px !important; }
.ml30 { margin-left: 30px !important; }
.mb0 { margin-bottom: 0 !important; }
.mb5 { margin-bottom: 5px !important; }
.mb10 { margin-bottom: 10px !important; }
.mb15 { margin-bottom: 15px !important; }
.mb20 { margin-bottom: 20px !important; }
.mb25 { margin-bottom: 25px !important; }
.mb30 { margin-bottom: 30px !important; }
.mt0 { margin-top: 0 !important; }
.mt5 { margin-top: 5px !important; }
.mt10 { margin-top: 10px !important; }
.mt15 { margin-top: 15px !important; }
.mt20 { margin-top: 20px !important; }
.mt25 { margin-top: 25px !important; }
.mt30 { margin-top: 30px !important; }
/* ------------ paddings ------------ */
.np { padding: 0 !important; }
.pa20 { padding: 20px !important; }
.pa15 { padding: 15px !important; }
.pa10 { padding: 10px !important; }
.pa5 { padding: 5px !important; }
.pt20 { padding-top: 20px !important; }
.pt15 { padding-top: 15px !important; }
.pt10 { padding-top: 10px !important; }
.pt5 { padding-top: 5px !important; }
.pt0 { padding-top: 0 !important; }
.pr20 { padding-right: 20px !important; }
.pr15 { padding-right: 15px !important; }
.pr10 { padding-right: 10px !important; }
.pr5 { padding-right: 5px !important; }
.pr0 { padding-right: 0 !important; }
.pb20 { padding-bottom: 20px !important; }
.pb15 { padding-bottom: 15px !important; }
.pb10 { padding-bottom: 10px !important; }
.pb5 { padding-bottom: 5px !important; }
.pb0 { padding-bottom: 0 !important; }
.pl20 { padding-left: 20px !important; }
.pl15 { padding-left: 15px !important; }
.pl10 { padding-left: 10px !important; }
.pl5 { padding-left: 5px !important; }
.pl0 { padding-left: 0 !important; }
.fsize10 { font-size: 10px !important; }
.fsize11 { font-size: 11px !important; }
.fsize12 { font-size: 12px !important; }
.fsize13 { font-size: 13px !important; }
.fsize14 { font-size: 14px !important; }
.fsize15 { font-size: 15px !important; }
.fsize16 { font-size: 16px !important; }
.fsize18 { font-size: 18px !important; }
.fsize20 { font-size: 20px !important; }
.fsize24 { font-size: 24px !important; }
.fsize28 { font-size: 28px !important; }
.fsize32 { font-size: 32px !important; }
.d-block {display: block;}
.d-inline {display: inline;}
.d-inline-block {display: inline-block;}
.w80{ width:80px !important; }
.w100{ width:100px !important; }
.w110{ width:110px !important; }
.w120{ width:120px !important; }
.w140{ width:140px !important; }
.w160{ width:160px !important; }
.w180{ width:180px !important; }
.w200{ width:200px !important; }
.w300{ width:300px !important; }
.w350{ width:350px !important; }
.w400{ width:400px !important; }
.w450{ width:450px !important; }
.f-normal { font-weight: normal !important; }
.f-bold { font-weight: bold !important; }
|
voter-info/voter-info.html
|
geary/election-gadgets-egypt.staging
|
<!DOCTYPE html>
<html lang="en">
<head>
<title>Google Election Center</title>
<script type="text/javascript">
function is( re ) { return navigator.userAgent.match( re ); }
if(
( is(/AppleWebKit/i) && is(/Mobile/i) ) ||
is(/Android/i) ||
is(/webOS/i) ||
is(/iPhone/i) ||
is(/iPod/i)
) {
window.open( 'http://m.googleelectioncenter.com/', '_self' );
}
</script>
<style type="text/css">
body { margin:0; padding:0; overflow:hidden; }
</style>
</head>
<body scroll="no">
<script type="text/javascript">
function getWH( what ) {
return window[ 'inner' + what ] || document.documentElement[ 'offset' + what ];
}
function width() { return getWH('Width'); }
function height() { return getWH('Height'); }
var address = '';
var hash = decodeURIComponent( location.hash );
var match = hash.match( /^#+address=(.*)$/ );
if( match ) address = encodeURI( decodeURI( match[1] ) ).replace( /#/g, '%23' );
document.write(
'<iframe id="gadget" frameborder="0" scrolling="no" ',
'style="width:', width(), 'px; height:', height(), 'px;" ',
'src="//www.gmodules.com/ig/ifr?url=http://', location.host, '/hg/voter-info/voter-info-gadget.xml',
address ? '&up_onebox=1&up_submit=1&up_example=' + address : '',
'" ',
'></iframe>'
);
window.onresize = function() {
var style = document.getElementById('gadget').style;
style.width = width() + 'px';
style.height = height() + 'px';
};
</script>
</body>
</html>
|
lib/fop-1.0/javadocs/org/apache/fop/events/model/package-tree.html
|
lewismc/yax
|
<!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.4.2_11) on Mon Jul 12 21:36:54 CEST 2010 -->
<TITLE>
org.apache.fop.events.model Class Hierarchy (Apache FOP 1.0 API)
</TITLE>
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
parent.document.title="org.apache.fop.events.model Class Hierarchy (Apache FOP 1.0 API)";
}
</SCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Tree</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
fop 1.0</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../org/apache/fop/events/package-tree.html"><B>PREV</B></A>
<A HREF="../../../../../org/apache/fop/fo/package-tree.html"><B>NEXT</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../index.html" target="_top"><B>FRAMES</B></A>
<A HREF="package-tree.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<CENTER>
<H2>
Hierarchy For Package org.apache.fop.events.model
</H2>
</CENTER>
<DL>
<DT><B>Package Hierarchies:</B><DD><A HREF="../../../../../overview-tree.html">All Packages</A></DL>
<HR>
<H2>
Class Hierarchy
</H2>
<UL>
<LI TYPE="circle">class java.lang.Object<UL>
<LI TYPE="circle">class org.apache.fop.events.model.<A HREF="../../../../../org/apache/fop/events/model/EventMethodModel.html" title="class in org.apache.fop.events.model"><B>EventMethodModel</B></A> (implements java.io.Serializable, org.apache.xmlgraphics.util.XMLizable)
<LI TYPE="circle">class org.apache.fop.events.model.<A HREF="../../../../../org/apache/fop/events/model/EventMethodModel.Parameter.html" title="class in org.apache.fop.events.model"><B>EventMethodModel.Parameter</B></A> (implements java.io.Serializable, org.apache.xmlgraphics.util.XMLizable)
<LI TYPE="circle">class org.apache.fop.events.model.<A HREF="../../../../../org/apache/fop/events/model/EventModel.html" title="class in org.apache.fop.events.model"><B>EventModel</B></A> (implements java.io.Serializable, org.apache.xmlgraphics.util.XMLizable)
<LI TYPE="circle">class org.apache.fop.events.model.<A HREF="../../../../../org/apache/fop/events/model/EventModelParser.html" title="class in org.apache.fop.events.model"><B>EventModelParser</B></A><LI TYPE="circle">class org.apache.fop.events.model.<A HREF="../../../../../org/apache/fop/events/model/EventProducerModel.html" title="class in org.apache.fop.events.model"><B>EventProducerModel</B></A> (implements java.io.Serializable, org.apache.xmlgraphics.util.XMLizable)
<LI TYPE="circle">class org.apache.fop.events.model.<A HREF="../../../../../org/apache/fop/events/model/EventSeverity.html" title="class in org.apache.fop.events.model"><B>EventSeverity</B></A> (implements java.io.Serializable)
</UL>
</UL>
<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=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Tree</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
fop 1.0</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../org/apache/fop/events/package-tree.html"><B>PREV</B></A>
<A HREF="../../../../../org/apache/fop/fo/package-tree.html"><B>NEXT</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../index.html" target="_top"><B>FRAMES</B></A>
<A HREF="package-tree.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
Copyright 1999-2010 The Apache Software Foundation. All Rights Reserved.
</BODY>
</HTML>
|
play26-bootstrap4/sample/app/views/tags/bsExample.scala.html
|
adrianhurt/play-bootstrap3
|
@(example: Html)
<div class="bd-example">
@example
</div>
|
addOns/fuzz/src/main/javahelp/org/zaproxy/zap/extension/fuzz/resources/help_fil_PH/contents/httpmessageprocessors.html
|
kingthorin/zap-extensions
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>
Mga Processor ng Mensahe ng HTTP
</title>
</head>
<body>
<h1>Mga Processor ng Mensahe ng HTTP</h1>
Ang mga processor ng mensahe ng HTTP ay maaaring mag-access at magbago sa mga mensahe ng HTTP na naging fuzz, makontrol ang mga proseso ng pagpa-fuzz at makipag-ugnayan sa ZAP UI.
<p>
Ang mga built-in na mga processor ng mensahe ng HTTP ay kinabibilangan ng:
<h3>Anti-CSRF Token Refresher</h3>
Nagpapahintulot upang i-refresh ang mga token ng anti-CSRF na nakapaloob sa kahilingan. Ang mga token ng anti-CSRF ay dapat maayos na natukoy ng ZAP para magawang magamit ang processor na ito.<br>
Para sa karagdagang impormasyon, konsultahin ang pahina ng tulong na "Pagsisimula" > "Mga Tampok" > "Anti CSRF Tokens".<br>
<strong>Paalala:</strong> Ang processor na ito ay awtomatikong idinagdag sa listahan ng mga processor, kapag ang mga token ng anti-CSRF ay natukoy.
<h3>Fuzzer HTTP Processor (Script)</h3>
Nagpapahintulot na pumili ng gumaganang script ng Fuzzer HTTP Processor. Ang script na ito ay nagpapahintulot sa iyo na:
<ul>
<li>Kumuha ng listahan ng mga kargamento</li>
<li>Ihinto ang pagpa-fuzz</li>
<li>Lakihan ang bilang ng kamalian</li>
<li>Magpadala ng mga bagong mensahe</li>
<li>Magdagdag ng mga mensahe sa tab ng mga Resulta</li>
<li>Itakda ang pasadyang mensahe ng 'estado' sa <a href="tab.html">tab ng Fuzzer</a></li>
<li>Magtaas ng mga alerto</li>
</ul>
Scripts can include both Required and Optional parameters the values for which the user will be prompted to provide when the Processor is added to the fuzzer.
The parameter names are defined within the script(s) via the methods <code>getRequiredParamsNames</code> and <code>getOptionalParamsNames</code>, each of which
simply return an array of strings representing the parameters names.
<h3>Detektor ng Panganganinag ng Kargamento</h3>
Indicates in the State column of results table if one of the injected payloads were found in the response, using "<img src="images/reflected_icon.png"> Reflected".<br>
<strong>Paalala:</strong> This processor is automatically added to the list of processors.
<h3>Taga-update ng haba ng nilalaman ng kahilingan</h3>
Updates (or adds, if not already present) the <code>Content-Length</code> request header with the length of the request body,
for all request methods. No change is done if the size of the request body is zero and the header is not already present.<br>
<strong>Paalala:</strong> This processor is automatically added to the list of processors.
<h3>Tagapaglikha ng Tag</h3>
Allows to add custom ‘tags’, based on contents of the response, to the State column of the results table
<h3>Processor ng Mensahe ng Gumagamit</h3>
Allows to fuzz as a user, using one of the users defined in the contexts that include the HTTP message being fuzzed. Users must
exist to be able to select and add this processor.
<p>
Ang ibang mga add-on ay maaaring magtukoy ng karagdagang processor ng mga mensahe ng HTTP.
<h2>Na-access sa pamamagitan ng</h2>
<table>
<tr><td> </td><td><a href="dialogue.html">Diyalogo ng Fuzzer</a> sa ilalim ng tab ng Processor ng Mensahe</td></tr>
</table>
<h2>Tingnan din</h2>
<table>
<tr><td> </td><td><a href="concepts.html">Mga konsepto ng Fuzzer</a></td></tr>
</table>
</body>
</html>
|
web-app/css/advancedQuery.css
|
sethsnel/GSCF
|
label { display: inline-block; zoom: 1; *display: inline; width: 110px; margin-top: 10px; }
#searchForm { position: relative; margin: 10px 0; font-size: 11px; }
#searchForm h3 { font-size: 13px; }
#searchForm h3 .nummer { display: inline-block; zoom: 1; *display: inline; width: 25px; }
#searchForm p { margin-left: 25px; }
#searchForm ul#criteria { margin-left: 25px; padding-left: 0px; list-style-type: none; }
#searchForm ul#criteria li { margin: 2px 0; padding: 2px 0; }
#searchForm ul#criteria li span,
#searchForm ul#criteria li a { display: inline-block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-right: 5px; }
#searchForm ul#criteria li .entityfield { width: 200px; }
#searchForm ul#criteria li .operator { width: 100px; }
#searchForm ul#criteria li .value { width: 240px; }
#searchForm ul#criteria li .addButton { margin: 4px 0; }
#searchForm ul#criteria li input, #searchForm ul#criteria li select { font-size: 11px; }
#searchForm ul#criteria li.titlerow { font-weight: bold; border-bottom: 1px solid #aaa; }
#searchMode { display: none; }
.ui-menu-item .entity { color: #666; font-style: italic; }
.searchoptions { font-size: 10px; margin-bottom: 3px; }
.searchoptions label { margin-top: 4px; }
.searchoptions ul#criteria { list-style-type: none; margin-left: 0; padding-left: 0; display: inline; }
.searchoptions ul#criteria li { margin-left: 0; padding-left: 0; display: inline; }
input.transparent, a.disabled {
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
filter: alpha(opacity=30);
opacity: 0.3;
-moz-opacity: 0.3;
-khtml-opacity: 0.3;
}
|
uis/layover/app/partials/group-edit.html
|
Commonjava/indy
|
<!--
Copyright (C) 2011-2020 Red Hat, Inc. (https://github.com/Commonjava/indy)
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.
-->
<div class="container-fluid" ng-controller="GroupCtl">
<div class="control-panel" ng-include="'partials/includes/store-control-panel.html'">
</div>
<div class="content-panel">
<div class="fieldset-caption">Basics</div>
<div class="fieldset">
<div class="detail-field">
<label>Package Type:</label>
<span ng-if="!editMode">
<select ng-model="raw.packageType">
<option ng-repeat="option in packageTypes" value="{{option}}">{{option}}</option>
</select>
</span>
<span ng-if="editMode" class="key">{{raw.packageType}}</span>
</div>
<div class="detail-field">
<label>Name:</label>
<span ng-if="!editMode"><input type="text" ng-model="raw.name"/></span>
<span ng-if="editMode" class="key">{{raw.name}}</span>
</div>
</div>
<div class="detail-field">
<input type="checkbox" ng-model="raw.enabled" />
<label>Enabled?</label>
<span class="hint" ng-if="!raw.enabled && raw.disableExpiration">Set to automatically re-enable at {{raw.disableExpiration | dateFormat}}</span>
</div>
<div class="detail-field">
<input type="checkbox" ng-model="store.prepend_constituent" />
<label>Prepend Constituents?</label>
<span class="hint">If enabled, all new constituents which are added not manually(like promotion) will be at the top of constituents list</span>
</div>
<div class="sub-fields">
<div class="detail-field">
<label>Disable Timeout:</label>
<input type="text" ng-model="store.disable_timeout" />
<ap-disable-timeout-hint></ap-disable-timeout-hint>
</div>
</div>
<div class="fieldset-caption">Description</div>
<div class="fieldset">
<div class="text-field">
<textarea class="text-description" ng-model="store.description"></textarea>
</div>
</div>
<div class="fieldset-caption">Constituents</div>
<div class="fieldset">
<ol class="left-col detail-value detail-edit-list">
<lt><label>Current:</label><span class="hint">(hover for controls)</span></lt>
<li ng-repeat="constituent in store.constituents" ap-group-constituent class="detail-value-list-item"></li>
</ol>
<ol class="right-col detail-value detail-edit-list">
<lt><label>Available:</label><span class="hint">(click to add to constituents)</span></lt>
<li ng-repeat="available in raw.available" ap-group-available class="detail-value-list-item"></li>
</ol>
</div>
</div>
<div ng-if="enableDebug" class="debug">
<div class="debug-section">
<span class="debug-title">JSON BOUND FOR SERVER:</span>
<pre>{{store | json}}</pre>
</div>
<div class="debug-section">
<span class="debug-title">JSON FOR DISPLAY:</span>
<pre>{{raw | json}}</pre>
</div>
</div>
</div>
|
examples/djchat/djchat/templates/base.html
|
dejlek/pulsar
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>pulsar-django chat application</title>
<link href="http://netdna.bootstrapcdn.com/bootswatch/2.3.1/readable/bootstrap.min.css" rel="stylesheet">
<link href="static/djchat/chat.css" rel="stylesheet">
</head>
<body>
{% block content %}{% endblock %}
<script src="//code.jquery.com/jquery-2.0.3.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/json3/3.2.6/json3.min.js"></script>
<script src="/static/djchat/chat.js"></script>
{% block script %}{% endblock %}
</body>
</html>
|
webapi/webapi-shadowdom-w3c-tests/shadowdom/w3c/shadow-trees/satisfying-matching-criteria/test-001.html
|
xiaojunwu/crosswalk-test-suite
|
<!DOCTYPE html>
<!--
Distributed under both the W3C Test Suite License [1] and the W3C
3-clause BSD License [2]. To contribute to a W3C Test Suite, see the
policies and contribution forms [3].
[1] http://www.w3.org/Consortium/Legal/2008/04-testsuite-license
[2] http://www.w3.org/Consortium/Legal/2008/03-bsd-license
[3] http://www.w3.org/2004/10/27-testcases
-->
<html>
<head>
<title>Shadow DOM Test: A_04_03_01</title>
<link rel="author" title="Sergey G. Grekhov" href="mailto:sgrekhov@unipro.ru">
<link rel="help" href="http://www.w3.org/TR/2013/WD-shadow-dom-20130514/#matching-insertion-points">
<meta name="assert" content="Matching Insertion Points: A valid selector fragment may contain a type selector">
<script src="../../../../resources/testharness.js"></script>
<script src="../../../../resources/testharnessreport.js"></script>
<script src="../../testcommon.js"></script>
<link rel="stylesheet" href="../../../../resources/testharness.css">
</head>
<body>
<div id="log"></div>
<script>
var A_04_03_01_T1 = async_test('A_04_03_01_T01');
A_04_03_01_T1.step(function () {
var iframe = document.createElement('iframe');
iframe.src = '../../resources/bobs_page.html';
document.body.appendChild(iframe);
iframe.onload = A_04_03_01_T1.step_func(function () {
try {
var d = iframe.contentDocument;
var div = d.querySelector('#divid');
var s = createSR(div);
//make shadow subtree
var subdiv1 = document.createElement('div');
subdiv1.innerHTML = '<content select="span"></content>';
s.appendChild(subdiv1);
//The order of DOM elements should be the following:
// <ul class='stories'>, <span>. Invisible: <ul id="ul2">
assert_true(d.querySelector('ul.stories').offsetTop < d.querySelector('#spandex').offsetTop,
'A valid selector fragment may contain \'span\' type selector');
assert_equals(d.querySelector('#ul2').offsetTop, 0,
'<ul> element shouldn\'t match "span" type selector');
} finally {
iframe.parentNode.removeChild(iframe);
}
A_04_03_01_T1.done();
});
});
</script>
</body>
</html>
|
www/lib/pace/themes/orange/pace-theme-fill-left.css
|
cjennison/lordship
|
/* This is a compiled file, you should be editing the file in the templates directory */
.pace {
-webkit-pointer-events: none;
pointer-events: none;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}
.pace-inactive {
display: none;
}
.pace .pace-progress {
background-color: rgba(235, 122, 85, 0.19999999999999996);
position: fixed;
z-index: -1;
top: 0;
right: 100%;
bottom: 0;
width: 100%;
}
|
tools/apache-ant-1.8.2/docs/manual/api/org/apache/tools/ant/util/JavaEnvUtils.html
|
jeroendesloovere/PhotoSwipe
|
<!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.5.0_22) on Mon Dec 20 13:46:26 EST 2010 -->
<TITLE>
JavaEnvUtils (Apache Ant API)
</TITLE>
<META NAME="keywords" CONTENT="org.apache.tools.ant.util.JavaEnvUtils class">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
parent.document.title="JavaEnvUtils (Apache Ant API)";
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../org/apache/tools/ant/util/IdentityStack.html" title="class in org.apache.tools.ant.util"><B>PREV CLASS</B></A>
<A HREF="../../../../../org/apache/tools/ant/util/JAXPUtils.html" title="class in org.apache.tools.ant.util"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../index.html?org/apache/tools/ant/util/JavaEnvUtils.html" target="_top"><B>FRAMES</B></A>
<A HREF="JavaEnvUtils.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: NESTED | <A HREF="#field_summary">FIELD</A> | CONSTR | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: <A HREF="#field_detail">FIELD</A> | CONSTR | <A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<!-- ======== START OF CLASS DATA ======== -->
<H2>
<FONT SIZE="-1">
org.apache.tools.ant.util</FONT>
<BR>
Class JavaEnvUtils</H2>
<PRE>
java.lang.Object
<IMG SRC="../../../../../resources/inherit.gif" ALT="extended by "><B>org.apache.tools.ant.util.JavaEnvUtils</B>
</PRE>
<HR>
<DL>
<DT><PRE>public final class <B>JavaEnvUtils</B><DT>extends java.lang.Object</DL>
</PRE>
<P>
A set of helper methods related to locating executables or checking
conditons of a given Java installation.
<P>
<P>
<DL>
<DT><B>Since:</B></DT>
<DD>Ant 1.5</DD>
</DL>
<HR>
<P>
<!-- =========== FIELD SUMMARY =========== -->
<A NAME="field_summary"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Field Summary</B></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/tools/ant/util/JavaEnvUtils.html#JAVA_1_0">JAVA_1_0</A></B></CODE>
<BR>
Version constant for Java 1.0</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/tools/ant/util/JavaEnvUtils.html#JAVA_1_1">JAVA_1_1</A></B></CODE>
<BR>
Version constant for Java 1.1</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/tools/ant/util/JavaEnvUtils.html#JAVA_1_2">JAVA_1_2</A></B></CODE>
<BR>
Version constant for Java 1.2</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/tools/ant/util/JavaEnvUtils.html#JAVA_1_3">JAVA_1_3</A></B></CODE>
<BR>
Version constant for Java 1.3</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/tools/ant/util/JavaEnvUtils.html#JAVA_1_4">JAVA_1_4</A></B></CODE>
<BR>
Version constant for Java 1.4</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/tools/ant/util/JavaEnvUtils.html#JAVA_1_5">JAVA_1_5</A></B></CODE>
<BR>
Version constant for Java 1.5</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/tools/ant/util/JavaEnvUtils.html#JAVA_1_6">JAVA_1_6</A></B></CODE>
<BR>
Version constant for Java 1.6</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/tools/ant/util/JavaEnvUtils.html#JAVA_1_7">JAVA_1_7</A></B></CODE>
<BR>
Version constant for Java 1.7</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/tools/ant/util/JavaEnvUtils.html#VERSION_1_0">VERSION_1_0</A></B></CODE>
<BR>
Number Version constant for Java 1.0</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/tools/ant/util/JavaEnvUtils.html#VERSION_1_1">VERSION_1_1</A></B></CODE>
<BR>
Number Version constant for Java 1.1</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/tools/ant/util/JavaEnvUtils.html#VERSION_1_2">VERSION_1_2</A></B></CODE>
<BR>
Number Version constant for Java 1.2</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/tools/ant/util/JavaEnvUtils.html#VERSION_1_3">VERSION_1_3</A></B></CODE>
<BR>
Number Version constant for Java 1.3</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/tools/ant/util/JavaEnvUtils.html#VERSION_1_4">VERSION_1_4</A></B></CODE>
<BR>
Number Version constant for Java 1.4</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/tools/ant/util/JavaEnvUtils.html#VERSION_1_5">VERSION_1_5</A></B></CODE>
<BR>
Number Version constant for Java 1.5</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/tools/ant/util/JavaEnvUtils.html#VERSION_1_6">VERSION_1_6</A></B></CODE>
<BR>
Number Version constant for Java 1.6</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/tools/ant/util/JavaEnvUtils.html#VERSION_1_7">VERSION_1_7</A></B></CODE>
<BR>
Number Version constant for Java 1.7</TD>
</TR>
</TABLE>
<!-- ========== METHOD SUMMARY =========== -->
<A NAME="method_summary"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Method Summary</B></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static java.io.File</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/tools/ant/util/JavaEnvUtils.html#createVmsJavaOptionFile(java.lang.String[])">createVmsJavaOptionFile</A></B>(java.lang.String[] cmd)</CODE>
<BR>
Writes the command into a temporary DCL script and returns the
corresponding File object.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/tools/ant/util/JavaEnvUtils.html#getJavaHome()">getJavaHome</A></B>()</CODE>
<BR>
Return the value of ${java.home}</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/tools/ant/util/JavaEnvUtils.html#getJavaVersion()">getJavaVersion</A></B>()</CODE>
<BR>
Returns the version of Java this class is running under.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/tools/ant/util/JavaEnvUtils.html#getJavaVersionNumber()">getJavaVersionNumber</A></B>()</CODE>
<BR>
Returns the version of Java this class is running under.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/tools/ant/util/JavaEnvUtils.html#getJdkExecutable(java.lang.String)">getJdkExecutable</A></B>(java.lang.String command)</CODE>
<BR>
Finds an executable that is part of a JDK installation based on
the java.home system property.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/tools/ant/util/JavaEnvUtils.html#getJreExecutable(java.lang.String)">getJreExecutable</A></B>(java.lang.String command)</CODE>
<BR>
Finds an executable that is part of a JRE installation based on
the java.home system property.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static java.util.Vector</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/tools/ant/util/JavaEnvUtils.html#getJrePackages()">getJrePackages</A></B>()</CODE>
<BR>
get a vector of strings of packages built into
that platforms runtime jar(s)</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static java.util.Vector</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/tools/ant/util/JavaEnvUtils.html#getJrePackageTestCases()">getJrePackageTestCases</A></B>()</CODE>
<BR>
Testing helper method; kept here for unification of changes.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/tools/ant/util/JavaEnvUtils.html#isApacheHarmony()">isApacheHarmony</A></B>()</CODE>
<BR>
Checks whether the current VM is Apache Harmony.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/tools/ant/util/JavaEnvUtils.html#isAtLeastJavaVersion(java.lang.String)">isAtLeastJavaVersion</A></B>(java.lang.String version)</CODE>
<BR>
Compares the current Java version to the passed in String -
assumes the argument is one of the constants defined in this
class.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/tools/ant/util/JavaEnvUtils.html#isGij()">isGij</A></B>()</CODE>
<BR>
Checks whether the current Java VM is the GNU interpreter gij
or we are running in a gcj precompiled binary.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/tools/ant/util/JavaEnvUtils.html#isJavaVersion(java.lang.String)">isJavaVersion</A></B>(java.lang.String version)</CODE>
<BR>
Compares the current Java version to the passed in String -
assumes the argument is one of the constants defined in this
class.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/tools/ant/util/JavaEnvUtils.html#isKaffe()">isKaffe</A></B>()</CODE>
<BR>
Checks whether the current Java VM is Kaffe.</TD>
</TR>
</TABLE>
<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left"><B>Methods inherited from class java.lang.Object</B></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</CODE></TD>
</TR>
</TABLE>
<P>
<!-- ============ FIELD DETAIL =========== -->
<A NAME="field_detail"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
<B>Field Detail</B></FONT></TH>
</TR>
</TABLE>
<A NAME="JAVA_1_0"><!-- --></A><H3>
JAVA_1_0</H3>
<PRE>
public static final java.lang.String <B>JAVA_1_0</B></PRE>
<DL>
<DD>Version constant for Java 1.0
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../../constant-values.html#org.apache.tools.ant.util.JavaEnvUtils.JAVA_1_0">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="VERSION_1_0"><!-- --></A><H3>
VERSION_1_0</H3>
<PRE>
public static final int <B>VERSION_1_0</B></PRE>
<DL>
<DD>Number Version constant for Java 1.0
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../../constant-values.html#org.apache.tools.ant.util.JavaEnvUtils.VERSION_1_0">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="JAVA_1_1"><!-- --></A><H3>
JAVA_1_1</H3>
<PRE>
public static final java.lang.String <B>JAVA_1_1</B></PRE>
<DL>
<DD>Version constant for Java 1.1
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../../constant-values.html#org.apache.tools.ant.util.JavaEnvUtils.JAVA_1_1">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="VERSION_1_1"><!-- --></A><H3>
VERSION_1_1</H3>
<PRE>
public static final int <B>VERSION_1_1</B></PRE>
<DL>
<DD>Number Version constant for Java 1.1
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../../constant-values.html#org.apache.tools.ant.util.JavaEnvUtils.VERSION_1_1">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="JAVA_1_2"><!-- --></A><H3>
JAVA_1_2</H3>
<PRE>
public static final java.lang.String <B>JAVA_1_2</B></PRE>
<DL>
<DD>Version constant for Java 1.2
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../../constant-values.html#org.apache.tools.ant.util.JavaEnvUtils.JAVA_1_2">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="VERSION_1_2"><!-- --></A><H3>
VERSION_1_2</H3>
<PRE>
public static final int <B>VERSION_1_2</B></PRE>
<DL>
<DD>Number Version constant for Java 1.2
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../../constant-values.html#org.apache.tools.ant.util.JavaEnvUtils.VERSION_1_2">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="JAVA_1_3"><!-- --></A><H3>
JAVA_1_3</H3>
<PRE>
public static final java.lang.String <B>JAVA_1_3</B></PRE>
<DL>
<DD>Version constant for Java 1.3
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../../constant-values.html#org.apache.tools.ant.util.JavaEnvUtils.JAVA_1_3">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="VERSION_1_3"><!-- --></A><H3>
VERSION_1_3</H3>
<PRE>
public static final int <B>VERSION_1_3</B></PRE>
<DL>
<DD>Number Version constant for Java 1.3
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../../constant-values.html#org.apache.tools.ant.util.JavaEnvUtils.VERSION_1_3">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="JAVA_1_4"><!-- --></A><H3>
JAVA_1_4</H3>
<PRE>
public static final java.lang.String <B>JAVA_1_4</B></PRE>
<DL>
<DD>Version constant for Java 1.4
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../../constant-values.html#org.apache.tools.ant.util.JavaEnvUtils.JAVA_1_4">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="VERSION_1_4"><!-- --></A><H3>
VERSION_1_4</H3>
<PRE>
public static final int <B>VERSION_1_4</B></PRE>
<DL>
<DD>Number Version constant for Java 1.4
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../../constant-values.html#org.apache.tools.ant.util.JavaEnvUtils.VERSION_1_4">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="JAVA_1_5"><!-- --></A><H3>
JAVA_1_5</H3>
<PRE>
public static final java.lang.String <B>JAVA_1_5</B></PRE>
<DL>
<DD>Version constant for Java 1.5
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../../constant-values.html#org.apache.tools.ant.util.JavaEnvUtils.JAVA_1_5">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="VERSION_1_5"><!-- --></A><H3>
VERSION_1_5</H3>
<PRE>
public static final int <B>VERSION_1_5</B></PRE>
<DL>
<DD>Number Version constant for Java 1.5
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../../constant-values.html#org.apache.tools.ant.util.JavaEnvUtils.VERSION_1_5">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="JAVA_1_6"><!-- --></A><H3>
JAVA_1_6</H3>
<PRE>
public static final java.lang.String <B>JAVA_1_6</B></PRE>
<DL>
<DD>Version constant for Java 1.6
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../../constant-values.html#org.apache.tools.ant.util.JavaEnvUtils.JAVA_1_6">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="VERSION_1_6"><!-- --></A><H3>
VERSION_1_6</H3>
<PRE>
public static final int <B>VERSION_1_6</B></PRE>
<DL>
<DD>Number Version constant for Java 1.6
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../../constant-values.html#org.apache.tools.ant.util.JavaEnvUtils.VERSION_1_6">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="JAVA_1_7"><!-- --></A><H3>
JAVA_1_7</H3>
<PRE>
public static final java.lang.String <B>JAVA_1_7</B></PRE>
<DL>
<DD>Version constant for Java 1.7
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../../constant-values.html#org.apache.tools.ant.util.JavaEnvUtils.JAVA_1_7">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="VERSION_1_7"><!-- --></A><H3>
VERSION_1_7</H3>
<PRE>
public static final int <B>VERSION_1_7</B></PRE>
<DL>
<DD>Number Version constant for Java 1.7
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../../constant-values.html#org.apache.tools.ant.util.JavaEnvUtils.VERSION_1_7">Constant Field Values</A></DL>
</DL>
<!-- ============ METHOD DETAIL ========== -->
<A NAME="method_detail"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
<B>Method Detail</B></FONT></TH>
</TR>
</TABLE>
<A NAME="getJavaVersion()"><!-- --></A><H3>
getJavaVersion</H3>
<PRE>
public static java.lang.String <B>getJavaVersion</B>()</PRE>
<DL>
<DD>Returns the version of Java this class is running under.
<P>
<DD><DL>
<DT><B>Returns:</B><DD>the version of Java as a String, e.g. "1.6"</DL>
</DD>
</DL>
<HR>
<A NAME="getJavaVersionNumber()"><!-- --></A><H3>
getJavaVersionNumber</H3>
<PRE>
public static int <B>getJavaVersionNumber</B>()</PRE>
<DL>
<DD>Returns the version of Java this class is running under.
This number can be used for comparisions; it will always be
<P>
<DD><DL>
<DT><B>Returns:</B><DD>the version of Java as a number 10x the major/minor,
e.g Java1.5 has a value of 15</DL>
</DD>
</DL>
<HR>
<A NAME="isJavaVersion(java.lang.String)"><!-- --></A><H3>
isJavaVersion</H3>
<PRE>
public static boolean <B>isJavaVersion</B>(java.lang.String version)</PRE>
<DL>
<DD>Compares the current Java version to the passed in String -
assumes the argument is one of the constants defined in this
class.
Note that Ant now requires JDK 1.4+ so <A HREF="../../../../../org/apache/tools/ant/util/JavaEnvUtils.html#JAVA_1_0"><CODE>JAVA_1_0</CODE></A> through
<A HREF="../../../../../org/apache/tools/ant/util/JavaEnvUtils.html#JAVA_1_3"><CODE>JAVA_1_3</CODE></A> need no longer be tested for.
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>version</CODE> - the version to check against the current version.
<DT><B>Returns:</B><DD>true if the version of Java is the same as the given version.<DT><B>Since:</B></DT>
<DD>Ant 1.5</DD>
</DL>
</DD>
</DL>
<HR>
<A NAME="isAtLeastJavaVersion(java.lang.String)"><!-- --></A><H3>
isAtLeastJavaVersion</H3>
<PRE>
public static boolean <B>isAtLeastJavaVersion</B>(java.lang.String version)</PRE>
<DL>
<DD>Compares the current Java version to the passed in String -
assumes the argument is one of the constants defined in this
class.
Note that Ant now requires JDK 1.4+ so <A HREF="../../../../../org/apache/tools/ant/util/JavaEnvUtils.html#JAVA_1_0"><CODE>JAVA_1_0</CODE></A> through
<A HREF="../../../../../org/apache/tools/ant/util/JavaEnvUtils.html#JAVA_1_3"><CODE>JAVA_1_3</CODE></A> need no longer be tested for.
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>version</CODE> - the version to check against the current version.
<DT><B>Returns:</B><DD>true if the version of Java is the same or higher than the
given version.<DT><B>Since:</B></DT>
<DD>Ant 1.7</DD>
</DL>
</DD>
</DL>
<HR>
<A NAME="isKaffe()"><!-- --></A><H3>
isKaffe</H3>
<PRE>
public static boolean <B>isKaffe</B>()</PRE>
<DL>
<DD>Checks whether the current Java VM is Kaffe.
<P>
<DD><DL>
<DT><B>Returns:</B><DD>true if the current Java VM is Kaffe.<DT><B>Since:</B></DT>
<DD>Ant 1.6.3</DD>
<DT><B>See Also:</B><DD><a href="http://www.kaffe.org/">http://www.kaffe.org/</a></DL>
</DD>
</DL>
<HR>
<A NAME="isGij()"><!-- --></A><H3>
isGij</H3>
<PRE>
public static boolean <B>isGij</B>()</PRE>
<DL>
<DD>Checks whether the current Java VM is the GNU interpreter gij
or we are running in a gcj precompiled binary.
<P>
<DD><DL>
<DT><B>Returns:</B><DD>true if the current Java VM is gcj/gij.<DT><B>Since:</B></DT>
<DD>Ant 1.8.2</DD>
</DL>
</DD>
</DL>
<HR>
<A NAME="isApacheHarmony()"><!-- --></A><H3>
isApacheHarmony</H3>
<PRE>
public static boolean <B>isApacheHarmony</B>()</PRE>
<DL>
<DD>Checks whether the current VM is Apache Harmony.
<P>
<DD><DL>
<DT><B>Returns:</B><DD>true if the current VM is Apache Harmony.<DT><B>Since:</B></DT>
<DD>Ant 1.8.2</DD>
</DL>
</DD>
</DL>
<HR>
<A NAME="getJreExecutable(java.lang.String)"><!-- --></A><H3>
getJreExecutable</H3>
<PRE>
public static java.lang.String <B>getJreExecutable</B>(java.lang.String command)</PRE>
<DL>
<DD>Finds an executable that is part of a JRE installation based on
the java.home system property.
<p><code>java</code>, <code>keytool</code>,
<code>policytool</code>, <code>orbd</code>, <code>rmid</code>,
<code>rmiregistry</code>, <code>servertool</code> and
<code>tnameserv</code> are JRE executables on Sun based
JRE's.</p>
<p>You typically find them in <code>JAVA_HOME/jre/bin</code> if
<code>JAVA_HOME</code> points to your JDK installation. JDK
< 1.2 has them in the same directory as the JDK
executables.</p>
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>command</CODE> - the java executable to find.
<DT><B>Returns:</B><DD>the path to the command.<DT><B>Since:</B></DT>
<DD>Ant 1.5</DD>
</DL>
</DD>
</DL>
<HR>
<A NAME="getJdkExecutable(java.lang.String)"><!-- --></A><H3>
getJdkExecutable</H3>
<PRE>
public static java.lang.String <B>getJdkExecutable</B>(java.lang.String command)</PRE>
<DL>
<DD>Finds an executable that is part of a JDK installation based on
the java.home system property.
<p>You typically find them in <code>JAVA_HOME/bin</code> if
<code>JAVA_HOME</code> points to your JDK installation.</p>
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>command</CODE> - the java executable to find.
<DT><B>Returns:</B><DD>the path to the command.<DT><B>Since:</B></DT>
<DD>Ant 1.5</DD>
</DL>
</DD>
</DL>
<HR>
<A NAME="getJrePackageTestCases()"><!-- --></A><H3>
getJrePackageTestCases</H3>
<PRE>
public static java.util.Vector <B>getJrePackageTestCases</B>()</PRE>
<DL>
<DD>Testing helper method; kept here for unification of changes.
<P>
<DD><DL>
<DT><B>Returns:</B><DD>a list of test classes depending on the java version.</DL>
</DD>
</DL>
<HR>
<A NAME="getJrePackages()"><!-- --></A><H3>
getJrePackages</H3>
<PRE>
public static java.util.Vector <B>getJrePackages</B>()</PRE>
<DL>
<DD>get a vector of strings of packages built into
that platforms runtime jar(s)
<P>
<DD><DL>
<DT><B>Returns:</B><DD>list of packages.</DL>
</DD>
</DL>
<HR>
<A NAME="createVmsJavaOptionFile(java.lang.String[])"><!-- --></A><H3>
createVmsJavaOptionFile</H3>
<PRE>
public static java.io.File <B>createVmsJavaOptionFile</B>(java.lang.String[] cmd)
throws java.io.IOException</PRE>
<DL>
<DD>Writes the command into a temporary DCL script and returns the
corresponding File object.
It is the job of the caller to delete the file on exit.
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>cmd</CODE> - the command.
<DT><B>Returns:</B><DD>the file containing the command.
<DT><B>Throws:</B>
<DD><CODE>java.io.IOException</CODE> - if there is an error writing to the file.</DL>
</DD>
</DL>
<HR>
<A NAME="getJavaHome()"><!-- --></A><H3>
getJavaHome</H3>
<PRE>
public static java.lang.String <B>getJavaHome</B>()</PRE>
<DL>
<DD>Return the value of ${java.home}
<P>
<DD><DL>
<DT><B>Returns:</B><DD>the java home value.</DL>
</DD>
</DL>
<!-- ========= END OF CLASS DATA ========= -->
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../org/apache/tools/ant/util/IdentityStack.html" title="class in org.apache.tools.ant.util"><B>PREV CLASS</B></A>
<A HREF="../../../../../org/apache/tools/ant/util/JAXPUtils.html" title="class in org.apache.tools.ant.util"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../index.html?org/apache/tools/ant/util/JavaEnvUtils.html" target="_top"><B>FRAMES</B></A>
<A HREF="JavaEnvUtils.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: NESTED | <A HREF="#field_summary">FIELD</A> | CONSTR | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: <A HREF="#field_detail">FIELD</A> | CONSTR | <A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
</BODY>
</HTML>
|
example-storage/www/index.html
|
lykmapipo/ionic-wizard
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">
<title></title>
<!-- compiled css output -->
<link href="css/ionic.app.css" rel="stylesheet">
<!-- ionic/angularjs js -->
<script src="lib/ionic/js/ionic.bundle.js"></script>
<!-- cordova script (this will be a 404 during development) -->
<script src="cordova.js"></script>
<script src="lib/ngstorage/ngStorage.min.js"></script>
<script src="js/ion-wizard.js"></script>
<!-- your app's js -->
<script src="js/app.js"></script>
<script src="js/controllers.js"></script>
<script src="js/services.js"></script>
</head>
<body ng-app="starter">
<!--
The nav bar that will be updated as we navigate between views.
-->
<ion-nav-bar class="bar-stable">
<ion-nav-back-button>
</ion-nav-back-button>
</ion-nav-bar>
<!--
The views will be rendered in the <ion-nav-view> directive below
Templates are in the /templates folder (but you could also
have templates inline in this html file if you'd like).
-->
<ion-nav-view></ion-nav-view>
</body>
</html>
|
site/public/food/imperial-roll/index.html
|
rhuargh/hugo-restaurant-tutorial
|
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-us" lang="en-us">
<head>
<link href="http://gmpg.org/xfn/11" rel="profile">
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="generator" content="Hugo 0.20.7" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1">
<title>crispy imperial rolls · Tasty Licks</title>
<link rel="stylesheet" href="/css/main.css">
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-144-precomposed.png">
<link rel="shortcut icon" href="/img/favicon.png">
<link href="" rel="alternate" type="application/rss+xml" title="Tasty Licks" />
</head>
<body class="food">
<div class="sidebar">
<div class="container sidebar-sticky">
<div class="sidebar-about">
<a href="/"><h1>Tasty Licks</h1></a>
<p class="lead">An example website for restaurants built by <a href="https://github.com/eliwilliamson">@eliwilliamson</a> using <a href="https://github.com/netlify/victor-hugo">Victor Hugo</a>.</p>
</div>
<ul class="sidebar-nav">
<li><a href="/">Home</a> </li>
<li><a href="/food"> Food </a></li>
<li><a href="/drink"> Drink </a></li>
<li><a href="/about"> About </a></li>
<li><a href="/gallery"> Gallery </a></li>
<li><a href="/contact"> Make A Reservation </a></li>
</ul>
</div>
</div>
<div class="content container">
<div class="post">
<h1>crispy imperial rolls</h1>
<span class="post-date">Wed, May 17, 2017</span>
</div>
</div>
<script src="/app.js"></script>
</body>
</html>
|
reviewboard/templates/admin/manual-updates/ext-dir.html
|
KnowNo/reviewboard
|
{% load i18n %}
<div class="box-head">
<h1 class="box-title">{% trans "Extensions static media directory changes" %}</h1>
</div>
<div class="box-main">
<p>
{% blocktrans %}
Your site's extensions static media directory isn't properly set up. This
directory is where Review Board will store various extension media files.
{% endblocktrans %}
</p>
<p>
{% blocktrans %}
Your extensions static media directory is currently at: <tt>{{ext_dir}}</tt>
{% endblocktrans %}
</p>
{% if not writable and ext_dir != "" %}
<h3>{% trans "Permission problems" %}</h3>
<p>
{% blocktrans %}
The directory must be writable by the web server. On Linux/Unix/Mac,
you can fix this by typing:
{% endblocktrans %}
</p>
<pre>
$ sudo chown -R {{server_user}} "{{ext_dir}}"
</pre>
<p>
{% blocktrans %}
On Windows, right-click the data directory and change the ownership to
<tt>{{server_user}}</tt>.
{% endblocktrans %}
</p>
{% endif %}
</div>
|
ajax/libs/metro/4.2.12/css/metro-icons.css
|
extend1994/cdnjs
|
/*
* Metro 4 Components Library v4.2.12 build 688 (https://metroui.org.ua)
* Copyright 2018 Sergey Pimenov
* Licensed under MIT
*/
@font-face {
font-family: 'metro';
src: url('../mif/metro.ttf?niykz5') format('truetype'), url('../mif/metro.woff?niykz5') format('woff'), url('../mif/metro.svg?niykz5#metro') format('svg');
font-weight: normal;
font-style: normal;
}
[class*=mif-] {
font-family: 'metro' !important;
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.mif-lg {
font-size: 1.2em;
}
.mif-2x {
font-size: 1.5em;
}
.mif-3x {
font-size: 2em;
}
.mif-4x {
font-size: 2.5em;
}
.mif-5x {
font-size: 3em;
}
.mif-6x {
font-size: 3.5em;
}
.mif-7x {
font-size: 4em;
}
.mif-8x {
font-size: 4.5em;
}
.mif-9x {
font-size: 5em;
}
.mif-10x {
font-size: 5.5em;
}
.mif-add-shopping-cart:before {
content: "\e854";
}
.mif-cast:before {
content: "\e307";
}
.mif-cast-connected:before {
content: "\e308";
}
.mif-create-new-folder:before {
content: "\e2cc";
}
.mif-dashboard:before {
content: "\e871";
}
.mif-description:before {
content: "\e873";
}
.mif-equalizer2:before {
content: "\e01d";
}
.mif-ev-station:before {
content: "\e56d";
}
.mif-featured-play-list:before {
content: "\e06d";
}
.mif-featured-video:before {
content: "\e06e";
}
.mif-fingerprint:before {
content: "\e912";
}
.mif-folder2:before {
content: "\e2c7";
}
.mif-folder-open2:before {
content: "\e2c8";
}
.mif-folder-shared:before {
content: "\e2c9";
}
.mif-folder-special2:before {
content: "\e6c4";
}
.mif-goat:before {
content: "\e901";
}
.mif-import-contacts:before {
content: "\e0e0";
}
.mif-insert-drive-file:before {
content: "\e24d";
}
.mif-keyboard-hide:before {
content: "\e31a";
}
.mif-note:before {
content: "\e06f";
}
.mif-note-add:before {
content: "\e89c";
}
.mif-pan-tool:before {
content: "\e939";
}
.mif-directions-bike:before {
content: "\e6bf";
}
.mif-location-city:before {
content: "\e6c0";
}
.mif-wifi-low:before {
content: "\e60c";
}
.mif-wifi-mid:before {
content: "\e60d";
}
.mif-wifi-full:before {
content: "\e634";
}
.mif-tablet-landscape:before {
content: "\e635";
}
.mif-calculator2:before {
content: "\e636";
}
.mif-barbell:before {
content: "\e637";
}
.mif-chart-line:before {
content: "\e656";
}
.mif-3d-rotation:before {
content: "\e600";
}
.mif-alarm:before {
content: "\e601";
}
.mif-alarm-on:before {
content: "\e602";
}
.mif-favorite:before {
content: "\e603";
}
.mif-perm-phone-msg:before {
content: "\e604";
}
.mif-print:before {
content: "\e605";
}
.mif-bt-settings:before {
content: "\e606";
}
.mif-settings-ethernet:before {
content: "\e607";
}
.mif-settings-phone:before {
content: "\e608";
}
.mif-settings-power:before {
content: "\e609";
}
.mif-settings-voice:before {
content: "\e60a";
}
.mif-shopping-basket:before {
content: "\e60b";
}
.mif-dialer-sip:before {
content: "\e60e";
}
.mif-dialpad:before {
content: "\e60f";
}
.mif-contacts-dialer:before {
content: "\e610";
}
.mif-contacts-mail:before {
content: "\e611";
}
.mif-ring-volume:before {
content: "\e612";
}
.mif-voicemail:before {
content: "\e613";
}
.mif-drafts:before {
content: "\e614";
}
.mif-mail:before {
content: "\e615";
}
.mif-bluetooth:before {
content: "\e626";
}
.mif-bt-connected:before {
content: "\e627";
}
.mif-bt-disabled:before {
content: "\e628";
}
.mif-bt-searching:before {
content: "\e629";
}
.mif-brightness-auto:before {
content: "\e62a";
}
.mif-multitrack-audio:before {
content: "\e616";
}
.mif-widgets:before {
content: "\e617";
}
.mif-usb:before {
content: "\e638";
}
.mif-money:before {
content: "\e639";
}
.mif-vertical-align-bottom:before {
content: "\e63a";
}
.mif-vertical-align-center:before {
content: "\e63b";
}
.mif-vertical-align-top:before {
content: "\e63c";
}
.mif-file-download:before {
content: "\e63d";
}
.mif-file-upload:before {
content: "\e63e";
}
.mif-keyboard-return:before {
content: "\e63f";
}
.mif-keyboard-voice:before {
content: "\e640";
}
.mif-phonelink:before {
content: "\e641";
}
.mif-phonelink-off:before {
content: "\e642";
}
.mif-security:before {
content: "\e618";
}
.mif-looks:before {
content: "\e643";
}
.mif-palette:before {
content: "\e619";
}
.mif-layers:before {
content: "\e644";
}
.mif-layers-clear:before {
content: "\e61a";
}
.mif-local-airport:before {
content: "\e645";
}
.mif-florist:before {
content: "\e61b";
}
.mif-gas-station:before {
content: "\e61c";
}
.mif-hotel:before {
content: "\e646";
}
.mif-local-service:before {
content: "\e61d";
}
.mif-map2:before {
content: "\e620";
}
.mif-my-location:before {
content: "\e61e";
}
.mif-traff:before {
content: "\e621";
}
.mif-apps:before {
content: "\e647";
}
.mif-chevron-left:before {
content: "\e648";
}
.mif-chevron-right:before {
content: "\e649";
}
.mif-expand-less:before {
content: "\e64a";
}
.mif-expand-more:before {
content: "\e64b";
}
.mif-menu:before {
content: "\e64c";
}
.mif-more-horiz:before {
content: "\e64d";
}
.mif-more-vert:before {
content: "\e64e";
}
.mif-unfold-less:before {
content: "\e64f";
}
.mif-unfold-more:before {
content: "\e650";
}
.mif-bt-audio:before {
content: "\e651";
}
.mif-not:before {
content: "\e633";
}
.mif-drive-eta:before {
content: "\e652";
}
.mif-event-available:before {
content: "\e653";
}
.mif-event-busy:before {
content: "\e654";
}
.mif-folder-special:before {
content: "\e655";
}
.mif-phone-bt:before {
content: "\e657";
}
.mif-phone-forwarded:before {
content: "\e658";
}
.mif-phone-in-talk:before {
content: "\e659";
}
.mif-phone-locked:before {
content: "\e65a";
}
.mif-phone-missed:before {
content: "\e65b";
}
.mif-phone-paused:before {
content: "\e65c";
}
.mif-sd-card:before {
content: "\e65d";
}
.mif-sync-disabled:before {
content: "\e622";
}
.mif-sync-problem:before {
content: "\e623";
}
.mif-vpn-lock:before {
content: "\e624";
}
.mif-vpn-publ:before {
content: "\e625";
}
.mif-school:before {
content: "\e61f";
}
.mif-install:before {
content: "\e902";
}
.mif-open-book:before {
content: "\e903";
}
.mif-uninstall:before {
content: "\e904";
}
.mif-drive2:before {
content: "\e906";
}
.mif-news:before {
content: "\e907";
}
.mif-book-reference:before {
content: "\e908";
}
.mif-chevron-thin-down:before {
content: "\e66b";
}
.mif-chevron-thin-left:before {
content: "\e697";
}
.mif-chevron-thin-right:before {
content: "\e69b";
}
.mif-chevron-thin-up:before {
content: "\e69c";
}
.mif-flow-branch:before {
content: "\e69d";
}
.mif-flow-cascade:before {
content: "\e69e";
}
.mif-flow-line:before {
content: "\e69f";
}
.mif-flow-parallel:before {
content: "\e6a0";
}
.mif-flow-tree:before {
content: "\e6a1";
}
.mif-air:before {
content: "\e6a2";
}
.mif-medal:before {
content: "\e6a3";
}
.mif-paper-plane:before {
content: "\e6a4";
}
.mif-shareable:before {
content: "\e6a5";
}
.mif-shop:before {
content: "\e6a6";
}
.mif-shopping-basket2:before {
content: "\e6a7";
}
.mif-thumbs-down:before {
content: "\e6a8";
}
.mif-thumbs-up:before {
content: "\e6a9";
}
.mif-traffic-cone:before {
content: "\e6aa";
}
.mif-water:before {
content: "\e6ab";
}
.mif-creative-cloud:before {
content: "\e6ac";
}
.mif-dropbox:before {
content: "\e6ad";
}
.mif-evernote:before {
content: "\e6ae";
}
.mif-paypal:before {
content: "\e6af";
}
.mif-swarm:before {
content: "\e6b0";
}
.mif-vk:before {
content: "\e6b1";
}
.mif-yelp:before {
content: "\e6b2";
}
.mif-dribbble:before {
content: "\e6b3";
}
.mif-lastfm:before {
content: "\e6b4";
}
.mif-pinterest:before {
content: "\e6b5";
}
.mif-stumbleupon:before {
content: "\e6b6";
}
.mif-vimeo:before {
content: "\e6b7";
}
.mif-facebook:before {
content: "\f09a";
}
.mif-google-plus:before {
content: "\f0d5";
}
.mif-steam:before {
content: "\f1b6";
}
.mif-leanpub:before {
content: "\f212";
}
.mif-user-secret:before {
content: "\f21b";
}
.mif-server:before {
content: "\f233";
}
.mif-balance-scale:before {
content: "\f24e";
}
.mif-odnoklassniki:before {
content: "\f263";
}
.mif-gitlab:before {
content: "\f296";
}
.mif-themeisle:before {
content: "\f2b2";
}
.mif-handshake:before {
content: "\f2b5";
}
.mif-grav:before {
content: "\f2d6";
}
.mif-imdb:before {
content: "\f2d8";
}
.mif-meetup:before {
content: "\f2e0";
}
.mif-unlink:before {
content: "\f127";
}
.mif-fire-extinguisher:before {
content: "\f134";
}
.mif-eur:before {
content: "\f153";
}
.mif-gbp:before {
content: "\f154";
}
.mif-dollar2:before {
content: "\f155";
}
.mif-inr:before {
content: "\f156";
}
.mif-cny:before {
content: "\f157";
}
.mif-rouble:before {
content: "\f158";
}
.mif-krw:before {
content: "\f159";
}
.mif-bitcoin:before {
content: "\f15a";
}
.mif-youtube2:before {
content: "\f167";
}
.mif-youtube-play:before {
content: "\f16a";
}
.mif-linux:before {
content: "\f17c";
}
.mif-try:before {
content: "\f195";
}
.mif-space-shuttle:before {
content: "\f197";
}
.mif-openid:before {
content: "\f19b";
}
.mif-digg:before {
content: "\f1a6";
}
.mif-language:before {
content: "\f1ab";
}
.mif-automobile:before {
content: "\f1b9";
}
.mif-cab:before {
content: "\f1ba";
}
.mif-jsfiddle:before {
content: "\f1cc";
}
.mif-google-wallet:before {
content: "\f1ee";
}
.mif-copyright:before {
content: "\f1f9";
}
.mif-bicycle:before {
content: "\f206";
}
.mif-bus:before {
content: "\f207";
}
.mif-ship:before {
content: "\f21a";
}
.mif-motorcycle:before {
content: "\f21c";
}
.mif-train:before {
content: "\f238";
}
.mif-subway:before {
content: "\f239";
}
.mif-opencart:before {
content: "\f23d";
}
.mif-trademark:before {
content: "\f25c";
}
.mif-registered:before {
content: "\f25d";
}
.mif-creative-commons:before {
content: "\f25e";
}
.mif-wikipedia:before {
content: "\f266";
}
.mif-amazon:before {
content: "\f270";
}
.mif-fonticons:before {
content: "\f280";
}
.mif-user-md:before {
content: "\f0f0";
}
.mif-stethoscope:before {
content: "\f0f1";
}
.mif-ambulance:before {
content: "\f0f9";
}
.mif-medkit:before {
content: "\f0fa";
}
.mif-paw:before {
content: "\f1b0";
}
.mif-file-pdf:before {
content: "\f1c1";
}
.mif-file-word:before {
content: "\f1c2";
}
.mif-file-excel:before {
content: "\f1c3";
}
.mif-file-powerpoint:before {
content: "\f1c4";
}
.mif-file-image:before {
content: "\f1c5";
}
.mif-file-archive:before {
content: "\f1c6";
}
.mif-file-audio:before {
content: "\f1c7";
}
.mif-file-movie:before {
content: "\f1c8";
}
.mif-file-code:before {
content: "\f1c9";
}
.mif-visa:before {
content: "\f1f0";
}
.mif-mastercard:before {
content: "\f1f1";
}
.mif-discover:before {
content: "\f1f2";
}
.mif-amex:before {
content: "\f1f3";
}
.mif-cc-paypal:before {
content: "\f1f4";
}
.mif-heartbeat:before {
content: "\f21e";
}
.mif-venus:before {
content: "\f221";
}
.mif-mars:before {
content: "\f222";
}
.mif-medium:before {
content: "\f23a";
}
.mif-stack2:before {
content: "\e6b9";
}
.mif-stack3:before {
content: "\e6ba";
}
.mif-lamp:before {
content: "\e6bb";
}
.mif-injection:before {
content: "\e6bc";
}
.mif-thermometer2:before {
content: "\e6bd";
}
.mif-justice:before {
content: "\e6be";
}
.mif-cabinet:before {
content: "\e62b";
}
.mif-suitcase:before {
content: "\e62c";
}
.mif-gamepad:before {
content: "\e65e";
}
.mif-satellite:before {
content: "\e65f";
}
.mif-lock:before {
content: "\e660";
}
.mif-unlock:before {
content: "\e661";
}
.mif-battery-full:before {
content: "\e62d";
}
.mif-battery-two:before {
content: "\e62e";
}
.mif-battery-one:before {
content: "\e62f";
}
.mif-battery-empty:before {
content: "\e630";
}
.mif-battery-charge:before {
content: "\e631";
}
.mif-tools:before {
content: "\e632";
}
.mif-pin:before {
content: "\e662";
}
.mif-discout:before {
content: "\e663";
}
.mif-profile:before {
content: "\e664";
}
.mif-dollar:before {
content: "\e665";
}
.mif-dollars:before {
content: "\e666";
}
.mif-coins:before {
content: "\e6b8";
}
.mif-male:before {
content: "\e667";
}
.mif-female:before {
content: "\e668";
}
.mif-piano:before {
content: "\e669";
}
.mif-anchor:before {
content: "\e66a";
}
.mif-copy:before {
content: "\e92c";
}
.mif-paste:before {
content: "\e92d";
}
.mif-cut:before {
content: "\ea5a";
}
.mif-earth2:before {
content: "\e6c1";
}
.mif-shit:before {
content: "\e6c2";
}
.mif-broadcast:before {
content: "\f048";
}
.mif-organization:before {
content: "\f037";
}
.mif-squirrel:before {
content: "\f0b2";
}
.mif-steps:before {
content: "\f0c7";
}
.mif-versions:before {
content: "\f064";
}
.mif-microscope:before {
content: "\f089";
}
.mif-library:before {
content: "\e921";
}
.mif-file-binary:before {
content: "\f094";
}
.mif-mail-read:before {
content: "\f03c";
}
.mif-quote:before {
content: "\f063";
}
.mif-sunrise:before {
content: "\e66c";
}
.mif-sun:before {
content: "\e66d";
}
.mif-moon:before {
content: "\e66e";
}
.mif-sun3:before {
content: "\e66f";
}
.mif-windy:before {
content: "\e670";
}
.mif-wind:before {
content: "\e671";
}
.mif-snowflake:before {
content: "\e672";
}
.mif-cloudy:before {
content: "\e673";
}
.mif-cloud2:before {
content: "\e674";
}
.mif-weather:before {
content: "\e675";
}
.mif-weather2:before {
content: "\e676";
}
.mif-weather3:before {
content: "\e677";
}
.mif-lines:before {
content: "\e678";
}
.mif-cloud3:before {
content: "\e679";
}
.mif-lightning:before {
content: "\e67a";
}
.mif-lightning2:before {
content: "\e67b";
}
.mif-rainy:before {
content: "\e67c";
}
.mif-rainy2:before {
content: "\e67d";
}
.mif-windy2:before {
content: "\e67e";
}
.mif-windy3:before {
content: "\e67f";
}
.mif-snowy:before {
content: "\e680";
}
.mif-snowy2:before {
content: "\e681";
}
.mif-snowy3:before {
content: "\e682";
}
.mif-weather4:before {
content: "\e683";
}
.mif-cloudy2:before {
content: "\e684";
}
.mif-cloud4:before {
content: "\e685";
}
.mif-lightning3:before {
content: "\e686";
}
.mif-sun4:before {
content: "\e687";
}
.mif-moon2:before {
content: "\e688";
}
.mif-cloudy3:before {
content: "\e689";
}
.mif-cloud5:before {
content: "\e68a";
}
.mif-cloud6:before {
content: "\e68b";
}
.mif-lightning4:before {
content: "\e68c";
}
.mif-rainy3:before {
content: "\e68d";
}
.mif-rainy4:before {
content: "\e68e";
}
.mif-windy4:before {
content: "\e68f";
}
.mif-windy5:before {
content: "\e690";
}
.mif-snowy4:before {
content: "\e691";
}
.mif-snowy5:before {
content: "\e692";
}
.mif-weather5:before {
content: "\e693";
}
.mif-cloudy4:before {
content: "\e694";
}
.mif-lightning5:before {
content: "\e695";
}
.mif-thermometer:before {
content: "\e696";
}
.mif-none:before {
content: "\e698";
}
.mif-celsius:before {
content: "\e699";
}
.mif-fahrenheit:before {
content: "\e69a";
}
.mif-home:before {
content: "\e900";
}
.mif-pencil:before {
content: "\e905";
}
.mif-eyedropper:before {
content: "\e90a";
}
.mif-paint:before {
content: "\e90c";
}
.mif-image:before {
content: "\e90d";
}
.mif-images:before {
content: "\e90e";
}
.mif-camera:before {
content: "\e90f";
}
.mif-headphones:before {
content: "\e910";
}
.mif-music:before {
content: "\e911";
}
.mif-film:before {
content: "\e913";
}
.mif-video-camera:before {
content: "\e914";
}
.mif-dice:before {
content: "\e915";
}
.mif-wifi-connect:before {
content: "\e91b";
}
.mif-feed:before {
content: "\e91d";
}
.mif-mic:before {
content: "\e91e";
}
.mif-books:before {
content: "\e920";
}
.mif-file-empty:before {
content: "\e924";
}
.mif-files-empty:before {
content: "\e925";
}
.mif-file-text:before {
content: "\e926";
}
.mif-file-picture:before {
content: "\e927";
}
.mif-file-music:before {
content: "\e928";
}
.mif-file-play:before {
content: "\e929";
}
.mif-file-video:before {
content: "\e92a";
}
.mif-file-zip:before {
content: "\e92b";
}
.mif-stack:before {
content: "\e92e";
}
.mif-folder:before {
content: "\e92f";
}
.mif-folder-open:before {
content: "\e930";
}
.mif-folder-plus:before {
content: "\e931";
}
.mif-folder-minus:before {
content: "\e932";
}
.mif-folder-download:before {
content: "\e933";
}
.mif-folder-upload:before {
content: "\e934";
}
.mif-tag:before {
content: "\e935";
}
.mif-tags:before {
content: "\e936";
}
.mif-barcode:before {
content: "\e937";
}
.mif-qrcode:before {
content: "\e938";
}
.mif-cart:before {
content: "\e93a";
}
.mif-credit-card:before {
content: "\e93f";
}
.mif-calculator:before {
content: "\e940";
}
.mif-help:before {
content: "\e941";
}
.mif-phone:before {
content: "\e942";
}
.mif-envelop:before {
content: "\e945";
}
.mif-location:before {
content: "\e948";
}
.mif-compass:before {
content: "\e949";
}
.mif-compass2:before {
content: "\e94a";
}
.mif-map:before {
content: "\e94b";
}
.mif-history:before {
content: "\e94d";
}
.mif-bell:before {
content: "\e951";
}
.mif-calendar:before {
content: "\e953";
}
.mif-printer:before {
content: "\e954";
}
.mif-keyboard:before {
content: "\e955";
}
.mif-display:before {
content: "\e956";
}
.mif-laptop:before {
content: "\e957";
}
.mif-mobile:before {
content: "\e959";
}
.mif-tablet:before {
content: "\e95a";
}
.mif-download:before {
content: "\e960";
}
.mif-upload:before {
content: "\e961";
}
.mif-floppy-disk:before {
content: "\e962";
}
.mif-drive:before {
content: "\e963";
}
.mif-database:before {
content: "\e964";
}
.mif-undo:before {
content: "\e965";
}
.mif-redo:before {
content: "\e966";
}
.mif-bubble:before {
content: "\e96b";
}
.mif-bubbles:before {
content: "\e96c";
}
.mif-user:before {
content: "\e971";
}
.mif-users:before {
content: "\e972";
}
.mif-user-plus:before {
content: "\e973";
}
.mif-user-minus:before {
content: "\e974";
}
.mif-user-check:before {
content: "\e975";
}
.mif-hour-glass:before {
content: "\e979";
}
.mif-spinner:before {
content: "\e97a";
}
.mif-spinner1:before {
content: "\e97b";
}
.mif-spinner2:before {
content: "\e97d";
}
.mif-spinner3:before {
content: "\e981";
}
.mif-spinner4:before {
content: "\e982";
}
.mif-spinner5:before {
content: "\e983";
}
.mif-search:before {
content: "\e986";
}
.mif-zoom-in:before {
content: "\e987";
}
.mif-zoom-out:before {
content: "\e988";
}
.mif-enlarge:before {
content: "\e989";
}
.mif-shrink:before {
content: "\e98a";
}
.mif-enlarge2:before {
content: "\e98b";
}
.mif-shrink2:before {
content: "\e98c";
}
.mif-key:before {
content: "\e98d";
}
.mif-wrench:before {
content: "\e991";
}
.mif-equalizer:before {
content: "\e992";
}
.mif-equalizer-v:before {
content: "\e993";
}
.mif-cog:before {
content: "\e994";
}
.mif-cogs:before {
content: "\e995";
}
.mif-magic-wand:before {
content: "\e997";
}
.mif-bug:before {
content: "\e999";
}
.mif-chart-pie:before {
content: "\e99a";
}
.mif-chart-dots:before {
content: "\e99b";
}
.mif-chart-bars:before {
content: "\e99c";
}
.mif-chart-bars2:before {
content: "\e99d";
}
.mif-trophy:before {
content: "\e99e";
}
.mif-gift:before {
content: "\e99f";
}
.mif-spoon-fork:before {
content: "\e9a3";
}
.mif-rocket:before {
content: "\e9a5";
}
.mif-meter:before {
content: "\e9a6";
}
.mif-hammer:before {
content: "\e9a8";
}
.mif-fire:before {
content: "\e9a9";
}
.mif-lab:before {
content: "\e9aa";
}
.mif-bin:before {
content: "\e9ac";
}
.mif-truck:before {
content: "\e9b0";
}
.mif-target:before {
content: "\e9b3";
}
.mif-power:before {
content: "\e9b5";
}
.mif-switch:before {
content: "\e9b6";
}
.mif-power-cord:before {
content: "\e9b7";
}
.mif-clipboard:before {
content: "\e9b8";
}
.mif-list-numbered:before {
content: "\e9b9";
}
.mif-list:before {
content: "\e9ba";
}
.mif-list2:before {
content: "\e9bb";
}
.mif-tree:before {
content: "\e9bc";
}
.mif-cloud:before {
content: "\e9c1";
}
.mif-cloud-download:before {
content: "\e9c2";
}
.mif-cloud-upload:before {
content: "\e9c3";
}
.mif-download2:before {
content: "\e9c7";
}
.mif-upload2:before {
content: "\e9c8";
}
.mif-earth:before {
content: "\e9ca";
}
.mif-link:before {
content: "\e9cb";
}
.mif-flag:before {
content: "\e9cc";
}
.mif-attachment:before {
content: "\e9cd";
}
.mif-eye:before {
content: "\e9ce";
}
.mif-bookmark:before {
content: "\e9d2";
}
.mif-bookmarks:before {
content: "\e9d3";
}
.mif-contrast:before {
content: "\e9d5";
}
.mif-brightness:before {
content: "\e9d6";
}
.mif-star-empty:before {
content: "\e9d7";
}
.mif-star-half:before {
content: "\e9d8";
}
.mif-star-full:before {
content: "\e9d9";
}
.mif-heart:before {
content: "\e9da";
}
.mif-heart-broken:before {
content: "\e9db";
}
.mif-warning:before {
content: "\ea07";
}
.mif-notification:before {
content: "\ea08";
}
.mif-question:before {
content: "\ea09";
}
.mif-plus:before {
content: "\ea0a";
}
.mif-minus:before {
content: "\ea0b";
}
.mif-info:before {
content: "\ea0c";
}
.mif-cancel:before {
content: "\ea0d";
}
.mif-blocked:before {
content: "\ea0e";
}
.mif-cross:before {
content: "\ea0f";
}
.mif-checkmark:before {
content: "\ea10";
}
.mif-spell-check:before {
content: "\ea12";
}
.mif-enter:before {
content: "\ea13";
}
.mif-exit:before {
content: "\ea14";
}
.mif-play:before {
content: "\ea1c";
}
.mif-pause:before {
content: "\ea1d";
}
.mif-stop:before {
content: "\ea1e";
}
.mif-backward:before {
content: "\ea1f";
}
.mif-forward:before {
content: "\ea20";
}
.mif-first:before {
content: "\ea21";
}
.mif-last:before {
content: "\ea22";
}
.mif-previous:before {
content: "\ea23";
}
.mif-next:before {
content: "\ea24";
}
.mif-eject:before {
content: "\ea25";
}
.mif-volume-high:before {
content: "\ea26";
}
.mif-volume-medium:before {
content: "\ea27";
}
.mif-volume-low:before {
content: "\ea28";
}
.mif-volume-mute:before {
content: "\ea29";
}
.mif-volume-mute2:before {
content: "\ea2a";
}
.mif-volume-plus:before {
content: "\ea2b";
}
.mif-volume-minus:before {
content: "\ea2c";
}
.mif-loop:before {
content: "\ea2d";
}
.mif-loop2:before {
content: "\ea2e";
}
.mif-infinite:before {
content: "\ea2f";
}
.mif-shuffle:before {
content: "\ea30";
}
.mif-arrow-up-left:before {
content: "\ea39";
}
.mif-arrow-up:before {
content: "\ea3a";
}
.mif-arrow-up-right:before {
content: "\ea3b";
}
.mif-arrow-right:before {
content: "\ea3c";
}
.mif-arrow-down-right:before {
content: "\ea3d";
}
.mif-arrow-down:before {
content: "\ea3e";
}
.mif-arrow-down-left:before {
content: "\ea3f";
}
.mif-arrow-left:before {
content: "\ea40";
}
.mif-tab:before {
content: "\ea45";
}
.mif-move-up:before {
content: "\ea46";
}
.mif-move-down:before {
content: "\ea47";
}
.mif-sort-asc:before {
content: "\ea4c";
}
.mif-sort-desc:before {
content: "\ea4d";
}
.mif-command:before {
content: "\ea4e";
}
.mif-shift:before {
content: "\ea4f";
}
.mif-crop:before {
content: "\ea57";
}
.mif-filter:before {
content: "\ea5b";
}
.mif-bold:before {
content: "\ea62";
}
.mif-underline:before {
content: "\ea63";
}
.mif-italic:before {
content: "\ea64";
}
.mif-strikethrough:before {
content: "\ea65";
}
.mif-page-break:before {
content: "\ea68";
}
.mif-superscript:before {
content: "\ea69";
}
.mif-subscript:before {
content: "\ea6a";
}
.mif-table:before {
content: "\ea71";
}
.mif-insert-template:before {
content: "\ea72";
}
.mif-pilcrow:before {
content: "\ea73";
}
.mif-ltr:before {
content: "\ea74";
}
.mif-rtl:before {
content: "\ea75";
}
.mif-section:before {
content: "\ea76";
}
.mif-paragraph-left:before {
content: "\ea77";
}
.mif-paragraph-center:before {
content: "\ea78";
}
.mif-paragraph-right:before {
content: "\ea79";
}
.mif-paragraph-justify:before {
content: "\ea7a";
}
.mif-indent-increase:before {
content: "\ea7b";
}
.mif-indent-decrease:before {
content: "\ea7c";
}
.mif-embed:before {
content: "\ea7f";
}
.mif-embed2:before {
content: "\ea80";
}
.mif-share:before {
content: "\ea82";
}
.mif-google:before {
content: "\ea87";
}
.mif-google-plus2:before {
content: "\ea88";
}
.mif-facebook2:before {
content: "\ea8d";
}
.mif-twitter:before {
content: "\ea91";
}
.mif-feed3:before {
content: "\ea95";
}
.mif-youtube:before {
content: "\ea99";
}
.mif-steam2:before {
content: "\eaae";
}
.mif-onedrive:before {
content: "\eab0";
}
.mif-github:before {
content: "\eab3";
}
.mif-git:before {
content: "\eab5";
}
.mif-apple:before {
content: "\eabf";
}
.mif-android:before {
content: "\eac1";
}
.mif-windows:before {
content: "\eac3";
}
.mif-skype:before {
content: "\eac6";
}
.mif-linkedin:before {
content: "\eac8";
}
.mif-html5:before {
content: "\eadf";
}
.mif-css3:before {
content: "\eae1";
}
.mif-chrome:before {
content: "\eae5";
}
.mif-firefox:before {
content: "\eae6";
}
.mif-ie:before {
content: "\eae7";
}
.mif-opera:before {
content: "\eae8";
}
.mif-safari:before {
content: "\eae9";
}
.mif-airplane:before {
content: "\e6c3";
}
.mif-instagram:before {
content: "\e6c5";
}
.mif-twitch:before {
content: "\e6c6";
}
.mif-picassa:before {
content: "\e6c7";
}
.mif-deviantart:before {
content: "\e6c8";
}
.mif-wordpress:before {
content: "\e6c9";
}
.mif-joomla:before {
content: "\e6ca";
}
.mif-blogger:before {
content: "\e6cb";
}
.mif-tux:before {
content: "\e6cc";
}
.mif-finder:before {
content: "\e6cd";
}
.mif-soundcloud:before {
content: "\e6ce";
}
.mif-reddit:before {
content: "\e6cf";
}
.mif-delicious:before {
content: "\e6d0";
}
.mif-stackoverflow:before {
content: "\e6d1";
}
.mif-flattr:before {
content: "\e6d2";
}
.mif-foursquare:before {
content: "\e6d3";
}
.mif-file-openoffice:before {
content: "\e6d4";
}
.mif-libreoffice:before {
content: "\e6d5";
}
.mif-codepen:before {
content: "\e6d6";
}
.mif-IcoMoon:before {
content: "\e6d7";
}
|
src/slf4j-1.7.25/site/xref-test/org/slf4j/impl/RecursiveInitializationTest.html
|
rickli/Java
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<title>RecursiveInitializationTest xref</title>
<link type="text/css" rel="stylesheet" href="../../../stylesheet.css" />
</head>
<body>
<div id="overview"><a href="../../../../testapidocs/org/slf4j/impl/RecursiveInitializationTest.html">View Javadoc</a></div><pre>
<a class="jxr_linenumber" name="1" href="#1">1</a> <em class="jxr_javadoccomment">/**</em>
<a class="jxr_linenumber" name="2" href="#2">2</a> <em class="jxr_javadoccomment"> * Copyright (c) 2004-2011 QOS.ch</em>
<a class="jxr_linenumber" name="3" href="#3">3</a> <em class="jxr_javadoccomment"> * All rights reserved.</em>
<a class="jxr_linenumber" name="4" href="#4">4</a> <em class="jxr_javadoccomment"> *</em>
<a class="jxr_linenumber" name="5" href="#5">5</a> <em class="jxr_javadoccomment"> * Permission is hereby granted, free of charge, to any person obtaining</em>
<a class="jxr_linenumber" name="6" href="#6">6</a> <em class="jxr_javadoccomment"> * a copy of this software and associated documentation files (the</em>
<a class="jxr_linenumber" name="7" href="#7">7</a> <em class="jxr_javadoccomment"> * "Software"), to deal in the Software without restriction, including</em>
<a class="jxr_linenumber" name="8" href="#8">8</a> <em class="jxr_javadoccomment"> * without limitation the rights to use, copy, modify, merge, publish,</em>
<a class="jxr_linenumber" name="9" href="#9">9</a> <em class="jxr_javadoccomment"> * distribute, sublicense, and/or sell copies of the Software, and to</em>
<a class="jxr_linenumber" name="10" href="#10">10</a> <em class="jxr_javadoccomment"> * permit persons to whom the Software is furnished to do so, subject to</em>
<a class="jxr_linenumber" name="11" href="#11">11</a> <em class="jxr_javadoccomment"> * the following conditions:</em>
<a class="jxr_linenumber" name="12" href="#12">12</a> <em class="jxr_javadoccomment"> *</em>
<a class="jxr_linenumber" name="13" href="#13">13</a> <em class="jxr_javadoccomment"> * The above copyright notice and this permission notice shall be</em>
<a class="jxr_linenumber" name="14" href="#14">14</a> <em class="jxr_javadoccomment"> * included in all copies or substantial portions of the Software.</em>
<a class="jxr_linenumber" name="15" href="#15">15</a> <em class="jxr_javadoccomment"> *</em>
<a class="jxr_linenumber" name="16" href="#16">16</a> <em class="jxr_javadoccomment"> * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,</em>
<a class="jxr_linenumber" name="17" href="#17">17</a> <em class="jxr_javadoccomment"> * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF</em>
<a class="jxr_linenumber" name="18" href="#18">18</a> <em class="jxr_javadoccomment"> * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND</em>
<a class="jxr_linenumber" name="19" href="#19">19</a> <em class="jxr_javadoccomment"> * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE</em>
<a class="jxr_linenumber" name="20" href="#20">20</a> <em class="jxr_javadoccomment"> * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION</em>
<a class="jxr_linenumber" name="21" href="#21">21</a> <em class="jxr_javadoccomment"> * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION</em>
<a class="jxr_linenumber" name="22" href="#22">22</a> <em class="jxr_javadoccomment"> * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.</em>
<a class="jxr_linenumber" name="23" href="#23">23</a> <em class="jxr_javadoccomment"> *</em>
<a class="jxr_linenumber" name="24" href="#24">24</a> <em class="jxr_javadoccomment"> */</em>
<a class="jxr_linenumber" name="25" href="#25">25</a> <strong class="jxr_keyword">package</strong> org.slf4j.impl;
<a class="jxr_linenumber" name="26" href="#26">26</a>
<a class="jxr_linenumber" name="27" href="#27">27</a> <strong class="jxr_keyword">import</strong> java.util.Random;
<a class="jxr_linenumber" name="28" href="#28">28</a>
<a class="jxr_linenumber" name="29" href="#29">29</a> <strong class="jxr_keyword">import</strong> org.junit.After;
<a class="jxr_linenumber" name="30" href="#30">30</a> <strong class="jxr_keyword">import</strong> org.junit.Test;
<a class="jxr_linenumber" name="31" href="#31">31</a> <strong class="jxr_keyword">import</strong> org.slf4j.Logger;
<a class="jxr_linenumber" name="32" href="#32">32</a> <strong class="jxr_keyword">import</strong> org.slf4j.LoggerFactory;
<a class="jxr_linenumber" name="33" href="#33">33</a>
<a class="jxr_linenumber" name="34" href="#34">34</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">class</strong> <a href="../../../org/slf4j/impl/RecursiveInitializationTest.html">RecursiveInitializationTest</a> {
<a class="jxr_linenumber" name="35" href="#35">35</a>
<a class="jxr_linenumber" name="36" href="#36">36</a> <em class="jxr_comment">// value of LogManager.DEFAULT_CONFIGURATION_KEY;</em>
<a class="jxr_linenumber" name="37" href="#37">37</a> <strong class="jxr_keyword">static</strong> String CONFIG_FILE_KEY = <span class="jxr_string">"log4j.configuration"</span>;
<a class="jxr_linenumber" name="38" href="#38">38</a>
<a class="jxr_linenumber" name="39" href="#39">39</a> <strong class="jxr_keyword">int</strong> diff = <strong class="jxr_keyword">new</strong> Random().nextInt(10000);
<a class="jxr_linenumber" name="40" href="#40">40</a> String loggerName = <span class="jxr_string">"org.slf4j.impl.RecursiveInitializationTest"</span>;
<a class="jxr_linenumber" name="41" href="#41">41</a>
<a class="jxr_linenumber" name="42" href="#42">42</a> @After
<a class="jxr_linenumber" name="43" href="#43">43</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> tearDown() <strong class="jxr_keyword">throws</strong> Exception {
<a class="jxr_linenumber" name="44" href="#44">44</a> System.clearProperty(CONFIG_FILE_KEY);
<a class="jxr_linenumber" name="45" href="#45">45</a> }
<a class="jxr_linenumber" name="46" href="#46">46</a>
<a class="jxr_linenumber" name="47" href="#47">47</a> @Test
<a class="jxr_linenumber" name="48" href="#48">48</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> loggingDuringInitialization() {
<a class="jxr_linenumber" name="49" href="#49">49</a> System.setProperty(CONFIG_FILE_KEY, <span class="jxr_string">"recursiveInit.properties"</span>);
<a class="jxr_linenumber" name="50" href="#50">50</a> Logger logger = LoggerFactory.getLogger(loggerName + <span class="jxr_string">".loggingDuringInitialization-"</span> + diff);
<a class="jxr_linenumber" name="51" href="#51">51</a> logger.info(<span class="jxr_string">"hello"</span>);
<a class="jxr_linenumber" name="52" href="#52">52</a> }
<a class="jxr_linenumber" name="53" href="#53">53</a>
<a class="jxr_linenumber" name="54" href="#54">54</a> }
</pre>
<hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
</html>
|
stock/templates/registration/password_reset_email.html
|
iAddz/allianceauth
|
{% load i18n %}{% autoescape off %}
{% blocktrans %}You're receiving this email because you requested a password reset for your
user account.{% endblocktrans %}
{% trans "Please go to the following page and choose a new password:" %}
{% block reset_link %}
{{domain}}{% url 'password_reset_confirm' uidb64=uid token=token %}
{% endblock %}
{% trans "Your username, in case you've forgotten:" %} {{ user.get_username }}
{% trans "Thanks for using our site!" %}
{% blocktrans %}Your IT Team{% endblocktrans %}
{% endautoescape %}
|
engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/views/subscriptions-table-collapsed.html
|
ehelms/katello
|
<table class="table table-full" ng-class="{'table-mask': table.working}">
<thead>
<tr bst-table-head>
<th bst-table-column="consumed" sortable><span translate>Consumed</span></th>
</tr>
</thead>
<tbody>
<tr bst-table-row ng-repeat-start="(name, subscriptions) in groupedSubscriptions">
<td bst-table-cell>
<b>{{ name }}</b>
</td>
</tr>
<tr bst-table-row
class="grey-table-row"
ng-repeat-end
ng-repeat="subscription in subscriptions"
active-row="stateIncludes('subscriptions.details', {subscriptionId: subscription.id})">
<td bst-table-cell>
<a ui-sref="subscriptions.details.info({subscriptionId: subscription.id})">
{{ formatConsumed(subscription) }}
</a>
</td>
</tr>
</tbody>
</table>
|
sites/all/modules/azexo_composer/azexo_composer/jquery.mb.YTPlayer/ajaxLoad/ajaxVideo.html
|
satthish/blabcult
|
<!--–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
jquery.mb.components –
–
file: ajaxVideo.html –
last modified: 09/07/14 23.11 –
–
Open Lab s.r.l., Florence - Italy –
–
email: matteo@open-lab.com –
site: http://pupunzi.com –
http://open-lab.com –
blog: http://pupunzi.open-lab.com –
Q&A: http://jquery.pupunzi.com –
–
Licences: MIT, GPL –
http://www.opensource.org/licenses/mit-license.php –
http://www.gnu.org/licenses/gpl.html –
–
Copyright (c) 2001-2014. Matteo Bicocchi (Pupunzi); –
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––-->
<div class="player" id="videoFragment" data-property="{videoURL:'BsekcY04xvQ',containment:'self',autoPlay:true, mute:true, startAt:0, opacity:1}"></div>
<script>
//Change the ID of the video placeholder to let the YT API work on multiple calls
var ID = "videoFragment" + new Date().getTime();
var el = jQuery("#videoFragment").get(0);
jQuery("#videoFragment").attr("id", ID);
// Init the video
jQuery("#"+ID).mb_YTPlayer();
</script>
|
web-platform-tests/tests/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_background_properties.html
|
cr/fxos-certsuite
|
<!DOCTYPE html>
<html>
<title>WebVTT rendering, ::cue(c), background properties</title>
<style>
html { overflow:hidden }
body { margin:0 }
::cue(c) {
font-family: sans-serif;
background-color: #0f0;
background-image: url('../../../media/background.gif');
background-repeat: repeat-x;
background-position: top left;
color: black;
}
</style>
<script src="/common/reftest-wait.js"></script>
<video width="1280" height="720" autoplay onplaying="this.onplaying = null; this.pause(); takeScreenshot();">
<source src="/media/white.webm" type="video/webm">
<source src="/media/white.mp4" type="video/mp4">
<track src="../../../support/test_class.vtt">
<script>
document.getElementsByTagName('track')[0].track.mode = 'showing';
</script>
</video>
</html>
|
layout/reftests/ogg-video/poster-3.html
|
Yukarumya/Yukarum-Redfoxes
|
<!DOCTYPE HTML>
<html class="reftest-wait">
<body style="background:white;">
<!-- Test if poster hides after playing with autoplay. -->
<video src="black140x100.ogv"
poster="blue250x200.png"
preload="auto"
autoplay
onplaying="setTimeout(function(){document.documentElement.className = '';},0);"></video>
</body>
</html>
|
LayoutTests/fast/box-shadow/box-shadow-clipped-slices.html
|
youfoh/webkit-efl
|
<html><head>
<script type=text/javascript>
if (window.testRunner)
window.testRunner.dumpAsText(true);
</script>
<style type=text/css>
.rounded { border: 2px solid black; border-radius: 5px / 10px; box-shadow: -150px 0 30px 200px #999; width: 400px; height: 200px; position: relative }
.overflow { overflow: hidden; width: 20px; height: 20px; float: left; }
</style></head><body>
<div class='overflow'>
<div class='rounded' style='left: 380px; top: 280px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 360px; top: 280px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 340px; top: 280px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 320px; top: 280px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 300px; top: 280px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 280px; top: 280px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 260px; top: 280px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 240px; top: 280px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 220px; top: 280px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 200px; top: 280px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 180px; top: 280px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 160px; top: 280px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 140px; top: 280px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 120px; top: 280px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 100px; top: 280px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 80px; top: 280px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 60px; top: 280px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 40px; top: 280px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 20px; top: 280px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 0px; top: 280px'></div>
</div>
<div style='clear:both'></div>
<div class='overflow'>
<div class='rounded' style='left: 380px; top: 260px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 360px; top: 260px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 340px; top: 260px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 320px; top: 260px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 300px; top: 260px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 280px; top: 260px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 260px; top: 260px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 240px; top: 260px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 220px; top: 260px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 200px; top: 260px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 180px; top: 260px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 160px; top: 260px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 140px; top: 260px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 120px; top: 260px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 100px; top: 260px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 80px; top: 260px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 60px; top: 260px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 40px; top: 260px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 20px; top: 260px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 0px; top: 260px'></div>
</div>
<div style='clear:both'></div>
<div class='overflow'>
<div class='rounded' style='left: 380px; top: 240px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 360px; top: 240px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 340px; top: 240px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 320px; top: 240px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 300px; top: 240px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 280px; top: 240px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 260px; top: 240px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 240px; top: 240px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 220px; top: 240px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 200px; top: 240px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 180px; top: 240px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 160px; top: 240px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 140px; top: 240px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 120px; top: 240px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 100px; top: 240px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 80px; top: 240px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 60px; top: 240px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 40px; top: 240px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 20px; top: 240px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 0px; top: 240px'></div>
</div>
<div style='clear:both'></div>
<div class='overflow'>
<div class='rounded' style='left: 380px; top: 220px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 360px; top: 220px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 340px; top: 220px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 320px; top: 220px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 300px; top: 220px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 280px; top: 220px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 260px; top: 220px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 240px; top: 220px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 220px; top: 220px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 200px; top: 220px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 180px; top: 220px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 160px; top: 220px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 140px; top: 220px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 120px; top: 220px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 100px; top: 220px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 80px; top: 220px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 60px; top: 220px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 40px; top: 220px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 20px; top: 220px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 0px; top: 220px'></div>
</div>
<div style='clear:both'></div>
<div class='overflow'>
<div class='rounded' style='left: 380px; top: 200px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 360px; top: 200px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 340px; top: 200px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 320px; top: 200px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 300px; top: 200px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 280px; top: 200px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 260px; top: 200px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 240px; top: 200px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 220px; top: 200px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 200px; top: 200px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 180px; top: 200px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 160px; top: 200px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 140px; top: 200px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 120px; top: 200px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 100px; top: 200px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 80px; top: 200px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 60px; top: 200px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 40px; top: 200px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 20px; top: 200px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 0px; top: 200px'></div>
</div>
<div style='clear:both'></div>
<div class='overflow'>
<div class='rounded' style='left: 380px; top: 180px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 360px; top: 180px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 340px; top: 180px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 320px; top: 180px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 300px; top: 180px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 280px; top: 180px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 260px; top: 180px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 240px; top: 180px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 220px; top: 180px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 200px; top: 180px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 180px; top: 180px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 160px; top: 180px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 140px; top: 180px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 120px; top: 180px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 100px; top: 180px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 80px; top: 180px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 60px; top: 180px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 40px; top: 180px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 20px; top: 180px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 0px; top: 180px'></div>
</div>
<div style='clear:both'></div>
<div class='overflow'>
<div class='rounded' style='left: 380px; top: 160px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 360px; top: 160px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 340px; top: 160px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 320px; top: 160px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 300px; top: 160px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 280px; top: 160px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 260px; top: 160px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 240px; top: 160px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 220px; top: 160px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 200px; top: 160px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 180px; top: 160px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 160px; top: 160px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 140px; top: 160px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 120px; top: 160px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 100px; top: 160px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 80px; top: 160px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 60px; top: 160px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 40px; top: 160px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 20px; top: 160px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 0px; top: 160px'></div>
</div>
<div style='clear:both'></div>
<div class='overflow'>
<div class='rounded' style='left: 380px; top: 140px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 360px; top: 140px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 340px; top: 140px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 320px; top: 140px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 300px; top: 140px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 280px; top: 140px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 260px; top: 140px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 240px; top: 140px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 220px; top: 140px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 200px; top: 140px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 180px; top: 140px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 160px; top: 140px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 140px; top: 140px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 120px; top: 140px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 100px; top: 140px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 80px; top: 140px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 60px; top: 140px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 40px; top: 140px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 20px; top: 140px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 0px; top: 140px'></div>
</div>
<div style='clear:both'></div>
<div class='overflow'>
<div class='rounded' style='left: 380px; top: 120px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 360px; top: 120px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 340px; top: 120px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 320px; top: 120px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 300px; top: 120px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 280px; top: 120px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 260px; top: 120px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 240px; top: 120px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 220px; top: 120px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 200px; top: 120px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 180px; top: 120px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 160px; top: 120px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 140px; top: 120px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 120px; top: 120px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 100px; top: 120px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 80px; top: 120px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 60px; top: 120px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 40px; top: 120px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 20px; top: 120px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 0px; top: 120px'></div>
</div>
<div style='clear:both'></div>
<div class='overflow'>
<div class='rounded' style='left: 380px; top: 100px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 360px; top: 100px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 340px; top: 100px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 320px; top: 100px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 300px; top: 100px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 280px; top: 100px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 260px; top: 100px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 240px; top: 100px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 220px; top: 100px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 200px; top: 100px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 180px; top: 100px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 160px; top: 100px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 140px; top: 100px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 120px; top: 100px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 100px; top: 100px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 80px; top: 100px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 60px; top: 100px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 40px; top: 100px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 20px; top: 100px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 0px; top: 100px'></div>
</div>
<div style='clear:both'></div>
<div class='overflow'>
<div class='rounded' style='left: 380px; top: 80px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 360px; top: 80px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 340px; top: 80px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 320px; top: 80px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 300px; top: 80px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 280px; top: 80px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 260px; top: 80px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 240px; top: 80px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 220px; top: 80px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 200px; top: 80px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 180px; top: 80px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 160px; top: 80px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 140px; top: 80px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 120px; top: 80px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 100px; top: 80px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 80px; top: 80px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 60px; top: 80px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 40px; top: 80px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 20px; top: 80px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 0px; top: 80px'></div>
</div>
<div style='clear:both'></div>
<div class='overflow'>
<div class='rounded' style='left: 380px; top: 60px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 360px; top: 60px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 340px; top: 60px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 320px; top: 60px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 300px; top: 60px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 280px; top: 60px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 260px; top: 60px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 240px; top: 60px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 220px; top: 60px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 200px; top: 60px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 180px; top: 60px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 160px; top: 60px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 140px; top: 60px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 120px; top: 60px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 100px; top: 60px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 80px; top: 60px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 60px; top: 60px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 40px; top: 60px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 20px; top: 60px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 0px; top: 60px'></div>
</div>
<div style='clear:both'></div>
<div class='overflow'>
<div class='rounded' style='left: 380px; top: 40px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 360px; top: 40px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 340px; top: 40px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 320px; top: 40px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 300px; top: 40px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 280px; top: 40px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 260px; top: 40px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 240px; top: 40px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 220px; top: 40px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 200px; top: 40px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 180px; top: 40px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 160px; top: 40px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 140px; top: 40px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 120px; top: 40px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 100px; top: 40px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 80px; top: 40px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 60px; top: 40px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 40px; top: 40px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 20px; top: 40px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 0px; top: 40px'></div>
</div>
<div style='clear:both'></div>
<div class='overflow'>
<div class='rounded' style='left: 380px; top: 20px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 360px; top: 20px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 340px; top: 20px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 320px; top: 20px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 300px; top: 20px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 280px; top: 20px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 260px; top: 20px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 240px; top: 20px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 220px; top: 20px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 200px; top: 20px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 180px; top: 20px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 160px; top: 20px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 140px; top: 20px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 120px; top: 20px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 100px; top: 20px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 80px; top: 20px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 60px; top: 20px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 40px; top: 20px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 20px; top: 20px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 0px; top: 20px'></div>
</div>
<div style='clear:both'></div>
<div class='overflow'>
<div class='rounded' style='left: 380px; top: 0px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 360px; top: 0px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 340px; top: 0px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 320px; top: 0px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 300px; top: 0px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 280px; top: 0px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 260px; top: 0px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 240px; top: 0px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 220px; top: 0px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 200px; top: 0px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 180px; top: 0px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 160px; top: 0px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 140px; top: 0px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 120px; top: 0px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 100px; top: 0px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 80px; top: 0px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 60px; top: 0px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 40px; top: 0px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 20px; top: 0px'></div>
</div>
<div class='overflow'>
<div class='rounded' style='left: 0px; top: 0px'></div>
</div>
<div style='clear:both'></div>
</body></html>
|
book_code/WebGL/7E/11/teapot1.html
|
stighenriksen/icp_angel
|
<!DOCTYPE html>
<html>
<script id="vertex-shader" type="x-shader/x-vertex">
attribute vec4 vPosition;
void main()
{
mat4 scale = mat4( 0.3, 0.0, 0.0, 0.0,
0.0, 0.3, 0.0, 0.0,
0.0, 0.0, 0.3, 0.0,
0.0, 0.0, 0.0, 1.0 );
gl_Position = scale*vPosition;
}
</script>
<script id="fragment-shader" type="x-shader/x-fragment">
precision mediump float;
void main()
{
gl_FragColor = vec4(1.0, 0.0, 0.0, 1.0);;
}
</script>
<script type="text/javascript" src="../Common/webgl-utils.js"></script>
<script type="text/javascript" src="../Common/initShaders.js"></script>
<script type="text/javascript" src="../Common/MV.js"></script>
<script type="text/javascript" src="vertices.js"></script>
<script type="text/javascript" src="patches.js"></script>
<script type="text/javascript" src="teapot1.js"></script>
<body>
<canvas id="gl-canvas" width="512" height="512">
Oops ... your browser doesn't support the HTML5 canvas element
</canvas>
</body>
</html>
|
valamis-lesson-generator/src/main/resources/tincan/pptx.html
|
ViLPy/Valamis
|
<section data-state="pptx_{{id}}" data-background-iframe="pptx-foreground-iframe-{{{id}}}.html"></section>
<script>
TinCanCourseModules['pptx_{{id}}'] = function(tincan) {
var activityID = 'activity{{id}}';
tincan.sendStatement(GetExperiencedStatement(activityID, '{{title}}'));
return 1;
}
</script>
|
site/javadoc/r1.1.0/org/apache/edgent/runtime/jmxcontrol/package-tree.html
|
dlaboss/incubator-quarks-website
|
<!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_112) on Sun Feb 26 17:08:12 EST 2017 -->
<title>org.apache.edgent.runtime.jmxcontrol Class Hierarchy (Edgent v1.1.0)</title>
<meta name="date" content="2017-02-26">
<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="org.apache.edgent.runtime.jmxcontrol Class Hierarchy (Edgent v1.1.0)";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li>Class</li>
<li>Use</li>
<li class="navBarCell1Rev">Tree</li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../org/apache/edgent/runtime/etiao/mbeans/package-tree.html">Prev</a></li>
<li><a href="../../../../../org/apache/edgent/runtime/jobregistry/package-tree.html">Next</a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/apache/edgent/runtime/jmxcontrol/package-tree.html" target="_top">Frames</a></li>
<li><a href="package-tree.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h1 class="title">Hierarchy For Package org.apache.edgent.runtime.jmxcontrol</h1>
<span class="packageHierarchyLabel">Package Hierarchies:</span>
<ul class="horizontal">
<li><a href="../../../../../overview-tree.html">All Packages</a></li>
</ul>
</div>
<div class="contentContainer">
<h2 title="Class Hierarchy">Class Hierarchy</h2>
<ul>
<li type="circle">java.lang.Object
<ul>
<li type="circle">org.apache.edgent.runtime.jmxcontrol.<a href="../../../../../org/apache/edgent/runtime/jmxcontrol/JMXControlService.html" title="class in org.apache.edgent.runtime.jmxcontrol"><span class="typeNameLink">JMXControlService</span></a> (implements org.apache.edgent.execution.services.<a href="../../../../../org/apache/edgent/execution/services/ControlService.html" title="interface in org.apache.edgent.execution.services">ControlService</a>)</li>
</ul>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li>Class</li>
<li>Use</li>
<li class="navBarCell1Rev">Tree</li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><a href="http://edgent.incubator.apache.org">Apache Edgent (incubating)</a></div>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../org/apache/edgent/runtime/etiao/mbeans/package-tree.html">Prev</a></li>
<li><a href="../../../../../org/apache/edgent/runtime/jobregistry/package-tree.html">Next</a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/apache/edgent/runtime/jmxcontrol/package-tree.html" target="_top">Frames</a></li>
<li><a href="package-tree.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright © 2017 The Apache Software Foundation. All Rights Reserved - 4744f56-20170226-1707</small></p>
</body>
</html>
|
modules/distribution/release-notes.html
|
Malintha/product-emm
|
<!--
~ Copyright 2005-2010 WSO2, Inc. (http://wso2.com)
~
~ 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.
-->
<html>
<head>
<meta http-equiv="content-type" content=""/>
<title>WSO2 Enterprise Mobility Manager ${product.version} Release Notes</title>
<link href="./tools/cmd/css/gs-dist-doc.css" rel="stylesheet"
type="text/css" media="all"/>
</head>
<body>
<h1>Enterprise Mobility Manager ${product.version} Release Notes</h1>
<p>
WSO2 Enterprise Mobility Manager (EMM) is a unique solution designed to specifically address the mobile enterprise needs. EMM includes of two key aspects:
Mobile Device Management (MDM) and Mobile Application Management (MAM). WSO2 EMM also supports single sign-on (SSO) and multi-tenancy.
</p>
<p>
EMM enables organizations to secure, manage and monitor Android and iOS powered devices (i.e., smart phones, ipod touch devices and tablet PCs), irrespective of the mobile operator, service provider, or the organization. Users need to accept the Policy agreement, which states all the actions that can be carried out on the device when enrolling with EMM. EMM only controls the corporate data that is present on the devices, while the personal data is left untouched.
</p>
<h3>
What is new in this release
</h3>
<p>
<b>First user experience</b>
</p>
<p>
In the previous WSO2 EMM releases it was mandatory for the users to fully configure WSO2 EMM before being able to run the product. Now, WSO2 EMM 2.2.0
binary pack comprises of a default Android Agent. Thereby, enabling users to seamlessly download and run EMM without any prior configurations. This will
allow users to use Android devices to get a better understanding of WSO2 EMM.
</p>
<p>
<b>Local notification method for Android devices</b>
</p>
<p>
The GCM server has a limitation on the number of messages that can be sent to the GCM server. However, this new Local notification method for Android
devices does not make use of the GCM server. Thereby, the number of messages sent via the GCM will be minimized. Furthermore, the Local notification method
does not send the messages via the payload, as it did in previous EMM versions. Thereby, this will minimize the MDM command loss.
</p>
<p>
<b>Tenant based configuration</b>
</p>
<p>
The tenant admin will be able to use the Configuration Manager wizard to setup the tenant's general, Android and iOS configuration details. Thereby, this
allows each tenant to customize their settings based on their requirements. For more information, see Tenant Based Settings.
</p>
<p>
<b>Ability to change password</b>
</p>
<p>
Previously, users were not allowed to change the default password that was assigned by WSO2 EMM. However, now users are allowed to change their password.
Thereby, users will be able to change their default password to a password of their choice.
</p>
<p>
<b>Removal of devices from WSO2 EMM</b>
</p>
<p>
Previously, administrators were not allowed to remove devices from WSO2 EMM after they were enrolled. However, now the administrators can use the
Enterprise Wipe feature to remove enrolled devices from WSO2 EMM. Thereby, this will enable the administrators to maintain WSO2 EMM efficiently.
</p>
<p>
<b>Improved API security</b>
</p>
<p>
The APIs that are exposed to the devices have been secured in WSO2 EMM using OAuth.
</p>
<p>
<b>Improved compliance monitoring</b>
</p>
<p>
When the system is clustered, then using the nTask Component, only one node will be allowed to perform the compliance monitoring that will dispatch
messages to the GCM or APNS.
</p>
<h2>Features</h2>
<ul>
<li>Self-service device enrollment and management with end-user MDM console</li>
<li>Policy-driven device management for security, data, and device features (Camera, Password Policy)</li>
<li>Deploy policies over-the-air</li>
<li>Compliance monitoring for reporting, alerting, and device deprovisioning</li>
<li>Role based permissions for device management</li>
<li>Provisioning and deprovisioning applications to enrolled devices</li>
<li>Blacklisting of applications for Android</li>
<li>Supports App management</li>
<li>App approval process through a lifecycle</li>
<li>Discover mobile apps through an Enterprise App Store</li>
<li>Self-provisioning of mobile apps to devices</li>
</ul>
<p>
<b>Bug Fixes / Improvements</b>
</p>
<p>
For the list of fixed issues, go to <a href="https://wso2.org/jira/issues/?filter=12592">WSO2 EMM 2.2.0 - Fixed Issues</a>.
</p>
<p>
<b>Known Issues</b>
</p>
<p>
For the list of known issues, go to <a href="https://wso2.org/jira/issues/?filter=12593">WSO2 EMM 2.2.0 - Known Issues</a>.
</p>
<p>
<b>Reporting Problems</b>
</p>
<p>
Issues can be reported using the <a href="https://wso2.org/jira/browse/EMM"> public JIRA</a>.
</p>
<p>
<b>Engaging with Community</b>
</p>
<p>
<b>Mailing Lists</b>
</p>
<p>
Join our mailing list and correspond with the developers directly.
</p>
<p>
Developer List : dev@wso2.org | Subscribe |<a href="http://wso2.org/mailarchive/dev/"> Mail Archive</a>
</p>
<p>
<b>Reporting Issues</b>
</p>
<p>
WSO2 encourages you to report issues, enhancements and feature requests for WSO2 EMM. Use the <a href="https://wso2.org/jira/browse/EMM">issue tracker</a>
for reporting issues.
</p>
<p>
<b>Discussion Forums</b>
</p>
<p>
We encourage to use <a href="http://stackoverflow.com/tags/wso2/">stackoverflow</a> to engage with developers as well as other users.
</p>
<p>
<b>Support</b>
</p>
<p>
We are committed to ensuring that your enterprise middleware deployment is completely supported from evaluation to production. Our unique approach ensures
that all support leverages our open development methodology and is provided by the very same engineers who build the technology.
</p>
<p>
For additional support information please refer to <a href="http://wso2.com/support/">http://wso2.com/support/</a>
</p>
<p>
We welcome your feedback and would love to hear your thoughts on this release of WSO2 EMM.
</p>
<p>
--WSO2 EMM Development Team--
</p>
</body>
</html>
|
wisekb-uima-ducc/webserver/root/opensources/DataTables-1.10.1/examples/styling/cell-border.html
|
hyokun31/wisekb-management-platform
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="shortcut icon" type="image/ico" href="http://www.datatables.net/favicon.ico">
<meta name="viewport" content="initial-scale=1.0, maximum-scale=2.0">
<title>DataTables example - Base style - cell borders</title>
<link rel="stylesheet" type="text/css" href="../../media/css/jquery.dataTables.css">
<link rel="stylesheet" type="text/css" href="../resources/syntax/shCore.css">
<link rel="stylesheet" type="text/css" href="../resources/demo.css">
<style type="text/css" class="init">
</style>
<script type="text/javascript" language="javascript" src="../../media/js/jquery.js"></script>
<script type="text/javascript" language="javascript" src="../../media/js/jquery.dataTables.js"></script>
<script type="text/javascript" language="javascript" src="../resources/syntax/shCore.js"></script>
<script type="text/javascript" language="javascript" src="../resources/demo.js"></script>
<script type="text/javascript" language="javascript" class="init">
$(document).ready(function() {
$('#example').dataTable();
} );
</script>
</head>
<body class="dt-example">
<div class="container">
<section>
<h1>DataTables example <span>Base style - cell borders</span></h1>
<div class="info">
<p>This example shows DataTables with just the <code>cell-border</code> class specified, giving a
strong delineation between individual cells.</p>
</div>
<table id="example" class="cell-border" cellspacing="0" width="100%">
<thead>
<tr>
<th>Name</th>
<th>Position</th>
<th>Office</th>
<th>Age</th>
<th>Start date</th>
<th>Salary</th>
</tr>
</thead>
<tfoot>
<tr>
<th>Name</th>
<th>Position</th>
<th>Office</th>
<th>Age</th>
<th>Start date</th>
<th>Salary</th>
</tr>
</tfoot>
<tbody>
<tr>
<td>Tiger Nixon</td>
<td>System Architect</td>
<td>Edinburgh</td>
<td>61</td>
<td>2011/04/25</td>
<td>$320,800</td>
</tr>
<tr>
<td>Garrett Winters</td>
<td>Accountant</td>
<td>Tokyo</td>
<td>63</td>
<td>2011/07/25</td>
<td>$170,750</td>
</tr>
<tr>
<td>Ashton Cox</td>
<td>Junior Technical Author</td>
<td>San Francisco</td>
<td>66</td>
<td>2009/01/12</td>
<td>$86,000</td>
</tr>
<tr>
<td>Cedric Kelly</td>
<td>Senior Javascript Developer</td>
<td>Edinburgh</td>
<td>22</td>
<td>2012/03/29</td>
<td>$433,060</td>
</tr>
<tr>
<td>Airi Satou</td>
<td>Accountant</td>
<td>Tokyo</td>
<td>33</td>
<td>2008/11/28</td>
<td>$162,700</td>
</tr>
<tr>
<td>Brielle Williamson</td>
<td>Integration Specialist</td>
<td>New York</td>
<td>61</td>
<td>2012/12/02</td>
<td>$372,000</td>
</tr>
<tr>
<td>Herrod Chandler</td>
<td>Sales Assistant</td>
<td>San Francisco</td>
<td>59</td>
<td>2012/08/06</td>
<td>$137,500</td>
</tr>
<tr>
<td>Rhona Davidson</td>
<td>Integration Specialist</td>
<td>Tokyo</td>
<td>55</td>
<td>2010/10/14</td>
<td>$327,900</td>
</tr>
<tr>
<td>Colleen Hurst</td>
<td>Javascript Developer</td>
<td>San Francisco</td>
<td>39</td>
<td>2009/09/15</td>
<td>$205,500</td>
</tr>
<tr>
<td>Sonya Frost</td>
<td>Software Engineer</td>
<td>Edinburgh</td>
<td>23</td>
<td>2008/12/13</td>
<td>$103,600</td>
</tr>
<tr>
<td>Jena Gaines</td>
<td>Office Manager</td>
<td>London</td>
<td>30</td>
<td>2008/12/19</td>
<td>$90,560</td>
</tr>
<tr>
<td>Quinn Flynn</td>
<td>Support Lead</td>
<td>Edinburgh</td>
<td>22</td>
<td>2013/03/03</td>
<td>$342,000</td>
</tr>
<tr>
<td>Charde Marshall</td>
<td>Regional Director</td>
<td>San Francisco</td>
<td>36</td>
<td>2008/10/16</td>
<td>$470,600</td>
</tr>
<tr>
<td>Haley Kennedy</td>
<td>Senior Marketing Designer</td>
<td>London</td>
<td>43</td>
<td>2012/12/18</td>
<td>$313,500</td>
</tr>
<tr>
<td>Tatyana Fitzpatrick</td>
<td>Regional Director</td>
<td>London</td>
<td>19</td>
<td>2010/03/17</td>
<td>$385,750</td>
</tr>
<tr>
<td>Michael Silva</td>
<td>Marketing Designer</td>
<td>London</td>
<td>66</td>
<td>2012/11/27</td>
<td>$198,500</td>
</tr>
<tr>
<td>Paul Byrd</td>
<td>Chief Financial Officer (CFO)</td>
<td>New York</td>
<td>64</td>
<td>2010/06/09</td>
<td>$725,000</td>
</tr>
<tr>
<td>Gloria Little</td>
<td>Systems Administrator</td>
<td>New York</td>
<td>59</td>
<td>2009/04/10</td>
<td>$237,500</td>
</tr>
<tr>
<td>Bradley Greer</td>
<td>Software Engineer</td>
<td>London</td>
<td>41</td>
<td>2012/10/13</td>
<td>$132,000</td>
</tr>
<tr>
<td>Dai Rios</td>
<td>Personnel Lead</td>
<td>Edinburgh</td>
<td>35</td>
<td>2012/09/26</td>
<td>$217,500</td>
</tr>
<tr>
<td>Jenette Caldwell</td>
<td>Development Lead</td>
<td>New York</td>
<td>30</td>
<td>2011/09/03</td>
<td>$345,000</td>
</tr>
<tr>
<td>Yuri Berry</td>
<td>Chief Marketing Officer (CMO)</td>
<td>New York</td>
<td>40</td>
<td>2009/06/25</td>
<td>$675,000</td>
</tr>
<tr>
<td>Caesar Vance</td>
<td>Pre-Sales Support</td>
<td>New York</td>
<td>21</td>
<td>2011/12/12</td>
<td>$106,450</td>
</tr>
<tr>
<td>Doris Wilder</td>
<td>Sales Assistant</td>
<td>Sidney</td>
<td>23</td>
<td>2010/09/20</td>
<td>$85,600</td>
</tr>
<tr>
<td>Angelica Ramos</td>
<td>Chief Executive Officer (CEO)</td>
<td>London</td>
<td>47</td>
<td>2009/10/09</td>
<td>$1,200,000</td>
</tr>
<tr>
<td>Gavin Joyce</td>
<td>Developer</td>
<td>Edinburgh</td>
<td>42</td>
<td>2010/12/22</td>
<td>$92,575</td>
</tr>
<tr>
<td>Jennifer Chang</td>
<td>Regional Director</td>
<td>Singapore</td>
<td>28</td>
<td>2010/11/14</td>
<td>$357,650</td>
</tr>
<tr>
<td>Brenden Wagner</td>
<td>Software Engineer</td>
<td>San Francisco</td>
<td>28</td>
<td>2011/06/07</td>
<td>$206,850</td>
</tr>
<tr>
<td>Fiona Green</td>
<td>Chief Operating Officer (COO)</td>
<td>San Francisco</td>
<td>48</td>
<td>2010/03/11</td>
<td>$850,000</td>
</tr>
<tr>
<td>Shou Itou</td>
<td>Regional Marketing</td>
<td>Tokyo</td>
<td>20</td>
<td>2011/08/14</td>
<td>$163,000</td>
</tr>
<tr>
<td>Michelle House</td>
<td>Integration Specialist</td>
<td>Sidney</td>
<td>37</td>
<td>2011/06/02</td>
<td>$95,400</td>
</tr>
<tr>
<td>Suki Burks</td>
<td>Developer</td>
<td>London</td>
<td>53</td>
<td>2009/10/22</td>
<td>$114,500</td>
</tr>
<tr>
<td>Prescott Bartlett</td>
<td>Technical Author</td>
<td>London</td>
<td>27</td>
<td>2011/05/07</td>
<td>$145,000</td>
</tr>
<tr>
<td>Gavin Cortez</td>
<td>Team Leader</td>
<td>San Francisco</td>
<td>22</td>
<td>2008/10/26</td>
<td>$235,500</td>
</tr>
<tr>
<td>Martena Mccray</td>
<td>Post-Sales support</td>
<td>Edinburgh</td>
<td>46</td>
<td>2011/03/09</td>
<td>$324,050</td>
</tr>
<tr>
<td>Unity Butler</td>
<td>Marketing Designer</td>
<td>San Francisco</td>
<td>47</td>
<td>2009/12/09</td>
<td>$85,675</td>
</tr>
<tr>
<td>Howard Hatfield</td>
<td>Office Manager</td>
<td>San Francisco</td>
<td>51</td>
<td>2008/12/16</td>
<td>$164,500</td>
</tr>
<tr>
<td>Hope Fuentes</td>
<td>Secretary</td>
<td>San Francisco</td>
<td>41</td>
<td>2010/02/12</td>
<td>$109,850</td>
</tr>
<tr>
<td>Vivian Harrell</td>
<td>Financial Controller</td>
<td>San Francisco</td>
<td>62</td>
<td>2009/02/14</td>
<td>$452,500</td>
</tr>
<tr>
<td>Timothy Mooney</td>
<td>Office Manager</td>
<td>London</td>
<td>37</td>
<td>2008/12/11</td>
<td>$136,200</td>
</tr>
<tr>
<td>Jackson Bradshaw</td>
<td>Director</td>
<td>New York</td>
<td>65</td>
<td>2008/09/26</td>
<td>$645,750</td>
</tr>
<tr>
<td>Olivia Liang</td>
<td>Support Engineer</td>
<td>Singapore</td>
<td>64</td>
<td>2011/02/03</td>
<td>$234,500</td>
</tr>
<tr>
<td>Bruno Nash</td>
<td>Software Engineer</td>
<td>London</td>
<td>38</td>
<td>2011/05/03</td>
<td>$163,500</td>
</tr>
<tr>
<td>Sakura Yamamoto</td>
<td>Support Engineer</td>
<td>Tokyo</td>
<td>37</td>
<td>2009/08/19</td>
<td>$139,575</td>
</tr>
<tr>
<td>Thor Walton</td>
<td>Developer</td>
<td>New York</td>
<td>61</td>
<td>2013/08/11</td>
<td>$98,540</td>
</tr>
<tr>
<td>Finn Camacho</td>
<td>Support Engineer</td>
<td>San Francisco</td>
<td>47</td>
<td>2009/07/07</td>
<td>$87,500</td>
</tr>
<tr>
<td>Serge Baldwin</td>
<td>Data Coordinator</td>
<td>Singapore</td>
<td>64</td>
<td>2012/04/09</td>
<td>$138,575</td>
</tr>
<tr>
<td>Zenaida Frank</td>
<td>Software Engineer</td>
<td>New York</td>
<td>63</td>
<td>2010/01/04</td>
<td>$125,250</td>
</tr>
<tr>
<td>Zorita Serrano</td>
<td>Software Engineer</td>
<td>San Francisco</td>
<td>56</td>
<td>2012/06/01</td>
<td>$115,000</td>
</tr>
<tr>
<td>Jennifer Acosta</td>
<td>Junior Javascript Developer</td>
<td>Edinburgh</td>
<td>43</td>
<td>2013/02/01</td>
<td>$75,650</td>
</tr>
<tr>
<td>Cara Stevens</td>
<td>Sales Assistant</td>
<td>New York</td>
<td>46</td>
<td>2011/12/06</td>
<td>$145,600</td>
</tr>
<tr>
<td>Hermione Butler</td>
<td>Regional Director</td>
<td>London</td>
<td>47</td>
<td>2011/03/21</td>
<td>$356,250</td>
</tr>
<tr>
<td>Lael Greer</td>
<td>Systems Administrator</td>
<td>London</td>
<td>21</td>
<td>2009/02/27</td>
<td>$103,500</td>
</tr>
<tr>
<td>Jonas Alexander</td>
<td>Developer</td>
<td>San Francisco</td>
<td>30</td>
<td>2010/07/14</td>
<td>$86,500</td>
</tr>
<tr>
<td>Shad Decker</td>
<td>Regional Director</td>
<td>Edinburgh</td>
<td>51</td>
<td>2008/11/13</td>
<td>$183,000</td>
</tr>
<tr>
<td>Michael Bruce</td>
<td>Javascript Developer</td>
<td>Singapore</td>
<td>29</td>
<td>2011/06/27</td>
<td>$183,000</td>
</tr>
<tr>
<td>Donna Snider</td>
<td>Customer Support</td>
<td>New York</td>
<td>27</td>
<td>2011/01/25</td>
<td>$112,000</td>
</tr>
</tbody>
</table>
<ul class="tabs">
<li class="active">Javascript</li>
<li>HTML</li>
<li>CSS</li>
<li>Ajax</li>
<li>Server-side script</li>
</ul>
<div class="tabs">
<div class="js">
<p>The Javascript shown below is used to initialise the table shown in this
example:</p><code class="multiline brush: js;">$(document).ready(function() {
$('#example').dataTable();
} );</code>
<p>In addition to the above code, the following Javascript library files are loaded for use in this
example:</p>
<ul>
<li><a href="../../media/js/jquery.js">../../media/js/jquery.js</a></li>
<li><a href="../../media/js/jquery.dataTables.js">../../media/js/jquery.dataTables.js</a></li>
</ul>
</div>
<div class="table">
<p>The HTML shown below is the raw HTML table element, before it has been enhanced by
DataTables:</p>
</div>
<div class="css">
<div>
<p>This example uses a little bit of additional CSS beyond what is loaded from the library
files (below), in order to correctly display the table. The additional CSS used is shown
below:</p><code class="multiline brush: js;"></code>
</div>
<p>The following CSS library files are loaded for use in this example to provide the styling of the
table:</p>
<ul>
<li><a href=
"../../media/css/jquery.dataTables.css">../../media/css/jquery.dataTables.css</a></li>
</ul>
</div>
<div class="ajax">
<p>This table loads data by Ajax. The latest data that has been loaded is shown below. This data
will update automatically as any additional data is loaded.</p>
</div>
<div class="php">
<p>The script used to perform the server-side processing for this table is shown below. Please note
that this is just an example script using PHP. Server-side processing scripts can be written in any
language, using <a href="//datatables.net/manual/server-side">the protocol described in the
DataTables documentation</a>.</p>
</div>
</div>
</section>
</div>
<section>
<div class="footer">
<div class="gradient"></div>
<div class="liner">
<h2>Other examples</h2>
<div class="toc">
<div class="toc-group">
<h3><a href="../basic_init/index.html">Basic initialisation</a></h3>
<ul class="toc">
<li><a href="../basic_init/zero_configuration.html">Zero configuration</a></li>
<li><a href="../basic_init/filter_only.html">Feature enable / disable</a></li>
<li><a href="../basic_init/table_sorting.html">Default ordering (sorting)</a></li>
<li><a href="../basic_init/multi_col_sort.html">Multi-column ordering</a></li>
<li><a href="../basic_init/multiple_tables.html">Multiple tables</a></li>
<li><a href="../basic_init/hidden_columns.html">Hidden columns</a></li>
<li><a href="../basic_init/complex_header.html">Complex headers (rowspan and
colspan)</a></li>
<li><a href="../basic_init/dom.html">DOM positioning</a></li>
<li><a href="../basic_init/flexible_width.html">Flexible table width</a></li>
<li><a href="../basic_init/state_save.html">State saving</a></li>
<li><a href="../basic_init/alt_pagination.html">Alternative pagination</a></li>
<li><a href="../basic_init/scroll_y.html">Scroll - vertical</a></li>
<li><a href="../basic_init/scroll_x.html">Scroll - horizontal</a></li>
<li><a href="../basic_init/scroll_xy.html">Scroll - horizontal and vertical</a></li>
<li><a href="../basic_init/scroll_y_theme.html">Scroll - vertical with jQuery UI
ThemeRoller</a></li>
<li><a href="../basic_init/comma-decimal.html">Language - Comma decimal place</a></li>
<li><a href="../basic_init/language.html">Language options</a></li>
</ul>
</div>
<div class="toc-group">
<h3><a href="../advanced_init/index.html">Advanced initialisation</a></h3>
<ul class="toc">
<li><a href="../advanced_init/events_live.html">DOM / jQuery events</a></li>
<li><a href="../advanced_init/dt_events.html">DataTables events</a></li>
<li><a href="../advanced_init/column_render.html">Column rendering</a></li>
<li><a href="../advanced_init/length_menu.html">Page length options</a></li>
<li><a href="../advanced_init/dom_multiple_elements.html">Multiple table control
elements</a></li>
<li><a href="../advanced_init/complex_header.html">Complex headers (rowspan /
colspan)</a></li>
<li><a href="../advanced_init/html5-data-attributes.html">HTML5 data-* attributes</a></li>
<li><a href="../advanced_init/language_file.html">Language file</a></li>
<li><a href="../advanced_init/defaults.html">Setting defaults</a></li>
<li><a href="../advanced_init/row_callback.html">Row created callback</a></li>
<li><a href="../advanced_init/row_grouping.html">Row grouping</a></li>
<li><a href="../advanced_init/footer_callback.html">Footer callback</a></li>
<li><a href="../advanced_init/dom_toolbar.html">Custom toolbar elements</a></li>
<li><a href="../advanced_init/sort_direction_control.html">Order direction sequence
control</a></li>
</ul>
</div>
<div class="toc-group">
<h3><a href="./index.html">Styling</a></h3>
<ul class="toc active">
<li><a href="./display.html">Base style</a></li>
<li><a href="./no-classes.html">Base style - no styling classes</a></li>
<li class="active"><a href="./cell-border.html">Base style - cell borders</a></li>
<li><a href="./compact.html">Base style - compact</a></li>
<li><a href="./hover.html">Base style - hover</a></li>
<li><a href="./order-column.html">Base style - order-column</a></li>
<li><a href="./row-border.html">Base style - row borders</a></li>
<li><a href="./stripe.html">Base style - stripe</a></li>
<li><a href="./bootstrap.html">Bootstrap</a></li>
<li><a href="./foundation.html">Foundation</a></li>
<li><a href="./jqueryUI.html">jQuery UI ThemeRoller</a></li>
</ul>
</div>
<div class="toc-group">
<h3><a href="../data_sources/index.html">Data sources</a></h3>
<ul class="toc">
<li><a href="../data_sources/dom.html">HTML (DOM) sourced data</a></li>
<li><a href="../data_sources/ajax.html">Ajax sourced data</a></li>
<li><a href="../data_sources/js_array.html">Javascript sourced data</a></li>
<li><a href="../data_sources/server_side.html">Server-side processing</a></li>
</ul>
</div>
<div class="toc-group">
<h3><a href="../api/index.html">API</a></h3>
<ul class="toc">
<li><a href="../api/add_row.html">Add rows</a></li>
<li><a href="../api/multi_filter.html">Individual column filtering (text inputs)</a></li>
<li><a href="../api/multi_filter_select.html">Individual column filtering (select
inputs)</a></li>
<li><a href="../api/highlight.html">Highlighting rows and columns</a></li>
<li><a href="../api/row_details.html">Child rows (show extra / detailed
information)</a></li>
<li><a href="../api/select_row.html">Row selection (multiple rows)</a></li>
<li><a href="../api/select_single_row.html">Row selection and deletion (single
row)</a></li>
<li><a href="../api/form.html">Form inputs</a></li>
<li><a href="../api/counter_columns.html">Index column</a></li>
<li><a href="../api/show_hide.html">Show / hide columns dynamically</a></li>
<li><a href="../api/api_in_init.html">Using API in callbacks</a></li>
<li><a href="../api/tabs_and_scrolling.html">Scrolling and jQuery UI tabs</a></li>
<li><a href="../api/regex.html">Filtering API (regular expressions)</a></li>
</ul>
</div>
<div class="toc-group">
<h3><a href="../ajax/index.html">Ajax</a></h3>
<ul class="toc">
<li><a href="../ajax/simple.html">Ajax data source (arrays)</a></li>
<li><a href="../ajax/objects.html">Ajax data source (objects)</a></li>
<li><a href="../ajax/deep.html">Nested object data (objects)</a></li>
<li><a href="../ajax/objects_subarrays.html">Nested object data (arrays)</a></li>
<li><a href="../ajax/orthogonal-data.html">Orthogonal data</a></li>
<li><a href="../ajax/null_data_source.html">Generated content for a column</a></li>
<li><a href="../ajax/custom_data_property.html">Custom data source property</a></li>
<li><a href="../ajax/custom_data_flat.html">Flat array data source</a></li>
<li><a href="../ajax/defer_render.html">Deferred rendering for speed</a></li>
</ul>
</div>
<div class="toc-group">
<h3><a href="../server_side/index.html">Server-side</a></h3>
<ul class="toc">
<li><a href="../server_side/simple.html">Server-side processing</a></li>
<li><a href="../server_side/custom_vars.html">Custom HTTP variables</a></li>
<li><a href="../server_side/post.html">POST data</a></li>
<li><a href="../server_side/ids.html">Automatic addition of row ID attributes</a></li>
<li><a href="../server_side/object_data.html">Object data source</a></li>
<li><a href="../server_side/row_details.html">Row details</a></li>
<li><a href="../server_side/select_rows.html">Row selection</a></li>
<li><a href="../server_side/jsonp.html">JSONP data source for remote domains</a></li>
<li><a href="../server_side/defer_loading.html">Deferred loading of data</a></li>
<li><a href="../server_side/pipeline.html">Pipelining data to reduce Ajax calls for
paging</a></li>
</ul>
</div>
<div class="toc-group">
<h3><a href="../plug-ins/index.html">Plug-ins</a></h3>
<ul class="toc">
<li><a href="../plug-ins/api.html">API plug-in methods</a></li>
<li><a href="../plug-ins/sorting_auto.html">Ordering plug-ins (with type
detection)</a></li>
<li><a href="../plug-ins/sorting_manual.html">Ordering plug-ins (no type
detection)</a></li>
<li><a href="../plug-ins/range_filtering.html">Custom filtering - range search</a></li>
<li><a href="../plug-ins/dom_sort.html">Live DOM ordering</a></li>
</ul>
</div>
</div>
<div class="epilogue">
<p>Please refer to the <a href="http://www.datatables.net">DataTables documentation</a> for full
information about its API properties and methods.<br>
Additionally, there are a wide range of <a href="http://www.datatables.net/extras">extras</a> and
<a href="http://www.datatables.net/plug-ins">plug-ins</a> which extend the capabilities of
DataTables.</p>
<p class="copyright">DataTables designed and created by <a href=
"http://www.sprymedia.co.uk">SpryMedia Ltd</a> © 2007-2014<br>
DataTables is licensed under the <a href="http://www.datatables.net/mit">MIT license</a>.</p>
</div>
</div>
</div>
</section>
</body>
</html>
|
courses/examples/CMSIS/CMSIS/Documentation/RTOS/html/cmsis_os_h.html
|
LabAixBidouille/EmbeddedTeam
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<title>Header File Template: cmsis_os.h</title>
<title>CMSIS-RTOS: Header File Template: cmsis_os.h</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="cmsis.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<script type="text/javascript" src="printComponentTabs.js"></script>
<link href="navtree.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="resize.js"></script>
<script type="text/javascript" src="navtree.js"></script>
<script type="text/javascript">
$(document).ready(initResizable);
</script>
<link href="stylsheetf" 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: 46px;">
<td id="projectlogo"><img alt="Logo" src="CMSIS_Logo_Final.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">CMSIS-RTOS
 <span id="projectnumber">Version 1.02</span>
</div>
<div id="projectbrief">CMSIS-RTOS API: Generic RTOS interface for Cortex-M processor-based devices.</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<div id="CMSISnav" class="tabs1">
<ul class="tablist">
<script type="text/javascript">
<!--
writeComponentTabs.call(this);
//-->
</script>
</ul>
</div>
<!-- Generated by Doxygen 1.8.2 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li class="current"><a href="pages.html"><span>Usage and Description</span></a></li>
<li><a href="modules.html"><span>Reference</span></a></li>
</ul>
</div>
</div><!-- top -->
<div id="side-nav" class="ui-resizable side-nav-resizable">
<div id="nav-tree">
<div id="nav-tree-contents">
<div id="nav-sync" class="sync"></div>
</div>
</div>
<div id="splitbar" style="-moz-user-select:none;"
class="ui-resizable-handle">
</div>
</div>
<script type="text/javascript">
$(document).ready(function(){initNavTree('cmsis_os_h.html','');});
</script>
<div id="doc-content">
<div class="header">
<div class="headertitle">
<div class="title">Header File Template: <a class="el" href="cmsis__os_8h.html">cmsis_os.h</a> </div> </div>
</div><!--header-->
<div class="contents">
<div class="textblock"><p>The file <b><a class="el" href="cmsis__os_8h.html">cmsis_os.h</a></b> is a template header file for a CMSIS-RTOS compliant Real-Time Operating System (RTOS). Each RTOS that is compliant with CMSIS-RTOS shall provide a specific <b><a class="el" href="cmsis__os_8h.html">cmsis_os.h</a></b> header file that represents its implementation.</p>
<p>The file <a class="el" href="cmsis__os_8h.html">cmsis_os.h</a> contains:</p>
<ul>
<li>CMSIS-RTOS API function definitions</li>
<li>struct definitions for parameters and return types</li>
<li>status and priority values used by CMSIS-RTOS API functions</li>
<li>macros for defining threads and other kernel objects</li>
</ul>
<p><b>Name conventions and header file modifications</b></p>
<p>All definitions are prefixed with <b>os</b> to give an unique name space for CMSIS-RTOS functions. Definitions that are prefixed <b>os_</b> are not used in the application code but local to this header file. All definitions and functions that belong to a module are grouped and have a common prefix, i.e. <b>osThread</b>.</p>
<p>Definitions that are marked with <b>CAN BE CHANGED</b> can be adapted towards the needs of the actual CMSIS-RTOS implementation. These definitions can be specific to the underlying RTOS kernel.</p>
<p>Definitions that are marked with <b>MUST REMAIN UNCHANGED</b> cannot be altered. Otherwise the CMSIS-RTOS implementation is no longer compliant to the standard. Note that some functions are optional and need not to be provided by every CMSIS-RTOS implementation.</p>
<p><b>Function calls from interrupt service routines</b></p>
<p>The following CMSIS-RTOS functions can be called from threads and interrupt service routines (ISR):</p>
<ul>
<li><a class="el" href="group___c_m_s_i_s___r_t_o_s___signal_mgmt.html#ga3de2730654589d6c3559c4b9e2825553">osSignalSet</a></li>
<li><a class="el" href="group___c_m_s_i_s___r_t_o_s___semaphore_mgmt.html#gab108914997c49e14d8ff1ae0d1988ca0">osSemaphoreRelease</a></li>
<li><a class="el" href="group___c_m_s_i_s___r_t_o_s___pool_mgmt.html#gaa0b2994f1a866c19e0d11e6e0d44f543">osPoolAlloc</a>, <a class="el" href="group___c_m_s_i_s___r_t_o_s___pool_mgmt.html#ga9f129fcad4730fbd1048ad4fa262f36a">osPoolCAlloc</a>, <a class="el" href="group___c_m_s_i_s___r_t_o_s___pool_mgmt.html#ga4a861e9c469c9d0daf5721bf174f8e54">osPoolFree</a></li>
<li><a class="el" href="group___c_m_s_i_s___r_t_o_s___message.html#gac0dcf462fc92de8ffaba6cc004514a6d">osMessagePut</a>, <a class="el" href="group___c_m_s_i_s___r_t_o_s___message.html#ga6c6892b8f2296cca6becd57ca2d7e1ae">osMessageGet</a></li>
<li><a class="el" href="group___c_m_s_i_s___r_t_o_s___mail.html#gadf5ce811bd6a56e617e902a1db6c2194">osMailAlloc</a>, <a class="el" href="group___c_m_s_i_s___r_t_o_s___mail.html#ga8fde74f6fe5b9e88f75cc5eb8f2124fd">osMailCAlloc</a>, <a class="el" href="group___c_m_s_i_s___r_t_o_s___mail.html#gac6ad7e6e7d6c4a80e60da22c57a42ccd">osMailGet</a>, <a class="el" href="group___c_m_s_i_s___r_t_o_s___mail.html#ga485ef6f81854ebda8ffbce4832181e02">osMailPut</a>, <a class="el" href="group___c_m_s_i_s___r_t_o_s___mail.html#ga27c1060cf21393f96b4fd1ed1c0167cc">osMailFree</a></li>
</ul>
<p>Functions that cannot be called from an ISR are verifying the interrupt status and return in case that they are called from an ISR context the status code <b>osErrorISR</b>. In some implementations this condition might be caught using the HARD FAULT vector.</p>
<p>Some CMSIS-RTOS implementations support CMSIS-RTOS function calls from multiple ISR at the same time. If this is impossible, the CMSIS-RTOS rejects calls by nested ISR functions with the status code <b>osErrorISRRecursive</b>.</p>
<p><b>Define and reference object definitions</b></p>
<p>With <b>#define osObjectsExternal</b> objects are defined as external symbols. This allows to create a consistent header file that is used throughout a project as shown below:</p>
<p><em>Header File</em> </p>
<div class="fragment"><div class="line"><span class="preprocessor">#include <<a class="code" href="cmsis__os_8h.html">cmsis_os.h</a>></span> <span class="comment">// CMSIS RTOS header file</span></div>
<div class="line"></div>
<div class="line"><span class="comment">// Thread definition</span></div>
<div class="line"><span class="keyword">extern</span> <span class="keywordtype">void</span> thread_sample (<span class="keywordtype">void</span> <span class="keyword">const</span> *argument); <span class="comment">// function prototype</span></div>
<div class="line"><a class="code" href="group___c_m_s_i_s___r_t_o_s___thread_mgmt.html#gaee93d929beb350f16e5cc7fa602e229f" title="Create a Thread Definition with function, priority, and stack requirements.">osThreadDef</a> (thread_sample, <a class="code" href="group___c_m_s_i_s___r_t_o_s___thread_mgmt.html#ga7f2b42f1983b9107775ec2a1c69a849aa193b650117c209b4a203954542bcc3e6" title="priority: below normal">osPriorityBelowNormal</a>, 1, 100);</div>
<div class="line"></div>
<div class="line"><span class="comment">// Pool definition</span></div>
<div class="line"><a class="code" href="group___c_m_s_i_s___r_t_o_s___pool_mgmt.html#ga87b471d4fe2d5dbd0040708edd52771b" title="Define a Memory Pool.">osPoolDef</a>(MyPool, 10, <span class="keywordtype">long</span>);</div>
</div><!-- fragment --><p>This header file defines all objects when included in a C/C++ source file. When <b>#define osObjectsExternal</b> is present before the header file, the objects are defined as external symbols. A single consistent header file can therefore be used throughout the whole project.</p>
<p><em>Example</em> </p>
<div class="fragment"><div class="line"><span class="preprocessor">#include "osObjects.h"</span> <span class="comment">// Definition of the CMSIS-RTOS objects</span></div>
</div><!-- fragment --><div class="fragment"><div class="line"><span class="preprocessor">#define osObjectExternal // Objects will be defined as external symbols</span></div>
<div class="line"><span class="preprocessor">#include "osObjects.h" // Reference to the CMSIS-RTOS objects</span></div>
</div><!-- fragment --><p><b>Header file cmsis_os.h</b></p>
<div class="fragment"><div class="line"><span class="comment">/* ----------------------------------------------------------------------</span></div>
<div class="line"><span class="comment"> * $Date: 5. February 2013</span></div>
<div class="line"><span class="comment"> * $Revision: V1.02</span></div>
<div class="line"><span class="comment"> *</span></div>
<div class="line"><span class="comment"> * Project: CMSIS-RTOS API</span></div>
<div class="line"><span class="comment"> * Title: cmsis_os.h template header file</span></div>
<div class="line"><span class="comment"> *</span></div>
<div class="line"><span class="comment"> * Version 0.02</span></div>
<div class="line"><span class="comment"> * Initial Proposal Phase</span></div>
<div class="line"><span class="comment"> * Version 0.03</span></div>
<div class="line"><span class="comment"> * osKernelStart added, optional feature: main started as thread</span></div>
<div class="line"><span class="comment"> * osSemaphores have standard behavior</span></div>
<div class="line"><span class="comment"> * osTimerCreate does not start the timer, added osTimerStart</span></div>
<div class="line"><span class="comment"> * osThreadPass is renamed to osThreadYield</span></div>
<div class="line"><span class="comment"> * Version 1.01</span></div>
<div class="line"><span class="comment"> * Support for C++ interface</span></div>
<div class="line"><span class="comment"> * - const attribute removed from the osXxxxDef_t typedef's</span></div>
<div class="line"><span class="comment"> * - const attribute added to the osXxxxDef macros</span></div>
<div class="line"><span class="comment"> * Added: osTimerDelete, osMutexDelete, osSemaphoreDelete</span></div>
<div class="line"><span class="comment"> * Added: osKernelInitialize</span></div>
<div class="line"><span class="comment"> * Version 1.02</span></div>
<div class="line"><span class="comment"> * Control functions for short timeouts in microsecond resolution:</span></div>
<div class="line"><span class="comment"> * Added: osKernelSysTick, osKernelSysTickFrequency, osKernelSysTickMicroSec</span></div>
<div class="line"><span class="comment"> * Removed: osSignalGet </span></div>
<div class="line"><span class="comment"> *----------------------------------------------------------------------------</span></div>
<div class="line"><span class="comment"> *</span></div>
<div class="line"><span class="comment"> * Copyright (c) 2013 ARM LIMITED</span></div>
<div class="line"><span class="comment"> * All rights reserved.</span></div>
<div class="line"><span class="comment"> * Redistribution and use in source and binary forms, with or without</span></div>
<div class="line"><span class="comment"> * modification, are permitted provided that the following conditions are met:</span></div>
<div class="line"><span class="comment"> * - Redistributions of source code must retain the above copyright</span></div>
<div class="line"><span class="comment"> * notice, this list of conditions and the following disclaimer.</span></div>
<div class="line"><span class="comment"> * - Redistributions in binary form must reproduce the above copyright</span></div>
<div class="line"><span class="comment"> * notice, this list of conditions and the following disclaimer in the</span></div>
<div class="line"><span class="comment"> * documentation and/or other materials provided with the distribution.</span></div>
<div class="line"><span class="comment"> * - Neither the name of ARM nor the names of its contributors may be used</span></div>
<div class="line"><span class="comment"> * to endorse or promote products derived from this software without</span></div>
<div class="line"><span class="comment"> * specific prior written permission.</span></div>
<div class="line"><span class="comment"> *</span></div>
<div class="line"><span class="comment"> * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"</span></div>
<div class="line"><span class="comment"> * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE</span></div>
<div class="line"><span class="comment"> * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE</span></div>
<div class="line"><span class="comment"> * ARE DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDERS AND CONTRIBUTORS BE</span></div>
<div class="line"><span class="comment"> * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR</span></div>
<div class="line"><span class="comment"> * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF</span></div>
<div class="line"><span class="comment"> * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS</span></div>
<div class="line"><span class="comment"> * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN</span></div>
<div class="line"><span class="comment"> * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)</span></div>
<div class="line"><span class="comment"> * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE</span></div>
<div class="line"><span class="comment"> * POSSIBILITY OF SUCH DAMAGE.</span></div>
<div class="line"><span class="comment"> *---------------------------------------------------------------------------*/</span></div>
<div class="line"> </div>
<div class="line"> </div>
<div class="line"><span class="preprocessor">#ifndef _CMSIS_OS_H</span></div>
<div class="line"><span class="preprocessor"></span><span class="preprocessor">#define _CMSIS_OS_H</span></div>
<div class="line"><span class="preprocessor"></span> <span class="comment"></span></div>
<div class="line"><span class="comment">/// \note MUST REMAIN UNCHANGED: \b osCMSIS identifies the CMSIS-RTOS API version.</span></div>
<div class="line"><span class="comment"></span><span class="preprocessor">#define osCMSIS 0x10002 </span><span class="comment">///< API version (main [31:16] .sub [15:0])</span></div>
<div class="line"><span class="comment"></span> </div>
<div class="line"><span class="comment">/// \note CAN BE CHANGED: \b osCMSIS_KERNEL identifies the underlying RTOS kernel and version number.</span></div>
<div class="line"><span class="comment"></span><span class="preprocessor">#define osCMSIS_KERNEL 0x10000 </span><span class="comment">///< RTOS identification and version (main [31:16] .sub [15:0])</span></div>
<div class="line"><span class="comment"></span> </div>
<div class="line"><span class="comment">/// \note MUST REMAIN UNCHANGED: \b osKernelSystemId shall be consistent in every CMSIS-RTOS.</span></div>
<div class="line"><span class="comment"></span><span class="preprocessor">#define osKernelSystemId "KERNEL V1.00" </span><span class="comment">///< RTOS identification string</span></div>
<div class="line"><span class="comment"></span> </div>
<div class="line"><span class="comment">/// \note MUST REMAIN UNCHANGED: \b osFeature_xxx shall be consistent in every CMSIS-RTOS.</span></div>
<div class="line"><span class="comment"></span><span class="preprocessor">#define osFeature_MainThread 1 </span><span class="comment">///< main thread 1=main can be thread, 0=not available</span></div>
<div class="line"><span class="comment"></span>#define osFeature_Pool 1 <span class="comment">///< Memory Pools: 1=available, 0=not available</span></div>
<div class="line"><span class="comment"></span>#define osFeature_MailQ 1 <span class="comment">///< Mail Queues: 1=available, 0=not available</span></div>
<div class="line"><span class="comment"></span>#define osFeature_MessageQ 1 <span class="comment">///< Message Queues: 1=available, 0=not available</span></div>
<div class="line"><span class="comment"></span>#define osFeature_Signals 8 <span class="comment">///< maximum number of Signal Flags available per thread</span></div>
<div class="line"><span class="comment"></span>#define osFeature_Semaphore 30 <span class="comment">///< maximum count for \ref osSemaphoreCreate function</span></div>
<div class="line"><span class="comment"></span>#define osFeature_Wait 1 <span class="comment">///< osWait function: 1=available, 0=not available</span></div>
<div class="line"><span class="comment"></span>#define osFeature_SysTick 1 <span class="comment">///< osKernelSysTick functions: 1=available, 0=not available</span></div>
<div class="line"><span class="comment"></span> </div>
<div class="line"><span class="preprocessor">#include <stdint.h></span></div>
<div class="line"><span class="preprocessor">#include <stddef.h></span></div>
<div class="line"> </div>
<div class="line"><span class="preprocessor">#ifdef __cplusplus</span></div>
<div class="line"><span class="preprocessor"></span><span class="keyword">extern</span> <span class="stringliteral">"C"</span></div>
<div class="line">{</div>
<div class="line"><span class="preprocessor">#endif</span></div>
<div class="line"><span class="preprocessor"></span> </div>
<div class="line"> </div>
<div class="line"><span class="comment">// ==== Enumeration, structures, defines ====</span></div>
<div class="line"> <span class="comment"></span></div>
<div class="line"><span class="comment">/// Priority used for thread control.</span></div>
<div class="line"><span class="comment">/// \note MUST REMAIN UNCHANGED: \b osPriority shall be consistent in every CMSIS-RTOS.</span></div>
<div class="line"><span class="comment"></span><span class="keyword">typedef</span> <span class="keyword">enum</span> {</div>
<div class="line"> <a class="code" href="group___c_m_s_i_s___r_t_o_s___thread_mgmt.html#ga7f2b42f1983b9107775ec2a1c69a849aa549e79a43ff4f8b2b31afb613f5caa81" title="priority: idle (lowest)">osPriorityIdle</a> = -3, <span class="comment">///< priority: idle (lowest)</span></div>
<div class="line"><span class="comment"></span> <a class="code" href="group___c_m_s_i_s___r_t_o_s___thread_mgmt.html#ga7f2b42f1983b9107775ec2a1c69a849aa61cb822239ac8f66dfbdc7291598a3d4" title="priority: low">osPriorityLow</a> = -2, <span class="comment">///< priority: low</span></div>
<div class="line"><span class="comment"></span> <a class="code" href="group___c_m_s_i_s___r_t_o_s___thread_mgmt.html#ga7f2b42f1983b9107775ec2a1c69a849aa193b650117c209b4a203954542bcc3e6" title="priority: below normal">osPriorityBelowNormal</a> = -1, <span class="comment">///< priority: below normal</span></div>
<div class="line"><span class="comment"></span> <a class="code" href="group___c_m_s_i_s___r_t_o_s___thread_mgmt.html#ga7f2b42f1983b9107775ec2a1c69a849aa45a2895ad30c79fb97de18cac7cc19f1" title="priority: normal (default)">osPriorityNormal</a> = 0, <span class="comment">///< priority: normal (default)</span></div>
<div class="line"><span class="comment"></span> <a class="code" href="group___c_m_s_i_s___r_t_o_s___thread_mgmt.html#ga7f2b42f1983b9107775ec2a1c69a849aa17b36cd9cd38652c2bc6d4803990674b" title="priority: above normal">osPriorityAboveNormal</a> = +1, <span class="comment">///< priority: above normal</span></div>
<div class="line"><span class="comment"></span> <a class="code" href="group___c_m_s_i_s___r_t_o_s___thread_mgmt.html#ga7f2b42f1983b9107775ec2a1c69a849aa914433934143a9ba767e59577c56e6c2" title="priority: high">osPriorityHigh</a> = +2, <span class="comment">///< priority: high</span></div>
<div class="line"><span class="comment"></span> <a class="code" href="group___c_m_s_i_s___r_t_o_s___thread_mgmt.html#ga7f2b42f1983b9107775ec2a1c69a849aa1485dec3702434a1ec3cb74c7a17a4af" title="priority: realtime (highest)">osPriorityRealtime</a> = +3, <span class="comment">///< priority: realtime (highest)</span></div>
<div class="line"><span class="comment"></span> <a class="code" href="group___c_m_s_i_s___r_t_o_s___thread_mgmt.html#ga7f2b42f1983b9107775ec2a1c69a849aae35f5e2f9c64ad346822521b643bdea4" title="system cannot determine priority or thread has illegal priority">osPriorityError</a> = 0x84 <span class="comment">///< system cannot determine priority or thread has illegal priority</span></div>
<div class="line"><span class="comment"></span>} <a class="code" href="group___c_m_s_i_s___r_t_o_s___thread_mgmt.html#ga7f2b42f1983b9107775ec2a1c69a849a">osPriority</a>;</div>
<div class="line"> <span class="comment"></span></div>
<div class="line"><span class="comment">/// Timeout value.</span></div>
<div class="line"><span class="comment">/// \note MUST REMAIN UNCHANGED: \b osWaitForever shall be consistent in every CMSIS-RTOS.</span></div>
<div class="line"><span class="comment"></span><span class="preprocessor">#define osWaitForever 0xFFFFFFFF </span><span class="comment">///< wait forever timeout value</span></div>
<div class="line"><span class="comment"></span> </div>
<div class="line"><span class="comment">/// Status code values returned by CMSIS-RTOS functions.</span></div>
<div class="line"><span class="comment"></span><span class="comment">/// \note MUST REMAIN UNCHANGED: \b osStatus shall be consistent in every CMSIS-RTOS.</span></div>
<div class="line"><span class="comment"></span><span class="keyword">typedef</span> <span class="keyword">enum</span> {</div>
<div class="line"> <a class="code" href="group___c_m_s_i_s___r_t_o_s___status.html#gae2e091fefc4c767117727bd5aba4d99ea9e1c9e2550bb4de8969a935acffc968f" title="function completed; no error or event occurred.">osOK</a> = 0, <span class="comment">///< function completed; no error or event occurred.</span></div>
<div class="line"><span class="comment"></span> <a class="code" href="group___c_m_s_i_s___r_t_o_s___status.html#gae2e091fefc4c767117727bd5aba4d99ea5df7e9643aa8a2f5f3a6f6ec59758518" title="function completed; signal event occurred.">osEventSignal</a> = 0x08, <span class="comment">///< function completed; signal event occurred.</span></div>
<div class="line"><span class="comment"></span> <a class="code" href="group___c_m_s_i_s___r_t_o_s___status.html#gae2e091fefc4c767117727bd5aba4d99ead604f3673359dd4ac643b16dc5a2c342" title="function completed; message event occurred.">osEventMessage</a> = 0x10, <span class="comment">///< function completed; message event occurred.</span></div>
<div class="line"><span class="comment"></span> <a class="code" href="group___c_m_s_i_s___r_t_o_s___status.html#gae2e091fefc4c767117727bd5aba4d99ea15b12e42b42b53f35fb8a2724ad02926" title="function completed; mail event occurred.">osEventMail</a> = 0x20, <span class="comment">///< function completed; mail event occurred.</span></div>
<div class="line"><span class="comment"></span> <a class="code" href="group___c_m_s_i_s___r_t_o_s___status.html#gae2e091fefc4c767117727bd5aba4d99ea78f477732375c0e1fca814e369618177" title="function completed; timeout occurred.">osEventTimeout</a> = 0x40, <span class="comment">///< function completed; timeout occurred.</span></div>
<div class="line"><span class="comment"></span> <a class="code" href="group___c_m_s_i_s___r_t_o_s___status.html#gae2e091fefc4c767117727bd5aba4d99eac24adca6a5d072c9f01c32178ba0d109" title="parameter error: a mandatory parameter was missing or specified an incorrect object.">osErrorParameter</a> = 0x80, <span class="comment">///< parameter error: a mandatory parameter was missing or specified an incorrect object.</span></div>
<div class="line"><span class="comment"></span> <a class="code" href="group___c_m_s_i_s___r_t_o_s___status.html#gae2e091fefc4c767117727bd5aba4d99ea8fc5801e8b0482bdf22ad63a77f0155d" title="resource not available: a specified resource was not available.">osErrorResource</a> = 0x81, <span class="comment">///< resource not available: a specified resource was not available.</span></div>
<div class="line"><span class="comment"></span> <a class="code" href="group___c_m_s_i_s___r_t_o_s___status.html#gae2e091fefc4c767117727bd5aba4d99ea314d24a49003f09459035db0dd7c9467" title="resource not available within given time: a specified resource was not available within the timeout p...">osErrorTimeoutResource</a> = 0xC1, <span class="comment">///< resource not available within given time: a specified resource was not available within the timeout period.</span></div>
<div class="line"><span class="comment"></span> <a class="code" href="group___c_m_s_i_s___r_t_o_s___status.html#gae2e091fefc4c767117727bd5aba4d99ea21635bdc492d3094fe83027fa4a30e2f" title="not allowed in ISR context: the function cannot be called from interrupt service routines.">osErrorISR</a> = 0x82, <span class="comment">///< not allowed in ISR context: the function cannot be called from interrupt service routines.</span></div>
<div class="line"><span class="comment"></span> <a class="code" href="group___c_m_s_i_s___r_t_o_s___status.html#gae2e091fefc4c767117727bd5aba4d99eaf6552310a817452aedfcd453f2805d65" title="function called multiple times from ISR with same object.">osErrorISRRecursive</a> = 0x83, <span class="comment">///< function called multiple times from ISR with same object.</span></div>
<div class="line"><span class="comment"></span> <a class="code" href="group___c_m_s_i_s___r_t_o_s___status.html#gae2e091fefc4c767117727bd5aba4d99eab7dda0ef504817659334cbfd650ae56f" title="system cannot determine priority or thread has illegal priority.">osErrorPriority</a> = 0x84, <span class="comment">///< system cannot determine priority or thread has illegal priority.</span></div>
<div class="line"><span class="comment"></span> <a class="code" href="group___c_m_s_i_s___r_t_o_s___status.html#gae2e091fefc4c767117727bd5aba4d99eaf1fac0240218e51eb30a13da2f8aae81" title="system is out of memory: it was impossible to allocate or reserve memory for the operation.">osErrorNoMemory</a> = 0x85, <span class="comment">///< system is out of memory: it was impossible to allocate or reserve memory for the operation.</span></div>
<div class="line"><span class="comment"></span> <a class="code" href="group___c_m_s_i_s___r_t_o_s___status.html#gae2e091fefc4c767117727bd5aba4d99ea4672c8a0c0f6bb1d7981da4602e8e9ee" title="value of a parameter is out of range.">osErrorValue</a> = 0x86, <span class="comment">///< value of a parameter is out of range.</span></div>
<div class="line"><span class="comment"></span> <a class="code" href="group___c_m_s_i_s___r_t_o_s___status.html#gae2e091fefc4c767117727bd5aba4d99ea5fde24ff588ec5ab9cb8314bade26fbc" title="unspecified RTOS error: run-time error but no other error message fits.">osErrorOS</a> = 0xFF, <span class="comment">///< unspecified RTOS error: run-time error but no other error message fits.</span></div>
<div class="line"><span class="comment"></span> <a class="code" href="group___c_m_s_i_s___r_t_o_s___status.html#gae2e091fefc4c767117727bd5aba4d99eac7a77f5fe18a15a357790c36a4aca1b1" title="prevent from enum down-size compiler optimization.">os_status_reserved</a> = 0x7FFFFFFF <span class="comment">///< prevent from enum down-size compiler optimization.</span></div>
<div class="line"><span class="comment"></span>} <a class="code" href="group___c_m_s_i_s___r_t_o_s___status.html#gae2e091fefc4c767117727bd5aba4d99e">osStatus</a>;</div>
<div class="line"> </div>
<div class="line"> <span class="comment"></span></div>
<div class="line"><span class="comment">/// Timer type value for the timer definition.</span></div>
<div class="line"><span class="comment">/// \note MUST REMAIN UNCHANGED: \b os_timer_type shall be consistent in every CMSIS-RTOS.</span></div>
<div class="line"><span class="comment"></span><span class="keyword">typedef</span> <span class="keyword">enum</span> {</div>
<div class="line"> <a class="code" href="group___c_m_s_i_s___r_t_o_s___timer_mgmt.html#gadac860eb9e1b4b0619271e6595ed83d9ad21712f8df5f97069c82dc9eec37b951" title="one-shot timer">osTimerOnce</a> = 0, <span class="comment">///< one-shot timer</span></div>
<div class="line"><span class="comment"></span> <a class="code" href="group___c_m_s_i_s___r_t_o_s___timer_mgmt.html#gadac860eb9e1b4b0619271e6595ed83d9ab9c91f9699162edb09bb7c90c11c8788" title="repeating timer">osTimerPeriodic</a> = 1 <span class="comment">///< repeating timer</span></div>
<div class="line"><span class="comment"></span>} <a class="code" href="group___c_m_s_i_s___r_t_o_s___timer_mgmt.html#gadac860eb9e1b4b0619271e6595ed83d9">os_timer_type</a>;</div>
<div class="line"> <span class="comment"></span></div>
<div class="line"><span class="comment">/// Entry point of a thread.</span></div>
<div class="line"><span class="comment">/// \note MUST REMAIN UNCHANGED: \b os_pthread shall be consistent in every CMSIS-RTOS.</span></div>
<div class="line"><span class="comment"></span><span class="keyword">typedef</span> void (*<a class="code" href="cmsis__os_8h.html#aee631e5ea1b700fc35695cc7bc574cf7" title="Entry point of a thread.">os_pthread</a>) (<span class="keywordtype">void</span> <span class="keyword">const</span> *argument);</div>
<div class="line"> <span class="comment"></span></div>
<div class="line"><span class="comment">/// Entry point of a timer call back function.</span></div>
<div class="line"><span class="comment">/// \note MUST REMAIN UNCHANGED: \b os_ptimer shall be consistent in every CMSIS-RTOS.</span></div>
<div class="line"><span class="comment"></span><span class="keyword">typedef</span> void (*<a class="code" href="cmsis__os_8h.html#aa2d85e49bde9f6951ff3545cd323f065" title="Entry point of a timer call back function.">os_ptimer</a>) (<span class="keywordtype">void</span> <span class="keyword">const</span> *argument);</div>
<div class="line"> </div>
<div class="line"><span class="comment">// >>> the following data type definitions may shall adapted towards a specific RTOS</span></div>
<div class="line"> <span class="comment"></span></div>
<div class="line"><span class="comment">/// Thread ID identifies the thread (pointer to a thread control block).</span></div>
<div class="line"><span class="comment">/// \note CAN BE CHANGED: \b os_thread_cb is implementation specific in every CMSIS-RTOS.</span></div>
<div class="line"><span class="comment"></span><span class="keyword">typedef</span> <span class="keyword">struct </span>os_thread_cb *<a class="code" href="cmsis__os_8h.html#adfeb153a84a81309e2d958268197617f" title="Thread ID identifies the thread (pointer to a thread control block).">osThreadId</a>;</div>
<div class="line"> <span class="comment"></span></div>
<div class="line"><span class="comment">/// Timer ID identifies the timer (pointer to a timer control block).</span></div>
<div class="line"><span class="comment">/// \note CAN BE CHANGED: \b os_timer_cb is implementation specific in every CMSIS-RTOS.</span></div>
<div class="line"><span class="comment"></span><span class="keyword">typedef</span> <span class="keyword">struct </span>os_timer_cb *<a class="code" href="cmsis__os_8h.html#ab8530dd4273f1f5382187732e14fcaa7" title="Timer ID identifies the timer (pointer to a timer control block).">osTimerId</a>;</div>
<div class="line"> <span class="comment"></span></div>
<div class="line"><span class="comment">/// Mutex ID identifies the mutex (pointer to a mutex control block).</span></div>
<div class="line"><span class="comment">/// \note CAN BE CHANGED: \b os_mutex_cb is implementation specific in every CMSIS-RTOS.</span></div>
<div class="line"><span class="comment"></span><span class="keyword">typedef</span> <span class="keyword">struct </span>os_mutex_cb *<a class="code" href="cmsis__os_8h.html#a3263c1ad9fd79b84f908d65e8da44ac2" title="Mutex ID identifies the mutex (pointer to a mutex control block).">osMutexId</a>;</div>
<div class="line"> <span class="comment"></span></div>
<div class="line"><span class="comment">/// Semaphore ID identifies the semaphore (pointer to a semaphore control block).</span></div>
<div class="line"><span class="comment">/// \note CAN BE CHANGED: \b os_semaphore_cb is implementation specific in every CMSIS-RTOS.</span></div>
<div class="line"><span class="comment"></span><span class="keyword">typedef</span> <span class="keyword">struct </span>os_semaphore_cb *<a class="code" href="cmsis__os_8h.html#aa8968896c84094aa973683c84fa06f84" title="Semaphore ID identifies the semaphore (pointer to a semaphore control block).">osSemaphoreId</a>;</div>
<div class="line"> <span class="comment"></span></div>
<div class="line"><span class="comment">/// Pool ID identifies the memory pool (pointer to a memory pool control block).</span></div>
<div class="line"><span class="comment">/// \note CAN BE CHANGED: \b os_pool_cb is implementation specific in every CMSIS-RTOS.</span></div>
<div class="line"><span class="comment"></span><span class="keyword">typedef</span> <span class="keyword">struct </span>os_pool_cb *<a class="code" href="cmsis__os_8h.html#a08d2e20fd9bbd96220fe068d420f3686" title="Pool ID identifies the memory pool (pointer to a memory pool control block).">osPoolId</a>;</div>
<div class="line"> <span class="comment"></span></div>
<div class="line"><span class="comment">/// Message ID identifies the message queue (pointer to a message queue control block).</span></div>
<div class="line"><span class="comment">/// \note CAN BE CHANGED: \b os_messageQ_cb is implementation specific in every CMSIS-RTOS.</span></div>
<div class="line"><span class="comment"></span><span class="keyword">typedef</span> <span class="keyword">struct </span>os_messageQ_cb *<a class="code" href="cmsis__os_8h.html#ad9ec70c32c6c521970636b521e12d17f" title="Message ID identifies the message queue (pointer to a message queue control block).">osMessageQId</a>;</div>
<div class="line"> <span class="comment"></span></div>
<div class="line"><span class="comment">/// Mail ID identifies the mail queue (pointer to a mail queue control block).</span></div>
<div class="line"><span class="comment">/// \note CAN BE CHANGED: \b os_mailQ_cb is implementation specific in every CMSIS-RTOS.</span></div>
<div class="line"><span class="comment"></span><span class="keyword">typedef</span> <span class="keyword">struct </span>os_mailQ_cb *<a class="code" href="cmsis__os_8h.html#a1dac049fb7725a8af8b26c71cbb373b5" title="Mail ID identifies the mail queue (pointer to a mail queue control block).">osMailQId</a>;</div>
<div class="line"> </div>
<div class="line"> <span class="comment"></span></div>
<div class="line"><span class="comment">/// Thread Definition structure contains startup information of a thread.</span></div>
<div class="line"><span class="comment">/// \note CAN BE CHANGED: \b os_thread_def is implementation specific in every CMSIS-RTOS.</span></div>
<div class="line"><span class="comment"></span><span class="keyword">typedef</span> <span class="keyword">struct </span>os_thread_def {</div>
<div class="line"> <a class="code" href="cmsis__os_8h.html#aee631e5ea1b700fc35695cc7bc574cf7" title="Entry point of a thread.">os_pthread</a> pthread; <span class="comment">///< start address of thread function</span></div>
<div class="line"><span class="comment"></span> <a class="code" href="group___c_m_s_i_s___r_t_o_s___thread_mgmt.html#ga7f2b42f1983b9107775ec2a1c69a849a">osPriority</a> tpriority; <span class="comment">///< initial thread priority</span></div>
<div class="line"><span class="comment"></span> uint32_t instances; <span class="comment">///< maximum number of instances of that thread function</span></div>
<div class="line"><span class="comment"></span> uint32_t stacksize; <span class="comment">///< stack size requirements in bytes; 0 is default stack size</span></div>
<div class="line"><span class="comment"></span>} <a class="code" href="structos_thread_def__t.html" title="Thread Definition structure contains startup information of a thread.">osThreadDef_t</a>;</div>
<div class="line"> <span class="comment"></span></div>
<div class="line"><span class="comment">/// Timer Definition structure contains timer parameters.</span></div>
<div class="line"><span class="comment">/// \note CAN BE CHANGED: \b os_timer_def is implementation specific in every CMSIS-RTOS.</span></div>
<div class="line"><span class="comment"></span><span class="keyword">typedef</span> <span class="keyword">struct </span>os_timer_def {</div>
<div class="line"> <a class="code" href="cmsis__os_8h.html#aa2d85e49bde9f6951ff3545cd323f065" title="Entry point of a timer call back function.">os_ptimer</a> ptimer; <span class="comment">///< start address of a timer function</span></div>
<div class="line"><span class="comment"></span>} <a class="code" href="structos_timer_def__t.html" title="Timer Definition structure contains timer parameters.">osTimerDef_t</a>;</div>
<div class="line"> <span class="comment"></span></div>
<div class="line"><span class="comment">/// Mutex Definition structure contains setup information for a mutex.</span></div>
<div class="line"><span class="comment">/// \note CAN BE CHANGED: \b os_mutex_def is implementation specific in every CMSIS-RTOS.</span></div>
<div class="line"><span class="comment"></span><span class="keyword">typedef</span> <span class="keyword">struct </span>os_mutex_def {</div>
<div class="line"> uint32_t dummy; <span class="comment">///< dummy value.</span></div>
<div class="line"><span class="comment"></span>} <a class="code" href="structos_mutex_def__t.html" title="Mutex Definition structure contains setup information for a mutex.">osMutexDef_t</a>;</div>
<div class="line"> <span class="comment"></span></div>
<div class="line"><span class="comment">/// Semaphore Definition structure contains setup information for a semaphore.</span></div>
<div class="line"><span class="comment">/// \note CAN BE CHANGED: \b os_semaphore_def is implementation specific in every CMSIS-RTOS.</span></div>
<div class="line"><span class="comment"></span><span class="keyword">typedef</span> <span class="keyword">struct </span>os_semaphore_def {</div>
<div class="line"> uint32_t dummy; <span class="comment">///< dummy value.</span></div>
<div class="line"><span class="comment"></span>} <a class="code" href="structos_semaphore_def__t.html" title="Semaphore Definition structure contains setup information for a semaphore.">osSemaphoreDef_t</a>;</div>
<div class="line"> <span class="comment"></span></div>
<div class="line"><span class="comment">/// Definition structure for memory block allocation.</span></div>
<div class="line"><span class="comment">/// \note CAN BE CHANGED: \b os_pool_def is implementation specific in every CMSIS-RTOS.</span></div>
<div class="line"><span class="comment"></span><span class="keyword">typedef</span> <span class="keyword">struct </span>os_pool_def {</div>
<div class="line"> uint32_t pool_sz; <span class="comment">///< number of items (elements) in the pool</span></div>
<div class="line"><span class="comment"></span> uint32_t item_sz; <span class="comment">///< size of an item</span></div>
<div class="line"><span class="comment"></span> <span class="keywordtype">void</span> *pool; <span class="comment">///< pointer to memory for pool</span></div>
<div class="line"><span class="comment"></span>} <a class="code" href="structos_pool_def__t.html" title="Definition structure for memory block allocation.">osPoolDef_t</a>;</div>
<div class="line"> <span class="comment"></span></div>
<div class="line"><span class="comment">/// Definition structure for message queue.</span></div>
<div class="line"><span class="comment">/// \note CAN BE CHANGED: \b os_messageQ_def is implementation specific in every CMSIS-RTOS.</span></div>
<div class="line"><span class="comment"></span><span class="keyword">typedef</span> <span class="keyword">struct </span>os_messageQ_def {</div>
<div class="line"> uint32_t queue_sz; <span class="comment">///< number of elements in the queue</span></div>
<div class="line"><span class="comment"></span> uint32_t item_sz; <span class="comment">///< size of an item</span></div>
<div class="line"><span class="comment"></span> <span class="keywordtype">void</span> *pool; <span class="comment">///< memory array for messages</span></div>
<div class="line"><span class="comment"></span>} <a class="code" href="structos_message_q_def__t.html" title="Definition structure for message queue.">osMessageQDef_t</a>;</div>
<div class="line"> <span class="comment"></span></div>
<div class="line"><span class="comment">/// Definition structure for mail queue.</span></div>
<div class="line"><span class="comment">/// \note CAN BE CHANGED: \b os_mailQ_def is implementation specific in every CMSIS-RTOS.</span></div>
<div class="line"><span class="comment"></span><span class="keyword">typedef</span> <span class="keyword">struct </span>os_mailQ_def {</div>
<div class="line"> uint32_t queue_sz; <span class="comment">///< number of elements in the queue</span></div>
<div class="line"><span class="comment"></span> uint32_t item_sz; <span class="comment">///< size of an item</span></div>
<div class="line"><span class="comment"></span> <span class="keywordtype">void</span> *pool; <span class="comment">///< memory array for mail</span></div>
<div class="line"><span class="comment"></span>} <a class="code" href="structos_mail_q_def__t.html" title="Definition structure for mail queue.">osMailQDef_t</a>;</div>
<div class="line"> <span class="comment"></span></div>
<div class="line"><span class="comment">/// Event structure contains detailed information about an event.</span></div>
<div class="line"><span class="comment">/// \note MUST REMAIN UNCHANGED: \b os_event shall be consistent in every CMSIS-RTOS.</span></div>
<div class="line"><span class="comment">/// However the struct may be extended at the end.</span></div>
<div class="line"><span class="comment"></span><span class="keyword">typedef</span> <span class="keyword">struct </span>{</div>
<div class="line"> <a class="code" href="group___c_m_s_i_s___r_t_o_s___status.html#gae2e091fefc4c767117727bd5aba4d99e">osStatus</a> status; <span class="comment">///< status code: event or error information</span></div>
<div class="line"><span class="comment"></span> <span class="keyword">union </span>{</div>
<div class="line"> uint32_t v; <span class="comment">///< message as 32-bit value</span></div>
<div class="line"><span class="comment"></span> <span class="keywordtype">void</span> *p; <span class="comment">///< message or mail as void pointer</span></div>
<div class="line"><span class="comment"></span> int32_t signals; <span class="comment">///< signal flags</span></div>
<div class="line"><span class="comment"></span> } value; <span class="comment">///< event value</span></div>
<div class="line"><span class="comment"></span> <span class="keyword">union </span>{</div>
<div class="line"> osMailQId mail_id; <span class="comment">///< mail id obtained by \ref osMailCreate</span></div>
<div class="line"><span class="comment"></span> osMessageQId message_id; <span class="comment">///< message id obtained by \ref osMessageCreate</span></div>
<div class="line"><span class="comment"></span> } def; <span class="comment">///< event definition</span></div>
<div class="line"><span class="comment"></span>} <a class="code" href="group___c_m_s_i_s___r_t_o_s___definitions.html#structos_event" title="Event structure contains detailed information about an event.">osEvent</a>;</div>
<div class="line"> </div>
<div class="line"> </div>
<div class="line"><span class="comment">// ==== Kernel Control Functions ====</span></div>
<div class="line"> <span class="comment"></span></div>
<div class="line"><span class="comment">/// Initialize the RTOS Kernel for creating objects.</span></div>
<div class="line"><span class="comment">/// \return status code that indicates the execution status of the function.</span></div>
<div class="line"><span class="comment">/// \note MUST REMAIN UNCHANGED: \b osKernelInitialize shall be consistent in every CMSIS-RTOS.</span></div>
<div class="line"><span class="comment"></span><a class="code" href="group___c_m_s_i_s___r_t_o_s___status.html#gae2e091fefc4c767117727bd5aba4d99e">osStatus</a> <a class="code" href="group___c_m_s_i_s___r_t_o_s___kernel_ctrl.html#ga53d078a801022e202e8115c083ece68e" title="Initialize the RTOS Kernel for creating objects.">osKernelInitialize</a> (<span class="keywordtype">void</span>);</div>
<div class="line"> <span class="comment"></span></div>
<div class="line"><span class="comment">/// Start the RTOS Kernel.</span></div>
<div class="line"><span class="comment">/// \return status code that indicates the execution status of the function.</span></div>
<div class="line"><span class="comment">/// \note MUST REMAIN UNCHANGED: \b osKernelStart shall be consistent in every CMSIS-RTOS.</span></div>
<div class="line"><span class="comment"></span><a class="code" href="group___c_m_s_i_s___r_t_o_s___status.html#gae2e091fefc4c767117727bd5aba4d99e">osStatus</a> <a class="code" href="group___c_m_s_i_s___r_t_o_s___kernel_ctrl.html#gaab668ffd2ea76bb0a77ab0ab385eaef2" title="Start the RTOS Kernel.">osKernelStart</a> (<span class="keywordtype">void</span>);</div>
<div class="line"> <span class="comment"></span></div>
<div class="line"><span class="comment">/// Check if the RTOS kernel is already started.</span></div>
<div class="line"><span class="comment">/// \note MUST REMAIN UNCHANGED: \b osKernelRunning shall be consistent in every CMSIS-RTOS.</span></div>
<div class="line"><span class="comment">/// \return 0 RTOS is not started, 1 RTOS is started.</span></div>
<div class="line"><span class="comment"></span>int32_t <a class="code" href="group___c_m_s_i_s___r_t_o_s___kernel_ctrl.html#ga3b571de44cd3094c643247a7397f86b5" title="Check if the RTOS kernel is already started.">osKernelRunning</a>(<span class="keywordtype">void</span>);</div>
<div class="line"> </div>
<div class="line"><span class="preprocessor">#if (defined (osFeature_SysTick) && (osFeature_SysTick != 0)) // System Timer available</span></div>
<div class="line"><span class="preprocessor"></span> <span class="comment"></span></div>
<div class="line"><span class="comment">/// Get the RTOS kernel system timer counter </span></div>
<div class="line"><span class="comment">/// \note MUST REMAIN UNCHANGED: \b osKernelSysTick shall be consistent in every CMSIS-RTOS.</span></div>
<div class="line"><span class="comment">/// \return RTOS kernel system timer as 32-bit value </span></div>
<div class="line"><span class="comment"></span>uint32_t <a class="code" href="group___c_m_s_i_s___r_t_o_s___kernel_ctrl.html#gad0262e4688e95d1e9038afd9bcc16001" title="Get the RTOS kernel system timer counter.">osKernelSysTick</a> (<span class="keywordtype">void</span>);</div>
<div class="line"> <span class="comment"></span></div>
<div class="line"><span class="comment">/// The RTOS kernel system timer frequency in Hz</span></div>
<div class="line"><span class="comment">/// \note Reflects the system timer setting and is typically defined in a configuration file.</span></div>
<div class="line"><span class="comment"></span><span class="preprocessor">#define osKernelSysTickFrequency 100000000</span></div>
<div class="line"><span class="preprocessor"></span> <span class="comment"></span></div>
<div class="line"><span class="comment">/// Convert a microseconds value to a RTOS kernel system timer value.</span></div>
<div class="line"><span class="comment">/// \param microsec time value in microseconds.</span></div>
<div class="line"><span class="comment">/// \return time value normalized to the \ref osKernelSysTickFrequency</span></div>
<div class="line"><span class="comment"></span><span class="preprocessor">#define osKernelSysTickMicroSec(microsec) (((uint64_t)microsec * (osKernelSysTickFrequency)) / 1000000)</span></div>
<div class="line"><span class="preprocessor"></span> </div>
<div class="line"><span class="preprocessor">#endif // System Timer available</span></div>
<div class="line"><span class="preprocessor"></span> </div>
<div class="line"><span class="comment">// ==== Thread Management ====</span></div>
<div class="line"> <span class="comment"></span></div>
<div class="line"><span class="comment">/// Create a Thread Definition with function, priority, and stack requirements.</span></div>
<div class="line"><span class="comment">/// \param name name of the thread function.</span></div>
<div class="line"><span class="comment">/// \param priority initial priority of the thread function.</span></div>
<div class="line"><span class="comment">/// \param instances number of possible thread instances.</span></div>
<div class="line"><span class="comment">/// \param stacksz stack size (in bytes) requirements for the thread function.</span></div>
<div class="line"><span class="comment">/// \note CAN BE CHANGED: The parameters to \b osThreadDef shall be consistent but the</span></div>
<div class="line"><span class="comment">/// macro body is implementation specific in every CMSIS-RTOS.</span></div>
<div class="line"><span class="comment"></span><span class="preprocessor">#if defined (osObjectsExternal) // object is external</span></div>
<div class="line"><span class="preprocessor"></span><span class="preprocessor">#define osThreadDef(name, priority, instances, stacksz) \</span></div>
<div class="line"><span class="preprocessor">extern const osThreadDef_t os_thread_def_##name</span></div>
<div class="line"><span class="preprocessor"></span><span class="preprocessor">#else // define the object</span></div>
<div class="line"><span class="preprocessor"></span><span class="preprocessor">#define osThreadDef(name, priority, instances, stacksz) \</span></div>
<div class="line"><span class="preprocessor">const osThreadDef_t os_thread_def_##name = \</span></div>
<div class="line"><span class="preprocessor">{ (name), (priority), (instances), (stacksz) }</span></div>
<div class="line"><span class="preprocessor"></span><span class="preprocessor">#endif</span></div>
<div class="line"><span class="preprocessor"></span> <span class="comment"></span></div>
<div class="line"><span class="comment">/// Access a Thread definition.</span></div>
<div class="line"><span class="comment">/// \param name name of the thread definition object.</span></div>
<div class="line"><span class="comment">/// \note CAN BE CHANGED: The parameter to \b osThread shall be consistent but the</span></div>
<div class="line"><span class="comment">/// macro body is implementation specific in every CMSIS-RTOS.</span></div>
<div class="line"><span class="comment"></span><span class="preprocessor">#define osThread(name) \</span></div>
<div class="line"><span class="preprocessor">&os_thread_def_##name</span></div>
<div class="line"><span class="preprocessor"></span> <span class="comment"></span></div>
<div class="line"><span class="comment">/// Create a thread and add it to Active Threads and set it to state READY.</span></div>
<div class="line"><span class="comment">/// \param[in] thread_def thread definition referenced with \ref osThread.</span></div>
<div class="line"><span class="comment">/// \param[in] argument pointer that is passed to the thread function as start argument.</span></div>
<div class="line"><span class="comment">/// \return thread ID for reference by other functions or NULL in case of error.</span></div>
<div class="line"><span class="comment">/// \note MUST REMAIN UNCHANGED: \b osThreadCreate shall be consistent in every CMSIS-RTOS.</span></div>
<div class="line"><span class="comment"></span>osThreadId <a class="code" href="group___c_m_s_i_s___r_t_o_s___thread_mgmt.html#gac59b5713cb083702dce759c73fd90dff" title="Create a thread and add it to Active Threads and set it to state READY.">osThreadCreate</a> (<span class="keyword">const</span> <a class="code" href="structos_thread_def__t.html" title="Thread Definition structure contains startup information of a thread.">osThreadDef_t</a> *thread_def, <span class="keywordtype">void</span> *argument);</div>
<div class="line"> <span class="comment"></span></div>
<div class="line"><span class="comment">/// Return the thread ID of the current running thread.</span></div>
<div class="line"><span class="comment">/// \return thread ID for reference by other functions or NULL in case of error.</span></div>
<div class="line"><span class="comment">/// \note MUST REMAIN UNCHANGED: \b osThreadGetId shall be consistent in every CMSIS-RTOS.</span></div>
<div class="line"><span class="comment"></span>osThreadId <a class="code" href="group___c_m_s_i_s___r_t_o_s___thread_mgmt.html#gab1df2a28925862ef8f9cf4e1c995c5a7" title="Return the thread ID of the current running thread.">osThreadGetId</a> (<span class="keywordtype">void</span>);</div>
<div class="line"> <span class="comment"></span></div>
<div class="line"><span class="comment">/// Terminate execution of a thread and remove it from Active Threads.</span></div>
<div class="line"><span class="comment">/// \param[in] thread_id thread ID obtained by \ref osThreadCreate or \ref osThreadGetId.</span></div>
<div class="line"><span class="comment">/// \return status code that indicates the execution status of the function.</span></div>
<div class="line"><span class="comment">/// \note MUST REMAIN UNCHANGED: \b osThreadTerminate shall be consistent in every CMSIS-RTOS.</span></div>
<div class="line"><span class="comment"></span><a class="code" href="group___c_m_s_i_s___r_t_o_s___status.html#gae2e091fefc4c767117727bd5aba4d99e">osStatus</a> <a class="code" href="group___c_m_s_i_s___r_t_o_s___thread_mgmt.html#gaea135bb90eb853eff39e0800b91bbeab" title="Terminate execution of a thread and remove it from Active Threads.">osThreadTerminate</a> (osThreadId thread_id);</div>
<div class="line"> <span class="comment"></span></div>
<div class="line"><span class="comment">/// Pass control to next thread that is in state \b READY.</span></div>
<div class="line"><span class="comment">/// \return status code that indicates the execution status of the function.</span></div>
<div class="line"><span class="comment">/// \note MUST REMAIN UNCHANGED: \b osThreadYield shall be consistent in every CMSIS-RTOS.</span></div>
<div class="line"><span class="comment"></span><a class="code" href="group___c_m_s_i_s___r_t_o_s___status.html#gae2e091fefc4c767117727bd5aba4d99e">osStatus</a> <a class="code" href="group___c_m_s_i_s___r_t_o_s___thread_mgmt.html#gaf13a667493c5d629a90c13e113b99233" title="Pass control to next thread that is in state READY.">osThreadYield</a> (<span class="keywordtype">void</span>);</div>
<div class="line"> <span class="comment"></span></div>
<div class="line"><span class="comment">/// Change priority of an active thread.</span></div>
<div class="line"><span class="comment">/// \param[in] thread_id thread ID obtained by \ref osThreadCreate or \ref osThreadGetId.</span></div>
<div class="line"><span class="comment">/// \param[in] priority new priority value for the thread function.</span></div>
<div class="line"><span class="comment">/// \return status code that indicates the execution status of the function.</span></div>
<div class="line"><span class="comment">/// \note MUST REMAIN UNCHANGED: \b osThreadSetPriority shall be consistent in every CMSIS-RTOS.</span></div>
<div class="line"><span class="comment"></span><a class="code" href="group___c_m_s_i_s___r_t_o_s___status.html#gae2e091fefc4c767117727bd5aba4d99e">osStatus</a> <a class="code" href="group___c_m_s_i_s___r_t_o_s___thread_mgmt.html#ga0dfb90ccf1f6e4b54b9251b12d1cbc8b" title="Change priority of an active thread.">osThreadSetPriority</a> (osThreadId thread_id, <a class="code" href="group___c_m_s_i_s___r_t_o_s___thread_mgmt.html#ga7f2b42f1983b9107775ec2a1c69a849a">osPriority</a> priority);</div>
<div class="line"> <span class="comment"></span></div>
<div class="line"><span class="comment">/// Get current priority of an active thread.</span></div>
<div class="line"><span class="comment">/// \param[in] thread_id thread ID obtained by \ref osThreadCreate or \ref osThreadGetId.</span></div>
<div class="line"><span class="comment">/// \return current priority value of the thread function.</span></div>
<div class="line"><span class="comment">/// \note MUST REMAIN UNCHANGED: \b osThreadGetPriority shall be consistent in every CMSIS-RTOS.</span></div>
<div class="line"><span class="comment"></span><a class="code" href="group___c_m_s_i_s___r_t_o_s___thread_mgmt.html#ga7f2b42f1983b9107775ec2a1c69a849a">osPriority</a> <a class="code" href="group___c_m_s_i_s___r_t_o_s___thread_mgmt.html#ga4299d838978bc2aae5e4350754e6a4e9" title="Get current priority of an active thread.">osThreadGetPriority</a> (osThreadId thread_id);</div>
<div class="line"> </div>
<div class="line"> </div>
<div class="line"><span class="comment">// ==== Generic Wait Functions ====</span></div>
<div class="line"> <span class="comment"></span></div>
<div class="line"><span class="comment">/// Wait for Timeout (Time Delay).</span></div>
<div class="line"><span class="comment">/// \param[in] millisec time delay value</span></div>
<div class="line"><span class="comment">/// \return status code that indicates the execution status of the function.</span></div>
<div class="line"><span class="comment"></span><a class="code" href="group___c_m_s_i_s___r_t_o_s___status.html#gae2e091fefc4c767117727bd5aba4d99e">osStatus</a> <a class="code" href="group___c_m_s_i_s___r_t_o_s___wait.html#ga02e19d5e723bfb06ba9324d625162255" title="Wait for Timeout (Time Delay).">osDelay</a> (uint32_t millisec);</div>
<div class="line"> </div>
<div class="line"><span class="preprocessor">#if (defined (osFeature_Wait) && (osFeature_Wait != 0)) // Generic Wait available</span></div>
<div class="line"><span class="preprocessor"></span> <span class="comment"></span></div>
<div class="line"><span class="comment">/// Wait for Signal, Message, Mail, or Timeout.</span></div>
<div class="line"><span class="comment">/// \param[in] millisec timeout value or 0 in case of no time-out</span></div>
<div class="line"><span class="comment">/// \return event that contains signal, message, or mail information or error code.</span></div>
<div class="line"><span class="comment">/// \note MUST REMAIN UNCHANGED: \b osWait shall be consistent in every CMSIS-RTOS.</span></div>
<div class="line"><span class="comment"></span><a class="code" href="group___c_m_s_i_s___r_t_o_s___definitions.html#structos_event" title="Event structure contains detailed information about an event.">osEvent</a> <a class="code" href="group___c_m_s_i_s___r_t_o_s___wait.html#ga8470c8aaedfde524a44e22e5b2328285" title="Wait for Signal, Message, Mail, or Timeout.">osWait</a> (uint32_t millisec);</div>
<div class="line"> </div>
<div class="line"><span class="preprocessor">#endif // Generic Wait available</span></div>
<div class="line"><span class="preprocessor"></span> </div>
<div class="line"> </div>
<div class="line"><span class="comment">// ==== Timer Management Functions ====</span><span class="comment"></span></div>
<div class="line"><span class="comment">/// Define a Timer object.</span></div>
<div class="line"><span class="comment">/// \param name name of the timer object.</span></div>
<div class="line"><span class="comment">/// \param function name of the timer call back function.</span></div>
<div class="line"><span class="comment">/// \note CAN BE CHANGED: The parameter to \b osTimerDef shall be consistent but the</span></div>
<div class="line"><span class="comment">/// macro body is implementation specific in every CMSIS-RTOS.</span></div>
<div class="line"><span class="comment"></span><span class="preprocessor">#if defined (osObjectsExternal) // object is external</span></div>
<div class="line"><span class="preprocessor"></span><span class="preprocessor">#define osTimerDef(name, function) \</span></div>
<div class="line"><span class="preprocessor">extern const osTimerDef_t os_timer_def_##name</span></div>
<div class="line"><span class="preprocessor"></span><span class="preprocessor">#else // define the object</span></div>
<div class="line"><span class="preprocessor"></span><span class="preprocessor">#define osTimerDef(name, function) \</span></div>
<div class="line"><span class="preprocessor">const osTimerDef_t os_timer_def_##name = \</span></div>
<div class="line"><span class="preprocessor">{ (function) }</span></div>
<div class="line"><span class="preprocessor"></span><span class="preprocessor">#endif</span></div>
<div class="line"><span class="preprocessor"></span> <span class="comment"></span></div>
<div class="line"><span class="comment">/// Access a Timer definition.</span></div>
<div class="line"><span class="comment">/// \param name name of the timer object.</span></div>
<div class="line"><span class="comment">/// \note CAN BE CHANGED: The parameter to \b osTimer shall be consistent but the</span></div>
<div class="line"><span class="comment">/// macro body is implementation specific in every CMSIS-RTOS.</span></div>
<div class="line"><span class="comment"></span><span class="preprocessor">#define osTimer(name) \</span></div>
<div class="line"><span class="preprocessor">&os_timer_def_##name</span></div>
<div class="line"><span class="preprocessor"></span> <span class="comment"></span></div>
<div class="line"><span class="comment">/// Create a timer.</span></div>
<div class="line"><span class="comment">/// \param[in] timer_def timer object referenced with \ref osTimer.</span></div>
<div class="line"><span class="comment">/// \param[in] type osTimerOnce for one-shot or osTimerPeriodic for periodic behavior.</span></div>
<div class="line"><span class="comment">/// \param[in] argument argument to the timer call back function.</span></div>
<div class="line"><span class="comment">/// \return timer ID for reference by other functions or NULL in case of error.</span></div>
<div class="line"><span class="comment">/// \note MUST REMAIN UNCHANGED: \b osTimerCreate shall be consistent in every CMSIS-RTOS.</span></div>
<div class="line"><span class="comment"></span>osTimerId <a class="code" href="group___c_m_s_i_s___r_t_o_s___timer_mgmt.html#gaedd312bfdca04e0b8162b666e09a1ae6" title="Create a timer.">osTimerCreate</a> (<span class="keyword">const</span> <a class="code" href="structos_timer_def__t.html" title="Timer Definition structure contains timer parameters.">osTimerDef_t</a> *timer_def, <a class="code" href="group___c_m_s_i_s___r_t_o_s___timer_mgmt.html#gadac860eb9e1b4b0619271e6595ed83d9">os_timer_type</a> type, <span class="keywordtype">void</span> *argument);</div>
<div class="line"> <span class="comment"></span></div>
<div class="line"><span class="comment">/// Start or restart a timer.</span></div>
<div class="line"><span class="comment">/// \param[in] timer_id timer ID obtained by \ref osTimerCreate.</span></div>
<div class="line"><span class="comment">/// \param[in] millisec time delay value of the timer.</span></div>
<div class="line"><span class="comment">/// \return status code that indicates the execution status of the function.</span></div>
<div class="line"><span class="comment">/// \note MUST REMAIN UNCHANGED: \b osTimerStart shall be consistent in every CMSIS-RTOS.</span></div>
<div class="line"><span class="comment"></span><a class="code" href="group___c_m_s_i_s___r_t_o_s___status.html#gae2e091fefc4c767117727bd5aba4d99e">osStatus</a> <a class="code" href="group___c_m_s_i_s___r_t_o_s___timer_mgmt.html#ga27a797a401b068e2644d1125f22a07ca" title="Start or restart a timer.">osTimerStart</a> (osTimerId timer_id, uint32_t millisec);</div>
<div class="line"> <span class="comment"></span></div>
<div class="line"><span class="comment">/// Stop the timer.</span></div>
<div class="line"><span class="comment">/// \param[in] timer_id timer ID obtained by \ref osTimerCreate.</span></div>
<div class="line"><span class="comment">/// \return status code that indicates the execution status of the function.</span></div>
<div class="line"><span class="comment">/// \note MUST REMAIN UNCHANGED: \b osTimerStop shall be consistent in every CMSIS-RTOS.</span></div>
<div class="line"><span class="comment"></span><a class="code" href="group___c_m_s_i_s___r_t_o_s___status.html#gae2e091fefc4c767117727bd5aba4d99e">osStatus</a> <a class="code" href="group___c_m_s_i_s___r_t_o_s___timer_mgmt.html#ga58f36b121a812936435cacc6e1e0e091" title="Stop the timer.">osTimerStop</a> (osTimerId timer_id);</div>
<div class="line"> <span class="comment"></span></div>
<div class="line"><span class="comment">/// Delete a timer that was created by \ref osTimerCreate.</span></div>
<div class="line"><span class="comment">/// \param[in] timer_id timer ID obtained by \ref osTimerCreate.</span></div>
<div class="line"><span class="comment">/// \return status code that indicates the execution status of the function.</span></div>
<div class="line"><span class="comment">/// \note MUST REMAIN UNCHANGED: \b osTimerDelete shall be consistent in every CMSIS-RTOS.</span></div>
<div class="line"><span class="comment"></span><a class="code" href="group___c_m_s_i_s___r_t_o_s___status.html#gae2e091fefc4c767117727bd5aba4d99e">osStatus</a> <a class="code" href="group___c_m_s_i_s___r_t_o_s___timer_mgmt.html#ga746b8043d906849bd65e3900fcb483cf" title="Delete a timer that was created by osTimerCreate.">osTimerDelete</a> (osTimerId timer_id);</div>
<div class="line"> </div>
<div class="line"> </div>
<div class="line"><span class="comment">// ==== Signal Management ====</span></div>
<div class="line"> <span class="comment"></span></div>
<div class="line"><span class="comment">/// Set the specified Signal Flags of an active thread.</span></div>
<div class="line"><span class="comment">/// \param[in] thread_id thread ID obtained by \ref osThreadCreate or \ref osThreadGetId.</span></div>
<div class="line"><span class="comment">/// \param[in] signals specifies the signal flags of the thread that should be set.</span></div>
<div class="line"><span class="comment">/// \return previous signal flags of the specified thread or 0x80000000 in case of incorrect parameters.</span></div>
<div class="line"><span class="comment">/// \note MUST REMAIN UNCHANGED: \b osSignalSet shall be consistent in every CMSIS-RTOS.</span></div>
<div class="line"><span class="comment"></span>int32_t <a class="code" href="group___c_m_s_i_s___r_t_o_s___signal_mgmt.html#ga3de2730654589d6c3559c4b9e2825553" title="Set the specified Signal Flags of an active thread.">osSignalSet</a> (osThreadId thread_id, int32_t signals);</div>
<div class="line"> <span class="comment"></span></div>
<div class="line"><span class="comment">/// Clear the specified Signal Flags of an active thread.</span></div>
<div class="line"><span class="comment">/// \param[in] thread_id thread ID obtained by \ref osThreadCreate or \ref osThreadGetId.</span></div>
<div class="line"><span class="comment">/// \param[in] signals specifies the signal flags of the thread that shall be cleared.</span></div>
<div class="line"><span class="comment">/// \return previous signal flags of the specified thread or 0x80000000 in case of incorrect parameters or call from ISR.</span></div>
<div class="line"><span class="comment">/// \note MUST REMAIN UNCHANGED: \b osSignalClear shall be consistent in every CMSIS-RTOS.</span></div>
<div class="line"><span class="comment"></span>int32_t <a class="code" href="group___c_m_s_i_s___r_t_o_s___signal_mgmt.html#ga87283a6ebc31ce9ed42baf3ea7e4eab6" title="Clear the specified Signal Flags of an active thread.">osSignalClear</a> (osThreadId thread_id, int32_t signals);</div>
<div class="line"> <span class="comment"></span></div>
<div class="line"><span class="comment">/// Wait for one or more Signal Flags to become signaled for the current \b RUNNING thread.</span></div>
<div class="line"><span class="comment">/// \param[in] signals wait until all specified signal flags set or 0 for any single signal flag.</span></div>
<div class="line"><span class="comment">/// \param[in] millisec timeout value or 0 in case of no time-out.</span></div>
<div class="line"><span class="comment">/// \return event flag information or error code.</span></div>
<div class="line"><span class="comment">/// \note MUST REMAIN UNCHANGED: \b osSignalWait shall be consistent in every CMSIS-RTOS.</span></div>
<div class="line"><span class="comment"></span><a class="code" href="group___c_m_s_i_s___r_t_o_s___definitions.html#structos_event" title="Event structure contains detailed information about an event.">osEvent</a> <a class="code" href="group___c_m_s_i_s___r_t_o_s___signal_mgmt.html#ga38860acda96df47da6923348d96fc4c9" title="Wait for one or more Signal Flags to become signaled for the current RUNNING thread.">osSignalWait</a> (int32_t signals, uint32_t millisec);</div>
<div class="line"> </div>
<div class="line"> </div>
<div class="line"><span class="comment">// ==== Mutex Management ====</span></div>
<div class="line"> <span class="comment"></span></div>
<div class="line"><span class="comment">/// Define a Mutex.</span></div>
<div class="line"><span class="comment">/// \param name name of the mutex object.</span></div>
<div class="line"><span class="comment">/// \note CAN BE CHANGED: The parameter to \b osMutexDef shall be consistent but the</span></div>
<div class="line"><span class="comment">/// macro body is implementation specific in every CMSIS-RTOS.</span></div>
<div class="line"><span class="comment"></span><span class="preprocessor">#if defined (osObjectsExternal) // object is external</span></div>
<div class="line"><span class="preprocessor"></span><span class="preprocessor">#define osMutexDef(name) \</span></div>
<div class="line"><span class="preprocessor">extern const osMutexDef_t os_mutex_def_##name</span></div>
<div class="line"><span class="preprocessor"></span><span class="preprocessor">#else // define the object</span></div>
<div class="line"><span class="preprocessor"></span><span class="preprocessor">#define osMutexDef(name) \</span></div>
<div class="line"><span class="preprocessor">const osMutexDef_t os_mutex_def_##name = { 0 }</span></div>
<div class="line"><span class="preprocessor"></span><span class="preprocessor">#endif</span></div>
<div class="line"><span class="preprocessor"></span> <span class="comment"></span></div>
<div class="line"><span class="comment">/// Access a Mutex definition.</span></div>
<div class="line"><span class="comment">/// \param name name of the mutex object.</span></div>
<div class="line"><span class="comment">/// \note CAN BE CHANGED: The parameter to \b osMutex shall be consistent but the</span></div>
<div class="line"><span class="comment">/// macro body is implementation specific in every CMSIS-RTOS.</span></div>
<div class="line"><span class="comment"></span><span class="preprocessor">#define osMutex(name) \</span></div>
<div class="line"><span class="preprocessor">&os_mutex_def_##name</span></div>
<div class="line"><span class="preprocessor"></span> <span class="comment"></span></div>
<div class="line"><span class="comment">/// Create and Initialize a Mutex object.</span></div>
<div class="line"><span class="comment">/// \param[in] mutex_def mutex definition referenced with \ref osMutex.</span></div>
<div class="line"><span class="comment">/// \return mutex ID for reference by other functions or NULL in case of error.</span></div>
<div class="line"><span class="comment">/// \note MUST REMAIN UNCHANGED: \b osMutexCreate shall be consistent in every CMSIS-RTOS.</span></div>
<div class="line"><span class="comment"></span>osMutexId <a class="code" href="group___c_m_s_i_s___r_t_o_s___mutex_mgmt.html#ga5c9de56e717016e39e788064e9a291cc" title="Create and Initialize a Mutex object.">osMutexCreate</a> (<span class="keyword">const</span> <a class="code" href="structos_mutex_def__t.html" title="Mutex Definition structure contains setup information for a mutex.">osMutexDef_t</a> *mutex_def);</div>
<div class="line"> <span class="comment"></span></div>
<div class="line"><span class="comment">/// Wait until a Mutex becomes available.</span></div>
<div class="line"><span class="comment">/// \param[in] mutex_id mutex ID obtained by \ref osMutexCreate.</span></div>
<div class="line"><span class="comment">/// \param[in] millisec timeout value or 0 in case of no time-out.</span></div>
<div class="line"><span class="comment">/// \return status code that indicates the execution status of the function.</span></div>
<div class="line"><span class="comment">/// \note MUST REMAIN UNCHANGED: \b osMutexWait shall be consistent in every CMSIS-RTOS.</span></div>
<div class="line"><span class="comment"></span><a class="code" href="group___c_m_s_i_s___r_t_o_s___status.html#gae2e091fefc4c767117727bd5aba4d99e">osStatus</a> <a class="code" href="group___c_m_s_i_s___r_t_o_s___mutex_mgmt.html#ga5e1752b73f573ee015dbd9ef1edaba13" title="Wait until a Mutex becomes available.">osMutexWait</a> (osMutexId mutex_id, uint32_t millisec);</div>
<div class="line"> <span class="comment"></span></div>
<div class="line"><span class="comment">/// Release a Mutex that was obtained by \ref osMutexWait.</span></div>
<div class="line"><span class="comment">/// \param[in] mutex_id mutex ID obtained by \ref osMutexCreate.</span></div>
<div class="line"><span class="comment">/// \return status code that indicates the execution status of the function.</span></div>
<div class="line"><span class="comment">/// \note MUST REMAIN UNCHANGED: \b osMutexRelease shall be consistent in every CMSIS-RTOS.</span></div>
<div class="line"><span class="comment"></span><a class="code" href="group___c_m_s_i_s___r_t_o_s___status.html#gae2e091fefc4c767117727bd5aba4d99e">osStatus</a> <a class="code" href="group___c_m_s_i_s___r_t_o_s___mutex_mgmt.html#ga006e4744d741e8e132c3d5bbc295afe1" title="Release a Mutex that was obtained by osMutexWait.">osMutexRelease</a> (osMutexId mutex_id);</div>
<div class="line"> <span class="comment"></span></div>
<div class="line"><span class="comment">/// Delete a Mutex that was created by \ref osMutexCreate.</span></div>
<div class="line"><span class="comment">/// \param[in] mutex_id mutex ID obtained by \ref osMutexCreate.</span></div>
<div class="line"><span class="comment">/// \return status code that indicates the execution status of the function.</span></div>
<div class="line"><span class="comment">/// \note MUST REMAIN UNCHANGED: \b osMutexDelete shall be consistent in every CMSIS-RTOS.</span></div>
<div class="line"><span class="comment"></span><a class="code" href="group___c_m_s_i_s___r_t_o_s___status.html#gae2e091fefc4c767117727bd5aba4d99e">osStatus</a> <a class="code" href="group___c_m_s_i_s___r_t_o_s___mutex_mgmt.html#gac27e24135185d51d18f3dabc20910219" title="Delete a Mutex that was created by osMutexCreate.">osMutexDelete</a> (osMutexId mutex_id);</div>
<div class="line"> </div>
<div class="line"> </div>
<div class="line"><span class="comment">// ==== Semaphore Management Functions ====</span></div>
<div class="line"> </div>
<div class="line"><span class="preprocessor">#if (defined (osFeature_Semaphore) && (osFeature_Semaphore != 0)) // Semaphore available</span></div>
<div class="line"><span class="preprocessor"></span> <span class="comment"></span></div>
<div class="line"><span class="comment">/// Define a Semaphore object.</span></div>
<div class="line"><span class="comment">/// \param name name of the semaphore object.</span></div>
<div class="line"><span class="comment">/// \note CAN BE CHANGED: The parameter to \b osSemaphoreDef shall be consistent but the</span></div>
<div class="line"><span class="comment">/// macro body is implementation specific in every CMSIS-RTOS.</span></div>
<div class="line"><span class="comment"></span><span class="preprocessor">#if defined (osObjectsExternal) // object is external</span></div>
<div class="line"><span class="preprocessor"></span><span class="preprocessor">#define osSemaphoreDef(name) \</span></div>
<div class="line"><span class="preprocessor">extern const osSemaphoreDef_t os_semaphore_def_##name</span></div>
<div class="line"><span class="preprocessor"></span><span class="preprocessor">#else // define the object</span></div>
<div class="line"><span class="preprocessor"></span><span class="preprocessor">#define osSemaphoreDef(name) \</span></div>
<div class="line"><span class="preprocessor">const osSemaphoreDef_t os_semaphore_def_##name = { 0 }</span></div>
<div class="line"><span class="preprocessor"></span><span class="preprocessor">#endif</span></div>
<div class="line"><span class="preprocessor"></span> <span class="comment"></span></div>
<div class="line"><span class="comment">/// Access a Semaphore definition.</span></div>
<div class="line"><span class="comment">/// \param name name of the semaphore object.</span></div>
<div class="line"><span class="comment">/// \note CAN BE CHANGED: The parameter to \b osSemaphore shall be consistent but the</span></div>
<div class="line"><span class="comment">/// macro body is implementation specific in every CMSIS-RTOS.</span></div>
<div class="line"><span class="comment"></span><span class="preprocessor">#define osSemaphore(name) \</span></div>
<div class="line"><span class="preprocessor">&os_semaphore_def_##name</span></div>
<div class="line"><span class="preprocessor"></span> <span class="comment"></span></div>
<div class="line"><span class="comment">/// Create and Initialize a Semaphore object used for managing resources.</span></div>
<div class="line"><span class="comment">/// \param[in] semaphore_def semaphore definition referenced with \ref osSemaphore.</span></div>
<div class="line"><span class="comment">/// \param[in] count number of available resources.</span></div>
<div class="line"><span class="comment">/// \return semaphore ID for reference by other functions or NULL in case of error.</span></div>
<div class="line"><span class="comment">/// \note MUST REMAIN UNCHANGED: \b osSemaphoreCreate shall be consistent in every CMSIS-RTOS.</span></div>
<div class="line"><span class="comment"></span>osSemaphoreId <a class="code" href="group___c_m_s_i_s___r_t_o_s___semaphore_mgmt.html#ga97381e8e55cd47cec390bf57c96d6edb" title="Create and Initialize a Semaphore object used for managing resources.">osSemaphoreCreate</a> (<span class="keyword">const</span> <a class="code" href="structos_semaphore_def__t.html" title="Semaphore Definition structure contains setup information for a semaphore.">osSemaphoreDef_t</a> *semaphore_def, int32_t count);</div>
<div class="line"> <span class="comment"></span></div>
<div class="line"><span class="comment">/// Wait until a Semaphore token becomes available.</span></div>
<div class="line"><span class="comment">/// \param[in] semaphore_id semaphore object referenced with \ref osSemaphoreCreate.</span></div>
<div class="line"><span class="comment">/// \param[in] millisec timeout value or 0 in case of no time-out.</span></div>
<div class="line"><span class="comment">/// \return number of available tokens, or -1 in case of incorrect parameters.</span></div>
<div class="line"><span class="comment">/// \note MUST REMAIN UNCHANGED: \b osSemaphoreWait shall be consistent in every CMSIS-RTOS.</span></div>
<div class="line"><span class="comment"></span>int32_t <a class="code" href="group___c_m_s_i_s___r_t_o_s___semaphore_mgmt.html#gacc15b0fc8ce1167fe43da33042e62098" title="Wait until a Semaphore token becomes available.">osSemaphoreWait</a> (osSemaphoreId semaphore_id, uint32_t millisec);</div>
<div class="line"> <span class="comment"></span></div>
<div class="line"><span class="comment">/// Release a Semaphore token.</span></div>
<div class="line"><span class="comment">/// \param[in] semaphore_id semaphore object referenced with \ref osSemaphoreCreate.</span></div>
<div class="line"><span class="comment">/// \return status code that indicates the execution status of the function.</span></div>
<div class="line"><span class="comment">/// \note MUST REMAIN UNCHANGED: \b osSemaphoreRelease shall be consistent in every CMSIS-RTOS.</span></div>
<div class="line"><span class="comment"></span><a class="code" href="group___c_m_s_i_s___r_t_o_s___status.html#gae2e091fefc4c767117727bd5aba4d99e">osStatus</a> <a class="code" href="group___c_m_s_i_s___r_t_o_s___semaphore_mgmt.html#gab108914997c49e14d8ff1ae0d1988ca0" title="Release a Semaphore token.">osSemaphoreRelease</a> (osSemaphoreId semaphore_id);</div>
<div class="line"> <span class="comment"></span></div>
<div class="line"><span class="comment">/// Delete a Semaphore that was created by \ref osSemaphoreCreate.</span></div>
<div class="line"><span class="comment">/// \param[in] semaphore_id semaphore object referenced with \ref osSemaphoreCreate.</span></div>
<div class="line"><span class="comment">/// \return status code that indicates the execution status of the function.</span></div>
<div class="line"><span class="comment">/// \note MUST REMAIN UNCHANGED: \b osSemaphoreDelete shall be consistent in every CMSIS-RTOS.</span></div>
<div class="line"><span class="comment"></span><a class="code" href="group___c_m_s_i_s___r_t_o_s___status.html#gae2e091fefc4c767117727bd5aba4d99e">osStatus</a> <a class="code" href="group___c_m_s_i_s___r_t_o_s___semaphore_mgmt.html#gabae2801ac2c096f6e8c69a264908f595" title="Delete a Semaphore that was created by osSemaphoreCreate.">osSemaphoreDelete</a> (osSemaphoreId semaphore_id);</div>
<div class="line"> </div>
<div class="line"><span class="preprocessor">#endif // Semaphore available</span></div>
<div class="line"><span class="preprocessor"></span> </div>
<div class="line"> </div>
<div class="line"><span class="comment">// ==== Memory Pool Management Functions ====</span></div>
<div class="line"> </div>
<div class="line"><span class="preprocessor">#if (defined (osFeature_Pool) && (osFeature_Pool != 0)) // Memory Pool Management available</span></div>
<div class="line"><span class="preprocessor"></span> <span class="comment"></span></div>
<div class="line"><span class="comment">/// \brief Define a Memory Pool.</span></div>
<div class="line"><span class="comment">/// \param name name of the memory pool.</span></div>
<div class="line"><span class="comment">/// \param no maximum number of blocks (objects) in the memory pool.</span></div>
<div class="line"><span class="comment">/// \param type data type of a single block (object).</span></div>
<div class="line"><span class="comment">/// \note CAN BE CHANGED: The parameter to \b osPoolDef shall be consistent but the</span></div>
<div class="line"><span class="comment">/// macro body is implementation specific in every CMSIS-RTOS.</span></div>
<div class="line"><span class="comment"></span><span class="preprocessor">#if defined (osObjectsExternal) // object is external</span></div>
<div class="line"><span class="preprocessor"></span><span class="preprocessor">#define osPoolDef(name, no, type) \</span></div>
<div class="line"><span class="preprocessor">extern const osPoolDef_t os_pool_def_##name</span></div>
<div class="line"><span class="preprocessor"></span><span class="preprocessor">#else // define the object</span></div>
<div class="line"><span class="preprocessor"></span><span class="preprocessor">#define osPoolDef(name, no, type) \</span></div>
<div class="line"><span class="preprocessor">const osPoolDef_t os_pool_def_##name = \</span></div>
<div class="line"><span class="preprocessor">{ (no), sizeof(type), NULL }</span></div>
<div class="line"><span class="preprocessor"></span><span class="preprocessor">#endif</span></div>
<div class="line"><span class="preprocessor"></span> <span class="comment"></span></div>
<div class="line"><span class="comment">/// \brief Access a Memory Pool definition.</span></div>
<div class="line"><span class="comment">/// \param name name of the memory pool</span></div>
<div class="line"><span class="comment">/// \note CAN BE CHANGED: The parameter to \b osPool shall be consistent but the</span></div>
<div class="line"><span class="comment">/// macro body is implementation specific in every CMSIS-RTOS.</span></div>
<div class="line"><span class="comment"></span><span class="preprocessor">#define osPool(name) \</span></div>
<div class="line"><span class="preprocessor">&os_pool_def_##name</span></div>
<div class="line"><span class="preprocessor"></span> <span class="comment"></span></div>
<div class="line"><span class="comment">/// Create and Initialize a memory pool.</span></div>
<div class="line"><span class="comment">/// \param[in] pool_def memory pool definition referenced with \ref osPool.</span></div>
<div class="line"><span class="comment">/// \return memory pool ID for reference by other functions or NULL in case of error.</span></div>
<div class="line"><span class="comment">/// \note MUST REMAIN UNCHANGED: \b osPoolCreate shall be consistent in every CMSIS-RTOS.</span></div>
<div class="line"><span class="comment"></span>osPoolId <a class="code" href="group___c_m_s_i_s___r_t_o_s___pool_mgmt.html#ga34af5c4f4ab38f4138ea7f1f9ece3a1a" title="Create and Initialize a memory pool.">osPoolCreate</a> (<span class="keyword">const</span> <a class="code" href="structos_pool_def__t.html" title="Definition structure for memory block allocation.">osPoolDef_t</a> *pool_def);</div>
<div class="line"> <span class="comment"></span></div>
<div class="line"><span class="comment">/// Allocate a memory block from a memory pool.</span></div>
<div class="line"><span class="comment">/// \param[in] pool_id memory pool ID obtain referenced with \ref osPoolCreate.</span></div>
<div class="line"><span class="comment">/// \return address of the allocated memory block or NULL in case of no memory available.</span></div>
<div class="line"><span class="comment">/// \note MUST REMAIN UNCHANGED: \b osPoolAlloc shall be consistent in every CMSIS-RTOS.</span></div>
<div class="line"><span class="comment"></span><span class="keywordtype">void</span> *<a class="code" href="group___c_m_s_i_s___r_t_o_s___pool_mgmt.html#gaa0b2994f1a866c19e0d11e6e0d44f543" title="Allocate a memory block from a memory pool.">osPoolAlloc</a> (osPoolId pool_id);</div>
<div class="line"> <span class="comment"></span></div>
<div class="line"><span class="comment">/// Allocate a memory block from a memory pool and set memory block to zero.</span></div>
<div class="line"><span class="comment">/// \param[in] pool_id memory pool ID obtain referenced with \ref osPoolCreate.</span></div>
<div class="line"><span class="comment">/// \return address of the allocated memory block or NULL in case of no memory available.</span></div>
<div class="line"><span class="comment">/// \note MUST REMAIN UNCHANGED: \b osPoolCAlloc shall be consistent in every CMSIS-RTOS.</span></div>
<div class="line"><span class="comment"></span><span class="keywordtype">void</span> *<a class="code" href="group___c_m_s_i_s___r_t_o_s___pool_mgmt.html#ga9f129fcad4730fbd1048ad4fa262f36a" title="Allocate a memory block from a memory pool and set memory block to zero.">osPoolCAlloc</a> (osPoolId pool_id);</div>
<div class="line"> <span class="comment"></span></div>
<div class="line"><span class="comment">/// Return an allocated memory block back to a specific memory pool.</span></div>
<div class="line"><span class="comment">/// \param[in] pool_id memory pool ID obtain referenced with \ref osPoolCreate.</span></div>
<div class="line"><span class="comment">/// \param[in] block address of the allocated memory block that is returned to the memory pool.</span></div>
<div class="line"><span class="comment">/// \return status code that indicates the execution status of the function.</span></div>
<div class="line"><span class="comment">/// \note MUST REMAIN UNCHANGED: \b osPoolFree shall be consistent in every CMSIS-RTOS.</span></div>
<div class="line"><span class="comment"></span><a class="code" href="group___c_m_s_i_s___r_t_o_s___status.html#gae2e091fefc4c767117727bd5aba4d99e">osStatus</a> <a class="code" href="group___c_m_s_i_s___r_t_o_s___pool_mgmt.html#ga4a861e9c469c9d0daf5721bf174f8e54" title="Return an allocated memory block back to a specific memory pool.">osPoolFree</a> (osPoolId pool_id, <span class="keywordtype">void</span> *block);</div>
<div class="line"> </div>
<div class="line"><span class="preprocessor">#endif // Memory Pool Management available</span></div>
<div class="line"><span class="preprocessor"></span> </div>
<div class="line"> </div>
<div class="line"><span class="comment">// ==== Message Queue Management Functions ====</span></div>
<div class="line"> </div>
<div class="line"><span class="preprocessor">#if (defined (osFeature_MessageQ) && (osFeature_MessageQ != 0)) // Message Queues available</span></div>
<div class="line"><span class="preprocessor"></span> <span class="comment"></span></div>
<div class="line"><span class="comment">/// \brief Create a Message Queue Definition.</span></div>
<div class="line"><span class="comment">/// \param name name of the queue.</span></div>
<div class="line"><span class="comment">/// \param queue_sz maximum number of messages in the queue.</span></div>
<div class="line"><span class="comment">/// \param type data type of a single message element (for debugger).</span></div>
<div class="line"><span class="comment">/// \note CAN BE CHANGED: The parameter to \b osMessageQDef shall be consistent but the</span></div>
<div class="line"><span class="comment">/// macro body is implementation specific in every CMSIS-RTOS.</span></div>
<div class="line"><span class="comment"></span><span class="preprocessor">#if defined (osObjectsExternal) // object is external</span></div>
<div class="line"><span class="preprocessor"></span><span class="preprocessor">#define osMessageQDef(name, queue_sz, type) \</span></div>
<div class="line"><span class="preprocessor">extern const osMessageQDef_t os_messageQ_def_##name</span></div>
<div class="line"><span class="preprocessor"></span><span class="preprocessor">#else // define the object</span></div>
<div class="line"><span class="preprocessor"></span><span class="preprocessor">#define osMessageQDef(name, queue_sz, type) \</span></div>
<div class="line"><span class="preprocessor">const osMessageQDef_t os_messageQ_def_##name = \</span></div>
<div class="line"><span class="preprocessor">{ (queue_sz), sizeof (type) }</span></div>
<div class="line"><span class="preprocessor"></span><span class="preprocessor">#endif</span></div>
<div class="line"><span class="preprocessor"></span> <span class="comment"></span></div>
<div class="line"><span class="comment">/// \brief Access a Message Queue Definition.</span></div>
<div class="line"><span class="comment">/// \param name name of the queue</span></div>
<div class="line"><span class="comment">/// \note CAN BE CHANGED: The parameter to \b osMessageQ shall be consistent but the</span></div>
<div class="line"><span class="comment">/// macro body is implementation specific in every CMSIS-RTOS.</span></div>
<div class="line"><span class="comment"></span><span class="preprocessor">#define osMessageQ(name) \</span></div>
<div class="line"><span class="preprocessor">&os_messageQ_def_##name</span></div>
<div class="line"><span class="preprocessor"></span> <span class="comment"></span></div>
<div class="line"><span class="comment">/// Create and Initialize a Message Queue.</span></div>
<div class="line"><span class="comment">/// \param[in] queue_def queue definition referenced with \ref osMessageQ.</span></div>
<div class="line"><span class="comment">/// \param[in] thread_id thread ID (obtained by \ref osThreadCreate or \ref osThreadGetId) or NULL.</span></div>
<div class="line"><span class="comment">/// \return message queue ID for reference by other functions or NULL in case of error.</span></div>
<div class="line"><span class="comment">/// \note MUST REMAIN UNCHANGED: \b osMessageCreate shall be consistent in every CMSIS-RTOS.</span></div>
<div class="line"><span class="comment"></span>osMessageQId <a class="code" href="group___c_m_s_i_s___r_t_o_s___message.html#gaf3b9345cf426304d46565152bc26fb78" title="Create and Initialize a Message Queue.">osMessageCreate</a> (<span class="keyword">const</span> <a class="code" href="structos_message_q_def__t.html" title="Definition structure for message queue.">osMessageQDef_t</a> *queue_def, osThreadId thread_id);</div>
<div class="line"> <span class="comment"></span></div>
<div class="line"><span class="comment">/// Put a Message to a Queue.</span></div>
<div class="line"><span class="comment">/// \param[in] queue_id message queue ID obtained with \ref osMessageCreate.</span></div>
<div class="line"><span class="comment">/// \param[in] info message information.</span></div>
<div class="line"><span class="comment">/// \param[in] millisec timeout value or 0 in case of no time-out.</span></div>
<div class="line"><span class="comment">/// \return status code that indicates the execution status of the function.</span></div>
<div class="line"><span class="comment">/// \note MUST REMAIN UNCHANGED: \b osMessagePut shall be consistent in every CMSIS-RTOS.</span></div>
<div class="line"><span class="comment"></span><a class="code" href="group___c_m_s_i_s___r_t_o_s___status.html#gae2e091fefc4c767117727bd5aba4d99e">osStatus</a> <a class="code" href="group___c_m_s_i_s___r_t_o_s___message.html#gac0dcf462fc92de8ffaba6cc004514a6d" title="Put a Message to a Queue.">osMessagePut</a> (osMessageQId queue_id, uint32_t info, uint32_t millisec);</div>
<div class="line"> <span class="comment"></span></div>
<div class="line"><span class="comment">/// Get a Message or Wait for a Message from a Queue.</span></div>
<div class="line"><span class="comment">/// \param[in] queue_id message queue ID obtained with \ref osMessageCreate.</span></div>
<div class="line"><span class="comment">/// \param[in] millisec timeout value or 0 in case of no time-out.</span></div>
<div class="line"><span class="comment">/// \return event information that includes status code.</span></div>
<div class="line"><span class="comment">/// \note MUST REMAIN UNCHANGED: \b osMessageGet shall be consistent in every CMSIS-RTOS.</span></div>
<div class="line"><span class="comment"></span><a class="code" href="group___c_m_s_i_s___r_t_o_s___definitions.html#structos_event" title="Event structure contains detailed information about an event.">osEvent</a> <a class="code" href="group___c_m_s_i_s___r_t_o_s___message.html#ga6c6892b8f2296cca6becd57ca2d7e1ae" title="Get a Message or Wait for a Message from a Queue.">osMessageGet</a> (osMessageQId queue_id, uint32_t millisec);</div>
<div class="line"> </div>
<div class="line"><span class="preprocessor">#endif // Message Queues available</span></div>
<div class="line"><span class="preprocessor"></span> </div>
<div class="line"> </div>
<div class="line"><span class="comment">// ==== Mail Queue Management Functions ====</span></div>
<div class="line"> </div>
<div class="line"><span class="preprocessor">#if (defined (osFeature_MailQ) && (osFeature_MailQ != 0)) // Mail Queues available</span></div>
<div class="line"><span class="preprocessor"></span> <span class="comment"></span></div>
<div class="line"><span class="comment">/// \brief Create a Mail Queue Definition.</span></div>
<div class="line"><span class="comment">/// \param name name of the queue</span></div>
<div class="line"><span class="comment">/// \param queue_sz maximum number of messages in queue</span></div>
<div class="line"><span class="comment">/// \param type data type of a single message element</span></div>
<div class="line"><span class="comment">/// \note CAN BE CHANGED: The parameter to \b osMailQDef shall be consistent but the</span></div>
<div class="line"><span class="comment">/// macro body is implementation specific in every CMSIS-RTOS.</span></div>
<div class="line"><span class="comment"></span><span class="preprocessor">#if defined (osObjectsExternal) // object is external</span></div>
<div class="line"><span class="preprocessor"></span><span class="preprocessor">#define osMailQDef(name, queue_sz, type) \</span></div>
<div class="line"><span class="preprocessor">extern const osMailQDef_t os_mailQ_def_##name</span></div>
<div class="line"><span class="preprocessor"></span><span class="preprocessor">#else // define the object</span></div>
<div class="line"><span class="preprocessor"></span><span class="preprocessor">#define osMailQDef(name, queue_sz, type) \</span></div>
<div class="line"><span class="preprocessor">const osMailQDef_t os_mailQ_def_##name = \</span></div>
<div class="line"><span class="preprocessor">{ (queue_sz), sizeof (type) }</span></div>
<div class="line"><span class="preprocessor"></span><span class="preprocessor">#endif</span></div>
<div class="line"><span class="preprocessor"></span> <span class="comment"></span></div>
<div class="line"><span class="comment">/// \brief Access a Mail Queue Definition.</span></div>
<div class="line"><span class="comment">/// \param name name of the queue</span></div>
<div class="line"><span class="comment">/// \note CAN BE CHANGED: The parameter to \b osMailQ shall be consistent but the</span></div>
<div class="line"><span class="comment">/// macro body is implementation specific in every CMSIS-RTOS.</span></div>
<div class="line"><span class="comment"></span><span class="preprocessor">#define osMailQ(name) \</span></div>
<div class="line"><span class="preprocessor">&os_mailQ_def_##name</span></div>
<div class="line"><span class="preprocessor"></span> <span class="comment"></span></div>
<div class="line"><span class="comment">/// Create and Initialize mail queue.</span></div>
<div class="line"><span class="comment">/// \param[in] queue_def reference to the mail queue definition obtain with \ref osMailQ</span></div>
<div class="line"><span class="comment">/// \param[in] thread_id thread ID (obtained by \ref osThreadCreate or \ref osThreadGetId) or NULL.</span></div>
<div class="line"><span class="comment">/// \return mail queue ID for reference by other functions or NULL in case of error.</span></div>
<div class="line"><span class="comment">/// \note MUST REMAIN UNCHANGED: \b osMailCreate shall be consistent in every CMSIS-RTOS.</span></div>
<div class="line"><span class="comment"></span>osMailQId <a class="code" href="group___c_m_s_i_s___r_t_o_s___mail.html#gaa177e7fe5820dd70d8c9e46ded131174" title="Create and Initialize mail queue.">osMailCreate</a> (<span class="keyword">const</span> <a class="code" href="structos_mail_q_def__t.html" title="Definition structure for mail queue.">osMailQDef_t</a> *queue_def, osThreadId thread_id);</div>
<div class="line"> <span class="comment"></span></div>
<div class="line"><span class="comment">/// Allocate a memory block from a mail.</span></div>
<div class="line"><span class="comment">/// \param[in] queue_id mail queue ID obtained with \ref osMailCreate.</span></div>
<div class="line"><span class="comment">/// \param[in] millisec timeout value or 0 in case of no time-out</span></div>
<div class="line"><span class="comment">/// \return pointer to memory block that can be filled with mail or NULL in case of error.</span></div>
<div class="line"><span class="comment">/// \note MUST REMAIN UNCHANGED: \b osMailAlloc shall be consistent in every CMSIS-RTOS.</span></div>
<div class="line"><span class="comment"></span><span class="keywordtype">void</span> *<a class="code" href="group___c_m_s_i_s___r_t_o_s___mail.html#gadf5ce811bd6a56e617e902a1db6c2194" title="Allocate a memory block from a mail.">osMailAlloc</a> (osMailQId queue_id, uint32_t millisec);</div>
<div class="line"> <span class="comment"></span></div>
<div class="line"><span class="comment">/// Allocate a memory block from a mail and set memory block to zero.</span></div>
<div class="line"><span class="comment">/// \param[in] queue_id mail queue ID obtained with \ref osMailCreate.</span></div>
<div class="line"><span class="comment">/// \param[in] millisec timeout value or 0 in case of no time-out</span></div>
<div class="line"><span class="comment">/// \return pointer to memory block that can be filled with mail or NULL in case of error.</span></div>
<div class="line"><span class="comment">/// \note MUST REMAIN UNCHANGED: \b osMailCAlloc shall be consistent in every CMSIS-RTOS.</span></div>
<div class="line"><span class="comment"></span><span class="keywordtype">void</span> *<a class="code" href="group___c_m_s_i_s___r_t_o_s___mail.html#ga8fde74f6fe5b9e88f75cc5eb8f2124fd" title="Allocate a memory block from a mail and set memory block to zero.">osMailCAlloc</a> (osMailQId queue_id, uint32_t millisec);</div>
<div class="line"> <span class="comment"></span></div>
<div class="line"><span class="comment">/// Put a mail to a queue.</span></div>
<div class="line"><span class="comment">/// \param[in] queue_id mail queue ID obtained with \ref osMailCreate.</span></div>
<div class="line"><span class="comment">/// \param[in] mail memory block previously allocated with \ref osMailAlloc or \ref osMailCAlloc.</span></div>
<div class="line"><span class="comment">/// \return status code that indicates the execution status of the function.</span></div>
<div class="line"><span class="comment">/// \note MUST REMAIN UNCHANGED: \b osMailPut shall be consistent in every CMSIS-RTOS.</span></div>
<div class="line"><span class="comment"></span><a class="code" href="group___c_m_s_i_s___r_t_o_s___status.html#gae2e091fefc4c767117727bd5aba4d99e">osStatus</a> <a class="code" href="group___c_m_s_i_s___r_t_o_s___mail.html#ga485ef6f81854ebda8ffbce4832181e02" title="Put a mail to a queue.">osMailPut</a> (osMailQId queue_id, <span class="keywordtype">void</span> *mail);</div>
<div class="line"> <span class="comment"></span></div>
<div class="line"><span class="comment">/// Get a mail from a queue.</span></div>
<div class="line"><span class="comment">/// \param[in] queue_id mail queue ID obtained with \ref osMailCreate.</span></div>
<div class="line"><span class="comment">/// \param[in] millisec timeout value or 0 in case of no time-out</span></div>
<div class="line"><span class="comment">/// \return event that contains mail information or error code.</span></div>
<div class="line"><span class="comment">/// \note MUST REMAIN UNCHANGED: \b osMailGet shall be consistent in every CMSIS-RTOS.</span></div>
<div class="line"><span class="comment"></span><a class="code" href="group___c_m_s_i_s___r_t_o_s___definitions.html#structos_event" title="Event structure contains detailed information about an event.">osEvent</a> <a class="code" href="group___c_m_s_i_s___r_t_o_s___mail.html#gac6ad7e6e7d6c4a80e60da22c57a42ccd" title="Get a mail from a queue.">osMailGet</a> (osMailQId queue_id, uint32_t millisec);</div>
<div class="line"> <span class="comment"></span></div>
<div class="line"><span class="comment">/// Free a memory block from a mail.</span></div>
<div class="line"><span class="comment">/// \param[in] queue_id mail queue ID obtained with \ref osMailCreate.</span></div>
<div class="line"><span class="comment">/// \param[in] mail pointer to the memory block that was obtained with \ref osMailGet.</span></div>
<div class="line"><span class="comment">/// \return status code that indicates the execution status of the function.</span></div>
<div class="line"><span class="comment">/// \note MUST REMAIN UNCHANGED: \b osMailFree shall be consistent in every CMSIS-RTOS.</span></div>
<div class="line"><span class="comment"></span><a class="code" href="group___c_m_s_i_s___r_t_o_s___status.html#gae2e091fefc4c767117727bd5aba4d99e">osStatus</a> <a class="code" href="group___c_m_s_i_s___r_t_o_s___mail.html#ga27c1060cf21393f96b4fd1ed1c0167cc" title="Free a memory block from a mail.">osMailFree</a> (osMailQId queue_id, <span class="keywordtype">void</span> *mail);</div>
<div class="line"> </div>
<div class="line"><span class="preprocessor">#endif // Mail Queues available</span></div>
<div class="line"><span class="preprocessor"></span> </div>
<div class="line"> </div>
<div class="line"><span class="preprocessor">#ifdef __cplusplus</span></div>
<div class="line"><span class="preprocessor"></span>}</div>
<div class="line"><span class="preprocessor">#endif</span></div>
<div class="line"><span class="preprocessor"></span> </div>
<div class="line"><span class="preprocessor">#endif // _CMSIS_OS_H</span></div>
</div><!-- fragment --> </div></div><!-- contents -->
</div><!-- doc-content -->
<!-- start footer part -->
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
<ul>
<li class="footer">Generated on Fri Mar 20 2015 14:58:59 for CMSIS-RTOS by ARM Ltd. All rights reserved.
<!--
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.2
-->
</li>
</ul>
</div>
</body>
</html>
|
Hackathon-111/SecurityController/confd-6.6/doc/api/java/com/tailf/navu/class-use/NavuCdbSubscriptionContext.html
|
kimjinyong/i2nsf-framework
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.6.0_27) on Fri Mar 02 14:52:00 CET 2018 -->
<title>Uses of Interface com.tailf.navu.NavuCdbSubscriptionContext (CONF API Version 6.6)</title>
<meta name="date" content="2018-03-02">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Interface com.tailf.navu.NavuCdbSubscriptionContext (CONF API Version 6.6)";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../com/tailf/navu/NavuCdbSubscriptionContext.html" title="interface in com.tailf.navu">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?com/tailf/navu//class-useNavuCdbSubscriptionContext.html" target="_top">Frames</a></li>
<li><a href="NavuCdbSubscriptionContext.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h2 title="Uses of Interface com.tailf.navu.NavuCdbSubscriptionContext" class="title">Uses of Interface<br>com.tailf.navu.NavuCdbSubscriptionContext</h2>
</div>
<div class="classUseContainer">
<ul class="blockList">
<li class="blockList">
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation">
<caption><span>Packages that use <a href="../../../../com/tailf/navu/NavuCdbSubscriptionContext.html" title="interface in com.tailf.navu">NavuCdbSubscriptionContext</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Package</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href="#com.tailf.navu">com.tailf.navu</a></td>
<td class="colLast">
<div class="block">NAVU (Navigation Utilities) is an API which provides increased
accessibility to the ConfD/NCS populated data model tree:
NAVU-Tree.</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="com.tailf.navu">
<!-- -->
</a>
<h3>Uses of <a href="../../../../com/tailf/navu/NavuCdbSubscriptionContext.html" title="interface in com.tailf.navu">NavuCdbSubscriptionContext</a> in <a href="../../../../com/tailf/navu/package-summary.html">com.tailf.navu</a></h3>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing subinterfaces, and an explanation">
<caption><span>Subinterfaces of <a href="../../../../com/tailf/navu/NavuCdbSubscriptionContext.html" title="interface in com.tailf.navu">NavuCdbSubscriptionContext</a> in <a href="../../../../com/tailf/navu/package-summary.html">com.tailf.navu</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Interface and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>interface </code></td>
<td class="colLast"><code><strong><a href="../../../../com/tailf/navu/NavuCdbSubscriptionConfigContext.html" title="interface in com.tailf.navu">NavuCdbSubscriptionConfigContext</a></strong></code>
<div class="block"><strong>Deprecated.</strong> </div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>interface </code></td>
<td class="colLast"><code><strong><a href="../../../../com/tailf/navu/NavuCdbSubscriptionOperContext.html" title="interface in com.tailf.navu">NavuCdbSubscriptionOperContext</a></strong></code>
<div class="block"><strong>Deprecated.</strong> </div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>interface </code></td>
<td class="colLast"><code><strong><a href="../../../../com/tailf/navu/NavuCdbSubscriptionTwoPhaseContext.html" title="interface in com.tailf.navu">NavuCdbSubscriptionTwoPhaseContext</a></strong></code>
<div class="block"><strong>Deprecated.</strong> </div>
</td>
</tr>
</tbody>
</table>
</li>
</ul>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../com/tailf/navu/NavuCdbSubscriptionContext.html" title="interface in com.tailf.navu">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?com/tailf/navu//class-useNavuCdbSubscriptionContext.html" target="_top">Frames</a></li>
<li><a href="NavuCdbSubscriptionContext.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>
|
trash/client/partials/old-main-menu.html
|
tomatell/membery-engine
|
<div class="sidebar">
<section>
<ul>
<li><a href="#" class="active"><i class="glyphicon-list"></i><span>Register</span></a></li>
<li><a href="#"><i class="glyphicon-th"></i><span>Comm.</span></a></li>
<li><a href="#"><i class="glyphicon-glass"></i><span>Events</span></a></li>
<li><a href="#"><i class="glyphicon-paperclip"></i><span>Documents</span></a></li>
<li><a href="#" class="separator"><i class="glyphicon-euro"></i><span>Finance</span></a></li>
<li><a href="#"><i class="glyphicon-repeat"></i><span>Requests</span></a></li>
</ul>
</section>
<footer></footer>
</div>
<div class="sidebar submenu">
<section>
<ul>
<li><a href="#"><i class="glyphicon-tasks"></i><span>List</span></a></li>
<li><a href="#"><i class="glyphicon-plus"></i><span>Add</span></a></li>
<li><a href="#"><i class="glyphicon-pencil"></i><span>Detail</span></a></li>
</ul>
</section>
<footer></footer>
</div>
|
project/dexter-server/public/tool/findbugs/JAVA/help/DLS_DEAD_LOCAL_STORE_OF_NULL.html
|
KarolAntczak/Dexter
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<!--basic styles-->
<link href="asset/css/bootstrap.css" rel="stylesheet" />
<link rel="stylesheet" href="asset/css/dexter.min.css" />
<link rel="stylesheet" href="asset/css/font-awesome.min.css" />
<!--[if IE 7]>
<link rel="stylesheet" href="asset/css/font-awesome-ie7.min.css">
<![endif]-->
<link rel="stylesheet" href="asset/css/prettify.css" />
<script src="asset/js/jquery-2.0.3.min.js"></script>
<!--[if IE]>
<script src="asset/js/jquery.min.js"></script>
<![endif]-->
<script src="asset/js/prettify.js"></script>
<script type="text/javascript">
$(function() {
window.prettyPrint && prettyPrint();
$('#id-check-horizontal').removeAttr('checked').on('click', function(){
$('#dt-list-1').toggleClass('dl-horizontal').prev().html(this.checked ? '<dl class="dl-horizontal">' : '<dl>');
});
})
</script>
</head>
<body>
<div class="space-12"></div>
<div class="table-grid-info table-grid-info-striped">
<div class="table-grid-row">
<div class="table-grid-label"> Checker Code</div>
<div class="table-grid-value"><h5 class="header blue"><i class="fa fa-bug"></i>
DLS_DEAD_LOCAL_STORE_OF_NULL </h5>
</div>
</div>
<div class="table-grid-row">
<div class="table-grid-label"> Description </div>
<div class="table-grid-value-highlight"><i class="fa fa-th"></i>
Dead store of null to local variable
</div>
<div class="table-grid-row">
<div class="table-grid-label"> Severity </div>
<div class="table-grid-value">
Minor
</div>
</div>
<div class="table-grid-row">
<div class="table-grid-label"> Detector / Bug Pattern </div>
<div class="table-grid-value">
FindDeadLocalStores / DLS
</div>
</div>
<div class="table-grid-row">
<div class="table-grid-label"> More Information </div>
<div class="table-grid-value">
<p>The code stores null into a local variable, and the stored value is not
read. This store may have been introduced to assist the garbage collector, but
as of Java SE 6.0, this is no longer needed or useful.
</p>
</div>
<div class="table-grid-row">
<div class="table-grid-label"> Bad Code </div>
<div class="table-grid-value">
<pre class="prettyprint linenums warning">
</pre>
</div>
</div>
<div class="table-grid-row">
<div class="table-grid-label"> Good Code </div>
<div class="table-grid-value">
<pre class="prettyprint linenums correct">
</pre>
</div>
</div>
<div class="table-grid-row">
<div class="table-grid-label"> CWE ID </div>
<div class="table-grid-value">
<a href="http://cwe.mitre.org/data/definitions/1001.html">CWE-81</a>
</div>
</div>
<div class="table-grid-row">
<div class="table-grid-label"> Code Review Asset </div>
<div class="table-grid-value">
N/A
</div>
</div>
<div class="table-grid-row">
<div class="table-grid-label"> URLs </div>
<div class="table-grid-value"> <i class="fa fa-link"></i>
FINDBUGS SITE :
<p> <i class="fa fa-link"></i>
STACKOVERFLOW SITE :
</div>
</div>
</div>
<div class="space-20"></div>
</body>
<html>
|
test/philip.html5.org/tests/framed.2d.gradient.radial.cone.beside.html
|
kangax/webgl-2d
|
<!DOCTYPE html>
<title>Canvas test: 2d.gradient.radial.cone.beside</title>
<script src="../tests.js"></script>
<link rel="stylesheet" href="../tests.css">
<body class="framed show_output">
<h1>
<a href="2d.gradient.radial.cone.beside.html" target="_parent">2d.​gradient.​radial.​cone.​beside</a>
</h1>
<p><a href="#" id="show_output" onclick="document.body.className += ' show_output'; return false">[show output]</a>
<p class="output">Actual output:</p>
<canvas id="c" class="output" width="100" height="50"><p class="fallback">FAIL (fallback content)</p></canvas>
<p class="output expectedtext">Expected output:<p><img src="green-100x50.png" class="output expected" id="expected" alt="">
<ul id="d"></ul>
<script>
_addTest(function(canvas, ctx) {
ctx.fillStyle = '#0f0';
ctx.fillRect(0, 0, 100, 50);
var g = ctx.createRadialGradient(0, 100, 40, 100, 100, 50);
g.addColorStop(0, '#f00');
g.addColorStop(1, '#f00');
ctx.fillStyle = g;
ctx.fillRect(0, 0, 100, 50);
_assertPixel(canvas, 1,1, 0,255,0,255, "1,1", "0,255,0,255");
_assertPixel(canvas, 50,1, 0,255,0,255, "50,1", "0,255,0,255");
_assertPixel(canvas, 98,1, 0,255,0,255, "98,1", "0,255,0,255");
_assertPixel(canvas, 1,25, 0,255,0,255, "1,25", "0,255,0,255");
_assertPixel(canvas, 50,25, 0,255,0,255, "50,25", "0,255,0,255");
_assertPixel(canvas, 98,25, 0,255,0,255, "98,25", "0,255,0,255");
_assertPixel(canvas, 1,48, 0,255,0,255, "1,48", "0,255,0,255");
_assertPixel(canvas, 50,48, 0,255,0,255, "50,48", "0,255,0,255");
_assertPixel(canvas, 98,48, 0,255,0,255, "98,48", "0,255,0,255");
});
</script>
|
source/widget/Public.Topbar/topbar.css
|
yangjingjing/xue-project
|
/* Generated by less 2.5.1 */
@charset "UTF-8";
/**
*
* @authors Your Name (you@example.org)
* @date 2015-10-29 10:40:12
* @version $Id$
*/
#module-topbar {
height: 30px;
line-height: 30px;
background: #f1f1f1;
z-index: 10;
position: relative;
}
#module-topbar .ui-dropdown {
width: auto !important;
}
#module-topbar .ui-dropdown .dropdown-handle {
display: inline-block;
cursor: pointer;
padding: 0 10px;
border-left: 1px solid transparent;
border-right: 1px solid transparent;
}
#module-topbar .ui-dropdown .dropdown-body {
display: none;
min-width: 120px;
background: #fff;
border: 1px solid #dcdcdc;
position: absolute;
left: 0;
top: 29px;
z-index: 1;
overflow: hidden;
padding: 7px 0;
margin: 0;
}
#module-topbar .ui-dropdown .dropdown-body li {
display: block;
width: 100%;
line-height: 30px;
padding-left: 12px;
color: #666;
}
#module-topbar .ui-dropdown .dropdown-body-widen {
min-width: 200px;
}
#module-topbar .ui-dropdown .dropdown-body-widen .inline-block {
display: inline-block;
width: 60px;
}
#module-topbar .ui-dropdown.hover {
position: relative;
z-index: 10;
}
#module-topbar .ui-dropdown.hover .dropdown-handle {
display: inline-block;
background: #fff;
z-index: 100;
position: relative;
border-color: #dcdcdc;
}
#module-topbar .ui-dropdown.hover .dropdown-handle .dropdown-icon {
transform: rotate(180deg);
transition: transform 0.1s ease-in 0s;
}
#module-topbar .ui-dropdown.hover .dropdown-body {
display: block;
}
#module-topbar .breadcrumb {
margin-bottom: 0;
padding: 0;
background-color: transparent;
color: #666;
}
#module-topbar .breadcrumb li {
height: 30px;
}
#module-topbar .breadcrumb .dropdown-handle {
padding: 0 5px;
}
#module-topbar .breadcrumb .dropdown-body {
margin-left: 6px;
text-align: left;
}
#module-topbar .breadcrumb .hover:before {
padding-right: 9px;
content: " ";
}
#module-topbar .breadcrumb .hover .dropdown-handle {
padding: 0 9px;
margin-left: -3px;
margin-right: -4px;
}
#module-topbar .breadcrumb li > a {
padding: 0 6px;
}
#module-topbar .breadcrumb > li + li:before {
content: "|\00a0";
padding: 0;
}
#module-topbar .ui-header-menu {
width: 1190px;
margin: 0 auto;
}
#module-topbar .ui-header-menu .topleft-bar {
width: 410px;
}
#module-topbar .ui-header-menu .topleft-bar > li:first-child {
float: left;
}
#module-topbar .ui-header-menu .topleft-bar > li:first-child em.text-danger {
max-width: 230px;
height: 30px;
overflow: hidden;
float: left;
}
#module-topbar .ui-header-menu .topright-bar {
width: 780px;
height: 30px;
text-align: right;
}
#module-topbar .ui-header-menu .phone-400 {
width: 210px;
height: 30px;
color: transparent;
background: url(img/phone-400.jpg?__inline) no-repeat;
}
#module-topbar .ui-header-menu .phone-400.active:before {
color: #f1f1f1;
}
|
test/fixtures/packages/simple/panel/panel.html
|
cuit-zhaxin/editor-framework
|
<dom-module id="demo-simple">
<style>
:host {
display: flex;
flex-wrap: nowrap;
align-items: stretch;
flex-direction: column;
}
</style>
<template>
This is a simple panel
</template>
</dom-module>
<script>
Editor.registerPanel( 'demo-simple.panel', {
is: 'demo-simple',
});
</script>
|
examples/webvr_vive_camerarig.html
|
fanzhanggoogle/three.js
|
<!DOCTYPE html>
<html lang="en">
<head>
<title>three.js webvr - htc vive - camera rig</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<style>
body {
font-family: Monospace;
background-color: #101010;
color: #fff;
margin: 0px;
overflow: hidden;
}
a {
color: #f00;
}
</style>
</head>
<body>
<script src="../build/three.js"></script>
<script src="js/vr/ViveController.js"></script>
<script src="js/vr/WebVR.js"></script>
<script src="js/loaders/OBJLoader.js"></script>
<script>
WEBVR.checkAvailability().catch( function( message ) {
document.body.appendChild( WEBVR.getMessageContainer( message ) );
} );
//
var clock = new THREE.Clock();
var container;
var cameraRig, camera, scene, renderer;
var controller1, controller2;
var scale = 1;
var dragging = {
left: false,
right: false
};
var dragStartPointLeft = new THREE.Vector3();
var dragStartPointRight = new THREE.Vector3();
var room;
init();
animate();
function init() {
container = document.createElement( 'div' );
document.body.appendChild( container );
var info = document.createElement( 'div' );
info.style.position = 'absolute';
info.style.top = '10px';
info.style.width = '100%';
info.style.textAlign = 'center';
info.innerHTML = '<a href="http://threejs.org" target="_blank" rel="noopener">three.js</a> webgl - htc vive';
container.appendChild( info );
scene = new THREE.Scene();
scene.background = new THREE.Color( 0x505050 );
camera = new THREE.PerspectiveCamera( 70, window.innerWidth / window.innerHeight, 0.01, 1000 );
cameraRig = new THREE.Group();
cameraRig.add( camera );
scene.add( cameraRig );
room = new THREE.Mesh(
new THREE.BoxGeometry( 6, 6, 6, 8, 8, 8 ),
new THREE.MeshBasicMaterial( { color: 0x404040, wireframe: true } )
);
room.position.y = 3;
scene.add( room );
scene.add( new THREE.HemisphereLight( 0x606060, 0x404040 ) );
var light = new THREE.DirectionalLight( 0xffffff );
light.position.set( 1, 1, 1 ).normalize();
scene.add( light );
var geometry = new THREE.BoxGeometry( 0.2, 0.2, 0.2 );
for ( var i = 0; i < 200; i ++ ) {
var object = new THREE.Mesh( geometry, new THREE.MeshLambertMaterial( { color: Math.random() * 0xffffff } ) );
object.position.x = Math.random() * 4 - 2;
object.position.y = Math.random() * 4 - 2;
object.position.z = Math.random() * 4 - 2;
object.rotation.x = Math.random() * 2 * Math.PI;
object.rotation.y = Math.random() * 2 * Math.PI;
object.rotation.z = Math.random() * 2 * Math.PI;
object.scale.x = Math.random() + 0.5;
object.scale.y = Math.random() + 0.5;
object.scale.z = Math.random() + 0.5;
object.userData.velocity = new THREE.Vector3();
object.userData.velocity.x = Math.random() * 0.01 - 0.005;
object.userData.velocity.y = Math.random() * 0.01 - 0.005;
object.userData.velocity.z = Math.random() * 0.01 - 0.005;
room.add( object );
}
var material = new THREE.MeshStandardMaterial();
var loader = new THREE.OBJLoader();
loader.setPath( 'models/obj/cerberus/' );
loader.load( 'Cerberus.obj', function ( group ) {
// var material = new THREE.MeshBasicMaterial( { wireframe: true } );
var loader = new THREE.TextureLoader();
loader.setPath( 'models/obj/cerberus/' );
material.roughness = 1;
material.metalness = 1;
material.map = loader.load( 'Cerberus_A.jpg' );
material.roughnessMap = loader.load( 'Cerberus_R.jpg' );
material.metalnessMap = loader.load( 'Cerberus_M.jpg' );
material.normalMap = loader.load( 'Cerberus_N.jpg' );
material.map.wrapS = THREE.RepeatWrapping;
material.roughnessMap.wrapS = THREE.RepeatWrapping;
material.metalnessMap.wrapS = THREE.RepeatWrapping;
material.normalMap.wrapS = THREE.RepeatWrapping;
group.traverse( function ( child ) {
if ( child instanceof THREE.Mesh ) {
child.material = material;
}
} );
group.position.y = - 2;
group.rotation.y = - Math.PI / 2;
room.add( group );
} );
var loader = new THREE.CubeTextureLoader();
loader.setPath( 'textures/cube/pisa/' );
material.envMap = loader.load( [
"px.png", "nx.png",
"py.png", "ny.png",
"pz.png", "nz.png"
] );
//
renderer = new THREE.WebGLRenderer( { antialias: true } );
renderer.setPixelRatio( window.devicePixelRatio );
renderer.setSize( window.innerWidth, window.innerHeight );
container.appendChild( renderer.domElement );
renderer.vr.enabled = true;
renderer.vr.standing = true;
// controllers
controller1 = new THREE.ViveController( 0 );
controller1.standingMatrix = renderer.vr.getStandingMatrix();
controller1.addEventListener( 'triggerdown', onTriggerDown );
controller1.addEventListener( 'triggerup', onTriggerUp );
cameraRig.add( controller1 );
controller2 = new THREE.ViveController( 1 );
controller2.standingMatrix = renderer.vr.getStandingMatrix();
controller2.addEventListener( 'triggerdown', onTriggerDown );
controller2.addEventListener( 'triggerup', onTriggerUp );
cameraRig.add( controller2 );
var loader = new THREE.OBJLoader();
loader.setPath( 'models/obj/vive-controller/' );
loader.load( 'vr_controller_vive_1_5.obj', function ( object ) {
var loader = new THREE.TextureLoader();
loader.setPath( 'models/obj/vive-controller/' );
var controller = object.children[ 0 ];
controller.material.map = loader.load( 'onepointfive_texture.png' );
controller.material.specularMap = loader.load( 'onepointfive_spec.png' );
controller1.add( object.clone() );
controller2.add( object.clone() );
} );
WEBVR.getVRDisplay( function ( display ) {
renderer.vr.setDevice( display );
document.body.appendChild( WEBVR.getButton( display, renderer.domElement ) );
} );
//
window.addEventListener( 'resize', onWindowResize, false );
}
function onWindowResize() {
camera.aspect = window.innerWidth / window.innerHeight;
camera.updateProjectionMatrix();
renderer.setSize( window.innerWidth, window.innerHeight );
}
//
function animate() {
renderer.animate( render );
}
function render() {
var delta = clock.getDelta() * 60;
controller1.update();
controller2.update();
scaleUpdate();
for ( var i = 0; i < room.children.length; i ++ ) {
var cube = room.children[ i ];
if ( cube.geometry instanceof THREE.BoxGeometry === false ) continue;
// cube.position.add( cube.userData.velocity );
if ( cube.position.x < - 3 || cube.position.x > 3 ) {
cube.position.x = THREE.Math.clamp( cube.position.x, - 3, 3 );
cube.userData.velocity.x = - cube.userData.velocity.x;
}
if ( cube.position.y < - 3 || cube.position.y > 3 ) {
cube.position.y = THREE.Math.clamp( cube.position.y, - 3, 3 );
cube.userData.velocity.y = - cube.userData.velocity.y;
}
if ( cube.position.z < - 3 || cube.position.z > 3 ) {
cube.position.z = THREE.Math.clamp( cube.position.z, - 3, 3 );
cube.userData.velocity.z = - cube.userData.velocity.z;
}
cube.rotation.x += 0.01 * delta;
}
renderer.render( scene, camera );
}
var previousControllersSegment = new THREE.Line3();
var currentControllersSegment = new THREE.Line3();
var deltaPreviousSegment = new THREE.Vector3();
var deltaCurrentSegment = new THREE.Vector3();
var currentWorldPositionLeft = new THREE.Vector3();
var currentWorldPositionRight = new THREE.Vector3();
function scaleUpdate () {
if ( !dragging.left || !dragging.right ) {
return false;
}
currentWorldPositionLeft.setFromMatrixPosition( controller1.matrixWorld );
currentWorldPositionRight.setFromMatrixPosition( controller2.matrixWorld );
previousControllersSegment.set( dragStartPointLeft, dragStartPointRight );
currentControllersSegment.set( currentWorldPositionLeft, currentWorldPositionRight );
var dist = ( previousControllersSegment.distance() - currentControllersSegment.distance() );
scale += dist;
cameraRig.scale.set( scale, scale, scale );
dragStartPointLeft.copy( currentWorldPositionLeft );
dragStartPointRight.copy( currentWorldPositionRight );
}
function onTriggerDown (event) {
var target = event.target;
var left = target === controller1;
if (left) {
dragging.left = true;
} else {
dragging.right = true;
}
dragStartPointLeft.setFromMatrixPosition(controller1.matrixWorld);
dragStartPointRight.setFromMatrixPosition(controller2.matrixWorld);
}
function onTriggerUp (event) {
var left = event.target === controller1;
if (left) {
dragging.left = false;
} else {
dragging.right = false;
}
}
</script>
</body>
</html>
|
src/src/app/views/partials/checkboxes.html
|
JihadMotii-REISys/doe-eia
|
<md-content class="md-padding" ng-controller="TodoController as vm">
<div layout="row">
<h4 flex="82">{{vm.remaining()}} of {{vm.todos.length}} remaining</h4>
<md-button class="md-primary" ng-click="vm.toggleAll()">Toggle All
</md-button>
</div>
<md-checkbox ng-repeat="todo in vm.todos" ng-model="todo.done">
{{todo.text}}
</md-checkbox>
<form ng-submit="vm.addTodo($event)">
<md-input-container>
<label>Write some todo task here...</label>
<input ng-model="vm.todoText">
</md-input-container>
<md-button class="md-fab md-warn" aria-label="Eat cake">
<i class="material-icons">add</i>
</md-button>
<md-button class="md-primary" ng-click="vm.archive($event)">
Remove completed
</md-button>
</form>
</md-content>
|
third_lib/freetype-2.6/docs/reference/ft2-sizes_management.html
|
chrdwhdhxtszpzclljxk/CrossAny
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>FreeType-2.6 API Reference</title>
<style type="text/css">
a:link { color: #0000EF; }
a:visited { color: #51188E; }
a:hover { color: #FF0000; }
body { font-family: Verdana, Geneva, Arial, Helvetica, serif;
color: #000000;
background: #FFFFFF;
width: 87%;
margin: auto; }
div.section { width: 75%;
margin: auto; }
div.section hr { margin: 4ex 0 1ex 0; }
div.section h4 { background-color: #EEEEFF;
font-size: medium;
font-style: oblique;
font-weight: bold;
margin: 3ex 0 1.5ex 9%;
padding: 0.3ex 0 0.3ex 1%; }
div.section p { margin: 1.5ex 0 1.5ex 10%; }
div.section pre { margin: 3ex 0 3ex 9%;
background-color: #D6E8FF;
padding: 2ex 0 2ex 1%; }
div.section table.fields { width: 90%;
margin: 1.5ex 0 1.5ex 10%; }
div.section table.toc { width: 95%;
margin: 1.5ex 0 1.5ex 5%; }
div.timestamp { text-align: center;
font-size: 69%;
margin: 1.5ex 0 1.5ex 0; }
h1 { text-align: center; }
h3 { font-size: medium;
margin: 4ex 0 1.5ex 0; }
p { text-align: justify; }
pre.colored { color: blue; }
span.keyword { font-family: monospace;
text-align: left;
white-space: pre;
color: darkblue; }
table.fields td.val { font-weight: bold;
text-align: right;
width: 30%;
vertical-align: baseline;
padding: 1ex 1em 1ex 0; }
table.fields td.desc { vertical-align: baseline;
padding: 1ex 0 1ex 1em; }
table.fields td.desc p:first-child { margin: 0; }
table.fields td.desc p { margin: 1.5ex 0 0 0; }
table.index { margin: 6ex auto 6ex auto;
border: 0;
border-collapse: separate;
border-spacing: 1em 0.3ex; }
table.index tr { padding: 0; }
table.index td { padding: 0; }
table.index-toc-link { width: 100%;
border: 0;
border-spacing: 0;
margin: 1ex 0 1ex 0; }
table.index-toc-link td.left { padding: 0 0.5em 0 0.5em;
font-size: 83%;
text-align: left; }
table.index-toc-link td.middle { padding: 0 0.5em 0 0.5em;
font-size: 83%;
text-align: center; }
table.index-toc-link td.right { padding: 0 0.5em 0 0.5em;
font-size: 83%;
text-align: right; }
table.synopsis { margin: 6ex auto 6ex auto;
border: 0;
border-collapse: separate;
border-spacing: 2em 0.6ex; }
table.synopsis tr { padding: 0; }
table.synopsis td { padding: 0; }
table.toc td.link { width: 30%;
text-align: right;
vertical-align: baseline;
padding: 1ex 1em 1ex 0; }
table.toc td.desc { vertical-align: baseline;
padding: 1ex 0 1ex 1em;
text-align: left; }
table.toc td.desc p:first-child { margin: 0;
text-align: left; }
table.toc td.desc p { margin: 1.5ex 0 0 0;
text-align: left; }
</style>
</head>
<body>
<table class="index-toc-link"><tr><td class="left">[<a href="ft2-index.html">Index</a>]</td><td class="right">[<a href="ft2-toc.html">TOC</a>]</td></tr></table>
<h1>FreeType-2.6 API Reference</h1>
<h1>Size Management</h1>
<h2>Synopsis</h2>
<table class="synopsis">
<tr><td><a href="#FT_New_Size">FT_New_Size</a></td><td><a href="#FT_Done_Size">FT_Done_Size</a></td><td><a href="#FT_Activate_Size">FT_Activate_Size</a></td><td></td></tr>
</table>
<p>When creating a new face object (e.g., with <a href="ft2-base_interface.html#FT_New_Face">FT_New_Face</a>), an <a href="ft2-base_interface.html#FT_Size">FT_Size</a> object is automatically created and used to store all pixel-size dependent information, available in the ‘face->size’ field.</p>
<p>It is however possible to create more sizes for a given face, mostly in order to manage several character pixel sizes of the same font family and style. See <a href="ft2-sizes_management.html#FT_New_Size">FT_New_Size</a> and <a href="ft2-sizes_management.html#FT_Done_Size">FT_Done_Size</a>.</p>
<p>Note that <a href="ft2-base_interface.html#FT_Set_Pixel_Sizes">FT_Set_Pixel_Sizes</a> and <a href="ft2-base_interface.html#FT_Set_Char_Size">FT_Set_Char_Size</a> only modify the contents of the current ‘active’ size; you thus need to use <a href="ft2-sizes_management.html#FT_Activate_Size">FT_Activate_Size</a> to change it.</p>
<p>99% of applications won't need the functions provided here, especially if they use the caching sub-system, so be cautious when using these.</p>
<div class="section">
<h3 id="FT_New_Size">FT_New_Size</h3>
<p>Defined in FT_SIZES_H (ftsizes.h).</p>
<pre>
FT_EXPORT( <a href="ft2-basic_types.html#FT_Error">FT_Error</a> )
<b>FT_New_Size</b>( <a href="ft2-base_interface.html#FT_Face">FT_Face</a> face,
<a href="ft2-base_interface.html#FT_Size">FT_Size</a>* size );
</pre>
<p>Create a new size object from a given face object.</p>
<h4>input</h4>
<table class="fields">
<tr><td class="val" id="face">face</td><td class="desc">
<p>A handle to a parent face object.</p>
</td></tr>
</table>
<h4>output</h4>
<table class="fields">
<tr><td class="val" id="asize">asize</td><td class="desc">
<p>A handle to a new size object.</p>
</td></tr>
</table>
<h4>return</h4>
<p>FreeType error code. 0 means success.</p>
<h4>note</h4>
<p>You need to call <a href="ft2-sizes_management.html#FT_Activate_Size">FT_Activate_Size</a> in order to select the new size for upcoming calls to <a href="ft2-base_interface.html#FT_Set_Pixel_Sizes">FT_Set_Pixel_Sizes</a>, <a href="ft2-base_interface.html#FT_Set_Char_Size">FT_Set_Char_Size</a>, <a href="ft2-base_interface.html#FT_Load_Glyph">FT_Load_Glyph</a>, <a href="ft2-base_interface.html#FT_Load_Char">FT_Load_Char</a>, etc.</p>
<hr>
<table class="index-toc-link"><tr><td class="left">[<a href="ft2-index.html">Index</a>]</td><td class="middle">[<a href="#">Top</a>]</td><td class="right">[<a href="ft2-toc.html">TOC</a>]</td></tr></table></div>
<div class="section">
<h3 id="FT_Done_Size">FT_Done_Size</h3>
<p>Defined in FT_SIZES_H (ftsizes.h).</p>
<pre>
FT_EXPORT( <a href="ft2-basic_types.html#FT_Error">FT_Error</a> )
<b>FT_Done_Size</b>( <a href="ft2-base_interface.html#FT_Size">FT_Size</a> size );
</pre>
<p>Discard a given size object. Note that <a href="ft2-base_interface.html#FT_Done_Face">FT_Done_Face</a> automatically discards all size objects allocated with <a href="ft2-sizes_management.html#FT_New_Size">FT_New_Size</a>.</p>
<h4>input</h4>
<table class="fields">
<tr><td class="val" id="size">size</td><td class="desc">
<p>A handle to a target size object.</p>
</td></tr>
</table>
<h4>return</h4>
<p>FreeType error code. 0 means success.</p>
<hr>
<table class="index-toc-link"><tr><td class="left">[<a href="ft2-index.html">Index</a>]</td><td class="middle">[<a href="#">Top</a>]</td><td class="right">[<a href="ft2-toc.html">TOC</a>]</td></tr></table></div>
<div class="section">
<h3 id="FT_Activate_Size">FT_Activate_Size</h3>
<p>Defined in FT_SIZES_H (ftsizes.h).</p>
<pre>
FT_EXPORT( <a href="ft2-basic_types.html#FT_Error">FT_Error</a> )
<b>FT_Activate_Size</b>( <a href="ft2-base_interface.html#FT_Size">FT_Size</a> size );
</pre>
<p>Even though it is possible to create several size objects for a given face (see <a href="ft2-sizes_management.html#FT_New_Size">FT_New_Size</a> for details), functions like <a href="ft2-base_interface.html#FT_Load_Glyph">FT_Load_Glyph</a> or <a href="ft2-base_interface.html#FT_Load_Char">FT_Load_Char</a> only use the one that has been activated last to determine the ‘current character pixel size’.</p>
<p>This function can be used to ‘activate’ a previously created size object.</p>
<h4>input</h4>
<table class="fields">
<tr><td class="val" id="size">size</td><td class="desc">
<p>A handle to a target size object.</p>
</td></tr>
</table>
<h4>return</h4>
<p>FreeType error code. 0 means success.</p>
<h4>note</h4>
<p>If ‘face’ is the size's parent face object, this function changes the value of ‘face->size’ to the input size handle.</p>
<hr>
<table class="index-toc-link"><tr><td class="left">[<a href="ft2-index.html">Index</a>]</td><td class="middle">[<a href="#">Top</a>]</td><td class="right">[<a href="ft2-toc.html">TOC</a>]</td></tr></table></div>
</body>
</html>
|
openephyra-0.1.2/doc/info/ephyra/questionanalysis/class-use/QuestionAnalysis.html
|
Eric-LeiYang/Openephyra
|
<!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_0) on Wed Oct 05 21:20:11 EDT 2011 -->
<TITLE>
Uses of Class info.ephyra.questionanalysis.QuestionAnalysis
</TITLE>
<META NAME="date" CONTENT="2011-10-05">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class info.ephyra.questionanalysis.QuestionAnalysis";
}
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<HR>
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../info/ephyra/questionanalysis/QuestionAnalysis.html" title="class in info.ephyra.questionanalysis"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-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">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../index.html?info/ephyra/questionanalysis//class-useQuestionAnalysis.html" target="_top"><B>FRAMES</B></A>
<A HREF="QuestionAnalysis.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<CENTER>
<H2>
<B>Uses of Class<br>info.ephyra.questionanalysis.QuestionAnalysis</B></H2>
</CENTER>
No usage of info.ephyra.questionanalysis.QuestionAnalysis
<P>
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../info/ephyra/questionanalysis/QuestionAnalysis.html" title="class in info.ephyra.questionanalysis"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-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">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../index.html?info/ephyra/questionanalysis//class-useQuestionAnalysis.html" target="_top"><B>FRAMES</B></A>
<A HREF="QuestionAnalysis.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>
|
tools/arm-bcm2708/gcc-linaro-arm-none-eabi-4.8-2014.04/share/doc/gcc-linaro-arm-none-eabi/html/as.html/Sparc_002dRegs.html
|
darth-vader-lg/glcncrpi
|
<html lang="en">
<head>
<title>Sparc-Regs - Using as</title>
<meta http-equiv="Content-Type" content="text/html">
<meta name="description" content="Using as">
<meta name="generator" content="makeinfo 4.13">
<link title="Top" rel="start" href="index.html#Top">
<link rel="up" href="Sparc_002dSyntax.html#Sparc_002dSyntax" title="Sparc-Syntax">
<link rel="prev" href="Sparc_002dChars.html#Sparc_002dChars" title="Sparc-Chars">
<link rel="next" href="Sparc_002dConstants.html#Sparc_002dConstants" title="Sparc-Constants">
<link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage">
<!--
This file documents the GNU Assembler "as".
Copyright (C) 1991-2013 Free Software Foundation, Inc.
Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.3
or any later version published by the Free Software Foundation;
with no Invariant Sections, with no Front-Cover Texts, and with no
Back-Cover Texts. A copy of the license is included in the
section entitled ``GNU Free Documentation License''.
-->
<meta http-equiv="Content-Style-Type" content="text/css">
<style type="text/css"><!--
pre.display { font-family:inherit }
pre.format { font-family:inherit }
pre.smalldisplay { font-family:inherit; font-size:smaller }
pre.smallformat { font-family:inherit; font-size:smaller }
pre.smallexample { font-size:smaller }
pre.smalllisp { font-size:smaller }
span.sc { font-variant:small-caps }
span.roman { font-family:serif; font-weight:normal; }
span.sansserif { font-family:sans-serif; font-weight:normal; }
--></style>
</head>
<body>
<div class="node">
<a name="Sparc-Regs"></a>
<a name="Sparc_002dRegs"></a>
<p>
Next: <a rel="next" accesskey="n" href="Sparc_002dConstants.html#Sparc_002dConstants">Sparc-Constants</a>,
Previous: <a rel="previous" accesskey="p" href="Sparc_002dChars.html#Sparc_002dChars">Sparc-Chars</a>,
Up: <a rel="up" accesskey="u" href="Sparc_002dSyntax.html#Sparc_002dSyntax">Sparc-Syntax</a>
<hr>
</div>
<h5 class="subsubsection">9.41.3.2 Register Names</h5>
<p><a name="index-Sparc-registers-1911"></a><a name="index-register-names_002c-Sparc-1912"></a>
The Sparc integer register file is broken down into global,
outgoing, local, and incoming.
<ul>
<li>The 8 global registers are referred to as ‘<samp><span class="samp">%g</span><var>n</var></samp>’.
<li>The 8 outgoing registers are referred to as ‘<samp><span class="samp">%o</span><var>n</var></samp>’.
<li>The 8 local registers are referred to as ‘<samp><span class="samp">%l</span><var>n</var></samp>’.
<li>The 8 incoming registers are referred to as ‘<samp><span class="samp">%i</span><var>n</var></samp>’.
<li>The frame pointer register ‘<samp><span class="samp">%i6</span></samp>’ can be referenced using
the alias ‘<samp><span class="samp">%fp</span></samp>’.
<li>The stack pointer register ‘<samp><span class="samp">%o6</span></samp>’ can be referenced using
the alias ‘<samp><span class="samp">%sp</span></samp>’.
</ul>
<p>Floating point registers are simply referred to as ‘<samp><span class="samp">%f</span><var>n</var></samp>’.
When assembling for pre-V9, only 32 floating point registers
are available. For V9 and later there are 64, but there are
restrictions when referencing the upper 32 registers. They
can only be accessed as double or quad, and thus only even
or quad numbered accesses are allowed. For example, ‘<samp><span class="samp">%f34</span></samp>’
is a legal floating point register, but ‘<samp><span class="samp">%f35</span></samp>’ is not.
<p>Certain V9 instructions allow access to ancillary state registers.
Most simply they can be referred to as ‘<samp><span class="samp">%asr</span><var>n</var></samp>’ where
<var>n</var> can be from 16 to 31. However, there are some aliases
defined to reference ASR registers defined for various UltraSPARC
processors:
<ul>
<li>The tick compare register is referred to as ‘<samp><span class="samp">%tick_cmpr</span></samp>’.
<li>The system tick register is referred to as ‘<samp><span class="samp">%stick</span></samp>’. An alias,
‘<samp><span class="samp">%sys_tick</span></samp>’, exists but is deprecated and should not be used
by new software.
<li>The system tick compare register is referred to as ‘<samp><span class="samp">%stick_cmpr</span></samp>’.
An alias, ‘<samp><span class="samp">%sys_tick_cmpr</span></samp>’, exists but is deprecated and should
not be used by new software.
<li>The software interrupt register is referred to as ‘<samp><span class="samp">%softint</span></samp>’.
<li>The set software interrupt register is referred to as ‘<samp><span class="samp">%set_softint</span></samp>’.
The mnemonic ‘<samp><span class="samp">%softint_set</span></samp>’ is provided as an alias.
<li>The clear software interrupt register is referred to as
‘<samp><span class="samp">%clear_softint</span></samp>’. The mnemonic ‘<samp><span class="samp">%softint_clear</span></samp>’ is provided
as an alias.
<li>The performance instrumentation counters register is referred to as
‘<samp><span class="samp">%pic</span></samp>’.
<li>The performance control register is referred to as ‘<samp><span class="samp">%pcr</span></samp>’.
<li>The graphics status register is referred to as ‘<samp><span class="samp">%gsr</span></samp>’.
<li>The V9 dispatch control register is referred to as ‘<samp><span class="samp">%dcr</span></samp>’.
</ul>
<p>Various V9 branch and conditional move instructions allow
specification of which set of integer condition codes to
test. These are referred to as ‘<samp><span class="samp">%xcc</span></samp>’ and ‘<samp><span class="samp">%icc</span></samp>’.
<p>In V9, there are 4 sets of floating point condition codes
which are referred to as ‘<samp><span class="samp">%fcc</span><var>n</var></samp>’.
<p>Several special privileged and non-privileged registers
exist:
<ul>
<li>The V9 address space identifier register is referred to as ‘<samp><span class="samp">%asi</span></samp>’.
<li>The V9 restorable windows register is referred to as ‘<samp><span class="samp">%canrestore</span></samp>’.
<li>The V9 savable windows register is referred to as ‘<samp><span class="samp">%cansave</span></samp>’.
<li>The V9 clean windows register is referred to as ‘<samp><span class="samp">%cleanwin</span></samp>’.
<li>The V9 current window pointer register is referred to as ‘<samp><span class="samp">%cwp</span></samp>’.
<li>The floating-point queue register is referred to as ‘<samp><span class="samp">%fq</span></samp>’.
<li>The V8 co-processor queue register is referred to as ‘<samp><span class="samp">%cq</span></samp>’.
<li>The floating point status register is referred to as ‘<samp><span class="samp">%fsr</span></samp>’.
<li>The other windows register is referred to as ‘<samp><span class="samp">%otherwin</span></samp>’.
<li>The V9 program counter register is referred to as ‘<samp><span class="samp">%pc</span></samp>’.
<li>The V9 next program counter register is referred to as ‘<samp><span class="samp">%npc</span></samp>’.
<li>The V9 processor interrupt level register is referred to as ‘<samp><span class="samp">%pil</span></samp>’.
<li>The V9 processor state register is referred to as ‘<samp><span class="samp">%pstate</span></samp>’.
<li>The trap base address register is referred to as ‘<samp><span class="samp">%tba</span></samp>’.
<li>The V9 tick register is referred to as ‘<samp><span class="samp">%tick</span></samp>’.
<li>The V9 trap level is referred to as ‘<samp><span class="samp">%tl</span></samp>’.
<li>The V9 trap program counter is referred to as ‘<samp><span class="samp">%tpc</span></samp>’.
<li>The V9 trap next program counter is referred to as ‘<samp><span class="samp">%tnpc</span></samp>’.
<li>The V9 trap state is referred to as ‘<samp><span class="samp">%tstate</span></samp>’.
<li>The V9 trap type is referred to as ‘<samp><span class="samp">%tt</span></samp>’.
<li>The V9 condition codes is referred to as ‘<samp><span class="samp">%ccr</span></samp>’.
<li>The V9 floating-point registers state is referred to as ‘<samp><span class="samp">%fprs</span></samp>’.
<li>The V9 version register is referred to as ‘<samp><span class="samp">%ver</span></samp>’.
<li>The V9 window state register is referred to as ‘<samp><span class="samp">%wstate</span></samp>’.
<li>The Y register is referred to as ‘<samp><span class="samp">%y</span></samp>’.
<li>The V8 window invalid mask register is referred to as ‘<samp><span class="samp">%wim</span></samp>’.
<li>The V8 processor state register is referred to as ‘<samp><span class="samp">%psr</span></samp>’.
<li>The V9 global register level register is referred to as ‘<samp><span class="samp">%gl</span></samp>’.
</ul>
<p>Several special register names exist for hypervisor mode code:
<ul>
<li>The hyperprivileged processor state register is referred to as
‘<samp><span class="samp">%hpstate</span></samp>’.
<li>The hyperprivileged trap state register is referred to as ‘<samp><span class="samp">%htstate</span></samp>’.
<li>The hyperprivileged interrupt pending register is referred to as
‘<samp><span class="samp">%hintp</span></samp>’.
<li>The hyperprivileged trap base address register is referred to as
‘<samp><span class="samp">%htba</span></samp>’.
<li>The hyperprivileged implementation version register is referred
to as ‘<samp><span class="samp">%hver</span></samp>’.
<li>The hyperprivileged system tick compare register is referred
to as ‘<samp><span class="samp">%hstick_cmpr</span></samp>’. Note that there is no ‘<samp><span class="samp">%hstick</span></samp>’
register, the normal ‘<samp><span class="samp">%stick</span></samp>’ is used.
</ul>
</body></html>
|
src/main/webapp/extensions/html/templates/variable-media-extension/ConditioncheckTemplate.html
|
cspace-deployment/ui
|
<div class="fl-container-flex fl-fix information-group">
<div class="csc-recordEditor-header fl-container-flex header toggle csc-conditioncheck-objectConditionInformation-label"></div>
<div class="csc-recordEditor-togglable fl-container-flex fl-fix content main">
<div class="info-column">
<div class="info-column">
<div class="info-column3 fl-force-left">
<div class="info-pair-select">
<div class="header">
<div class="label csc-conditioncheck-objectAuditCategory-label"></div>
</div>
<div class="content">
<select class="csc-conditioncheck-objectAuditCategory input-select"><option value="">Options not loaded</option></select>
</div>
</div>
</div>
<div class="info-column3 fl-force-left">
<div class="info-pair-select">
<div class="header">
<div class="label csc-conditioncheck-conservationTreatmentPriority-label"></div>
</div>
<div class="content">
<td><select class="csc-conditioncheck-conservationTreatmentPriority input-select"><option value="">Options not loaded</option></select></td>
</div>
</div>
</div>
<div class="info-column3 fl-force-left">
<div class="info-pair-date">
<div class="header">
<div class="label csc-conditioncheck-nextConditionCheckDate-label"></div>
</div>
<div class="content">
<input type="text" class="csc-conditioncheck-nextConditionCheckDate" />
</div>
</div>
</div>
</div>
<div class="info-column2-50 fl-force-left">
<div class="info-pair">
<div class="header">
<div class="label csc-conditioncheck-completenessGroup-label"></div>
</div>
<div class="content">
<table>
<thead>
<tr>
<td class="label csc-conditioncheck-completeness-label"></td>
<td class="label csc-conditioncheck-completenessDate-label"></td>
<td class="label csc-conditioncheck-completenessNote-label"></td>
</tr>
</thead>
<tbody>
<tr class="csc-conditioncheck-completenessGroup">
<td><select class="csc-conditioncheck-completeness input-select"><option value="">Options not loaded</option></select></td>
<td><input type="text" class="csc-conditioncheck-completenessDate" /></td>
<td><input type="text" class="csc-conditioncheck-completenessNote" /></td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="info-pair">
<div class="header">
<div class="label csc-conditioncheck-hazardGroup-label"></div>
</div>
<div class="content">
<table>
<thead>
<tr>
<td class="label csc-conditioncheck-hazard-label"></td>
<td class="label csc-conditioncheck-hazardDate-label"></td>
<td class="label csc-conditioncheck-hazardNote-label"></td>
</tr>
</thead>
<tbody>
<tr class="csc-conditioncheck-hazardGroup">
<td><select class="csc-conditioncheck-hazard input-select"><option value="">Options not loaded</option></select></td>
<td><input type="text" class="csc-conditioncheck-hazardDate" /></td>
<td><input type="text" class="csc-conditioncheck-hazardNote" /></td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="info-pair">
<div class="header">
<div class="label csc-conditioncheck-techAssessmentGroup-label"></div>
</div>
<div class="content">
<table>
<thead>
<tr>
<td class="label csc-conditioncheck-techAssessment-label"></td>
<td class="label csc-conditioncheck-techAssessmentDate-label"></td>
</tr>
</thead>
<tbody>
<tr class="csc-conditioncheck-techAssessmentGroup">
<td><input type="text" class="csc-conditioncheck-techAssessment" /></td>
<td><input type="text" class="csc-conditioncheck-techAssessmentDate" /></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div class="info-column2-50 fl-force-right">
<div class="info-pair">
<div class="header">
<div class="label csc-conditioncheck-conditionCheckGroup-label"></div>
</div>
<div class="content">
<table>
<thead>
<tr>
<td class="label csc-conditioncheck-condition-label"></td>
<td class="label csc-conditioncheck-conditionDate-label"></td>
<td class="label csc-conditioncheck-conditionNote-label"></td>
</tr>
</thead>
<tbody>
<tr class="csc-conditioncheck-conditionCheckGroup">
<td><select class="csc-conditioncheck-condition input-select"><option value="">Options not loaded</option></select></td>
<td><input type="text" class="csc-conditioncheck-conditionDate" /></td>
<td><input type="text" class="csc-conditioncheck-conditionNote" /></td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="info-pair">
<div class="header">
<div class="label csc-conditioncheck-envConditionNoteGroup-label"></div>
</div>
<div class="content">
<table>
<thead>
<tr>
<td class="label csc-conditioncheck-envConditionNote-label"></td>
<td class="label csc-conditioncheck-envConditionNoteDate-label"></td>
</tr>
</thead>
<tbody>
<tr class="csc-conditioncheck-envConditionNoteGroup">
<td><input type="text" class="csc-conditioncheck-envConditionNote" /></td>
<td><input type="text" class="csc-conditioncheck-envConditionNoteDate" /></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div> <!-- information-group -->
<div class="fl-container-flex fl-fix information-group">
<div class="csc-recordEditor-header fl-container-flex header toggle csc-conditioncheck-conditionCheckInformation-label"></div>
<div class="csc-recordEditor-togglable fl-container-flex fl-fix content main">
<div class="info-column">
<div class="info-column">
<div class="info-column2-50 fl-force-left">
<div class="info-pair">
<span class="label required csc-conditioncheck-conditionCheckRefNumber-label"></span><span class="required">*</span>
<div class="content csc-conditioncheck-reference-number-patternChooserContainer clearfix">
<input type="text" class="input-numeric-long csc-conditioncheck-numberPatternChooser-reference-number pattern-chooser-input" />
</div>
</div>
</div>
<div class="info-column2-50 fl-force-right">
<div class="info-pair-date">
<div class="header">
<div class="label csc-conditioncheck-conditionCheckAssessmentDate-label"></div>
</div>
<div class="content">
<input type="text" class="csc-conditioncheck-conditionCheckAssessmentDate" />
</div>
</div>
</div>
</div>
<div class="info-column">
<div class="info-column3 fl-force-left">
<div class="info-pair-select">
<div class="header">
<div class="label csc-conditioncheck-conditionCheckMethod-label"></div>
</div>
<div class="content">
<select class="csc-conditioncheck-conditionCheckMethod input-select"><option value="">Options not loaded</option></select>
</div>
</div>
</div>
<div class="info-column3 fl-force-left">
<div class="info-pair-select">
<div class="header">
<div class="label csc-conditioncheck-conditionCheckReason-label"></div>
</div>
<div class="content">
<select class="csc-conditioncheck-conditionCheckReason input-select"><option value="">Options not loaded</option></select>
</div>
</div>
</div>
<div class="info-column3 fl-force-left">
<div class="info-pair">
<div class="header">
<div class="label csc-conditioncheck-conditionChecker-label"></div>
</div>
<div class="content">
<input type="text" class="csc-conditioncheck-conditionChecker" />
</div>
</div>
</div>
</div>
<div class="info-pair">
<div class="header">
<div class="label csc-conditioncheck-conditionCheckNote-label"></div>
</div>
<div class="content">
<textarea rows="4" cols="30" class="input-textarea csc-conditioncheck-conditionCheckNote" ></textarea>
</div>
</div>
</div>
</div>
</div> <!-- information-group -->
<div class="fl-container-flex fl-fix information-group">
<div class="csc-recordEditor-header fl-container-flex header toggle csc-conditioncheck-objectRequirementInformation-label"></div>
<div class="csc-recordEditor-togglable fl-container-flex fl-fix content main">
<div class="info-column">
<div class="info-column2-50 fl-force-left">
<div class="info-pair">
<div class="header">
<div class="label csc-conditioncheck-displayRecommendations-label"></div>
</div>
<div class="content">
<textarea rows="4" cols="30" class="input-textarea csc-conditioncheck-displayRecommendations"></textarea>
</div>
</div>
<div class="info-pair">
<div class="header">
<div class="label csc-conditioncheck-handlingRecommendations-label"></div>
</div>
<div class="content">
<textarea rows="4" cols="30" class="input-textarea csc-conditioncheck-handlingRecommendations"></textarea>
</div>
</div>
<div class="info-pair">
<div class="header">
<div class="label csc-conditioncheck-securityRecommendations-label"></div>
</div>
<div class="content">
<textarea rows="4" cols="30" class="input-textarea csc-conditioncheck-securityRecommendations"></textarea>
</div>
</div>
<div class="info-pair">
<div class="header">
<div class="label csc-conditioncheck-storageRequirements-label"></div>
</div>
<div class="content">
<textarea rows="4" cols="30" class="input-textarea csc-conditioncheck-storageRequirements"></textarea>
</div>
</div>
</div>
<div class="info-column2-50 fl-force-right">
<div class="info-pair">
<div class="header">
<div class="label csc-conditioncheck-envRecommendations-label"></div>
</div>
<div class="content">
<textarea rows="4" cols="30" class="input-textarea csc-conditioncheck-envRecommendations"></textarea>
</div>
</div>
<div class="info-pair">
<div class="header">
<div class="label csc-conditioncheck-packingRecommendations-label"></div>
</div>
<div class="content">
<textarea rows="4" cols="30" class="input-textarea csc-conditioncheck-packingRecommendations"></textarea>
</div>
</div>
<div class="info-pair">
<div class="header">
<div class="label csc-conditioncheck-specialRequirements-label"></div>
</div>
<div class="content">
<textarea rows="4" cols="30" class="input-textarea csc-conditioncheck-specialRequirements"></textarea>
</div>
</div>
<div class="info-pair">
<div class="header">
<div class="label csc-conditioncheck-legalRequirements-label"></div>
</div>
<div class="content">
<textarea rows="4" cols="30" class="input-textarea csc-conditioncheck-legalRequirements"></textarea>
</div>
</div>
</div>
<div class="info-column">
<div class="info-pair">
<div class="header">
<div class="label csc-conditioncheck-legalReqsHeldGroup-label"></div>
</div>
<div class="content">
<table>
<thead>
<tr>
<td class="label csc-conditioncheck-legalReqsHeld-label"></td>
<td class="label csc-conditioncheck-legalReqsHeldBeginDate-label"></td>
<td class="label csc-conditioncheck-legalReqsHeldEndDate-label"></td>
<td class="label csc-conditioncheck-legalReqsHeldNumber-label"></td>
<td class="label csc-conditioncheck-legalReqsHeldRenewDate-label"></td>
</tr>
</thead>
<tbody>
<tr class="csc-conditioncheck-legalReqsHeldGroup">
<td><input type="text" class="csc-conditioncheck-legalReqsHeld" /></td>
<td><input type="text" class="csc-conditioncheck-legalReqsHeldBeginDate" /></td>
<td><input type="text" class="csc-conditioncheck-legalReqsHeldEndDate" /></td>
<td><input type="text" class="csc-conditioncheck-legalReqsHeldNumber" /></td>
<td><input type="text" class="csc-conditioncheck-legalReqsHeldRenewDate" /></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div class="info-column2-50 fl-float-left">
<div class="info-pair">
<div class="header">
<div class="label csc-conditioncheck-salvagePriorityCodeGroup-label"></div>
</div>
<div class="content">
<table>
<thead>
<tr>
<td class="label csc-conditioncheck-salvagePriorityCode-label"></td>
<td class="label csc-conditioncheck-salvagePriorityCodeDate-label"></td>
</tr>
</thead>
<tbody>
<tr class="csc-conditioncheck-salvagePriorityCodeGroup">
<td><select class="csc-conditioncheck-salvagePriorityCode input-select"><option value="">Options not loaded</option></select></td>
<td><input type="text" class="csc-conditioncheck-salvagePriorityCodeDate" /></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div><!-- information-group -->
<div class="fl-container-flex fl-fix information-group info-group">
<div class="csc-recordEditor-header fl-container-flex header toggle csc-conditioncheck-technicalChangesGroup-label"></div>
<div class="csc-recordEditor-togglable fl-container-flex fl-fix content main">
<div class="info-column csc-conditioncheck-technicalChangesGroup">
<div class="info-column2-50 fl-force-left">
<div class="info-pair">
<div class="header">
<div class="label csc-conditioncheck-technicalChange-label"></div>
</div>
<div class="content">
<select class="csc-conditioncheck-technicalChange input-select"><option value="">Options not loaded</option></select>
</div>
</div>
<div class="info-pair">
<div class="header">
<div class="label csc-conditioncheck-technicalChangeReason-label"></div>
</div>
<div class="content">
<select class="csc-conditioncheck-technicalChangeReason input-select"><option value="">Options not loaded</option></select>
</div>
</div>
<div class="info-pair">
<div class="header">
<div class="label csc-technicalChangesGroup-technicalChangeDate-label"></div>
</div>
<div class="content flc-inlineEdit-text">
<input class="csc-technicalChangesGroup-technicalChangeDate editableText" type="text" />
</div>
</div>
</div>
<div class="info-column2-50 fl-force-right">
<div class="info-pair">
<div class="header">
<div class="label csc-conditioncheck-technicalChangeNote-label"></div>
</div>
<div class="content">
<textarea rows="4" cols="30" class="input-textarea csc-conditioncheck-technicalChangeNote"></textarea>
</div>
</div>
<div class="info-pair">
<div class="header">
<div class="label csc-conditioncheck-previousSupport-label"></div>
</div>
<div class="content">
<select class="csc-conditioncheck-previousSupport input-select"><option value="">Options not loaded</option></select>
</div>
</div>
<div class="info-pair">
<div class="header">
<div class="label csc-conditioncheck-newSupport-label"></div>
</div>
<div class="content">
<select class="csc-conditioncheck-newSupport input-select"><option value="">Options not loaded</option></select>
</div>
</div>
</div>
</div>
</div>
</div>
|
source/api/apidocs-4.7/root_admin/listNetscalerLoadBalancerNetworks.html
|
terbolous/cloudstack-www
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 1.0 Transitional//EN">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="stylesheet" href="../includes/main.css" type="text/css">
<link rel="shortcut icon" href="../favicon.ico" type="image/x-icon">
<title>Apache CloudStack | The Power Behind Your Cloud</title>
</head>
<body>
<div id="insidetopbg">
<div id="inside_wrapper">
<div class="uppermenu_panel">
<div class="uppermenu_box"></div>
</div>
<div id="main_master">
<div id="inside_header">
<div class="header_top">
<a class="cloud_logo" href="http://cloudstack.org"></a>
<div class="mainemenu_panel"></div>
</div>
</div>
<div id="main_content">
<div class="inside_apileftpanel">
<div class="inside_contentpanel" style="width:930px;">
<div class="api_titlebox">
<div class="api_titlebox_left">
<span>
Apache CloudStack v4.7.0 Root Admin API Reference
</span>
<p></p>
<h1>listNetscalerLoadBalancerNetworks</h1>
<p>lists network that are using a netscaler load balancer device</p>
</div>
<div class="api_titlebox_right">
<a class="api_backbutton" href="../TOC_Root_Admin.html"></a>
</div>
</div>
<div class="api_tablepanel">
<h2>Request parameters</h2>
<table class="apitable">
<tr class="hed">
<td style="width:200px;"><strong>Parameter Name</strong></td><td style="width:500px;">Description</td><td style="width:180px;">Required</td>
</tr>
<tr>
<td style="width:200px;"><strong>lbdeviceid</strong></td><td style="width:500px;"><strong>netscaler load balancer device ID</strong></td><td style="width:180px;"><strong>true</strong></td>
</tr>
<tr>
<td style="width:200px;"><i>keyword</i></td><td style="width:500px;"><i>List by keyword</i></td><td style="width:180px;"><i>false</i></td>
</tr>
<tr>
<td style="width:200px;"><i>page</i></td><td style="width:500px;"><i></i></td><td style="width:180px;"><i>false</i></td>
</tr>
<tr>
<td style="width:200px;"><i>pagesize</i></td><td style="width:500px;"><i></i></td><td style="width:180px;"><i>false</i></td>
</tr>
</table>
</div>
<div class="api_tablepanel">
<h2>Response Tags</h2>
<table class="apitable">
<tr class="hed">
<td style="width:200px;"><strong>Response Name</strong></td><td style="width:500px;">Description</td>
</tr>
<tr>
<td style="width:200px;"><strong>id</strong></td><td style="width:500px;">the id of the network</td>
</tr>
<tr>
<td style="width:200px;"><strong>account</strong></td><td style="width:500px;">the owner of the network</td>
</tr>
<tr>
<td style="width:200px;"><strong>aclid</strong></td><td style="width:500px;">ACL Id associated with the VPC network</td>
</tr>
<tr>
<td style="width:200px;"><strong>acltype</strong></td><td style="width:500px;">acl type - access type to the network</td>
</tr>
<tr>
<td style="width:200px;"><strong>broadcastdomaintype</strong></td><td style="width:500px;">Broadcast domain type of the network</td>
</tr>
<tr>
<td style="width:200px;"><strong>broadcasturi</strong></td><td style="width:500px;">broadcast uri of the network. This parameter is visible to ROOT admins only</td>
</tr>
<tr>
<td style="width:200px;"><strong>canusefordeploy</strong></td><td style="width:500px;">list networks available for vm deployment</td>
</tr>
<tr>
<td style="width:200px;"><strong>cidr</strong></td><td style="width:500px;">Cloudstack managed address space, all CloudStack managed VMs get IP address from CIDR</td>
</tr>
<tr>
<td style="width:200px;"><strong>displaynetwork</strong></td><td style="width:500px;">an optional field, whether to the display the network to the end user or not.</td>
</tr>
<tr>
<td style="width:200px;"><strong>displaytext</strong></td><td style="width:500px;">the displaytext of the network</td>
</tr>
<tr>
<td style="width:200px;"><strong>dns1</strong></td><td style="width:500px;">the first DNS for the network</td>
</tr>
<tr>
<td style="width:200px;"><strong>dns2</strong></td><td style="width:500px;">the second DNS for the network</td>
</tr>
<tr>
<td style="width:200px;"><strong>domain</strong></td><td style="width:500px;">the domain name of the network owner</td>
</tr>
<tr>
<td style="width:200px;"><strong>domainid</strong></td><td style="width:500px;">the domain id of the network owner</td>
</tr>
<tr>
<td style="width:200px;"><strong>gateway</strong></td><td style="width:500px;">the network's gateway</td>
</tr>
<tr>
<td style="width:200px;"><strong>ip6cidr</strong></td><td style="width:500px;">the cidr of IPv6 network</td>
</tr>
<tr>
<td style="width:200px;"><strong>ip6gateway</strong></td><td style="width:500px;">the gateway of IPv6 network</td>
</tr>
<tr>
<td style="width:200px;"><strong>isdefault</strong></td><td style="width:500px;">true if network is default, false otherwise</td>
</tr>
<tr>
<td style="width:200px;"><strong>ispersistent</strong></td><td style="width:500px;">list networks that are persistent</td>
</tr>
<tr>
<td style="width:200px;"><strong>issystem</strong></td><td style="width:500px;">true if network is system, false otherwise</td>
</tr>
<tr>
<td style="width:200px;"><strong>name</strong></td><td style="width:500px;">the name of the network</td>
</tr>
<tr>
<td style="width:200px;"><strong>netmask</strong></td><td style="width:500px;">the network's netmask</td>
</tr>
<tr>
<td style="width:200px;"><strong>networkcidr</strong></td><td style="width:500px;">the network CIDR of the guest network configured with IP reservation. It is the summation of CIDR and RESERVED_IP_RANGE</td>
</tr>
<tr>
<td style="width:200px;"><strong>networkdomain</strong></td><td style="width:500px;">the network domain</td>
</tr>
<tr>
<td style="width:200px;"><strong>networkofferingavailability</strong></td><td style="width:500px;">availability of the network offering the network is created from</td>
</tr>
<tr>
<td style="width:200px;"><strong>networkofferingconservemode</strong></td><td style="width:500px;">true if network offering is ip conserve mode enabled</td>
</tr>
<tr>
<td style="width:200px;"><strong>networkofferingdisplaytext</strong></td><td style="width:500px;">display text of the network offering the network is created from</td>
</tr>
<tr>
<td style="width:200px;"><strong>networkofferingid</strong></td><td style="width:500px;">network offering id the network is created from</td>
</tr>
<tr>
<td style="width:200px;"><strong>networkofferingname</strong></td><td style="width:500px;">name of the network offering the network is created from</td>
</tr>
<tr>
<td style="width:200px;"><strong>physicalnetworkid</strong></td><td style="width:500px;">the physical network id</td>
</tr>
<tr>
<td style="width:200px;"><strong>project</strong></td><td style="width:500px;">the project name of the address</td>
</tr>
<tr>
<td style="width:200px;"><strong>projectid</strong></td><td style="width:500px;">the project id of the ipaddress</td>
</tr>
<tr>
<td style="width:200px;"><strong>related</strong></td><td style="width:500px;">related to what other network configuration</td>
</tr>
<tr>
<td style="width:200px;"><strong>reservediprange</strong></td><td style="width:500px;">the network's IP range not to be used by CloudStack guest VMs and can be used for non CloudStack purposes</td>
</tr>
<tr>
<td style="width:200px;"><strong>restartrequired</strong></td><td style="width:500px;">true network requires restart</td>
</tr>
<tr>
<td style="width:200px;"><strong>specifyipranges</strong></td><td style="width:500px;">true if network supports specifying ip ranges, false otherwise</td>
</tr>
<tr>
<td style="width:200px;"><strong>state</strong></td><td style="width:500px;">state of the network</td>
</tr>
<tr>
<td style="width:200px;"><strong>strechedl2subnet</strong></td><td style="width:500px;">true if network can span multiple zones</td>
</tr>
<tr>
<td style="width:200px;"><strong>subdomainaccess</strong></td><td style="width:500px;">true if users from subdomains can access the domain level network</td>
</tr>
<tr>
<td style="width:200px;"><strong>traffictype</strong></td><td style="width:500px;">the traffic type of the network</td>
</tr>
<tr>
<td style="width:200px;"><strong>type</strong></td><td style="width:500px;">the type of the network</td>
</tr>
<tr>
<td style="width:200px;"><strong>vlan</strong></td><td style="width:500px;">The vlan of the network. This parameter is visible to ROOT admins only</td>
</tr>
<tr>
<td style="width:200px;"><strong>vpcid</strong></td><td style="width:500px;">VPC the network belongs to</td>
</tr>
<tr>
<td style="width:200px;"><strong>zoneid</strong></td><td style="width:500px;">zone id of the network</td>
</tr>
<tr>
<td style="width:200px;"><strong>zonename</strong></td><td style="width:500px;">the name of the zone the network belongs to</td>
</tr>
<tr>
<td style="width:200px;"><strong>zonesnetworkspans</strong></td><td style="width:500px;">If a network is enabled for 'streched l2 subnet' then represents zones on which network currently spans</td>
</tr>
<tr>
<td style="width:200px;"><strong>service(*)</strong></td><td style="width:500px;">the list of services</td>
<tr>
<td style="width:180px; padding-left:25px;"><strong>name</strong></td><td style="width:500px;">the service name</td>
</tr>
<tr>
<td style="width:180px; padding-left:25px;"><strong>capability(*)</strong></td><td style="width:500px;">the list of capabilities</td>
</tr>
<tr>
<td style="width:165px; padding-left:40px;">canchooseservicecapability</td><td style="width:500px;">can this service capability value can be choosable while creatine network offerings</td>
</tr>
<tr>
<td style="width:165px; padding-left:40px;">name</td><td style="width:500px;">the capability name</td>
</tr>
<tr>
<td style="width:165px; padding-left:40px;">value</td><td style="width:500px;">the capability value</td>
</tr>
<tr>
<td style="width:180px; padding-left:25px;"><strong>provider(*)</strong></td><td style="width:500px;">the service provider name</td>
</tr>
<tr>
<td style="width:165px; padding-left:40px;">id</td><td style="width:500px;">uuid of the network provider</td>
</tr>
<tr>
<td style="width:165px; padding-left:40px;">canenableindividualservice</td><td style="width:500px;">true if individual services can be enabled/disabled</td>
</tr>
<tr>
<td style="width:165px; padding-left:40px;">destinationphysicalnetworkid</td><td style="width:500px;">the destination physical network</td>
</tr>
<tr>
<td style="width:165px; padding-left:40px;">name</td><td style="width:500px;">the provider name</td>
</tr>
<tr>
<td style="width:165px; padding-left:40px;">physicalnetworkid</td><td style="width:500px;">the physical network this belongs to</td>
</tr>
<tr>
<td style="width:165px; padding-left:40px;">servicelist</td><td style="width:500px;">services for this provider</td>
</tr>
<tr>
<td style="width:165px; padding-left:40px;">state</td><td style="width:500px;">state of the network provider</td>
</tr>
</tr>
<tr>
<td style="width:200px;"><strong>tags(*)</strong></td><td style="width:500px;">the list of resource tags associated with network</td>
<tr>
<td style="width:180px; padding-left:25px;"><strong>account</strong></td><td style="width:500px;">the account associated with the tag</td>
</tr>
<tr>
<td style="width:180px; padding-left:25px;"><strong>customer</strong></td><td style="width:500px;">customer associated with the tag</td>
</tr>
<tr>
<td style="width:180px; padding-left:25px;"><strong>domain</strong></td><td style="width:500px;">the domain associated with the tag</td>
</tr>
<tr>
<td style="width:180px; padding-left:25px;"><strong>domainid</strong></td><td style="width:500px;">the ID of the domain associated with the tag</td>
</tr>
<tr>
<td style="width:180px; padding-left:25px;"><strong>key</strong></td><td style="width:500px;">tag key name</td>
</tr>
<tr>
<td style="width:180px; padding-left:25px;"><strong>project</strong></td><td style="width:500px;">the project name where tag belongs to</td>
</tr>
<tr>
<td style="width:180px; padding-left:25px;"><strong>projectid</strong></td><td style="width:500px;">the project id the tag belongs to</td>
</tr>
<tr>
<td style="width:180px; padding-left:25px;"><strong>resourceid</strong></td><td style="width:500px;">id of the resource</td>
</tr>
<tr>
<td style="width:180px; padding-left:25px;"><strong>resourcetype</strong></td><td style="width:500px;">resource type</td>
</tr>
<tr>
<td style="width:180px; padding-left:25px;"><strong>value</strong></td><td style="width:500px;">tag value</td>
</tr>
</tr>
</table>
</div>
</div>
</div>
</div>
</div>
<div id="footer">
<div id="comments_thread">
<script type="text/javascript" src="https://comments.apache.org/show_comments.lua?site=test" async="true"></script>
<noscript>
<iframe width="930" height="500" src="https://comments.apache.org/iframe.lua?site=test&page=4.2.0/rootadmin"></iframe>
</noscript>
</div>
<div id="footer_mainmaster">
<p>Copyright © 2015 The Apache Software Foundation, Licensed under the
<a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0.</a>
<br>
Apache, CloudStack, Apache CloudStack, the Apache CloudStack logo, the CloudMonkey logo and the Apache feather logo are trademarks of The Apache Software Foundation.</p>
</div>
</div>
</div>
</div>
</body>
</html>
|
source/api/apidocs-4.7/domain_admin/listVirtualMachines.html
|
pdion891/cloudstack-www
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 1.0 Transitional//EN">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="stylesheet" href="../includes/main.css" type="text/css">
<link rel="shortcut icon" href="../favicon.ico" type="image/x-icon">
<title>Apache CloudStack | The Power Behind Your Cloud</title>
</head>
<body>
<div id="insidetopbg">
<div id="inside_wrapper">
<div class="uppermenu_panel">
<div class="uppermenu_box"></div>
</div>
<div id="main_master">
<div id="inside_header">
<div class="header_top">
<a class="cloud_logo" href="http://cloudstack.org"></a>
<div class="mainemenu_panel"></div>
</div>
</div>
<div id="main_content">
<div class="inside_apileftpanel">
<div class="inside_contentpanel" style="width:930px;">
<div class="api_titlebox">
<div class="api_titlebox_left">
<span>
Apache CloudStack v4.7.0 Domain Admin API Reference
</span>
<p></p>
<h1>listVirtualMachines</h1>
<p>List the virtual machines owned by the account.</p>
</div>
<div class="api_titlebox_right">
<a class="api_backbutton" href="../TOC_Domain_Admin.html"></a>
</div>
</div>
<div class="api_tablepanel">
<h2>Request parameters</h2>
<table class="apitable">
<tr class="hed">
<td style="width:200px;"><strong>Parameter Name</strong></td><td style="width:500px;">Description</td><td style="width:180px;">Required</td>
</tr>
<tr>
<td style="width:200px;"><i>account</i></td><td style="width:500px;"><i>list resources by account. Must be used with the domainId parameter.</i></td><td style="width:180px;"><i>false</i></td>
</tr>
<tr>
<td style="width:200px;"><i>affinitygroupid</i></td><td style="width:500px;"><i>list vms by affinity group</i></td><td style="width:180px;"><i>false</i></td>
</tr>
<tr>
<td style="width:200px;"><i>details</i></td><td style="width:500px;"><i>comma separated list of host details requested, value can be a list of [all, group, nics, stats, secgrp, tmpl, servoff, diskoff, iso, volume, min, affgrp]. If no parameter is passed in, the details will be defaulted to all</i></td><td style="width:180px;"><i>false</i></td>
</tr>
<tr>
<td style="width:200px;"><i>displayvm</i></td><td style="width:500px;"><i>list resources by display flag; only ROOT admin is eligible to pass this parameter</i></td><td style="width:180px;"><i>false</i></td>
</tr>
<tr>
<td style="width:200px;"><i>domainid</i></td><td style="width:500px;"><i>list only resources belonging to the domain specified</i></td><td style="width:180px;"><i>false</i></td>
</tr>
<tr>
<td style="width:200px;"><i>forvirtualnetwork</i></td><td style="width:500px;"><i>list by network type; true if need to list vms using Virtual Network, false otherwise</i></td><td style="width:180px;"><i>false</i></td>
</tr>
<tr>
<td style="width:200px;"><i>groupid</i></td><td style="width:500px;"><i>the group ID</i></td><td style="width:180px;"><i>false</i></td>
</tr>
<tr>
<td style="width:200px;"><i>hostid</i></td><td style="width:500px;"><i>the host ID</i></td><td style="width:180px;"><i>false</i></td>
</tr>
<tr>
<td style="width:200px;"><i>hostid</i></td><td style="width:500px;"><i>the host ID</i></td><td style="width:180px;"><i>false</i></td>
</tr>
<tr>
<td style="width:200px;"><i>hypervisor</i></td><td style="width:500px;"><i>the target hypervisor for the template</i></td><td style="width:180px;"><i>false</i></td>
</tr>
<tr>
<td style="width:200px;"><i>id</i></td><td style="width:500px;"><i>the ID of the virtual machine</i></td><td style="width:180px;"><i>false</i></td>
</tr>
<tr>
<td style="width:200px;"><i>ids</i></td><td style="width:500px;"><i>the IDs of the virtual machines, mutually exclusive with id</i></td><td style="width:180px;"><i>false</i></td>
</tr>
<tr>
<td style="width:200px;"><i>isoid</i></td><td style="width:500px;"><i>list vms by iso</i></td><td style="width:180px;"><i>false</i></td>
</tr>
<tr>
<td style="width:200px;"><i>isrecursive</i></td><td style="width:500px;"><i>defaults to false, but if true, lists all resources from the parent specified by the domainId till leaves.</i></td><td style="width:180px;"><i>false</i></td>
</tr>
<tr>
<td style="width:200px;"><i>keypair</i></td><td style="width:500px;"><i>list vms by ssh keypair name</i></td><td style="width:180px;"><i>false</i></td>
</tr>
<tr>
<td style="width:200px;"><i>keyword</i></td><td style="width:500px;"><i>List by keyword</i></td><td style="width:180px;"><i>false</i></td>
</tr>
<tr>
<td style="width:200px;"><i>listall</i></td><td style="width:500px;"><i>If set to false, list only resources belonging to the command's caller; if set to true - list resources that the caller is authorized to see. Default value is false</i></td><td style="width:180px;"><i>false</i></td>
</tr>
<tr>
<td style="width:200px;"><i>name</i></td><td style="width:500px;"><i>name of the virtual machine (a substring match is made against the parameter value, data for all matching VMs will be returned)</i></td><td style="width:180px;"><i>false</i></td>
</tr>
<tr>
<td style="width:200px;"><i>networkid</i></td><td style="width:500px;"><i>list by network id</i></td><td style="width:180px;"><i>false</i></td>
</tr>
<tr>
<td style="width:200px;"><i>page</i></td><td style="width:500px;"><i></i></td><td style="width:180px;"><i>false</i></td>
</tr>
<tr>
<td style="width:200px;"><i>pagesize</i></td><td style="width:500px;"><i></i></td><td style="width:180px;"><i>false</i></td>
</tr>
<tr>
<td style="width:200px;"><i>podid</i></td><td style="width:500px;"><i>the pod ID</i></td><td style="width:180px;"><i>false</i></td>
</tr>
<tr>
<td style="width:200px;"><i>podid</i></td><td style="width:500px;"><i>the pod ID</i></td><td style="width:180px;"><i>false</i></td>
</tr>
<tr>
<td style="width:200px;"><i>projectid</i></td><td style="width:500px;"><i>list objects by project</i></td><td style="width:180px;"><i>false</i></td>
</tr>
<tr>
<td style="width:200px;"><i>serviceofferingid</i></td><td style="width:500px;"><i>list by the service offering</i></td><td style="width:180px;"><i>false</i></td>
</tr>
<tr>
<td style="width:200px;"><i>state</i></td><td style="width:500px;"><i>state of the virtual machine. Possible values are: Running, Stopped, Present, Destroyed, Expunged. Present is used for the state equal not destroyed.</i></td><td style="width:180px;"><i>false</i></td>
</tr>
<tr>
<td style="width:200px;"><i>storageid</i></td><td style="width:500px;"><i>the storage ID where vm's volumes belong to</i></td><td style="width:180px;"><i>false</i></td>
</tr>
<tr>
<td style="width:200px;"><i>storageid</i></td><td style="width:500px;"><i>the storage ID where vm's volumes belong to</i></td><td style="width:180px;"><i>false</i></td>
</tr>
<tr>
<td style="width:200px;"><i>tags</i></td><td style="width:500px;"><i>List resources by tags (key/value pairs)</i></td><td style="width:180px;"><i>false</i></td>
</tr>
<tr>
<td style="width:200px;"><i>templateid</i></td><td style="width:500px;"><i>list vms by template</i></td><td style="width:180px;"><i>false</i></td>
</tr>
<tr>
<td style="width:200px;"><i>userid</i></td><td style="width:500px;"><i>the user ID that created the VM and is under the account that owns the VM</i></td><td style="width:180px;"><i>false</i></td>
</tr>
<tr>
<td style="width:200px;"><i>vpcid</i></td><td style="width:500px;"><i>list vms by vpc</i></td><td style="width:180px;"><i>false</i></td>
</tr>
<tr>
<td style="width:200px;"><i>zoneid</i></td><td style="width:500px;"><i>the availability zone ID</i></td><td style="width:180px;"><i>false</i></td>
</tr>
</table>
</div>
<div class="api_tablepanel">
<h2>Response Tags</h2>
<table class="apitable">
<tr class="hed">
<td style="width:200px;"><strong>Response Name</strong></td><td style="width:500px;">Description</td>
</tr>
<tr>
<td style="width:200px;"><strong>id</strong></td><td style="width:500px;">the ID of the virtual machine</td>
</tr>
<tr>
<td style="width:200px;"><strong>account</strong></td><td style="width:500px;">the account associated with the virtual machine</td>
</tr>
<tr>
<td style="width:200px;"><strong>cpunumber</strong></td><td style="width:500px;">the number of cpu this virtual machine is running with</td>
</tr>
<tr>
<td style="width:200px;"><strong>cpuspeed</strong></td><td style="width:500px;">the speed of each cpu</td>
</tr>
<tr>
<td style="width:200px;"><strong>cpuused</strong></td><td style="width:500px;">the amount of the vm's CPU currently used</td>
</tr>
<tr>
<td style="width:200px;"><strong>created</strong></td><td style="width:500px;">the date when this virtual machine was created</td>
</tr>
<tr>
<td style="width:200px;"><strong>details</strong></td><td style="width:500px;">Vm details in key/value pairs.</td>
</tr>
<tr>
<td style="width:200px;"><strong>diskioread</strong></td><td style="width:500px;">the read (io) of disk on the vm</td>
</tr>
<tr>
<td style="width:200px;"><strong>diskiowrite</strong></td><td style="width:500px;">the write (io) of disk on the vm</td>
</tr>
<tr>
<td style="width:200px;"><strong>diskkbsread</strong></td><td style="width:500px;">the read (bytes) of disk on the vm</td>
</tr>
<tr>
<td style="width:200px;"><strong>diskkbswrite</strong></td><td style="width:500px;">the write (bytes) of disk on the vm</td>
</tr>
<tr>
<td style="width:200px;"><strong>diskofferingid</strong></td><td style="width:500px;">the ID of the disk offering of the virtual machine</td>
</tr>
<tr>
<td style="width:200px;"><strong>diskofferingname</strong></td><td style="width:500px;">the name of the disk offering of the virtual machine</td>
</tr>
<tr>
<td style="width:200px;"><strong>displayname</strong></td><td style="width:500px;">user generated name. The name of the virtual machine is returned if no displayname exists.</td>
</tr>
<tr>
<td style="width:200px;"><strong>displayvm</strong></td><td style="width:500px;">an optional field whether to the display the vm to the end user or not.</td>
</tr>
<tr>
<td style="width:200px;"><strong>domain</strong></td><td style="width:500px;">the name of the domain in which the virtual machine exists</td>
</tr>
<tr>
<td style="width:200px;"><strong>domainid</strong></td><td style="width:500px;">the ID of the domain in which the virtual machine exists</td>
</tr>
<tr>
<td style="width:200px;"><strong>forvirtualnetwork</strong></td><td style="width:500px;">the virtual network for the service offering</td>
</tr>
<tr>
<td style="width:200px;"><strong>group</strong></td><td style="width:500px;">the group name of the virtual machine</td>
</tr>
<tr>
<td style="width:200px;"><strong>groupid</strong></td><td style="width:500px;">the group ID of the virtual machine</td>
</tr>
<tr>
<td style="width:200px;"><strong>guestosid</strong></td><td style="width:500px;">Os type ID of the virtual machine</td>
</tr>
<tr>
<td style="width:200px;"><strong>haenable</strong></td><td style="width:500px;">true if high-availability is enabled, false otherwise</td>
</tr>
<tr>
<td style="width:200px;"><strong>hostid</strong></td><td style="width:500px;">the ID of the host for the virtual machine</td>
</tr>
<tr>
<td style="width:200px;"><strong>hostname</strong></td><td style="width:500px;">the name of the host for the virtual machine</td>
</tr>
<tr>
<td style="width:200px;"><strong>hypervisor</strong></td><td style="width:500px;">the hypervisor on which the template runs</td>
</tr>
<tr>
<td style="width:200px;"><strong>instancename</strong></td><td style="width:500px;">instance name of the user vm; this parameter is returned to the ROOT admin only</td>
</tr>
<tr>
<td style="width:200px;"><strong>isdynamicallyscalable</strong></td><td style="width:500px;">true if vm contains XS/VMWare tools inorder to support dynamic scaling of VM cpu/memory.</td>
</tr>
<tr>
<td style="width:200px;"><strong>isodisplaytext</strong></td><td style="width:500px;">an alternate display text of the ISO attached to the virtual machine</td>
</tr>
<tr>
<td style="width:200px;"><strong>isoid</strong></td><td style="width:500px;">the ID of the ISO attached to the virtual machine</td>
</tr>
<tr>
<td style="width:200px;"><strong>isoname</strong></td><td style="width:500px;">the name of the ISO attached to the virtual machine</td>
</tr>
<tr>
<td style="width:200px;"><strong>keypair</strong></td><td style="width:500px;">ssh key-pair</td>
</tr>
<tr>
<td style="width:200px;"><strong>memory</strong></td><td style="width:500px;">the memory allocated for the virtual machine</td>
</tr>
<tr>
<td style="width:200px;"><strong>name</strong></td><td style="width:500px;">the name of the virtual machine</td>
</tr>
<tr>
<td style="width:200px;"><strong>networkkbsread</strong></td><td style="width:500px;">the incoming network traffic on the vm</td>
</tr>
<tr>
<td style="width:200px;"><strong>networkkbswrite</strong></td><td style="width:500px;">the outgoing network traffic on the host</td>
</tr>
<tr>
<td style="width:200px;"><strong>ostypeid</strong></td><td style="width:500px;">OS type id of the vm</td>
</tr>
<tr>
<td style="width:200px;"><strong>password</strong></td><td style="width:500px;">the password (if exists) of the virtual machine</td>
</tr>
<tr>
<td style="width:200px;"><strong>passwordenabled</strong></td><td style="width:500px;">true if the password rest feature is enabled, false otherwise</td>
</tr>
<tr>
<td style="width:200px;"><strong>project</strong></td><td style="width:500px;">the project name of the vm</td>
</tr>
<tr>
<td style="width:200px;"><strong>projectid</strong></td><td style="width:500px;">the project id of the vm</td>
</tr>
<tr>
<td style="width:200px;"><strong>publicip</strong></td><td style="width:500px;">public IP address id associated with vm via Static nat rule</td>
</tr>
<tr>
<td style="width:200px;"><strong>publicipid</strong></td><td style="width:500px;">public IP address id associated with vm via Static nat rule</td>
</tr>
<tr>
<td style="width:200px;"><strong>rootdeviceid</strong></td><td style="width:500px;">device ID of the root volume</td>
</tr>
<tr>
<td style="width:200px;"><strong>rootdevicetype</strong></td><td style="width:500px;">device type of the root volume</td>
</tr>
<tr>
<td style="width:200px;"><strong>serviceofferingid</strong></td><td style="width:500px;">the ID of the service offering of the virtual machine</td>
</tr>
<tr>
<td style="width:200px;"><strong>serviceofferingname</strong></td><td style="width:500px;">the name of the service offering of the virtual machine</td>
</tr>
<tr>
<td style="width:200px;"><strong>servicestate</strong></td><td style="width:500px;">State of the Service from LB rule</td>
</tr>
<tr>
<td style="width:200px;"><strong>state</strong></td><td style="width:500px;">the state of the virtual machine</td>
</tr>
<tr>
<td style="width:200px;"><strong>templatedisplaytext</strong></td><td style="width:500px;"> an alternate display text of the template for the virtual machine</td>
</tr>
<tr>
<td style="width:200px;"><strong>templateid</strong></td><td style="width:500px;">the ID of the template for the virtual machine. A -1 is returned if the virtual machine was created from an ISO file.</td>
</tr>
<tr>
<td style="width:200px;"><strong>templatename</strong></td><td style="width:500px;">the name of the template for the virtual machine</td>
</tr>
<tr>
<td style="width:200px;"><strong>userid</strong></td><td style="width:500px;">the user's ID who deployed the virtual machine</td>
</tr>
<tr>
<td style="width:200px;"><strong>username</strong></td><td style="width:500px;">the user's name who deployed the virtual machine</td>
</tr>
<tr>
<td style="width:200px;"><strong>vgpu</strong></td><td style="width:500px;">the vgpu type used by the virtual machine</td>
</tr>
<tr>
<td style="width:200px;"><strong>zoneid</strong></td><td style="width:500px;">the ID of the availablility zone for the virtual machine</td>
</tr>
<tr>
<td style="width:200px;"><strong>zonename</strong></td><td style="width:500px;">the name of the availability zone for the virtual machine</td>
</tr>
<tr>
<td style="width:200px;"><strong>affinitygroup(*)</strong></td><td style="width:500px;">list of affinity groups associated with the virtual machine</td>
<tr>
<td style="width:180px; padding-left:25px;"><strong>id</strong></td><td style="width:500px;">the ID of the affinity group</td>
</tr>
<tr>
<td style="width:180px; padding-left:25px;"><strong>account</strong></td><td style="width:500px;">the account owning the affinity group</td>
</tr>
<tr>
<td style="width:180px; padding-left:25px;"><strong>description</strong></td><td style="width:500px;">the description of the affinity group</td>
</tr>
<tr>
<td style="width:180px; padding-left:25px;"><strong>domain</strong></td><td style="width:500px;">the domain name of the affinity group</td>
</tr>
<tr>
<td style="width:180px; padding-left:25px;"><strong>domainid</strong></td><td style="width:500px;">the domain ID of the affinity group</td>
</tr>
<tr>
<td style="width:180px; padding-left:25px;"><strong>name</strong></td><td style="width:500px;">the name of the affinity group</td>
</tr>
<tr>
<td style="width:180px; padding-left:25px;"><strong>project</strong></td><td style="width:500px;">the project name of the affinity group</td>
</tr>
<tr>
<td style="width:180px; padding-left:25px;"><strong>projectid</strong></td><td style="width:500px;">the project ID of the affinity group</td>
</tr>
<tr>
<td style="width:180px; padding-left:25px;"><strong>type</strong></td><td style="width:500px;">the type of the affinity group</td>
</tr>
<tr>
<td style="width:180px; padding-left:25px;"><strong>virtualmachineIds</strong></td><td style="width:500px;">virtual machine IDs associated with this affinity group</td>
</tr>
</tr>
<tr>
<td style="width:200px;"><strong>nic(*)</strong></td><td style="width:500px;">the list of nics associated with vm</td>
<tr>
<td style="width:180px; padding-left:25px;"><strong>id</strong></td><td style="width:500px;">the ID of the nic</td>
</tr>
<tr>
<td style="width:180px; padding-left:25px;"><strong>broadcasturi</strong></td><td style="width:500px;">the broadcast uri of the nic</td>
</tr>
<tr>
<td style="width:180px; padding-left:25px;"><strong>deviceid</strong></td><td style="width:500px;">device id for the network when plugged into the virtual machine</td>
</tr>
<tr>
<td style="width:180px; padding-left:25px;"><strong>gateway</strong></td><td style="width:500px;">the gateway of the nic</td>
</tr>
<tr>
<td style="width:180px; padding-left:25px;"><strong>ip6address</strong></td><td style="width:500px;">the IPv6 address of network</td>
</tr>
<tr>
<td style="width:180px; padding-left:25px;"><strong>ip6cidr</strong></td><td style="width:500px;">the cidr of IPv6 network</td>
</tr>
<tr>
<td style="width:180px; padding-left:25px;"><strong>ip6gateway</strong></td><td style="width:500px;">the gateway of IPv6 network</td>
</tr>
<tr>
<td style="width:180px; padding-left:25px;"><strong>ipaddress</strong></td><td style="width:500px;">the ip address of the nic</td>
</tr>
<tr>
<td style="width:180px; padding-left:25px;"><strong>isdefault</strong></td><td style="width:500px;">true if nic is default, false otherwise</td>
</tr>
<tr>
<td style="width:180px; padding-left:25px;"><strong>isolationuri</strong></td><td style="width:500px;">the isolation uri of the nic</td>
</tr>
<tr>
<td style="width:180px; padding-left:25px;"><strong>macaddress</strong></td><td style="width:500px;">true if nic is default, false otherwise</td>
</tr>
<tr>
<td style="width:180px; padding-left:25px;"><strong>netmask</strong></td><td style="width:500px;">the netmask of the nic</td>
</tr>
<tr>
<td style="width:180px; padding-left:25px;"><strong>networkid</strong></td><td style="width:500px;">the ID of the corresponding network</td>
</tr>
<tr>
<td style="width:180px; padding-left:25px;"><strong>networkname</strong></td><td style="width:500px;">the name of the corresponding network</td>
</tr>
<tr>
<td style="width:180px; padding-left:25px;"><strong>secondaryip</strong></td><td style="width:500px;">the Secondary ipv4 addr of nic</td>
</tr>
<tr>
<td style="width:180px; padding-left:25px;"><strong>traffictype</strong></td><td style="width:500px;">the traffic type of the nic</td>
</tr>
<tr>
<td style="width:180px; padding-left:25px;"><strong>type</strong></td><td style="width:500px;">the type of the nic</td>
</tr>
<tr>
<td style="width:180px; padding-left:25px;"><strong>virtualmachineid</strong></td><td style="width:500px;">Id of the vm to which the nic belongs</td>
</tr>
</tr>
<tr>
<td style="width:200px;"><strong>securitygroup(*)</strong></td><td style="width:500px;">list of security groups associated with the virtual machine</td>
<tr>
<td style="width:180px; padding-left:25px;"><strong>id</strong></td><td style="width:500px;">the ID of the security group</td>
</tr>
<tr>
<td style="width:180px; padding-left:25px;"><strong>account</strong></td><td style="width:500px;">the account owning the security group</td>
</tr>
<tr>
<td style="width:180px; padding-left:25px;"><strong>description</strong></td><td style="width:500px;">the description of the security group</td>
</tr>
<tr>
<td style="width:180px; padding-left:25px;"><strong>domain</strong></td><td style="width:500px;">the domain name of the security group</td>
</tr>
<tr>
<td style="width:180px; padding-left:25px;"><strong>domainid</strong></td><td style="width:500px;">the domain ID of the security group</td>
</tr>
<tr>
<td style="width:180px; padding-left:25px;"><strong>name</strong></td><td style="width:500px;">the name of the security group</td>
</tr>
<tr>
<td style="width:180px; padding-left:25px;"><strong>project</strong></td><td style="width:500px;">the project name of the group</td>
</tr>
<tr>
<td style="width:180px; padding-left:25px;"><strong>projectid</strong></td><td style="width:500px;">the project id of the group</td>
</tr>
<tr>
<td style="width:180px; padding-left:25px;"><strong>virtualmachinecount</strong></td><td style="width:500px;">the number of virtualmachines associated with this securitygroup</td>
</tr>
<tr>
<td style="width:180px; padding-left:25px;"><strong>virtualmachineids</strong></td><td style="width:500px;">the list of virtualmachine ids associated with this securitygroup</td>
</tr>
<tr>
<td style="width:180px; padding-left:25px;"><strong>egressrule(*)</strong></td><td style="width:500px;">the list of egress rules associated with the security group</td>
</tr>
<tr>
<td style="width:165px; padding-left:40px;">account</td><td style="width:500px;">account owning the security group rule</td>
</tr>
<tr>
<td style="width:165px; padding-left:40px;">cidr</td><td style="width:500px;">the CIDR notation for the base IP address of the security group rule</td>
</tr>
<tr>
<td style="width:165px; padding-left:40px;">endport</td><td style="width:500px;">the ending IP of the security group rule </td>
</tr>
<tr>
<td style="width:165px; padding-left:40px;">icmpcode</td><td style="width:500px;">the code for the ICMP message response</td>
</tr>
<tr>
<td style="width:165px; padding-left:40px;">icmptype</td><td style="width:500px;">the type of the ICMP message response</td>
</tr>
<tr>
<td style="width:165px; padding-left:40px;">protocol</td><td style="width:500px;">the protocol of the security group rule</td>
</tr>
<tr>
<td style="width:165px; padding-left:40px;">ruleid</td><td style="width:500px;">the id of the security group rule</td>
</tr>
<tr>
<td style="width:165px; padding-left:40px;">securitygroupname</td><td style="width:500px;">security group name</td>
</tr>
<tr>
<td style="width:165px; padding-left:40px;">startport</td><td style="width:500px;">the starting IP of the security group rule</td>
</tr>
<tr>
<td style="width:165px; padding-left:40px;">tags(*)</td><td style="width:500px;">the list of resource tags associated with the rule</td>
</tr>
<tr>
<td style="width:180px; padding-left:25px;"><strong>ingressrule(*)</strong></td><td style="width:500px;">the list of ingress rules associated with the security group</td>
</tr>
<tr>
<td style="width:165px; padding-left:40px;">account</td><td style="width:500px;">account owning the security group rule</td>
</tr>
<tr>
<td style="width:165px; padding-left:40px;">cidr</td><td style="width:500px;">the CIDR notation for the base IP address of the security group rule</td>
</tr>
<tr>
<td style="width:165px; padding-left:40px;">endport</td><td style="width:500px;">the ending IP of the security group rule </td>
</tr>
<tr>
<td style="width:165px; padding-left:40px;">icmpcode</td><td style="width:500px;">the code for the ICMP message response</td>
</tr>
<tr>
<td style="width:165px; padding-left:40px;">icmptype</td><td style="width:500px;">the type of the ICMP message response</td>
</tr>
<tr>
<td style="width:165px; padding-left:40px;">protocol</td><td style="width:500px;">the protocol of the security group rule</td>
</tr>
<tr>
<td style="width:165px; padding-left:40px;">ruleid</td><td style="width:500px;">the id of the security group rule</td>
</tr>
<tr>
<td style="width:165px; padding-left:40px;">securitygroupname</td><td style="width:500px;">security group name</td>
</tr>
<tr>
<td style="width:165px; padding-left:40px;">startport</td><td style="width:500px;">the starting IP of the security group rule</td>
</tr>
<tr>
<td style="width:165px; padding-left:40px;">tags(*)</td><td style="width:500px;">the list of resource tags associated with the rule</td>
</tr>
<tr>
<td style="width:180px; padding-left:25px;"><strong>tags(*)</strong></td><td style="width:500px;">the list of resource tags associated with the rule</td>
</tr>
<tr>
<td style="width:165px; padding-left:40px;">account</td><td style="width:500px;">the account associated with the tag</td>
</tr>
<tr>
<td style="width:165px; padding-left:40px;">customer</td><td style="width:500px;">customer associated with the tag</td>
</tr>
<tr>
<td style="width:165px; padding-left:40px;">domain</td><td style="width:500px;">the domain associated with the tag</td>
</tr>
<tr>
<td style="width:165px; padding-left:40px;">domainid</td><td style="width:500px;">the ID of the domain associated with the tag</td>
</tr>
<tr>
<td style="width:165px; padding-left:40px;">key</td><td style="width:500px;">tag key name</td>
</tr>
<tr>
<td style="width:165px; padding-left:40px;">project</td><td style="width:500px;">the project name where tag belongs to</td>
</tr>
<tr>
<td style="width:165px; padding-left:40px;">projectid</td><td style="width:500px;">the project id the tag belongs to</td>
</tr>
<tr>
<td style="width:165px; padding-left:40px;">resourceid</td><td style="width:500px;">id of the resource</td>
</tr>
<tr>
<td style="width:165px; padding-left:40px;">resourcetype</td><td style="width:500px;">resource type</td>
</tr>
<tr>
<td style="width:165px; padding-left:40px;">value</td><td style="width:500px;">tag value</td>
</tr>
<tr>
<td style="width:180px; padding-left:25px;"><strong>jobid</strong></td><td style="width:500px;">the ID of the latest async job acting on this object</td>
</tr>
<tr>
<td style="width:180px; padding-left:25px;"><strong>jobstatus</strong></td><td style="width:500px;">the current status of the latest async job acting on this object</td>
</tr>
</tr>
<tr>
<td style="width:200px;"><strong>tags(*)</strong></td><td style="width:500px;">the list of resource tags associated with vm</td>
<tr>
<td style="width:180px; padding-left:25px;"><strong>account</strong></td><td style="width:500px;">the account associated with the tag</td>
</tr>
<tr>
<td style="width:180px; padding-left:25px;"><strong>customer</strong></td><td style="width:500px;">customer associated with the tag</td>
</tr>
<tr>
<td style="width:180px; padding-left:25px;"><strong>domain</strong></td><td style="width:500px;">the domain associated with the tag</td>
</tr>
<tr>
<td style="width:180px; padding-left:25px;"><strong>domainid</strong></td><td style="width:500px;">the ID of the domain associated with the tag</td>
</tr>
<tr>
<td style="width:180px; padding-left:25px;"><strong>key</strong></td><td style="width:500px;">tag key name</td>
</tr>
<tr>
<td style="width:180px; padding-left:25px;"><strong>project</strong></td><td style="width:500px;">the project name where tag belongs to</td>
</tr>
<tr>
<td style="width:180px; padding-left:25px;"><strong>projectid</strong></td><td style="width:500px;">the project id the tag belongs to</td>
</tr>
<tr>
<td style="width:180px; padding-left:25px;"><strong>resourceid</strong></td><td style="width:500px;">id of the resource</td>
</tr>
<tr>
<td style="width:180px; padding-left:25px;"><strong>resourcetype</strong></td><td style="width:500px;">resource type</td>
</tr>
<tr>
<td style="width:180px; padding-left:25px;"><strong>value</strong></td><td style="width:500px;">tag value</td>
</tr>
</tr>
<tr>
<td style="width:200px;"><strong>jobid</strong></td><td style="width:500px;">the ID of the latest async job acting on this object</td>
</tr>
<tr>
<td style="width:200px;"><strong>jobstatus</strong></td><td style="width:500px;">the current status of the latest async job acting on this object</td>
</tr>
</table>
</div>
</div>
</div>
</div>
</div>
<div id="footer">
<div id="footer_mainmaster">
<p>Copyright © 2015 The Apache Software Foundation, Licensed under the
<a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0.</a>
<br>
Apache, CloudStack, Apache CloudStack, the Apache CloudStack logo, the CloudMonkey logo and the Apache feather logo are trademarks of The Apache Software Foundation.</p>
</div>
</div>
</div>
</div>
</body>
</html>
|
escreening/src/main/webapp/resources/editors/js/directives/modules/mediaelement/demo/index.html
|
VHAINNOVATIONS/Mental-Health-eScreening
|
<h3>mediaelement</h3>
<div class='row' ng-controller='DemoMediaelementCtrl'>
<div class='col-sm-6'>
<video
ng-src='{{ mp4Video }}'
height='240'
width='100%'
preload='auto'
controls='controls'
poster='https://pbs.twimg.com/profile_images/2149314222/square.png'
mediaelement>
<source type='video/mp4' ng-src='{{ mp4Video }}' />
</video>
</div>
<div class='col-sm-6'>
<pre>{{ codeExample }}</pre>
</div>
</div>
|
third_party/webgl/src/sdk/tests/conformance/glsl/functions/glsl-function-reflect.html
|
endlessm/chromium-browser
|
<!--
Copyright (c) 2019 The Khronos Group Inc.
Use of this source code is governed by an MIT-style license that can be
found in the LICENSE.txt file.
-->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>GLSL reflect function test</title>
<link rel="stylesheet" href="../../../resources/js-test-style.css"/>
<link rel="stylesheet" href="../../../resources/glsl-feature-tests.css"/>
<script src="../../../js/js-test-pre.js"></script>
<script src="../../../js/webgl-test-utils.js"> </script>
<script src="../../../js/glsl-generator.js"> </script>
</head>
<body>
<div id="description"></div>
<div id="console"></div>
<script>
"use strict";
GLSLGenerator.runFeatureTest({
feature: "reflect",
args: "$(type) I, $(type) N",
baseArgs: "value$(field)",
testFunc: "$(func)($(type),$(type))",
simpleEmu: [
"$(type) $(func)_emu($(args)) {",
" return I - 2.0 * dot(N, I) * N;",
"}"].join("\n"),
gridRes: 8,
tests: [
["$(output) = vec4(",
" $(func)(",
" $(input).x * 2.0 - 1.0,",
" $(input).y * 2.0 - 1.0),",
" 0,",
" 0,",
" 1);"].join("\n"),
["$(output) = vec4(",
" $(func)(",
" $(input).xy * 2.0 - 1.0,",
" $(input).yz * 2.0 - 1.0),",
" 0, 1);"].join("\n"),
["$(output) = vec4(",
" $(func)(",
" $(input).xyz * 2.0 - 1.0,",
" $(input).yzw * 2.0 - 1.0),",
" 1);"].join("\n"),
["$(output) = ",
" $(func)(",
" $(input).xyzw * 2.0 - 1.0,",
" $(input).yzwx * 2.0 - 1.0);"
].join("\n")
]
});
var successfullyParsed = true;
</script>
</body>
</html>
|
templates/footer.html
|
MakeNowJust/prism
|
<span id="logo"></span>
<p>Handcrafted with ♥, by <a href="http://lea.verou.me" target="_blank">Lea Verou</a>, <a href="https://github.com/Golmote" target="_blank">Golmote</a>
& <a href="https://github.com/LeaVerou/prism/contributors" target="_blank">all these awesome people</a></p>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="download.html">Download</a></li>
<li><a href="faq.html">FAQ</a></li>
<li><a href="test.html">Test drive</a></li>
<li><a href="extending.html">API docs</a></li>
<li><a href="https://github.com/LeaVerou/prism/">Fork Prism on Github</a></li>
<li><a href="http://twitter.com/prismjs">Follow Prism on Twitter</a></li>
</ul>
</nav>
|
model/feature/hot/demo/numeric.html
|
smpn1smg/absis
|
<!doctype html>
<html>
<head>
<meta charset='utf-8'>
<title>Numeric cell type - Handsontable</title>
<!--
Loading Handsontable (full distribution that includes all dependencies)
-->
<link data-jsfiddle="common" rel="stylesheet" media="screen" href="../dist/handsontable.full.css">
<script data-jsfiddle="common" src="../dist/handsontable.full.js"></script>
<script data-jsfiddle="common" src="js/numeral.de-de.js"></script>
<!--
Loading demo dependencies. They are used here only to enhance the examples on this page
-->
<link data-jsfiddle="common" rel="stylesheet" media="screen" href="css/samples.css?20140331">
<script src="js/samples.js"></script>
<script src="js/highlight/highlight.pack.js"></script>
<link rel="stylesheet" media="screen" href="js/highlight/styles/github.css">
<link rel="stylesheet" href="css/font-awesome/css/font-awesome.min.css">
<!--
Facebook open graph. Don't copy this to your project :)
-->
<meta property="og:title" content="Numeric cell type">
<meta property="og:description"
content="Numeric cell type uses Numeral.js as the formatting library.">
<meta property="og:url" content="http://handsontable.com/demo/numeric.html">
<meta property="og:image" content="http://handsontable.com/demo/image/og-image.png">
<meta property="og:image:type" content="image/png">
<meta property="og:image:width" content="409">
<meta property="og:image:height" content="164">
<link rel="canonical" href="http://handsontable.com/demo/numeric.html">
<!--
Google Analytics for GitHub Page. Don't copy this to your project :)
-->
<script src="js/ga.js"></script>
<script data-jsfiddle="common">
function getCarData() {
return [
{car: "Mercedes A 160", year: 2006, price_usd: 6999.99, price_eur: 6999.99},
{car: "Citroen C4 Coupe", year: 2008, price_usd: 8330, price_eur: 8330},
{car: "Audi A4 Avant", year: 2011, price_usd: 33900, price_eur: 33900},
{car: "Opel Astra", year: 2004, price_usd: 7000, price_eur: 7000},
{car: "BMW 320i Coupe", year: 2011, price_usd: 30500, price_eur: 30500}
];
}
</script>
</head>
<body>
<div class="wrapper">
<div class="wrapper-row">
<div id="global-menu-clone">
<h1><a href="../index.html">Handsontable</a></h1>
</div>
<div id="container">
<div class="columnLayout">
<div class="rowLayout">
<div class="descLayout">
<div class="pad" data-jsfiddle="example1">
<a name="lazy"></a>
<h2>Numeric cell type</h2>
<p>By default, Handsontable treats all cell values as <code>string</code> type. This is because <code><textarea></code>
returns a string as its value.</p>
<p>In many cases you will prefer cell values to be treated as <code>number</code> type. This allows to format
numbers nicely and sort them correctly.</p>
<p>To trigger the Numeric cell type, use the option <code>type: 'numeric'</code> in <code>columns</code> array
or
<code>cells</code> function.</p>
<p>Numeric cell type uses <a href="http://numeraljs.com/">Numeral.js</a> as the formatting library. Head over
to
their website to learn about the formatting syntax.</p>
<p>To use number formatting style valid for your language (i18n), load language definition to Numeral.js. See
"Languages" section in <a href="http://numeraljs.com/">Numeral.js docs</a> for more info.</p>
<div id="example1"></div>
<p>
<button name="dump" data-dump="#example1" data-instance="hot" title="Prints current data source to Firebug/Chrome Dev Tools">
Dump
data to console
</button>
</p>
</div>
</div>
<div class="codeLayout">
<div class="pad">
<div class="jsFiddle">
<button class="jsFiddleLink" data-runfiddle="example1">Edit in jsFiddle</button>
</div>
<script data-jsfiddle="example1">
var container = document.getElementById('example1'),
hot;
hot = new Handsontable(container, {
data: getCarData(),
startRows: 7,
startCols: 4,
colHeaders: ['Car', 'Year', 'Price ($)', 'Price (€)'],
columnSorting: true,
columns: [
{
data: 'car'
// 1nd column is simple text, no special options here
},
{
data: 'year',
type: 'numeric'
},
{
data: 'price_usd',
type: 'numeric',
format: '$0,0.00',
language: 'en' // this is the default locale, set up for USD
},
{
data: 'price_eur',
type: 'numeric',
format: '0,0.00 $',
language: 'de' // i18n: use this for EUR (German)
// more locales available on numeraljs.com
}
]
});
</script>
</div>
</div>
</div>
<div class="footer-text">
</div>
</div>
</div>
</div>
</div>
<div id="outside-links-wrapper"></div>
</body>
</html>
|
public/css/main.css
|
mrwolfyu/meteo-bbb
|
@charset "UTF-8";
/*!
* Bootstrap v3.3.6 (http://getbootstrap.com)
* Copyright 2011-2015 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/blob/master/LICENSE)
*/
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
font-family: sans-serif;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%; }
body {
margin: 0; }
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
display: block; }
audio,
canvas,
progress,
video {
display: inline-block;
vertical-align: baseline; }
audio:not([controls]) {
display: none;
height: 0; }
[hidden],
template {
display: none; }
a {
background-color: transparent; }
a:active,
a:hover {
outline: 0; }
abbr[title] {
border-bottom: 1px dotted; }
b,
strong {
font-weight: bold; }
dfn {
font-style: italic; }
h1 {
font-size: 2em;
margin: 0.67em 0; }
mark {
background: #ff0;
color: #000; }
small {
font-size: 80%; }
sub,
sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline; }
sup {
top: -0.5em; }
sub {
bottom: -0.25em; }
img {
border: 0; }
svg:not(:root) {
overflow: hidden; }
figure {
margin: 1em 40px; }
hr {
box-sizing: content-box;
height: 0; }
pre {
overflow: auto; }
code,
kbd,
pre,
samp {
font-family: monospace, monospace;
font-size: 1em; }
button,
input,
optgroup,
select,
textarea {
color: inherit;
font: inherit;
margin: 0; }
button {
overflow: visible; }
button,
select {
text-transform: none; }
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
-webkit-appearance: button;
cursor: pointer; }
button[disabled],
html input[disabled] {
cursor: default; }
button::-moz-focus-inner,
input::-moz-focus-inner {
border: 0;
padding: 0; }
input {
line-height: normal; }
input[type="checkbox"],
input[type="radio"] {
box-sizing: border-box;
padding: 0; }
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
height: auto; }
input[type="search"] {
-webkit-appearance: textfield;
box-sizing: content-box; }
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
-webkit-appearance: none; }
fieldset {
border: 1px solid #c0c0c0;
margin: 0 2px;
padding: 0.35em 0.625em 0.75em; }
legend {
border: 0;
padding: 0; }
textarea {
overflow: auto; }
optgroup {
font-weight: bold; }
table {
border-collapse: collapse;
border-spacing: 0; }
td,
th {
padding: 0; }
/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
*,
*:before,
*:after {
background: transparent !important;
color: #000 !important;
box-shadow: none !important;
text-shadow: none !important; }
a,
a:visited {
text-decoration: underline; }
a[href]:after {
content: " (" attr(href) ")"; }
abbr[title]:after {
content: " (" attr(title) ")"; }
a[href^="#"]:after,
a[href^="javascript:"]:after {
content: ""; }
pre,
blockquote {
border: 1px solid #999;
page-break-inside: avoid; }
thead {
display: table-header-group; }
tr,
img {
page-break-inside: avoid; }
img {
max-width: 100% !important; }
p,
h2,
h3 {
orphans: 3;
widows: 3; }
h2,
h3 {
page-break-after: avoid; }
.navbar {
display: none; }
.btn > .caret,
.dropup > .btn > .caret {
border-top-color: #000 !important; }
.label {
border: 1px solid #000; }
.table {
border-collapse: collapse !important; }
.table td,
.table th {
background-color: #fff !important; }
.table-bordered th,
.table-bordered td {
border: 1px solid #ddd !important; } }
@font-face {
font-family: 'Glyphicons Halflings';
src: url("../fonts/bootstrap/glyphicons-halflings-regular.eot");
src: url("../fonts/bootstrap/glyphicons-halflings-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/bootstrap/glyphicons-halflings-regular.woff2") format("woff2"), url("../fonts/bootstrap/glyphicons-halflings-regular.woff") format("woff"), url("../fonts/bootstrap/glyphicons-halflings-regular.ttf") format("truetype"), url("../fonts/bootstrap/glyphicons-halflings-regular.svg#glyphicons_halflingsregular") format("svg"); }
.glyphicon {
position: relative;
top: 1px;
display: inline-block;
font-family: 'Glyphicons Halflings';
font-style: normal;
font-weight: normal;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale; }
.glyphicon-asterisk:before {
content: "\002a"; }
.glyphicon-plus:before {
content: "\002b"; }
.glyphicon-euro:before,
.glyphicon-eur:before {
content: "\20ac"; }
.glyphicon-minus:before {
content: "\2212"; }
.glyphicon-cloud:before {
content: "\2601"; }
.glyphicon-envelope:before {
content: "\2709"; }
.glyphicon-pencil:before {
content: "\270f"; }
.glyphicon-glass:before {
content: "\e001"; }
.glyphicon-music:before {
content: "\e002"; }
.glyphicon-search:before {
content: "\e003"; }
.glyphicon-heart:before {
content: "\e005"; }
.glyphicon-star:before {
content: "\e006"; }
.glyphicon-star-empty:before {
content: "\e007"; }
.glyphicon-user:before {
content: "\e008"; }
.glyphicon-film:before {
content: "\e009"; }
.glyphicon-th-large:before {
content: "\e010"; }
.glyphicon-th:before {
content: "\e011"; }
.glyphicon-th-list:before {
content: "\e012"; }
.glyphicon-ok:before {
content: "\e013"; }
.glyphicon-remove:before {
content: "\e014"; }
.glyphicon-zoom-in:before {
content: "\e015"; }
.glyphicon-zoom-out:before {
content: "\e016"; }
.glyphicon-off:before {
content: "\e017"; }
.glyphicon-signal:before {
content: "\e018"; }
.glyphicon-cog:before {
content: "\e019"; }
.glyphicon-trash:before {
content: "\e020"; }
.glyphicon-home:before {
content: "\e021"; }
.glyphicon-file:before {
content: "\e022"; }
.glyphicon-time:before {
content: "\e023"; }
.glyphicon-road:before {
content: "\e024"; }
.glyphicon-download-alt:before {
content: "\e025"; }
.glyphicon-download:before {
content: "\e026"; }
.glyphicon-upload:before {
content: "\e027"; }
.glyphicon-inbox:before {
content: "\e028"; }
.glyphicon-play-circle:before {
content: "\e029"; }
.glyphicon-repeat:before {
content: "\e030"; }
.glyphicon-refresh:before {
content: "\e031"; }
.glyphicon-list-alt:before {
content: "\e032"; }
.glyphicon-lock:before {
content: "\e033"; }
.glyphicon-flag:before {
content: "\e034"; }
.glyphicon-headphones:before {
content: "\e035"; }
.glyphicon-volume-off:before {
content: "\e036"; }
.glyphicon-volume-down:before {
content: "\e037"; }
.glyphicon-volume-up:before {
content: "\e038"; }
.glyphicon-qrcode:before {
content: "\e039"; }
.glyphicon-barcode:before {
content: "\e040"; }
.glyphicon-tag:before {
content: "\e041"; }
.glyphicon-tags:before {
content: "\e042"; }
.glyphicon-book:before {
content: "\e043"; }
.glyphicon-bookmark:before {
content: "\e044"; }
.glyphicon-print:before {
content: "\e045"; }
.glyphicon-camera:before {
content: "\e046"; }
.glyphicon-font:before {
content: "\e047"; }
.glyphicon-bold:before {
content: "\e048"; }
.glyphicon-italic:before {
content: "\e049"; }
.glyphicon-text-height:before {
content: "\e050"; }
.glyphicon-text-width:before {
content: "\e051"; }
.glyphicon-align-left:before {
content: "\e052"; }
.glyphicon-align-center:before {
content: "\e053"; }
.glyphicon-align-right:before {
content: "\e054"; }
.glyphicon-align-justify:before {
content: "\e055"; }
.glyphicon-list:before {
content: "\e056"; }
.glyphicon-indent-left:before {
content: "\e057"; }
.glyphicon-indent-right:before {
content: "\e058"; }
.glyphicon-facetime-video:before {
content: "\e059"; }
.glyphicon-picture:before {
content: "\e060"; }
.glyphicon-map-marker:before {
content: "\e062"; }
.glyphicon-adjust:before {
content: "\e063"; }
.glyphicon-tint:before {
content: "\e064"; }
.glyphicon-edit:before {
content: "\e065"; }
.glyphicon-share:before {
content: "\e066"; }
.glyphicon-check:before {
content: "\e067"; }
.glyphicon-move:before {
content: "\e068"; }
.glyphicon-step-backward:before {
content: "\e069"; }
.glyphicon-fast-backward:before {
content: "\e070"; }
.glyphicon-backward:before {
content: "\e071"; }
.glyphicon-play:before {
content: "\e072"; }
.glyphicon-pause:before {
content: "\e073"; }
.glyphicon-stop:before {
content: "\e074"; }
.glyphicon-forward:before {
content: "\e075"; }
.glyphicon-fast-forward:before {
content: "\e076"; }
.glyphicon-step-forward:before {
content: "\e077"; }
.glyphicon-eject:before {
content: "\e078"; }
.glyphicon-chevron-left:before {
content: "\e079"; }
.glyphicon-chevron-right:before {
content: "\e080"; }
.glyphicon-plus-sign:before {
content: "\e081"; }
.glyphicon-minus-sign:before {
content: "\e082"; }
.glyphicon-remove-sign:before {
content: "\e083"; }
.glyphicon-ok-sign:before {
content: "\e084"; }
.glyphicon-question-sign:before {
content: "\e085"; }
.glyphicon-info-sign:before {
content: "\e086"; }
.glyphicon-screenshot:before {
content: "\e087"; }
.glyphicon-remove-circle:before {
content: "\e088"; }
.glyphicon-ok-circle:before {
content: "\e089"; }
.glyphicon-ban-circle:before {
content: "\e090"; }
.glyphicon-arrow-left:before {
content: "\e091"; }
.glyphicon-arrow-right:before {
content: "\e092"; }
.glyphicon-arrow-up:before {
content: "\e093"; }
.glyphicon-arrow-down:before {
content: "\e094"; }
.glyphicon-share-alt:before {
content: "\e095"; }
.glyphicon-resize-full:before {
content: "\e096"; }
.glyphicon-resize-small:before {
content: "\e097"; }
.glyphicon-exclamation-sign:before {
content: "\e101"; }
.glyphicon-gift:before {
content: "\e102"; }
.glyphicon-leaf:before {
content: "\e103"; }
.glyphicon-fire:before {
content: "\e104"; }
.glyphicon-eye-open:before {
content: "\e105"; }
.glyphicon-eye-close:before {
content: "\e106"; }
.glyphicon-warning-sign:before {
content: "\e107"; }
.glyphicon-plane:before {
content: "\e108"; }
.glyphicon-calendar:before {
content: "\e109"; }
.glyphicon-random:before {
content: "\e110"; }
.glyphicon-comment:before {
content: "\e111"; }
.glyphicon-magnet:before {
content: "\e112"; }
.glyphicon-chevron-up:before {
content: "\e113"; }
.glyphicon-chevron-down:before {
content: "\e114"; }
.glyphicon-retweet:before {
content: "\e115"; }
.glyphicon-shopping-cart:before {
content: "\e116"; }
.glyphicon-folder-close:before {
content: "\e117"; }
.glyphicon-folder-open:before {
content: "\e118"; }
.glyphicon-resize-vertical:before {
content: "\e119"; }
.glyphicon-resize-horizontal:before {
content: "\e120"; }
.glyphicon-hdd:before {
content: "\e121"; }
.glyphicon-bullhorn:before {
content: "\e122"; }
.glyphicon-bell:before {
content: "\e123"; }
.glyphicon-certificate:before {
content: "\e124"; }
.glyphicon-thumbs-up:before {
content: "\e125"; }
.glyphicon-thumbs-down:before {
content: "\e126"; }
.glyphicon-hand-right:before {
content: "\e127"; }
.glyphicon-hand-left:before {
content: "\e128"; }
.glyphicon-hand-up:before {
content: "\e129"; }
.glyphicon-hand-down:before {
content: "\e130"; }
.glyphicon-circle-arrow-right:before {
content: "\e131"; }
.glyphicon-circle-arrow-left:before {
content: "\e132"; }
.glyphicon-circle-arrow-up:before {
content: "\e133"; }
.glyphicon-circle-arrow-down:before {
content: "\e134"; }
.glyphicon-globe:before {
content: "\e135"; }
.glyphicon-wrench:before {
content: "\e136"; }
.glyphicon-tasks:before {
content: "\e137"; }
.glyphicon-filter:before {
content: "\e138"; }
.glyphicon-briefcase:before {
content: "\e139"; }
.glyphicon-fullscreen:before {
content: "\e140"; }
.glyphicon-dashboard:before {
content: "\e141"; }
.glyphicon-paperclip:before {
content: "\e142"; }
.glyphicon-heart-empty:before {
content: "\e143"; }
.glyphicon-link:before {
content: "\e144"; }
.glyphicon-phone:before {
content: "\e145"; }
.glyphicon-pushpin:before {
content: "\e146"; }
.glyphicon-usd:before {
content: "\e148"; }
.glyphicon-gbp:before {
content: "\e149"; }
.glyphicon-sort:before {
content: "\e150"; }
.glyphicon-sort-by-alphabet:before {
content: "\e151"; }
.glyphicon-sort-by-alphabet-alt:before {
content: "\e152"; }
.glyphicon-sort-by-order:before {
content: "\e153"; }
.glyphicon-sort-by-order-alt:before {
content: "\e154"; }
.glyphicon-sort-by-attributes:before {
content: "\e155"; }
.glyphicon-sort-by-attributes-alt:before {
content: "\e156"; }
.glyphicon-unchecked:before {
content: "\e157"; }
.glyphicon-expand:before {
content: "\e158"; }
.glyphicon-collapse-down:before {
content: "\e159"; }
.glyphicon-collapse-up:before {
content: "\e160"; }
.glyphicon-log-in:before {
content: "\e161"; }
.glyphicon-flash:before {
content: "\e162"; }
.glyphicon-log-out:before {
content: "\e163"; }
.glyphicon-new-window:before {
content: "\e164"; }
.glyphicon-record:before {
content: "\e165"; }
.glyphicon-save:before {
content: "\e166"; }
.glyphicon-open:before {
content: "\e167"; }
.glyphicon-saved:before {
content: "\e168"; }
.glyphicon-import:before {
content: "\e169"; }
.glyphicon-export:before {
content: "\e170"; }
.glyphicon-send:before {
content: "\e171"; }
.glyphicon-floppy-disk:before {
content: "\e172"; }
.glyphicon-floppy-saved:before {
content: "\e173"; }
.glyphicon-floppy-remove:before {
content: "\e174"; }
.glyphicon-floppy-save:before {
content: "\e175"; }
.glyphicon-floppy-open:before {
content: "\e176"; }
.glyphicon-credit-card:before {
content: "\e177"; }
.glyphicon-transfer:before {
content: "\e178"; }
.glyphicon-cutlery:before {
content: "\e179"; }
.glyphicon-header:before {
content: "\e180"; }
.glyphicon-compressed:before {
content: "\e181"; }
.glyphicon-earphone:before {
content: "\e182"; }
.glyphicon-phone-alt:before {
content: "\e183"; }
.glyphicon-tower:before {
content: "\e184"; }
.glyphicon-stats:before {
content: "\e185"; }
.glyphicon-sd-video:before {
content: "\e186"; }
.glyphicon-hd-video:before {
content: "\e187"; }
.glyphicon-subtitles:before {
content: "\e188"; }
.glyphicon-sound-stereo:before {
content: "\e189"; }
.glyphicon-sound-dolby:before {
content: "\e190"; }
.glyphicon-sound-5-1:before {
content: "\e191"; }
.glyphicon-sound-6-1:before {
content: "\e192"; }
.glyphicon-sound-7-1:before {
content: "\e193"; }
.glyphicon-copyright-mark:before {
content: "\e194"; }
.glyphicon-registration-mark:before {
content: "\e195"; }
.glyphicon-cloud-download:before {
content: "\e197"; }
.glyphicon-cloud-upload:before {
content: "\e198"; }
.glyphicon-tree-conifer:before {
content: "\e199"; }
.glyphicon-tree-deciduous:before {
content: "\e200"; }
.glyphicon-cd:before {
content: "\e201"; }
.glyphicon-save-file:before {
content: "\e202"; }
.glyphicon-open-file:before {
content: "\e203"; }
.glyphicon-level-up:before {
content: "\e204"; }
.glyphicon-copy:before {
content: "\e205"; }
.glyphicon-paste:before {
content: "\e206"; }
.glyphicon-alert:before {
content: "\e209"; }
.glyphicon-equalizer:before {
content: "\e210"; }
.glyphicon-king:before {
content: "\e211"; }
.glyphicon-queen:before {
content: "\e212"; }
.glyphicon-pawn:before {
content: "\e213"; }
.glyphicon-bishop:before {
content: "\e214"; }
.glyphicon-knight:before {
content: "\e215"; }
.glyphicon-baby-formula:before {
content: "\e216"; }
.glyphicon-tent:before {
content: "\26fa"; }
.glyphicon-blackboard:before {
content: "\e218"; }
.glyphicon-bed:before {
content: "\e219"; }
.glyphicon-apple:before {
content: "\f8ff"; }
.glyphicon-erase:before {
content: "\e221"; }
.glyphicon-hourglass:before {
content: "\231b"; }
.glyphicon-lamp:before {
content: "\e223"; }
.glyphicon-duplicate:before {
content: "\e224"; }
.glyphicon-piggy-bank:before {
content: "\e225"; }
.glyphicon-scissors:before {
content: "\e226"; }
.glyphicon-bitcoin:before {
content: "\e227"; }
.glyphicon-btc:before {
content: "\e227"; }
.glyphicon-xbt:before {
content: "\e227"; }
.glyphicon-yen:before {
content: "\00a5"; }
.glyphicon-jpy:before {
content: "\00a5"; }
.glyphicon-ruble:before {
content: "\20bd"; }
.glyphicon-rub:before {
content: "\20bd"; }
.glyphicon-scale:before {
content: "\e230"; }
.glyphicon-ice-lolly:before {
content: "\e231"; }
.glyphicon-ice-lolly-tasted:before {
content: "\e232"; }
.glyphicon-education:before {
content: "\e233"; }
.glyphicon-option-horizontal:before {
content: "\e234"; }
.glyphicon-option-vertical:before {
content: "\e235"; }
.glyphicon-menu-hamburger:before {
content: "\e236"; }
.glyphicon-modal-window:before {
content: "\e237"; }
.glyphicon-oil:before {
content: "\e238"; }
.glyphicon-grain:before {
content: "\e239"; }
.glyphicon-sunglasses:before {
content: "\e240"; }
.glyphicon-text-size:before {
content: "\e241"; }
.glyphicon-text-color:before {
content: "\e242"; }
.glyphicon-text-background:before {
content: "\e243"; }
.glyphicon-object-align-top:before {
content: "\e244"; }
.glyphicon-object-align-bottom:before {
content: "\e245"; }
.glyphicon-object-align-horizontal:before {
content: "\e246"; }
.glyphicon-object-align-left:before {
content: "\e247"; }
.glyphicon-object-align-vertical:before {
content: "\e248"; }
.glyphicon-object-align-right:before {
content: "\e249"; }
.glyphicon-triangle-right:before {
content: "\e250"; }
.glyphicon-triangle-left:before {
content: "\e251"; }
.glyphicon-triangle-bottom:before {
content: "\e252"; }
.glyphicon-triangle-top:before {
content: "\e253"; }
.glyphicon-console:before {
content: "\e254"; }
.glyphicon-superscript:before {
content: "\e255"; }
.glyphicon-subscript:before {
content: "\e256"; }
.glyphicon-menu-left:before {
content: "\e257"; }
.glyphicon-menu-right:before {
content: "\e258"; }
.glyphicon-menu-down:before {
content: "\e259"; }
.glyphicon-menu-up:before {
content: "\e260"; }
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box; }
*:before,
*:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box; }
html {
font-size: 10px;
-webkit-tap-highlight-color: transparent; }
body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 14px;
line-height: 1.42857;
color: #333333;
background-color: #fff; }
input,
button,
select,
textarea {
font-family: inherit;
font-size: inherit;
line-height: inherit; }
a {
color: #4d90fc;
text-decoration: none; }
a:hover, a:focus {
color: #0462f8;
text-decoration: underline; }
a:focus {
outline: thin dotted;
outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px; }
figure {
margin: 0; }
img {
vertical-align: middle; }
.img-responsive {
display: block;
max-width: 100%;
height: auto; }
.img-rounded {
border-radius: 6px; }
.img-thumbnail {
padding: 4px;
line-height: 1.42857;
background-color: #fff;
border: 1px solid #ddd;
border-radius: 4px;
-webkit-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
display: inline-block;
max-width: 100%;
height: auto; }
.img-circle {
border-radius: 50%; }
hr {
margin-top: 20px;
margin-bottom: 20px;
border: 0;
border-top: 1px solid #eeeeee; }
.sr-only {
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
padding: 0;
overflow: hidden;
clip: rect(0, 0, 0, 0);
border: 0; }
.sr-only-focusable:active, .sr-only-focusable:focus {
position: static;
width: auto;
height: auto;
margin: 0;
overflow: visible;
clip: auto; }
[role="button"] {
cursor: pointer; }
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
font-family: "HelveticaNeue-CondensedBold", "Helvetica Neue", Arial, sans-serif;
font-weight: 500;
line-height: 1.1;
color: inherit; }
h1 small,
h1 .small, h2 small,
h2 .small, h3 small,
h3 .small, h4 small,
h4 .small, h5 small,
h5 .small, h6 small,
h6 .small,
.h1 small,
.h1 .small, .h2 small,
.h2 .small, .h3 small,
.h3 .small, .h4 small,
.h4 .small, .h5 small,
.h5 .small, .h6 small,
.h6 .small {
font-weight: normal;
line-height: 1;
color: #777777; }
h1, .h1,
h2, .h2,
h3, .h3 {
margin-top: 20px;
margin-bottom: 10px; }
h1 small,
h1 .small, .h1 small,
.h1 .small,
h2 small,
h2 .small, .h2 small,
.h2 .small,
h3 small,
h3 .small, .h3 small,
.h3 .small {
font-size: 65%; }
h4, .h4,
h5, .h5,
h6, .h6 {
margin-top: 10px;
margin-bottom: 10px; }
h4 small,
h4 .small, .h4 small,
.h4 .small,
h5 small,
h5 .small, .h5 small,
.h5 .small,
h6 small,
h6 .small, .h6 small,
.h6 .small {
font-size: 75%; }
h1, .h1 {
font-size: 36px; }
h2, .h2 {
font-size: 30px; }
h3, .h3 {
font-size: 24px; }
h4, .h4 {
font-size: 18px; }
h5, .h5 {
font-size: 14px; }
h6, .h6 {
font-size: 12px; }
p {
margin: 0 0 10px; }
.lead {
margin-bottom: 20px;
font-size: 16px;
font-weight: 300;
line-height: 1.4; }
@media (min-width: 768px) {
.lead {
font-size: 21px; } }
small,
.small {
font-size: 85%; }
mark,
.mark {
background-color: #fdf8e2;
padding: .2em; }
.text-left {
text-align: left; }
.text-right {
text-align: right; }
.text-center {
text-align: center; }
.text-justify {
text-align: justify; }
.text-nowrap {
white-space: nowrap; }
.text-lowercase {
text-transform: lowercase; }
.text-uppercase, .initialism {
text-transform: uppercase; }
.text-capitalize {
text-transform: capitalize; }
.text-muted {
color: #777777; }
.text-primary {
color: #4d90fc; }
a.text-primary:hover,
a.text-primary:focus {
color: #1b71fb; }
.text-success {
color: #569845; }
a.text-success:hover,
a.text-success:focus {
color: #427535; }
.text-info {
color: #3a87ad; }
a.text-info:hover,
a.text-info:focus {
color: #2d6987; }
.text-warning {
color: #bf9853; }
a.text-warning:hover,
a.text-warning:focus {
color: #a37e3c; }
.text-danger {
color: #b94a48; }
a.text-danger:hover,
a.text-danger:focus {
color: #953b39; }
.bg-primary {
color: #fff; }
.bg-primary {
background-color: #4d90fc; }
a.bg-primary:hover,
a.bg-primary:focus {
background-color: #1b71fb; }
.bg-success {
background-color: #dbf5d3; }
a.bg-success:hover,
a.bg-success:focus {
background-color: #b9eca9; }
.bg-info {
background-color: #d9edf7; }
a.bg-info:hover,
a.bg-info:focus {
background-color: #afd9ee; }
.bg-warning {
background-color: #fdf8e2; }
a.bg-warning:hover,
a.bg-warning:focus {
background-color: #faecb2; }
.bg-danger {
background-color: #f2dede; }
a.bg-danger:hover,
a.bg-danger:focus {
background-color: #e4b9b9; }
.page-header {
padding-bottom: 9px;
margin: 40px 0 20px;
border-bottom: 1px solid #eeeeee; }
ul,
ol {
margin-top: 0;
margin-bottom: 10px; }
ul ul,
ul ol,
ol ul,
ol ol {
margin-bottom: 0; }
.list-unstyled {
padding-left: 0;
list-style: none; }
.list-inline {
padding-left: 0;
list-style: none;
margin-left: -5px; }
.list-inline > li {
display: inline-block;
padding-left: 5px;
padding-right: 5px; }
dl {
margin-top: 0;
margin-bottom: 20px; }
dt,
dd {
line-height: 1.42857; }
dt {
font-weight: bold; }
dd {
margin-left: 0; }
.dl-horizontal dd:before, .dl-horizontal dd:after {
content: " ";
display: table; }
.dl-horizontal dd:after {
clear: both; }
@media (min-width: 768px) {
.dl-horizontal dt {
float: left;
width: 160px;
clear: left;
text-align: right;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap; }
.dl-horizontal dd {
margin-left: 180px; } }
abbr[title],
abbr[data-original-title] {
cursor: help;
border-bottom: 1px dotted #777777; }
.initialism {
font-size: 90%; }
blockquote {
padding: 10px 20px;
margin: 0 0 20px;
font-size: 17.5px;
border-left: 5px solid #eeeeee; }
blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
margin-bottom: 0; }
blockquote footer,
blockquote small,
blockquote .small {
display: block;
font-size: 80%;
line-height: 1.42857;
color: #777777; }
blockquote footer:before,
blockquote small:before,
blockquote .small:before {
content: '\2014 \00A0'; }
.blockquote-reverse,
blockquote.pull-right {
padding-right: 15px;
padding-left: 0;
border-right: 5px solid #eeeeee;
border-left: 0;
text-align: right; }
.blockquote-reverse footer:before,
.blockquote-reverse small:before,
.blockquote-reverse .small:before,
blockquote.pull-right footer:before,
blockquote.pull-right small:before,
blockquote.pull-right .small:before {
content: ''; }
.blockquote-reverse footer:after,
.blockquote-reverse small:after,
.blockquote-reverse .small:after,
blockquote.pull-right footer:after,
blockquote.pull-right small:after,
blockquote.pull-right .small:after {
content: '\00A0 \2014'; }
address {
margin-bottom: 20px;
font-style: normal;
line-height: 1.42857; }
code,
kbd,
pre,
samp {
font-family: Menlo, Monaco, Consolas, "Courier New", monospace; }
code {
padding: 2px 4px;
font-size: 90%;
color: #c7254e;
background-color: #f9f2f4;
border-radius: 4px; }
kbd {
padding: 2px 4px;
font-size: 90%;
color: #fff;
background-color: #333;
border-radius: 3px;
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25); }
kbd kbd {
padding: 0;
font-size: 100%;
font-weight: bold;
box-shadow: none; }
pre {
display: block;
padding: 9.5px;
margin: 0 0 10px;
font-size: 13px;
line-height: 1.42857;
word-break: break-all;
word-wrap: break-word;
color: #333333;
background-color: #f5f5f5;
border: 1px solid #ccc;
border-radius: 4px; }
pre code {
padding: 0;
font-size: inherit;
color: inherit;
white-space: pre-wrap;
background-color: transparent;
border-radius: 0; }
.pre-scrollable {
max-height: 340px;
overflow-y: scroll; }
.container {
margin-right: auto;
margin-left: auto;
padding-left: 15px;
padding-right: 15px; }
.container:before, .container:after {
content: " ";
display: table; }
.container:after {
clear: both; }
@media (min-width: 768px) {
.container {
width: 750px; } }
@media (min-width: 992px) {
.container {
width: 970px; } }
@media (min-width: 1200px) {
.container {
width: 1170px; } }
.container-fluid {
margin-right: auto;
margin-left: auto;
padding-left: 15px;
padding-right: 15px; }
.container-fluid:before, .container-fluid:after {
content: " ";
display: table; }
.container-fluid:after {
clear: both; }
.row {
margin-left: -15px;
margin-right: -15px; }
.row:before, .row:after {
content: " ";
display: table; }
.row:after {
clear: both; }
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
position: relative;
min-height: 1px;
padding-left: 15px;
padding-right: 15px; }
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
float: left; }
.col-xs-1 {
width: 8.33333%; }
.col-xs-2 {
width: 16.66667%; }
.col-xs-3 {
width: 25%; }
.col-xs-4 {
width: 33.33333%; }
.col-xs-5 {
width: 41.66667%; }
.col-xs-6 {
width: 50%; }
.col-xs-7 {
width: 58.33333%; }
.col-xs-8 {
width: 66.66667%; }
.col-xs-9 {
width: 75%; }
.col-xs-10 {
width: 83.33333%; }
.col-xs-11 {
width: 91.66667%; }
.col-xs-12 {
width: 100%; }
.col-xs-pull-0 {
right: auto; }
.col-xs-pull-1 {
right: 8.33333%; }
.col-xs-pull-2 {
right: 16.66667%; }
.col-xs-pull-3 {
right: 25%; }
.col-xs-pull-4 {
right: 33.33333%; }
.col-xs-pull-5 {
right: 41.66667%; }
.col-xs-pull-6 {
right: 50%; }
.col-xs-pull-7 {
right: 58.33333%; }
.col-xs-pull-8 {
right: 66.66667%; }
.col-xs-pull-9 {
right: 75%; }
.col-xs-pull-10 {
right: 83.33333%; }
.col-xs-pull-11 {
right: 91.66667%; }
.col-xs-pull-12 {
right: 100%; }
.col-xs-push-0 {
left: auto; }
.col-xs-push-1 {
left: 8.33333%; }
.col-xs-push-2 {
left: 16.66667%; }
.col-xs-push-3 {
left: 25%; }
.col-xs-push-4 {
left: 33.33333%; }
.col-xs-push-5 {
left: 41.66667%; }
.col-xs-push-6 {
left: 50%; }
.col-xs-push-7 {
left: 58.33333%; }
.col-xs-push-8 {
left: 66.66667%; }
.col-xs-push-9 {
left: 75%; }
.col-xs-push-10 {
left: 83.33333%; }
.col-xs-push-11 {
left: 91.66667%; }
.col-xs-push-12 {
left: 100%; }
.col-xs-offset-0 {
margin-left: 0%; }
.col-xs-offset-1 {
margin-left: 8.33333%; }
.col-xs-offset-2 {
margin-left: 16.66667%; }
.col-xs-offset-3 {
margin-left: 25%; }
.col-xs-offset-4 {
margin-left: 33.33333%; }
.col-xs-offset-5 {
margin-left: 41.66667%; }
.col-xs-offset-6 {
margin-left: 50%; }
.col-xs-offset-7 {
margin-left: 58.33333%; }
.col-xs-offset-8 {
margin-left: 66.66667%; }
.col-xs-offset-9 {
margin-left: 75%; }
.col-xs-offset-10 {
margin-left: 83.33333%; }
.col-xs-offset-11 {
margin-left: 91.66667%; }
.col-xs-offset-12 {
margin-left: 100%; }
@media (min-width: 768px) {
.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
float: left; }
.col-sm-1 {
width: 8.33333%; }
.col-sm-2 {
width: 16.66667%; }
.col-sm-3 {
width: 25%; }
.col-sm-4 {
width: 33.33333%; }
.col-sm-5 {
width: 41.66667%; }
.col-sm-6 {
width: 50%; }
.col-sm-7 {
width: 58.33333%; }
.col-sm-8 {
width: 66.66667%; }
.col-sm-9 {
width: 75%; }
.col-sm-10 {
width: 83.33333%; }
.col-sm-11 {
width: 91.66667%; }
.col-sm-12 {
width: 100%; }
.col-sm-pull-0 {
right: auto; }
.col-sm-pull-1 {
right: 8.33333%; }
.col-sm-pull-2 {
right: 16.66667%; }
.col-sm-pull-3 {
right: 25%; }
.col-sm-pull-4 {
right: 33.33333%; }
.col-sm-pull-5 {
right: 41.66667%; }
.col-sm-pull-6 {
right: 50%; }
.col-sm-pull-7 {
right: 58.33333%; }
.col-sm-pull-8 {
right: 66.66667%; }
.col-sm-pull-9 {
right: 75%; }
.col-sm-pull-10 {
right: 83.33333%; }
.col-sm-pull-11 {
right: 91.66667%; }
.col-sm-pull-12 {
right: 100%; }
.col-sm-push-0 {
left: auto; }
.col-sm-push-1 {
left: 8.33333%; }
.col-sm-push-2 {
left: 16.66667%; }
.col-sm-push-3 {
left: 25%; }
.col-sm-push-4 {
left: 33.33333%; }
.col-sm-push-5 {
left: 41.66667%; }
.col-sm-push-6 {
left: 50%; }
.col-sm-push-7 {
left: 58.33333%; }
.col-sm-push-8 {
left: 66.66667%; }
.col-sm-push-9 {
left: 75%; }
.col-sm-push-10 {
left: 83.33333%; }
.col-sm-push-11 {
left: 91.66667%; }
.col-sm-push-12 {
left: 100%; }
.col-sm-offset-0 {
margin-left: 0%; }
.col-sm-offset-1 {
margin-left: 8.33333%; }
.col-sm-offset-2 {
margin-left: 16.66667%; }
.col-sm-offset-3 {
margin-left: 25%; }
.col-sm-offset-4 {
margin-left: 33.33333%; }
.col-sm-offset-5 {
margin-left: 41.66667%; }
.col-sm-offset-6 {
margin-left: 50%; }
.col-sm-offset-7 {
margin-left: 58.33333%; }
.col-sm-offset-8 {
margin-left: 66.66667%; }
.col-sm-offset-9 {
margin-left: 75%; }
.col-sm-offset-10 {
margin-left: 83.33333%; }
.col-sm-offset-11 {
margin-left: 91.66667%; }
.col-sm-offset-12 {
margin-left: 100%; } }
@media (min-width: 992px) {
.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
float: left; }
.col-md-1 {
width: 8.33333%; }
.col-md-2 {
width: 16.66667%; }
.col-md-3 {
width: 25%; }
.col-md-4 {
width: 33.33333%; }
.col-md-5 {
width: 41.66667%; }
.col-md-6 {
width: 50%; }
.col-md-7 {
width: 58.33333%; }
.col-md-8 {
width: 66.66667%; }
.col-md-9 {
width: 75%; }
.col-md-10 {
width: 83.33333%; }
.col-md-11 {
width: 91.66667%; }
.col-md-12 {
width: 100%; }
.col-md-pull-0 {
right: auto; }
.col-md-pull-1 {
right: 8.33333%; }
.col-md-pull-2 {
right: 16.66667%; }
.col-md-pull-3 {
right: 25%; }
.col-md-pull-4 {
right: 33.33333%; }
.col-md-pull-5 {
right: 41.66667%; }
.col-md-pull-6 {
right: 50%; }
.col-md-pull-7 {
right: 58.33333%; }
.col-md-pull-8 {
right: 66.66667%; }
.col-md-pull-9 {
right: 75%; }
.col-md-pull-10 {
right: 83.33333%; }
.col-md-pull-11 {
right: 91.66667%; }
.col-md-pull-12 {
right: 100%; }
.col-md-push-0 {
left: auto; }
.col-md-push-1 {
left: 8.33333%; }
.col-md-push-2 {
left: 16.66667%; }
.col-md-push-3 {
left: 25%; }
.col-md-push-4 {
left: 33.33333%; }
.col-md-push-5 {
left: 41.66667%; }
.col-md-push-6 {
left: 50%; }
.col-md-push-7 {
left: 58.33333%; }
.col-md-push-8 {
left: 66.66667%; }
.col-md-push-9 {
left: 75%; }
.col-md-push-10 {
left: 83.33333%; }
.col-md-push-11 {
left: 91.66667%; }
.col-md-push-12 {
left: 100%; }
.col-md-offset-0 {
margin-left: 0%; }
.col-md-offset-1 {
margin-left: 8.33333%; }
.col-md-offset-2 {
margin-left: 16.66667%; }
.col-md-offset-3 {
margin-left: 25%; }
.col-md-offset-4 {
margin-left: 33.33333%; }
.col-md-offset-5 {
margin-left: 41.66667%; }
.col-md-offset-6 {
margin-left: 50%; }
.col-md-offset-7 {
margin-left: 58.33333%; }
.col-md-offset-8 {
margin-left: 66.66667%; }
.col-md-offset-9 {
margin-left: 75%; }
.col-md-offset-10 {
margin-left: 83.33333%; }
.col-md-offset-11 {
margin-left: 91.66667%; }
.col-md-offset-12 {
margin-left: 100%; } }
@media (min-width: 1200px) {
.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
float: left; }
.col-lg-1 {
width: 8.33333%; }
.col-lg-2 {
width: 16.66667%; }
.col-lg-3 {
width: 25%; }
.col-lg-4 {
width: 33.33333%; }
.col-lg-5 {
width: 41.66667%; }
.col-lg-6 {
width: 50%; }
.col-lg-7 {
width: 58.33333%; }
.col-lg-8 {
width: 66.66667%; }
.col-lg-9 {
width: 75%; }
.col-lg-10 {
width: 83.33333%; }
.col-lg-11 {
width: 91.66667%; }
.col-lg-12 {
width: 100%; }
.col-lg-pull-0 {
right: auto; }
.col-lg-pull-1 {
right: 8.33333%; }
.col-lg-pull-2 {
right: 16.66667%; }
.col-lg-pull-3 {
right: 25%; }
.col-lg-pull-4 {
right: 33.33333%; }
.col-lg-pull-5 {
right: 41.66667%; }
.col-lg-pull-6 {
right: 50%; }
.col-lg-pull-7 {
right: 58.33333%; }
.col-lg-pull-8 {
right: 66.66667%; }
.col-lg-pull-9 {
right: 75%; }
.col-lg-pull-10 {
right: 83.33333%; }
.col-lg-pull-11 {
right: 91.66667%; }
.col-lg-pull-12 {
right: 100%; }
.col-lg-push-0 {
left: auto; }
.col-lg-push-1 {
left: 8.33333%; }
.col-lg-push-2 {
left: 16.66667%; }
.col-lg-push-3 {
left: 25%; }
.col-lg-push-4 {
left: 33.33333%; }
.col-lg-push-5 {
left: 41.66667%; }
.col-lg-push-6 {
left: 50%; }
.col-lg-push-7 {
left: 58.33333%; }
.col-lg-push-8 {
left: 66.66667%; }
.col-lg-push-9 {
left: 75%; }
.col-lg-push-10 {
left: 83.33333%; }
.col-lg-push-11 {
left: 91.66667%; }
.col-lg-push-12 {
left: 100%; }
.col-lg-offset-0 {
margin-left: 0%; }
.col-lg-offset-1 {
margin-left: 8.33333%; }
.col-lg-offset-2 {
margin-left: 16.66667%; }
.col-lg-offset-3 {
margin-left: 25%; }
.col-lg-offset-4 {
margin-left: 33.33333%; }
.col-lg-offset-5 {
margin-left: 41.66667%; }
.col-lg-offset-6 {
margin-left: 50%; }
.col-lg-offset-7 {
margin-left: 58.33333%; }
.col-lg-offset-8 {
margin-left: 66.66667%; }
.col-lg-offset-9 {
margin-left: 75%; }
.col-lg-offset-10 {
margin-left: 83.33333%; }
.col-lg-offset-11 {
margin-left: 91.66667%; }
.col-lg-offset-12 {
margin-left: 100%; } }
table {
background-color: transparent; }
caption {
padding-top: 8px;
padding-bottom: 8px;
color: #777777;
text-align: left; }
th {
text-align: left; }
.table {
width: 100%;
max-width: 100%;
margin-bottom: 20px; }
.table > thead > tr > th,
.table > thead > tr > td,
.table > tbody > tr > th,
.table > tbody > tr > td,
.table > tfoot > tr > th,
.table > tfoot > tr > td {
padding: 8px;
line-height: 1.42857;
vertical-align: top;
border-top: 1px solid #ddd; }
.table > thead > tr > th {
vertical-align: bottom;
border-bottom: 2px solid #ddd; }
.table > caption + thead > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > th,
.table > thead:first-child > tr:first-child > td {
border-top: 0; }
.table > tbody + tbody {
border-top: 2px solid #ddd; }
.table .table {
background-color: #fff; }
.table-condensed > thead > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > th,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > th,
.table-condensed > tfoot > tr > td {
padding: 5px; }
.table-bordered {
border: 1px solid #ddd; }
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > th,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > th,
.table-bordered > tfoot > tr > td {
border: 1px solid #ddd; }
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
border-bottom-width: 2px; }
.table-striped > tbody > tr:nth-of-type(odd) {
background-color: #f9f9f9; }
.table-hover > tbody > tr:hover {
background-color: #f5f5f5; }
table col[class*="col-"] {
position: static;
float: none;
display: table-column; }
table td[class*="col-"],
table th[class*="col-"] {
position: static;
float: none;
display: table-cell; }
.table > thead > tr > td.active,
.table > thead > tr > th.active,
.table > thead > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr > td.active,
.table > tbody > tr > th.active,
.table > tbody > tr.active > td,
.table > tbody > tr.active > th,
.table > tfoot > tr > td.active,
.table > tfoot > tr > th.active,
.table > tfoot > tr.active > td,
.table > tfoot > tr.active > th {
background-color: #f5f5f5; }
.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover,
.table-hover > tbody > tr.active:hover > td,
.table-hover > tbody > tr:hover > .active,
.table-hover > tbody > tr.active:hover > th {
background-color: #e8e8e8; }
.table > thead > tr > td.success,
.table > thead > tr > th.success,
.table > thead > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr > td.success,
.table > tbody > tr > th.success,
.table > tbody > tr.success > td,
.table > tbody > tr.success > th,
.table > tfoot > tr > td.success,
.table > tfoot > tr > th.success,
.table > tfoot > tr.success > td,
.table > tfoot > tr.success > th {
background-color: #dbf5d3; }
.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover,
.table-hover > tbody > tr.success:hover > td,
.table-hover > tbody > tr:hover > .success,
.table-hover > tbody > tr.success:hover > th {
background-color: #caf0be; }
.table > thead > tr > td.info,
.table > thead > tr > th.info,
.table > thead > tr.info > td,
.table > thead > tr.info > th,
.table > tbody > tr > td.info,
.table > tbody > tr > th.info,
.table > tbody > tr.info > td,
.table > tbody > tr.info > th,
.table > tfoot > tr > td.info,
.table > tfoot > tr > th.info,
.table > tfoot > tr.info > td,
.table > tfoot > tr.info > th {
background-color: #d9edf7; }
.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover,
.table-hover > tbody > tr.info:hover > td,
.table-hover > tbody > tr:hover > .info,
.table-hover > tbody > tr.info:hover > th {
background-color: #c4e3f3; }
.table > thead > tr > td.warning,
.table > thead > tr > th.warning,
.table > thead > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr > td.warning,
.table > tbody > tr > th.warning,
.table > tbody > tr.warning > td,
.table > tbody > tr.warning > th,
.table > tfoot > tr > td.warning,
.table > tfoot > tr > th.warning,
.table > tfoot > tr.warning > td,
.table > tfoot > tr.warning > th {
background-color: #fdf8e2; }
.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover,
.table-hover > tbody > tr.warning:hover > td,
.table-hover > tbody > tr:hover > .warning,
.table-hover > tbody > tr.warning:hover > th {
background-color: #fbf2ca; }
.table > thead > tr > td.danger,
.table > thead > tr > th.danger,
.table > thead > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr > td.danger,
.table > tbody > tr > th.danger,
.table > tbody > tr.danger > td,
.table > tbody > tr.danger > th,
.table > tfoot > tr > td.danger,
.table > tfoot > tr > th.danger,
.table > tfoot > tr.danger > td,
.table > tfoot > tr.danger > th {
background-color: #f2dede; }
.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover,
.table-hover > tbody > tr.danger:hover > td,
.table-hover > tbody > tr:hover > .danger,
.table-hover > tbody > tr.danger:hover > th {
background-color: #ebcccc; }
.table-responsive {
overflow-x: auto;
min-height: 0.01%; }
@media screen and (max-width: 767px) {
.table-responsive {
width: 100%;
margin-bottom: 15px;
overflow-y: hidden;
-ms-overflow-style: -ms-autohiding-scrollbar;
border: 1px solid #ddd; }
.table-responsive > .table {
margin-bottom: 0; }
.table-responsive > .table > thead > tr > th,
.table-responsive > .table > thead > tr > td,
.table-responsive > .table > tbody > tr > th,
.table-responsive > .table > tbody > tr > td,
.table-responsive > .table > tfoot > tr > th,
.table-responsive > .table > tfoot > tr > td {
white-space: nowrap; }
.table-responsive > .table-bordered {
border: 0; }
.table-responsive > .table-bordered > thead > tr > th:first-child,
.table-responsive > .table-bordered > thead > tr > td:first-child,
.table-responsive > .table-bordered > tbody > tr > th:first-child,
.table-responsive > .table-bordered > tbody > tr > td:first-child,
.table-responsive > .table-bordered > tfoot > tr > th:first-child,
.table-responsive > .table-bordered > tfoot > tr > td:first-child {
border-left: 0; }
.table-responsive > .table-bordered > thead > tr > th:last-child,
.table-responsive > .table-bordered > thead > tr > td:last-child,
.table-responsive > .table-bordered > tbody > tr > th:last-child,
.table-responsive > .table-bordered > tbody > tr > td:last-child,
.table-responsive > .table-bordered > tfoot > tr > th:last-child,
.table-responsive > .table-bordered > tfoot > tr > td:last-child {
border-right: 0; }
.table-responsive > .table-bordered > tbody > tr:last-child > th,
.table-responsive > .table-bordered > tbody > tr:last-child > td,
.table-responsive > .table-bordered > tfoot > tr:last-child > th,
.table-responsive > .table-bordered > tfoot > tr:last-child > td {
border-bottom: 0; } }
fieldset {
padding: 0;
margin: 0;
border: 0;
min-width: 0; }
legend {
display: block;
width: 100%;
padding: 0;
margin-bottom: 20px;
font-size: 21px;
line-height: inherit;
color: #333333;
border: 0;
border-bottom: 1px solid #e5e5e5; }
label {
display: inline-block;
max-width: 100%;
margin-bottom: 5px;
font-weight: bold; }
input[type="search"] {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box; }
input[type="radio"],
input[type="checkbox"] {
margin: 4px 0 0;
margin-top: 1px \9;
line-height: normal; }
input[type="file"] {
display: block; }
input[type="range"] {
display: block;
width: 100%; }
select[multiple],
select[size] {
height: auto; }
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
outline: thin dotted;
outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px; }
output {
display: block;
padding-top: 7px;
font-size: 14px;
line-height: 1.42857;
color: #555555; }
.form-control {
display: block;
width: 100%;
height: 34px;
padding: 6px 12px;
font-size: 14px;
line-height: 1.42857;
color: #555555;
background-color: #fff;
background-image: none;
border: 1px solid #ccc;
border-radius: 0;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
-webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
-o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; }
.form-control:focus {
border-color: #2598f9;
outline: 0;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(37, 152, 249, 0.6);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(37, 152, 249, 0.6); }
.form-control::-moz-placeholder {
color: #999;
opacity: 1; }
.form-control:-ms-input-placeholder {
color: #999; }
.form-control::-webkit-input-placeholder {
color: #999; }
.form-control::-ms-expand {
border: 0;
background-color: transparent; }
.form-control[disabled], .form-control[readonly],
fieldset[disabled] .form-control {
background-color: #eeeeee;
opacity: 1; }
.form-control[disabled],
fieldset[disabled] .form-control {
cursor: not-allowed; }
textarea.form-control {
height: auto; }
input[type="search"] {
-webkit-appearance: none; }
@media screen and (-webkit-min-device-pixel-ratio: 0) {
input[type="date"].form-control,
input[type="time"].form-control,
input[type="datetime-local"].form-control,
input[type="month"].form-control {
line-height: 34px; }
input[type="date"].input-sm, .input-group-sm > input[type="date"].form-control,
.input-group-sm > input[type="date"].input-group-addon,
.input-group-sm > .input-group-btn > input[type="date"].btn,
.input-group-sm input[type="date"],
input[type="time"].input-sm,
.input-group-sm > input[type="time"].form-control,
.input-group-sm > input[type="time"].input-group-addon,
.input-group-sm > .input-group-btn > input[type="time"].btn,
.input-group-sm
input[type="time"],
input[type="datetime-local"].input-sm,
.input-group-sm > input[type="datetime-local"].form-control,
.input-group-sm > input[type="datetime-local"].input-group-addon,
.input-group-sm > .input-group-btn > input[type="datetime-local"].btn,
.input-group-sm
input[type="datetime-local"],
input[type="month"].input-sm,
.input-group-sm > input[type="month"].form-control,
.input-group-sm > input[type="month"].input-group-addon,
.input-group-sm > .input-group-btn > input[type="month"].btn,
.input-group-sm
input[type="month"] {
line-height: 30px; }
input[type="date"].input-lg, .input-group-lg > input[type="date"].form-control,
.input-group-lg > input[type="date"].input-group-addon,
.input-group-lg > .input-group-btn > input[type="date"].btn,
.input-group-lg input[type="date"],
input[type="time"].input-lg,
.input-group-lg > input[type="time"].form-control,
.input-group-lg > input[type="time"].input-group-addon,
.input-group-lg > .input-group-btn > input[type="time"].btn,
.input-group-lg
input[type="time"],
input[type="datetime-local"].input-lg,
.input-group-lg > input[type="datetime-local"].form-control,
.input-group-lg > input[type="datetime-local"].input-group-addon,
.input-group-lg > .input-group-btn > input[type="datetime-local"].btn,
.input-group-lg
input[type="datetime-local"],
input[type="month"].input-lg,
.input-group-lg > input[type="month"].form-control,
.input-group-lg > input[type="month"].input-group-addon,
.input-group-lg > .input-group-btn > input[type="month"].btn,
.input-group-lg
input[type="month"] {
line-height: 46px; } }
.form-group {
margin-bottom: 15px; }
.radio,
.checkbox {
position: relative;
display: block;
margin-top: 10px;
margin-bottom: 10px; }
.radio label,
.checkbox label {
min-height: 20px;
padding-left: 20px;
margin-bottom: 0;
font-weight: normal;
cursor: pointer; }
.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
position: absolute;
margin-left: -20px;
margin-top: 4px \9; }
.radio + .radio,
.checkbox + .checkbox {
margin-top: -5px; }
.radio-inline,
.checkbox-inline {
position: relative;
display: inline-block;
padding-left: 20px;
margin-bottom: 0;
vertical-align: middle;
font-weight: normal;
cursor: pointer; }
.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
margin-top: 0;
margin-left: 10px; }
input[type="radio"][disabled], input[type="radio"].disabled,
fieldset[disabled] input[type="radio"],
input[type="checkbox"][disabled],
input[type="checkbox"].disabled,
fieldset[disabled]
input[type="checkbox"] {
cursor: not-allowed; }
.radio-inline.disabled,
fieldset[disabled] .radio-inline,
.checkbox-inline.disabled,
fieldset[disabled]
.checkbox-inline {
cursor: not-allowed; }
.radio.disabled label,
fieldset[disabled] .radio label,
.checkbox.disabled label,
fieldset[disabled]
.checkbox label {
cursor: not-allowed; }
.form-control-static {
padding-top: 7px;
padding-bottom: 7px;
margin-bottom: 0;
min-height: 34px; }
.form-control-static.input-lg, .input-group-lg > .form-control-static.form-control,
.input-group-lg > .form-control-static.input-group-addon,
.input-group-lg > .input-group-btn > .form-control-static.btn, .form-control-static.input-sm, .input-group-sm > .form-control-static.form-control,
.input-group-sm > .form-control-static.input-group-addon,
.input-group-sm > .input-group-btn > .form-control-static.btn {
padding-left: 0;
padding-right: 0; }
.input-sm, .input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
height: 30px;
padding: 5px 10px;
font-size: 12px;
line-height: 1.5;
border-radius: 3px; }
select.input-sm, .input-group-sm > select.form-control,
.input-group-sm > select.input-group-addon,
.input-group-sm > .input-group-btn > select.btn {
height: 30px;
line-height: 30px; }
textarea.input-sm, .input-group-sm > textarea.form-control,
.input-group-sm > textarea.input-group-addon,
.input-group-sm > .input-group-btn > textarea.btn,
select[multiple].input-sm,
.input-group-sm > select[multiple].form-control,
.input-group-sm > select[multiple].input-group-addon,
.input-group-sm > .input-group-btn > select[multiple].btn {
height: auto; }
.form-group-sm .form-control {
height: 30px;
padding: 5px 10px;
font-size: 12px;
line-height: 1.5;
border-radius: 3px; }
.form-group-sm select.form-control {
height: 30px;
line-height: 30px; }
.form-group-sm textarea.form-control,
.form-group-sm select[multiple].form-control {
height: auto; }
.form-group-sm .form-control-static {
height: 30px;
min-height: 32px;
padding: 6px 10px;
font-size: 12px;
line-height: 1.5; }
.input-lg, .input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
height: 46px;
padding: 10px 16px;
font-size: 18px;
line-height: 1.33333;
border-radius: 6px; }
select.input-lg, .input-group-lg > select.form-control,
.input-group-lg > select.input-group-addon,
.input-group-lg > .input-group-btn > select.btn {
height: 46px;
line-height: 46px; }
textarea.input-lg, .input-group-lg > textarea.form-control,
.input-group-lg > textarea.input-group-addon,
.input-group-lg > .input-group-btn > textarea.btn,
select[multiple].input-lg,
.input-group-lg > select[multiple].form-control,
.input-group-lg > select[multiple].input-group-addon,
.input-group-lg > .input-group-btn > select[multiple].btn {
height: auto; }
.form-group-lg .form-control {
height: 46px;
padding: 10px 16px;
font-size: 18px;
line-height: 1.33333;
border-radius: 6px; }
.form-group-lg select.form-control {
height: 46px;
line-height: 46px; }
.form-group-lg textarea.form-control,
.form-group-lg select[multiple].form-control {
height: auto; }
.form-group-lg .form-control-static {
height: 46px;
min-height: 38px;
padding: 11px 16px;
font-size: 18px;
line-height: 1.33333; }
.has-feedback {
position: relative; }
.has-feedback .form-control {
padding-right: 42.5px; }
.form-control-feedback {
position: absolute;
top: 0;
right: 0;
z-index: 2;
display: block;
width: 34px;
height: 34px;
line-height: 34px;
text-align: center;
pointer-events: none; }
.input-lg + .form-control-feedback, .input-group-lg > .form-control + .form-control-feedback,
.input-group-lg > .input-group-addon + .form-control-feedback,
.input-group-lg > .input-group-btn > .btn + .form-control-feedback,
.input-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback {
width: 46px;
height: 46px;
line-height: 46px; }
.input-sm + .form-control-feedback, .input-group-sm > .form-control + .form-control-feedback,
.input-group-sm > .input-group-addon + .form-control-feedback,
.input-group-sm > .input-group-btn > .btn + .form-control-feedback,
.input-group-sm + .form-control-feedback,
.form-group-sm .form-control + .form-control-feedback {
width: 30px;
height: 30px;
line-height: 30px; }
.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline,
.has-success.radio label,
.has-success.checkbox label,
.has-success.radio-inline label,
.has-success.checkbox-inline label {
color: #569845; }
.has-success .form-control {
border-color: #569845;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
.has-success .form-control:focus {
border-color: #427535;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #8dc57e;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #8dc57e; }
.has-success .input-group-addon {
color: #569845;
border-color: #569845;
background-color: #dbf5d3; }
.has-success .form-control-feedback {
color: #569845; }
.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline,
.has-warning.radio label,
.has-warning.checkbox label,
.has-warning.radio-inline label,
.has-warning.checkbox-inline label {
color: #bf9853; }
.has-warning .form-control {
border-color: #bf9853;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
.has-warning .form-control:focus {
border-color: #a37e3c;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59d;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59d; }
.has-warning .input-group-addon {
color: #bf9853;
border-color: #bf9853;
background-color: #fdf8e2; }
.has-warning .form-control-feedback {
color: #bf9853; }
.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline,
.has-error.radio label,
.has-error.checkbox label,
.has-error.radio-inline label,
.has-error.checkbox-inline label {
color: #b94a48; }
.has-error .form-control {
border-color: #b94a48;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
.has-error .form-control:focus {
border-color: #953b39;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392; }
.has-error .input-group-addon {
color: #b94a48;
border-color: #b94a48;
background-color: #f2dede; }
.has-error .form-control-feedback {
color: #b94a48; }
.has-feedback label ~ .form-control-feedback {
top: 25px; }
.has-feedback label.sr-only ~ .form-control-feedback {
top: 0; }
.help-block {
display: block;
margin-top: 5px;
margin-bottom: 10px;
color: #737373; }
@media (min-width: 768px) {
.form-inline .form-group {
display: inline-block;
margin-bottom: 0;
vertical-align: middle; }
.form-inline .form-control {
display: inline-block;
width: auto;
vertical-align: middle; }
.form-inline .form-control-static {
display: inline-block; }
.form-inline .input-group {
display: inline-table;
vertical-align: middle; }
.form-inline .input-group .input-group-addon,
.form-inline .input-group .input-group-btn,
.form-inline .input-group .form-control {
width: auto; }
.form-inline .input-group > .form-control {
width: 100%; }
.form-inline .control-label {
margin-bottom: 0;
vertical-align: middle; }
.form-inline .radio,
.form-inline .checkbox {
display: inline-block;
margin-top: 0;
margin-bottom: 0;
vertical-align: middle; }
.form-inline .radio label,
.form-inline .checkbox label {
padding-left: 0; }
.form-inline .radio input[type="radio"],
.form-inline .checkbox input[type="checkbox"] {
position: relative;
margin-left: 0; }
.form-inline .has-feedback .form-control-feedback {
top: 0; } }
.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
margin-top: 0;
margin-bottom: 0;
padding-top: 7px; }
.form-horizontal .radio,
.form-horizontal .checkbox {
min-height: 27px; }
.form-horizontal .form-group {
margin-left: -15px;
margin-right: -15px; }
.form-horizontal .form-group:before, .form-horizontal .form-group:after {
content: " ";
display: table; }
.form-horizontal .form-group:after {
clear: both; }
@media (min-width: 768px) {
.form-horizontal .control-label {
text-align: right;
margin-bottom: 0;
padding-top: 7px; } }
.form-horizontal .has-feedback .form-control-feedback {
right: 15px; }
@media (min-width: 768px) {
.form-horizontal .form-group-lg .control-label {
padding-top: 11px;
font-size: 18px; } }
@media (min-width: 768px) {
.form-horizontal .form-group-sm .control-label {
padding-top: 6px;
font-size: 12px; } }
.btn {
display: inline-block;
margin-bottom: 0;
font-weight: normal;
text-align: center;
vertical-align: middle;
touch-action: manipulation;
cursor: pointer;
background-image: none;
border: 1px solid transparent;
white-space: nowrap;
padding: 6px 12px;
font-size: 14px;
line-height: 1.42857;
border-radius: 4px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none; }
.btn:focus, .btn.focus, .btn:active:focus, .btn:active.focus, .btn.active:focus, .btn.active.focus {
outline: thin dotted;
outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px; }
.btn:hover, .btn:focus, .btn.focus {
color: #333;
text-decoration: none; }
.btn:active, .btn.active {
outline: 0;
background-image: none;
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); }
.btn.disabled, .btn[disabled],
fieldset[disabled] .btn {
cursor: not-allowed;
opacity: 0.65;
filter: alpha(opacity=65);
-webkit-box-shadow: none;
box-shadow: none; }
a.btn.disabled,
fieldset[disabled] a.btn {
pointer-events: none; }
.btn-default {
color: #333;
background-color: #fff;
border-color: #ccc; }
.btn-default:focus, .btn-default.focus {
color: #333;
background-color: #e6e6e6;
border-color: #8c8c8c; }
.btn-default:hover {
color: #333;
background-color: #e6e6e6;
border-color: #adadad; }
.btn-default:active, .btn-default.active,
.open > .btn-default.dropdown-toggle {
color: #333;
background-color: #e6e6e6;
border-color: #adadad; }
.btn-default:active:hover, .btn-default:active:focus, .btn-default:active.focus, .btn-default.active:hover, .btn-default.active:focus, .btn-default.active.focus,
.open > .btn-default.dropdown-toggle:hover,
.open > .btn-default.dropdown-toggle:focus,
.open > .btn-default.dropdown-toggle.focus {
color: #333;
background-color: #d4d4d4;
border-color: #8c8c8c; }
.btn-default:active, .btn-default.active,
.open > .btn-default.dropdown-toggle {
background-image: none; }
.btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disabled.focus, .btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default[disabled].focus,
fieldset[disabled] .btn-default:hover,
fieldset[disabled] .btn-default:focus,
fieldset[disabled] .btn-default.focus {
background-color: #fff;
border-color: #ccc; }
.btn-default .badge {
color: #fff;
background-color: #333; }
.btn-primary {
color: #fff;
background-color: #4d90fc;
border-color: #3d86fc; }
.btn-primary:focus, .btn-primary.focus {
color: #fff;
background-color: #1b71fb;
border-color: #0348b6; }
.btn-primary:hover {
color: #fff;
background-color: #1b71fb;
border-color: #0461f7; }
.btn-primary:active, .btn-primary.active,
.open > .btn-primary.dropdown-toggle {
color: #fff;
background-color: #1b71fb;
border-color: #0461f7; }
.btn-primary:active:hover, .btn-primary:active:focus, .btn-primary:active.focus, .btn-primary.active:hover, .btn-primary.active:focus, .btn-primary.active.focus,
.open > .btn-primary.dropdown-toggle:hover,
.open > .btn-primary.dropdown-toggle:focus,
.open > .btn-primary.dropdown-toggle.focus {
color: #fff;
background-color: #045eee;
border-color: #0348b6; }
.btn-primary:active, .btn-primary.active,
.open > .btn-primary.dropdown-toggle {
background-image: none; }
.btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled.focus, .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled].focus,
fieldset[disabled] .btn-primary:hover,
fieldset[disabled] .btn-primary:focus,
fieldset[disabled] .btn-primary.focus {
background-color: #4d90fc;
border-color: #3d86fc; }
.btn-primary .badge {
color: #4d90fc;
background-color: #fff; }
.btn-success {
color: #fff;
background-color: #60bf60;
border-color: #54ba54; }
.btn-success:focus, .btn-success.focus {
color: #fff;
background-color: #44a844;
border-color: #296629; }
.btn-success:hover {
color: #fff;
background-color: #44a844;
border-color: #3c953c; }
.btn-success:active, .btn-success.active,
.open > .btn-success.dropdown-toggle {
color: #fff;
background-color: #44a844;
border-color: #3c953c; }
.btn-success:active:hover, .btn-success:active:focus, .btn-success:active.focus, .btn-success.active:hover, .btn-success.active:focus, .btn-success.active.focus,
.open > .btn-success.dropdown-toggle:hover,
.open > .btn-success.dropdown-toggle:focus,
.open > .btn-success.dropdown-toggle.focus {
color: #fff;
background-color: #398f39;
border-color: #296629; }
.btn-success:active, .btn-success.active,
.open > .btn-success.dropdown-toggle {
background-image: none; }
.btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled.focus, .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success[disabled].focus,
fieldset[disabled] .btn-success:hover,
fieldset[disabled] .btn-success:focus,
fieldset[disabled] .btn-success.focus {
background-color: #60bf60;
border-color: #54ba54; }
.btn-success .badge {
color: #60bf60;
background-color: #fff; }
.btn-info {
color: #fff;
background-color: #5bc0dd;
border-color: #4dbbda; }
.btn-info:focus, .btn-info.focus {
color: #fff;
background-color: #31b0d4;
border-color: #1d738b; }
.btn-info:hover {
color: #fff;
background-color: #31b0d4;
border-color: #28a0c2; }
.btn-info:active, .btn-info.active,
.open > .btn-info.dropdown-toggle {
color: #fff;
background-color: #31b0d4;
border-color: #28a0c2; }
.btn-info:active:hover, .btn-info:active:focus, .btn-info:active.focus, .btn-info.active:hover, .btn-info.active:focus, .btn-info.active.focus,
.open > .btn-info.dropdown-toggle:hover,
.open > .btn-info.dropdown-toggle:focus,
.open > .btn-info.dropdown-toggle.focus {
color: #fff;
background-color: #279abb;
border-color: #1d738b; }
.btn-info:active, .btn-info.active,
.open > .btn-info.dropdown-toggle {
background-image: none; }
.btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled.focus, .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info[disabled].focus,
fieldset[disabled] .btn-info:hover,
fieldset[disabled] .btn-info:focus,
fieldset[disabled] .btn-info.focus {
background-color: #5bc0dd;
border-color: #4dbbda; }
.btn-info .badge {
color: #5bc0dd;
background-color: #fff; }
.btn-warning {
color: #fff;
background-color: #ff9800;
border-color: #ef8e00; }
.btn-warning:focus, .btn-warning.focus {
color: #fff;
background-color: #cc7a00;
border-color: #6f4200; }
.btn-warning:hover {
color: #fff;
background-color: #cc7a00;
border-color: #b16a00; }
.btn-warning:active, .btn-warning.active,
.open > .btn-warning.dropdown-toggle {
color: #fff;
background-color: #cc7a00;
border-color: #b16a00; }
.btn-warning:active:hover, .btn-warning:active:focus, .btn-warning:active.focus, .btn-warning.active:hover, .btn-warning.active:focus, .btn-warning.active.focus,
.open > .btn-warning.dropdown-toggle:hover,
.open > .btn-warning.dropdown-toggle:focus,
.open > .btn-warning.dropdown-toggle.focus {
color: #fff;
background-color: #a86400;
border-color: #6f4200; }
.btn-warning:active, .btn-warning.active,
.open > .btn-warning.dropdown-toggle {
background-image: none; }
.btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled.focus, .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning[disabled].focus,
fieldset[disabled] .btn-warning:hover,
fieldset[disabled] .btn-warning:focus,
fieldset[disabled] .btn-warning.focus {
background-color: #ff9800;
border-color: #ef8e00; }
.btn-warning .badge {
color: #ff9800;
background-color: #fff; }
.btn-danger {
color: #fff;
background-color: #de4b33;
border-color: #dc3f25; }
.btn-danger:focus, .btn-danger.focus {
color: #fff;
background-color: #bf351f;
border-color: #6f1f12; }
.btn-danger:hover {
color: #fff;
background-color: #bf351f;
border-color: #a82f1b; }
.btn-danger:active, .btn-danger.active,
.open > .btn-danger.dropdown-toggle {
color: #fff;
background-color: #bf351f;
border-color: #a82f1b; }
.btn-danger:active:hover, .btn-danger:active:focus, .btn-danger:active.focus, .btn-danger.active:hover, .btn-danger.active:focus, .btn-danger.active.focus,
.open > .btn-danger.dropdown-toggle:hover,
.open > .btn-danger.dropdown-toggle:focus,
.open > .btn-danger.dropdown-toggle.focus {
color: #fff;
background-color: #a02d1a;
border-color: #6f1f12; }
.btn-danger:active, .btn-danger.active,
.open > .btn-danger.dropdown-toggle {
background-image: none; }
.btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled.focus, .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger[disabled].focus,
fieldset[disabled] .btn-danger:hover,
fieldset[disabled] .btn-danger:focus,
fieldset[disabled] .btn-danger.focus {
background-color: #de4b33;
border-color: #dc3f25; }
.btn-danger .badge {
color: #de4b33;
background-color: #fff; }
.btn-link {
color: #4d90fc;
font-weight: normal;
border-radius: 0; }
.btn-link, .btn-link:active, .btn-link.active, .btn-link[disabled],
fieldset[disabled] .btn-link {
background-color: transparent;
-webkit-box-shadow: none;
box-shadow: none; }
.btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active {
border-color: transparent; }
.btn-link:hover, .btn-link:focus {
color: #0462f8;
text-decoration: underline;
background-color: transparent; }
.btn-link[disabled]:hover, .btn-link[disabled]:focus,
fieldset[disabled] .btn-link:hover,
fieldset[disabled] .btn-link:focus {
color: #777777;
text-decoration: none; }
.btn-lg, .btn-group-lg > .btn {
padding: 10px 16px;
font-size: 18px;
line-height: 1.33333;
border-radius: 6px; }
.btn-sm, .btn-group-sm > .btn {
padding: 5px 10px;
font-size: 12px;
line-height: 1.5;
border-radius: 3px; }
.btn-xs, .btn-group-xs > .btn {
padding: 1px 5px;
font-size: 12px;
line-height: 1.5;
border-radius: 3px; }
.btn-block {
display: block;
width: 100%; }
.btn-block + .btn-block {
margin-top: 5px; }
input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
width: 100%; }
.fade {
opacity: 0;
-webkit-transition: opacity 0.15s linear;
-o-transition: opacity 0.15s linear;
transition: opacity 0.15s linear; }
.fade.in {
opacity: 1; }
.collapse {
display: none; }
.collapse.in {
display: block; }
tr.collapse.in {
display: table-row; }
tbody.collapse.in {
display: table-row-group; }
.collapsing {
position: relative;
height: 0;
overflow: hidden;
-webkit-transition-property: height, visibility;
transition-property: height, visibility;
-webkit-transition-duration: 0.35s;
transition-duration: 0.35s;
-webkit-transition-timing-function: ease;
transition-timing-function: ease; }
.caret {
display: inline-block;
width: 0;
height: 0;
margin-left: 2px;
vertical-align: middle;
border-top: 4px dashed;
border-top: 4px solid \9;
border-right: 4px solid transparent;
border-left: 4px solid transparent; }
.dropup,
.dropdown {
position: relative; }
.dropdown-toggle:focus {
outline: 0; }
.dropdown-menu {
position: absolute;
top: 100%;
left: 0;
z-index: 1000;
display: none;
float: left;
min-width: 160px;
padding: 5px 0;
margin: 2px 0 0;
list-style: none;
font-size: 14px;
text-align: left;
background-color: #fff;
border: 1px solid #ccc;
border: 1px solid rgba(0, 0, 0, 0.15);
border-radius: 4px;
-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
background-clip: padding-box; }
.dropdown-menu.pull-right {
right: 0;
left: auto; }
.dropdown-menu .divider {
height: 1px;
margin: 9px 0;
overflow: hidden;
background-color: #e5e5e5; }
.dropdown-menu > li > a {
display: block;
padding: 3px 20px;
clear: both;
font-weight: normal;
line-height: 1.42857;
color: #333333;
white-space: nowrap; }
.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
text-decoration: none;
color: #262626;
background-color: #f5f5f5; }
.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus {
color: #fff;
text-decoration: none;
outline: 0;
background-color: #4d90fc; }
.dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
color: #777777; }
.dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
text-decoration: none;
background-color: transparent;
background-image: none;
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
cursor: not-allowed; }
.open > .dropdown-menu {
display: block; }
.open > a {
outline: 0; }
.dropdown-menu-right {
left: auto;
right: 0; }
.dropdown-menu-left {
left: 0;
right: auto; }
.dropdown-header {
display: block;
padding: 3px 20px;
font-size: 12px;
line-height: 1.42857;
color: #777777;
white-space: nowrap; }
.dropdown-backdrop {
position: fixed;
left: 0;
right: 0;
bottom: 0;
top: 0;
z-index: 990; }
.pull-right > .dropdown-menu {
right: 0;
left: auto; }
.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
border-top: 0;
border-bottom: 4px dashed;
border-bottom: 4px solid \9;
content: ""; }
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
top: auto;
bottom: 100%;
margin-bottom: 2px; }
@media (min-width: 768px) {
.navbar-right .dropdown-menu {
right: 0;
left: auto; }
.navbar-right .dropdown-menu-left {
left: 0;
right: auto; } }
.btn-group,
.btn-group-vertical {
position: relative;
display: inline-block;
vertical-align: middle; }
.btn-group > .btn,
.btn-group-vertical > .btn {
position: relative;
float: left; }
.btn-group > .btn:hover, .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
.btn-group-vertical > .btn:hover,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
z-index: 2; }
.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
margin-left: -1px; }
.btn-toolbar {
margin-left: -5px; }
.btn-toolbar:before, .btn-toolbar:after {
content: " ";
display: table; }
.btn-toolbar:after {
clear: both; }
.btn-toolbar .btn,
.btn-toolbar .btn-group,
.btn-toolbar .input-group {
float: left; }
.btn-toolbar > .btn,
.btn-toolbar > .btn-group,
.btn-toolbar > .input-group {
margin-left: 5px; }
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
border-radius: 0; }
.btn-group > .btn:first-child {
margin-left: 0; }
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
border-bottom-right-radius: 0;
border-top-right-radius: 0; }
.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
border-bottom-left-radius: 0;
border-top-left-radius: 0; }
.btn-group > .btn-group {
float: left; }
.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
border-radius: 0; }
.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
border-bottom-right-radius: 0;
border-top-right-radius: 0; }
.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
border-bottom-left-radius: 0;
border-top-left-radius: 0; }
.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
outline: 0; }
.btn-group > .btn + .dropdown-toggle {
padding-left: 8px;
padding-right: 8px; }
.btn-group > .btn-lg + .dropdown-toggle, .btn-group-lg.btn-group > .btn + .dropdown-toggle {
padding-left: 12px;
padding-right: 12px; }
.btn-group.open .dropdown-toggle {
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); }
.btn-group.open .dropdown-toggle.btn-link {
-webkit-box-shadow: none;
box-shadow: none; }
.btn .caret {
margin-left: 0; }
.btn-lg .caret, .btn-group-lg > .btn .caret {
border-width: 5px 5px 0;
border-bottom-width: 0; }
.dropup .btn-lg .caret, .dropup .btn-group-lg > .btn .caret {
border-width: 0 5px 5px; }
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn {
display: block;
float: none;
width: 100%;
max-width: 100%; }
.btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after {
content: " ";
display: table; }
.btn-group-vertical > .btn-group:after {
clear: both; }
.btn-group-vertical > .btn-group > .btn {
float: none; }
.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
margin-top: -1px;
margin-left: 0; }
.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
border-radius: 0; }
.btn-group-vertical > .btn:first-child:not(:last-child) {
border-top-right-radius: 4px;
border-top-left-radius: 4px;
border-bottom-right-radius: 0;
border-bottom-left-radius: 0; }
.btn-group-vertical > .btn:last-child:not(:first-child) {
border-top-right-radius: 0;
border-top-left-radius: 0;
border-bottom-right-radius: 4px;
border-bottom-left-radius: 4px; }
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
border-radius: 0; }
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
border-bottom-right-radius: 0;
border-bottom-left-radius: 0; }
.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
border-top-right-radius: 0;
border-top-left-radius: 0; }
.btn-group-justified {
display: table;
width: 100%;
table-layout: fixed;
border-collapse: separate; }
.btn-group-justified > .btn,
.btn-group-justified > .btn-group {
float: none;
display: table-cell;
width: 1%; }
.btn-group-justified > .btn-group .btn {
width: 100%; }
.btn-group-justified > .btn-group .dropdown-menu {
left: auto; }
[data-toggle="buttons"] > .btn input[type="radio"],
[data-toggle="buttons"] > .btn input[type="checkbox"],
[data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
position: absolute;
clip: rect(0, 0, 0, 0);
pointer-events: none; }
.input-group {
position: relative;
display: table;
border-collapse: separate; }
.input-group[class*="col-"] {
float: none;
padding-left: 0;
padding-right: 0; }
.input-group .form-control {
position: relative;
z-index: 2;
float: left;
width: 100%;
margin-bottom: 0; }
.input-group .form-control:focus {
z-index: 3; }
.input-group-addon,
.input-group-btn,
.input-group .form-control {
display: table-cell; }
.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child) {
border-radius: 0; }
.input-group-addon,
.input-group-btn {
width: 1%;
white-space: nowrap;
vertical-align: middle; }
.input-group-addon {
padding: 6px 12px;
font-size: 14px;
font-weight: normal;
line-height: 1;
color: #555555;
text-align: center;
background-color: #eeeeee;
border: 1px solid #ccc;
border-radius: 0; }
.input-group-addon.input-sm,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .input-group-addon.btn {
padding: 5px 10px;
font-size: 12px;
border-radius: 3px; }
.input-group-addon.input-lg,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .input-group-addon.btn {
padding: 10px 16px;
font-size: 18px;
border-radius: 6px; }
.input-group-addon input[type="radio"],
.input-group-addon input[type="checkbox"] {
margin-top: 0; }
.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
border-bottom-right-radius: 0;
border-top-right-radius: 0; }
.input-group-addon:first-child {
border-right: 0; }
.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
border-bottom-left-radius: 0;
border-top-left-radius: 0; }
.input-group-addon:last-child {
border-left: 0; }
.input-group-btn {
position: relative;
font-size: 0;
white-space: nowrap; }
.input-group-btn > .btn {
position: relative; }
.input-group-btn > .btn + .btn {
margin-left: -1px; }
.input-group-btn > .btn:hover, .input-group-btn > .btn:focus, .input-group-btn > .btn:active {
z-index: 2; }
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group {
margin-right: -1px; }
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
z-index: 2;
margin-left: -1px; }
.nav {
margin-bottom: 0;
padding-left: 0;
list-style: none; }
.nav:before, .nav:after {
content: " ";
display: table; }
.nav:after {
clear: both; }
.nav > li {
position: relative;
display: block; }
.nav > li > a {
position: relative;
display: block;
padding: 10px 15px; }
.nav > li > a:hover, .nav > li > a:focus {
text-decoration: none;
background-color: #eeeeee; }
.nav > li.disabled > a {
color: #777777; }
.nav > li.disabled > a:hover, .nav > li.disabled > a:focus {
color: #777777;
text-decoration: none;
background-color: transparent;
cursor: not-allowed; }
.nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
background-color: #eeeeee;
border-color: #4d90fc; }
.nav .nav-divider {
height: 1px;
margin: 9px 0;
overflow: hidden;
background-color: #e5e5e5; }
.nav > li > a > img {
max-width: none; }
.nav-tabs {
border-bottom: 1px solid #ddd; }
.nav-tabs > li {
float: left;
margin-bottom: -1px; }
.nav-tabs > li > a {
margin-right: 2px;
line-height: 1.42857;
border: 1px solid transparent;
border-radius: 4px 4px 0 0; }
.nav-tabs > li > a:hover {
border-color: #eeeeee #eeeeee #ddd; }
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
color: #555555;
background-color: #fff;
border: 1px solid #ddd;
border-bottom-color: transparent;
cursor: default; }
.nav-pills > li {
float: left; }
.nav-pills > li > a {
border-radius: 4px; }
.nav-pills > li + li {
margin-left: 2px; }
.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
color: #fff;
background-color: #4d90fc; }
.nav-stacked > li {
float: none; }
.nav-stacked > li + li {
margin-top: 2px;
margin-left: 0; }
.nav-justified, .nav-tabs.nav-justified {
width: 100%; }
.nav-justified > li, .nav-tabs.nav-justified > li {
float: none; }
.nav-justified > li > a, .nav-tabs.nav-justified > li > a {
text-align: center;
margin-bottom: 5px; }
.nav-justified > .dropdown .dropdown-menu {
top: auto;
left: auto; }
@media (min-width: 768px) {
.nav-justified > li, .nav-tabs.nav-justified > li {
display: table-cell;
width: 1%; }
.nav-justified > li > a, .nav-tabs.nav-justified > li > a {
margin-bottom: 0; } }
.nav-tabs-justified, .nav-tabs.nav-justified {
border-bottom: 0; }
.nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
margin-right: 0;
border-radius: 4px; }
.nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
.nav-tabs-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus, .nav-tabs.nav-justified > .active > a:focus {
border: 1px solid #ddd; }
@media (min-width: 768px) {
.nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
border-bottom: 1px solid #ddd;
border-radius: 4px 4px 0 0; }
.nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
.nav-tabs-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus, .nav-tabs.nav-justified > .active > a:focus {
border-bottom-color: #fff; } }
.tab-content > .tab-pane {
display: none; }
.tab-content > .active {
display: block; }
.nav-tabs .dropdown-menu {
margin-top: -1px;
border-top-right-radius: 0;
border-top-left-radius: 0; }
.navbar {
position: relative;
min-height: 50px;
margin-bottom: 20px;
border: 1px solid transparent; }
.navbar:before, .navbar:after {
content: " ";
display: table; }
.navbar:after {
clear: both; }
@media (min-width: 768px) {
.navbar {
border-radius: 4px; } }
.navbar-header:before, .navbar-header:after {
content: " ";
display: table; }
.navbar-header:after {
clear: both; }
@media (min-width: 768px) {
.navbar-header {
float: left; } }
.navbar-collapse {
overflow-x: visible;
padding-right: 15px;
padding-left: 15px;
border-top: 1px solid transparent;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
-webkit-overflow-scrolling: touch; }
.navbar-collapse:before, .navbar-collapse:after {
content: " ";
display: table; }
.navbar-collapse:after {
clear: both; }
.navbar-collapse.in {
overflow-y: auto; }
@media (min-width: 768px) {
.navbar-collapse {
width: auto;
border-top: 0;
box-shadow: none; }
.navbar-collapse.collapse {
display: block !important;
height: auto !important;
padding-bottom: 0;
overflow: visible !important; }
.navbar-collapse.in {
overflow-y: visible; }
.navbar-fixed-top .navbar-collapse,
.navbar-static-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
padding-left: 0;
padding-right: 0; } }
.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
max-height: 340px; }
@media (max-device-width: 480px) and (orientation: landscape) {
.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
max-height: 200px; } }
.container > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-header,
.container-fluid > .navbar-collapse {
margin-right: -15px;
margin-left: -15px; }
@media (min-width: 768px) {
.container > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-header,
.container-fluid > .navbar-collapse {
margin-right: 0;
margin-left: 0; } }
.navbar-static-top {
z-index: 1000;
border-width: 0 0 1px; }
@media (min-width: 768px) {
.navbar-static-top {
border-radius: 0; } }
.navbar-fixed-top,
.navbar-fixed-bottom {
position: fixed;
right: 0;
left: 0;
z-index: 1030; }
@media (min-width: 768px) {
.navbar-fixed-top,
.navbar-fixed-bottom {
border-radius: 0; } }
.navbar-fixed-top {
top: 0;
border-width: 0 0 1px; }
.navbar-fixed-bottom {
bottom: 0;
margin-bottom: 0;
border-width: 1px 0 0; }
.navbar-brand {
float: left;
padding: 15px 15px;
font-size: 18px;
line-height: 20px;
height: 50px; }
.navbar-brand:hover, .navbar-brand:focus {
text-decoration: none; }
.navbar-brand > img {
display: block; }
@media (min-width: 768px) {
.navbar > .container .navbar-brand,
.navbar > .container-fluid .navbar-brand {
margin-left: -15px; } }
.navbar-toggle {
position: relative;
float: right;
margin-right: 15px;
padding: 9px 10px;
margin-top: 8px;
margin-bottom: 8px;
background-color: transparent;
background-image: none;
border: 1px solid transparent;
border-radius: 4px; }
.navbar-toggle:focus {
outline: 0; }
.navbar-toggle .icon-bar {
display: block;
width: 22px;
height: 2px;
border-radius: 1px; }
.navbar-toggle .icon-bar + .icon-bar {
margin-top: 4px; }
@media (min-width: 768px) {
.navbar-toggle {
display: none; } }
.navbar-nav {
margin: 7.5px -15px; }
.navbar-nav > li > a {
padding-top: 10px;
padding-bottom: 10px;
line-height: 20px; }
@media (max-width: 767px) {
.navbar-nav .open .dropdown-menu {
position: static;
float: none;
width: auto;
margin-top: 0;
background-color: transparent;
border: 0;
box-shadow: none; }
.navbar-nav .open .dropdown-menu > li > a,
.navbar-nav .open .dropdown-menu .dropdown-header {
padding: 5px 15px 5px 25px; }
.navbar-nav .open .dropdown-menu > li > a {
line-height: 20px; }
.navbar-nav .open .dropdown-menu > li > a:hover, .navbar-nav .open .dropdown-menu > li > a:focus {
background-image: none; } }
@media (min-width: 768px) {
.navbar-nav {
float: left;
margin: 0; }
.navbar-nav > li {
float: left; }
.navbar-nav > li > a {
padding-top: 15px;
padding-bottom: 15px; } }
.navbar-form {
margin-left: -15px;
margin-right: -15px;
padding: 10px 15px;
border-top: 1px solid transparent;
border-bottom: 1px solid transparent;
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
margin-top: 8px;
margin-bottom: 8px; }
@media (min-width: 768px) {
.navbar-form .form-group {
display: inline-block;
margin-bottom: 0;
vertical-align: middle; }
.navbar-form .form-control {
display: inline-block;
width: auto;
vertical-align: middle; }
.navbar-form .form-control-static {
display: inline-block; }
.navbar-form .input-group {
display: inline-table;
vertical-align: middle; }
.navbar-form .input-group .input-group-addon,
.navbar-form .input-group .input-group-btn,
.navbar-form .input-group .form-control {
width: auto; }
.navbar-form .input-group > .form-control {
width: 100%; }
.navbar-form .control-label {
margin-bottom: 0;
vertical-align: middle; }
.navbar-form .radio,
.navbar-form .checkbox {
display: inline-block;
margin-top: 0;
margin-bottom: 0;
vertical-align: middle; }
.navbar-form .radio label,
.navbar-form .checkbox label {
padding-left: 0; }
.navbar-form .radio input[type="radio"],
.navbar-form .checkbox input[type="checkbox"] {
position: relative;
margin-left: 0; }
.navbar-form .has-feedback .form-control-feedback {
top: 0; } }
@media (max-width: 767px) {
.navbar-form .form-group {
margin-bottom: 5px; }
.navbar-form .form-group:last-child {
margin-bottom: 0; } }
@media (min-width: 768px) {
.navbar-form {
width: auto;
border: 0;
margin-left: 0;
margin-right: 0;
padding-top: 0;
padding-bottom: 0;
-webkit-box-shadow: none;
box-shadow: none; } }
.navbar-nav > li > .dropdown-menu {
margin-top: 0;
border-top-right-radius: 0;
border-top-left-radius: 0; }
.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
margin-bottom: 0;
border-top-right-radius: 4px;
border-top-left-radius: 4px;
border-bottom-right-radius: 0;
border-bottom-left-radius: 0; }
.navbar-btn {
margin-top: 8px;
margin-bottom: 8px; }
.navbar-btn.btn-sm, .btn-group-sm > .navbar-btn.btn {
margin-top: 10px;
margin-bottom: 10px; }
.navbar-btn.btn-xs, .btn-group-xs > .navbar-btn.btn {
margin-top: 14px;
margin-bottom: 14px; }
.navbar-text {
margin-top: 15px;
margin-bottom: 15px; }
@media (min-width: 768px) {
.navbar-text {
float: left;
margin-left: 15px;
margin-right: 15px; } }
@media (min-width: 768px) {
.navbar-left {
float: left !important; }
.navbar-right {
float: right !important;
margin-right: -15px; }
.navbar-right ~ .navbar-right {
margin-right: 0; } }
.navbar-default {
background-color: rgba(255, 255, 255, 0.9);
border-color: rgba(238, 238, 238, 0.9); }
.navbar-default .navbar-brand {
color: #252525; }
.navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus {
color: #4da5f4;
background-color: transparent; }
.navbar-default .navbar-text {
color: #fafafa; }
.navbar-default .navbar-nav > li > a {
color: #252525; }
.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
color: #4da5f4;
background-color: transparent; }
.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
color: #4da5f4;
background-color: transparent; }
.navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disabled > a:hover, .navbar-default .navbar-nav > .disabled > a:focus {
color: #ccc;
background-color: transparent; }
.navbar-default .navbar-toggle {
border-color: #ddd; }
.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
background-color: #ddd; }
.navbar-default .navbar-toggle .icon-bar {
background-color: #888; }
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
border-color: rgba(238, 238, 238, 0.9); }
.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
background-color: transparent;
color: #4da5f4; }
@media (max-width: 767px) {
.navbar-default .navbar-nav .open .dropdown-menu > li > a {
color: #252525; }
.navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
color: #4da5f4;
background-color: transparent; }
.navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
color: #4da5f4;
background-color: transparent; }
.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
color: #ccc;
background-color: transparent; } }
.navbar-default .navbar-link {
color: #252525; }
.navbar-default .navbar-link:hover {
color: #4da5f4; }
.navbar-default .btn-link {
color: #252525; }
.navbar-default .btn-link:hover, .navbar-default .btn-link:focus {
color: #4da5f4; }
.navbar-default .btn-link[disabled]:hover, .navbar-default .btn-link[disabled]:focus,
fieldset[disabled] .navbar-default .btn-link:hover,
fieldset[disabled] .navbar-default .btn-link:focus {
color: #ccc; }
.navbar-inverse {
background-color: #222;
border-color: #090909; }
.navbar-inverse .navbar-brand {
color: #9d9d9d; }
.navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus {
color: #fff;
background-color: transparent; }
.navbar-inverse .navbar-text {
color: #9d9d9d; }
.navbar-inverse .navbar-nav > li > a {
color: #9d9d9d; }
.navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus {
color: #fff;
background-color: transparent; }
.navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus {
color: #fff;
background-color: #090909; }
.navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > .disabled > a:hover, .navbar-inverse .navbar-nav > .disabled > a:focus {
color: #444;
background-color: transparent; }
.navbar-inverse .navbar-toggle {
border-color: #333; }
.navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus {
background-color: #333; }
.navbar-inverse .navbar-toggle .icon-bar {
background-color: #fff; }
.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
border-color: #101010; }
.navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus {
background-color: #090909;
color: #fff; }
@media (max-width: 767px) {
.navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
border-color: #090909; }
.navbar-inverse .navbar-nav .open .dropdown-menu .divider {
background-color: #090909; }
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
color: #9d9d9d; }
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
color: #fff;
background-color: transparent; }
.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
color: #fff;
background-color: #090909; }
.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
color: #444;
background-color: transparent; } }
.navbar-inverse .navbar-link {
color: #9d9d9d; }
.navbar-inverse .navbar-link:hover {
color: #fff; }
.navbar-inverse .btn-link {
color: #9d9d9d; }
.navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus {
color: #fff; }
.navbar-inverse .btn-link[disabled]:hover, .navbar-inverse .btn-link[disabled]:focus,
fieldset[disabled] .navbar-inverse .btn-link:hover,
fieldset[disabled] .navbar-inverse .btn-link:focus {
color: #444; }
.breadcrumb {
padding: 8px 15px;
margin-bottom: 20px;
list-style: none;
background-color: #f5f5f5;
border-radius: 4px; }
.breadcrumb > li {
display: inline-block; }
.breadcrumb > li + li:before {
content: "/ ";
padding: 0 5px;
color: #ccc; }
.breadcrumb > .active {
color: #777777; }
.pagination {
display: inline-block;
padding-left: 0;
margin: 20px 0;
border-radius: 4px; }
.pagination > li {
display: inline; }
.pagination > li > a,
.pagination > li > span {
position: relative;
float: left;
padding: 6px 12px;
line-height: 1.42857;
text-decoration: none;
color: #4d90fc;
background-color: #fff;
border: 1px solid #ddd;
margin-left: -1px; }
.pagination > li:first-child > a,
.pagination > li:first-child > span {
margin-left: 0;
border-bottom-left-radius: 4px;
border-top-left-radius: 4px; }
.pagination > li:last-child > a,
.pagination > li:last-child > span {
border-bottom-right-radius: 4px;
border-top-right-radius: 4px; }
.pagination > li > a:hover, .pagination > li > a:focus,
.pagination > li > span:hover,
.pagination > li > span:focus {
z-index: 2;
color: #0462f8;
background-color: #eeeeee;
border-color: #ddd; }
.pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus,
.pagination > .active > span,
.pagination > .active > span:hover,
.pagination > .active > span:focus {
z-index: 3;
color: #fff;
background-color: #4d90fc;
border-color: #4d90fc;
cursor: default; }
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
color: #777777;
background-color: #fff;
border-color: #ddd;
cursor: not-allowed; }
.pagination-lg > li > a,
.pagination-lg > li > span {
padding: 10px 16px;
font-size: 18px;
line-height: 1.33333; }
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
border-bottom-left-radius: 6px;
border-top-left-radius: 6px; }
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
border-bottom-right-radius: 6px;
border-top-right-radius: 6px; }
.pagination-sm > li > a,
.pagination-sm > li > span {
padding: 5px 10px;
font-size: 12px;
line-height: 1.5; }
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
border-bottom-left-radius: 3px;
border-top-left-radius: 3px; }
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
border-bottom-right-radius: 3px;
border-top-right-radius: 3px; }
.pager {
padding-left: 0;
margin: 20px 0;
list-style: none;
text-align: center; }
.pager:before, .pager:after {
content: " ";
display: table; }
.pager:after {
clear: both; }
.pager li {
display: inline; }
.pager li > a,
.pager li > span {
display: inline-block;
padding: 5px 14px;
background-color: #fff;
border: 1px solid #ddd;
border-radius: 15px; }
.pager li > a:hover,
.pager li > a:focus {
text-decoration: none;
background-color: #eeeeee; }
.pager .next > a,
.pager .next > span {
float: right; }
.pager .previous > a,
.pager .previous > span {
float: left; }
.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
color: #777777;
background-color: #fff;
cursor: not-allowed; }
.label {
display: inline;
padding: .2em .6em .3em;
font-size: 75%;
font-weight: bold;
line-height: 1;
color: #fff;
text-align: center;
white-space: nowrap;
vertical-align: baseline;
border-radius: .25em; }
.label:empty {
display: none; }
.btn .label {
position: relative;
top: -1px; }
a.label:hover, a.label:focus {
color: #fff;
text-decoration: none;
cursor: pointer; }
.label-default {
background-color: #777777; }
.label-default[href]:hover, .label-default[href]:focus {
background-color: #5e5e5e; }
.label-primary {
background-color: #4d90fc; }
.label-primary[href]:hover, .label-primary[href]:focus {
background-color: #1b71fb; }
.label-success {
background-color: #60bf60; }
.label-success[href]:hover, .label-success[href]:focus {
background-color: #44a844; }
.label-info {
background-color: #5bc0dd; }
.label-info[href]:hover, .label-info[href]:focus {
background-color: #31b0d4; }
.label-warning {
background-color: #ff9800; }
.label-warning[href]:hover, .label-warning[href]:focus {
background-color: #cc7a00; }
.label-danger {
background-color: #de4b33; }
.label-danger[href]:hover, .label-danger[href]:focus {
background-color: #bf351f; }
.badge {
display: inline-block;
min-width: 10px;
padding: 3px 7px;
font-size: 12px;
font-weight: bold;
color: #fff;
line-height: 1;
vertical-align: middle;
white-space: nowrap;
text-align: center;
background-color: #777777;
border-radius: 10px; }
.badge:empty {
display: none; }
.btn .badge {
position: relative;
top: -1px; }
.btn-xs .badge, .btn-group-xs > .btn .badge,
.btn-group-xs > .btn .badge {
top: 0;
padding: 1px 5px; }
.list-group-item.active > .badge,
.nav-pills > .active > a > .badge {
color: #4d90fc;
background-color: #fff; }
.list-group-item > .badge {
float: right; }
.list-group-item > .badge + .badge {
margin-right: 5px; }
.nav-pills > li > a > .badge {
margin-left: 3px; }
a.badge:hover, a.badge:focus {
color: #fff;
text-decoration: none;
cursor: pointer; }
.jumbotron {
padding-top: 30px;
padding-bottom: 30px;
margin-bottom: 30px;
color: inherit;
background-color: #eeeeee; }
.jumbotron h1,
.jumbotron .h1 {
color: inherit; }
.jumbotron p {
margin-bottom: 15px;
font-size: 21px;
font-weight: 200; }
.jumbotron > hr {
border-top-color: #d5d5d5; }
.container .jumbotron,
.container-fluid .jumbotron {
border-radius: 6px;
padding-left: 15px;
padding-right: 15px; }
.jumbotron .container {
max-width: 100%; }
@media screen and (min-width: 768px) {
.jumbotron {
padding-top: 48px;
padding-bottom: 48px; }
.container .jumbotron,
.container-fluid .jumbotron {
padding-left: 60px;
padding-right: 60px; }
.jumbotron h1,
.jumbotron .h1 {
font-size: 63px; } }
.thumbnail {
display: block;
padding: 4px;
margin-bottom: 20px;
line-height: 1.42857;
background-color: #fff;
border: 1px solid #ddd;
border-radius: 4px;
-webkit-transition: border 0.2s ease-in-out;
-o-transition: border 0.2s ease-in-out;
transition: border 0.2s ease-in-out; }
.thumbnail > img,
.thumbnail a > img {
display: block;
max-width: 100%;
height: auto;
margin-left: auto;
margin-right: auto; }
.thumbnail .caption {
padding: 9px;
color: #333333; }
a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
border-color: #4d90fc; }
.alert {
padding: 15px;
margin-bottom: 20px;
border: 1px solid transparent;
border-radius: 4px; }
.alert h4 {
margin-top: 0;
color: inherit; }
.alert .alert-link {
font-weight: bold; }
.alert > p,
.alert > ul {
margin-bottom: 0; }
.alert > p + p {
margin-top: 5px; }
.alert-dismissable,
.alert-dismissible {
padding-right: 35px; }
.alert-dismissable .close,
.alert-dismissible .close {
position: relative;
top: -2px;
right: -21px;
color: inherit; }
.alert-success {
background-color: #dbf5d3;
border-color: #aed3a5;
color: #569845; }
.alert-success hr {
border-top-color: #9fcb94; }
.alert-success .alert-link {
color: #427535; }
.alert-info {
background-color: #d9edf7;
border-color: #98cce7;
color: #3a87ad; }
.alert-info hr {
border-top-color: #83c2e2; }
.alert-info .alert-link {
color: #2d6987; }
.alert-warning {
background-color: #fdf8e2;
border-color: #f2daab;
color: #bf9853; }
.alert-warning hr {
border-top-color: #efd095; }
.alert-warning .alert-link {
color: #a37e3c; }
.alert-danger {
background-color: #f2dede;
border-color: #e0b1b8;
color: #b94a48; }
.alert-danger hr {
border-top-color: #d99fa7; }
.alert-danger .alert-link {
color: #953b39; }
@-webkit-keyframes progress-bar-stripes {
from {
background-position: 40px 0; }
to {
background-position: 0 0; } }
@keyframes progress-bar-stripes {
from {
background-position: 40px 0; }
to {
background-position: 0 0; } }
.progress {
overflow: hidden;
height: 20px;
margin-bottom: 20px;
background-color: #f5f5f5;
border-radius: 4px;
-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); }
.progress-bar {
float: left;
width: 0%;
height: 100%;
font-size: 12px;
line-height: 20px;
color: #fff;
text-align: center;
background-color: #4d90fc;
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
-webkit-transition: width 0.6s ease;
-o-transition: width 0.6s ease;
transition: width 0.6s ease; }
.progress-striped .progress-bar,
.progress-bar-striped {
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-size: 40px 40px; }
.progress.active .progress-bar,
.progress-bar.active {
-webkit-animation: progress-bar-stripes 2s linear infinite;
-o-animation: progress-bar-stripes 2s linear infinite;
animation: progress-bar-stripes 2s linear infinite; }
.progress-bar-success {
background-color: #60bf60; }
.progress-striped .progress-bar-success {
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }
.progress-bar-info {
background-color: #5bc0dd; }
.progress-striped .progress-bar-info {
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }
.progress-bar-warning {
background-color: #ff9800; }
.progress-striped .progress-bar-warning {
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }
.progress-bar-danger {
background-color: #de4b33; }
.progress-striped .progress-bar-danger {
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }
.media {
margin-top: 15px; }
.media:first-child {
margin-top: 0; }
.media,
.media-body {
zoom: 1;
overflow: hidden; }
.media-body {
width: 10000px; }
.media-object {
display: block; }
.media-object.img-thumbnail {
max-width: none; }
.media-right,
.media > .pull-right {
padding-left: 10px; }
.media-left,
.media > .pull-left {
padding-right: 10px; }
.media-left,
.media-right,
.media-body {
display: table-cell;
vertical-align: top; }
.media-middle {
vertical-align: middle; }
.media-bottom {
vertical-align: bottom; }
.media-heading {
margin-top: 0;
margin-bottom: 5px; }
.media-list {
padding-left: 0;
list-style: none; }
.list-group {
margin-bottom: 20px;
padding-left: 0; }
.list-group-item {
position: relative;
display: block;
padding: 10px 15px;
margin-bottom: -1px;
background-color: #fff;
border: 1px solid #ddd; }
.list-group-item:first-child {
border-top-right-radius: 4px;
border-top-left-radius: 4px; }
.list-group-item:last-child {
margin-bottom: 0;
border-bottom-right-radius: 4px;
border-bottom-left-radius: 4px; }
a.list-group-item,
button.list-group-item {
color: #555; }
a.list-group-item .list-group-item-heading,
button.list-group-item .list-group-item-heading {
color: #333; }
a.list-group-item:hover, a.list-group-item:focus,
button.list-group-item:hover,
button.list-group-item:focus {
text-decoration: none;
color: #555;
background-color: #f5f5f5; }
button.list-group-item {
width: 100%;
text-align: left; }
.list-group-item.disabled, .list-group-item.disabled:hover, .list-group-item.disabled:focus {
background-color: #eeeeee;
color: #777777;
cursor: not-allowed; }
.list-group-item.disabled .list-group-item-heading, .list-group-item.disabled:hover .list-group-item-heading, .list-group-item.disabled:focus .list-group-item-heading {
color: inherit; }
.list-group-item.disabled .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text {
color: #777777; }
.list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus {
z-index: 2;
color: #fff;
background-color: #4d90fc;
border-color: #4d90fc; }
.list-group-item.active .list-group-item-heading,
.list-group-item.active .list-group-item-heading > small,
.list-group-item.active .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading > small,
.list-group-item.active:hover .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading,
.list-group-item.active:focus .list-group-item-heading > small,
.list-group-item.active:focus .list-group-item-heading > .small {
color: inherit; }
.list-group-item.active .list-group-item-text, .list-group-item.active:hover .list-group-item-text, .list-group-item.active:focus .list-group-item-text {
color: white; }
.list-group-item-success {
color: #569845;
background-color: #dbf5d3; }
a.list-group-item-success,
button.list-group-item-success {
color: #569845; }
a.list-group-item-success .list-group-item-heading,
button.list-group-item-success .list-group-item-heading {
color: inherit; }
a.list-group-item-success:hover, a.list-group-item-success:focus,
button.list-group-item-success:hover,
button.list-group-item-success:focus {
color: #569845;
background-color: #caf0be; }
a.list-group-item-success.active, a.list-group-item-success.active:hover, a.list-group-item-success.active:focus,
button.list-group-item-success.active,
button.list-group-item-success.active:hover,
button.list-group-item-success.active:focus {
color: #fff;
background-color: #569845;
border-color: #569845; }
.list-group-item-info {
color: #3a87ad;
background-color: #d9edf7; }
a.list-group-item-info,
button.list-group-item-info {
color: #3a87ad; }
a.list-group-item-info .list-group-item-heading,
button.list-group-item-info .list-group-item-heading {
color: inherit; }
a.list-group-item-info:hover, a.list-group-item-info:focus,
button.list-group-item-info:hover,
button.list-group-item-info:focus {
color: #3a87ad;
background-color: #c4e3f3; }
a.list-group-item-info.active, a.list-group-item-info.active:hover, a.list-group-item-info.active:focus,
button.list-group-item-info.active,
button.list-group-item-info.active:hover,
button.list-group-item-info.active:focus {
color: #fff;
background-color: #3a87ad;
border-color: #3a87ad; }
.list-group-item-warning {
color: #bf9853;
background-color: #fdf8e2; }
a.list-group-item-warning,
button.list-group-item-warning {
color: #bf9853; }
a.list-group-item-warning .list-group-item-heading,
button.list-group-item-warning .list-group-item-heading {
color: inherit; }
a.list-group-item-warning:hover, a.list-group-item-warning:focus,
button.list-group-item-warning:hover,
button.list-group-item-warning:focus {
color: #bf9853;
background-color: #fbf2ca; }
a.list-group-item-warning.active, a.list-group-item-warning.active:hover, a.list-group-item-warning.active:focus,
button.list-group-item-warning.active,
button.list-group-item-warning.active:hover,
button.list-group-item-warning.active:focus {
color: #fff;
background-color: #bf9853;
border-color: #bf9853; }
.list-group-item-danger {
color: #b94a48;
background-color: #f2dede; }
a.list-group-item-danger,
button.list-group-item-danger {
color: #b94a48; }
a.list-group-item-danger .list-group-item-heading,
button.list-group-item-danger .list-group-item-heading {
color: inherit; }
a.list-group-item-danger:hover, a.list-group-item-danger:focus,
button.list-group-item-danger:hover,
button.list-group-item-danger:focus {
color: #b94a48;
background-color: #ebcccc; }
a.list-group-item-danger.active, a.list-group-item-danger.active:hover, a.list-group-item-danger.active:focus,
button.list-group-item-danger.active,
button.list-group-item-danger.active:hover,
button.list-group-item-danger.active:focus {
color: #fff;
background-color: #b94a48;
border-color: #b94a48; }
.list-group-item-heading {
margin-top: 0;
margin-bottom: 5px; }
.list-group-item-text {
margin-bottom: 0;
line-height: 1.3; }
.panel {
margin-bottom: 20px;
background-color: #fff;
border: 1px solid transparent;
border-radius: 4px;
-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); }
.panel-body {
padding: 15px; }
.panel-body:before, .panel-body:after {
content: " ";
display: table; }
.panel-body:after {
clear: both; }
.panel-heading {
padding: 10px 15px;
border-bottom: 1px solid transparent;
border-top-right-radius: 3px;
border-top-left-radius: 3px; }
.panel-heading > .dropdown .dropdown-toggle {
color: inherit; }
.panel-title {
margin-top: 0;
margin-bottom: 0;
font-size: 16px;
color: inherit; }
.panel-title > a,
.panel-title > small,
.panel-title > .small,
.panel-title > small > a,
.panel-title > .small > a {
color: inherit; }
.panel-footer {
padding: 10px 15px;
background-color: #f5f5f5;
border-top: 1px solid #ddd;
border-bottom-right-radius: 3px;
border-bottom-left-radius: 3px; }
.panel > .list-group,
.panel > .panel-collapse > .list-group {
margin-bottom: 0; }
.panel > .list-group .list-group-item,
.panel > .panel-collapse > .list-group .list-group-item {
border-width: 1px 0;
border-radius: 0; }
.panel > .list-group:first-child .list-group-item:first-child,
.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
border-top: 0;
border-top-right-radius: 3px;
border-top-left-radius: 3px; }
.panel > .list-group:last-child .list-group-item:last-child,
.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
border-bottom: 0;
border-bottom-right-radius: 3px;
border-bottom-left-radius: 3px; }
.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
border-top-right-radius: 0;
border-top-left-radius: 0; }
.panel-heading + .list-group .list-group-item:first-child {
border-top-width: 0; }
.list-group + .panel-footer {
border-top-width: 0; }
.panel > .table,
.panel > .table-responsive > .table,
.panel > .panel-collapse > .table {
margin-bottom: 0; }
.panel > .table caption,
.panel > .table-responsive > .table caption,
.panel > .panel-collapse > .table caption {
padding-left: 15px;
padding-right: 15px; }
.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
border-top-right-radius: 3px;
border-top-left-radius: 3px; }
.panel > .table:first-child > thead:first-child > tr:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
border-top-left-radius: 3px;
border-top-right-radius: 3px; }
.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
border-top-left-radius: 3px; }
.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
border-top-right-radius: 3px; }
.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
border-bottom-right-radius: 3px;
border-bottom-left-radius: 3px; }
.panel > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
border-bottom-left-radius: 3px;
border-bottom-right-radius: 3px; }
.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
border-bottom-left-radius: 3px; }
.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
border-bottom-right-radius: 3px; }
.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive,
.panel > .table + .panel-body,
.panel > .table-responsive + .panel-body {
border-top: 1px solid #ddd; }
.panel > .table > tbody:first-child > tr:first-child th,
.panel > .table > tbody:first-child > tr:first-child td {
border-top: 0; }
.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
border: 0; }
.panel > .table-bordered > thead > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
border-left: 0; }
.panel > .table-bordered > thead > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
border-right: 0; }
.panel > .table-bordered > thead > tr:first-child > td,
.panel > .table-bordered > thead > tr:first-child > th,
.panel > .table-bordered > tbody > tr:first-child > td,
.panel > .table-bordered > tbody > tr:first-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
border-bottom: 0; }
.panel > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
border-bottom: 0; }
.panel > .table-responsive {
border: 0;
margin-bottom: 0; }
.panel-group {
margin-bottom: 20px; }
.panel-group .panel {
margin-bottom: 0;
border-radius: 4px; }
.panel-group .panel + .panel {
margin-top: 5px; }
.panel-group .panel-heading {
border-bottom: 0; }
.panel-group .panel-heading + .panel-collapse > .panel-body,
.panel-group .panel-heading + .panel-collapse > .list-group {
border-top: 1px solid #ddd; }
.panel-group .panel-footer {
border-top: 0; }
.panel-group .panel-footer + .panel-collapse .panel-body {
border-bottom: 1px solid #ddd; }
.panel-default {
border-color: #ddd; }
.panel-default > .panel-heading {
color: #333333;
background-color: #f5f5f5;
border-color: #ddd; }
.panel-default > .panel-heading + .panel-collapse > .panel-body {
border-top-color: #ddd; }
.panel-default > .panel-heading .badge {
color: #f5f5f5;
background-color: #333333; }
.panel-default > .panel-footer + .panel-collapse > .panel-body {
border-bottom-color: #ddd; }
.panel-primary {
border-color: #4d90fc; }
.panel-primary > .panel-heading {
color: #fff;
background-color: #4d90fc;
border-color: #4d90fc; }
.panel-primary > .panel-heading + .panel-collapse > .panel-body {
border-top-color: #4d90fc; }
.panel-primary > .panel-heading .badge {
color: #4d90fc;
background-color: #fff; }
.panel-primary > .panel-footer + .panel-collapse > .panel-body {
border-bottom-color: #4d90fc; }
.panel-success {
border-color: #aed3a5; }
.panel-success > .panel-heading {
color: #569845;
background-color: #dbf5d3;
border-color: #aed3a5; }
.panel-success > .panel-heading + .panel-collapse > .panel-body {
border-top-color: #aed3a5; }
.panel-success > .panel-heading .badge {
color: #dbf5d3;
background-color: #569845; }
.panel-success > .panel-footer + .panel-collapse > .panel-body {
border-bottom-color: #aed3a5; }
.panel-info {
border-color: #98cce7; }
.panel-info > .panel-heading {
color: #3a87ad;
background-color: #d9edf7;
border-color: #98cce7; }
.panel-info > .panel-heading + .panel-collapse > .panel-body {
border-top-color: #98cce7; }
.panel-info > .panel-heading .badge {
color: #d9edf7;
background-color: #3a87ad; }
.panel-info > .panel-footer + .panel-collapse > .panel-body {
border-bottom-color: #98cce7; }
.panel-warning {
border-color: #f2daab; }
.panel-warning > .panel-heading {
color: #bf9853;
background-color: #fdf8e2;
border-color: #f2daab; }
.panel-warning > .panel-heading + .panel-collapse > .panel-body {
border-top-color: #f2daab; }
.panel-warning > .panel-heading .badge {
color: #fdf8e2;
background-color: #bf9853; }
.panel-warning > .panel-footer + .panel-collapse > .panel-body {
border-bottom-color: #f2daab; }
.panel-danger {
border-color: #e0b1b8; }
.panel-danger > .panel-heading {
color: #b94a48;
background-color: #f2dede;
border-color: #e0b1b8; }
.panel-danger > .panel-heading + .panel-collapse > .panel-body {
border-top-color: #e0b1b8; }
.panel-danger > .panel-heading .badge {
color: #f2dede;
background-color: #b94a48; }
.panel-danger > .panel-footer + .panel-collapse > .panel-body {
border-bottom-color: #e0b1b8; }
.embed-responsive {
position: relative;
display: block;
height: 0;
padding: 0;
overflow: hidden; }
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
position: absolute;
top: 0;
left: 0;
bottom: 0;
height: 100%;
width: 100%;
border: 0; }
.embed-responsive-16by9 {
padding-bottom: 56.25%; }
.embed-responsive-4by3 {
padding-bottom: 75%; }
.well {
min-height: 20px;
padding: 19px;
margin-bottom: 20px;
background-color: #f5f5f5;
border: 1px solid #e3e3e3;
border-radius: 4px;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); }
.well blockquote {
border-color: #ddd;
border-color: rgba(0, 0, 0, 0.15); }
.well-lg {
padding: 24px;
border-radius: 6px; }
.well-sm {
padding: 9px;
border-radius: 3px; }
.close {
float: right;
font-size: 21px;
font-weight: bold;
line-height: 1;
color: #000;
text-shadow: 0 1px 0 #fff;
opacity: 0.2;
filter: alpha(opacity=20); }
.close:hover, .close:focus {
color: #000;
text-decoration: none;
cursor: pointer;
opacity: 0.5;
filter: alpha(opacity=50); }
button.close {
padding: 0;
cursor: pointer;
background: transparent;
border: 0;
-webkit-appearance: none; }
.modal-open {
overflow: hidden; }
.modal {
display: none;
overflow: hidden;
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 1050;
-webkit-overflow-scrolling: touch;
outline: 0; }
.modal.fade .modal-dialog {
-webkit-transform: translate(0, -25%);
-ms-transform: translate(0, -25%);
-o-transform: translate(0, -25%);
transform: translate(0, -25%);
-webkit-transition: -webkit-transform 0.3s ease-out;
-moz-transition: -moz-transform 0.3s ease-out;
-o-transition: -o-transform 0.3s ease-out;
transition: transform 0.3s ease-out; }
.modal.in .modal-dialog {
-webkit-transform: translate(0, 0);
-ms-transform: translate(0, 0);
-o-transform: translate(0, 0);
transform: translate(0, 0); }
.modal-open .modal {
overflow-x: hidden;
overflow-y: auto; }
.modal-dialog {
position: relative;
width: auto;
margin: 10px; }
.modal-content {
position: relative;
background-color: #fff;
border: 1px solid #999;
border: 1px solid rgba(0, 0, 0, 0.2);
border-radius: 6px;
-webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
background-clip: padding-box;
outline: 0; }
.modal-backdrop {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 1040;
background-color: #000; }
.modal-backdrop.fade {
opacity: 0;
filter: alpha(opacity=0); }
.modal-backdrop.in {
opacity: 0.5;
filter: alpha(opacity=50); }
.modal-header {
padding: 15px;
border-bottom: 1px solid #e5e5e5; }
.modal-header:before, .modal-header:after {
content: " ";
display: table; }
.modal-header:after {
clear: both; }
.modal-header .close {
margin-top: -2px; }
.modal-title {
margin: 0;
line-height: 1.42857; }
.modal-body {
position: relative;
padding: 15px; }
.modal-footer {
padding: 15px;
text-align: right;
border-top: 1px solid #e5e5e5; }
.modal-footer:before, .modal-footer:after {
content: " ";
display: table; }
.modal-footer:after {
clear: both; }
.modal-footer .btn + .btn {
margin-left: 5px;
margin-bottom: 0; }
.modal-footer .btn-group .btn + .btn {
margin-left: -1px; }
.modal-footer .btn-block + .btn-block {
margin-left: 0; }
.modal-scrollbar-measure {
position: absolute;
top: -9999px;
width: 50px;
height: 50px;
overflow: scroll; }
@media (min-width: 768px) {
.modal-dialog {
width: 600px;
margin: 30px auto; }
.modal-content {
-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); }
.modal-sm {
width: 300px; } }
@media (min-width: 992px) {
.modal-lg {
width: 900px; } }
.tooltip {
position: absolute;
z-index: 1070;
display: block;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-style: normal;
font-weight: normal;
letter-spacing: normal;
line-break: auto;
line-height: 1.42857;
text-align: left;
text-align: start;
text-decoration: none;
text-shadow: none;
text-transform: none;
white-space: normal;
word-break: normal;
word-spacing: normal;
word-wrap: normal;
font-size: 12px;
opacity: 0;
filter: alpha(opacity=0); }
.tooltip.in {
opacity: 0.9;
filter: alpha(opacity=90); }
.tooltip.top {
margin-top: -3px;
padding: 5px 0; }
.tooltip.right {
margin-left: 3px;
padding: 0 5px; }
.tooltip.bottom {
margin-top: 3px;
padding: 5px 0; }
.tooltip.left {
margin-left: -3px;
padding: 0 5px; }
.tooltip-inner {
max-width: 200px;
padding: 3px 8px;
color: #fff;
text-align: center;
background-color: #000;
border-radius: 4px; }
.tooltip-arrow {
position: absolute;
width: 0;
height: 0;
border-color: transparent;
border-style: solid; }
.tooltip.top .tooltip-arrow {
bottom: 0;
left: 50%;
margin-left: -5px;
border-width: 5px 5px 0;
border-top-color: #000; }
.tooltip.top-left .tooltip-arrow {
bottom: 0;
right: 5px;
margin-bottom: -5px;
border-width: 5px 5px 0;
border-top-color: #000; }
.tooltip.top-right .tooltip-arrow {
bottom: 0;
left: 5px;
margin-bottom: -5px;
border-width: 5px 5px 0;
border-top-color: #000; }
.tooltip.right .tooltip-arrow {
top: 50%;
left: 0;
margin-top: -5px;
border-width: 5px 5px 5px 0;
border-right-color: #000; }
.tooltip.left .tooltip-arrow {
top: 50%;
right: 0;
margin-top: -5px;
border-width: 5px 0 5px 5px;
border-left-color: #000; }
.tooltip.bottom .tooltip-arrow {
top: 0;
left: 50%;
margin-left: -5px;
border-width: 0 5px 5px;
border-bottom-color: #000; }
.tooltip.bottom-left .tooltip-arrow {
top: 0;
right: 5px;
margin-top: -5px;
border-width: 0 5px 5px;
border-bottom-color: #000; }
.tooltip.bottom-right .tooltip-arrow {
top: 0;
left: 5px;
margin-top: -5px;
border-width: 0 5px 5px;
border-bottom-color: #000; }
.popover {
position: absolute;
top: 0;
left: 0;
z-index: 1060;
display: none;
max-width: 276px;
padding: 1px;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-style: normal;
font-weight: normal;
letter-spacing: normal;
line-break: auto;
line-height: 1.42857;
text-align: left;
text-align: start;
text-decoration: none;
text-shadow: none;
text-transform: none;
white-space: normal;
word-break: normal;
word-spacing: normal;
word-wrap: normal;
font-size: 14px;
background-color: #fff;
background-clip: padding-box;
border: 1px solid #ccc;
border: 1px solid rgba(0, 0, 0, 0.2);
border-radius: 6px;
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); }
.popover.top {
margin-top: -10px; }
.popover.right {
margin-left: 10px; }
.popover.bottom {
margin-top: 10px; }
.popover.left {
margin-left: -10px; }
.popover-title {
margin: 0;
padding: 8px 14px;
font-size: 14px;
background-color: #f7f7f7;
border-bottom: 1px solid #ebebeb;
border-radius: 5px 5px 0 0; }
.popover-content {
padding: 9px 14px; }
.popover > .arrow, .popover > .arrow:after {
position: absolute;
display: block;
width: 0;
height: 0;
border-color: transparent;
border-style: solid; }
.popover > .arrow {
border-width: 11px; }
.popover > .arrow:after {
border-width: 10px;
content: ""; }
.popover.top > .arrow {
left: 50%;
margin-left: -11px;
border-bottom-width: 0;
border-top-color: #999999;
border-top-color: rgba(0, 0, 0, 0.25);
bottom: -11px; }
.popover.top > .arrow:after {
content: " ";
bottom: 1px;
margin-left: -10px;
border-bottom-width: 0;
border-top-color: #fff; }
.popover.right > .arrow {
top: 50%;
left: -11px;
margin-top: -11px;
border-left-width: 0;
border-right-color: #999999;
border-right-color: rgba(0, 0, 0, 0.25); }
.popover.right > .arrow:after {
content: " ";
left: 1px;
bottom: -10px;
border-left-width: 0;
border-right-color: #fff; }
.popover.bottom > .arrow {
left: 50%;
margin-left: -11px;
border-top-width: 0;
border-bottom-color: #999999;
border-bottom-color: rgba(0, 0, 0, 0.25);
top: -11px; }
.popover.bottom > .arrow:after {
content: " ";
top: 1px;
margin-left: -10px;
border-top-width: 0;
border-bottom-color: #fff; }
.popover.left > .arrow {
top: 50%;
right: -11px;
margin-top: -11px;
border-right-width: 0;
border-left-color: #999999;
border-left-color: rgba(0, 0, 0, 0.25); }
.popover.left > .arrow:after {
content: " ";
right: 1px;
border-right-width: 0;
border-left-color: #fff;
bottom: -10px; }
.carousel {
position: relative; }
.carousel-inner {
position: relative;
overflow: hidden;
width: 100%; }
.carousel-inner > .item {
display: none;
position: relative;
-webkit-transition: 0.6s ease-in-out left;
-o-transition: 0.6s ease-in-out left;
transition: 0.6s ease-in-out left; }
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
display: block;
max-width: 100%;
height: auto;
line-height: 1; }
@media all and (transform-3d), (-webkit-transform-3d) {
.carousel-inner > .item {
-webkit-transition: -webkit-transform 0.6s ease-in-out;
-moz-transition: -moz-transform 0.6s ease-in-out;
-o-transition: -o-transform 0.6s ease-in-out;
transition: transform 0.6s ease-in-out;
-webkit-backface-visibility: hidden;
-moz-backface-visibility: hidden;
backface-visibility: hidden;
-webkit-perspective: 1000px;
-moz-perspective: 1000px;
perspective: 1000px; }
.carousel-inner > .item.next, .carousel-inner > .item.active.right {
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
left: 0; }
.carousel-inner > .item.prev, .carousel-inner > .item.active.left {
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
left: 0; }
.carousel-inner > .item.next.left, .carousel-inner > .item.prev.right, .carousel-inner > .item.active {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
left: 0; } }
.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
display: block; }
.carousel-inner > .active {
left: 0; }
.carousel-inner > .next,
.carousel-inner > .prev {
position: absolute;
top: 0;
width: 100%; }
.carousel-inner > .next {
left: 100%; }
.carousel-inner > .prev {
left: -100%; }
.carousel-inner > .next.left,
.carousel-inner > .prev.right {
left: 0; }
.carousel-inner > .active.left {
left: -100%; }
.carousel-inner > .active.right {
left: 100%; }
.carousel-control {
position: absolute;
top: 0;
left: 0;
bottom: 0;
width: 15%;
opacity: 0.5;
filter: alpha(opacity=50);
font-size: 20px;
color: #fff;
text-align: center;
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
background-color: transparent; }
.carousel-control.left {
background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1); }
.carousel-control.right {
left: auto;
right: 0;
background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1); }
.carousel-control:hover, .carousel-control:focus {
outline: 0;
color: #fff;
text-decoration: none;
opacity: 0.9;
filter: alpha(opacity=90); }
.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
position: absolute;
top: 50%;
margin-top: -10px;
z-index: 5;
display: inline-block; }
.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
left: 50%;
margin-left: -10px; }
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
right: 50%;
margin-right: -10px; }
.carousel-control .icon-prev,
.carousel-control .icon-next {
width: 20px;
height: 20px;
line-height: 1;
font-family: serif; }
.carousel-control .icon-prev:before {
content: '\2039'; }
.carousel-control .icon-next:before {
content: '\203a'; }
.carousel-indicators {
position: absolute;
bottom: 10px;
left: 50%;
z-index: 15;
width: 60%;
margin-left: -30%;
padding-left: 0;
list-style: none;
text-align: center; }
.carousel-indicators li {
display: inline-block;
width: 10px;
height: 10px;
margin: 1px;
text-indent: -999px;
border: 1px solid #fff;
border-radius: 10px;
cursor: pointer;
background-color: #000 \9;
background-color: transparent; }
.carousel-indicators .active {
margin: 0;
width: 12px;
height: 12px;
background-color: #fff; }
.carousel-caption {
position: absolute;
left: 15%;
right: 15%;
bottom: 20px;
z-index: 10;
padding-top: 20px;
padding-bottom: 20px;
color: #fff;
text-align: center;
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); }
.carousel-caption .btn {
text-shadow: none; }
@media screen and (min-width: 768px) {
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-prev,
.carousel-control .icon-next {
width: 30px;
height: 30px;
margin-top: -10px;
font-size: 30px; }
.carousel-control .glyphicon-chevron-left,
.carousel-control .icon-prev {
margin-left: -10px; }
.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-next {
margin-right: -10px; }
.carousel-caption {
left: 20%;
right: 20%;
padding-bottom: 30px; }
.carousel-indicators {
bottom: 20px; } }
.clearfix:before, .clearfix:after {
content: " ";
display: table; }
.clearfix:after {
clear: both; }
.center-block {
display: block;
margin-left: auto;
margin-right: auto; }
.pull-right {
float: right !important; }
.pull-left {
float: left !important; }
.hide {
display: none !important; }
.show {
display: block !important; }
.invisible {
visibility: hidden; }
.text-hide {
font: 0/0 a;
color: transparent;
text-shadow: none;
background-color: transparent;
border: 0; }
.hidden {
display: none !important; }
.affix {
position: fixed; }
@-ms-viewport {
width: device-width; }
.visible-xs {
display: none !important; }
.visible-sm {
display: none !important; }
.visible-md {
display: none !important; }
.visible-lg {
display: none !important; }
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
display: none !important; }
@media (max-width: 767px) {
.visible-xs {
display: block !important; }
table.visible-xs {
display: table !important; }
tr.visible-xs {
display: table-row !important; }
th.visible-xs,
td.visible-xs {
display: table-cell !important; } }
@media (max-width: 767px) {
.visible-xs-block {
display: block !important; } }
@media (max-width: 767px) {
.visible-xs-inline {
display: inline !important; } }
@media (max-width: 767px) {
.visible-xs-inline-block {
display: inline-block !important; } }
@media (min-width: 768px) and (max-width: 991px) {
.visible-sm {
display: block !important; }
table.visible-sm {
display: table !important; }
tr.visible-sm {
display: table-row !important; }
th.visible-sm,
td.visible-sm {
display: table-cell !important; } }
@media (min-width: 768px) and (max-width: 991px) {
.visible-sm-block {
display: block !important; } }
@media (min-width: 768px) and (max-width: 991px) {
.visible-sm-inline {
display: inline !important; } }
@media (min-width: 768px) and (max-width: 991px) {
.visible-sm-inline-block {
display: inline-block !important; } }
@media (min-width: 992px) and (max-width: 1199px) {
.visible-md {
display: block !important; }
table.visible-md {
display: table !important; }
tr.visible-md {
display: table-row !important; }
th.visible-md,
td.visible-md {
display: table-cell !important; } }
@media (min-width: 992px) and (max-width: 1199px) {
.visible-md-block {
display: block !important; } }
@media (min-width: 992px) and (max-width: 1199px) {
.visible-md-inline {
display: inline !important; } }
@media (min-width: 992px) and (max-width: 1199px) {
.visible-md-inline-block {
display: inline-block !important; } }
@media (min-width: 1200px) {
.visible-lg {
display: block !important; }
table.visible-lg {
display: table !important; }
tr.visible-lg {
display: table-row !important; }
th.visible-lg,
td.visible-lg {
display: table-cell !important; } }
@media (min-width: 1200px) {
.visible-lg-block {
display: block !important; } }
@media (min-width: 1200px) {
.visible-lg-inline {
display: inline !important; } }
@media (min-width: 1200px) {
.visible-lg-inline-block {
display: inline-block !important; } }
@media (max-width: 767px) {
.hidden-xs {
display: none !important; } }
@media (min-width: 768px) and (max-width: 991px) {
.hidden-sm {
display: none !important; } }
@media (min-width: 992px) and (max-width: 1199px) {
.hidden-md {
display: none !important; } }
@media (min-width: 1200px) {
.hidden-lg {
display: none !important; } }
.visible-print {
display: none !important; }
@media print {
.visible-print {
display: block !important; }
table.visible-print {
display: table !important; }
tr.visible-print {
display: table-row !important; }
th.visible-print,
td.visible-print {
display: table-cell !important; } }
.visible-print-block {
display: none !important; }
@media print {
.visible-print-block {
display: block !important; } }
.visible-print-inline {
display: none !important; }
@media print {
.visible-print-inline {
display: inline !important; } }
.visible-print-inline-block {
display: none !important; }
@media print {
.visible-print-inline-block {
display: inline-block !important; } }
@media print {
.hidden-print {
display: none !important; } }
/*
* Social Buttons for Bootstrap
*
* Copyright 2013-2015 Panayiotis Lipiridis
* Licensed under the MIT License
*
* https://github.com/lipis/bootstrap-social
*/
.btn-social, .btn-social-icon {
position: relative;
padding-left: 44px;
text-align: left;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis; }
.btn-social > :first-child, .btn-social-icon > :first-child {
position: absolute;
left: 0;
top: 0;
bottom: 0;
width: 32px;
line-height: 34px;
font-size: 1.6em;
text-align: center;
border-right: 1px solid rgba(0, 0, 0, 0.2); }
.btn-social.btn-lg, .btn-group-lg > .btn-social.btn, .btn-group-lg > .btn.btn-social-icon, .btn-lg.btn-social-icon {
padding-left: 61px; }
.btn-social.btn-lg > :first-child, .btn-group-lg > .btn-social.btn > :first-child, .btn-group-lg > .btn.btn-social-icon > :first-child, .btn-lg.btn-social-icon > :first-child {
line-height: 45px;
width: 45px;
font-size: 1.8em; }
.btn-social.btn-sm, .btn-group-sm > .btn-social.btn, .btn-group-sm > .btn.btn-social-icon, .btn-sm.btn-social-icon {
padding-left: 38px; }
.btn-social.btn-sm > :first-child, .btn-group-sm > .btn-social.btn > :first-child, .btn-group-sm > .btn.btn-social-icon > :first-child, .btn-sm.btn-social-icon > :first-child {
line-height: 28px;
width: 28px;
font-size: 1.4em; }
.btn-social.btn-xs, .btn-group-xs > .btn-social.btn, .btn-group-xs > .btn.btn-social-icon, .btn-xs.btn-social-icon {
padding-left: 30px; }
.btn-social.btn-xs > :first-child, .btn-group-xs > .btn-social.btn > :first-child, .btn-group-xs > .btn.btn-social-icon > :first-child, .btn-xs.btn-social-icon > :first-child {
line-height: 20px;
width: 20px;
font-size: 1.2em; }
.btn-social-icon {
height: 34px;
width: 34px;
padding: 0; }
.btn-social-icon > :first-child {
border: none;
text-align: center;
width: 100% !important; }
.btn-social-icon.btn-lg, .btn-group-lg > .btn-social-icon.btn {
height: 45px;
width: 45px;
padding-left: 0;
padding-right: 0; }
.btn-social-icon.btn-sm, .btn-group-sm > .btn-social-icon.btn {
height: 30px;
width: 30px;
padding-left: 0;
padding-right: 0; }
.btn-social-icon.btn-xs, .btn-group-xs > .btn-social-icon.btn {
height: 22px;
width: 22px;
padding-left: 0;
padding-right: 0; }
.btn-adn {
background-color: #d87a68;
color: #fff;
background-color: #d87a68;
border-color: rgba(0, 0, 0, 0.2); }
.btn-adn:focus, .btn-adn.focus {
color: #fff;
background-color: #ce563f;
border-color: rgba(0, 0, 0, 0.2); }
.btn-adn:hover {
color: #fff;
background-color: #ce563f;
border-color: rgba(0, 0, 0, 0.2); }
.btn-adn:active, .btn-adn.active,
.open > .btn-adn.dropdown-toggle {
color: #fff;
background-color: #ce563f;
border-color: rgba(0, 0, 0, 0.2); }
.btn-adn:active:hover, .btn-adn:active:focus, .btn-adn:active.focus, .btn-adn.active:hover, .btn-adn.active:focus, .btn-adn.active.focus,
.open > .btn-adn.dropdown-toggle:hover,
.open > .btn-adn.dropdown-toggle:focus,
.open > .btn-adn.dropdown-toggle.focus {
color: #fff;
background-color: #b94630;
border-color: rgba(0, 0, 0, 0.2); }
.btn-adn:active, .btn-adn.active,
.open > .btn-adn.dropdown-toggle {
background-image: none; }
.btn-adn.disabled:hover, .btn-adn.disabled:focus, .btn-adn.disabled.focus, .btn-adn[disabled]:hover, .btn-adn[disabled]:focus, .btn-adn[disabled].focus,
fieldset[disabled] .btn-adn:hover,
fieldset[disabled] .btn-adn:focus,
fieldset[disabled] .btn-adn.focus {
background-color: #d87a68;
border-color: rgba(0, 0, 0, 0.2); }
.btn-adn .badge {
color: #d87a68;
background-color: #fff; }
.btn-bitbucket {
background-color: #205081;
color: #fff;
background-color: #205081;
border-color: rgba(0, 0, 0, 0.2); }
.btn-bitbucket:focus, .btn-bitbucket.focus {
color: #fff;
background-color: #163758;
border-color: rgba(0, 0, 0, 0.2); }
.btn-bitbucket:hover {
color: #fff;
background-color: #163758;
border-color: rgba(0, 0, 0, 0.2); }
.btn-bitbucket:active, .btn-bitbucket.active,
.open > .btn-bitbucket.dropdown-toggle {
color: #fff;
background-color: #163758;
border-color: rgba(0, 0, 0, 0.2); }
.btn-bitbucket:active:hover, .btn-bitbucket:active:focus, .btn-bitbucket:active.focus, .btn-bitbucket.active:hover, .btn-bitbucket.active:focus, .btn-bitbucket.active.focus,
.open > .btn-bitbucket.dropdown-toggle:hover,
.open > .btn-bitbucket.dropdown-toggle:focus,
.open > .btn-bitbucket.dropdown-toggle.focus {
color: #fff;
background-color: #0f253c;
border-color: rgba(0, 0, 0, 0.2); }
.btn-bitbucket:active, .btn-bitbucket.active,
.open > .btn-bitbucket.dropdown-toggle {
background-image: none; }
.btn-bitbucket.disabled:hover, .btn-bitbucket.disabled:focus, .btn-bitbucket.disabled.focus, .btn-bitbucket[disabled]:hover, .btn-bitbucket[disabled]:focus, .btn-bitbucket[disabled].focus,
fieldset[disabled] .btn-bitbucket:hover,
fieldset[disabled] .btn-bitbucket:focus,
fieldset[disabled] .btn-bitbucket.focus {
background-color: #205081;
border-color: rgba(0, 0, 0, 0.2); }
.btn-bitbucket .badge {
color: #205081;
background-color: #fff; }
.btn-dropbox {
background-color: #1087dd;
color: #fff;
background-color: #1087dd;
border-color: rgba(0, 0, 0, 0.2); }
.btn-dropbox:focus, .btn-dropbox.focus {
color: #fff;
background-color: #0d6aad;
border-color: rgba(0, 0, 0, 0.2); }
.btn-dropbox:hover {
color: #fff;
background-color: #0d6aad;
border-color: rgba(0, 0, 0, 0.2); }
.btn-dropbox:active, .btn-dropbox.active,
.open > .btn-dropbox.dropdown-toggle {
color: #fff;
background-color: #0d6aad;
border-color: rgba(0, 0, 0, 0.2); }
.btn-dropbox:active:hover, .btn-dropbox:active:focus, .btn-dropbox:active.focus, .btn-dropbox.active:hover, .btn-dropbox.active:focus, .btn-dropbox.active.focus,
.open > .btn-dropbox.dropdown-toggle:hover,
.open > .btn-dropbox.dropdown-toggle:focus,
.open > .btn-dropbox.dropdown-toggle.focus {
color: #fff;
background-color: #0a568c;
border-color: rgba(0, 0, 0, 0.2); }
.btn-dropbox:active, .btn-dropbox.active,
.open > .btn-dropbox.dropdown-toggle {
background-image: none; }
.btn-dropbox.disabled:hover, .btn-dropbox.disabled:focus, .btn-dropbox.disabled.focus, .btn-dropbox[disabled]:hover, .btn-dropbox[disabled]:focus, .btn-dropbox[disabled].focus,
fieldset[disabled] .btn-dropbox:hover,
fieldset[disabled] .btn-dropbox:focus,
fieldset[disabled] .btn-dropbox.focus {
background-color: #1087dd;
border-color: rgba(0, 0, 0, 0.2); }
.btn-dropbox .badge {
color: #1087dd;
background-color: #fff; }
.btn-facebook {
background-color: #3b5998;
color: #fff;
background-color: #3b5998;
border-color: rgba(0, 0, 0, 0.2); }
.btn-facebook:focus, .btn-facebook.focus {
color: #fff;
background-color: #2d4373;
border-color: rgba(0, 0, 0, 0.2); }
.btn-facebook:hover {
color: #fff;
background-color: #2d4373;
border-color: rgba(0, 0, 0, 0.2); }
.btn-facebook:active, .btn-facebook.active,
.open > .btn-facebook.dropdown-toggle {
color: #fff;
background-color: #2d4373;
border-color: rgba(0, 0, 0, 0.2); }
.btn-facebook:active:hover, .btn-facebook:active:focus, .btn-facebook:active.focus, .btn-facebook.active:hover, .btn-facebook.active:focus, .btn-facebook.active.focus,
.open > .btn-facebook.dropdown-toggle:hover,
.open > .btn-facebook.dropdown-toggle:focus,
.open > .btn-facebook.dropdown-toggle.focus {
color: #fff;
background-color: #23345a;
border-color: rgba(0, 0, 0, 0.2); }
.btn-facebook:active, .btn-facebook.active,
.open > .btn-facebook.dropdown-toggle {
background-image: none; }
.btn-facebook.disabled:hover, .btn-facebook.disabled:focus, .btn-facebook.disabled.focus, .btn-facebook[disabled]:hover, .btn-facebook[disabled]:focus, .btn-facebook[disabled].focus,
fieldset[disabled] .btn-facebook:hover,
fieldset[disabled] .btn-facebook:focus,
fieldset[disabled] .btn-facebook.focus {
background-color: #3b5998;
border-color: rgba(0, 0, 0, 0.2); }
.btn-facebook .badge {
color: #3b5998;
background-color: #fff; }
.btn-flickr {
background-color: #ff0084;
color: #fff;
background-color: #ff0084;
border-color: rgba(0, 0, 0, 0.2); }
.btn-flickr:focus, .btn-flickr.focus {
color: #fff;
background-color: #cc006a;
border-color: rgba(0, 0, 0, 0.2); }
.btn-flickr:hover {
color: #fff;
background-color: #cc006a;
border-color: rgba(0, 0, 0, 0.2); }
.btn-flickr:active, .btn-flickr.active,
.open > .btn-flickr.dropdown-toggle {
color: #fff;
background-color: #cc006a;
border-color: rgba(0, 0, 0, 0.2); }
.btn-flickr:active:hover, .btn-flickr:active:focus, .btn-flickr:active.focus, .btn-flickr.active:hover, .btn-flickr.active:focus, .btn-flickr.active.focus,
.open > .btn-flickr.dropdown-toggle:hover,
.open > .btn-flickr.dropdown-toggle:focus,
.open > .btn-flickr.dropdown-toggle.focus {
color: #fff;
background-color: #a80057;
border-color: rgba(0, 0, 0, 0.2); }
.btn-flickr:active, .btn-flickr.active,
.open > .btn-flickr.dropdown-toggle {
background-image: none; }
.btn-flickr.disabled:hover, .btn-flickr.disabled:focus, .btn-flickr.disabled.focus, .btn-flickr[disabled]:hover, .btn-flickr[disabled]:focus, .btn-flickr[disabled].focus,
fieldset[disabled] .btn-flickr:hover,
fieldset[disabled] .btn-flickr:focus,
fieldset[disabled] .btn-flickr.focus {
background-color: #ff0084;
border-color: rgba(0, 0, 0, 0.2); }
.btn-flickr .badge {
color: #ff0084;
background-color: #fff; }
.btn-foursquare {
background-color: #f94877;
color: #fff;
background-color: #f94877;
border-color: rgba(0, 0, 0, 0.2); }
.btn-foursquare:focus, .btn-foursquare.focus {
color: #fff;
background-color: #f71752;
border-color: rgba(0, 0, 0, 0.2); }
.btn-foursquare:hover {
color: #fff;
background-color: #f71752;
border-color: rgba(0, 0, 0, 0.2); }
.btn-foursquare:active, .btn-foursquare.active,
.open > .btn-foursquare.dropdown-toggle {
color: #fff;
background-color: #f71752;
border-color: rgba(0, 0, 0, 0.2); }
.btn-foursquare:active:hover, .btn-foursquare:active:focus, .btn-foursquare:active.focus, .btn-foursquare.active:hover, .btn-foursquare.active:focus, .btn-foursquare.active.focus,
.open > .btn-foursquare.dropdown-toggle:hover,
.open > .btn-foursquare.dropdown-toggle:focus,
.open > .btn-foursquare.dropdown-toggle.focus {
color: #fff;
background-color: #e30742;
border-color: rgba(0, 0, 0, 0.2); }
.btn-foursquare:active, .btn-foursquare.active,
.open > .btn-foursquare.dropdown-toggle {
background-image: none; }
.btn-foursquare.disabled:hover, .btn-foursquare.disabled:focus, .btn-foursquare.disabled.focus, .btn-foursquare[disabled]:hover, .btn-foursquare[disabled]:focus, .btn-foursquare[disabled].focus,
fieldset[disabled] .btn-foursquare:hover,
fieldset[disabled] .btn-foursquare:focus,
fieldset[disabled] .btn-foursquare.focus {
background-color: #f94877;
border-color: rgba(0, 0, 0, 0.2); }
.btn-foursquare .badge {
color: #f94877;
background-color: #fff; }
.btn-github {
background-color: #444444;
color: #fff;
background-color: #444444;
border-color: rgba(0, 0, 0, 0.2); }
.btn-github:focus, .btn-github.focus {
color: #fff;
background-color: #2b2b2b;
border-color: rgba(0, 0, 0, 0.2); }
.btn-github:hover {
color: #fff;
background-color: #2b2b2b;
border-color: rgba(0, 0, 0, 0.2); }
.btn-github:active, .btn-github.active,
.open > .btn-github.dropdown-toggle {
color: #fff;
background-color: #2b2b2b;
border-color: rgba(0, 0, 0, 0.2); }
.btn-github:active:hover, .btn-github:active:focus, .btn-github:active.focus, .btn-github.active:hover, .btn-github.active:focus, .btn-github.active.focus,
.open > .btn-github.dropdown-toggle:hover,
.open > .btn-github.dropdown-toggle:focus,
.open > .btn-github.dropdown-toggle.focus {
color: #fff;
background-color: #191919;
border-color: rgba(0, 0, 0, 0.2); }
.btn-github:active, .btn-github.active,
.open > .btn-github.dropdown-toggle {
background-image: none; }
.btn-github.disabled:hover, .btn-github.disabled:focus, .btn-github.disabled.focus, .btn-github[disabled]:hover, .btn-github[disabled]:focus, .btn-github[disabled].focus,
fieldset[disabled] .btn-github:hover,
fieldset[disabled] .btn-github:focus,
fieldset[disabled] .btn-github.focus {
background-color: #444444;
border-color: rgba(0, 0, 0, 0.2); }
.btn-github .badge {
color: #444444;
background-color: #fff; }
.btn-google {
background-color: #dd4b39;
color: #fff;
background-color: #dd4b39;
border-color: rgba(0, 0, 0, 0.2); }
.btn-google:focus, .btn-google.focus {
color: #fff;
background-color: #c23321;
border-color: rgba(0, 0, 0, 0.2); }
.btn-google:hover {
color: #fff;
background-color: #c23321;
border-color: rgba(0, 0, 0, 0.2); }
.btn-google:active, .btn-google.active,
.open > .btn-google.dropdown-toggle {
color: #fff;
background-color: #c23321;
border-color: rgba(0, 0, 0, 0.2); }
.btn-google:active:hover, .btn-google:active:focus, .btn-google:active.focus, .btn-google.active:hover, .btn-google.active:focus, .btn-google.active.focus,
.open > .btn-google.dropdown-toggle:hover,
.open > .btn-google.dropdown-toggle:focus,
.open > .btn-google.dropdown-toggle.focus {
color: #fff;
background-color: #a32b1c;
border-color: rgba(0, 0, 0, 0.2); }
.btn-google:active, .btn-google.active,
.open > .btn-google.dropdown-toggle {
background-image: none; }
.btn-google.disabled:hover, .btn-google.disabled:focus, .btn-google.disabled.focus, .btn-google[disabled]:hover, .btn-google[disabled]:focus, .btn-google[disabled].focus,
fieldset[disabled] .btn-google:hover,
fieldset[disabled] .btn-google:focus,
fieldset[disabled] .btn-google.focus {
background-color: #dd4b39;
border-color: rgba(0, 0, 0, 0.2); }
.btn-google .badge {
color: #dd4b39;
background-color: #fff; }
.btn-instagram {
background-color: #3f729b;
color: #fff;
background-color: #3f729b;
border-color: rgba(0, 0, 0, 0.2); }
.btn-instagram:focus, .btn-instagram.focus {
color: #fff;
background-color: #305777;
border-color: rgba(0, 0, 0, 0.2); }
.btn-instagram:hover {
color: #fff;
background-color: #305777;
border-color: rgba(0, 0, 0, 0.2); }
.btn-instagram:active, .btn-instagram.active,
.open > .btn-instagram.dropdown-toggle {
color: #fff;
background-color: #305777;
border-color: rgba(0, 0, 0, 0.2); }
.btn-instagram:active:hover, .btn-instagram:active:focus, .btn-instagram:active.focus, .btn-instagram.active:hover, .btn-instagram.active:focus, .btn-instagram.active.focus,
.open > .btn-instagram.dropdown-toggle:hover,
.open > .btn-instagram.dropdown-toggle:focus,
.open > .btn-instagram.dropdown-toggle.focus {
color: #fff;
background-color: #26455d;
border-color: rgba(0, 0, 0, 0.2); }
.btn-instagram:active, .btn-instagram.active,
.open > .btn-instagram.dropdown-toggle {
background-image: none; }
.btn-instagram.disabled:hover, .btn-instagram.disabled:focus, .btn-instagram.disabled.focus, .btn-instagram[disabled]:hover, .btn-instagram[disabled]:focus, .btn-instagram[disabled].focus,
fieldset[disabled] .btn-instagram:hover,
fieldset[disabled] .btn-instagram:focus,
fieldset[disabled] .btn-instagram.focus {
background-color: #3f729b;
border-color: rgba(0, 0, 0, 0.2); }
.btn-instagram .badge {
color: #3f729b;
background-color: #fff; }
.btn-linkedin {
background-color: #007bb6;
color: #fff;
background-color: #007bb6;
border-color: rgba(0, 0, 0, 0.2); }
.btn-linkedin:focus, .btn-linkedin.focus {
color: #fff;
background-color: #005983;
border-color: rgba(0, 0, 0, 0.2); }
.btn-linkedin:hover {
color: #fff;
background-color: #005983;
border-color: rgba(0, 0, 0, 0.2); }
.btn-linkedin:active, .btn-linkedin.active,
.open > .btn-linkedin.dropdown-toggle {
color: #fff;
background-color: #005983;
border-color: rgba(0, 0, 0, 0.2); }
.btn-linkedin:active:hover, .btn-linkedin:active:focus, .btn-linkedin:active.focus, .btn-linkedin.active:hover, .btn-linkedin.active:focus, .btn-linkedin.active.focus,
.open > .btn-linkedin.dropdown-toggle:hover,
.open > .btn-linkedin.dropdown-toggle:focus,
.open > .btn-linkedin.dropdown-toggle.focus {
color: #fff;
background-color: #00405f;
border-color: rgba(0, 0, 0, 0.2); }
.btn-linkedin:active, .btn-linkedin.active,
.open > .btn-linkedin.dropdown-toggle {
background-image: none; }
.btn-linkedin.disabled:hover, .btn-linkedin.disabled:focus, .btn-linkedin.disabled.focus, .btn-linkedin[disabled]:hover, .btn-linkedin[disabled]:focus, .btn-linkedin[disabled].focus,
fieldset[disabled] .btn-linkedin:hover,
fieldset[disabled] .btn-linkedin:focus,
fieldset[disabled] .btn-linkedin.focus {
background-color: #007bb6;
border-color: rgba(0, 0, 0, 0.2); }
.btn-linkedin .badge {
color: #007bb6;
background-color: #fff; }
.btn-microsoft {
background-color: #2672ec;
color: #fff;
background-color: #2672ec;
border-color: rgba(0, 0, 0, 0.2); }
.btn-microsoft:focus, .btn-microsoft.focus {
color: #fff;
background-color: #125acd;
border-color: rgba(0, 0, 0, 0.2); }
.btn-microsoft:hover {
color: #fff;
background-color: #125acd;
border-color: rgba(0, 0, 0, 0.2); }
.btn-microsoft:active, .btn-microsoft.active,
.open > .btn-microsoft.dropdown-toggle {
color: #fff;
background-color: #125acd;
border-color: rgba(0, 0, 0, 0.2); }
.btn-microsoft:active:hover, .btn-microsoft:active:focus, .btn-microsoft:active.focus, .btn-microsoft.active:hover, .btn-microsoft.active:focus, .btn-microsoft.active.focus,
.open > .btn-microsoft.dropdown-toggle:hover,
.open > .btn-microsoft.dropdown-toggle:focus,
.open > .btn-microsoft.dropdown-toggle.focus {
color: #fff;
background-color: #0f4bac;
border-color: rgba(0, 0, 0, 0.2); }
.btn-microsoft:active, .btn-microsoft.active,
.open > .btn-microsoft.dropdown-toggle {
background-image: none; }
.btn-microsoft.disabled:hover, .btn-microsoft.disabled:focus, .btn-microsoft.disabled.focus, .btn-microsoft[disabled]:hover, .btn-microsoft[disabled]:focus, .btn-microsoft[disabled].focus,
fieldset[disabled] .btn-microsoft:hover,
fieldset[disabled] .btn-microsoft:focus,
fieldset[disabled] .btn-microsoft.focus {
background-color: #2672ec;
border-color: rgba(0, 0, 0, 0.2); }
.btn-microsoft .badge {
color: #2672ec;
background-color: #fff; }
.btn-odnoklassniki {
background-color: #f4731c;
color: #fff;
background-color: #f4731c;
border-color: rgba(0, 0, 0, 0.2); }
.btn-odnoklassniki:focus, .btn-odnoklassniki.focus {
color: #fff;
background-color: #d35b0a;
border-color: rgba(0, 0, 0, 0.2); }
.btn-odnoklassniki:hover {
color: #fff;
background-color: #d35b0a;
border-color: rgba(0, 0, 0, 0.2); }
.btn-odnoklassniki:active, .btn-odnoklassniki.active,
.open > .btn-odnoklassniki.dropdown-toggle {
color: #fff;
background-color: #d35b0a;
border-color: rgba(0, 0, 0, 0.2); }
.btn-odnoklassniki:active:hover, .btn-odnoklassniki:active:focus, .btn-odnoklassniki:active.focus, .btn-odnoklassniki.active:hover, .btn-odnoklassniki.active:focus, .btn-odnoklassniki.active.focus,
.open > .btn-odnoklassniki.dropdown-toggle:hover,
.open > .btn-odnoklassniki.dropdown-toggle:focus,
.open > .btn-odnoklassniki.dropdown-toggle.focus {
color: #fff;
background-color: #b14c09;
border-color: rgba(0, 0, 0, 0.2); }
.btn-odnoklassniki:active, .btn-odnoklassniki.active,
.open > .btn-odnoklassniki.dropdown-toggle {
background-image: none; }
.btn-odnoklassniki.disabled:hover, .btn-odnoklassniki.disabled:focus, .btn-odnoklassniki.disabled.focus, .btn-odnoklassniki[disabled]:hover, .btn-odnoklassniki[disabled]:focus, .btn-odnoklassniki[disabled].focus,
fieldset[disabled] .btn-odnoklassniki:hover,
fieldset[disabled] .btn-odnoklassniki:focus,
fieldset[disabled] .btn-odnoklassniki.focus {
background-color: #f4731c;
border-color: rgba(0, 0, 0, 0.2); }
.btn-odnoklassniki .badge {
color: #f4731c;
background-color: #fff; }
.btn-openid {
background-color: #f7931e;
color: #fff;
background-color: #f7931e;
border-color: rgba(0, 0, 0, 0.2); }
.btn-openid:focus, .btn-openid.focus {
color: #fff;
background-color: #da7908;
border-color: rgba(0, 0, 0, 0.2); }
.btn-openid:hover {
color: #fff;
background-color: #da7908;
border-color: rgba(0, 0, 0, 0.2); }
.btn-openid:active, .btn-openid.active,
.open > .btn-openid.dropdown-toggle {
color: #fff;
background-color: #da7908;
border-color: rgba(0, 0, 0, 0.2); }
.btn-openid:active:hover, .btn-openid:active:focus, .btn-openid:active.focus, .btn-openid.active:hover, .btn-openid.active:focus, .btn-openid.active.focus,
.open > .btn-openid.dropdown-toggle:hover,
.open > .btn-openid.dropdown-toggle:focus,
.open > .btn-openid.dropdown-toggle.focus {
color: #fff;
background-color: #b86607;
border-color: rgba(0, 0, 0, 0.2); }
.btn-openid:active, .btn-openid.active,
.open > .btn-openid.dropdown-toggle {
background-image: none; }
.btn-openid.disabled:hover, .btn-openid.disabled:focus, .btn-openid.disabled.focus, .btn-openid[disabled]:hover, .btn-openid[disabled]:focus, .btn-openid[disabled].focus,
fieldset[disabled] .btn-openid:hover,
fieldset[disabled] .btn-openid:focus,
fieldset[disabled] .btn-openid.focus {
background-color: #f7931e;
border-color: rgba(0, 0, 0, 0.2); }
.btn-openid .badge {
color: #f7931e;
background-color: #fff; }
.btn-pinterest {
background-color: #cb2027;
color: #fff;
background-color: #cb2027;
border-color: rgba(0, 0, 0, 0.2); }
.btn-pinterest:focus, .btn-pinterest.focus {
color: #fff;
background-color: #9f191f;
border-color: rgba(0, 0, 0, 0.2); }
.btn-pinterest:hover {
color: #fff;
background-color: #9f191f;
border-color: rgba(0, 0, 0, 0.2); }
.btn-pinterest:active, .btn-pinterest.active,
.open > .btn-pinterest.dropdown-toggle {
color: #fff;
background-color: #9f191f;
border-color: rgba(0, 0, 0, 0.2); }
.btn-pinterest:active:hover, .btn-pinterest:active:focus, .btn-pinterest:active.focus, .btn-pinterest.active:hover, .btn-pinterest.active:focus, .btn-pinterest.active.focus,
.open > .btn-pinterest.dropdown-toggle:hover,
.open > .btn-pinterest.dropdown-toggle:focus,
.open > .btn-pinterest.dropdown-toggle.focus {
color: #fff;
background-color: #801419;
border-color: rgba(0, 0, 0, 0.2); }
.btn-pinterest:active, .btn-pinterest.active,
.open > .btn-pinterest.dropdown-toggle {
background-image: none; }
.btn-pinterest.disabled:hover, .btn-pinterest.disabled:focus, .btn-pinterest.disabled.focus, .btn-pinterest[disabled]:hover, .btn-pinterest[disabled]:focus, .btn-pinterest[disabled].focus,
fieldset[disabled] .btn-pinterest:hover,
fieldset[disabled] .btn-pinterest:focus,
fieldset[disabled] .btn-pinterest.focus {
background-color: #cb2027;
border-color: rgba(0, 0, 0, 0.2); }
.btn-pinterest .badge {
color: #cb2027;
background-color: #fff; }
.btn-reddit {
background-color: #eff7ff;
color: #000;
background-color: #eff7ff;
border-color: rgba(0, 0, 0, 0.2); }
.btn-reddit:focus, .btn-reddit.focus {
color: #000;
background-color: #bcdeff;
border-color: rgba(0, 0, 0, 0.2); }
.btn-reddit:hover {
color: #000;
background-color: #bcdeff;
border-color: rgba(0, 0, 0, 0.2); }
.btn-reddit:active, .btn-reddit.active,
.open > .btn-reddit.dropdown-toggle {
color: #000;
background-color: #bcdeff;
border-color: rgba(0, 0, 0, 0.2); }
.btn-reddit:active:hover, .btn-reddit:active:focus, .btn-reddit:active.focus, .btn-reddit.active:hover, .btn-reddit.active:focus, .btn-reddit.active.focus,
.open > .btn-reddit.dropdown-toggle:hover,
.open > .btn-reddit.dropdown-toggle:focus,
.open > .btn-reddit.dropdown-toggle.focus {
color: #000;
background-color: #98ccff;
border-color: rgba(0, 0, 0, 0.2); }
.btn-reddit:active, .btn-reddit.active,
.open > .btn-reddit.dropdown-toggle {
background-image: none; }
.btn-reddit.disabled:hover, .btn-reddit.disabled:focus, .btn-reddit.disabled.focus, .btn-reddit[disabled]:hover, .btn-reddit[disabled]:focus, .btn-reddit[disabled].focus,
fieldset[disabled] .btn-reddit:hover,
fieldset[disabled] .btn-reddit:focus,
fieldset[disabled] .btn-reddit.focus {
background-color: #eff7ff;
border-color: rgba(0, 0, 0, 0.2); }
.btn-reddit .badge {
color: #eff7ff;
background-color: #000; }
.btn-soundcloud {
background-color: #ff5500;
color: #fff;
background-color: #ff5500;
border-color: rgba(0, 0, 0, 0.2); }
.btn-soundcloud:focus, .btn-soundcloud.focus {
color: #fff;
background-color: #cc4400;
border-color: rgba(0, 0, 0, 0.2); }
.btn-soundcloud:hover {
color: #fff;
background-color: #cc4400;
border-color: rgba(0, 0, 0, 0.2); }
.btn-soundcloud:active, .btn-soundcloud.active,
.open > .btn-soundcloud.dropdown-toggle {
color: #fff;
background-color: #cc4400;
border-color: rgba(0, 0, 0, 0.2); }
.btn-soundcloud:active:hover, .btn-soundcloud:active:focus, .btn-soundcloud:active.focus, .btn-soundcloud.active:hover, .btn-soundcloud.active:focus, .btn-soundcloud.active.focus,
.open > .btn-soundcloud.dropdown-toggle:hover,
.open > .btn-soundcloud.dropdown-toggle:focus,
.open > .btn-soundcloud.dropdown-toggle.focus {
color: #fff;
background-color: #a83800;
border-color: rgba(0, 0, 0, 0.2); }
.btn-soundcloud:active, .btn-soundcloud.active,
.open > .btn-soundcloud.dropdown-toggle {
background-image: none; }
.btn-soundcloud.disabled:hover, .btn-soundcloud.disabled:focus, .btn-soundcloud.disabled.focus, .btn-soundcloud[disabled]:hover, .btn-soundcloud[disabled]:focus, .btn-soundcloud[disabled].focus,
fieldset[disabled] .btn-soundcloud:hover,
fieldset[disabled] .btn-soundcloud:focus,
fieldset[disabled] .btn-soundcloud.focus {
background-color: #ff5500;
border-color: rgba(0, 0, 0, 0.2); }
.btn-soundcloud .badge {
color: #ff5500;
background-color: #fff; }
.btn-tumblr {
background-color: #2c4762;
color: #fff;
background-color: #2c4762;
border-color: rgba(0, 0, 0, 0.2); }
.btn-tumblr:focus, .btn-tumblr.focus {
color: #fff;
background-color: #1c2e3f;
border-color: rgba(0, 0, 0, 0.2); }
.btn-tumblr:hover {
color: #fff;
background-color: #1c2e3f;
border-color: rgba(0, 0, 0, 0.2); }
.btn-tumblr:active, .btn-tumblr.active,
.open > .btn-tumblr.dropdown-toggle {
color: #fff;
background-color: #1c2e3f;
border-color: rgba(0, 0, 0, 0.2); }
.btn-tumblr:active:hover, .btn-tumblr:active:focus, .btn-tumblr:active.focus, .btn-tumblr.active:hover, .btn-tumblr.active:focus, .btn-tumblr.active.focus,
.open > .btn-tumblr.dropdown-toggle:hover,
.open > .btn-tumblr.dropdown-toggle:focus,
.open > .btn-tumblr.dropdown-toggle.focus {
color: #fff;
background-color: #111c26;
border-color: rgba(0, 0, 0, 0.2); }
.btn-tumblr:active, .btn-tumblr.active,
.open > .btn-tumblr.dropdown-toggle {
background-image: none; }
.btn-tumblr.disabled:hover, .btn-tumblr.disabled:focus, .btn-tumblr.disabled.focus, .btn-tumblr[disabled]:hover, .btn-tumblr[disabled]:focus, .btn-tumblr[disabled].focus,
fieldset[disabled] .btn-tumblr:hover,
fieldset[disabled] .btn-tumblr:focus,
fieldset[disabled] .btn-tumblr.focus {
background-color: #2c4762;
border-color: rgba(0, 0, 0, 0.2); }
.btn-tumblr .badge {
color: #2c4762;
background-color: #fff; }
.btn-twitter {
background-color: #55acee;
color: #fff;
background-color: #55acee;
border-color: rgba(0, 0, 0, 0.2); }
.btn-twitter:focus, .btn-twitter.focus {
color: #fff;
background-color: #2795e9;
border-color: rgba(0, 0, 0, 0.2); }
.btn-twitter:hover {
color: #fff;
background-color: #2795e9;
border-color: rgba(0, 0, 0, 0.2); }
.btn-twitter:active, .btn-twitter.active,
.open > .btn-twitter.dropdown-toggle {
color: #fff;
background-color: #2795e9;
border-color: rgba(0, 0, 0, 0.2); }
.btn-twitter:active:hover, .btn-twitter:active:focus, .btn-twitter:active.focus, .btn-twitter.active:hover, .btn-twitter.active:focus, .btn-twitter.active.focus,
.open > .btn-twitter.dropdown-toggle:hover,
.open > .btn-twitter.dropdown-toggle:focus,
.open > .btn-twitter.dropdown-toggle.focus {
color: #fff;
background-color: #1583d7;
border-color: rgba(0, 0, 0, 0.2); }
.btn-twitter:active, .btn-twitter.active,
.open > .btn-twitter.dropdown-toggle {
background-image: none; }
.btn-twitter.disabled:hover, .btn-twitter.disabled:focus, .btn-twitter.disabled.focus, .btn-twitter[disabled]:hover, .btn-twitter[disabled]:focus, .btn-twitter[disabled].focus,
fieldset[disabled] .btn-twitter:hover,
fieldset[disabled] .btn-twitter:focus,
fieldset[disabled] .btn-twitter.focus {
background-color: #55acee;
border-color: rgba(0, 0, 0, 0.2); }
.btn-twitter .badge {
color: #55acee;
background-color: #fff; }
.btn-vimeo {
background-color: #1ab7ea;
color: #fff;
background-color: #1ab7ea;
border-color: rgba(0, 0, 0, 0.2); }
.btn-vimeo:focus, .btn-vimeo.focus {
color: #fff;
background-color: #1295bf;
border-color: rgba(0, 0, 0, 0.2); }
.btn-vimeo:hover {
color: #fff;
background-color: #1295bf;
border-color: rgba(0, 0, 0, 0.2); }
.btn-vimeo:active, .btn-vimeo.active,
.open > .btn-vimeo.dropdown-toggle {
color: #fff;
background-color: #1295bf;
border-color: rgba(0, 0, 0, 0.2); }
.btn-vimeo:active:hover, .btn-vimeo:active:focus, .btn-vimeo:active.focus, .btn-vimeo.active:hover, .btn-vimeo.active:focus, .btn-vimeo.active.focus,
.open > .btn-vimeo.dropdown-toggle:hover,
.open > .btn-vimeo.dropdown-toggle:focus,
.open > .btn-vimeo.dropdown-toggle.focus {
color: #fff;
background-color: #0f7b9f;
border-color: rgba(0, 0, 0, 0.2); }
.btn-vimeo:active, .btn-vimeo.active,
.open > .btn-vimeo.dropdown-toggle {
background-image: none; }
.btn-vimeo.disabled:hover, .btn-vimeo.disabled:focus, .btn-vimeo.disabled.focus, .btn-vimeo[disabled]:hover, .btn-vimeo[disabled]:focus, .btn-vimeo[disabled].focus,
fieldset[disabled] .btn-vimeo:hover,
fieldset[disabled] .btn-vimeo:focus,
fieldset[disabled] .btn-vimeo.focus {
background-color: #1ab7ea;
border-color: rgba(0, 0, 0, 0.2); }
.btn-vimeo .badge {
color: #1ab7ea;
background-color: #fff; }
.btn-vk {
background-color: #587ea3;
color: #fff;
background-color: #587ea3;
border-color: rgba(0, 0, 0, 0.2); }
.btn-vk:focus, .btn-vk.focus {
color: #fff;
background-color: #466482;
border-color: rgba(0, 0, 0, 0.2); }
.btn-vk:hover {
color: #fff;
background-color: #466482;
border-color: rgba(0, 0, 0, 0.2); }
.btn-vk:active, .btn-vk.active,
.open > .btn-vk.dropdown-toggle {
color: #fff;
background-color: #466482;
border-color: rgba(0, 0, 0, 0.2); }
.btn-vk:active:hover, .btn-vk:active:focus, .btn-vk:active.focus, .btn-vk.active:hover, .btn-vk.active:focus, .btn-vk.active.focus,
.open > .btn-vk.dropdown-toggle:hover,
.open > .btn-vk.dropdown-toggle:focus,
.open > .btn-vk.dropdown-toggle.focus {
color: #fff;
background-color: #3a526b;
border-color: rgba(0, 0, 0, 0.2); }
.btn-vk:active, .btn-vk.active,
.open > .btn-vk.dropdown-toggle {
background-image: none; }
.btn-vk.disabled:hover, .btn-vk.disabled:focus, .btn-vk.disabled.focus, .btn-vk[disabled]:hover, .btn-vk[disabled]:focus, .btn-vk[disabled].focus,
fieldset[disabled] .btn-vk:hover,
fieldset[disabled] .btn-vk:focus,
fieldset[disabled] .btn-vk.focus {
background-color: #587ea3;
border-color: rgba(0, 0, 0, 0.2); }
.btn-vk .badge {
color: #587ea3;
background-color: #fff; }
.btn-yahoo {
background-color: #720e9e;
color: #fff;
background-color: #720e9e;
border-color: rgba(0, 0, 0, 0.2); }
.btn-yahoo:focus, .btn-yahoo.focus {
color: #fff;
background-color: #500a6f;
border-color: rgba(0, 0, 0, 0.2); }
.btn-yahoo:hover {
color: #fff;
background-color: #500a6f;
border-color: rgba(0, 0, 0, 0.2); }
.btn-yahoo:active, .btn-yahoo.active,
.open > .btn-yahoo.dropdown-toggle {
color: #fff;
background-color: #500a6f;
border-color: rgba(0, 0, 0, 0.2); }
.btn-yahoo:active:hover, .btn-yahoo:active:focus, .btn-yahoo:active.focus, .btn-yahoo.active:hover, .btn-yahoo.active:focus, .btn-yahoo.active.focus,
.open > .btn-yahoo.dropdown-toggle:hover,
.open > .btn-yahoo.dropdown-toggle:focus,
.open > .btn-yahoo.dropdown-toggle.focus {
color: #fff;
background-color: #39074e;
border-color: rgba(0, 0, 0, 0.2); }
.btn-yahoo:active, .btn-yahoo.active,
.open > .btn-yahoo.dropdown-toggle {
background-image: none; }
.btn-yahoo.disabled:hover, .btn-yahoo.disabled:focus, .btn-yahoo.disabled.focus, .btn-yahoo[disabled]:hover, .btn-yahoo[disabled]:focus, .btn-yahoo[disabled].focus,
fieldset[disabled] .btn-yahoo:hover,
fieldset[disabled] .btn-yahoo:focus,
fieldset[disabled] .btn-yahoo.focus {
background-color: #720e9e;
border-color: rgba(0, 0, 0, 0.2); }
.btn-yahoo .badge {
color: #720e9e;
background-color: #fff; }
/*!
* 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("../fonts/fontawesome-webfont.eot?v=4.5.0");
src: url("../fonts/fontawesome-webfont.eot?#iefix&v=4.5.0") format("embedded-opentype"), url("../fonts/fontawesome-webfont.woff2?v=4.5.0") format("woff2"), url("../fonts/fontawesome-webfont.woff?v=4.5.0") format("woff"), url("../fonts/fontawesome-webfont.ttf?v=4.5.0") format("truetype"), url("../fonts/fontawesome-webfont.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.33333em;
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.28571em;
text-align: center; }
.fa-ul {
padding-left: 0;
margin-left: 2.14286em;
list-style-type: none; }
.fa-ul > li {
position: relative; }
.fa-li {
position: absolute;
left: -2.14286em;
width: 2.14286em;
top: 0.14286em;
text-align: center; }
.fa-li.fa-lg {
left: -1.85714em; }
.fa-border {
padding: .2em .25em .15em;
border: solid 0.08em #eee;
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);
-webkit-transform: scale(-1, 1);
-ms-transform: scale(-1, 1);
transform: scale(-1, 1); }
.fa-flip-vertical {
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
-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: #fff; }
/* 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: ""; }
.fa-music:before {
content: ""; }
.fa-search:before {
content: ""; }
.fa-envelope-o:before {
content: ""; }
.fa-heart:before {
content: ""; }
.fa-star:before {
content: ""; }
.fa-star-o:before {
content: ""; }
.fa-user:before {
content: ""; }
.fa-film:before {
content: ""; }
.fa-th-large:before {
content: ""; }
.fa-th:before {
content: ""; }
.fa-th-list:before {
content: ""; }
.fa-check:before {
content: ""; }
.fa-remove:before,
.fa-close:before,
.fa-times:before {
content: ""; }
.fa-search-plus:before {
content: ""; }
.fa-search-minus:before {
content: ""; }
.fa-power-off:before {
content: ""; }
.fa-signal:before {
content: ""; }
.fa-gear:before,
.fa-cog:before {
content: ""; }
.fa-trash-o:before {
content: ""; }
.fa-home:before {
content: ""; }
.fa-file-o:before {
content: ""; }
.fa-clock-o:before {
content: ""; }
.fa-road:before {
content: ""; }
.fa-download:before {
content: ""; }
.fa-arrow-circle-o-down:before {
content: ""; }
.fa-arrow-circle-o-up:before {
content: ""; }
.fa-inbox:before {
content: ""; }
.fa-play-circle-o:before {
content: ""; }
.fa-rotate-right:before,
.fa-repeat:before {
content: ""; }
.fa-refresh:before {
content: ""; }
.fa-list-alt:before {
content: ""; }
.fa-lock:before {
content: ""; }
.fa-flag:before {
content: ""; }
.fa-headphones:before {
content: ""; }
.fa-volume-off:before {
content: ""; }
.fa-volume-down:before {
content: ""; }
.fa-volume-up:before {
content: ""; }
.fa-qrcode:before {
content: ""; }
.fa-barcode:before {
content: ""; }
.fa-tag:before {
content: ""; }
.fa-tags:before {
content: ""; }
.fa-book:before {
content: ""; }
.fa-bookmark:before {
content: ""; }
.fa-print:before {
content: ""; }
.fa-camera:before {
content: ""; }
.fa-font:before {
content: ""; }
.fa-bold:before {
content: ""; }
.fa-italic:before {
content: ""; }
.fa-text-height:before {
content: ""; }
.fa-text-width:before {
content: ""; }
.fa-align-left:before {
content: ""; }
.fa-align-center:before {
content: ""; }
.fa-align-right:before {
content: ""; }
.fa-align-justify:before {
content: ""; }
.fa-list:before {
content: ""; }
.fa-dedent:before,
.fa-outdent:before {
content: ""; }
.fa-indent:before {
content: ""; }
.fa-video-camera:before {
content: ""; }
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
content: ""; }
.fa-pencil:before {
content: ""; }
.fa-map-marker:before {
content: ""; }
.fa-adjust:before {
content: ""; }
.fa-tint:before {
content: ""; }
.fa-edit:before,
.fa-pencil-square-o:before {
content: ""; }
.fa-share-square-o:before {
content: ""; }
.fa-check-square-o:before {
content: ""; }
.fa-arrows:before {
content: ""; }
.fa-step-backward:before {
content: ""; }
.fa-fast-backward:before {
content: ""; }
.fa-backward:before {
content: ""; }
.fa-play:before {
content: ""; }
.fa-pause:before {
content: ""; }
.fa-stop:before {
content: ""; }
.fa-forward:before {
content: ""; }
.fa-fast-forward:before {
content: ""; }
.fa-step-forward:before {
content: ""; }
.fa-eject:before {
content: ""; }
.fa-chevron-left:before {
content: ""; }
.fa-chevron-right:before {
content: ""; }
.fa-plus-circle:before {
content: ""; }
.fa-minus-circle:before {
content: ""; }
.fa-times-circle:before {
content: ""; }
.fa-check-circle:before {
content: ""; }
.fa-question-circle:before {
content: ""; }
.fa-info-circle:before {
content: ""; }
.fa-crosshairs:before {
content: ""; }
.fa-times-circle-o:before {
content: ""; }
.fa-check-circle-o:before {
content: ""; }
.fa-ban:before {
content: ""; }
.fa-arrow-left:before {
content: ""; }
.fa-arrow-right:before {
content: ""; }
.fa-arrow-up:before {
content: ""; }
.fa-arrow-down:before {
content: ""; }
.fa-mail-forward:before,
.fa-share:before {
content: ""; }
.fa-expand:before {
content: ""; }
.fa-compress:before {
content: ""; }
.fa-plus:before {
content: ""; }
.fa-minus:before {
content: ""; }
.fa-asterisk:before {
content: ""; }
.fa-exclamation-circle:before {
content: ""; }
.fa-gift:before {
content: ""; }
.fa-leaf:before {
content: ""; }
.fa-fire:before {
content: ""; }
.fa-eye:before {
content: ""; }
.fa-eye-slash:before {
content: ""; }
.fa-warning:before,
.fa-exclamation-triangle:before {
content: ""; }
.fa-plane:before {
content: ""; }
.fa-calendar:before {
content: ""; }
.fa-random:before {
content: ""; }
.fa-comment:before {
content: ""; }
.fa-magnet:before {
content: ""; }
.fa-chevron-up:before {
content: ""; }
.fa-chevron-down:before {
content: ""; }
.fa-retweet:before {
content: ""; }
.fa-shopping-cart:before {
content: ""; }
.fa-folder:before {
content: ""; }
.fa-folder-open:before {
content: ""; }
.fa-arrows-v:before {
content: ""; }
.fa-arrows-h:before {
content: ""; }
.fa-bar-chart-o:before,
.fa-bar-chart:before {
content: ""; }
.fa-twitter-square:before {
content: ""; }
.fa-facebook-square:before {
content: ""; }
.fa-camera-retro:before {
content: ""; }
.fa-key:before {
content: ""; }
.fa-gears:before,
.fa-cogs:before {
content: ""; }
.fa-comments:before {
content: ""; }
.fa-thumbs-o-up:before {
content: ""; }
.fa-thumbs-o-down:before {
content: ""; }
.fa-star-half:before {
content: ""; }
.fa-heart-o:before {
content: ""; }
.fa-sign-out:before {
content: ""; }
.fa-linkedin-square:before {
content: ""; }
.fa-thumb-tack:before {
content: ""; }
.fa-external-link:before {
content: ""; }
.fa-sign-in:before {
content: ""; }
.fa-trophy:before {
content: ""; }
.fa-github-square:before {
content: ""; }
.fa-upload:before {
content: ""; }
.fa-lemon-o:before {
content: ""; }
.fa-phone:before {
content: ""; }
.fa-square-o:before {
content: ""; }
.fa-bookmark-o:before {
content: ""; }
.fa-phone-square:before {
content: ""; }
.fa-twitter:before {
content: ""; }
.fa-facebook-f:before,
.fa-facebook:before {
content: ""; }
.fa-github:before {
content: ""; }
.fa-unlock:before {
content: ""; }
.fa-credit-card:before {
content: ""; }
.fa-feed:before,
.fa-rss:before {
content: ""; }
.fa-hdd-o:before {
content: ""; }
.fa-bullhorn:before {
content: ""; }
.fa-bell:before {
content: ""; }
.fa-certificate:before {
content: ""; }
.fa-hand-o-right:before {
content: ""; }
.fa-hand-o-left:before {
content: ""; }
.fa-hand-o-up:before {
content: ""; }
.fa-hand-o-down:before {
content: ""; }
.fa-arrow-circle-left:before {
content: ""; }
.fa-arrow-circle-right:before {
content: ""; }
.fa-arrow-circle-up:before {
content: ""; }
.fa-arrow-circle-down:before {
content: ""; }
.fa-globe:before {
content: ""; }
.fa-wrench:before {
content: ""; }
.fa-tasks:before {
content: ""; }
.fa-filter:before {
content: ""; }
.fa-briefcase:before {
content: ""; }
.fa-arrows-alt:before {
content: ""; }
.fa-group:before,
.fa-users:before {
content: ""; }
.fa-chain:before,
.fa-link:before {
content: ""; }
.fa-cloud:before {
content: ""; }
.fa-flask:before {
content: ""; }
.fa-cut:before,
.fa-scissors:before {
content: ""; }
.fa-copy:before,
.fa-files-o:before {
content: ""; }
.fa-paperclip:before {
content: ""; }
.fa-save:before,
.fa-floppy-o:before {
content: ""; }
.fa-square:before {
content: ""; }
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
content: ""; }
.fa-list-ul:before {
content: ""; }
.fa-list-ol:before {
content: ""; }
.fa-strikethrough:before {
content: ""; }
.fa-underline:before {
content: ""; }
.fa-table:before {
content: ""; }
.fa-magic:before {
content: ""; }
.fa-truck:before {
content: ""; }
.fa-pinterest:before {
content: ""; }
.fa-pinterest-square:before {
content: ""; }
.fa-google-plus-square:before {
content: ""; }
.fa-google-plus:before {
content: ""; }
.fa-money:before {
content: ""; }
.fa-caret-down:before {
content: ""; }
.fa-caret-up:before {
content: ""; }
.fa-caret-left:before {
content: ""; }
.fa-caret-right:before {
content: ""; }
.fa-columns:before {
content: ""; }
.fa-unsorted:before,
.fa-sort:before {
content: ""; }
.fa-sort-down:before,
.fa-sort-desc:before {
content: ""; }
.fa-sort-up:before,
.fa-sort-asc:before {
content: ""; }
.fa-envelope:before {
content: ""; }
.fa-linkedin:before {
content: ""; }
.fa-rotate-left:before,
.fa-undo:before {
content: ""; }
.fa-legal:before,
.fa-gavel:before {
content: ""; }
.fa-dashboard:before,
.fa-tachometer:before {
content: ""; }
.fa-comment-o:before {
content: ""; }
.fa-comments-o:before {
content: ""; }
.fa-flash:before,
.fa-bolt:before {
content: ""; }
.fa-sitemap:before {
content: ""; }
.fa-umbrella:before {
content: ""; }
.fa-paste:before,
.fa-clipboard:before {
content: ""; }
.fa-lightbulb-o:before {
content: ""; }
.fa-exchange:before {
content: ""; }
.fa-cloud-download:before {
content: ""; }
.fa-cloud-upload:before {
content: ""; }
.fa-user-md:before {
content: ""; }
.fa-stethoscope:before {
content: ""; }
.fa-suitcase:before {
content: ""; }
.fa-bell-o:before {
content: ""; }
.fa-coffee:before {
content: ""; }
.fa-cutlery:before {
content: ""; }
.fa-file-text-o:before {
content: ""; }
.fa-building-o:before {
content: ""; }
.fa-hospital-o:before {
content: ""; }
.fa-ambulance:before {
content: ""; }
.fa-medkit:before {
content: ""; }
.fa-fighter-jet:before {
content: ""; }
.fa-beer:before {
content: ""; }
.fa-h-square:before {
content: ""; }
.fa-plus-square:before {
content: ""; }
.fa-angle-double-left:before {
content: ""; }
.fa-angle-double-right:before {
content: ""; }
.fa-angle-double-up:before {
content: ""; }
.fa-angle-double-down:before {
content: ""; }
.fa-angle-left:before {
content: ""; }
.fa-angle-right:before {
content: ""; }
.fa-angle-up:before {
content: ""; }
.fa-angle-down:before {
content: ""; }
.fa-desktop:before {
content: ""; }
.fa-laptop:before {
content: ""; }
.fa-tablet:before {
content: ""; }
.fa-mobile-phone:before,
.fa-mobile:before {
content: ""; }
.fa-circle-o:before {
content: ""; }
.fa-quote-left:before {
content: ""; }
.fa-quote-right:before {
content: ""; }
.fa-spinner:before {
content: ""; }
.fa-circle:before {
content: ""; }
.fa-mail-reply:before,
.fa-reply:before {
content: ""; }
.fa-github-alt:before {
content: ""; }
.fa-folder-o:before {
content: ""; }
.fa-folder-open-o:before {
content: ""; }
.fa-smile-o:before {
content: ""; }
.fa-frown-o:before {
content: ""; }
.fa-meh-o:before {
content: ""; }
.fa-gamepad:before {
content: ""; }
.fa-keyboard-o:before {
content: ""; }
.fa-flag-o:before {
content: ""; }
.fa-flag-checkered:before {
content: ""; }
.fa-terminal:before {
content: ""; }
.fa-code:before {
content: ""; }
.fa-mail-reply-all:before,
.fa-reply-all:before {
content: ""; }
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
content: ""; }
.fa-location-arrow:before {
content: ""; }
.fa-crop:before {
content: ""; }
.fa-code-fork:before {
content: ""; }
.fa-unlink:before,
.fa-chain-broken:before {
content: ""; }
.fa-question:before {
content: ""; }
.fa-info:before {
content: ""; }
.fa-exclamation:before {
content: ""; }
.fa-superscript:before {
content: ""; }
.fa-subscript:before {
content: ""; }
.fa-eraser:before {
content: ""; }
.fa-puzzle-piece:before {
content: ""; }
.fa-microphone:before {
content: ""; }
.fa-microphone-slash:before {
content: ""; }
.fa-shield:before {
content: ""; }
.fa-calendar-o:before {
content: ""; }
.fa-fire-extinguisher:before {
content: ""; }
.fa-rocket:before {
content: ""; }
.fa-maxcdn:before {
content: ""; }
.fa-chevron-circle-left:before {
content: ""; }
.fa-chevron-circle-right:before {
content: ""; }
.fa-chevron-circle-up:before {
content: ""; }
.fa-chevron-circle-down:before {
content: ""; }
.fa-html5:before {
content: ""; }
.fa-css3:before {
content: ""; }
.fa-anchor:before {
content: ""; }
.fa-unlock-alt:before {
content: ""; }
.fa-bullseye:before {
content: ""; }
.fa-ellipsis-h:before {
content: ""; }
.fa-ellipsis-v:before {
content: ""; }
.fa-rss-square:before {
content: ""; }
.fa-play-circle:before {
content: ""; }
.fa-ticket:before {
content: ""; }
.fa-minus-square:before {
content: ""; }
.fa-minus-square-o:before {
content: ""; }
.fa-level-up:before {
content: ""; }
.fa-level-down:before {
content: ""; }
.fa-check-square:before {
content: ""; }
.fa-pencil-square:before {
content: ""; }
.fa-external-link-square:before {
content: ""; }
.fa-share-square:before {
content: ""; }
.fa-compass:before {
content: ""; }
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
content: ""; }
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
content: ""; }
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
content: ""; }
.fa-euro:before,
.fa-eur:before {
content: ""; }
.fa-gbp:before {
content: ""; }
.fa-dollar:before,
.fa-usd:before {
content: ""; }
.fa-rupee:before,
.fa-inr:before {
content: ""; }
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
content: ""; }
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
content: ""; }
.fa-won:before,
.fa-krw:before {
content: ""; }
.fa-bitcoin:before,
.fa-btc:before {
content: ""; }
.fa-file:before {
content: ""; }
.fa-file-text:before {
content: ""; }
.fa-sort-alpha-asc:before {
content: ""; }
.fa-sort-alpha-desc:before {
content: ""; }
.fa-sort-amount-asc:before {
content: ""; }
.fa-sort-amount-desc:before {
content: ""; }
.fa-sort-numeric-asc:before {
content: ""; }
.fa-sort-numeric-desc:before {
content: ""; }
.fa-thumbs-up:before {
content: ""; }
.fa-thumbs-down:before {
content: ""; }
.fa-youtube-square:before {
content: ""; }
.fa-youtube:before {
content: ""; }
.fa-xing:before {
content: ""; }
.fa-xing-square:before {
content: ""; }
.fa-youtube-play:before {
content: ""; }
.fa-dropbox:before {
content: ""; }
.fa-stack-overflow:before {
content: ""; }
.fa-instagram:before {
content: ""; }
.fa-flickr:before {
content: ""; }
.fa-adn:before {
content: ""; }
.fa-bitbucket:before {
content: ""; }
.fa-bitbucket-square:before {
content: ""; }
.fa-tumblr:before {
content: ""; }
.fa-tumblr-square:before {
content: ""; }
.fa-long-arrow-down:before {
content: ""; }
.fa-long-arrow-up:before {
content: ""; }
.fa-long-arrow-left:before {
content: ""; }
.fa-long-arrow-right:before {
content: ""; }
.fa-apple:before {
content: ""; }
.fa-windows:before {
content: ""; }
.fa-android:before {
content: ""; }
.fa-linux:before {
content: ""; }
.fa-dribbble:before {
content: ""; }
.fa-skype:before {
content: ""; }
.fa-foursquare:before {
content: ""; }
.fa-trello:before {
content: ""; }
.fa-female:before {
content: ""; }
.fa-male:before {
content: ""; }
.fa-gittip:before,
.fa-gratipay:before {
content: ""; }
.fa-sun-o:before {
content: ""; }
.fa-moon-o:before {
content: ""; }
.fa-archive:before {
content: ""; }
.fa-bug:before {
content: ""; }
.fa-vk:before {
content: ""; }
.fa-weibo:before {
content: ""; }
.fa-renren:before {
content: ""; }
.fa-pagelines:before {
content: ""; }
.fa-stack-exchange:before {
content: ""; }
.fa-arrow-circle-o-right:before {
content: ""; }
.fa-arrow-circle-o-left:before {
content: ""; }
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
content: ""; }
.fa-dot-circle-o:before {
content: ""; }
.fa-wheelchair:before {
content: ""; }
.fa-vimeo-square:before {
content: ""; }
.fa-turkish-lira:before,
.fa-try:before {
content: ""; }
.fa-plus-square-o:before {
content: ""; }
.fa-space-shuttle:before {
content: ""; }
.fa-slack:before {
content: ""; }
.fa-envelope-square:before {
content: ""; }
.fa-wordpress:before {
content: ""; }
.fa-openid:before {
content: ""; }
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
content: ""; }
.fa-mortar-board:before,
.fa-graduation-cap:before {
content: ""; }
.fa-yahoo:before {
content: ""; }
.fa-google:before {
content: ""; }
.fa-reddit:before {
content: ""; }
.fa-reddit-square:before {
content: ""; }
.fa-stumbleupon-circle:before {
content: ""; }
.fa-stumbleupon:before {
content: ""; }
.fa-delicious:before {
content: ""; }
.fa-digg:before {
content: ""; }
.fa-pied-piper:before {
content: ""; }
.fa-pied-piper-alt:before {
content: ""; }
.fa-drupal:before {
content: ""; }
.fa-joomla:before {
content: ""; }
.fa-language:before {
content: ""; }
.fa-fax:before {
content: ""; }
.fa-building:before {
content: ""; }
.fa-child:before {
content: ""; }
.fa-paw:before {
content: ""; }
.fa-spoon:before {
content: ""; }
.fa-cube:before {
content: ""; }
.fa-cubes:before {
content: ""; }
.fa-behance:before {
content: ""; }
.fa-behance-square:before {
content: ""; }
.fa-steam:before {
content: ""; }
.fa-steam-square:before {
content: ""; }
.fa-recycle:before {
content: ""; }
.fa-automobile:before,
.fa-car:before {
content: ""; }
.fa-cab:before,
.fa-taxi:before {
content: ""; }
.fa-tree:before {
content: ""; }
.fa-spotify:before {
content: ""; }
.fa-deviantart:before {
content: ""; }
.fa-soundcloud:before {
content: ""; }
.fa-database:before {
content: ""; }
.fa-file-pdf-o:before {
content: ""; }
.fa-file-word-o:before {
content: ""; }
.fa-file-excel-o:before {
content: ""; }
.fa-file-powerpoint-o:before {
content: ""; }
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
content: ""; }
.fa-file-zip-o:before,
.fa-file-archive-o:before {
content: ""; }
.fa-file-sound-o:before,
.fa-file-audio-o:before {
content: ""; }
.fa-file-movie-o:before,
.fa-file-video-o:before {
content: ""; }
.fa-file-code-o:before {
content: ""; }
.fa-vine:before {
content: ""; }
.fa-codepen:before {
content: ""; }
.fa-jsfiddle:before {
content: ""; }
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
content: ""; }
.fa-circle-o-notch:before {
content: ""; }
.fa-ra:before,
.fa-rebel:before {
content: ""; }
.fa-ge:before,
.fa-empire:before {
content: ""; }
.fa-git-square:before {
content: ""; }
.fa-git:before {
content: ""; }
.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
content: ""; }
.fa-tencent-weibo:before {
content: ""; }
.fa-qq:before {
content: ""; }
.fa-wechat:before,
.fa-weixin:before {
content: ""; }
.fa-send:before,
.fa-paper-plane:before {
content: ""; }
.fa-send-o:before,
.fa-paper-plane-o:before {
content: ""; }
.fa-history:before {
content: ""; }
.fa-circle-thin:before {
content: ""; }
.fa-header:before {
content: ""; }
.fa-paragraph:before {
content: ""; }
.fa-sliders:before {
content: ""; }
.fa-share-alt:before {
content: ""; }
.fa-share-alt-square:before {
content: ""; }
.fa-bomb:before {
content: ""; }
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
content: ""; }
.fa-tty:before {
content: ""; }
.fa-binoculars:before {
content: ""; }
.fa-plug:before {
content: ""; }
.fa-slideshare:before {
content: ""; }
.fa-twitch:before {
content: ""; }
.fa-yelp:before {
content: ""; }
.fa-newspaper-o:before {
content: ""; }
.fa-wifi:before {
content: ""; }
.fa-calculator:before {
content: ""; }
.fa-paypal:before {
content: ""; }
.fa-google-wallet:before {
content: ""; }
.fa-cc-visa:before {
content: ""; }
.fa-cc-mastercard:before {
content: ""; }
.fa-cc-discover:before {
content: ""; }
.fa-cc-amex:before {
content: ""; }
.fa-cc-paypal:before {
content: ""; }
.fa-cc-stripe:before {
content: ""; }
.fa-bell-slash:before {
content: ""; }
.fa-bell-slash-o:before {
content: ""; }
.fa-trash:before {
content: ""; }
.fa-copyright:before {
content: ""; }
.fa-at:before {
content: ""; }
.fa-eyedropper:before {
content: ""; }
.fa-paint-brush:before {
content: ""; }
.fa-birthday-cake:before {
content: ""; }
.fa-area-chart:before {
content: ""; }
.fa-pie-chart:before {
content: ""; }
.fa-line-chart:before {
content: ""; }
.fa-lastfm:before {
content: ""; }
.fa-lastfm-square:before {
content: ""; }
.fa-toggle-off:before {
content: ""; }
.fa-toggle-on:before {
content: ""; }
.fa-bicycle:before {
content: ""; }
.fa-bus:before {
content: ""; }
.fa-ioxhost:before {
content: ""; }
.fa-angellist:before {
content: ""; }
.fa-cc:before {
content: ""; }
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
content: ""; }
.fa-meanpath:before {
content: ""; }
.fa-buysellads:before {
content: ""; }
.fa-connectdevelop:before {
content: ""; }
.fa-dashcube:before {
content: ""; }
.fa-forumbee:before {
content: ""; }
.fa-leanpub:before {
content: ""; }
.fa-sellsy:before {
content: ""; }
.fa-shirtsinbulk:before {
content: ""; }
.fa-simplybuilt:before {
content: ""; }
.fa-skyatlas:before {
content: ""; }
.fa-cart-plus:before {
content: ""; }
.fa-cart-arrow-down:before {
content: ""; }
.fa-diamond:before {
content: ""; }
.fa-ship:before {
content: ""; }
.fa-user-secret:before {
content: ""; }
.fa-motorcycle:before {
content: ""; }
.fa-street-view:before {
content: ""; }
.fa-heartbeat:before {
content: ""; }
.fa-venus:before {
content: ""; }
.fa-mars:before {
content: ""; }
.fa-mercury:before {
content: ""; }
.fa-intersex:before,
.fa-transgender:before {
content: ""; }
.fa-transgender-alt:before {
content: ""; }
.fa-venus-double:before {
content: ""; }
.fa-mars-double:before {
content: ""; }
.fa-venus-mars:before {
content: ""; }
.fa-mars-stroke:before {
content: ""; }
.fa-mars-stroke-v:before {
content: ""; }
.fa-mars-stroke-h:before {
content: ""; }
.fa-neuter:before {
content: ""; }
.fa-genderless:before {
content: ""; }
.fa-facebook-official:before {
content: ""; }
.fa-pinterest-p:before {
content: ""; }
.fa-whatsapp:before {
content: ""; }
.fa-server:before {
content: ""; }
.fa-user-plus:before {
content: ""; }
.fa-user-times:before {
content: ""; }
.fa-hotel:before,
.fa-bed:before {
content: ""; }
.fa-viacoin:before {
content: ""; }
.fa-train:before {
content: ""; }
.fa-subway:before {
content: ""; }
.fa-medium:before {
content: ""; }
.fa-yc:before,
.fa-y-combinator:before {
content: ""; }
.fa-optin-monster:before {
content: ""; }
.fa-opencart:before {
content: ""; }
.fa-expeditedssl:before {
content: ""; }
.fa-battery-4:before,
.fa-battery-full:before {
content: ""; }
.fa-battery-3:before,
.fa-battery-three-quarters:before {
content: ""; }
.fa-battery-2:before,
.fa-battery-half:before {
content: ""; }
.fa-battery-1:before,
.fa-battery-quarter:before {
content: ""; }
.fa-battery-0:before,
.fa-battery-empty:before {
content: ""; }
.fa-mouse-pointer:before {
content: ""; }
.fa-i-cursor:before {
content: ""; }
.fa-object-group:before {
content: ""; }
.fa-object-ungroup:before {
content: ""; }
.fa-sticky-note:before {
content: ""; }
.fa-sticky-note-o:before {
content: ""; }
.fa-cc-jcb:before {
content: ""; }
.fa-cc-diners-club:before {
content: ""; }
.fa-clone:before {
content: ""; }
.fa-balance-scale:before {
content: ""; }
.fa-hourglass-o:before {
content: ""; }
.fa-hourglass-1:before,
.fa-hourglass-start:before {
content: ""; }
.fa-hourglass-2:before,
.fa-hourglass-half:before {
content: ""; }
.fa-hourglass-3:before,
.fa-hourglass-end:before {
content: ""; }
.fa-hourglass:before {
content: ""; }
.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
content: ""; }
.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
content: ""; }
.fa-hand-scissors-o:before {
content: ""; }
.fa-hand-lizard-o:before {
content: ""; }
.fa-hand-spock-o:before {
content: ""; }
.fa-hand-pointer-o:before {
content: ""; }
.fa-hand-peace-o:before {
content: ""; }
.fa-trademark:before {
content: ""; }
.fa-registered:before {
content: ""; }
.fa-creative-commons:before {
content: ""; }
.fa-gg:before {
content: ""; }
.fa-gg-circle:before {
content: ""; }
.fa-tripadvisor:before {
content: ""; }
.fa-odnoklassniki:before {
content: ""; }
.fa-odnoklassniki-square:before {
content: ""; }
.fa-get-pocket:before {
content: ""; }
.fa-wikipedia-w:before {
content: ""; }
.fa-safari:before {
content: ""; }
.fa-chrome:before {
content: ""; }
.fa-firefox:before {
content: ""; }
.fa-opera:before {
content: ""; }
.fa-internet-explorer:before {
content: ""; }
.fa-tv:before,
.fa-television:before {
content: ""; }
.fa-contao:before {
content: ""; }
.fa-500px:before {
content: ""; }
.fa-amazon:before {
content: ""; }
.fa-calendar-plus-o:before {
content: ""; }
.fa-calendar-minus-o:before {
content: ""; }
.fa-calendar-times-o:before {
content: ""; }
.fa-calendar-check-o:before {
content: ""; }
.fa-industry:before {
content: ""; }
.fa-map-pin:before {
content: ""; }
.fa-map-signs:before {
content: ""; }
.fa-map-o:before {
content: ""; }
.fa-map:before {
content: ""; }
.fa-commenting:before {
content: ""; }
.fa-commenting-o:before {
content: ""; }
.fa-houzz:before {
content: ""; }
.fa-vimeo:before {
content: ""; }
.fa-black-tie:before {
content: ""; }
.fa-fonticons:before {
content: ""; }
.fa-reddit-alien:before {
content: ""; }
.fa-edge:before {
content: ""; }
.fa-credit-card-alt:before {
content: ""; }
.fa-codiepie:before {
content: ""; }
.fa-modx:before {
content: ""; }
.fa-fort-awesome:before {
content: ""; }
.fa-usb:before {
content: ""; }
.fa-product-hunt:before {
content: ""; }
.fa-mixcloud:before {
content: ""; }
.fa-scribd:before {
content: ""; }
.fa-pause-circle:before {
content: ""; }
.fa-pause-circle-o:before {
content: ""; }
.fa-stop-circle:before {
content: ""; }
.fa-stop-circle-o:before {
content: ""; }
.fa-shopping-bag:before {
content: ""; }
.fa-shopping-basket:before {
content: ""; }
.fa-hashtag:before {
content: ""; }
.fa-bluetooth:before {
content: ""; }
.fa-bluetooth-b:before {
content: ""; }
.fa-percent:before {
content: ""; }
.btn {
border-radius: 0;
box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.11), 1px 1px 0 rgba(255, 255, 255, 0.21) inset; }
.btn:focus {
outline: none; }
.btn-link {
box-shadow: none; }
.btn-default, .btn-default:focus {
background-image: linear-gradient(to bottom, #ffffff 60%, #f8f8f8 100%); }
.form-control:focus {
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1) inset; }
.alert {
border-radius: 0;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); }
.navbar-default {
border: 0;
box-shadow: 0 0 3px rgba(0, 0, 0, 0.2); }
.navbar-default .navbar-nav > li > a {
font-size: 12px;
font-weight: 500;
text-transform: uppercase;
transition: all 0.2s linear; }
html {
position: relative;
min-height: 100%; }
body {
padding-top: 60px;
margin-bottom: 75px; }
footer {
position: absolute;
bottom: 0;
width: 100%;
height: 45px;
line-height: 45px; }
footer p, footer ul {
margin-bottom: 0; }
textarea {
resize: vertical; }
.navbar-nav img {
width: 30px;
height: 30px;
margin: -15px 15px -15px; }
.alert {
margin-top: 20px; }
.thumbnail {
padding: 0;
border-radius: 0;
box-shadow: 0 0 5px #ccc, inset 0 0 0 #000; }
.fa {
margin-right: 6px; }
|
2014-speaker-materials/mark-jason-dominus-help-help/slide001.html
|
hausdorff/bangbangcon.github.io
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<HTML>
<HEAD>
<TITLE>Help! Help!</TITLE>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<style>
pre {
background-color: #ecd2ea;
font-size: 16pt;
}
li {
font-size: 14pt;
}
a.next {
text-decoration: none;
}
.topbar, .botbar {
font-size: 24pt;
color: purple;
}
</style><META NAME="generator" CONTENT="txt2html v1.25">
<LINK REL='start' HREF='slide001a.html' TYPE='text/html; charset=utf-8'>
<LINK REL='first' HREF='slide001a.html' TYPE='text/html; charset=utf-8'>
<LINK REL='last' HREF='slide014.html' TYPE='text/html; charset=utf-8'>
<LINK REL='next' HREF='slide002a.html' TYPE='text/html; charset=utf-8'>
<LINK REL='previous' HREF='slide001a.html' TYPE='text/html; charset=utf-8'>
<LINK REL='contents' HREF='TABLE_OF_CONTENTS.html' TYPE='text/html; charset=utf-8'>
</HEAD>
<BODY BGCOLOR="#ffffff"><FONT SIZE=4>
<table class="topbar" width='100%' cellpadding=0 cellspacing=0 border=0>
<tr bgcolor='white'>
<td align=left width='25%'><a class="next" href="slide002a.html">☞</a></td>
<td align=center width='50%' >Help! Help!</td>
<td align=right width='25%'><b>1</b></td>
</tr>
</table>
<hr>
<P>
<img align=right src="Beatles-top.png">
<H1><A NAME="section-1">Help! Help!</A></H1>
<P>
A compendium of Perl introspection techniques
<H2><A NAME="section-1.1">Mark Jason Dominus</A></H2>
<H2><A NAME="section-1.2">Plover Systems Co.</A></H2>
<PRE class="code">
mjd@plover.com
</PRE>
<P>
<br clear="all">
<img align=right src="Beatles-bot.png">
<H2><A NAME="section-1.3">v0.2 (May 2014)</A></H2>
<P>
Slides at
<PRE class="code">
http://perl.plover.com/yak/HelpHelp/
</PRE>
<P>
(Now or soon.)
<br clear=all>
<hr>
<table class="botbar" width='100%' cellpadding=0 cellspacing=0 border=0>
<tr bgcolor='white' ><td align="left" width='33%'><a class="next" href="slide002a.html">☞</a></td>
<td align=center width='33%' ><a href="sigils.html"><img border=0 src="small-sigils.gif"></a></td>
<td align="right" width='33%'><a class="next" href="slide002a.html">☞</a></td>
</tr>
</table>
</FONT></BODY>
</HTML>
|
rktools/toolchain/linaro/share/doc/gcc-linaro-arm-linux-gnueabihf/html/as.html/Blackfin-Options.html
|
trlsmax/rk3188_kernel_tinyastro
|
<html lang="en">
<head>
<title>Blackfin Options - Using as</title>
<meta http-equiv="Content-Type" content="text/html">
<meta name="description" content="Using as">
<meta name="generator" content="makeinfo 4.13">
<link title="Top" rel="start" href="index.html#Top">
<link rel="up" href="Blackfin_002dDependent.html#Blackfin_002dDependent" title="Blackfin-Dependent">
<link rel="next" href="Blackfin-Syntax.html#Blackfin-Syntax" title="Blackfin Syntax">
<link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage">
<!--
This file documents the GNU Assembler "as".
Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
2000, 2001, 2002, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation,
Inc.
Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.3
or any later version published by the Free Software Foundation;
with no Invariant Sections, with no Front-Cover Texts, and with no
Back-Cover Texts. A copy of the license is included in the
section entitled ``GNU Free Documentation License''.
-->
<meta http-equiv="Content-Style-Type" content="text/css">
<style type="text/css"><!--
pre.display { font-family:inherit }
pre.format { font-family:inherit }
pre.smalldisplay { font-family:inherit; font-size:smaller }
pre.smallformat { font-family:inherit; font-size:smaller }
pre.smallexample { font-size:smaller }
pre.smalllisp { font-size:smaller }
span.sc { font-variant:small-caps }
span.roman { font-family:serif; font-weight:normal; }
span.sansserif { font-family:sans-serif; font-weight:normal; }
--></style>
</head>
<body>
<div class="node">
<a name="Blackfin-Options"></a>
<p>
Next: <a rel="next" accesskey="n" href="Blackfin-Syntax.html#Blackfin-Syntax">Blackfin Syntax</a>,
Up: <a rel="up" accesskey="u" href="Blackfin_002dDependent.html#Blackfin_002dDependent">Blackfin-Dependent</a>
<hr>
</div>
<h4 class="subsection">9.6.1 Options</h4>
<p><a name="index-Blackfin-options-_0028none_0029-727"></a><a name="index-options-for-Blackfin-_0028none_0029-728"></a>
<!-- man begin OPTIONS -->
<a name="index-g_t_0040code_007b_002dmcpu_003d_007d-command-line-option_002c-Blackfin-729"></a>
<dl><dt><code>-mcpu=</code><var>processor</var><span class="roman">[</span><code>-</code><var>sirevision</var><span class="roman">]</span><dd>This option specifies the target processor. The optional <var>sirevision</var>
is not used in assembler. It's here such that GCC can easily pass down its
<code>-mcpu=</code> option. The assembler will issue an
error message if an attempt is made to assemble an instruction which
will not execute on the target processor. The following processor names are
recognized:
<code>bf504</code>,
<code>bf506</code>,
<code>bf512</code>,
<code>bf514</code>,
<code>bf516</code>,
<code>bf518</code>,
<code>bf522</code>,
<code>bf523</code>,
<code>bf524</code>,
<code>bf525</code>,
<code>bf526</code>,
<code>bf527</code>,
<code>bf531</code>,
<code>bf532</code>,
<code>bf533</code>,
<code>bf534</code>,
<code>bf535</code> (not implemented yet),
<code>bf536</code>,
<code>bf537</code>,
<code>bf538</code>,
<code>bf539</code>,
<code>bf542</code>,
<code>bf542m</code>,
<code>bf544</code>,
<code>bf544m</code>,
<code>bf547</code>,
<code>bf547m</code>,
<code>bf548</code>,
<code>bf548m</code>,
<code>bf549</code>,
<code>bf549m</code>,
<code>bf561</code>,
and
<code>bf592</code>.
<p><a name="index-g_t_0040code_007b_002dmfdpic_007d-command-line-option_002c-Blackfin-730"></a><br><dt><code>-mfdpic</code><dd>Assemble for the FDPIC ABI.
<p><a name="index-g_t_0040code_007b_002dmno_002dfdpic_007d-command-line-option_002c-Blackfin-731"></a><a name="index-g_t_0040code_007b_002dmnopic_007d-command-line-option_002c-Blackfin-732"></a><br><dt><code>-mno-fdpic</code><dt><code>-mnopic</code><dd>Disable -mfdpic.
</dl>
<!-- man end -->
</body></html>
|
web/libraries/ckeditor/tests/core/editable/tabindex.html
|
SeeyaSia/www
|
<div id="editable1" contenteditable="true">CK1!</div>
<div id="editable2" contenteditable="true" tabIndex="42">CK2!</div>
<div id="editable3" contenteditable="true">CK3!</div>
<div id="editable4" contenteditable="true" tabIndex="24">CK4!</div>
|
rktools/toolchain/linaro/share/doc/gcc-linaro-arm-linux-gnueabihf/html/as.html/Weakref.html
|
trlsmax/rk3188_kernel_tinyastro
|
<html lang="en">
<head>
<title>Weakref - Using as</title>
<meta http-equiv="Content-Type" content="text/html">
<meta name="description" content="Using as">
<meta name="generator" content="makeinfo 4.13">
<link title="Top" rel="start" href="index.html#Top">
<link rel="up" href="Pseudo-Ops.html#Pseudo-Ops" title="Pseudo Ops">
<link rel="prev" href="Weak.html#Weak" title="Weak">
<link rel="next" href="Word.html#Word" title="Word">
<link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage">
<!--
This file documents the GNU Assembler "as".
Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
2000, 2001, 2002, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation,
Inc.
Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.3
or any later version published by the Free Software Foundation;
with no Invariant Sections, with no Front-Cover Texts, and with no
Back-Cover Texts. A copy of the license is included in the
section entitled ``GNU Free Documentation License''.
-->
<meta http-equiv="Content-Style-Type" content="text/css">
<style type="text/css"><!--
pre.display { font-family:inherit }
pre.format { font-family:inherit }
pre.smalldisplay { font-family:inherit; font-size:smaller }
pre.smallformat { font-family:inherit; font-size:smaller }
pre.smallexample { font-size:smaller }
pre.smalllisp { font-size:smaller }
span.sc { font-variant:small-caps }
span.roman { font-family:serif; font-weight:normal; }
span.sansserif { font-family:sans-serif; font-weight:normal; }
--></style>
</head>
<body>
<div class="node">
<a name="Weakref"></a>
<p>
Next: <a rel="next" accesskey="n" href="Word.html#Word">Word</a>,
Previous: <a rel="previous" accesskey="p" href="Weak.html#Weak">Weak</a>,
Up: <a rel="up" accesskey="u" href="Pseudo-Ops.html#Pseudo-Ops">Pseudo Ops</a>
<hr>
</div>
<h3 class="section">7.123 <code>.weakref </code><var>alias</var><code>, </code><var>target</var></h3>
<p><a name="index-g_t_0040code_007bweakref_007d-directive-507"></a>This directive creates an alias to the target symbol that enables the symbol to
be referenced with weak-symbol semantics, but without actually making it weak.
If direct references or definitions of the symbol are present, then the symbol
will not be weak, but if all references to it are through weak references, the
symbol will be marked as weak in the symbol table.
<p>The effect is equivalent to moving all references to the alias to a separate
assembly source file, renaming the alias to the symbol in it, declaring the
symbol as weak there, and running a reloadable link to merge the object files
resulting from the assembly of the new source file and the old source file that
had the references to the alias removed.
<p>The alias itself never makes to the symbol table, and is entirely handled
within the assembler.
</body></html>
|
web/css/highcharts.css
|
jawug/wugms
|
/**
* @license Highcharts
*
* (c) 2009-2016 Torstein Honsi
*
* License: www.highcharts.com/license
*/
.highcharts-container {
position: relative;
overflow: hidden;
width: 100%;
height: 100%;
text-align: left;
line-height: normal;
z-index: 0;
/* #1072 */
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
font-family: "Lucida Grande", "Lucida Sans Unicode", Arial, Helvetica, sans-serif;
font-size: 12px;
}
.highcharts-root {
display: block;
}
.highcharts-root text {
stroke-width: 0;
}
.highcharts-strong {
font-weight: bold;
}
.highcharts-emphasized {
font-style: italic;
}
.highcharts-anchor {
cursor: pointer;
}
.highcharts-background {
fill: #ffffff;
}
.highcharts-plot-border, .highcharts-plot-background {
fill: none;
}
.highcharts-label-box {
fill: none;
}
.highcharts-button-box {
fill: inherit;
}
.highcharts-tracker-line {
stroke-linejoin: round;
stroke: rgba(192, 192, 192, 0.0001);
stroke-width: 22;
fill: none;
}
.highcharts-tracker-area {
fill: rgba(192, 192, 192, 0.0001);
stroke-width: 0;
}
/* Titles */
.highcharts-title {
fill: #333333;
font-size: 1.5em;
}
.highcharts-subtitle {
fill: #666666;
}
/* Axes */
.highcharts-axis-line {
fill: none;
stroke: #ccd6eb;
}
.highcharts-yaxis .highcharts-axis-line {
stroke-width: 0;
}
.highcharts-axis-title {
fill: #666666;
}
.highcharts-axis-labels {
fill: #666666;
cursor: default;
font-size: 0.9em;
}
.highcharts-grid-line {
fill: none;
stroke: #e6e6e6;
}
.highcharts-xaxis-grid .highcharts-grid-line {
stroke-width: 0px;
}
.highcharts-tick {
stroke: #ccd6eb;
}
.highcharts-yaxis .highcharts-tick {
stroke-width: 0;
}
.highcharts-minor-grid-line {
stroke: #f2f2f2;
}
.highcharts-crosshair-thin {
stroke-width: 1px;
stroke: #cccccc;
}
.highcharts-crosshair-category {
stroke: #ccd6eb;
stroke-opacity: 0.25;
}
/* Credits */
.highcharts-credits {
cursor: pointer;
fill: #999999;
font-size: 0.7em;
transition: fill 250ms, font-size 250ms;
}
.highcharts-credits:hover {
fill: black;
font-size: 1em;
}
/* Tooltip */
.highcharts-tooltip {
cursor: default;
pointer-events: none;
white-space: nowrap;
transition: stroke 150ms;
}
.highcharts-tooltip text {
fill: #333333;
}
.highcharts-tooltip .highcharts-header {
font-size: 0.85em;
}
.highcharts-tooltip-box {
stroke-width: 1px;
fill: #f7f7f7;
fill-opacity: 0.85;
}
.highcharts-tooltip-box .highcharts-label-box {
fill: #f7f7f7;
fill-opacity: 0.85;
}
.highcharts-selection-marker {
fill: #335cad;
fill-opacity: 0.25;
}
.highcharts-graph {
fill: none;
stroke-width: 2px;
stroke-linecap: round;
stroke-linejoin: round;
}
.highcharts-state-hover .highcharts-graph {
stroke-width: 3;
}
.highcharts-point-inactive {
opacity: 0.2;
transition: opacity 50ms;
/* quick in */
}
.highcharts-series-inactive {
opacity: 0.2;
transition: opacity 50ms;
/* quick in */
}
.highcharts-state-hover path {
transition: stroke-width 50ms;
/* quick in */
}
.highcharts-state-normal path {
transition: stroke-width 250ms;
/* slow out */
}
/* Legend hover affects points and series */
g.highcharts-series,
.highcharts-point,
.highcharts-markers,
.highcharts-data-labels {
transition: opacity 250ms;
}
.highcharts-legend-series-active g.highcharts-series:not(.highcharts-series-hover),
.highcharts-legend-point-active .highcharts-point:not(.highcharts-point-hover),
.highcharts-legend-series-active .highcharts-markers:not(.highcharts-series-hover),
.highcharts-legend-series-active .highcharts-data-labels:not(.highcharts-series-hover) {
opacity: 0.2;
}
/* Series options */
/* Default colors */
.highcharts-color-0 {
fill: #7cb5ec;
stroke: #7cb5ec;
}
.highcharts-color-1 {
fill: #434348;
stroke: #434348;
}
.highcharts-color-2 {
fill: #90ed7d;
stroke: #90ed7d;
}
.highcharts-color-3 {
fill: #f7a35c;
stroke: #f7a35c;
}
.highcharts-color-4 {
fill: #8085e9;
stroke: #8085e9;
}
.highcharts-color-5 {
fill: #f15c80;
stroke: #f15c80;
}
.highcharts-color-6 {
fill: #e4d354;
stroke: #e4d354;
}
.highcharts-color-7 {
fill: #2b908f;
stroke: #2b908f;
}
.highcharts-color-8 {
fill: #f45b5b;
stroke: #f45b5b;
}
.highcharts-color-9 {
fill: #91e8e1;
stroke: #91e8e1;
}
.highcharts-area {
fill-opacity: 0.75;
stroke-width: 0;
}
.highcharts-markers {
stroke-width: 1px;
stroke: #ffffff;
}
.highcharts-point {
stroke-width: 1px;
}
.highcharts-dense-data .highcharts-point {
stroke-width: 0;
}
.highcharts-data-label {
font-size: 0.9em;
font-weight: bold;
}
.highcharts-data-label-box {
fill: none;
stroke-width: 0;
}
.highcharts-data-label text, text.highcharts-data-label {
fill: #333333;
}
.highcharts-data-label-connector {
fill: none;
}
.highcharts-halo {
fill-opacity: 0.25;
stroke-width: 0;
}
.highcharts-series:not(.highcharts-pie-series) .highcharts-point-select,
.highcharts-markers .highcharts-point-select {
fill: #cccccc;
stroke: #000000;
}
.highcharts-column-series rect.highcharts-point {
stroke: #ffffff;
}
.highcharts-column-series .highcharts-point {
transition: fill-opacity 250ms;
}
.highcharts-column-series .highcharts-point-hover {
fill-opacity: 0.75;
transition: fill-opacity 50ms;
}
.highcharts-pie-series .highcharts-point {
stroke-linejoin: round;
stroke: #ffffff;
}
.highcharts-pie-series .highcharts-point-hover {
fill-opacity: 0.75;
transition: fill-opacity 50ms;
}
.highcharts-funnel-series .highcharts-point {
stroke-linejoin: round;
stroke: #ffffff;
}
.highcharts-funnel-series .highcharts-point-hover {
fill-opacity: 0.75;
transition: fill-opacity 50ms;
}
.highcharts-funnel-series .highcharts-point-select {
fill: inherit;
stroke: inherit;
}
.highcharts-pyramid-series .highcharts-point {
stroke-linejoin: round;
stroke: #ffffff;
}
.highcharts-pyramid-series .highcharts-point-hover {
fill-opacity: 0.75;
transition: fill-opacity 50ms;
}
.highcharts-pyramid-series .highcharts-point-select {
fill: inherit;
stroke: inherit;
}
.highcharts-solidgauge-series .highcharts-point {
stroke-width: 0;
}
.highcharts-treemap-series .highcharts-point {
stroke-width: 1px;
stroke: #e6e6e6;
transition: stroke 250ms, fill 250ms, fill-opacity 250ms;
}
.highcharts-treemap-series .highcharts-point-hover {
stroke: #999999;
transition: stroke 25ms, fill 25ms, fill-opacity 25ms;
}
.highcharts-treemap-series .highcharts-above-level {
display: none;
}
.highcharts-treemap-series .highcharts-internal-node {
fill: none;
}
.highcharts-treemap-series .highcharts-internal-node-interactive {
fill-opacity: 0.15;
cursor: pointer;
}
.highcharts-treemap-series .highcharts-internal-node-interactive:hover {
fill-opacity: 0.75;
}
.highcharts-vector-series .highcharts-point {
fill: none;
stroke-width: 2px;
}
.highcharts-windbarb-series .highcharts-point {
fill: none;
stroke-width: 2px;
}
/* Legend */
.highcharts-legend-box {
fill: none;
stroke-width: 0;
}
.highcharts-legend-item > text {
fill: #333333;
font-weight: bold;
font-size: 1em;
cursor: pointer;
stroke-width: 0;
}
.highcharts-legend-item:hover text {
fill: #000000;
}
.highcharts-legend-item-hidden * {
fill: #cccccc !important;
stroke: #cccccc !important;
transition: fill 250ms;
}
.highcharts-legend-nav-active {
fill: #003399;
cursor: pointer;
}
.highcharts-legend-nav-inactive {
fill: #cccccc;
}
circle.highcharts-legend-nav-active, circle.highcharts-legend-nav-inactive {
/* tracker */
fill: rgba(192, 192, 192, 0.0001);
}
.highcharts-legend-title-box {
fill: none;
stroke-width: 0;
}
/* Bubble legend */
.highcharts-bubble-legend-symbol {
stroke-width: 2;
fill-opacity: 0.5;
}
.highcharts-bubble-legend-connectors {
stroke-width: 1;
}
.highcharts-bubble-legend-labels {
fill: #333333;
}
/* Loading */
.highcharts-loading {
position: absolute;
background-color: #ffffff;
opacity: 0.5;
text-align: center;
z-index: 10;
transition: opacity 250ms;
}
.highcharts-loading-hidden {
height: 0 !important;
opacity: 0;
overflow: hidden;
transition: opacity 250ms, height 250ms step-end;
}
.highcharts-loading-inner {
font-weight: bold;
position: relative;
top: 45%;
}
/* Plot bands and polar pane backgrounds */
.highcharts-plot-band, .highcharts-pane {
fill: #000000;
fill-opacity: 0.05;
}
.highcharts-plot-line {
fill: none;
stroke: #999999;
stroke-width: 1px;
}
/* Highcharts More and modules */
.highcharts-boxplot-box {
fill: #ffffff;
}
.highcharts-boxplot-median {
stroke-width: 2px;
}
.highcharts-bubble-series .highcharts-point {
fill-opacity: 0.5;
}
.highcharts-errorbar-series .highcharts-point {
stroke: #000000;
}
.highcharts-gauge-series .highcharts-data-label-box {
stroke: #cccccc;
stroke-width: 1px;
}
.highcharts-gauge-series .highcharts-dial {
fill: #000000;
stroke-width: 0;
}
.highcharts-polygon-series .highcharts-graph {
fill: inherit;
stroke-width: 0;
}
.highcharts-waterfall-series .highcharts-graph {
stroke: #333333;
stroke-dasharray: 1, 3;
}
.highcharts-sankey-series .highcharts-point {
stroke-width: 0;
}
.highcharts-sankey-series .highcharts-link {
transition: fill 250ms, fill-opacity 250ms;
fill-opacity: 0.5;
}
.highcharts-sankey-series .highcharts-point-hover.highcharts-link {
transition: fill 50ms, fill-opacity 50ms;
fill-opacity: 1;
}
.highcharts-venn-series .highcharts-point {
fill-opacity: 0.75;
stroke: #cccccc;
transition: stroke 250ms, fill-opacity 250ms;
}
.highcharts-venn-series .highcharts-point-hover {
fill-opacity: 1;
stroke: #cccccc;
}
/* Highstock */
.highcharts-navigator-mask-outside {
fill-opacity: 0;
}
.highcharts-navigator-mask-inside {
fill: #6685c2;
/* navigator.maskFill option */
fill-opacity: 0.25;
cursor: ew-resize;
}
.highcharts-navigator-outline {
stroke: #cccccc;
fill: none;
}
.highcharts-navigator-handle {
stroke: #cccccc;
fill: #f2f2f2;
cursor: ew-resize;
}
.highcharts-navigator-series {
fill: #335cad;
stroke: #335cad;
}
.highcharts-navigator-series .highcharts-graph {
stroke-width: 1px;
}
.highcharts-navigator-series .highcharts-area {
fill-opacity: 0.05;
}
.highcharts-navigator-xaxis .highcharts-axis-line {
stroke-width: 0;
}
.highcharts-navigator-xaxis .highcharts-grid-line {
stroke-width: 1px;
stroke: #e6e6e6;
}
.highcharts-navigator-xaxis.highcharts-axis-labels {
fill: #999999;
}
.highcharts-navigator-yaxis .highcharts-grid-line {
stroke-width: 0;
}
.highcharts-scrollbar-thumb {
fill: #cccccc;
stroke: #cccccc;
stroke-width: 1px;
}
.highcharts-scrollbar-button {
fill: #e6e6e6;
stroke: #cccccc;
stroke-width: 1px;
}
.highcharts-scrollbar-arrow {
fill: #666666;
}
.highcharts-scrollbar-rifles {
stroke: #666666;
stroke-width: 1px;
}
.highcharts-scrollbar-track {
fill: #f2f2f2;
stroke: #f2f2f2;
stroke-width: 1px;
}
.highcharts-button {
fill: #f7f7f7;
stroke: #cccccc;
cursor: default;
stroke-width: 1px;
transition: fill 250ms;
}
.highcharts-button text {
fill: #333333;
}
.highcharts-button-hover {
transition: fill 0ms;
fill: #e6e6e6;
stroke: #cccccc;
}
.highcharts-button-hover text {
fill: #333333;
}
.highcharts-button-pressed {
font-weight: bold;
fill: #e6ebf5;
stroke: #cccccc;
}
.highcharts-button-pressed text {
fill: #333333;
font-weight: bold;
}
.highcharts-button-disabled text {
fill: #333333;
}
.highcharts-range-selector-buttons .highcharts-button {
stroke-width: 0px;
}
.highcharts-range-label rect {
fill: none;
}
.highcharts-range-label text {
fill: #666666;
}
.highcharts-range-input rect {
fill: none;
}
.highcharts-range-input text {
fill: #333333;
}
.highcharts-range-input {
stroke-width: 1px;
stroke: #cccccc;
}
input.highcharts-range-selector {
position: absolute;
border: 0;
width: 1px;
/* Chrome needs a pixel to see it */
height: 1px;
padding: 0;
text-align: center;
left: -9em;
/* #4798 */
}
.highcharts-crosshair-label text {
fill: #ffffff;
font-size: 1.1em;
}
.highcharts-crosshair-label .highcharts-label-box {
fill: inherit;
}
.highcharts-candlestick-series .highcharts-point {
stroke: #000000;
stroke-width: 1px;
}
.highcharts-candlestick-series .highcharts-point-up {
fill: #ffffff;
}
.highcharts-ohlc-series .highcharts-point-hover {
stroke-width: 3px;
}
.highcharts-flags-series .highcharts-point .highcharts-label-box {
stroke: #999999;
fill: #ffffff;
transition: fill 250ms;
}
.highcharts-flags-series .highcharts-point-hover .highcharts-label-box {
stroke: #000000;
fill: #ccd6eb;
}
.highcharts-flags-series .highcharts-point text {
fill: #000000;
font-size: 0.9em;
font-weight: bold;
}
/* Highmaps */
.highcharts-map-series .highcharts-point {
transition: fill 500ms, fill-opacity 500ms, stroke-width 250ms;
stroke: #cccccc;
}
.highcharts-map-series .highcharts-point-hover {
transition: fill 0ms, fill-opacity 0ms;
fill-opacity: 0.5;
stroke-width: 2px;
}
.highcharts-mapline-series .highcharts-point {
fill: none;
}
.highcharts-heatmap-series .highcharts-point {
stroke-width: 0;
}
.highcharts-map-navigation {
font-size: 1.3em;
font-weight: bold;
text-align: center;
}
.highcharts-coloraxis {
stroke-width: 0;
}
.highcharts-coloraxis-marker {
fill: #999999;
}
.highcharts-null-point {
fill: #f7f7f7;
}
/* 3d charts */
.highcharts-3d-frame {
fill: transparent;
}
/* Exporting module */
.highcharts-contextbutton {
fill: #ffffff;
/* needed to capture hover */
stroke: none;
stroke-linecap: round;
}
.highcharts-contextbutton:hover {
fill: #e6e6e6;
stroke: #e6e6e6;
}
.highcharts-button-symbol {
stroke: #666666;
stroke-width: 3px;
}
.highcharts-menu {
border: 1px solid #999999;
background: #ffffff;
padding: 5px 0;
box-shadow: 3px 3px 10px #888;
}
.highcharts-menu-item {
padding: 0.5em 1em;
background: none;
color: #333333;
cursor: pointer;
transition: background 250ms, color 250ms;
}
.highcharts-menu-item:hover {
background: #335cad;
color: #ffffff;
}
/* Drilldown module */
.highcharts-drilldown-point {
cursor: pointer;
}
.highcharts-drilldown-data-label text,
text.highcharts-drilldown-data-label,
.highcharts-drilldown-axis-label {
cursor: pointer;
fill: #003399;
font-weight: bold;
text-decoration: underline;
}
/* No-data module */
.highcharts-no-data text {
font-weight: bold;
font-size: 12px;
fill: #666666;
}
/* Drag-panes module */
.highcharts-axis-resizer {
cursor: ns-resize;
stroke: black;
stroke-width: 2px;
}
/* Bullet type series */
.highcharts-bullet-target {
stroke-width: 0;
}
/* Lineargauge type series */
.highcharts-lineargauge-target {
stroke-width: 1px;
stroke: #333333;
}
.highcharts-lineargauge-target-line {
stroke-width: 1px;
stroke: #333333;
}
/* Annotations module */
.highcharts-annotation-label-box {
stroke-width: 1px;
stroke: #000000;
fill: #000000;
fill-opacity: 0.75;
}
.highcharts-annotation-label text {
fill: #e6e6e6;
}
/* Gantt */
.highcharts-treegrid-node-collapsed, .highcharts-treegrid-node-expanded {
cursor: pointer;
}
.highcharts-point-connecting-path {
fill: none;
}
.highcharts-grid-axis .highcharts-tick {
stroke-width: 1px;
}
.highcharts-grid-axis .highcharts-axis-line {
stroke-width: 1px;
}
|
wp-content/plugins/tablepress/admin/css/common-rtl.css
|
nhikieuvn2012/trilive-sg
|
/**
* CSS code for all TablePress admin screens, special things for RTL languages
*
* @package TablePress
* @subpackage Views CSS
* @author Tobias Bäthge
* @since 1.1.0
*/
/*
* Fixes for certain elements that should remain LTR
*/
#tablepress_about-debug-version-information .inside p {
direction: ltr;
}
#row-import-source td.column-2,
#row-import-type td.column-2 {
direction: ltr;
text-align: right;
}
#tablepress_add-add-table .form-field-small,
#table-new-id {
float:right;
}
#tablepress-page .table-shortcode {
width: 125px;
direction: ltr;
font-size: 13px;
vertical-align: baseline;
}
|
plugins/managesieve/skins/default/managesieve_mail.css
|
xrg/roundcubemail
|
#messagemenu li a.filterlink {
background-image: url(images/filter.png);
background-position: 7px 0;
}
#sievefilterform {
top: 0;
bottom: 0;
left: 0;
right: 0;
background-color: #F2F2F2;
border: 1px solid #999999;
padding: 0;
margin: 5px;
}
#sievefilterform iframe {
top: 0;
bottom: 0;
left: 0;
right: 0;
width: 100%;
min-height: 100%; /* Chrome 14 bug */
background-color: #F2F2F2;
border: 0;
padding: 0;
margin: 0;
}
#sievefilterform ul {
list-style: none;
padding: 0;
margin: 0;
margin-top: 5px;
}
#sievefilterform fieldset {
margin: 5px;
}
#sievefilterform ul li {
margin-bottom: 5px;
white-space: nowrap;
}
#sievefilterform ul li input {
margin-right: 5px;
}
#sievefilterform label {
font-weight: bold;
}
#managesieve-tip
{
z-index: 100000;
}
span.sieve.error
{
color: red;
}
|
vendor/yui/yuitest/assets/testlogger.css
|
CENDARI/atom
|
.yui-log{padding-top:3em;}.yui-log-container{width:40em;}.yui-log .yui-log-bd{height:60em;}.yui-log .yui-log-btns{display:none;}.yui-log .yui-log-ft .yui-log-sourcefilters{visibility:hidden;}.yui-log .yui-log-hd{display:none;}.yui-log .yui-log-ft{position:absolute;top:0;}.pass{background-color:green;font-weight:bold;color:white;}.fail{background-color:red;font-weight:bold;color:white;}.ignore{background-color:#666;font-weight:bold;color:white;}
|
src/template/stream/saveStreamButton.html
|
Ekrow/StreamusChromeExtension
|
<%= saveAllMessage %>
|
src/main/webapp/ui/easyui/themes/ui-dark-hive/textbox.css
|
lhy0719/xhtBlog
|
.textbox {
position: relative;
border: 1px solid #444444;
background-color: #fff;
vertical-align: middle;
display: inline-block;
overflow: hidden;
white-space: nowrap;
margin: 0;
padding: 0;
-moz-border-radius: 5px 5px 5px 5px;
-webkit-border-radius: 5px 5px 5px 5px;
border-radius: 5px 5px 5px 5px;
}
.textbox .textbox-text {
font-size: 12px;
border: 0;
margin: 0;
padding: 4px;
white-space: normal;
vertical-align: top;
outline-style: none;
resize: none;
-moz-border-radius: 5px 5px 5px 5px;
-webkit-border-radius: 5px 5px 5px 5px;
border-radius: 5px 5px 5px 5px;
}
.textbox .textbox-prompt {
font-size: 12px;
color: #aaa;
}
.textbox-button,
.textbox-button:hover {
position: absolute;
top: 0;
padding: 0;
vertical-align: top;
-moz-border-radius: 0 0 0 0;
-webkit-border-radius: 0 0 0 0;
border-radius: 0 0 0 0;
}
.textbox-button-right,
.textbox-button-right:hover {
border-width: 0 0 0 1px;
}
.textbox-button-left,
.textbox-button-left:hover {
border-width: 0 1px 0 0;
}
.textbox-addon {
position: absolute;
top: 0;
}
.textbox-icon {
display: inline-block;
width: 18px;
height: 20px;
overflow: hidden;
vertical-align: top;
background-position: center center;
cursor: pointer;
opacity: 0.6;
filter: alpha(opacity=60);
text-decoration: none;
outline-style: none;
}
.textbox-icon-disabled,
.textbox-icon-readonly {
cursor: default;
}
.textbox-icon:hover {
opacity: 1.0;
filter: alpha(opacity=100);
}
.textbox-icon-disabled:hover {
opacity: 0.6;
filter: alpha(opacity=60);
}
.textbox-focused {
-moz-box-shadow: 0 0 3px 0 #444444;
-webkit-box-shadow: 0 0 3px 0 #444444;
box-shadow: 0 0 3px 0 #444444;
}
.textbox-invalid {
border-color: #ffa8a8;
background-color: #fff3f3;
}
|
LayoutTests/fast/text/sub-pixel/text-scaling-vertical.html
|
modulexcite/blink
|
<!DOCTYPE>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="stylesheet" type="text/css" href="resources/text-scaling.css">
<script src="resources/text-scaling.js"></script>
<script src="../../../resources/js-test.js"></script>
<style>
section > div {
-webkit-writing-mode: vertical-rl;
writing-mode: vertical-rl;
}
section > div > div.header {
border-width: 0 0 0 1px;
}
section > div > div > div {
width: auto;
height: 12ex;
padding: 0 0 1ex 0;
}
</style>
</head>
<body>
<section>
<h1>Font Size Scaling (vertical-rl, Latin)</h1>
<p>
Size of the text should scale smoothly.
Reported height (logical width) should be within 0.01px
of that of the highlighted reference row.
</p>
<div id="test"></div>
</section>
<script>
if (window.testRunner && window.testRunner.setTextSubpixelPositioning)
window.testRunner.setTextSubpixelPositioning(true);
var PANGRAM = 'Flygande bäckasiner söka hwila på mjuka tuvor.';
var results = runTest(document.getElementById('test'), PANGRAM, 'vertical');
if (results == PASS) {
testPassed('Size of text scales smoothly and logical width scales with font size as expected.');
// Hide text if test passes as the actual numbers are
// different across platforms and would require platform
// specific baselines.
if (window.testRunner)
document.getElementById('test').style.display = 'none';
} else {
testFailed('Size of text does not scale smoothly, reported logical widths highlighted in red do not match reference row.');
}
</script>
</body>
</html>
|
third_party/blink/web_tests/fast/dom/shadow/distribution-update-fonts-load.html
|
nwjs/chromium.src
|
<!DOCTYPE html>
<script src="../../../resources/testharness.js"></script>
<script src="../../../resources/testharnessreport.js"></script>
<div id="container">
<p>This test crashes if ASSERT is enabled and
the shadow DOM distribution is not properly updated before flat tree traversals.
</div>
<script>
setup({ explicit_done: true });
function setNeedsDistributionRecalc() {
var element = document.createElement("div");
container.appendChild(element);
var shadowRoot = element.attachShadow({mode: 'open'});
}
test(function () {
setNeedsDistributionRecalc();
document.fonts.load("1em ahem")
.then(function () {
if (window.testRunner)
container.style.display = "none";
done();
});
}, "document.fonts.load() when needsDistributionRecalc");
</script>
|
third_party/blink/web_tests/virtual/text-antialias/selection/content-language-font-selection.html
|
scheib/chromium
|
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-language" content="zh-TW">
<script>
if (window.internals)
internals.settings.setStandardFontFamily("Ahem", "Hant");
</script>
<title>Test font selection based on content-language</title>
</head>
<body>
<!-- This tests font selection based on content-language <https://bugs.webkit.org/show_bug.cgi?id=76701>. The text should be in Ahem font. -->
This is in Ahem font.
</body>
</html>
|
third_party/blink/web_tests/fast/loader/data-url-encoding-svg.html
|
chromium/chromium
|
<meta charset="koi8-r">
<body>
<script>
if (window.testRunner) {
testRunner.dumpAsText();
testRunner.waitUntilDone();
}
var count = 0;
window.addEventListener('message', e => {
document.getElementById("result" + e.data.frame).innerHTML = e.data.frame + ". " + (e.data.value == "ðÒÏ×ÅÒËÁ" ? "SUCCESS" : "FAILURE: " + e.data.value) + ".";
count++;
if (window.testRunner && count == 3)
testRunner.notifyDone();
});
</script>
<p>Test that non-ASCII data: URLs are handled correctly.</p>
<pre id=result1></pre>
<pre id=result2></pre>
<pre id=result3></pre><br>
<iframe src="data:image/svg+xml;charset=utf-8,<svg xmlns=%22http://www.w3.org/2000/svg%22 test='ðÒÏ×ÅÒËÁ'><script>window.parent.postMessage({frame: 1, value: document.documentElement.getAttribute('test')}, '*');</script></svg>"></iframe>
<iframe src="data:image/svg+xml;charset=utf-8,<svg xmlns=%22http://www.w3.org/2000/svg%22 foo='%23' test='ðÒÏ×ÅÒËÁ'><script>window.parent.postMessage({frame: 2, value: document.documentElement.getAttribute('test')}, '*');</script></svg>"></iframe>
<iframe src="data:image/svg+xml;charset=utf-8,<svg xmlns=%22http://www.w3.org/2000/svg%22 foo='%23' test='%D0%9F%D1%80%D0%BE%D0%B2%D0%B5%D1%80%D0%BA%D0%B0'><script>window.parent.postMessage({frame: 3, value: document.documentElement.getAttribute('test')}, '*');</script></svg>"></iframe>
</body>
|
node_modules/zombie/node_modules/html5/data/tree-construction/tests4.dat-2/input.html
|
guhelski/tnsfpg
|
textarea content with <em>pseudo</em> <foo>markup
|
tabs/cli.html
|
mikeller/betaflight-configurator
|
<div class="tab-cli">
<div class="content_wrapper">
<div class="note">
<div class="note_spacer">
<p i18n="cliInfo"></p>
</div>
</div>
<div class="backdrop">
<div class="window">
<div class="wrapper"></div>
</div>
</div>
<textarea name="commands" i18n_placeholder="cliInputPlaceholder" rows="1" cols="0"></textarea>
</div>
</div>
|
public/stylesheets/jstoolbar.css
|
RedAlliances/RedminePM2
|
.jstEditor {
padding-left: 0px;
}
.jstEditor textarea, .jstEditor iframe {
margin: 0;
}
.jstHandle {
height: 10px;
font-size: 0.1em;
cursor: s-resize;
/*background: transparent url(img/resizer.png) no-repeat 45% 50%;*/
}
.jstElements {
padding: 3px 3px 3px 0;
}
.jstElements button {
margin-right: 4px;
width : 24px;
height: 24px;
padding: 4px;
border-style: solid;
border-width: 1px;
border-color: #ddd;
background-color : #f7f7f7;
background-position : 50% 50%;
background-repeat: no-repeat;
}
.jstElements button:hover {
border-color: #bbb;
background-color: #e5e5e5;
}
.jstElements button span {
display : none;
}
.jstElements span {
display : inline;
}
.jstSpacer {
width : 0px;
font-size: 1px;
margin-right: 6px;
}
.jstElements .help { float: right; margin-right: 0.5em; padding-top: 8px; font-size: 0.9em; }
.jstElements .help a {padding: 2px 0 2px 20px; background: url(../images/help.png) no-repeat 0 50%;}
/* Buttons
-------------------------------------------------------- */
.jstb_strong {
background-image: url(../images/jstoolbar/bt_strong.png);
}
.jstb_em {
background-image: url(../images/jstoolbar/bt_em.png);
}
.jstb_ins {
background-image: url(../images/jstoolbar/bt_ins.png);
}
.jstb_del {
background-image: url(../images/jstoolbar/bt_del.png);
}
.jstb_code {
background-image: url(../images/jstoolbar/bt_code.png);
}
.jstb_h1 {
background-image: url(../images/jstoolbar/bt_h1.png);
}
.jstb_h2 {
background-image: url(../images/jstoolbar/bt_h2.png);
}
.jstb_h3 {
background-image: url(../images/jstoolbar/bt_h3.png);
}
.jstb_ul {
background-image: url(../images/jstoolbar/bt_ul.png);
}
.jstb_ol {
background-image: url(../images/jstoolbar/bt_ol.png);
}
.jstb_bq {
background-image: url(../images/jstoolbar/bt_bq.png);
}
.jstb_unbq {
background-image: url(../images/jstoolbar/bt_bq_remove.png);
}
.jstb_pre {
background-image: url(../images/jstoolbar/bt_pre.png);
}
.jstb_link {
background-image: url(../images/jstoolbar/bt_link.png);
}
.jstb_img {
background-image: url(../images/jstoolbar/bt_img.png);
}
.jstb_help {
background-image: url(../images/help.png);
}
|
postfix/help/opt_daemon_timeout.pl.html
|
webdev1001/webmin
|
<header>Czas przeterminowania obs³ugi po³±czenia</header>
<center><tt>daemon_timeout</tt></center>
<hr>
Ten parametr okre¶la ile czasu mo¿e zaj±æ demonowi obs³u¿enie ¿±dania
zanim uzna on, ¿e po³±czenie zawis³o i sam siê zabije.
<hr>
|
third_party/blink/web_tests/external/wpt/html/canvas/offscreen/compositing/2d.composite.uncovered.image.destination-in.html
|
nwjs/chromium.src
|
<!DOCTYPE html>
<!-- DO NOT EDIT! This test has been generated by /html/canvas/tools/gentest.py. -->
<title>OffscreenCanvas test: 2d.composite.uncovered.image.destination-in</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/html/canvas/resources/canvas-tests.js"></script>
<h1>2d.composite.uncovered.image.destination-in</h1>
<p class="desc">drawImage() draws pixels not covered by the source object as (0,0,0,0), and does not leave the pixels unchanged.</p>
<script>
var t = async_test("drawImage() draws pixels not covered by the source object as (0,0,0,0), and does not leave the pixels unchanged.");
var t_pass = t.done.bind(t);
var t_fail = t.step_func(function(reason) {
throw reason;
});
t.step(function() {
var offscreenCanvas = new OffscreenCanvas(100, 50);
var ctx = offscreenCanvas.getContext('2d');
ctx.fillStyle = 'rgba(0, 255, 255, 0.5)';
ctx.fillRect(0, 0, 100, 50);
ctx.globalCompositeOperation = 'destination-in';
var promise = new Promise(function(resolve, reject) {
var xhr = new XMLHttpRequest();
xhr.open("GET", '/images/yellow.png');
xhr.responseType = 'blob';
xhr.send();
xhr.onload = function() {
resolve(xhr.response);
};
});
promise.then(function(response) {
createImageBitmap(response).then(bitmap => {
ctx.drawImage(bitmap, 40, 40, 10, 10, 40, 50, 10, 10);
_assertPixelApprox(offscreenCanvas, 15,15, 0,0,0,0, "15,15", "0,0,0,0", 5);
_assertPixelApprox(offscreenCanvas, 50,25, 0,0,0,0, "50,25", "0,0,0,0", 5);
}, t_fail);
}).then(t_pass, t_fail);
});
</script>
|
third_party/blink/web_tests/paint/invalidation/multicol/multicol-as-paint-container.html
|
scheib/chromium
|
<!DOCTYPE html>
<script src="../../../resources/ahem.js"></script>
<script src="../resources/text-based-repaint.js"></script>
<script>
if (window.internals) {
onload = runRepaintAndPixelTest;
} else {
onclick = repaintTest;
}
function repaintTest() {
var target = document.getElementById('target');
target.style.color = 'green';
}
</script>
<div id="target" style="-webkit-columns:2; backface-visibility:hidden; width:630px; font:20px/1 Ahem; color:red;">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce
varius, metus eu fringilla pulvinar, ipsum sapien ultricies arcu,
non condimentum quam est eu purus. Ut nisl libero, suscipit ut leo
eget, dapibus ultrices dolor.
</div>
<p>All text above should be green (if tested manually, you need to click first).</p>
|
versions/3.3.0/core/server/services/mail/templates/reset-password.html
|
dingotiles/ghost-for-cloudfoundry
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN " "http://www.w3.org/TR/html4/loose.dtd">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body bgcolor="#ffffff" topmargin="0" leftmargin="0" marginheight="0" marginwidth="0" style="-webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; background: #ffffff; color: #808284; font-family: sans-serif; font-size: 15px; line-height: 1.5; margin: 0; width: 100%;">
<table width="100%" cellpadding="0" cellspacing="0" border="0" bgcolor="#ffffff">
<tr>
<td bgcolor="#ffffff" width="100%">
<table class="main-wrapper" width="600" cellpadding="0" cellspacing="0" border="0" align="center" bgcolor="#ffffff">
<tr>
<td class="cell" width="100%">
<div class="wrapper" style="-moz-border-radius: 3px; -webkit-border-radius: 3px; border: #e5e3d8 1px solid; border-radius: 3px; margin: 2%; padding: 5% 8%;">
<table class="content" width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="content-cell" width="100%">
<!-- START OF EMAIL CONTENT -->
<p style="color: #808284; font-family: sans-serif; font-size: 15px; font-weight: normal; line-height: 1.5em; margin: 0; padding: 0 0 1.5em 0;"><strong>Hello!</strong></p>
<p style="color: #808284; font-family: sans-serif; font-size: 15px; font-weight: normal; line-height: 1.5em; margin: 0; padding: 0 0 1.5em 0;">A request has been made to reset your password on <a href="{{ siteUrl }}" style="color: #5ba4e5;">{{ siteUrl }}</a>.</p>
<p style="color: #808284; font-family: sans-serif; font-size: 15px; font-weight: normal; line-height: 1.5em; margin: 0; padding: 0 0 1.5em 0;">Please follow the link below to reset your password:<br><br> <a href="{{ resetUrl }}" style="color: #5ba4e5;">Click here to reset your password</a></p>
<p style="color: #808284; font-family: sans-serif; font-size: 15px; font-weight: normal; line-height: 1.5em; margin: 0; padding: 0 0 1.5em 0;"><i>If you did not request a password reset, it's safe to ignore this email.</i></p>
<p style="color: #808284; font-family: sans-serif; font-size: 15px; font-weight: normal; line-height: 1.5em; margin: 0; padding: 0 0 1.5em 0;">Ghost</p>
<!-- END OF EMAIL CONTENT -->
</td>
</tr>
</table>
</div>
<div class="container" style="padding: 0 4%;">
<table class="footer" width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td class="footer-cell" align="right" style="color: #888888; font-family: sans-serif; font-size: 11px; line-height: 1.3; padding: 0 0 20px 0;">
Sent by <a href="{{siteUrl}}" style="color: #5ba4e5;">{{siteUrl}}</a>
</td>
</tr>
</table>
</div>
</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
|
include/dlib-18.9/docs/dlib/array.h.html
|
eldilibra/mudsling
|
<html><!-- Created using the cpp_pretty_printer from the dlib C++ library. See http://dlib.net for updates. --><head><title>dlib C++ Library - array.h</title></head><body bgcolor='white'><pre>
<font color='#009900'>// Copyright (C) 2003 Davis E. King (davis@dlib.net)
</font><font color='#009900'>// License: Boost Software License See LICENSE.txt for the full license.
</font><font color='#0000FF'>#ifndef</font> DLIB_ARRAy_
<font color='#0000FF'>#define</font> DLIB_ARRAy_
<font color='#0000FF'>#include</font> "<a style='text-decoration:none' href='array/array_kernel.h.html'>array/array_kernel.h</a>"
<font color='#0000FF'>#include</font> "<a style='text-decoration:none' href='array/array_tools.h.html'>array/array_tools.h</a>"
<font color='#0000FF'>#endif</font> <font color='#009900'>// DLIB_ARRAy_
</font>
</pre></body></html>
|
myodd/boost/libs/pool/doc/html/boost_pool/appendices/todo.html
|
FFMG/myoddweb.piger
|
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>Appendix H: Future plans</title>
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
<link rel="home" href="../../index.html" title="Boost.Pool">
<link rel="up" href="../appendices.html" title="Appendices">
<link rel="prev" href="references.html" title="Appendix G: References">
<link rel="next" href="../indexes.html" title="Indexes">
</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="references.html"><img src="../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../appendices.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="../indexes.html"><img src="../../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
<div class="section">
<div class="titlepage"><div><div><h3 class="title">
<a name="boost_pool.appendices.todo"></a><a class="link" href="todo.html" title="Appendix H: Future plans">Appendix H: Future plans</a>
</h3></div></div></div>
<p>
Another pool interface will be written: a base class for per-class pool allocation.
</p>
<p>
This "pool_base" interface will be Singleton Usage with Exceptions,
and built on the singleton_pool interface.
</p>
</div>
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
<td align="left"></td>
<td align="right"><div class="copyright-footer">Copyright © 2000-2006 Stephen Cleary<br>Copyright © 2011 Paul A. Bristow<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="references.html"><img src="../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../appendices.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="../indexes.html"><img src="../../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
</body>
</html>
|
www/js/dojox/app/tests/multiSceneApp/simple.html
|
avz-cmf/zaboy-middleware
|
<div style="background:#c5ccd3;" class="view simpleView">
<h1 data-app-constraint="top" dojoType="dojox.mobile.Heading" >Main Scene</h1>
</div>
|
resources/content_server/browse/browse.html
|
ashang/calibre
|
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>..:: calibre {library} ::.. {title}</title>
<meta http-equiv="X-UA-Compatible" content="IE=100" />
<meta name="robots" content="noindex" />
<link rel="icon" type="image/x-icon" href="http://calibre-ebook.com/favicon.ico" />
<link rel="stylesheet" type="text/css" href="{prefix}/static/browse/browse.css" />
<link type="text/css" href="{prefix}/static/jquery_ui/css/humanity-custom/jquery-ui-1.8.5.custom.css" rel="stylesheet" />
<link rel="stylesheet" type="text/css" href="{prefix}/static/jquery.multiselect.css" />
<link rel="apple-touch-icon" href="{prefix}/static/calibre.png" />
<script type="text/javascript" src="{prefix}/static/jquery.js"></script>
<script type="text/javascript" src="{prefix}/static/jquery.corner.js"></script>
<script type="text/javascript"
src="{prefix}/static/jquery_ui/js/jquery-ui-1.8.5.custom.min.js"></script>
<script type="text/javascript"
src="{prefix}/static/jquery.multiselect.min.js"></script>
<script type="text/javascript" src="{prefix}/static/stacktrace.js"></script>
<script type="text/javascript" src="{prefix}/static/browse/browse.js"></script>
<script type="text/javascript">
var sort_cookie_name = "{sort_cookie_name}";
var sort_select_label = "{sort_select_label}";
var url_prefix = "{prefix}";
$(document).ready(function() {{
init();
{script}
}});
</script>
</head>
<body>
<div id="container">
<!-- Header -->
<div id="header">
<div class="area">
<div class="bubble">
<p><a href="{prefix}/browse" title="Return to top level"
>→ {home} ←</a></p>
</div>
</div>
<div id="nav-container">
<ul id="primary-nav">
<li><a id="nav-mobile" href="{prefix}/mobile" title="A version of this website suited for mobile browsers">Mobile</a></li>
<li><a id="nav-demo" href="{prefix}/old" title="The old version of this website">Old</a></li>
<li><a id="nav-download" href="{prefix}/opds" title="An OPDS feed based version of this website, used in special purpose applications">Feed</a></li>
</ul>
</div>
<form id="donate" action="https://www.paypal.com/cgi-bin/webscr"
method="post" title="Donate to support the development of calibre">
<div>
<input type="hidden" name="cmd" value="_s-xclick"></input>
<input type="hidden" name="hosted_button_id" value="MZQCP8EESW4H4"></input>
<input type="image"
src="{prefix}/static/button-donate.png"
name="submit"></input>
<img alt="" src="https://www.paypal.com/en_US/i/scr/pixel.gif"
width="1" height="1"></img>
</div>
</form>
<div id="calibre-home-link" title="Go to the calibre website"></div>
</div>
<!-- End header -->
<div id="content">
<div class="sort_select">
<label>{sort_select_label}</label>
<select id="sort_combobox">
{sort_select_options}
</select>
</div>
<div id="search_box">
<form name="search_form" action="{prefix}/browse/search" method="get" accept-charset="UTF-8">
<input value="{initial_search}" type="text" title="Search" name="query"
class="search_input" />
<input type="submit" value="{Search}" title="{Search}" alt="{Search}" />
</form>
</div>
<div> </div>
<div> </div>
<div> </div>
<div id="main">
{main}
</div>
<div id="footer">
[{library_path}]
</div>
</div>
</div>
<div id="book_details_dialog"></div>
<div id="goto_page_dialog"></div>
</body>
</html>
|
webroot/rsrc/css/application/objectselector/object-selector.css
|
hach-que/unearth-phabricator
|
/**
* @provides phabricator-object-selector-css
* @requires aphront-dialog-view-css
*/
.device-desktop .phabricator-object-selector-dialog {
width: 860px;
}
.phabricator-object-selector-dialog .aphront-dialog-body {
padding: 0;
}
.phabricator-object-selector-search {
width: 100%;
background: {$lightbluebackground};
border-bottom: 1px solid {$thinblueborder};
}
.phabricator-object-selector-search td {
padding: 4px 8px;
vertical-align: middle;
}
td.phabricator-object-selector-search-text {
width: 100%;
}
.phabricator-object-selector-row:hover {
background-color: {$greybackground};
}
.phabricator-object-selector-row:hover a {
text-decoration: none;
}
.phabricator-object-selector-search-text input {
width: 100%;
border-radius: 14px;
padding: 4px 8px;
height: 26px;
margin: 2px 0;
}
.phabricator-object-selector-popicon {
display: inline-block;
margin-top: 4px;
}
.phabricator-object-selector-results {
position: relative;
height: 24em;
overflow-y: scroll;
overflow-x: hidden;
}
.phabricator-object-selector-handle {
width: 100%;
background: {$lightgreybackground};
margin-bottom: 1px;
}
.phabricator-object-selector-handle td {
padding: 4px 8px;
}
.phabricator-object-selector-handle th {
font-weight: bold;
vertical-align: middle;
width: 100%;
overflow: hidden;
}
.phabricator-object-selector-handle th a {
display: block;
padding: 4px 0;
}
.phabricator-object-selector-header {
margin-bottom: 8px;
font-weight: bold;
text-transform: uppercase;
color: {$bluetext};
}
.phabricator-object-selector-attach-explicit {
padding: 4px;
background: #f3f3f3;
border: solid #bbbbbb;
border-width: 1px 0px;
}
.phabricator-object-selector-current {
border-top: 1px solid {$thinblueborder};
}
.phabricator-object-selector-currently-attached {
padding: 8px;
}
.object-selector-nothing {
padding: 1em;
color: {$lightgreytext};
text-align: center;
}
.phabricator-object-selector-instructions {
font-size: 11px;
color: {$greytext};
margin-top: 1.25em;
}
|
useradmin/help/ggid.ru_SU.html
|
rcuvgd/Webmin22.01.2016
|
<header>ID çÒÕÐÐÙ</header>
ëÁË É <a href=uid> ID ÐÏÌØÚÏ×ÁÔÅÌÑ</a>, ID ÇÒÕÐÐÙ ÉÌÉ GID -
ÜÔÏ ÉÄÅÎÔÉÆÉËÁÔÏÒ, ËÏÔÏÒÙÊ ÓÉÓÔÅÍÁ ÒÅÁÌØÎÏ ÉÓÐÏÌØÚÕÅÔ ÄÌÑ ÏÐÒÅÄÅÌÅÎÉÑ ÐÒÁ× ÎÁ
ÆÁÊÌÙ É ÐÒÏÃÅÓÓÙ. åÓÌÉ Ä×Å ÇÒÕÐÐÙ ÉÍÅÀÔ ÏÄÉÎÁËÏ×ÙÊ GID ÏÎÉ ÂÕÄÕÔ ÜË×É×ÁÌÅÎÔÎÙ
ÄÌÑ ÓÉÓÔÅÍÙ ÐÒÉ ÐÒÏ×ÅÒËÅ ÐÒÁ×. ðÒÉ ÓÏÚÄÁÎÉÉ ÎÏ×ÏÊ ÇÒÕÐÐÙ ÜÔÏ ÐÏÌÅ ÂÕÄÅÔ
Á×ÔÏÍÁÔÉÞÅÓËÉ ÚÁÐÏÌÎÅÎÏ ÎÅÉÓÐÏÌØÚÕÅÍÙÍ GID.
<hr>
|
libs/yui/3.17.0/datatable-scroll/assets/skins/night/datatable-scroll-skin.css
|
wayne-lewis/baiducdnstatic
|
/*
YUI 3.17.0 (build ce55cc9)
Copyright 2014 Yahoo! Inc. All rights reserved.
Licensed under the BSD License.
http://yuilibrary.com/license/
*/
.yui3-skin-sam .yui3-datatable-scroll-columns {
border-collapse: separate;
border-spacing: 0;
font-family: HelveticaNeue,arial,helvetica,clean,sans-serif;
margin: 0;
padding: 0;
top: 0;
left: 0;
}
.yui3-skin-sam .yui3-datatable-scroll-columns .yui3-datatable-header {
padding: 0;
}
.yui3-skin-sam .yui3-datatable-x-scroller,
.yui3-skin-sam .yui3-datatable-y-scroller-container {
border: 1px solid #303030;
border-left-color: #323434;
}
.yui3-skin-sam .yui3-datatable-scrollable-x .yui3-datatable-y-scroller-container,
.yui3-skin-sam .yui3-datatable-x-scroller .yui3-datatable-table,
.yui3-skin-sam .yui3-datatable-y-scroller .yui3-datatable-table {
border: 0 none;
}
|
templates/datafeeds/offseason_matches_get.html
|
bvisness/the-blue-alliance
|
{% extends "base.html" %}
{% block title %}OffseasonMatchesGet{% endblock %}
{% block content %}
<div class="row">
<div class="alert alert-block alert-success">
<h4>Got {{matches|length}} matches</h4>
</div>
<table class="table table-condensed table-hover table-striped">
<thead>
<th>key_name</th>
<th>team_key_names</th>
<th>alliances_json</th>
</thead>
{% for match in matches %}
<tr>
<td>{{match.key_name}}</td>
<td>{{match.team_key_names}}</td>
<td>{{match.alliances_json}}</td>
</tr>
{% endfor %}
</table>
</div>
{% endblock %}
|
www.luigibifulco.it/blog/kirby.2.0.0/test/etc/kirbytext/multiline-parenthesis/expected.html
|
muten84/luigibifulco.it
|
<p>(<br />
multi line parenthesis<br />
should be rendered correctly<br />
)</p>
|
webmin-1.660/proc/help/cpu.sv.html
|
pakohan/syso-kernel
|
<header>Processhanterare - CPU-översikt</header>
På denna sida visas alla processer, ordnade efter CPU-utnyttjande, som
körs på systemet. För varje process anges PID, ägare, CUP och kommando.
Du kan klicka på PID för att få mer information.
<p>Det här kan du använda för att hitta processer som slukar CPU-tid.
För varje process visas CPU-användningen i procent av tillgänglig CPU,
vilket betyder att på ett vanligt system bör summan av alla processers
CPU bli lägre än 100 %. Det är endast om en eller flera processer utför
någon CPU-tung uppgift som all CPU-kraft i systemet används.
<include overview>
<hr>
|
wp-includes/css/dist/format-library/style-rtl.css
|
TheThumbsupguy/Ross-Upholstery-Inc
|
/**
* Colors
*/
/**
* Breakpoints & Media Queries
*/
/**
* SCSS Variables.
*
* Please use variables from this sheet to ensure consistency across the UI.
* Don't add to this sheet unless you're pretty sure the value will be reused in many places.
* For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
*/
/**
* Colors
*/
/**
* Fonts & basic variables.
*/
/**
* Grid System.
* https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
*/
/**
* Dimensions.
*/
/**
* Shadows.
*/
/**
* Editor widths.
*/
/**
* Block & Editor UI.
*/
/**
* Block paddings.
*/
/**
* React Native specific.
* These variables do not appear to be used anywhere else.
*/
/**
* Breakpoint mixins
*/
/**
* Long content fade mixin
*
* Creates a fading overlay to signify that the content is longer
* than the space allows.
*/
/**
* Focus styles.
*/
/**
* Applies editor left position to the selector passed as argument
*/
/**
* Styles that are reused verbatim in a few places
*/
/**
* Allows users to opt-out of animations via OS-level preferences.
*/
/**
* Reset default styles for JavaScript UI based pages.
* This is a WP-admin agnostic reset
*/
/**
* Reset the WP Admin page styles for Gutenberg-like pages.
*/
/**
* These are default block editor widths in case the theme doesn't provide them.
*/
:root {
--wp-admin-theme-color: #007cba;
--wp-admin-theme-color-darker-10: #006ba1;
--wp-admin-theme-color-darker-20: #005a87;
--wp-admin-border-width-focus: 2px;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
:root {
--wp-admin-border-width-focus: 1.5px;
}
}
.block-editor-format-toolbar__image-popover {
z-index: 159990;
}
.block-editor-format-toolbar__image-container-content {
display: flex;
}
.block-editor-format-toolbar__image-container-content .components-button {
align-self: flex-end;
height: 30px;
margin-bottom: 8px;
margin-left: 8px;
padding: 0 6px;
}
.block-editor-format-toolbar__image-container-value {
margin: 7px;
flex-grow: 1;
flex-shrink: 1;
white-space: nowrap;
min-width: 150px;
max-width: 500px;
}
.block-editor-format-toolbar__image-container-value.components-base-control .components-base-control__field {
margin-bottom: 0;
}
.block-editor-format-toolbar__image-container-value.components-base-control .components-base-control__label {
display: block;
}
.block-editor-format-toolbar__link-container-content {
display: flex;
}
.block-editor-format-toolbar__link-container-value {
margin: 7px;
flex-grow: 1;
flex-shrink: 1;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
min-width: 150px;
max-width: 500px;
}
.block-editor-format-toolbar__link-container-value.has-invalid-link {
color: #cc1818;
}
.components-inline-color__indicator {
position: absolute;
background: #000;
height: 3px;
width: 20px;
bottom: 6px;
right: auto;
left: auto;
margin: 0 5px;
}
.components-inline-color-popover .components-popover__content > div {
padding: 20px 18px;
}
.components-inline-color-popover .components-popover__content .components-color-palette {
margin-top: 0.6rem;
}
.components-inline-color-popover .components-popover__content .components-base-control__title {
display: block;
margin-bottom: 16px;
font-weight: 600;
color: #191e23;
}
.components-inline-color-popover .components-popover__content .component-color-indicator {
vertical-align: text-bottom;
}
.format-library-text-color-button {
position: relative;
}
.format-library-text-color-button__indicator {
height: 4px;
width: 20px;
position: absolute;
bottom: 10px;
right: 8px;
}
|
src/qml/filters/webvfx_threejs_text/threejs_text.html
|
shaunstanislaus/shotcut
|
<!--
Original JavaScript code by Ricardo Cabello (http://mrdoob.com/),
Joshua Koo (https://github.com/zz85/),
and Altered Qualia (https://github.com/alteredq/touchtoy).
Code reduction and WebVfx integration by Dan Dennedy (http://www.dennedy.org/).
The MIT License
Copyright © 2010-2014 three.js authors
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.
-->
<!DOCTYPE html>
<html>
<head>
<style>
html, body {
width: 100%;
height: 100%;
margin: 0px;
overflow: hidden;
}
</style>
</head>
<body>
<script src="three.min.js"></script>
<script src="GeometryUtils.js"></script>
<script src="Detector.js"></script>
<script src="fonts/gentilis_bold.typeface.js"></script>
<script src="fonts/gentilis_regular.typeface.js"></script>
<script src="fonts/optimer_bold.typeface.js"></script>
<script src="fonts/optimer_regular.typeface.js"></script>
<script src="fonts/helvetiker_bold.typeface.js"></script>
<script src="fonts/helvetiker_regular.typeface.js"></script>
<script src="fonts/droid_sans_regular.typeface.js"></script>
<script src="fonts/droid_sans_bold.typeface.js"></script>
<script src="fonts/droid_serif_regular.typeface.js"></script>
<script src="fonts/droid_serif_bold.typeface.js"></script>
<script>
if ( ! Detector.webgl ) Detector.addGetWebGLMessage();
var container, hex, color;
var camera, cameraTarget, scene, renderer, pointLight;
var group, textMesh1, textGeo, material;
var text = "three.js",
height = 20,
size = 70,
curveSegments = 4,
bevelThickness = 2,
bevelSize = 1.5,
bevelSegments = 3,
bevelEnabled = true,
font = "optimer", // helvetiker, optimer, gentilis, droid sans, droid serif
weight = "bold", // normal bold
style = "normal"; // normal italic
var textPosition = new THREE.Vector2( 0, 0 );
init();
webvfx.renderRequested.connect(window, render);
webvfx.readyRender(true);
function decimalToHex( d ) {
var hex = Number( d ).toString( 16 );
hex = "000000".substr( 0, 6 - hex.length ) + hex;
return hex.toUpperCase();
}
function init() {
container = document.createElement( 'div' );
document.body.appendChild( container );
// CAMERA
camera = new THREE.PerspectiveCamera( 30, window.innerWidth / window.innerHeight, 1, 1500 );
camera.position.set( 0, 400, 700 );
cameraTarget = new THREE.Vector3( 0, 150, 0 );
camera.lookAt( cameraTarget );
// SCENE
scene = new THREE.Scene();
// LIGHTS
var dirLight = new THREE.DirectionalLight( 0xffffff, 0.125 );
dirLight.position.set( 0, 0, 1 ).normalize();
scene.add( dirLight );
pointLight = new THREE.PointLight( 0xffffff, 1.5 );
pointLight.position.set( 0, 100, 90 );
scene.add( pointLight );
pointLight.color.setHSL( Math.random(), 1, 0.5 );
hex = decimalToHex( pointLight.color.getHex() );
material = new THREE.MeshFaceMaterial( [
new THREE.MeshPhongMaterial( { color: 0xffffff, shading: THREE.FlatShading } ), // front
new THREE.MeshPhongMaterial( { color: 0xffffff, shading: THREE.SmoothShading } ) // side
] );
group = new THREE.Object3D();
group.position.y = 100;
scene.add( group );
createText();
// RENDERER
renderer = new THREE.WebGLRenderer( { antialias: true, alpha: true } );
renderer.setSize( window.innerWidth, window.innerHeight );
container.appendChild( renderer.domElement );
}
function createText() {
textGeo = new THREE.TextGeometry( text, {
size: size,
height: height,
curveSegments: curveSegments,
font: font,
weight: weight,
style: style,
bevelThickness: bevelThickness,
bevelSize: bevelSize,
bevelEnabled: bevelEnabled,
material: 0,
extrudeMaterial: 1
});
textGeo.computeBoundingBox();
textGeo.computeVertexNormals();
// "fix" side normals by removing z-component of normals for side faces
// (this doesn't work well for beveled geometry as then we lose nice curvature around z-axis)
if ( ! bevelEnabled ) {
var triangleAreaHeuristics = 0.1 * ( height * size );
for ( var i = 0; i < textGeo.faces.length; i ++ ) {
var face = textGeo.faces[ i ];
if ( face.materialIndex == 1 ) {
for ( var j = 0; j < face.vertexNormals.length; j ++ ) {
face.vertexNormals[ j ].z = 0;
face.vertexNormals[ j ].normalize();
}
var va = textGeo.vertices[ face.a ];
var vb = textGeo.vertices[ face.b ];
var vc = textGeo.vertices[ face.c ];
var s = THREE.GeometryUtils.triangleArea( va, vb, vc );
if ( s > triangleAreaHeuristics ) {
for ( var j = 0; j < face.vertexNormals.length; j ++ ) {
face.vertexNormals[ j ].copy( face.normal );
}
}
}
}
}
var centerOffset = -0.5 * ( textGeo.boundingBox.max.x - textGeo.boundingBox.min.x );
baselineOffset = 0.2 * ( textGeo.boundingBox.max.y - textGeo.boundingBox.min.y );
textMesh1 = new THREE.Mesh( textGeo, material );
textMesh1.position.x = centerOffset + textPosition.x;
textMesh1.position.y = baselineOffset + textPosition.y;
textMesh1.position.z = 0;
textMesh1.rotation.x = 0;
textMesh1.rotation.y = Math.PI * 2;
group.add( textMesh1 );
}
function refreshText() {
group.remove( textMesh1 );
if ( !text ) return;
createText();
}
function render(time) {
var color = webvfx.getStringParameter('color');
if (color) {
var decimalColor = parseInt(color.substring(1), 16);
pointLight.color.setHex(decimalColor);
}
var myText = webvfx.getStringParameter('text');
if (text !== myText) {
text = myText;
refreshText();
}
var myFont = webvfx.getStringParameter('font');
if (font !== myFont) {
font = myFont;
refreshText();
}
var myWeight = webvfx.getStringParameter('weight');
if (weight !== myWeight) {
weight = myWeight;
refreshText();
}
if (bevelEnabled !== webvfx.getNumberParameter('bevel')) {
bevelEnabled = webvfx.getNumberParameter('bevel');
refreshText();
}
if (height !== webvfx.getNumberParameter('depth')) {
height = webvfx.getNumberParameter('depth');
refreshText();
}
if (size !== webvfx.getNumberParameter('size')) {
size = webvfx.getNumberParameter('size');
refreshText();
}
var horizontal = (webvfx.getNumberParameter('horizontal') - 0.5) * window.innerWidth * 0.5;
if (textPosition.x !== horizontal) {
textPosition.x = horizontal;
refreshText();
}
var vertical = (0.5 - webvfx.getNumberParameter('vertical')) * window.innerHeight * 0.5;
if (textPosition.y !== vertical) {
textPosition.y = vertical;
refreshText();
}
group.rotation.x = 2.0 * (webvfx.getNumberParameter('x_rotation') - 0.6);
renderer.clear();
renderer.render( scene, camera );
}
</script>
</body>
</html>
|
extern/glm-0.9.7.1/doc/api/a00139.html
|
sTorro/CViewGL
|
<!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.10"/>
<title>0.9.9 API documenation: wrap.hpp File Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<script type="text/javascript">
$(document).ready(function() { init_search(); });
</script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="logo-mini.png"/></td>
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">0.9.9 API documenation
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.10 -->
<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="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="files.html"><span>Files</span></a></li>
<li>
<div id="MSearchBox" class="MSearchBoxInactive">
<span class="left">
<img id="MSearchSelect" src="search/mag_sel.png"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
<input type="text" id="MSearchField" value="Search" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
</span><span class="right">
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
</span>
</div>
</li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="files.html"><span>File List</span></a></li>
</ul>
</div>
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><a class="el" href="dir_934f46a345653ef2b3014a1b37a162c1.html">G:</a></li><li class="navelem"><a class="el" href="dir_98f7f9d41f9d3029bd68cf237526a774.html">Source</a></li><li class="navelem"><a class="el" href="dir_9344afb825aed5e2f5be1d2015dde43c.html">G-Truc</a></li><li class="navelem"><a class="el" href="dir_45973f864e07b2505003ae343b7c8af7.html">glm</a></li><li class="navelem"><a class="el" href="dir_304be5dfae1339a7705426c0b536faf2.html">glm</a></li><li class="navelem"><a class="el" href="dir_e8f3c1046ba4b357711397765359cd18.html">gtx</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="summary">
<a href="#func-members">Functions</a> </div>
<div class="headertitle">
<div class="title">wrap.hpp File Reference</div> </div>
</div><!--header-->
<div class="contents">
<p><a class="el" href="a00236.html">GLM_GTX_wrap</a>
<a href="#details">More...</a></p>
<p><a href="a00139_source.html">Go to the source code of this file.</a></p>
<table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="func-members"></a>
Functions</h2></td></tr>
<tr class="memitem:ga6c0cc6bd1d67ea1008d2592e998bad33"><td class="memTemplParams" colspan="2">template<typename genType > </td></tr>
<tr class="memitem:ga6c0cc6bd1d67ea1008d2592e998bad33"><td class="memTemplItemLeft" align="right" valign="top">GLM_FUNC_DECL genType </td><td class="memTemplItemRight" valign="bottom"><a class="el" href="a00236.html#ga6c0cc6bd1d67ea1008d2592e998bad33">clamp</a> (genType const &Texcoord)</td></tr>
<tr class="memdesc:ga6c0cc6bd1d67ea1008d2592e998bad33"><td class="mdescLeft"> </td><td class="mdescRight">Simulate GL_CLAMP OpenGL wrap mode. <a href="a00236.html#ga6c0cc6bd1d67ea1008d2592e998bad33">More...</a><br /></td></tr>
<tr class="separator:ga6c0cc6bd1d67ea1008d2592e998bad33"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:gaa6856a0a048d2749252848da35e10c8b"><td class="memTemplParams" colspan="2">template<typename genType > </td></tr>
<tr class="memitem:gaa6856a0a048d2749252848da35e10c8b"><td class="memTemplItemLeft" align="right" valign="top">GLM_FUNC_DECL genType </td><td class="memTemplItemRight" valign="bottom"><a class="el" href="a00236.html#gaa6856a0a048d2749252848da35e10c8b">mirrorClamp</a> (genType const &Texcoord)</td></tr>
<tr class="memdesc:gaa6856a0a048d2749252848da35e10c8b"><td class="mdescLeft"> </td><td class="mdescRight">Simulate GL_MIRRORED_REPEAT OpenGL wrap mode. <a href="a00236.html#gaa6856a0a048d2749252848da35e10c8b">More...</a><br /></td></tr>
<tr class="separator:gaa6856a0a048d2749252848da35e10c8b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga16a89b0661b60d5bea85137bbae74d73"><td class="memTemplParams" colspan="2">template<typename genType > </td></tr>
<tr class="memitem:ga16a89b0661b60d5bea85137bbae74d73"><td class="memTemplItemLeft" align="right" valign="top">GLM_FUNC_DECL genType </td><td class="memTemplItemRight" valign="bottom"><a class="el" href="a00236.html#ga16a89b0661b60d5bea85137bbae74d73">mirrorRepeat</a> (genType const &Texcoord)</td></tr>
<tr class="memdesc:ga16a89b0661b60d5bea85137bbae74d73"><td class="mdescLeft"> </td><td class="mdescRight">Simulate GL_MIRROR_REPEAT OpenGL wrap mode. <a href="a00236.html#ga16a89b0661b60d5bea85137bbae74d73">More...</a><br /></td></tr>
<tr class="separator:ga16a89b0661b60d5bea85137bbae74d73"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga809650c6310ea7c42666e918c117fb6f"><td class="memTemplParams" colspan="2">template<typename genType > </td></tr>
<tr class="memitem:ga809650c6310ea7c42666e918c117fb6f"><td class="memTemplItemLeft" align="right" valign="top">GLM_FUNC_DECL genType </td><td class="memTemplItemRight" valign="bottom"><a class="el" href="a00236.html#ga809650c6310ea7c42666e918c117fb6f">repeat</a> (genType const &Texcoord)</td></tr>
<tr class="memdesc:ga809650c6310ea7c42666e918c117fb6f"><td class="mdescLeft"> </td><td class="mdescRight">Simulate GL_REPEAT OpenGL wrap mode. <a href="a00236.html#ga809650c6310ea7c42666e918c117fb6f">More...</a><br /></td></tr>
<tr class="separator:ga809650c6310ea7c42666e918c117fb6f"><td class="memSeparator" colspan="2"> </td></tr>
</table>
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
<div class="textblock"><p><a class="el" href="a00236.html">GLM_GTX_wrap</a> </p>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="a00155.html" title="The core of GLM, which implements exactly and only the GLSL specification to the degree possible...">GLM Core</a> (dependence) </dd></dl>
<p>Definition in file <a class="el" href="a00139_source.html">wrap.hpp</a>.</p>
</div></div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.10
</small></address>
</body>
</html>
|
src/chrome/os/linux/global/autocomplete.css
|
Lootyhoof/qute4pm
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
/* ===== autocomplete.css =================================================
== Styles used by the autocomplete widget.
======================================================================= */
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
@namespace html url("http://www.w3.org/1999/xhtml");
/* ::::: autocomplete popups ::::: */
panel[type="autocomplete"],
panel[type="autocomplete-richlistbox"],
.autocomplete-history-popup,
panel[type="private-autocomplete"],
panel[type="private-autocomplete-richlistbox"],
.private-autocomplete-history-popup {
-moz-appearance: none;
border: 1px solid ThreeDShadow;
padding: 0;
background: Menu;
color: MenuText;
}
/* ::::: tree ::::: */
.autocomplete-tree,
.private-autocomplete-tree {
color: MenuText;
}
/* ::::: richlistbox autocomplete ::::: */
.autocomplete-richlistbox,
.private-autocomplete-richlistbox {
-moz-appearance: none;
margin: 1px;
background-color: transparent;
}
.autocomplete-richlistitem[selected="true"],
.private-autocomplete-richlistitem[selected="true"] {
background-color: Highlight;
color: HighlightText;
}
.autocomplete-richlistitem,
.private-autocomplete-richlistitem {
padding: 6px 2px;
color: MenuText;
}
.ac-url-box {
margin-top: 1px;
}
.ac-site-icon {
width: 16px;
height: 16px;
margin-bottom: -2px;
margin-inline-start: 3px;
margin-inline-end: 6px;
}
.ac-type-icon {
width: 16px;
height: 16px;
margin-inline-start: 6px;
margin-inline-end: 4px;
}
.ac-extra > .ac-result-type-tag {
margin: 0 4px;
}
.ac-extra > .ac-comment {
padding-right: 4px;
}
.ac-ellipsis-after {
margin: 0 !important;
padding: 0;
min-width: 1em;
}
.ac-normal-text {
margin: 0 !important;
padding: 0;
}
.ac-normal-text > html|span {
margin: 0 !important;
padding: 0;
}
html|span.ac-emphasize-text {
box-shadow: inset 0 0 1px 1px rgba(0,0,0,0.1);
background-color: rgba(0,0,0,0.05);
border-radius: 2px;
text-shadow: 0 0 currentColor; /*faux bold effect*/
}
.ac-url-text > html|span.ac-emphasize-text,
.ac-action-text > html|span.ac-emphasize-text {
box-shadow: none;
}
.ac-normal-text[selected="true"] > html|span.ac-emphasize-text {
box-shadow: inset 0 0 1px 1px rgba(255,255,255,0.3);
background-color: rgba(255,255,255,0.2);
}
.ac-title, .ac-url {
overflow: hidden;
}
|
native_client_sdk/doc_generated/pepper_stable/c/ppb__graphics__2d_8h.html
|
ChromiumWebApps/chromium
|
{{+bindTo:partials.standard_nacl_article}}
<h1>ppb_graphics_2d.h File Reference</h1>
<div id="doxygen-ref">
{{- dummy div to appease doxygen -}}
<div>
<!-- Generated by Doxygen 1.7.6.1 -->
</div>
<!--header-->
<div class="contents">
<div class="textblock"><div class="dynheader">
Include dependency graph for ppb_graphics_2d.h:</div>
<div class="dyncontent">
<div class="center"><img src="ppb__graphics__2d_8h__incl.png" border="0" usemap="#ppb__graphics__2d_8h" alt="" /></div>
<map name="ppb__graphics__2d_8h" id="ppb__graphics__2d_8h">
</map>
</div>
</div><h2>
Data Structures</h2><table class="memberdecls">
<tr><td class="memItemLeft" align="right" valign="top">struct  </td><td class="memItemRight" valign="bottom"><a class="el" href="struct_p_p_b___graphics2_d__1__1.html">PPB_Graphics2D</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight"><code>PPB_Graphics2D</code> defines the interface for a 2D graphics context. <a href="struct_p_p_b___graphics2_d__1__1.html#details">More...</a><br /></td></tr>
</table><h2>
Defines</h2><table class="memberdecls">
<tr><td class="memItemLeft" align="right" valign="top">#define </td><td class="memItemRight" valign="bottom"><a class="el" href="ppb__graphics__2d_8h.html#ad9792b60ca6ce77f3925be8d60e06640">PPB_GRAPHICS_2D_INTERFACE</a>   "PPB_Graphics2D;1.1"</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">#define </td><td class="memItemRight" valign="bottom"><a class="el" href="ppb__graphics__2d_8h.html#ab4930fe7aea6b403503d5cc748824b0d">PPB_GRAPHICS_2D_INTERFACE</a>   <a class="el" href="ppb__graphics__2d_8h.html#ad9792b60ca6ce77f3925be8d60e06640">PPB_GRAPHICS_2D_INTERFACE</a></td></tr>
</table><h2>
Typedefs</h2><table class="memberdecls">
<tr><td class="memItemLeft" align="right" valign="top">typedef struct <a class="el" href="struct_p_p_b___graphics2_d__1__1.html">PPB_Graphics2D</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="group___interfaces.html#gaf9f8348d3315d8bb014b401f733ebdb6">PPB_Graphics2D</a></td></tr>
</table>
<hr /><a name="details" id="details"></a><h2>Detailed Description</h2>
<div class="textblock"><p>Defines the <code>PPB_Graphics2D</code> struct representing a 2D graphics context within the browser. </p>
</div><hr /><h2>Define Documentation</h2>
<a class="anchor" id="ab4930fe7aea6b403503d5cc748824b0d"></a><!-- doxytag: member="ppb_graphics_2d.h::PPB_GRAPHICS_2D_INTERFACE" ref="ab4930fe7aea6b403503d5cc748824b0d" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">#define <a class="el" href="ppb__graphics__2d_8h.html#ab4930fe7aea6b403503d5cc748824b0d">PPB_GRAPHICS_2D_INTERFACE</a>   <a class="el" href="ppb__graphics__2d_8h.html#ad9792b60ca6ce77f3925be8d60e06640">PPB_GRAPHICS_2D_INTERFACE</a></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="ad9792b60ca6ce77f3925be8d60e06640"></a><!-- doxytag: member="ppb_graphics_2d.h::PPB_GRAPHICS_2D_INTERFACE" ref="ad9792b60ca6ce77f3925be8d60e06640" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">#define <a class="el" href="ppb__graphics__2d_8h.html#ad9792b60ca6ce77f3925be8d60e06640">PPB_GRAPHICS_2D_INTERFACE</a>   "PPB_Graphics2D;1.1"</td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
</div><!-- contents -->
</div>
{{/partials.standard_nacl_article}}
|
windows/data/res/raw-es/loaderror.html
|
AlfredoBejarano/android-8
|
<html>
<head>
<title>Página web no disponible</title>
<style type="text/css">
body { margin-top: 0px; padding-top: 0px; }
h2 { margin-top: 5px; padding-top: 0px; }
</style>
<body>
<img src="file:///android_asset/webkit/android-weberror.png" align="top" />
<h2>Página web no disponible</h2>
<p>La página web <a href="%s">%s</a> no se ha podido cargar como:</p>
<!-- The %e is replaced by a localized error string -->
<p>%e</p>
</body>
</head>
</html>
|
mv2-archive/api/webview/capturevisibleregion/test.html
|
GoogleChrome/chrome-app-samples
|
<!DOCTYPE html>
<html>
<head>
<script src="test.js"></script>
<style type="text/css">
.ib {
position: relative;
display: inline-block;
}
.controls {
margin: 4px;
position: absolute;
right: 0px;
top: 0px;
}
</style>
</head>
<body bgColor='teal'>
<br>
<button id="add_wv">Add webview</button>
<button id="delete_wv">Delete webview</button>
<span><input type="checkbox" id="transparent" checked="checked"><label for="transparent">Transparent</label></span>
<br>
</body>
</html>
|
Iron Kingdoms RPG/IKPRG.css
|
Alanith/roll20-character-sheets
|
/*-----background-----*/
.charsheet {
background: black;
background-size:100%;
}
/*-----text colouring----*/
.sheet-plain {
text-shadow: none;
font-style:normal;
color:black;
font-weight:bold;
font-size:1em;
}
.sheet-Pictos {
font-family:"Pictos";
content: "j";
width: 14px;
height: 14px;
font-size: 1.5em;
display:inline;
color: #9C0606;
text-shadow: 0px 0px 2px white, 0px 0px 2px white, 0px 0px 2px white;
}
{
color: white;
text-shadow: 0px 0px 0.2em #6C3306;
}
table td {
color: white;
text-shadow: 0px 0px 0.2em #6C3306;
}
h1 {
color: #9C0606;
text-shadow: 0px 0px 0.2em white;
}
h2 {
color: #9C0606;
text-shadow: 0px 0px 0.2em white, 0px 0px 0.2em white;
}
h3 {
color: white;
text-shadow: 0px 0px 0.5em #6C3306;
}
h4 {
color: black;
text-shadow: 0px 0px 2px white, 0px 0px 2px white, 0px 0px 2px white;
}
h4.sheet-physfont {
color: blue;
text-shadow: 0px 0px 2px white, 0px 0px 2px white, 0px 0px 2px white;
font-variant: small-caps;
font-size:1.3em;
}
h4.sheet-aglfont {
color: red;
text-shadow: 0px 0px 2px white, 0px 0px 2px white, 0px 0px 2px white;
font-variant: small-caps;
font-size:1.3em;
}
h4.sheet-intfont {
color: green;
text-shadow: 0px 0px 2px white, 0px 0px 2px white, 0px 0px 2px white;
font-variant: small-caps;
font-size:1.3em;
}
h5 {
color: white;
text-shadow: 0px 0px 0.2em #6C3306;
}
h5.sheet-black {
color: black;
background: rgba(255,255,192,0.65);
border:none;
box-shadow:none;
font-weight: bold;
color: black;
text-shadow:none;
border-radius:20px;
padding-left:10px;
padding-right:10px;
}
.sheet-stats-base {
background:transparent;
text-align: center;
font-size: 1.5em;
font-weight: bold;
font-style: italic;
border:none;
text-shadow: 0px 0px 0.2em white, 0px 0px 0.2em white, 0px 0px 0.2em white;
color:black;
}
.sheet-stats-base::-webkit-input-placeholder {
padding-top:3px;
}
.sheet-stats-small {
background:transparent;
text-align: center;
font-size: 1.2em;
font-weight: bold;
font-style: italic;
border:none;
text-shadow: 0px 0px 0.1em white;
color:black;
}
.sheet-stats-big {
background:transparent;
text-align: center;
font-size: 2.0em;
font-weight: bold;
font-style: italic;
border:none;
text-shadow: 0px 0px 0.2em white;
color:black;
}
.sheet-stats-big::-webkit-input-placeholder {
padding-top:5px;
}
.sheet-clearbox {
background:transparent;
border-top: none;
border-left: none;
border-right: none;
border-bottom: 1px dotted white;
font-style: italic;
color: white;
text-shadow: 0px 0px 0.2em #6C3306;
}
.sheet-blackfont {
color: black;
}
.sheet-skill-base input[type="number"],
.sheet-skill-base input[type="text"] {
text-align: center;
background:transparent;
border-top: none;
border-left: none;
border-right: none;
border-bottom: 1px dotted white;
color: white;
text-shadow: 0px 0px 0.2em #6C3306;
}
.sheet-blue {
color: blue;
}
.sheet-red {
color: red;
}
.sheet-green {
color: green;
}
.sheet-general {
color: white;
text-shadow: 0px 0px 0.2em #6C3306;
font-style:italic;
}
textarea {
height: 36px;
margin: 5px 0px 0px 0px;
resize:vertical;
overflow-y:hidden;
}
/*----removing spinner on numbers----*/
input.sheet-stats-base::-webkit-outer-spin-button ,
input.sheet-stats-base::-webkit-inner-spin-button {
/* display: none; <- Crashes Chrome on hover */
-webkit-appearance: none;
margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}
.sheet-input-center-aligned {
background: -moz-radial-gradient(center, ellipse cover, rgba(255,255,192,0.65) 0%, rgba(255,255,192,0.65) 9%, rgba(255,255,192,0.65) 39%, rgba(255,255,192,0) 100%); /* FF3.6+ */
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(255,255,192,0.65)), color-stop(9%,rgba(255,255,192,0.65)), color-stop(39%,rgba(255,255,192,0.65)), color-stop(100%,rgba(255,255,192,0))); /* Chrome,Safari4+ */
background: -webkit-radial-gradient(center, ellipse cover, rgba(255,255,192,0.65) 0%,rgba(255,255,192,0.65) 9%,rgba(255,255,192,0.65) 39%,rgba(255,255,192,0) 100%); /* Chrome10+,Safari5.1+ */
background: -o-radial-gradient(center, ellipse cover, rgba(255,255,192,0.65) 0%,rgba(255,255,192,0.65) 9%,rgba(255,255,192,0.65) 39%,rgba(255,255,192,0) 100%); /* Opera 12+ */
background: -ms-radial-gradient(center, ellipse cover, rgba(255,255,192,0.65) 0%,rgba(255,255,192,0.65) 9%,rgba(255,255,192,0.65) 39%,rgba(255,255,192,0) 100%); /* IE10+ */
background: radial-gradient(ellipse at center, rgba(255,255,192,0.65) 0%,rgba(255,255,192,0.65) 9%,rgba(255,255,192,0.65) 39%,rgba(255,255,192,0) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a6ffffc0', endColorstr='#00ffffc0',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
border:none;
box-shadow:none;
font-weight: bold;
color: black;
}
.sheet-input-center-aligned[type="number"] {
text-align:center;
}
select.sheet-input-center-aligned {
-webkit-appearance: none;
padding-top:0px;
padding-right:0px;
appearance: none;
}
.sheet-input-center-aligned::-webkit-input-placeholder {
color:#D2B48C;
font-style: italic;
font-weight:400;
text-shadow: 0px 0px 2px black;
}
/*========== tabs ==========*/
input.sheet-tab1:not(:checked) ~ .sheet-tab1,
input.sheet-tab2:not(:checked) ~ .sheet-tab2,
input.sheet-tab3:not(:checked) ~ .sheet-tab3,
input.sheet-tab4:not(:checked) ~ .sheet-tab4,
input.sheet-tab5:not(:checked) ~ .sheet-tab5,
input.sheet-tab6:not(:checked) ~ .sheet-tab6,
input.sheet-tab7:not(:checked) ~ .sheet-tab7,
input.sheet-tab8:not(:checked) ~ .sheet-tab8,
input.sheet-tab9:not(:checked) ~ .sheet-tab9,
input.sheet-tab10:not(:checked) ~ .sheet-tab10,
input.sheet-tab11:not(:checked) ~ .sheet-tab11 {
display: none;
}
input.sheet-tab {
width: calc(20% - 4px);
max-width: 150px;
height: 20px;
outline: none !important;
position: relative;
cursor: pointer;
z-index: 1;
}
input.sheet-tab1 {
margin-left: 1px;
}
input.sheet-tab::before {
content: attr(title);
display: inline-block;
background-image: url("http://www.androidcentral.com/sites/androidcentral.com/files/styles/w550h500/public/wallpapers/blank-parchment-aps.jpg?itok=flcYf3mT");
border: solid 2px black;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
font-size: 14px;
font-weight: bold;
text-align: center;
width: 100%;
height: 20px;
color:black;
text-shadow: 0px 0px 2px white;
}
input.sheet-tab:checked::before {
border: solid 2px black;
background-image: url ('http://fc06.deviantart.net/fs71/f/2011/359/1/3/steampunk_wallpaper_by_satyrgod-d4k5ar3.jpg');
color: white;
text-shadow: 0px 0px 2px black;
}
.sheet-tab-content {
background-image: url ('http://fc06.deviantart.net/fs71/f/2011/359/1/3/steampunk_wallpaper_by_satyrgod-d4k5ar3.jpg');
}
.sheet-tab-br {
margin-bottom: 4px;
margin-top: 1px;
}
div.sheet-body {
display: none;
}
/*-----misc-----*/
.sheet-hidden {
display: none;
}
.sheet-center {
text-align: center;
}
.sheet-left {
text-align: left;
}
.sheet-right {
text-align: right;
}
.sheet-select {
margin-bottom: 0
}
/*==========feat number button==========*/
div.sheet-feat {
width: 195px;
height: 30px;
position: relative;
}
input.sheet-feat {
margin: 20px 0 0 50px;
opacity: 00;
width: 80px;
height: 80px;
position: absolute;
z-index: 1;
}
span.sheet-feat {
margin: 10px 0 0 40px;
display: none;
}
input.sheet-zerofeat { z-index: 2; }
input.sheet-zerofeat:checked + input.sheet-onefeat,
input.sheet-onefeat:checked + input.sheet-twofeat,
input.sheet-twofeat:checked + input.sheet-threefeat { z-index: 3; }
input.sheet-zerofeat:checked ~ span.sheet-zerofeat,
input.sheet-onefeat:checked ~ span.sheet-onefeat,
input.sheet-twofeat:checked ~ span.sheet-twofeat,
input.sheet-threefeat:checked ~ span.sheet-threefeat { display: inline-block; }
.sheet-zerofeat
{
width: 100px;
height: 100px;
background: url("http://cdn.mysitemyway.com/etc-mysitemyway/icons/legacy-previews/icons/abstract-red-and-gold-paint-splatter-icons-alphanumeric/068225-abstract-red-and-gold-paint-splatter-icon-alphanumeric-m00-clear.png") no-repeat 0 0;
background-size: 100%;
}
.sheet-onefeat
{
width: 100px;
height: 100px;
background: url("http://cdn.mysitemyway.com/etc-mysitemyway/icons/legacy-previews/icons/abstract-red-and-gold-paint-splatter-icons-alphanumeric/068226-abstract-red-and-gold-paint-splatter-icon-alphanumeric-m01-clear.png") no-repeat 0 0;
background-size: 100%;
}
.sheet-twofeat
{
width: 100px;
height: 100px;
background: url("http://cdn.mysitemyway.com/etc-mysitemyway/icons/legacy-previews/icons/abstract-red-and-gold-paint-splatter-icons-alphanumeric/068227-abstract-red-and-gold-paint-splatter-icon-alphanumeric-m02-clear.png") no-repeat 0 0;
background-size: 100%;
}
.sheet-threefeat
{
width: 100px;
height: 100px;
background: url("http://cdn.mysitemyway.com/etc-mysitemyway/icons/legacy-previews/icons/abstract-red-and-gold-paint-splatter-icons-alphanumeric/068228-abstract-red-and-gold-paint-splatter-icon-alphanumeric-m03-clear.png") no-repeat 0 0;
background-size: 100%;
}
/*========== sheet arrow ==========*/
/* ----Hide actual sheet-arrow checkbox---- */
input.sheet-arrow[type="checkbox"] {
opacity: 0;
width: 16px;
height: 16px;
position: relative;
top: 5px;
left: 6px;
margin: -10px;
cursor: pointer;
z-index: 1;
}
/* -----Fake sheet-arrow checkbox----- */
input.sheet-arrow[type="checkbox"] + span::before
{
margin-right: 4px;
line-height: 14px;
text-align: center;
display: inline-block;
vertical-align: middle;
float: left;
content: "►";
width: 14px;
height: 14px;
font-size: 12px;
}
input.sheet-arrow[type="checkbox"]:checked + span::before {
content: "▼";
}
/* -----Hiding areas with sheet-arrow ----- */
input.sheet-arrow {
float: left;
}
input.sheet-arrow:checked ~ div.sheet-body {
display: block;
}
/*========== sheet gear ==========*/
/* ----Hide actual sheet-gear checkbox---- */
input.sheet-gear[type="checkbox"] {
opacity: 0;
width: 20px;
height: 20px;
position: relative;
top: 7px;
left: 28px;
margin: -10px;
cursor: pointer;
z-index: 1;
}
/* -----Fake sheet-gear checkbox----- */
input.sheet-gear[type="checkbox"] + span::before
{
margin-right: 4px;
margin-left:20px;
line-height: 14px;
text-align: center;
display: inline-block;
vertical-align: middle;
float: left;
font-family:"Pictos";
content: "y";
width: 14px;
height: 14px;
font-size: 16px;
color:silver;
text-shadow: 0px 0px 2px black,0px 0px 2px black,0px 0px 2px black;
}
input.sheet-gear[type="checkbox"]:checked + span::before {
color: black;
text-shadow: 0px 0px 2px silver,0px 0px 2px silver,0px 0px 2px silver;
}
/* -----Hiding areas with sheet-gear ----- */
input.sheet-gear {
float: left;
}
input.sheet-gear:checked ~ div.sheet-body {
display: block;
}
/*========== sheet sign ==========*/
/* ----Hide actual sheet-sign checkbox---- */
input.sheet-sign[type="checkbox"] {
opacity: 0;
width: 20px;
height: 20px;
position: relative;
top: 7px;
left: 08px;
margin: -10px;
cursor: pointer;
z-index: 1;
}
/* -----Fake sheet-sign checkbox----- */
input.sheet-sign[type="checkbox"] + span::before
{
margin-right: 4px;
margin-left:00px;
line-height: 14px;
text-align: center;
display: inline-block;
vertical-align: middle;
float: left;
font-family:"Pictos";
content: "h";
width: 14px;
height: 14px;
font-size: 16px;
color:silver;
text-shadow: 0px 0px 2px black,0px 0px 2px black,0px 0px 2px black;
}
input.sheet-sign[type="checkbox"]:checked + span::before {
color: black;
text-shadow: 0px 0px 2px silver,0px 0px 2px silver,0px 0px 2px silver;
}
/* -----Hiding areas with sheet-sign ----- */
input.sheet-sign {
float: left;
}
input.sheet-sign:checked ~ div.sheet-body {
display: block;
}
/*========== Big Checkbox ==========*/
/* ----Hide actual Big Checkbox---- */
input.sheet-bigcheck[type="checkbox"] {
opacity: 0;
width: 16px;
height: 16px;
position: relative;
top: 5px;
left: 6px;
margin: -10px;
cursor: pointer;
z-index: 1;
}
/* ----Fake Big Checkbox ---- */
input.sheet-bigcheck[type="checkbox"] + span::before {
margin-right: 4px;
line-height: 14px;
text-align: center;
display: inline-block;
vertical-align: middle;
-moz-box-shadow: 0 0 2px #ccc;
-webkit-box-shadow: 0 0 2px #ccc;
box-shadow: 0 0 2px #ccc;
background: -moz-radial-gradient(center, ellipse cover, rgba(255,255,192,0.65) 0%, rgba(255,255,192,0.65) 9%, rgba(255,255,192,0.65) 39%, rgba(255,255,192,0) 100%); /* FF3.6+ */
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(255,255,192,0.65)), color-stop(9%,rgba(255,255,192,0.65)), color-stop(39%,rgba(255,255,192,0.65)), color-stop(100%,rgba(255,255,192,0))); /* Chrome,Safari4+ */
background: -webkit-radial-gradient(center, ellipse cover, rgba(255,255,192,0.65) 0%,rgba(255,255,192,0.65) 9%,rgba(255,255,192,0.65) 39%,rgba(255,255,192,0) 100%); /* Chrome10+,Safari5.1+ */
background: -o-radial-gradient(center, ellipse cover, rgba(255,255,192,0.65) 0%,rgba(255,255,192,0.65) 9%,rgba(255,255,192,0.65) 39%,rgba(255,255,192,0) 100%); /* Opera 12+ */
background: -ms-radial-gradient(center, ellipse cover, rgba(255,255,192,0.65) 0%,rgba(255,255,192,0.65) 9%,rgba(255,255,192,0.65) 39%,rgba(255,255,192,0) 100%); /* IE10+ */
background: radial-gradient(ellipse at center, rgba(255,255,192,0.65) 0%,rgba(255,255,192,0.65) 9%,rgba(255,255,192,0.65) 39%,rgba(255,255,192,0) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a6ffffc0', endColorstr='#00ffffc0',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}
input.sheet-bigcheck[type="checkbox"] + span::before {
content: "";
width: 14px;
height: 14px;
font-size: 12px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
}
input.sheet-bigcheck[type="checkbox"]:checked + span::before {
color: red;
content: "✓";
text-shadow:none;
font-weight:bold;
}
/*========== AJ Checkbox ==========*/
/* ----Hide actual AJ Checkbox---- */
input.sheet-aj[type="checkbox"] {
opacity: 0;
margin-right: 10px;
width: 16px;
height: 16px;
position: relative;
top: 0px;
left: 12px;
margin: -10px;
cursor: pointer;
z-index: 1;
}
/* ----Fake Big Checkbox ---- */
input.sheet-aj[type="checkbox"] + span::before {
margin-right: 10px;
margin-left: 5px;
line-height: 14px;
text-align: center;
display: inline-block;
vertical-align: middle;
-moz-box-shadow: 0 0 2px #ccc;
-webkit-box-shadow: 0 0 2px #ccc;
box-shadow: 0 0 2px #ccc;
background:transparent;
}
input.sheet-aj[type="checkbox"] + span::before {
font-family:"Pictos";
content: "j";
width: 14px;
height: 14px;
font-size: 1.5em;
}
input.sheet-aj[type="checkbox"]:checked + span::before {
color: #9C0606;
font-family:"Pictos";
content: "A";
font-weight:bold;
}
/*==========jack damage grid==========*/
div.sheet-jackbox {
width: 20px;
height: 20px;
position: relative;
}
input.sheet-jackbox {
margin: 10px 0 0 00px;
opacity: 00;
width: 20px;
height: 20px;
position: absolute;
z-index: 1;
}
span.sheet-jackbox {
margin: 10px 0 0 00px;
display: none;
}
input.sheet-blackbox { z-index: 2; }
input.sheet-blackbox:checked + input.sheet-whitebox,
input.sheet-whitebox:checked + input.sheet-redbox { z-index: 3; }
input.sheet-blackbox:checked ~ span.sheet-blackbox,
input.sheet-whitebox:checked ~ span.sheet-whitebox,
input.sheet-redbox:checked ~ span.sheet-redbox { display: inline-block; }
.sheet-blackbox {
width: 20px;
height: 20px;
background: url("http://previews.123rf.com/images/neillang/neillang0902/neillang090200066/4348570-barbed-wire-black-square-frame-border-with-black-blank-middle-for-your-own-design.jpg") no-repeat 0 0;
background-size: 100%;
}
.sheet-whitebox {
width: 20px;
height: 20px;
background: url("http://previews.123rf.com/images/ktarrier/ktarrier0903/ktarrier090300029/4499609-a-grunge-square-border-in-black-and-white-border-rock.jpg") no-repeat 0 0;
background-size: 100%;
}
.sheet-redbox {
width: 20px;
height: 20px;
background: url("http://www.iconpng.com/png/vista-software/red-x.png") no-repeat 0 0;
background-size: 100%;
}
.sheet-grid {
margin-bottom: 25px;
}
/*========== character damage grid ==========*/
/*-------phybox---------*/
div.sheet-phybox {
width: 30px;
height: 30px;
position: relative;
}
input.sheet-phybox {
margin: 00px 0 0 00px;
opacity: 00;
width: 30px;
height: 30px;
position: absolute;
z-index: 1;
}
span.sheet-phybox {
margin: 00px 0 0 00px;
display: none;
}
input.sheet-blackdot { z-index: 2; }
input.sheet-blackdot:checked + input.sheet-bluedot,
input.sheet-bluedot:checked + input.sheet-xdot { z-index: 3; }
input.sheet-blackdot:checked ~ span.sheet-blackdot,
input.sheet-bluedot:checked ~ span.sheet-bluedot,
input.sheet-xdot:checked ~ span.sheet-xdot { display: inline-block; }
.sheet-blackdot {
width: 30px;
height: 30px;
background: url("http://limpiatureputacion.es/wp-content/uploads/2013/09/ink.png") no-repeat 0 0;
background-size: 100%;
-webkit-filter: drop-shadow(0px 0px 5px blue);
}
.sheet-bluedot {
width: 30px;
height: 30px;
background: url("http://freshcoattn.com/images/paint-splash.gif") no-repeat 0 0;
background-size: 100%;
-webkit-filter: drop-shadow(0px 0px 5px black);
}
.sheet-xdot {
width: 30px;
height: 30px;
background: url("http://www.iconpng.com/png/vista-software/red-x.png") no-repeat 0 0;
background-size: 100%;
-webkit-filter: drop-shadow(0px 0px 5px black);
}
/* ======== Sheet-physboxlast to hide things========*/
input.sheet-physboxlast[type="checkbox"], .sheet-physboxlast
{
opacity: 0;
width: 20px;
height: 20px;
position: relative;
top: 5px;
left: 18px;
cursor: pointer;
z-index: 1;
margin-bottom: 0px;
border: none;
-moz-box-shadow: none;
-webkit-box-shadow: none;
box-shadow: none;
-moz-border-radius: none;
-webkit-border-radius: none;
border-radius: none;
}
input.sheet-physboxlast[type="checkbox"] + span::before
{
line-height: 14px;
text-align: center;
display: inline-block;
vertical-align: middle;
background:transparent;
position: relative;
top: 18px;
left: -18px;
border: none;
-moz-box-shadow: none;
-webkit-box-shadow: none;
box-shadow: none;
-moz-border-radius: 7px;
-webkit-border-radius: 7px;
border-radius: 7px;
width: 14px;
height: 14px;
font-size: 12px;
}
input.sheet-physboxlast[type="checkbox"] + span::before
{
position: relative;
left:-28px;
top:-15px;
content: url("http://freshcoattn.com/images/paint-splash.gif");
-ms-transform: scale(0.35); /* IE */
-moz-transform: scale(0.35); /* FF */
-webkit-transform: scale(0.35); /* Safari and Chrome */
-o-transform: scale(0.35); /* Opera */
padding: 10px;
}
input.sheet-physboxlast[type="checkbox"]:checked + span::before
{
position: relative;
left:-28px;
top:-15px;
content: url("http://www.iconpng.com/png/vista-software/red-x.png") no-repeat 0 0;
-ms-transform: scale(0.14); /* IE */
-moz-transform: scale(0.14); /* FF */
-webkit-transform: scale(0.14); /* Safari and Chrome */
-o-transform: scale(0.14); /* Opera */
padding: 10px;
}
/*-------aglbox---------*/
div.sheet-aglbox {
width: 30px;
height: 30px;
position: relative;
}
input.sheet-aglbox {
margin: 00px 0 0 00px;
opacity: 00;
width: 30px;
height: 30px;
position: absolute;
z-index: 1;
}
span.sheet-aglbox {
margin: 00px 0 0 00px;
display: none;
}
input.sheet-blackdota { z-index: 2; }
input.sheet-blackdota:checked + input.sheet-reddot,
input.sheet-reddot:checked + input.sheet-xdota { z-index: 3; }
input.sheet-blackdota:checked ~ span.sheet-blackdota,
input.sheet-reddot:checked ~ span.sheet-reddot,
input.sheet-xdota:checked ~ span.sheet-xdota { display: inline-block; }
.sheet-blackdota {
width: 30px;
height: 30px;
background: url("http://limpiatureputacion.es/wp-content/uploads/2013/09/ink.png") no-repeat 0 0;
background-size: 100%;
-webkit-filter: drop-shadow(0px 0px 5px red);
}
.sheet-reddot {
width: 30px;
height: 30px;
background: url("http://fuckersattitude.free.fr/Upload/taz/TutoCrystal/02/TachePeinture.png") no-repeat 0 0;
background-size: 100%;
-webkit-filter: drop-shadow(0px 0px 10px white);
}
.sheet-xdota {
width: 30px;
height: 30px;
background: url("http://www.iconpng.com/png/vista-software/red-x.png") no-repeat 0 0;
background-size: 100%;
-webkit-filter: drop-shadow(0px 0px 5px black);
}
/* ======== Sheet-aglboxlast to hide things========*/
input.sheet-aglboxlast[type="checkbox"], .sheet-aglboxlast
{
opacity: 0;
width: 20px;
height: 20px;
position: relative;
top: 5px;
left: 18px;
cursor: pointer;
z-index: 1;
margin-bottom: 0px;
border: none;
-moz-box-shadow: none;
-webkit-box-shadow: none;
box-shadow: none;
-moz-border-radius: none;
-webkit-border-radius: none;
border-radius: none;
}
input.sheet-aglboxlast[type="checkbox"] + span::before
{
line-height: 14px;
text-align: center;
display: inline-block;
vertical-align: middle;
background:transparent;
position: relative;
top: 18px;
left: -18px;
border: none;
-moz-box-shadow: none;
-webkit-box-shadow: none;
box-shadow: none;
-moz-border-radius: 7px;
-webkit-border-radius: 7px;
border-radius: 7px;
width: 14px;
height: 14px;
font-size: 12px;
}
input.sheet-aglboxlast[type="checkbox"] + span::before
{
position: relative;
left:-35px;
top:-15px;
content: url("http://fuckersattitude.free.fr/Upload/taz/TutoCrystal/02/TachePeinture.png");
-ms-transform: scale(0.14); /* IE */
-moz-transform: scale(0.14); /* FF */
-webkit-transform: scale(0.14); /* Safari and Chrome */
-o-transform: scale(0.14); /* Opera */
padding: 10px;
}
input.sheet-aglboxlast[type="checkbox"]:checked + span::before
{
position: relative;
left:-28px;
top:-15px;
content: url("http://www.iconpng.com/png/vista-software/red-x.png") no-repeat 0 0;
-ms-transform: scale(0.15); /* IE */
-moz-transform: scale(0.15); /* FF */
-webkit-transform: scale(0.15); /* Safari and Chrome */
-o-transform: scale(0.15); /* Opera */
padding: 10px;
}
/*-------intbox---------*/
div.sheet-intbox {
width: 30px;
height: 30px;
position: relative;
}
input.sheet-intbox {
margin: 00px 0 0 00px;
opacity: 00;
width: 30px;
height: 30px;
position: absolute;
z-index: 1;
}
span.sheet-intbox {
margin: 00px 0 0 00px;
display: none;
}
input.sheet-blackdoti { z-index: 2; }
input.sheet-blackdoti:checked + input.sheet-gredot,
input.sheet-gredot:checked + input.sheet-xdoti { z-index: 3; }
input.sheet-blackdoti:checked ~ span.sheet-blackdoti,
input.sheet-gredot:checked ~ span.sheet-gredot,
input.sheet-xdoti:checked ~ span.sheet-xdoti { display: inline-block; }
.sheet-blackdoti {
width: 30px;
height: 30px;
background: url("http://limpiatureputacion.es/wp-content/uploads/2013/09/ink.png") no-repeat 0 0;
background-size: 100%;
-webkit-filter: drop-shadow(0px 0px 5px green);
}
.sheet-gredot {
width: 30px;
height: 30px;
background: url("http://www.pitterpainterhk.com/communities/8/004/011/713/408//images/4589728358.gif") no-repeat 0 0;
background-size: 100%;
-webkit-filter: drop-shadow(0px 0px 5px black);
}
.sheet-xdoti {
width: 30px;
height: 30px;
background: url("http://www.iconpng.com/png/vista-software/red-x.png") no-repeat 0 0;
background-size: 100%;
-webkit-filter: drop-shadow(0px 0px 5px black);
}
/* ======== Sheet-intboxlast ========*/
input.sheet-intboxlast[type="checkbox"], .sheet-intboxlast
{
opacity: 0;
width: 20px;
height: 20px;
position: relative;
top: 5px;
left: 18px;
cursor: pointer;
z-index: 1;
margin-bottom: 0px;
border: none;
-moz-box-shadow: none;
-webkit-box-shadow: none;
box-shadow: none;
-moz-border-radius: none;
-webkit-border-radius: none;
border-radius: none;
}
input.sheet-intboxlast[type="checkbox"] + span::before
{
line-height: 14px;
text-align: center;
display: inline-block;
vertical-align: middle;
background:transparent;
position: relative;
top: 18px;
border: none;
-moz-box-shadow: none;
-webkit-box-shadow: none;
box-shadow: none;
-moz-border-radius: 7px;
-webkit-border-radius: 7px;
border-radius: 7px;
width: 14px;
height: 14px;
font-size: 12px;
}
input.sheet-intboxlast[type="checkbox"] + span::before
{
position: relative;
left:-28px;
top:-12px;
content: url("http://www.pitterpainterhk.com/communities/8/004/011/713/408//images/4589728358.gif");
-ms-transform: scale(0.0155); /* IE */
-moz-transform: scale(0.0155); /* FF */
-webkit-transform: scale(0.0155); /* Safari and Chrome */
-o-transform: scale(0.0155); /* Opera */
padding: 10px;
}
input.sheet-intboxlast[type="checkbox"]:checked + span::before
{
position: relative;
left:-30px;
top:-15px;
content: url("http://www.iconpng.com/png/vista-software/red-x.png") no-repeat 0 0;
-ms-transform: scale(0.15); /* IE */
-moz-transform: scale(0.15); /* FF */
-webkit-transform: scale(0.15); /* Safari and Chrome */
-o-transform: scale(0.15); /* Opera */
padding: 10px;
}
/*-------powerfield box---------*/
div.sheet-powerfieldbox {
width: 20px;
height: 20px;
position: relative;
}
input.sheet-powerfieldbox {
margin: 00px 0 0 00px;
opacity: 00;
width: 20px;
height: 20px;
position: absolute;
z-index: 1;
}
span.sheet-powerfieldbox {
margin: 00px 0 0 00px;
display: none;
}
input.sheet-powerfield_off { z-index: 2; }
input.sheet-powerfield_off:checked + input.sheet-powerfield_on,
input.sheet-powerfield_on:checked + input.sheet-powerfield_empty { z-index: 3; }
input.sheet-powerfield_off:checked ~ span.sheet-powerfield_off,
input.sheet-powerfield_on:checked ~ span.sheet-powerfield_on,
input.sheet-powerfield_empty:checked ~ span.sheet-powerfield_empty { display: inline-block; }
.sheet-powerfield_empty {
width: 20px;
height: 20px;
background: url("http://40.media.tumblr.com/80a7794633d6315a7ab367b57e7ab968/tumblr_mwau0fOk961qecbloo1_1280.png") no-repeat 0 0;
background-size: 100%;
-webkit-filter: drop-shadow(0px 0px 5px blue);
}
.sheet-powerfield_on {
width: 20px;
height: 20px;
background: url("http://upload.wikimedia.org/wikipedia/commons/1/17/Ski_trail_rating_symbol_blue_circle.png") no-repeat 0 0;
background-size: 100%;
-webkit-filter: drop-shadow(0px 0px 5px black);
}
.sheet-powerfield_off {
width: 20px;
height: 20px;
background: url("http://i.stack.imgur.com/LOhIq.png") no-repeat 0 0;
background-size: 100%;
-webkit-filter: drop-shadow(0px 0px 5px black);
}
table.sheet-table_center {
margin-left:auto;
margin-right:auto;
}
/*========== Virtuoso ==========*/
/*-----virtioso colouring----*/
div.sheet-virtioso {
color: Chartreuse;
font-weight: bold;
}
/*----Virtioso button----*/
button[type="roll"].sheet-virtioso_button:before {
content: ""!important;
display: none;
}
.sheet-virtioso_button {
height:24px;
width:24px;
border:none;
-webkit-border-radius: 15px;
-moz-border-radius: 15px;
border-radius: 15px;
background: radial-gradient(circle at 8px 8px, Chartreuse, black);
box-shadow: 0px 0px 3px black;
}
.sheet-virtioso_button:hover {
background: radial-gradient(circle at 16px 16px, Chartreuse, black);
box-shadow: 0px 0px 3px blue;
}
.sheet-virtioso_button:active {
background: radial-gradient(circle at 8px 8px, Chartreuse, black);
}
/*==========Combat Caster button==========*/
button[type="roll"].sheet-combatcaster_button:before {
content: ""!important;
display: none;
}
.sheet-combatcaster_button {
height:24px;
width:24px;
border:none;
-webkit-border-radius: 15px;
-moz-border-radius: 15px;
border-radius: 15px;
color:Chartreuse;
font-weight:700;
background: radial-gradient(circle at 8px 8px, silver, black);
box-shadow: 0px 0px 3px black;
}
.sheet-combatcaster_button:hover {
background: radial-gradient(circle at 16px 16px, blue, black);
box-shadow: 0px 0px 3px blue;
}
.sheet-combatcaster_button:active {
background: radial-gradient(circle at 8px 8px, blue, black);
}
/*==========Button Reset==========*/
/*================================*/
/*================================*/
.sheet-wrapper button[type="roll"]:before {
content: ""!important;
display: none;
}
.sheet-wrapper button[type="roll"],
.sheet-wrapper .sheet-roll {
width: 100%;
height:24px;
vertical-align: middle;
display: inline-block;
margin: 0;
font-weight: 700;
text-align: left;
vertical-align: middle;
cursor: pointer;
background-image: none;
background-color: transparent;
border: 2px solid transparent /* 1px solid black */;
border-style: outset;
padding: 2px;
padding-left:2px;
font-size: 1em;
color: white;
text-shadow: 0px 0px 0.2em #6C3306;
white-space: nowrap;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
}
.sheet-wrapper button[type="roll"]:hover {
border: 2px inset gray;
padding-left:4px;
padding-top:4px;
padding-right:0px;
padding-bottom:0px;
}
.sheet-wrapper button[type="roll"]:active {
border: 2px solid black;
}
.sheet-wrapper button[type="roll"] label,
.sheet-wrapper button[type="roll"] input {
height:24px;
line-height: 24px;
font-size: 1em;
vertical-align: middle;
text-align:center;
width: 99%;
cursor: pointer;
background: none;
box-shadow: none;
transition: none;
border-radius: none;
border:none;
font-weight:700;
}
.sheet-wrapper .sheet-physstat button[type="roll"],
.sheet-wrapper .sheet-physstat button[type="roll"]label,
.sheet-wrapper .sheet-physstat button[type="roll"]input {
color: blue;
border: 2px solid blue;
}
.sheet-wrapper .sheet-physstat button[type="roll"]:hover,
.sheet-wrapper .sheet-physstat button[type="roll"]:hover label,
.sheet-wrapper .sheet-physstat button[type="roll"]:hover input {
color: blue;
border: 2px inset blue;
}
.sheet-wrapper .sheet-aglstat button[type="roll"],
.sheet-wrapper .sheet-aglstat button[type="roll"]label,
.sheet-wrapper .sheet-aglstat button[type="roll"]input {
color: red;
border: 2px solid transparent;
}
.sheet-wrapper .sheet-aglstat button[type="roll"]:hover,
.sheet-wrapper .sheet-aglstat button[type="roll"]:hover label,
.sheet-wrapper .sheet-aglstat button[type="roll"]:hover input {
color: red;
border: 2px inset red;
}
.sheet-wrapper .sheet-intstat button[type="roll"],
.sheet-wrapper .sheet-intstat button[type="roll"] label,
.sheet-wrapper .sheet-intstat button[type="roll"] input {
color: green;
border: 2px solid transparent;
}
.sheet-wrapper .sheet-intstat button[type="roll"]:hover,
.sheet-wrapper .sheet-intstat button[type="roll"]:hover label,
.sheet-wrapper .sheet-intstat button[type="roll"]:hover input {
color: green;
border: 2px inset green;
}
/* ================Tooltips ================ */
button[type="roll"].sheet-skill_button:before {
content: ""!important;
display: none;
}
.sheet-skill_button {
height:21px;
width:21px;
border:none;
-webkit-border-radius: 15px;
-moz-border-radius: 15px;
border-radius: 15px;
background: radial-gradient(circle at 8px 8px, white, black 50%);
box-shadow: 0px 0px 2px white;
}
.sheet-skill_button:hover {
background: radial-gradient(circle at 12px 12px, white, black 50%);
}
.sheet-skill_button:active {
background: radial-gradient(circle at 8px 8px, silver, black 50%);
}
/* ================Tooltips ================ */
.sheet-tooltips {
position: relative;
display: inline;
}
.sheet-tooltips span {
position: absolute;
width:200px;
color: #000000;
background: #FFFFFF;
border: 2px solid #000000;
line-height: 20px;
text-align: center;
visibility: hidden;
border-radius: 6px;
box-shadow: -2px -2px 5px #000000;
font-size:0.7em;
}
.sheet-tooltips span:before {
content: '';
position: absolute;
top: 50%;
right: 100%;
margin-top: -12px;
width: 0; height: 0;
border-right: 12px solid #000000;
border-top: 12px solid transparent;
border-bottom: 12px solid transparent;
}
.sheet-tooltips span:after {
content: '';
position: absolute;
top: 50%;
right: 100%;
margin-top: -8px;
width: 0; height: 0;
border-right: 8px solid #FFFFFF;
border-top: 8px solid transparent;
border-bottom: 8px solid transparent;
}
:hover.sheet-tooltips span {
visibility: visible;
opacity: 1;
left: 100%;
top: 50%;
margin-top: -35px;
margin-left: 15px;
z-index: 999;
}
/*==== Tooltip left====*/
.sheet-tooltips-left {
position: relative;
display: inline;
}
.sheet-tooltips-left span {
position: absolute;
width:200px;
color: #000000;
background: #FFFFFF;
border: 2px solid #000000;
line-height: 20px;
text-align: center;
visibility: hidden;
border-radius: 6px;
box-shadow: -2px -2px 5px #000000;
font-size:0.7em;
right: 100%; /*===differnt from bootom===*/
top: 50%; /*===differnt from bootom===*/
margin-top: -15px;
margin-right: 15px;
}
.sheet-tooltips-left span:after {
content: '';
position: absolute;
top: 50%; /*===differnt from bootom===*/
left: 100%; /*===differnt from bootom===*/
margin-top: -8px;
width: 0;
height: 0;
border-left: 8px solid #FFFFFF;
border-top: 8px solid transparent;
border-bottom: 8px solid transparent;
}
:hover.sheet-tooltips-left span {
visibility: visible;
opacity: 1;
right: 100%; /*===differnt from bottom===*/
top: 50%; /*===differnt from bottom===*/
margin-top: -15px;
margin-right: 15px;
z-index: 999;
}
/*-----radio boxes-----*/
/* -----Hide actual radio----- */
input.sheet-normal[type="radio"]
{
opacity: 0;
width: 16px;
height: 16px;
position: relative;
top: 5px;
left: 6px;
margin: -10px;
cursor: pointer;
z-index: 1;
}
/* -----Fake radio----- */
input.sheet-normal[type="radio"] + span::before
{
margin-right: 2px;
border: solid 1px #a8a8a8;
line-height: 16px;
text-align: center;
display: inline-block;
vertical-align: middle;
border:none;
-moz-box-shadow: 0 0 2px #ccc;
-webkit-box-shadow: 0 0 2px #ccc;
box-shadow: 0 0 2px #ccc;
background: -moz-radial-gradient(center, ellipse cover, rgba(255,255,192,0.65) 0%, rgba(255,255,192,0.65) 9%, rgba(255,255,192,0.65) 39%, rgba(255,255,192,0) 100%); /* FF3.6+ */
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(255,255,192,0.65)), color-stop(9%,rgba(255,255,192,0.65)), color-stop(39%,rgba(255,255,192,0.65)), color-stop(100%,rgba(255,255,192,0))); /* Chrome,Safari4+ */
background: -webkit-radial-gradient(center, ellipse cover, rgba(255,255,192,0.65) 0%,rgba(255,255,192,0.65) 9%,rgba(255,255,192,0.65) 39%,rgba(255,255,192,0) 100%); /* Chrome10+,Safari5.1+ */
background: -o-radial-gradient(center, ellipse cover, rgba(255,255,192,0.65) 0%,rgba(255,255,192,0.65) 9%,rgba(255,255,192,0.65) 39%,rgba(255,255,192,0) 100%); /* Opera 12+ */
background: -ms-radial-gradient(center, ellipse cover, rgba(255,255,192,0.65) 0%,rgba(255,255,192,0.65) 9%,rgba(255,255,192,0.65) 39%,rgba(255,255,192,0) 100%); /* IE10+ */
background: radial-gradient(ellipse at center, rgba(255,255,192,0.65) 0%,rgba(255,255,192,0.65) 9%,rgba(255,255,192,0.65) 39%,rgba(255,255,192,0) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a6ffffc0', endColorstr='#00ffffc0',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
color:green;
content: "•";
width: 16px;
height: 16px;
font-size: 3em;
-moz-border-radius: 50%;
-webkit-border-radius: 50%;
border-radius: 50%;
}
/* -----Remove dot from all radios _after_ selected one----- */
input.sheet-normal[type="radio"]:checked ~ input.sheet-normal[type="radio"] + span::before
{
content: "";
}
/*------------empty traits-----------*/
input.sheet-zero[type="radio"]:checked + span::before
{
opacity: 0;
}
input.sheet-zero[type="radio"]:hover + span::before
{
opacity: 1;
}
input.sheet-zero[type="radio"] + span::before
{
color:black;
font-size: 1em;
content: "✖";
opacity: 0.25;
}
/*=== Roll Templates ===*/
/*======================*/
/*======================*/
/*=== Roll Templates ===*/
/*=== ranged ===*/
.sheet-rolltemplate-weapon table {
width: 100%;
background: white;
border: 1px solid;
color: black;
font-size: 1em;
font-family: "Helvetica Neue", Helvetica, sans-serif;
box-shadow: -5px -5px 5px black;
}
.sheet-rolltemplate-weapon th {
background: url ('http://mybizmobile.com.au/wp-content/uploads/2012/01/green-smoke11.png');
background-size: contain;
color: black;
padding: 2px;
border-bottom: 1px solid black;
line-height: 1.6em;
font-size: 1.2em;
text-shadow: 0px 0px 4px white;
}
.sheet-rolltemplate-weapon .sheet-tcat {
font-weight: bold;
}
.sheet-rolltemplate-weapon td {
padding: 5px;
}
.sheet-rolltemplate-weapon .inlinerollresult {
display: inline-block;
min-width: 1.5em;
text-align: center;
border: 2px solid rgba(167, 168, 170,1); /*Cool Gray 6 C*/
}
.sheet-rolltemplate-weapon .inlinerollresult.fullfail {
border: 2px solid #B31515;
}
.sheet-rolltemplate-weapon .inlinerollresult.importantroll {
border: 2px solid #4A57ED;
}
/*=== Roll Templates ===*/
/*=== artillary ===*/
.sheet-rolltemplate-boom table {
width: 100%;
background: white;
border: 1px solid;
color: black;
font-size: 1em;
font-family: "Helvetica Neue", Helvetica, sans-serif;
box-shadow: -5px -5px 6px #808080, -5px -5px 4px black;
}
.sheet-rolltemplate-boom th {
background: url ('http://th06.deviantart.net/fs70/PRE/i/2011/132/5/6/smoke_texture5_by_ashensorrow-d3g74bf.jpg');
background-size: 100%;
color: red;
padding: 2px;
border-bottom: 1px solid black;
line-height: 1.6em;
font-size: 1.2em;
text-shadow: 0px 0px 2px black;
}
.sheet-rolltemplate-boom .sheet-tcat {
font-weight: bold;
}
.sheet-rolltemplate-weapon td {
padding: 5px;
}
.sheet-rolltemplate-boom .inlinerollresult {
display: inline-block;
min-width: 1.5em;
text-align: center;
border: 2px solid rgba(167, 168, 170,1); /*Cool Gray 6 C*/
}
.sheet-rolltemplate-boom .inlinerollresult.fullfail {
border: 2px solid #B31515;
}
.sheet-rolltemplate-boom .inlinerollresult.importantroll {
border: 2px solid #4A57ED;
}
/*=== Roll Templates ===*/
/*=== melee ===*/
.sheet-rolltemplate-melee table {
width: 100%;
background: white;
border: 1px solid;
color: black;
background: url ('http://fc06.deviantart.net/fs40/i/2009/004/8/4/dirty_parchment_by_swimmingintheether.jpg');
font-size: 1em;
font-family: "Helvetica Neue", Helvetica, sans-serif;
box-shadow: -5px -5px 6px #8B0000, -5px -5px 6px black;
}
.sheet-rolltemplate-melee th {
background: url ('http://alamocityrods.com/sitebuilder/images/RedSmoke-359x157.png');
background-size:contain;
color: white;
padding: 2px;
border-bottom: 1px solid black;
line-height: 1.6em;
font-size: 1.2em;
text-shadow: 0px 0px 2px black;
}
.sheet-rolltemplate-melee .sheet-tcat {
font-weight: bold;
}
.sheet-rolltemplate-melee td {
padding: 5px;
}
.sheet-rolltemplate-melee .inlinerollresult {
display: inline-block;
min-width: 1.5em;
text-align: center;
border: 2px solid rgba(167, 168, 170,1); /*Cool Gray 6 C*/
}
.sheet-rolltemplate-melee .inlinerollresult.fullfail {
border: 2px solid #B31515;
}
.sheet-rolltemplate-melee .inlinerollresult.importantroll {
border: 2px solid #4A57ED;
}
/*=== Roll Templates ===*/
/*=== spell ===*/
.sheet-rolltemplate-spell table {
width: 100%;
border: 1px solid;
color: black;
background: url ('http://fc06.deviantart.net/fs40/i/2009/004/8/4/dirty_parchment_by_swimmingintheether.jpg');
font-size: 1em;
font-family: "Helvetica Neue", Helvetica, sans-serif;
box-shadow: -5px -5px 6px #0066CC, -5px -5px 4px blue, -5px -5px 2px #ADD8E6;
}
.sheet-rolltemplate-spell th {
background: url ('http://ak6.picdn.net/shutterstock/videos/2721404/preview/stock-footage-abstract-blue-smoke.jpg');
background-size: contain;
color: white;
padding: 2px;
border-bottom: 1px solid black;
line-height: 1.6em;
font-size: 1.2em;
text-shadow: 0px 0px 2px black;
}
.sheet-rolltemplate-spell td {
padding: 5px;
}
/*=== Roll Templates ===*/
/*=== fellcall ===*/
.sheet-rolltemplate-fellcall table {
width: 100%;
color: black;
border: 1px solid black;
font-size: 1em;
font-family: "Helvetica Neue", Helvetica, sans-serif;
background: url ('http://fc06.deviantart.net/fs40/i/2009/004/8/4/dirty_parchment_by_swimmingintheether.jpg');
box-shadow: -5px -5px 5px black;
}
.sheet-rolltemplate-fellcall th {
background: url ('http://ak7.picdn.net/shutterstock/videos/4572215/preview/stock-footage-abstract-glitter-light-background-seamless-loop.jpg');
background-size: 100%;
color: black;
padding: 2px;
border-bottom: 1px solid black;
line-height: 1.6em;
font-size: 1.2em;
border-collapse: collapse;
}
.sheet-rolltemplate-fellcall td {
padding: 5px;
border-left: 1px solid black;
border-right: 1px solid black;
}
.sheet-rolltemplate-fellcall tr:last-child {
border-bottom: 1px solid black;
}
/*=== Runeshot ===*/
.sheet-rolltemplate-runeshot table {
width: 100%;
background: white;
border: 1px solid;
color: black;
font-size: 1em;
font-family: "Helvetica Neue", Helvetica, sans-serif;
box-shadow: -5px -5px 5px black;
}
.sheet-rolltemplate-runeshot th {
background: url ('http://wallpaperswa.com/thumbnails/detail/20120609/abstract%20fire%20smoke%20plants%20artwork%20black%20background%203840x2160%20wallpaper_wallpaperswa.com_43.jpg');
background-size: contain;
color: red;
padding: 2px;
border-bottom: 1px solid black;
line-height: 1.6em;
font-size: 1.2em;
text-shadow: 0px 0px 2px white, 0px 0px 2px white, 0px 0px 2px white, 0px 0px 2px white ;
}
.sheet-rolltemplate-runeshot .sheet-tcat {
font-weight: bold;
}
.sheet-rolltemplate-runeshot td {
padding: 5px;
}
.sheet-rolltemplate-runeshot .inlinerollresult {
display: inline-block;
min-width: 1.5em;
text-align: center;
border: 2px solid rgba(167, 168, 170,1); /*Cool Gray 6 C*/
}
.sheet-rolltemplate-runeshot .inlinerollresult.fullfail {
border: 2px solid #B31515;
}
.sheet-rolltemplate-runeshot .inlinerollresult.importantroll {
border: 2px solid #4A57ED;
}
/*=== Roll Templates ===*/
/*=== ability ===*/
.sheet-rolltemplate-ability table {
width: 100%;
color: black;
border: 1px solid black;
font-size: 1em;
font-family: "Helvetica Neue", Helvetica, sans-serif;
background: url ('http://fc06.deviantart.net/fs40/i/2009/004/8/4/dirty_parchment_by_swimmingintheether.jpg');
box-shadow: -5px -5px 5px black;
}
.sheet-rolltemplate-ability th {
background: url ('http://hdwyn.com/wallpaper_gray/gray_smoke_shape_colorful_bunch_hd-wallpaper-44778.jpg');
background-size: contain;
color: white;
text-shadow: 0px 0px 2px gray, 0px 0px 2px gray, 0px 0px 1px black;
padding: 2px;
border-bottom: 1px solid black;
line-height: 1.6em;
font-size: 1.2em;
border-collapse: collapse;
}
.sheet-rolltemplate-ability td {
padding: 5px;
border-left: 1px solid black;
border-right: 1px solid black;
}
.sheet-rolltemplate-ability tr:last-child {
border-bottom: 1px solid black;
}
|
vendor/assets/javascripts/angular-1.2.14/docs/partials/api/ng/directive/ngClick.html
|
dcsimons/finalproject_myknee_OLD
|
<a href='http://github.com/angular/angular.js/edit/master/src/ng/directive/ngEventDirs.js' class='improve-docs'><i class="icon-edit"> </i>Improve this doc</a>
<a href='http://github.com/angular/angular.js/tree/master/src/ng/directive/ngEventDirs.js#L3' class='view-source pull-right'>
<i class="icon-zoom-in"> </i>View Source
</a>
<header class="api-profile-header">
<h1 class="api-profile-header-heading">ngClick</h1>
<ol class="api-profile-header-structure naked-list step-list">
<li>
- directive in module <a href="api/ng">ng</a>
</li>
</ol>
</header>
<div class="api-profile-description">
<p>The ngClick directive allows you to specify custom behavior when
an element is clicked.</p>
</div>
<div>
<h2>Directive Info</h2>
<ul>
<li>This directive executes at priority level 0.</li>
</ul>
<h2 id="usage">Usage</h2>
<div class="usage">
<ul>
<li>as attribute:
<pre><code><ANY ng-click="expression"> ... </ANY></code></pre>
</li>
</div>
<section class="api-section">
<h3>Arguments</h3>
<table class="variables-matrix input-arguments">
<thead>
<tr>
<th>Param</th>
<th>Type</th>
<th>Details</th>
</tr>
</thead>
<tbody>
<tr>
<td>
ngClick
</td>
<td>
<a href="" class="label type-hint type-hint-expression">expression</a>
</td>
<td>
<p><a href="guide/expression">Expression</a> to evaluate upon
click. (Event object is available as <code>$event</code>)</p>
</td>
</tr>
</tbody>
</table>
</section>
<h2 id="example">Example</h2><div class="runnable-example" id="example-example22" outputFolder="examples/example-example22">
<div class="runnable-example-file" name="index.html" language="html" type="html">
<pre><code class="lang-html"> <button ng-click="count = count + 1" ng-init="count=0"> Increment </button> count: {{count}}</code></pre>
</div>
<div class="runnable-example-file" name="protractor.js" type="protractor" language="js">
<pre><code class="lang-js"> it('should check ng-click', function() { expect(element(by.binding('count')).getText()).toMatch('0'); element(by.css('button')).click(); expect(element(by.binding('count')).getText()).toMatch('1'); });</code></pre>
</div>
<iframe class="runnable-example-frame" src="examples/example-example22/index.html" name="example-example22"></iframe>
</div>
</div>
|
utils/ant/apache-ant-1.9.4/manual/api/org/apache/tools/ant/types/CommandlineJava.SysProperties.html
|
byronka/xenos
|
<!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 Apr 29 23:14:35 EDT 2014 -->
<TITLE>
CommandlineJava.SysProperties (Apache Ant API)
</TITLE>
<META NAME="date" CONTENT="2014-04-29">
<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="CommandlineJava.SysProperties (Apache Ant API)";
}
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<HR>
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../org/apache/tools/ant/types/CommandlineJava.html" title="class in org.apache.tools.ant.types"><B>PREV CLASS</B></A>
<A HREF="../../../../../org/apache/tools/ant/types/Comparison.html" title="class in org.apache.tools.ant.types"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../index.html?org/apache/tools/ant/types/CommandlineJava.SysProperties.html" target="_top"><B>FRAMES</B></A>
<A HREF="CommandlineJava.SysProperties.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: <A HREF="#nested_classes_inherited_from_class_org.apache.tools.ant.types.Environment">NESTED</A> | <A HREF="#fields_inherited_from_class_org.apache.tools.ant.types.Environment">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<!-- ======== START OF CLASS DATA ======== -->
<H2>
<FONT SIZE="-1">
org.apache.tools.ant.types</FONT>
<BR>
Class CommandlineJava.SysProperties</H2>
<PRE>
java.lang.Object
<IMG SRC="../../../../../resources/inherit.gif" ALT="extended by "><A HREF="../../../../../org/apache/tools/ant/types/Environment.html" title="class in org.apache.tools.ant.types">org.apache.tools.ant.types.Environment</A>
<IMG SRC="../../../../../resources/inherit.gif" ALT="extended by "><B>org.apache.tools.ant.types.CommandlineJava.SysProperties</B>
</PRE>
<DL>
<DT><B>All Implemented Interfaces:</B> <DD>java.lang.Cloneable</DD>
</DL>
<DL>
<DT><B>Enclosing class:</B><DD><A HREF="../../../../../org/apache/tools/ant/types/CommandlineJava.html" title="class in org.apache.tools.ant.types">CommandlineJava</A></DD>
</DL>
<HR>
<DL>
<DT><PRE>public static class <B>CommandlineJava.SysProperties</B><DT>extends <A HREF="../../../../../org/apache/tools/ant/types/Environment.html" title="class in org.apache.tools.ant.types">Environment</A><DT>implements java.lang.Cloneable</DL>
</PRE>
<P>
Specialized Environment class for System properties.
<P>
<P>
<HR>
<P>
<!-- ======== NESTED CLASS SUMMARY ======== -->
<A NAME="nested_class_summary"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Nested Class Summary</B></FONT></TH>
</TR>
</TABLE>
<A NAME="nested_classes_inherited_from_class_org.apache.tools.ant.types.Environment"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left"><B>Nested classes/interfaces inherited from class org.apache.tools.ant.types.<A HREF="../../../../../org/apache/tools/ant/types/Environment.html" title="class in org.apache.tools.ant.types">Environment</A></B></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><A HREF="../../../../../org/apache/tools/ant/types/Environment.Variable.html" title="class in org.apache.tools.ant.types">Environment.Variable</A></CODE></TD>
</TR>
</TABLE>
<!-- =========== FIELD SUMMARY =========== -->
<A NAME="field_summary"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Field Summary</B></FONT></TH>
</TR>
</TABLE>
<A NAME="fields_inherited_from_class_org.apache.tools.ant.types.Environment"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left"><B>Fields inherited from class org.apache.tools.ant.types.<A HREF="../../../../../org/apache/tools/ant/types/Environment.html" title="class in org.apache.tools.ant.types">Environment</A></B></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><A HREF="../../../../../org/apache/tools/ant/types/Environment.html#variables">variables</A></CODE></TD>
</TR>
</TABLE>
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<A NAME="constructor_summary"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Constructor Summary</B></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><B><A HREF="../../../../../org/apache/tools/ant/types/CommandlineJava.SysProperties.html#CommandlineJava.SysProperties()">CommandlineJava.SysProperties</A></B>()</CODE>
<BR>
</TD>
</TR>
</TABLE>
<!-- ========== METHOD SUMMARY =========== -->
<A NAME="method_summary"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Method Summary</B></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/tools/ant/types/CommandlineJava.SysProperties.html#addDefinitionsToList(java.util.ListIterator)">addDefinitionsToList</A></B>(java.util.ListIterator<java.lang.String> listIt)</CODE>
<BR>
Add all definitions (including property sets) to a list.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/tools/ant/types/CommandlineJava.SysProperties.html#addSysproperties(org.apache.tools.ant.types.CommandlineJava.SysProperties)">addSysproperties</A></B>(<A HREF="../../../../../org/apache/tools/ant/types/CommandlineJava.SysProperties.html" title="class in org.apache.tools.ant.types">CommandlineJava.SysProperties</A> ps)</CODE>
<BR>
Add a propertyset to the total set.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/tools/ant/types/CommandlineJava.SysProperties.html#addSyspropertyset(org.apache.tools.ant.types.PropertySet)">addSyspropertyset</A></B>(<A HREF="../../../../../org/apache/tools/ant/types/PropertySet.html" title="class in org.apache.tools.ant.types">PropertySet</A> ps)</CODE>
<BR>
Add a propertyset to the total set.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.Object</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/tools/ant/types/CommandlineJava.SysProperties.html#clone()">clone</A></B>()</CODE>
<BR>
Create a deep clone.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String[]</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/tools/ant/types/CommandlineJava.SysProperties.html#getVariables()">getVariables</A></B>()</CODE>
<BR>
Get the properties as an array; this is an override of the
superclass, as it evaluates all the properties.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/tools/ant/types/CommandlineJava.SysProperties.html#restoreSystem()">restoreSystem</A></B>()</CODE>
<BR>
Restore the system properties to the cached value.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/tools/ant/types/CommandlineJava.SysProperties.html#setSystem()">setSystem</A></B>()</CODE>
<BR>
Cache the system properties and set the system properties to the
new values.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/tools/ant/types/CommandlineJava.SysProperties.html#size()">size</A></B>()</CODE>
<BR>
Get the size of the sysproperties instance.</TD>
</TR>
</TABLE>
<A NAME="methods_inherited_from_class_org.apache.tools.ant.types.Environment"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left"><B>Methods inherited from class org.apache.tools.ant.types.<A HREF="../../../../../org/apache/tools/ant/types/Environment.html" title="class in org.apache.tools.ant.types">Environment</A></B></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><A HREF="../../../../../org/apache/tools/ant/types/Environment.html#addVariable(org.apache.tools.ant.types.Environment.Variable)">addVariable</A>, <A HREF="../../../../../org/apache/tools/ant/types/Environment.html#getVariablesVector()">getVariablesVector</A></CODE></TD>
</TR>
</TABLE>
<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left"><B>Methods inherited from class java.lang.Object</B></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE>equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</CODE></TD>
</TR>
</TABLE>
<P>
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<A NAME="constructor_detail"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
<B>Constructor Detail</B></FONT></TH>
</TR>
</TABLE>
<A NAME="CommandlineJava.SysProperties()"><!-- --></A><H3>
CommandlineJava.SysProperties</H3>
<PRE>
public <B>CommandlineJava.SysProperties</B>()</PRE>
<DL>
</DL>
<!-- ============ METHOD DETAIL ========== -->
<A NAME="method_detail"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
<B>Method Detail</B></FONT></TH>
</TR>
</TABLE>
<A NAME="getVariables()"><!-- --></A><H3>
getVariables</H3>
<PRE>
public java.lang.String[] <B>getVariables</B>()
throws <A HREF="../../../../../org/apache/tools/ant/BuildException.html" title="class in org.apache.tools.ant">BuildException</A></PRE>
<DL>
<DD>Get the properties as an array; this is an override of the
superclass, as it evaluates all the properties.
<P>
<DD><DL>
<DT><B>Overrides:</B><DD><CODE><A HREF="../../../../../org/apache/tools/ant/types/Environment.html#getVariables()">getVariables</A></CODE> in class <CODE><A HREF="../../../../../org/apache/tools/ant/types/Environment.html" title="class in org.apache.tools.ant.types">Environment</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>the array of definitions; may be null.
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../../org/apache/tools/ant/BuildException.html" title="class in org.apache.tools.ant">BuildException</A></CODE> - on error.</DL>
</DD>
</DL>
<HR>
<A NAME="addDefinitionsToList(java.util.ListIterator)"><!-- --></A><H3>
addDefinitionsToList</H3>
<PRE>
public void <B>addDefinitionsToList</B>(java.util.ListIterator<java.lang.String> listIt)</PRE>
<DL>
<DD>Add all definitions (including property sets) to a list.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>listIt</CODE> - list iterator supporting add method.</DL>
</DD>
</DL>
<HR>
<A NAME="size()"><!-- --></A><H3>
size</H3>
<PRE>
public int <B>size</B>()</PRE>
<DL>
<DD>Get the size of the sysproperties instance. This merges all
property sets, so is not an O(1) operation.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>the size of the sysproperties instance.</DL>
</DD>
</DL>
<HR>
<A NAME="setSystem()"><!-- --></A><H3>
setSystem</H3>
<PRE>
public void <B>setSystem</B>()
throws <A HREF="../../../../../org/apache/tools/ant/BuildException.html" title="class in org.apache.tools.ant">BuildException</A></PRE>
<DL>
<DD>Cache the system properties and set the system properties to the
new values.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../../org/apache/tools/ant/BuildException.html" title="class in org.apache.tools.ant">BuildException</A></CODE> - if Security prevented this operation.</DL>
</DD>
</DL>
<HR>
<A NAME="restoreSystem()"><!-- --></A><H3>
restoreSystem</H3>
<PRE>
public void <B>restoreSystem</B>()
throws <A HREF="../../../../../org/apache/tools/ant/BuildException.html" title="class in org.apache.tools.ant">BuildException</A></PRE>
<DL>
<DD>Restore the system properties to the cached value.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../../org/apache/tools/ant/BuildException.html" title="class in org.apache.tools.ant">BuildException</A></CODE> - if Security prevented this operation, or
there were no system properties to restore.</DL>
</DD>
</DL>
<HR>
<A NAME="clone()"><!-- --></A><H3>
clone</H3>
<PRE>
public java.lang.Object <B>clone</B>()
throws java.lang.CloneNotSupportedException</PRE>
<DL>
<DD>Create a deep clone.
<P>
<DD><DL>
<DT><B>Overrides:</B><DD><CODE>clone</CODE> in class <CODE>java.lang.Object</CODE></DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>a cloned instance of SysProperties.
<DT><B>Throws:</B>
<DD><CODE>java.lang.CloneNotSupportedException</CODE> - for signature.</DL>
</DD>
</DL>
<HR>
<A NAME="addSyspropertyset(org.apache.tools.ant.types.PropertySet)"><!-- --></A><H3>
addSyspropertyset</H3>
<PRE>
public void <B>addSyspropertyset</B>(<A HREF="../../../../../org/apache/tools/ant/types/PropertySet.html" title="class in org.apache.tools.ant.types">PropertySet</A> ps)</PRE>
<DL>
<DD>Add a propertyset to the total set.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>ps</CODE> - the new property set.</DL>
</DD>
</DL>
<HR>
<A NAME="addSysproperties(org.apache.tools.ant.types.CommandlineJava.SysProperties)"><!-- --></A><H3>
addSysproperties</H3>
<PRE>
public void <B>addSysproperties</B>(<A HREF="../../../../../org/apache/tools/ant/types/CommandlineJava.SysProperties.html" title="class in org.apache.tools.ant.types">CommandlineJava.SysProperties</A> ps)</PRE>
<DL>
<DD>Add a propertyset to the total set.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>ps</CODE> - the new property set.<DT><B>Since:</B></DT>
<DD>Ant 1.6.3</DD>
</DL>
</DD>
</DL>
<!-- ========= END OF CLASS DATA ========= -->
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../org/apache/tools/ant/types/CommandlineJava.html" title="class in org.apache.tools.ant.types"><B>PREV CLASS</B></A>
<A HREF="../../../../../org/apache/tools/ant/types/Comparison.html" title="class in org.apache.tools.ant.types"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../index.html?org/apache/tools/ant/types/CommandlineJava.SysProperties.html" target="_top"><B>FRAMES</B></A>
<A HREF="CommandlineJava.SysProperties.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: <A HREF="#nested_classes_inherited_from_class_org.apache.tools.ant.types.Environment">NESTED</A> | <A HREF="#fields_inherited_from_class_org.apache.tools.ant.types.Environment">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
</BODY>
</HTML>
|
solr/vendor/docs/solr-core/org/apache/solr/schema/class-use/PreAnalyzedField.ParseResult.html
|
CARLI/vufind
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_71) on Tue Feb 16 15:23:08 EST 2016 -->
<meta http-equiv="Content-Type" content="text/html" charset="utf-8">
<title>Uses of Class org.apache.solr.schema.PreAnalyzedField.ParseResult (Solr 5.5.0 API)</title>
<meta name="date" content="2016-02-16">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class org.apache.solr.schema.PreAnalyzedField.ParseResult (Solr 5.5.0 API)";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../org/apache/solr/schema/PreAnalyzedField.ParseResult.html" title="class in org.apache.solr.schema">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../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?org/apache/solr/schema/class-use/PreAnalyzedField.ParseResult.html" target="_top">Frames</a></li>
<li><a href="PreAnalyzedField.ParseResult.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h2 title="Uses of Class org.apache.solr.schema.PreAnalyzedField.ParseResult" class="title">Uses of Class<br>org.apache.solr.schema.PreAnalyzedField.ParseResult</h2>
</div>
<div class="classUseContainer">
<ul class="blockList">
<li class="blockList">
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation">
<caption><span>Packages that use <a href="../../../../../org/apache/solr/schema/PreAnalyzedField.ParseResult.html" title="class in org.apache.solr.schema">PreAnalyzedField.ParseResult</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Package</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href="#org.apache.solr.schema">org.apache.solr.schema</a></td>
<td class="colLast">
<div class="block"><a href="../../../../../org/apache/solr/schema/IndexSchema.html" title="class in org.apache.solr.schema"><code>IndexSchema</code></a> and <a href="../../../../../org/apache/solr/schema/FieldType.html" title="class in org.apache.solr.schema"><code>FieldType</code></a> implementations for powering schema.xml</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="org.apache.solr.schema">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../org/apache/solr/schema/PreAnalyzedField.ParseResult.html" title="class in org.apache.solr.schema">PreAnalyzedField.ParseResult</a> in <a href="../../../../../org/apache/solr/schema/package-summary.html">org.apache.solr.schema</a></h3>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../org/apache/solr/schema/package-summary.html">org.apache.solr.schema</a> that return <a href="../../../../../org/apache/solr/schema/PreAnalyzedField.ParseResult.html" title="class in org.apache.solr.schema">PreAnalyzedField.ParseResult</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../org/apache/solr/schema/PreAnalyzedField.ParseResult.html" title="class in org.apache.solr.schema">PreAnalyzedField.ParseResult</a></code></td>
<td class="colLast"><span class="strong">SimplePreAnalyzedParser.</span><code><strong><a href="../../../../../org/apache/solr/schema/SimplePreAnalyzedParser.html#parse(java.io.Reader,%20org.apache.lucene.util.AttributeSource)">parse</a></strong>(<a href="http://download.oracle.com/javase/7/docs/api/java/io/Reader.html?is-external=true" title="class or interface in java.io">Reader</a> reader,
<a href="http://lucene.apache.org/core/5_5_0/core/org/apache/lucene/util/AttributeSource.html?is-external=true" title="class or interface in org.apache.lucene.util">AttributeSource</a> parent)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../org/apache/solr/schema/PreAnalyzedField.ParseResult.html" title="class in org.apache.solr.schema">PreAnalyzedField.ParseResult</a></code></td>
<td class="colLast"><span class="strong">JsonPreAnalyzedParser.</span><code><strong><a href="../../../../../org/apache/solr/schema/JsonPreAnalyzedParser.html#parse(java.io.Reader,%20org.apache.lucene.util.AttributeSource)">parse</a></strong>(<a href="http://download.oracle.com/javase/7/docs/api/java/io/Reader.html?is-external=true" title="class or interface in java.io">Reader</a> reader,
<a href="http://lucene.apache.org/core/5_5_0/core/org/apache/lucene/util/AttributeSource.html?is-external=true" title="class or interface in org.apache.lucene.util">AttributeSource</a> parent)</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../org/apache/solr/schema/PreAnalyzedField.ParseResult.html" title="class in org.apache.solr.schema">PreAnalyzedField.ParseResult</a></code></td>
<td class="colLast"><span class="strong">PreAnalyzedField.PreAnalyzedParser.</span><code><strong><a href="../../../../../org/apache/solr/schema/PreAnalyzedField.PreAnalyzedParser.html#parse(java.io.Reader,%20org.apache.lucene.util.AttributeSource)">parse</a></strong>(<a href="http://download.oracle.com/javase/7/docs/api/java/io/Reader.html?is-external=true" title="class or interface in java.io">Reader</a> reader,
<a href="http://lucene.apache.org/core/5_5_0/core/org/apache/lucene/util/AttributeSource.html?is-external=true" title="class or interface in org.apache.lucene.util">AttributeSource</a> parent)</code>
<div class="block">Parse input.</div>
</td>
</tr>
</tbody>
</table>
</li>
</ul>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../org/apache/solr/schema/PreAnalyzedField.ParseResult.html" title="class in org.apache.solr.schema">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../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?org/apache/solr/schema/class-use/PreAnalyzedField.ParseResult.html" target="_top">Frames</a></li>
<li><a href="PreAnalyzedField.ParseResult.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>
<i>Copyright © 2000-2016 Apache Software Foundation. All Rights Reserved.</i>
<script src='../../../../../prettify.js' type='text/javascript'></script>
<script type='text/javascript'>
(function(){
var oldonload = window.onload;
if (typeof oldonload != 'function') {
window.onload = prettyPrint;
} else {
window.onload = function() {
oldonload();
prettyPrint();
}
}
})();
</script>
</small></p>
</body>
</html>
|
pdfbox_1.8.4_qz/src/org/apache/pdfbox/util/operator/pagedrawer/package.html
|
myrridin/qz-print
|
<!--
! Licensed to the Apache Software Foundation (ASF) under one or more
! contributor license agreements. See the NOTICE file distributed with
! this work for additional information regarding copyright ownership.
! The ASF licenses this file to You under the Apache License, Version 2.0
! (the "License"); you may not use this file except in compliance with
! the License. You may obtain a copy of the License at
!
! http://www.apache.org/licenses/LICENSE-2.0
!
! Unless required by applicable law or agreed to in writing, software
! distributed under the License is distributed on an "AS IS" BASIS,
! WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
! See the License for the specific language governing permissions and
! limitations under the License.
!-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<html>
<head>
</head>
<body>
This package contains implementations of all of the PDF operators.
</body>
</html>
|
war/src/main/webapp/help/security/ldap/userSearchFilter_zh_TW.html
|
0814jimmy/jenkins
|
<div>
Jenkins 對 LDAP 的查詢之一,目的在根據使用者名稱找到使用者資料。
<p>
這個欄位設定要用什麼查詢字串來找出使用者資料。
查詢字串幾乎都是 <a href="http://www.ietf.org/rfc/rfc2798.txt">RFC 2798</a> 定義設為
<code>"uid={0}"</code>,所以大部分情況下您應該什麼就不要填,用預設值就好。
<p>
如果您的 LDAP 伺服器沒有 UID 或是沒有有意義的 UID 值,可以用 <code>"mail={0}"</code>,讓使用者以他們的電子郵件信箱登入。
<p>
如果您想設定不同的 LDAP 查詢字串,可以使用 "{0}" 表示使用者輸入的使用者名稱字串。
</div>
|
wordlist/fuzzdb/docs/misc/html-element-index/testing/objects/css/mediahandheld.css
|
GHubgenius/wfuzz-1
|
#mediahandheld { background-color: green; text-transform: uppercase; }
|
test/fixtures/page1.html
|
willy-b/browser-laptop
|
<html>
<head>
<meta charset="utf-8">
<title>Page 1</title>
</head>
<body>
<a id="thelink" href="page2.html">Page 2</a>
</body>
</html>
|
web/assets/metronic/plugins/jquery-validation/demo/radio-checkbox-select-demo.html
|
blackfatTeam/newsroom
|
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<title>Test for jQuery validate() plugin</title>
<link rel="stylesheet" type="text/css" media="screen" href="css/screen.css" />
<script src="../lib/jquery.js" type="text/javascript"></script>
<script src="../lib/jquery.metadata.js" type="text/javascript"></script>
<script src="../jquery.validate.js" type="text/javascript"></script>
<script type="text/javascript">
// only for demo purposes
$.validator.setDefaults({
submitHandler: function() {
alert("submitted!");
}
});
$.metadata.setType("attr", "validate");
$(document).ready(function() {
$("#form1").validate();
$("#selecttest").validate();
});
</script>
<style type="text/css">
.block { display: block; }
form.cmxform label.error { display: none; }
</style>
</head>
<body>
<h1 id="banner"><a href="http://bassistance.de/jquery-plugins/jquery-plugin-validation/">jQuery Validation Plugin</a> Demo</h1>
<div id="main">
<form class="cmxform" id="form1" method="get" action="">
<fieldset>
<legend>Validating a form with a radio and checkbox buttons</legend>
<fieldset>
<legend>Gender</legend>
<label for="gender_male">
<input type="radio" id="gender_male" value="m" name="gender" validate="required:true" />
Male
</label>
<label for="gender_female">
<input type="radio" id="gender_female" value="f" name="gender"/>
Female
</label>
<label for="gender" class="error">Please select your gender</label>
</fieldset>
<fieldset>
<legend>Family</legend>
<label for="family_single">
<input type="radio" id="family_single" value="s" name="family" validate="required:true" />
Single
</label>
<label for="family_married">
<input type="radio" id="family_married" value="m" name="family" />
Married
</label>
<label for="family_other">
<input type="radio" id="family_other" value="o" name="family" />
Other
</label>
<label for="family" class="error">Please select your family status.</label>
</fieldset>
<p>
<label for="agree">Please agree to our policy</label>
<input type="checkbox" class="checkbox" id="agree" name="agree" validate="required:true" />
<br/>
<label for="agree" class="error block">Please agree to our policy!</label>
</p>
<fieldset>
<legend>Spam</legend>
<label for="spam_email">
<input type="checkbox" class="checkbox" id="spam_email" value="email" name="spam[]" validate="required:true, minlength:2" />
Spam via E-Mail
</label>
<label for="spam_phone">
<input type="checkbox" class="checkbox" id="spam_phone" value="phone" name="spam[]" />
Spam via Phone
</label>
<label for="spam_mail">
<input type="checkbox" class="checkbox" id="spam_mail" value="mail" name="spam[]" />
Spam via Mail
</label>
<label for="spam[]" class="error">Please select at least two types of spam.</label>
</fieldset>
<p>
<input class="submit" type="submit" value="Submit"/>
</p>
</fieldset>
</form>
<form id="selecttest">
<h2>Some tests with selects</h2>
<p>
<label for="jungle">Please select a jungle noun</label><br/>
<select id="jungle" name="jungle" title="Please select something!" validate="required:true">
<option value=""></option>
<option value="1">Buga</option>
<option value="2">Baga</option>
<option value="3">Oi</option>
</select>
</p>
<p>
<label for="fruit">Please select at least two fruits</label><br/>
<select id="fruit" name="fruit" title="Please select at least two fruits" validate="required:true, minlength:2" multiple="multiple">
<option value="b">Banana</option>
<option value="a">Apple</option>
<option value="p">Peach</option>
<option value="t">Turtle</option>
</select>
</p>
<p>
<label for="vegetables">Please select no more than two vergetables</label><br/>
<select id="vegetables" name="vegetables" title="Please select no more than two vergetables" validate="required:true, maxlength:2" multiple="multiple">
<option value="p">Potato</option>
<option value="t">Tomato</option>
<option value="s">Salad</option>
</select>
</p>
<p>
<label for="cars">Please select at least two cars, but no more than three</label><br/>
<select id="cars" name="cars" title="Please select at least two cars, but no more than three" validate="required:true, rangelength:[2,3]" multiple="multiple">
<option value="m_sl">Mercedes SL</option>
<option value="o_c">Opel Corsa</option>
<option value="vw_p">VW Polo</option>
<option value="t_s">Titanic Skoda</option>
</select>
</p>
<p><input type="submit" value="Validate Selecttests"/></p>
</form>
<a href="index.html">Back to main page</a>
</div>
</body>
</html>
|
third_party/WebKit/LayoutTests/paint/invalidation/spv2/fixed-table-overflow-expected.html
|
wuhengzhi/chromium-crosswalk
|
<html>
<head>
<link rel="stylesheet" href="../../../fast/repaint/resources/default.css">
<style>
table { top: 0px; left: 0px; border-spacing: 0px; position: absolute; }
td { background: green; padding: 0px; border-style: none; border: 0px; }
td.fixed { position: fixed; left: 100px; top: 0px; }
</style>
<script>
window.onload = function() {
window.scrollTo(0, 100);
runRepaintTest();
};
function repaintTest()
{
document.getElementById('moveMe').className = "fixed";
}
</script>
</head>
<body style="height:2000px;">
<!-- Repaint test for https://bugs.webkit.org/show_bug.cgi?id=64650: Layer fixed position logic needs more basic testing -->
<!-- You should see no red on this page. -->
<table>
<tr><td></td><td></td></tr>
<tr><td class="red"></td><td id="moveMe"><div style="position: relative; left: -100px; top: 0px;" class="green"></div></td></tr>
</body>
</html>
|
www/js/dojox/html/tests/test_themes.html
|
avz-cmf/zaboy-middleware
|
<html>
<head>
<title>dojox.html.style Dynamic Style Sheets Test</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style type="text/css">
@import "../../../dojo/resources/dojo.css";
@import "../../../dijit/tests/css/dijitTests.css";
</style>
<link id="themeStyles" title="tundra" rel="stylesheet" href="../../../dijit/themes/tundra/tundra.css">
<link id="themeStyles" title="nihilo" rel="alternate stylesheet" href="../../../dijit/themes/nihilo/nihilo.css">
<link id="themeStyles" title="soria" rel="alternate stylesheet" href="../../../dijit/themes/soria/soria.css">
<link id="themeStyles" title="claro" rel="stylesheet" href="../../../dijit/themes/claro/claro.css">
<script type="text/javascript">
var djConfig = {
isDebug: false,
parseOnLoad: true,
debugAtAllCosts:false
//popup:true,
//forceFirebugLite:true
};
</script>
<script type="text/javascript" src="../../../dojo/dojo.js" data-dojo-config="isDebug: true, fontSizeWatch: true"></script>
<script type="text/javascript">
dojo.require("dojox.html.styles");
dojo.require("dijit.Menu");
dojo.require("dijit.Calendar");
dojo.require("dijit.form.Button");
dojo.require("dijit.form.DropDownButton");
dojo.require("dijit.form.ComboButton");
dojo.require("dijit.form.ToggleButton");
dojo.require("dijit.Calendar");
changeStyle = function(title){
dojox.html.activeStyleSheet(title);
}
dojo.addOnLoad(function(){
console.log(dojo.version.toString());
var sheets = dojox.html.getToggledStyleSheets();
var holder = dojo.byId("sheetSwitches");
dojo.forEach(sheets, function(s){
holder.innerHTML += '<button onclick="changeStyle(\''+s.title+'\');">'+s.title+'</button>';
});
});
</script>
<style>
#sheetSwitches{
margin-bottom:15px;
}
</style>
</head>
<body class="tundra nihilo soria claro">
<h1>dojox.html.style Dynamic Style Sheets</h1>
<p>The Theme buttons are dymanically generated based on the the link (or style) tag's title attribute. <em>rel="stylesheet"</em> is the preferred, enabled style sheet, and all style sheets with <em>rel="alternate stylesheet"</em> are disabled. Clicking the buttons toggles which style sheet is enabled. Any style sheet without a title attribute is persistent (always enabled). This is based on the W3C spec: http://www.w3.org/TR/html401/present/styles.html#h-14.3.2</p>
<div id="sheetSwitches"><strong>Switch me: </strong></div>
<button dojoType="dijit.form.Button" iconClass="plusIcon" onClick='console.debug("clicked simple")'>
Simple
</button>
<button dojoType="dijit.form.DropDownButton" iconClass="noteIcon">
<span>Drop Down</span>
<div dojoType="dijit.Menu" id="editMenu1" style="display: none;">
<div dojoType="dijit.MenuItem"
iconClass="dijitEditorIcon dijitEditorIconCut"
onClick="console.debug('not actually cutting anything, just a test!')">
Cut
</div>
<div dojoType="dijit.MenuItem"
iconClass="dijitEditorIcon dijitEditorIconCopy"
onClick="console.debug('not actually copying anything, just a test!')">
Copy
</div>
<div dojoType="dijit.MenuItem"
iconClass="dijitEditorIcon dijitEditorIconPaste"
onClick="console.debug('not actually pasting anything, just a test!')">
Paste
</div>
</div>
</button>
<button dojoType="dijit.form.ComboButton" iconClass="noteIcon"
optionsTitle='save options'
onClick='console.debug("clicked combo save")'>
<span>Combo</span>
<div dojoType="dijit.Menu" id="saveMenu1" style="display: none;">
<div dojoType="dijit.MenuItem"
iconClass="dijitEditorIcon dijitEditorIconSave"
onClick="console.debug('not actually saving anything, just a test!')">
Save
</div>
<div dojoType="dijit.MenuItem"
onClick="console.debug('not actually saving anything, just a test!')">
Save As
</div>
</div>
</button>
<button dojoType="dijit.form.ToggleButton" checked onChange="console.log('toggled button checked='+arguments[0]);" iconClass="dijitCheckBoxIcon">
Toggle
</button>
<div dojoType="dijit.Calendar"></div>
<p>
This form of style switching is more effective than changing an attribute in the body tag. It makes coding CSS easier, because less emphasis is placed on targeting through the body tag class, and all CSS theme's could theoretically have the exact same selector names.
</p>
</body>
</html>
|
docs/libc/unix/notbsd/linux/MON_11.v.html
|
nitro-devs/nitro-game-engine
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="refresh" content="0;URL=constant.MON_11.html">
</head>
<body>
<p>Redirecting to <a href="constant.MON_11.html">constant.MON_11.html</a>...</p>
<script>location.replace("constant.MON_11.html" + location.search + location.hash);</script>
</body>
</html>
|
third_party/blink/web_tests/external/wpt/css/css-layout-api/multicol-break-before-crash.https.html
|
scheib/chromium
|
<!DOCTYPE html>
<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
<link rel="help" href="https://www.w3.org/TR/css-layout-api-1/#breaking-and-fragmentation">
<div style="columns:3; column-fill:auto; height:100px;">
<div style="height:1px;"></div>
<div style="display:layout(child-layout); break-before:column; height:200px;"></div>
</div>
|
src/main/resources/doc/fr/html/libs/arith/negator.html
|
aaorellana/Logisim-SeniorProject
|
<html>
<head>
<title>Negator</title>
</head>
<body bgcolor="FFFFFF">
<h1><img align="center" height="32" width="32" src="../../../icons/negator.gif">
<em>Negator</em></h1>
<p><table>
<tr><td><strong>Library:</strong></td>
<td><a href="index.html">Arithmetic</a></td></tr>
<tr><td><strong>Introduced:</strong></td>
<td>2.0 Beta 22</td></tr>
<tr><td valign="top"><strong>Appearance:</strong></td>
<td valign="top"><img src="../../../img-libs/negator.png"></td></tr>
</table></p>
<h2>Behavior</h2>
<p>Computes the two's-complement negation of the input. This negation
is performed by maintaining all the lower-order bits up to the
lowest-order 1, and complementing all bits above that.</p>
<p>If the value to be negated happens to be the least negative value,
then its negation (which cannot be represented in two's-complement
form), is still the least negative value.</p>
<h2>Pins</h2>
<dl>
<dt>West edge (input, bit width matches Data Bits attribute)
<dd>The value to negate.
<dt>East edge, labeled -<var>x</var> (output, bit width matches Data Bits attribute)
<dd>The negation of the input. If the input happens to be the least
negative value representable in <var>dataBits</var> bits, however, then
the output matches the input.
</dl>
<h2>Attributes</h2>
<p>When the component is selected or being added,
Alt-0 through Alt-9 alter its <q>Data Bits</q> attribute.</p>
<dl>
<dt>Data Bits</dt>
<dd>The bit width of the component's input and output.</dd>
</dl>
<h2>Poke Tool Behavior</h2>
<p>None.</p>
<h2>Text Tool Behavior</h2>
<p>None.</p>
<p><a href="../index.html">Back to <em>Library Reference</em></a></p>
</body>
</html>
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.