path stringlengths 5 312 | repo_name stringlengths 5 116 | content stringlengths 2 1.04M |
|---|---|---|
_includes/header.html | aapise/aapise.github.io | <header>
<div class="header-content">
<div class="header-content-inner">
<h1>Hi, I'm Ankita.</h1>
<hr class = "light">
<p>A developer and an occasional designer, I love fun(innovative) projects and creating pretty(useful) things with the magic of code & design. </p>
<a href="#about" class="btn btn-primary btn-xl page-scroll">Get to know me more!</a>
</div>
</div>
</header>
|
_includes/_partial/header.html | Spacebody/Spacebody.github.io | <div>
{% if site.imglogo.enable && site.imglogo.src %}
<div id="imglogo">
<a href="{{ site.baseurl }}/"><img src="{{ site.assets }}/{{ site.imglogo.src }}" alt="{{ site.title }}" title="{{ site.title }}"/></a>
</div>
{% endif %}
<div id="textlogo">
<h1 class="site-name"><a href="{{ site.baseurl }}/" title="{{ site.title }}">{{ site.title }}</a></h1>
<h2 class="blog-motto">{% if site.tagline %}{{ site.tagline }}{% endif %}</h2>
</div>
<div class="navbar"><a class="navbutton navmobile" href="#" title="menu">
</a></div>
<nav class="animated">
<ul>
<ul>
{% for m in site.menu %}
<li><a href="{{ site.baseurl }}{{ m[1] }}">{{ m[0] }}</a></li>
{% endfor %}
<li>
{% if site.google_cse.enable %}
<form class="search" action="{{ site.baseurl }}/search/" method="get" accept-charset="utf-8">
<label>Search</label>
<input type="search" id="search" autocomplete="off" name="q" maxlength="20" placeholder="搜索" />
</form>
{% elsif site.baidu_search.enable %}
<form class="search" action="{{ site.baidu_search.site }}" target="_blank">
<label>Search</label>
<input name="s" type="hidden" id="bdcsMain" value= {{ site.baidu_search.id }} ><input type="text" name="q" size="30" placeholder="搜索"><br>
</form>
{% elsif site.tinysou_search.enable %}
<form class="search">
<label>Search</label>
<input type="text" id="ts-search-input" name="q" size="30" placeholder="搜索"><br>
</form>
{% else %}
<form class="search" action="//google.com/search" method="get" accept-charset="utf-8">
<label>Search</label>
<input type="search" id="search" name="q" autocomplete="off" maxlength="20" placeholder="搜索" />
<input type="hidden" name="q" value="site:{{ site.baseurl | replace: 'http://', '' | replace: 'https://', '' }}">
</form>
{% endif %}
</li>
</ul>
</nav>
</div> |
alien4cloud-ui/src/main/webapp/views/_ref/applications/applications_detail_environment_deploycurrent_workflow.html | san-tak/alien4cloud | <div id="editor-workflow" class="topology-editor" style="height: {{dimensions.height}}px; width: {{dimensions.width}}px;">
<div class="topology-row" style="height: {{dimensions.height}}px;">
<div id="workflow-graph" class="topology-column">
<topology-plan ng-if="topology" id="plan-graph-container"></topology-plan>
</div>
<div id="workflows-box" class="topology-column ui-resizable" style="width: {{displays.workflows.size}}px;">
<div class="topology-column-box">
<resizable-bar
id="workflows-box-handler"
classes="topology-column-menu-left">
</resizable-bar>
<div class="topology-column-content">
<div class="topology-column-content-head">
<span>
<i class="fa fa-power-off"></i> {{'APPLICATIONS.WF.title' | translate}}
</span>
</div>
<div class="well wfbox">
<div class="row">
<div class="col-md-7">
<select name="wf-select" id="wf-select" ng-model="currentWorkflowName" ng-change="workflows.setCurrentWorkflowName(currentWorkflowName)">
<option ng-repeat="w in topology.topology.workflows" value="{{w.name}}" ng-selected="w.name === currentWorkflowName">{{w.name}}</option>
</select>
</div>
<div class="col-md-5">
<button id="btn-deploy" type="button" class="btn btn-success application-deploy-button"
ng-click="launchWorkflow()"
ng-disabled="isLaunchingWorkflow" >
<i class="fa" ng-class="{'fa-play': !isLaunchingWorkflow, 'fa-spinner fa-spin': isLaunchingWorkflow}"></i> {{'APPLICATIONS.WF.launch' | translate}}
</button>
</div>
</div>
</div>
<!-- The displayed step -->
<div class="well wfbox" ng-if="previewWorkflowStep">
<div class="pull-left break-word"><b>{{previewWorkflowStep.name}}</b></div>
<i class="fa pull-right">{{workflows.getStepActivityTypeIcon(previewWorkflowStep)}}</i>
<div class="pull-right" ng-if="pinnedWorkflowStep && pinnedWorkflowStep===previewWorkflowStep">
<a id="wfUnpinStep"
class="btn btn-default btn-sm"
uib-tooltip="{{ 'APPLICATIONS.WF.unpin' | translate}}"
tooltip-append-to-body="true" ng-click="workflows.unpinCurrent()">
<i class="fa fa-unlock"></i>
</a>
</div>
<span class="clearfix"></span>
<div class="row">
<div class="col-md-3">
<img ng-if="!previewWorkflowStep.targetRelationship" ng-src="img?id={{workflows.getStepNodeIcon(previewWorkflowStep)}}&quality=QUALITY_64" />
<span ng-if="previewWorkflowStep.targetRelationship" >
<img ng-show="!onTargetImage" ng-mouseleave="onSourceImage = false" ng-mouseenter="onSourceImage = true; onTargetImage = false" ng-src="img?id={{workflows.getStepNodeIcon(previewWorkflowStep)}}&quality=QUALITY_64" class="wf-source-rel-img"/>
<img ng-show="!onSourceImage" ng-mouseleave="onTargetImage = false" ng-mouseenter="onTargetImage = true; onSourceImage = false" ng-src="img?id={{workflows.getStepTargetNodeIcon(previewWorkflowStep)}}&quality=QUALITY_64" class="wf-target-rel-img"/>
</span>
</div>
<div class="col-md-9">
<span ng-if="!previewWorkflowStep.targetRelationship && previewWorkflowStep.target">{{'COMMON.NODE' | translate}}: <b class="break-word">{{previewWorkflowStep.target}}</b><br></span>
<span ng-if="previewWorkflowStep.targetRelationship">
{{'COMMON.SOURCE' | translate}}: <b class="break-word">{{previewWorkflowStep.target}}</b><br>
{{'COMMON.RELATIONSHIP' | translate}}: <b class="break-word">{{previewWorkflowStep.targetRelationship}}</b><br>
{{'COMMON.TARGET' | translate}}: <b class="break-word">{{workflows.getTargetNodeForRelationshipStep(previewWorkflowStep)}}</b><br>
</span>
<span ng-init="previewWorkflowStepHost=workflows.getStepHost(previewWorkflowStep)" ng-if="previewWorkflowStepHost">{{'APPLICATIONS.WF.host' | translate}}: <b class="break-word">{{previewWorkflowStepHost}}</b><br></span>
{{'APPLICATIONS.WF.activity' | translate}}: <b>{{ 'APPLICATIONS.WF.' + workflows.getStepActivityType(previewWorkflowStep) | translate}}</b><br>
</div>
</div>
<div class="row" ng-repeat="(k,v) in workflows.getStepActivityDetails(previewWorkflowStep)">
<div class="col-md-3">{{'APPLICATIONS.WF.' + k | translate}}: </div>
<div class="col-md-9 wfActivityDetail"><b>{{v}}</b></div>
</div>
</div>
<div class="well wfbox" ng-if="(previewWorkflowStep || pinnedWorkflowStep) && _.isNotEmpty(workflows.getPreviewedStepTasks())">
<div class="row" ng-repeat="task in workflows.getPreviewedStepTasks()" >
<div class="col-md-9">{{ task.instanceId }}</div>
<div class="col-md-1">
<i class="fa {{workflows.getTaskStatusIconCss(task)}}"></i>
</div>
<div class="col-md-2 clickable">
<i class="fa fa-newspaper-o" ng-click="displayLogs(task)"></i>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
|
docs/javadoc/2.11/com/fasterxml/jackson/databind/ser/impl/class-use/IndexedListSerializer.html | FasterXML/jackson-databind | <!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_162) on Sat Apr 25 17:14:54 PDT 2020 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class com.fasterxml.jackson.databind.ser.impl.IndexedListSerializer (jackson-databind 2.11.0 API)</title>
<meta name="date" content="2020-04-25">
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class com.fasterxml.jackson.databind.ser.impl.IndexedListSerializer (jackson-databind 2.11.0 API)";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../../com/fasterxml/jackson/databind/ser/impl/IndexedListSerializer.html" title="class in com.fasterxml.jackson.databind.ser.impl">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/fasterxml/jackson/databind/ser/impl/class-use/IndexedListSerializer.html" target="_top">Frames</a></li>
<li><a href="IndexedListSerializer.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h2 title="Uses of Class com.fasterxml.jackson.databind.ser.impl.IndexedListSerializer" class="title">Uses of Class<br>com.fasterxml.jackson.databind.ser.impl.IndexedListSerializer</h2>
</div>
<div class="classUseContainer">
<ul class="blockList">
<li class="blockList">
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation">
<caption><span>Packages that use <a href="../../../../../../../com/fasterxml/jackson/databind/ser/impl/IndexedListSerializer.html" title="class in com.fasterxml.jackson.databind.ser.impl">IndexedListSerializer</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.fasterxml.jackson.databind.ser.impl">com.fasterxml.jackson.databind.ser.impl</a></td>
<td class="colLast">
<div class="block">Contains implementation classes of serialization part of
data binding.</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="com.fasterxml.jackson.databind.ser.impl">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../../com/fasterxml/jackson/databind/ser/impl/IndexedListSerializer.html" title="class in com.fasterxml.jackson.databind.ser.impl">IndexedListSerializer</a> in <a href="../../../../../../../com/fasterxml/jackson/databind/ser/impl/package-summary.html">com.fasterxml.jackson.databind.ser.impl</a></h3>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../../../com/fasterxml/jackson/databind/ser/impl/package-summary.html">com.fasterxml.jackson.databind.ser.impl</a> that return <a href="../../../../../../../com/fasterxml/jackson/databind/ser/impl/IndexedListSerializer.html" title="class in com.fasterxml.jackson.databind.ser.impl">IndexedListSerializer</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="../../../../../../../com/fasterxml/jackson/databind/ser/impl/IndexedListSerializer.html" title="class in com.fasterxml.jackson.databind.ser.impl">IndexedListSerializer</a></code></td>
<td class="colLast"><span class="typeNameLabel">IndexedListSerializer.</span><code><span class="memberNameLink"><a href="../../../../../../../com/fasterxml/jackson/databind/ser/impl/IndexedListSerializer.html#withResolved-com.fasterxml.jackson.databind.BeanProperty-com.fasterxml.jackson.databind.jsontype.TypeSerializer-com.fasterxml.jackson.databind.JsonSerializer-java.lang.Boolean-">withResolved</a></span>(<a href="../../../../../../../com/fasterxml/jackson/databind/BeanProperty.html" title="interface in com.fasterxml.jackson.databind">BeanProperty</a> property,
<a href="../../../../../../../com/fasterxml/jackson/databind/jsontype/TypeSerializer.html" title="class in com.fasterxml.jackson.databind.jsontype">TypeSerializer</a> vts,
<a href="../../../../../../../com/fasterxml/jackson/databind/JsonSerializer.html" title="class in com.fasterxml.jackson.databind">JsonSerializer</a><?> elementSerializer,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Boolean.html?is-external=true" title="class or interface in java.lang">Boolean</a> unwrapSingle)</code> </td>
</tr>
</tbody>
</table>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing constructors, and an explanation">
<caption><span>Constructors in <a href="../../../../../../../com/fasterxml/jackson/databind/ser/impl/package-summary.html">com.fasterxml.jackson.databind.ser.impl</a> with parameters of type <a href="../../../../../../../com/fasterxml/jackson/databind/ser/impl/IndexedListSerializer.html" title="class in com.fasterxml.jackson.databind.ser.impl">IndexedListSerializer</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../../com/fasterxml/jackson/databind/ser/impl/IndexedListSerializer.html#IndexedListSerializer-com.fasterxml.jackson.databind.ser.impl.IndexedListSerializer-com.fasterxml.jackson.databind.BeanProperty-com.fasterxml.jackson.databind.jsontype.TypeSerializer-com.fasterxml.jackson.databind.JsonSerializer-java.lang.Boolean-">IndexedListSerializer</a></span>(<a href="../../../../../../../com/fasterxml/jackson/databind/ser/impl/IndexedListSerializer.html" title="class in com.fasterxml.jackson.databind.ser.impl">IndexedListSerializer</a> src,
<a href="../../../../../../../com/fasterxml/jackson/databind/BeanProperty.html" title="interface in com.fasterxml.jackson.databind">BeanProperty</a> property,
<a href="../../../../../../../com/fasterxml/jackson/databind/jsontype/TypeSerializer.html" title="class in com.fasterxml.jackson.databind.jsontype">TypeSerializer</a> vts,
<a href="../../../../../../../com/fasterxml/jackson/databind/JsonSerializer.html" title="class in com.fasterxml.jackson.databind">JsonSerializer</a><?> valueSerializer,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Boolean.html?is-external=true" title="class or interface in java.lang">Boolean</a> unwrapSingle)</code> </td>
</tr>
</tbody>
</table>
</li>
</ul>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../../com/fasterxml/jackson/databind/ser/impl/IndexedListSerializer.html" title="class in com.fasterxml.jackson.databind.ser.impl">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/fasterxml/jackson/databind/ser/impl/class-use/IndexedListSerializer.html" target="_top">Frames</a></li>
<li><a href="IndexedListSerializer.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 © 2008–2020 <a href="http://fasterxml.com/">FasterXML</a>. All rights reserved.</small></p>
</body>
</html>
|
lib/commons-io-2.4/docs/org/apache/commons/io/class-use/TaggedIOException.html | KaiserWilly/DDCombatCompanion | <!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_31) on Tue Jun 12 18:19:51 EDT 2012 -->
<META http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<TITLE>
Uses of Class org.apache.commons.io.TaggedIOException (Commons IO 2.4 API)
</TITLE>
<META NAME="date" CONTENT="2012-06-12">
<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 org.apache.commons.io.TaggedIOException (Commons IO 2.4 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="#EEEEFF" CLASS="NavBarCell1"><A
HREF="../../../../../org/apache/commons/io/TaggedIOException.html"
title="class in org.apache.commons.io"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>
</TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>
</TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"><A HREF="../package-tree.html"><FONT
CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"><A HREF="../../../../../deprecated-list.html"><FONT
CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"><A HREF="../../../../../index-all.html"><FONT
CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"><A HREF="../../../../../help-doc.html"><FONT
CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../index.html?org/apache/commons/io/\class-useTaggedIOException.html" target="_top"><B>FRAMES</B></A>
<A HREF="TaggedIOException.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<CENTER>
<H2>
<B>Uses of Class<br>org.apache.commons.io.TaggedIOException</B></H2>
</CENTER>
No usage of org.apache.commons.io.TaggedIOException
<P>
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"><A HREF="../../../../../overview-summary.html"><FONT
CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"><A HREF="../package-summary.html"><FONT
CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"><A
HREF="../../../../../org/apache/commons/io/TaggedIOException.html"
title="class in org.apache.commons.io"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>
</TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>
</TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"><A HREF="../package-tree.html"><FONT
CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"><A HREF="../../../../../deprecated-list.html"><FONT
CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"><A HREF="../../../../../index-all.html"><FONT
CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"><A HREF="../../../../../help-doc.html"><FONT
CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../index.html?org/apache/commons/io/\class-useTaggedIOException.html" target="_top"><B>FRAMES</B></A>
<A HREF="TaggedIOException.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
Copyright © 2002-2012 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All Rights Reserved.
</BODY>
</HTML>
|
archives/2018/01/index.html | luyunyyyyy/luyunyyyyy.github.io | <!DOCTYPE html>
<html class="theme-next pisces use-motion" lang="zh-Hans">
<head>
<meta charset="UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"/>
<meta name="theme-color" content="#222">
<meta http-equiv="Cache-Control" content="no-transform" />
<meta http-equiv="Cache-Control" content="no-siteapp" />
<link href="/lib/fancybox/source/jquery.fancybox.css?v=2.1.5" rel="stylesheet" type="text/css" />
<link href="/lib/font-awesome/css/font-awesome.min.css?v=4.6.2" rel="stylesheet" type="text/css" />
<link href="/css/main.css?v=5.1.3" rel="stylesheet" type="text/css" />
<link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon-next.png?v=5.1.3">
<link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32-next.png?v=5.1.3">
<link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16-next.png?v=5.1.3">
<link rel="mask-icon" href="/images/logo.svg?v=5.1.3" color="#222">
<meta name="keywords" content="Hexo, NexT, luyunyyyyy" />
<meta name="description" content="Neuer,正在学习大数据相关技术">
<meta property="og:type" content="website">
<meta property="og:title" content="lyy 的个人博客">
<meta property="og:url" content="http://luyunyyyyy.com/archives/2018/01/index.html">
<meta property="og:site_name" content="lyy 的个人博客">
<meta property="og:description" content="Neuer,正在学习大数据相关技术">
<meta property="og:locale" content="zh-Hans">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="lyy 的个人博客">
<meta name="twitter:description" content="Neuer,正在学习大数据相关技术">
<script type="text/javascript" id="hexo.configurations">
var NexT = window.NexT || {};
var CONFIG = {
root: '/',
scheme: 'Pisces',
version: '5.1.3',
sidebar: {"position":"right","display":"post","offset":12,"b2t":false,"scrollpercent":false,"onmobile":false},
fancybox: true,
tabs: true,
motion: {"enable":true,"async":false,"transition":{"post_block":"fadeIn","post_header":"slideDownIn","post_body":"slideDownIn","coll_header":"slideLeftIn","sidebar":"slideUpIn"}},
duoshuo: {
userId: '0',
author: '博主'
},
algolia: {
applicationID: '',
apiKey: '',
indexName: '',
hits: {"per_page":10},
labels: {"input_placeholder":"Search for Posts","hits_empty":"We didn't find any results for the search: ${query}","hits_stats":"${hits} results found in ${time} ms"}
}
};
</script>
<link rel="canonical" href="http://luyunyyyyy.com/archives/2018/01/"/>
<title>归档 | lyy 的个人博客</title>
</head>
<body itemscope itemtype="http://schema.org/WebPage" lang="zh-Hans">
<div class="container sidebar-position-right page-archive">
<div class="headband"></div>
<header id="header" class="header" itemscope itemtype="http://schema.org/WPHeader">
<div class="header-inner"><div class="site-brand-wrapper">
<div class="site-meta ">
<div class="custom-logo-site-title">
<a href="/" class="brand" rel="start">
<span class="logo-line-before"><i></i></span>
<span class="site-title">lyy 的个人博客</span>
<span class="logo-line-after"><i></i></span>
</a>
</div>
<p class="site-subtitle">菜鸟程序员的心路历程</p>
</div>
<div class="site-nav-toggle">
<button>
<span class="btn-bar"></span>
<span class="btn-bar"></span>
<span class="btn-bar"></span>
</button>
</div>
</div>
<nav class="site-nav">
<ul id="menu" class="menu">
<li class="menu-item menu-item-home">
<a href="/" rel="section">
<i class="menu-item-icon fa fa-fw fa-home"></i> <br />
首页
</a>
</li>
<li class="menu-item menu-item-about">
<a href="/about/" rel="section">
<i class="menu-item-icon fa fa-fw fa-about"></i> <br />
关于
</a>
</li>
<li class="menu-item menu-item-tags">
<a href="/tags/" rel="section">
<i class="menu-item-icon fa fa-fw fa-tags"></i> <br />
标签
</a>
</li>
<li class="menu-item menu-item-categories">
<a href="/categories/" rel="section">
<i class="menu-item-icon fa fa-fw fa-th"></i> <br />
分类
</a>
</li>
<li class="menu-item menu-item-archives">
<a href="/archives/" rel="section">
<i class="menu-item-icon fa fa-fw fa-archive"></i> <br />
归档
</a>
</li>
</ul>
</nav>
</div>
</header>
<main id="main" class="main">
<div class="main-inner">
<div class="content-wrap">
<div id="content" class="content">
<div class="post-block archive">
<div id="posts" class="posts-collapse">
<span class="archive-move-on"></span>
<span class="archive-page-counter">
嗯..! 目前共计 30 篇日志。 继续努力。
</span>
<div class="collection-title">
<h1 class="archive-year" id="archive-year-2018">2018</h1>
</div>
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<header class="post-header">
<h2 class="post-title">
<a class="post-title-link" href="/2018/01/28/2018-01-28-merge-two-sorted-arrays/" itemprop="url">
<span itemprop="name">合并排序数组</span>
</a>
</h2>
<div class="post-meta">
<time class="post-time" itemprop="dateCreated"
datetime="2018-01-28T23:33:45+08:00"
content="2018-01-28" >
01-28
</time>
</div>
</header>
</article>
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<header class="post-header">
<h2 class="post-title">
<a class="post-title-link" href="/2018/01/28/2018-01-28-trailing-zeros/" itemprop="url">
<span itemprop="name">尾部的零</span>
</a>
</h2>
<div class="post-meta">
<time class="post-time" itemprop="dateCreated"
datetime="2018-01-28T23:10:19+08:00"
content="2018-01-28" >
01-28
</time>
</div>
</header>
</article>
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<header class="post-header">
<h2 class="post-title">
<a class="post-title-link" href="/2018/01/28/2018-01-28-a-b-problem/" itemprop="url">
<span itemprop="name">A + B 问题</span>
</a>
</h2>
<div class="post-meta">
<time class="post-time" itemprop="dateCreated"
datetime="2018-01-28T22:39:04+08:00"
content="2018-01-28" >
01-28
</time>
</div>
</header>
</article>
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<header class="post-header">
<h2 class="post-title">
<a class="post-title-link" href="/2018/01/27/2018-01-27-DDIA-reliable/" itemprop="url">
<span itemprop="name">可靠性-设计数据密集型应用读书笔记</span>
</a>
</h2>
<div class="post-meta">
<time class="post-time" itemprop="dateCreated"
datetime="2018-01-27T21:07:02+08:00"
content="2018-01-27" >
01-27
</time>
</div>
</header>
</article>
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<header class="post-header">
<h2 class="post-title">
<a class="post-title-link" href="/2018/01/27/2018-01-27-reverse-integer/" itemprop="url">
<span itemprop="name">Reverse Integer</span>
</a>
</h2>
<div class="post-meta">
<time class="post-time" itemprop="dateCreated"
datetime="2018-01-27T11:29:27+08:00"
content="2018-01-27" >
01-27
</time>
</div>
</header>
</article>
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<header class="post-header">
<h2 class="post-title">
<a class="post-title-link" href="/2018/01/25/2018-01-25-todo-in-winter/" itemprop="url">
<span itemprop="name">放假要做的事情</span>
</a>
</h2>
<div class="post-meta">
<time class="post-time" itemprop="dateCreated"
datetime="2018-01-25T23:19:00+08:00"
content="2018-01-25" >
01-25
</time>
</div>
</header>
</article>
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<header class="post-header">
<h2 class="post-title">
<a class="post-title-link" href="/2018/01/24/2018-01-24-add-two-numbers/" itemprop="url">
<span itemprop="name">Add Two Numbers</span>
</a>
</h2>
<div class="post-meta">
<time class="post-time" itemprop="dateCreated"
datetime="2018-01-24T10:03:53+08:00"
content="2018-01-24" >
01-24
</time>
</div>
</header>
</article>
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<header class="post-header">
<h2 class="post-title">
<a class="post-title-link" href="/2018/01/23/2018-01-23-two-sum/" itemprop="url">
<span itemprop="name">Two Sum</span>
</a>
</h2>
<div class="post-meta">
<time class="post-time" itemprop="dateCreated"
datetime="2018-01-23T23:40:50+08:00"
content="2018-01-23" >
01-23
</time>
</div>
</header>
</article>
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<header class="post-header">
<h2 class="post-title">
<a class="post-title-link" href="/2018/01/22/2018-01-22-copy-list-with-random-pointer/" itemprop="url">
<span itemprop="name">复制带随机指针的链表</span>
</a>
</h2>
<div class="post-meta">
<time class="post-time" itemprop="dateCreated"
datetime="2018-01-22T09:31:57+08:00"
content="2018-01-22" >
01-22
</time>
</div>
</header>
</article>
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<header class="post-header">
<h2 class="post-title">
<a class="post-title-link" href="/2018/01/21/2017-01-21-binary-tree-postorder-traversal/" itemprop="url">
<span itemprop="name">二叉树的后序遍历</span>
</a>
</h2>
<div class="post-meta">
<time class="post-time" itemprop="dateCreated"
datetime="2018-01-21T22:58:20+08:00"
content="2018-01-21" >
01-21
</time>
</div>
</header>
</article>
</div>
</div>
<nav class="pagination">
<span class="page-number current">1</span><a class="page-number" href="/archives/2018/01/page/2/">2</a><a class="page-number" href="/archives/2018/01/page/3/">3</a><a class="extend next" rel="next" href="/archives/2018/01/page/2/"><i class="fa fa-angle-right"></i></a>
</nav>
</div>
</div>
<div class="sidebar-toggle">
<div class="sidebar-toggle-line-wrap">
<span class="sidebar-toggle-line sidebar-toggle-line-first"></span>
<span class="sidebar-toggle-line sidebar-toggle-line-middle"></span>
<span class="sidebar-toggle-line sidebar-toggle-line-last"></span>
</div>
</div>
<aside id="sidebar" class="sidebar">
<div class="sidebar-inner">
<section class="site-overview-wrap sidebar-panel sidebar-panel-active">
<div class="site-overview">
<div class="site-author motion-element" itemprop="author" itemscope itemtype="http://schema.org/Person">
<p class="site-author-name" itemprop="name">Luyunyyyyy</p>
<p class="site-description motion-element" itemprop="description">Neuer,正在学习大数据相关技术</p>
</div>
<nav class="site-state motion-element">
<div class="site-state-item site-state-posts">
<a href="/archives/">
<span class="site-state-item-count">30</span>
<span class="site-state-item-name">日志</span>
</a>
</div>
<div class="site-state-item site-state-tags">
<a href="/tags/index.html">
<span class="site-state-item-count">17</span>
<span class="site-state-item-name">标签</span>
</a>
</div>
</nav>
<div class="links-of-author motion-element">
</div>
</div>
</section>
</div>
</aside>
</div>
</main>
<footer id="footer" class="footer">
<div class="footer-inner">
<div class="copyright">© 2017 — <span itemprop="copyrightYear">2018</span>
<span class="with-love">
<i class="fa fa-user"></i>
</span>
<span class="author" itemprop="copyrightHolder">true</span>
<span class="post-meta-divider">|</span>
<span class="post-meta-item-icon">
<i class="fa fa-area-chart"></i>
</span>
<span class="post-meta-item-text">Site words total count:</span>
<span title="Site words total count">7.9k</span>
</div>
<div class="powered-by">由 <a class="theme-link" target="_blank" href="https://hexo.io">Hexo</a> 强力驱动</div>
<span class="post-meta-divider">|</span>
<div class="theme-info">主题 — <a class="theme-link" target="_blank" href="https://github.com/iissnan/hexo-theme-next">NexT.Pisces</a> v5.1.3</div>
</div>
</footer>
<div class="back-to-top">
<i class="fa fa-arrow-up"></i>
</div>
</div>
<script type="text/javascript">
if (Object.prototype.toString.call(window.Promise) !== '[object Function]') {
window.Promise = null;
}
</script>
<script type="text/javascript" src="/lib/jquery/index.js?v=2.1.3"></script>
<script type="text/javascript" src="/lib/fastclick/lib/fastclick.min.js?v=1.0.6"></script>
<script type="text/javascript" src="/lib/jquery_lazyload/jquery.lazyload.js?v=1.9.7"></script>
<script type="text/javascript" src="/lib/velocity/velocity.min.js?v=1.2.1"></script>
<script type="text/javascript" src="/lib/velocity/velocity.ui.min.js?v=1.2.1"></script>
<script type="text/javascript" src="/lib/fancybox/source/jquery.fancybox.pack.js?v=2.1.5"></script>
<script type="text/javascript" src="/js/src/utils.js?v=5.1.3"></script>
<script type="text/javascript" src="/js/src/motion.js?v=5.1.3"></script>
<script type="text/javascript" src="/js/src/affix.js?v=5.1.3"></script>
<script type="text/javascript" src="/js/src/schemes/pisces.js?v=5.1.3"></script>
<script type="text/javascript" src="/js/src/bootstrap.js?v=5.1.3"></script>
<script>
(function(){
var bp = document.createElement('script');
var curProtocol = window.location.protocol.split(':')[0];
if (curProtocol === 'https') {
bp.src = 'https://zz.bdstatic.com/linksubmit/push.js';
}
else {
bp.src = 'http://push.zhanzhang.baidu.com/push.js';
}
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(bp, s);
})();
</script>
</body>
</html>
|
winter-core/doc/deprecated-list.html | ljzca/Winter | <!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_121) on Sat Feb 04 22:35:33 MST 2017 -->
<title>Deprecated List</title>
<meta name="date" content="2017-02-04">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
<script type="text/javascript" src="script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Deprecated List";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="overview-summary.html">Overview</a></li>
<li>Package</li>
<li>Class</li>
<li>Use</li>
<li><a href="overview-tree.html">Tree</a></li>
<li class="navBarCell1Rev">Deprecated</li>
<li><a href="index-files/index-1.html">Index</a></li>
<li><a href="help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="index.html?deprecated-list.html" target="_top">Frames</a></li>
<li><a href="deprecated-list.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h1 title="Deprecated API" class="title">Deprecated API</h1>
<h2 title="Contents">Contents</h2>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="overview-summary.html">Overview</a></li>
<li>Package</li>
<li>Class</li>
<li>Use</li>
<li><a href="overview-tree.html">Tree</a></li>
<li class="navBarCell1Rev">Deprecated</li>
<li><a href="index-files/index-1.html">Index</a></li>
<li><a href="help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="index.html?deprecated-list.html" target="_top">Frames</a></li>
<li><a href="deprecated-list.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>
|
treebanks/olo_kkpp/olo_kkpp-pos-NUM.html | UniversalDependencies/universaldependencies.github.io | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="en-GB" xml:lang="en-GB" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<title>Statistics of NUM in UD_Livvi-KKPP</title>
<link rel="root" href=""/> <!-- for JS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="../../css/jquery-ui-redmond.css"/>
<link rel="stylesheet" type="text/css" href="../../css/style.css"/>
<link rel="stylesheet" type="text/css" href="../../css/style-vis.css"/>
<link rel="stylesheet" type="text/css" href="../../css/hint.css"/>
<script type="text/javascript" src="../../lib/ext/head.load.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/anchor-js/3.2.2/anchor.min.js"></script>
<script>document.addEventListener("DOMContentLoaded", function(event) {anchors.add();});</script>
<!-- Set up this custom Google search at https://cse.google.com/cse/business/settings?cx=001145188882102106025:dl1mehhcgbo -->
<!-- DZ 2021-01-22: I am temporarily hiding the search field to find out whether it slows down loading of the title page.
<script>
(function() {
var cx = '001145188882102106025:dl1mehhcgbo';
var gcse = document.createElement('script');
gcse.type = 'text/javascript';
gcse.async = true;
gcse.src = 'https://cse.google.com/cse.js?cx=' + cx;
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(gcse, s);
})();
</script> -->
<!-- <link rel="shortcut icon" href="favicon.ico"/> -->
</head>
<body>
<div id="main" class="center">
<div id="hp-header">
<table width="100%"><tr><td width="50%">
<span class="header-text"><a href="http://universaldependencies.org/#language-">home</a></span>
<span class="header-text"><a href="https://github.com/universaldependencies/docs/edit/pages-source/treebanks/olo_kkpp/olo_kkpp-pos-NUM.md" target="#">edit page</a></span>
<span class="header-text"><a href="https://github.com/universaldependencies/docs/issues">issue tracker</a></span>
</td><td>
<gcse:search></gcse:search>
</td></tr></table>
</div>
<hr/>
<div class="v2complete">
This page pertains to UD version 2.
</div>
<div id="content">
<noscript>
<div id="noscript">
It appears that you have Javascript disabled.
Please consider enabling Javascript for this page to see the visualizations.
</div>
</noscript>
<!-- The content may include scripts and styles, hence we must load the shared libraries before the content. -->
<script type="text/javascript">
console.time('loading libraries');
var root = '../../'; // filled in by jekyll
head.js(
// External libraries
// DZ: Copied from embedding.html. I don't know which one is needed for what, so I'm currently keeping them all.
root + 'lib/ext/jquery.min.js',
root + 'lib/ext/jquery.svg.min.js',
root + 'lib/ext/jquery.svgdom.min.js',
root + 'lib/ext/jquery.timeago.js',
root + 'lib/ext/jquery-ui.min.js',
root + 'lib/ext/waypoints.min.js',
root + 'lib/ext/jquery.address.min.js'
);
</script>
<h2 id="treebank-statistics-ud_livvi-kkpp-pos-tags-num">Treebank Statistics: UD_Livvi-KKPP: POS Tags: <code class="language-plaintext highlighter-rouge">NUM</code></h2>
<p>There are 10 <code class="language-plaintext highlighter-rouge">NUM</code> lemmas (2%), 12 <code class="language-plaintext highlighter-rouge">NUM</code> types (2%) and 21 <code class="language-plaintext highlighter-rouge">NUM</code> tokens (1%).
Out of 14 observed tags, the rank of <code class="language-plaintext highlighter-rouge">NUM</code> is: 9 in number of lemmas, 8 in number of types and 10 in number of tokens.</p>
<p>The 10 most frequent <code class="language-plaintext highlighter-rouge">NUM</code> lemmas: <em>kolme, kaksi, seiččen, 1994, 2010, 2010-2014, 2014, 2017, 400, yksi</em></p>
<p>The 10 most frequent <code class="language-plaintext highlighter-rouge">NUM</code> types: <em>kolme, kaksi, seičče, 1994, 2010, 2010-2014, 2014, 2017, 400, kolmas</em></p>
<p>The 10 most frequent ambiguous lemmas: <em>kolme</em> (<tt><a href="olo_kkpp-pos-NUM.html">NUM</a></tt> 7, <tt><a href="olo_kkpp-pos-ADJ.html">ADJ</a></tt> 1)</p>
<p>The 10 most frequent ambiguous types: <em>kolmas</em> (<tt><a href="olo_kkpp-pos-ADJ.html">ADJ</a></tt> 1, <tt><a href="olo_kkpp-pos-NUM.html">NUM</a></tt> 1)</p>
<ul>
<li><em>kolmas</em>
<ul>
<li><tt><a href="olo_kkpp-pos-ADJ.html">ADJ</a></tt> 1: <em>Sit <b>kolmas</b> päivy mennäh taaste .</em></li>
<li><tt><a href="olo_kkpp-pos-NUM.html">NUM</a></tt> 1: <em>Muga briha sai saaris kaksi puččii d’engaa da vie <b>kolmas</b> d’äi vellakse .</em></li>
</ul>
</li>
</ul>
<h2 id="morphology">Morphology</h2>
<p>The form / lemma ratio of <code class="language-plaintext highlighter-rouge">NUM</code> is 1.200000 (the average of all parts of speech is 1.333901).</p>
<p>The 1st highest number of forms (3) was observed with the lemma “kolme”: <em>kolmas, kolme, kolmet</em>.</p>
<p>The 2nd highest number of forms (1) was observed with the lemma “1994”: <em>1994</em>.</p>
<p>The 3rd highest number of forms (1) was observed with the lemma “2010”: <em>2010</em>.</p>
<p><code class="language-plaintext highlighter-rouge">NUM</code> occurs with 3 features: <tt><a href="olo_kkpp-feat-Case.html">Case</a></tt> (16; 76% instances), <tt><a href="olo_kkpp-feat-Number.html">Number</a></tt> (16; 76% instances), <tt><a href="olo_kkpp-feat-NumType.html">NumType</a></tt> (14; 67% instances)</p>
<p><code class="language-plaintext highlighter-rouge">NUM</code> occurs with 6 feature-value pairs: <code class="language-plaintext highlighter-rouge">Case=Ins</code>, <code class="language-plaintext highlighter-rouge">Case=Nom</code>, <code class="language-plaintext highlighter-rouge">NumType=Card</code>, <code class="language-plaintext highlighter-rouge">NumType=Ord</code>, <code class="language-plaintext highlighter-rouge">Number=Plur</code>, <code class="language-plaintext highlighter-rouge">Number=Sing</code></p>
<p><code class="language-plaintext highlighter-rouge">NUM</code> occurs with 7 feature combinations.
The most frequent feature combination is <code class="language-plaintext highlighter-rouge">Case=Nom|Number=Sing|NumType=Card</code> (8 tokens).
Examples: <em>kolme, kaksi, seičče, yksi</em></p>
<h2 id="relations">Relations</h2>
<p><code class="language-plaintext highlighter-rouge">NUM</code> nodes are attached to their parents using 4 different relations: <tt><a href="olo_kkpp-dep-nummod.html">nummod</a></tt> (18; 86% instances), <tt><a href="olo_kkpp-dep-conj.html">conj</a></tt> (1; 5% instances), <tt><a href="olo_kkpp-dep-obj.html">obj</a></tt> (1; 5% instances), <tt><a href="olo_kkpp-dep-root.html">root</a></tt> (1; 5% instances)</p>
<p>Parents of <code class="language-plaintext highlighter-rouge">NUM</code> nodes belong to 5 different parts of speech: <tt><a href="olo_kkpp-pos-NOUN.html">NOUN</a></tt> (17; 81% instances), <tt><a href="olo_kkpp-pos-NUM.html">NUM</a></tt> (1; 5% instances), (1; 5% instances), <tt><a href="olo_kkpp-pos-VERB.html">VERB</a></tt> (1; 5% instances), <tt><a href="olo_kkpp-pos-X.html">X</a></tt> (1; 5% instances)</p>
<p>19 (90%) <code class="language-plaintext highlighter-rouge">NUM</code> nodes are leaves.</p>
<p>0 (0%) <code class="language-plaintext highlighter-rouge">NUM</code> nodes have one child.</p>
<p>1 (5%) <code class="language-plaintext highlighter-rouge">NUM</code> nodes have two children.</p>
<p>1 (5%) <code class="language-plaintext highlighter-rouge">NUM</code> nodes have three or more children.</p>
<p>The highest child degree of a <code class="language-plaintext highlighter-rouge">NUM</code> node is 5.</p>
<p>Children of <code class="language-plaintext highlighter-rouge">NUM</code> nodes are attached using 6 different relations: <tt><a href="olo_kkpp-dep-punct.html">punct</a></tt> (2; 29% instances), <tt><a href="olo_kkpp-dep-acl.html">acl</a></tt> (1; 14% instances), <tt><a href="olo_kkpp-dep-conj.html">conj</a></tt> (1; 14% instances), <tt><a href="olo_kkpp-dep-cop.html">cop</a></tt> (1; 14% instances), <tt><a href="olo_kkpp-dep-nsubj-cop.html">nsubj:cop</a></tt> (1; 14% instances), <tt><a href="olo_kkpp-dep-parataxis.html">parataxis</a></tt> (1; 14% instances)</p>
<p>Children of <code class="language-plaintext highlighter-rouge">NUM</code> nodes belong to 5 different parts of speech: <tt><a href="olo_kkpp-pos-NOUN.html">NOUN</a></tt> (2; 29% instances), <tt><a href="olo_kkpp-pos-PUNCT.html">PUNCT</a></tt> (2; 29% instances), <tt><a href="olo_kkpp-pos-AUX.html">AUX</a></tt> (1; 14% instances), <tt><a href="olo_kkpp-pos-NUM.html">NUM</a></tt> (1; 14% instances), <tt><a href="olo_kkpp-pos-VERB.html">VERB</a></tt> (1; 14% instances)</p>
</div>
<!-- support for embedded visualizations -->
<script type="text/javascript">
var root = '../../'; // filled in by jekyll
head.js(
// We assume that external libraries such as jquery.min.js have already been loaded outside!
// (See _layouts/base.html.)
// brat helper modules
root + 'lib/brat/configuration.js',
root + 'lib/brat/util.js',
root + 'lib/brat/annotation_log.js',
root + 'lib/ext/webfont.js',
// brat modules
root + 'lib/brat/dispatcher.js',
root + 'lib/brat/url_monitor.js',
root + 'lib/brat/visualizer.js',
// embedding configuration
root + 'lib/local/config.js',
// project-specific collection data
root + 'lib/local/collections.js',
// Annodoc
root + 'lib/annodoc/annodoc.js',
// NOTE: non-local libraries
'https://spyysalo.github.io/conllu.js/conllu.js'
);
var webFontURLs = [
// root + 'static/fonts/Astloch-Bold.ttf',
root + 'static/fonts/PT_Sans-Caption-Web-Regular.ttf',
root + 'static/fonts/Liberation_Sans-Regular.ttf'
];
var setupTimeago = function() {
jQuery("time.timeago").timeago();
};
head.ready(function() {
setupTimeago();
// mark current collection (filled in by Jekyll)
Collections.listing['_current'] = '';
// perform all embedding and support functions
Annodoc.activate(Config.bratCollData, Collections.listing);
});
</script>
<!-- google analytics -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-55233688-1', 'auto');
ga('send', 'pageview');
</script>
<div id="footer">
<p class="footer-text">© 2014–2021
<a href="http://universaldependencies.org/introduction.html#contributors" style="color:gray">Universal Dependencies contributors</a>.
Site powered by <a href="http://spyysalo.github.io/annodoc" style="color:gray">Annodoc</a> and <a href="http://brat.nlplab.org/" style="color:gray">brat</a></p>.
</div>
</div>
</body>
</html>
|
docs/assets/css/main.css | suwa-sh/compare-files | @import url("font-awesome.min.css");
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,300italic,400italic");
/*
Alpha by HTML5 UP
html5up.net | @ajlkn
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
*/
/* Reset */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
body {
-webkit-text-size-adjust: none;
}
/* Box Model */
*, *:before, *:after {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
/* Containers */
.container {
margin-left: auto;
margin-right: auto;
}
.container.\31 25\25 {
width: 100%;
max-width: 75em;
min-width: 60em;
}
.container.\37 5\25 {
width: 45em;
}
.container.\35 0\25 {
width: 30em;
}
.container.\32 5\25 {
width: 15em;
}
.container {
width: 60em;
}
@media screen and (max-width: 1680px) {
.container.\31 25\25 {
width: 100%;
max-width: 75em;
min-width: 60em;
}
.container.\37 5\25 {
width: 45em;
}
.container.\35 0\25 {
width: 30em;
}
.container.\32 5\25 {
width: 15em;
}
.container {
width: 60em;
}
}
@media screen and (max-width: 1280px) {
.container.\31 25\25 {
width: 100%;
max-width: 75em;
min-width: 60em;
}
.container.\37 5\25 {
width: 45em;
}
.container.\35 0\25 {
width: 30em;
}
.container.\32 5\25 {
width: 15em;
}
.container {
width: 60em;
}
}
@media screen and (max-width: 980px) {
.container.\31 25\25 {
width: 100%;
max-width: 112.5%;
min-width: 90%;
}
.container.\37 5\25 {
width: 67.5%;
}
.container.\35 0\25 {
width: 45%;
}
.container.\32 5\25 {
width: 22.5%;
}
.container {
width: 90%;
}
}
@media screen and (max-width: 840px) {
.container.\31 25\25 {
width: 100%;
max-width: 112.5%;
min-width: 90%;
}
.container.\37 5\25 {
width: 67.5%;
}
.container.\35 0\25 {
width: 45%;
}
.container.\32 5\25 {
width: 22.5%;
}
.container {
width: 90% !important;
}
}
@media screen and (max-width: 736px) {
.container.\31 25\25 {
width: 100%;
max-width: 125%;
min-width: 100%;
}
.container.\37 5\25 {
width: 75%;
}
.container.\35 0\25 {
width: 50%;
}
.container.\32 5\25 {
width: 25%;
}
.container {
width: 100% !important;
}
}
@media screen and (max-width: 480px) {
.container.\31 25\25 {
width: 100%;
max-width: 125%;
min-width: 100%;
}
.container.\37 5\25 {
width: 75%;
}
.container.\35 0\25 {
width: 50%;
}
.container.\32 5\25 {
width: 25%;
}
.container {
width: 100% !important;
}
}
/* Grid */
.row {
border-bottom: solid 1px transparent;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.row > * {
float: left;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.row:after, .row:before {
content: '';
display: block;
clear: both;
height: 0;
}
.row.uniform > * > :first-child {
margin-top: 0;
}
.row.uniform > * > :last-child {
margin-bottom: 0;
}
.row.\30 \25 > * {
padding: 0 0 0 0em;
}
.row.\30 \25 {
margin: 0 0 -1px 0em;
}
.row.uniform.\30 \25 > * {
padding: 0em 0 0 0em;
}
.row.uniform.\30 \25 {
margin: 0em 0 -1px 0em;
}
.row > * {
padding: 0 0 0 2em;
}
.row {
margin: 0 0 -1px -2em;
}
.row.uniform > * {
padding: 2em 0 0 2em;
}
.row.uniform {
margin: -2em 0 -1px -2em;
}
.row.\32 00\25 > * {
padding: 0 0 0 4em;
}
.row.\32 00\25 {
margin: 0 0 -1px -4em;
}
.row.uniform.\32 00\25 > * {
padding: 4em 0 0 4em;
}
.row.uniform.\32 00\25 {
margin: -4em 0 -1px -4em;
}
.row.\31 50\25 > * {
padding: 0 0 0 3em;
}
.row.\31 50\25 {
margin: 0 0 -1px -3em;
}
.row.uniform.\31 50\25 > * {
padding: 3em 0 0 3em;
}
.row.uniform.\31 50\25 {
margin: -3em 0 -1px -3em;
}
.row.\35 0\25 > * {
padding: 0 0 0 1em;
}
.row.\35 0\25 {
margin: 0 0 -1px -1em;
}
.row.uniform.\35 0\25 > * {
padding: 1em 0 0 1em;
}
.row.uniform.\35 0\25 {
margin: -1em 0 -1px -1em;
}
.row.\32 5\25 > * {
padding: 0 0 0 0.5em;
}
.row.\32 5\25 {
margin: 0 0 -1px -0.5em;
}
.row.uniform.\32 5\25 > * {
padding: 0.5em 0 0 0.5em;
}
.row.uniform.\32 5\25 {
margin: -0.5em 0 -1px -0.5em;
}
.\31 2u, .\31 2u\24 {
width: 100%;
clear: none;
margin-left: 0;
}
.\31 1u, .\31 1u\24 {
width: 91.6666666667%;
clear: none;
margin-left: 0;
}
.\31 0u, .\31 0u\24 {
width: 83.3333333333%;
clear: none;
margin-left: 0;
}
.\39 u, .\39 u\24 {
width: 75%;
clear: none;
margin-left: 0;
}
.\38 u, .\38 u\24 {
width: 66.6666666667%;
clear: none;
margin-left: 0;
}
.\37 u, .\37 u\24 {
width: 58.3333333333%;
clear: none;
margin-left: 0;
}
.\36 u, .\36 u\24 {
width: 50%;
clear: none;
margin-left: 0;
}
.\35 u, .\35 u\24 {
width: 41.6666666667%;
clear: none;
margin-left: 0;
}
.\34 u, .\34 u\24 {
width: 33.3333333333%;
clear: none;
margin-left: 0;
}
.\33 u, .\33 u\24 {
width: 25%;
clear: none;
margin-left: 0;
}
.\32 u, .\32 u\24 {
width: 16.6666666667%;
clear: none;
margin-left: 0;
}
.\31 u, .\31 u\24 {
width: 8.3333333333%;
clear: none;
margin-left: 0;
}
.\31 2u\24 + *,
.\31 1u\24 + *,
.\31 0u\24 + *,
.\39 u\24 + *,
.\38 u\24 + *,
.\37 u\24 + *,
.\36 u\24 + *,
.\35 u\24 + *,
.\34 u\24 + *,
.\33 u\24 + *,
.\32 u\24 + *,
.\31 u\24 + * {
clear: left;
}
.\-11u {
margin-left: 91.66667%;
}
.\-10u {
margin-left: 83.33333%;
}
.\-9u {
margin-left: 75%;
}
.\-8u {
margin-left: 66.66667%;
}
.\-7u {
margin-left: 58.33333%;
}
.\-6u {
margin-left: 50%;
}
.\-5u {
margin-left: 41.66667%;
}
.\-4u {
margin-left: 33.33333%;
}
.\-3u {
margin-left: 25%;
}
.\-2u {
margin-left: 16.66667%;
}
.\-1u {
margin-left: 8.33333%;
}
@media screen and (max-width: 1680px) {
.row > * {
padding: 0 0 0 2em;
}
.row {
margin: 0 0 -1px -2em;
}
.row.uniform > * {
padding: 2em 0 0 2em;
}
.row.uniform {
margin: -2em 0 -1px -2em;
}
.row.\32 00\25 > * {
padding: 0 0 0 4em;
}
.row.\32 00\25 {
margin: 0 0 -1px -4em;
}
.row.uniform.\32 00\25 > * {
padding: 4em 0 0 4em;
}
.row.uniform.\32 00\25 {
margin: -4em 0 -1px -4em;
}
.row.\31 50\25 > * {
padding: 0 0 0 3em;
}
.row.\31 50\25 {
margin: 0 0 -1px -3em;
}
.row.uniform.\31 50\25 > * {
padding: 3em 0 0 3em;
}
.row.uniform.\31 50\25 {
margin: -3em 0 -1px -3em;
}
.row.\35 0\25 > * {
padding: 0 0 0 1em;
}
.row.\35 0\25 {
margin: 0 0 -1px -1em;
}
.row.uniform.\35 0\25 > * {
padding: 1em 0 0 1em;
}
.row.uniform.\35 0\25 {
margin: -1em 0 -1px -1em;
}
.row.\32 5\25 > * {
padding: 0 0 0 0.5em;
}
.row.\32 5\25 {
margin: 0 0 -1px -0.5em;
}
.row.uniform.\32 5\25 > * {
padding: 0.5em 0 0 0.5em;
}
.row.uniform.\32 5\25 {
margin: -0.5em 0 -1px -0.5em;
}
.\31 2u\28wide\29, .\31 2u\24\28wide\29 {
width: 100%;
clear: none;
margin-left: 0;
}
.\31 1u\28wide\29, .\31 1u\24\28wide\29 {
width: 91.6666666667%;
clear: none;
margin-left: 0;
}
.\31 0u\28wide\29, .\31 0u\24\28wide\29 {
width: 83.3333333333%;
clear: none;
margin-left: 0;
}
.\39 u\28wide\29, .\39 u\24\28wide\29 {
width: 75%;
clear: none;
margin-left: 0;
}
.\38 u\28wide\29, .\38 u\24\28wide\29 {
width: 66.6666666667%;
clear: none;
margin-left: 0;
}
.\37 u\28wide\29, .\37 u\24\28wide\29 {
width: 58.3333333333%;
clear: none;
margin-left: 0;
}
.\36 u\28wide\29, .\36 u\24\28wide\29 {
width: 50%;
clear: none;
margin-left: 0;
}
.\35 u\28wide\29, .\35 u\24\28wide\29 {
width: 41.6666666667%;
clear: none;
margin-left: 0;
}
.\34 u\28wide\29, .\34 u\24\28wide\29 {
width: 33.3333333333%;
clear: none;
margin-left: 0;
}
.\33 u\28wide\29, .\33 u\24\28wide\29 {
width: 25%;
clear: none;
margin-left: 0;
}
.\32 u\28wide\29, .\32 u\24\28wide\29 {
width: 16.6666666667%;
clear: none;
margin-left: 0;
}
.\31 u\28wide\29, .\31 u\24\28wide\29 {
width: 8.3333333333%;
clear: none;
margin-left: 0;
}
.\31 2u\24\28wide\29 + *,
.\31 1u\24\28wide\29 + *,
.\31 0u\24\28wide\29 + *,
.\39 u\24\28wide\29 + *,
.\38 u\24\28wide\29 + *,
.\37 u\24\28wide\29 + *,
.\36 u\24\28wide\29 + *,
.\35 u\24\28wide\29 + *,
.\34 u\24\28wide\29 + *,
.\33 u\24\28wide\29 + *,
.\32 u\24\28wide\29 + *,
.\31 u\24\28wide\29 + * {
clear: left;
}
.\-11u\28wide\29 {
margin-left: 91.66667%;
}
.\-10u\28wide\29 {
margin-left: 83.33333%;
}
.\-9u\28wide\29 {
margin-left: 75%;
}
.\-8u\28wide\29 {
margin-left: 66.66667%;
}
.\-7u\28wide\29 {
margin-left: 58.33333%;
}
.\-6u\28wide\29 {
margin-left: 50%;
}
.\-5u\28wide\29 {
margin-left: 41.66667%;
}
.\-4u\28wide\29 {
margin-left: 33.33333%;
}
.\-3u\28wide\29 {
margin-left: 25%;
}
.\-2u\28wide\29 {
margin-left: 16.66667%;
}
.\-1u\28wide\29 {
margin-left: 8.33333%;
}
}
@media screen and (max-width: 1280px) {
.row > * {
padding: 0 0 0 2em;
}
.row {
margin: 0 0 -1px -2em;
}
.row.uniform > * {
padding: 2em 0 0 2em;
}
.row.uniform {
margin: -2em 0 -1px -2em;
}
.row.\32 00\25 > * {
padding: 0 0 0 4em;
}
.row.\32 00\25 {
margin: 0 0 -1px -4em;
}
.row.uniform.\32 00\25 > * {
padding: 4em 0 0 4em;
}
.row.uniform.\32 00\25 {
margin: -4em 0 -1px -4em;
}
.row.\31 50\25 > * {
padding: 0 0 0 3em;
}
.row.\31 50\25 {
margin: 0 0 -1px -3em;
}
.row.uniform.\31 50\25 > * {
padding: 3em 0 0 3em;
}
.row.uniform.\31 50\25 {
margin: -3em 0 -1px -3em;
}
.row.\35 0\25 > * {
padding: 0 0 0 1em;
}
.row.\35 0\25 {
margin: 0 0 -1px -1em;
}
.row.uniform.\35 0\25 > * {
padding: 1em 0 0 1em;
}
.row.uniform.\35 0\25 {
margin: -1em 0 -1px -1em;
}
.row.\32 5\25 > * {
padding: 0 0 0 0.5em;
}
.row.\32 5\25 {
margin: 0 0 -1px -0.5em;
}
.row.uniform.\32 5\25 > * {
padding: 0.5em 0 0 0.5em;
}
.row.uniform.\32 5\25 {
margin: -0.5em 0 -1px -0.5em;
}
.\31 2u\28normal\29, .\31 2u\24\28normal\29 {
width: 100%;
clear: none;
margin-left: 0;
}
.\31 1u\28normal\29, .\31 1u\24\28normal\29 {
width: 91.6666666667%;
clear: none;
margin-left: 0;
}
.\31 0u\28normal\29, .\31 0u\24\28normal\29 {
width: 83.3333333333%;
clear: none;
margin-left: 0;
}
.\39 u\28normal\29, .\39 u\24\28normal\29 {
width: 75%;
clear: none;
margin-left: 0;
}
.\38 u\28normal\29, .\38 u\24\28normal\29 {
width: 66.6666666667%;
clear: none;
margin-left: 0;
}
.\37 u\28normal\29, .\37 u\24\28normal\29 {
width: 58.3333333333%;
clear: none;
margin-left: 0;
}
.\36 u\28normal\29, .\36 u\24\28normal\29 {
width: 50%;
clear: none;
margin-left: 0;
}
.\35 u\28normal\29, .\35 u\24\28normal\29 {
width: 41.6666666667%;
clear: none;
margin-left: 0;
}
.\34 u\28normal\29, .\34 u\24\28normal\29 {
width: 33.3333333333%;
clear: none;
margin-left: 0;
}
.\33 u\28normal\29, .\33 u\24\28normal\29 {
width: 25%;
clear: none;
margin-left: 0;
}
.\32 u\28normal\29, .\32 u\24\28normal\29 {
width: 16.6666666667%;
clear: none;
margin-left: 0;
}
.\31 u\28normal\29, .\31 u\24\28normal\29 {
width: 8.3333333333%;
clear: none;
margin-left: 0;
}
.\31 2u\24\28normal\29 + *,
.\31 1u\24\28normal\29 + *,
.\31 0u\24\28normal\29 + *,
.\39 u\24\28normal\29 + *,
.\38 u\24\28normal\29 + *,
.\37 u\24\28normal\29 + *,
.\36 u\24\28normal\29 + *,
.\35 u\24\28normal\29 + *,
.\34 u\24\28normal\29 + *,
.\33 u\24\28normal\29 + *,
.\32 u\24\28normal\29 + *,
.\31 u\24\28normal\29 + * {
clear: left;
}
.\-11u\28normal\29 {
margin-left: 91.66667%;
}
.\-10u\28normal\29 {
margin-left: 83.33333%;
}
.\-9u\28normal\29 {
margin-left: 75%;
}
.\-8u\28normal\29 {
margin-left: 66.66667%;
}
.\-7u\28normal\29 {
margin-left: 58.33333%;
}
.\-6u\28normal\29 {
margin-left: 50%;
}
.\-5u\28normal\29 {
margin-left: 41.66667%;
}
.\-4u\28normal\29 {
margin-left: 33.33333%;
}
.\-3u\28normal\29 {
margin-left: 25%;
}
.\-2u\28normal\29 {
margin-left: 16.66667%;
}
.\-1u\28normal\29 {
margin-left: 8.33333%;
}
}
@media screen and (max-width: 980px) {
.row > * {
padding: 0 0 0 2em;
}
.row {
margin: 0 0 -1px -2em;
}
.row.uniform > * {
padding: 2em 0 0 2em;
}
.row.uniform {
margin: -2em 0 -1px -2em;
}
.row.\32 00\25 > * {
padding: 0 0 0 4em;
}
.row.\32 00\25 {
margin: 0 0 -1px -4em;
}
.row.uniform.\32 00\25 > * {
padding: 4em 0 0 4em;
}
.row.uniform.\32 00\25 {
margin: -4em 0 -1px -4em;
}
.row.\31 50\25 > * {
padding: 0 0 0 3em;
}
.row.\31 50\25 {
margin: 0 0 -1px -3em;
}
.row.uniform.\31 50\25 > * {
padding: 3em 0 0 3em;
}
.row.uniform.\31 50\25 {
margin: -3em 0 -1px -3em;
}
.row.\35 0\25 > * {
padding: 0 0 0 1em;
}
.row.\35 0\25 {
margin: 0 0 -1px -1em;
}
.row.uniform.\35 0\25 > * {
padding: 1em 0 0 1em;
}
.row.uniform.\35 0\25 {
margin: -1em 0 -1px -1em;
}
.row.\32 5\25 > * {
padding: 0 0 0 0.5em;
}
.row.\32 5\25 {
margin: 0 0 -1px -0.5em;
}
.row.uniform.\32 5\25 > * {
padding: 0.5em 0 0 0.5em;
}
.row.uniform.\32 5\25 {
margin: -0.5em 0 -1px -0.5em;
}
.\31 2u\28narrow\29, .\31 2u\24\28narrow\29 {
width: 100%;
clear: none;
margin-left: 0;
}
.\31 1u\28narrow\29, .\31 1u\24\28narrow\29 {
width: 91.6666666667%;
clear: none;
margin-left: 0;
}
.\31 0u\28narrow\29, .\31 0u\24\28narrow\29 {
width: 83.3333333333%;
clear: none;
margin-left: 0;
}
.\39 u\28narrow\29, .\39 u\24\28narrow\29 {
width: 75%;
clear: none;
margin-left: 0;
}
.\38 u\28narrow\29, .\38 u\24\28narrow\29 {
width: 66.6666666667%;
clear: none;
margin-left: 0;
}
.\37 u\28narrow\29, .\37 u\24\28narrow\29 {
width: 58.3333333333%;
clear: none;
margin-left: 0;
}
.\36 u\28narrow\29, .\36 u\24\28narrow\29 {
width: 50%;
clear: none;
margin-left: 0;
}
.\35 u\28narrow\29, .\35 u\24\28narrow\29 {
width: 41.6666666667%;
clear: none;
margin-left: 0;
}
.\34 u\28narrow\29, .\34 u\24\28narrow\29 {
width: 33.3333333333%;
clear: none;
margin-left: 0;
}
.\33 u\28narrow\29, .\33 u\24\28narrow\29 {
width: 25%;
clear: none;
margin-left: 0;
}
.\32 u\28narrow\29, .\32 u\24\28narrow\29 {
width: 16.6666666667%;
clear: none;
margin-left: 0;
}
.\31 u\28narrow\29, .\31 u\24\28narrow\29 {
width: 8.3333333333%;
clear: none;
margin-left: 0;
}
.\31 2u\24\28narrow\29 + *,
.\31 1u\24\28narrow\29 + *,
.\31 0u\24\28narrow\29 + *,
.\39 u\24\28narrow\29 + *,
.\38 u\24\28narrow\29 + *,
.\37 u\24\28narrow\29 + *,
.\36 u\24\28narrow\29 + *,
.\35 u\24\28narrow\29 + *,
.\34 u\24\28narrow\29 + *,
.\33 u\24\28narrow\29 + *,
.\32 u\24\28narrow\29 + *,
.\31 u\24\28narrow\29 + * {
clear: left;
}
.\-11u\28narrow\29 {
margin-left: 91.66667%;
}
.\-10u\28narrow\29 {
margin-left: 83.33333%;
}
.\-9u\28narrow\29 {
margin-left: 75%;
}
.\-8u\28narrow\29 {
margin-left: 66.66667%;
}
.\-7u\28narrow\29 {
margin-left: 58.33333%;
}
.\-6u\28narrow\29 {
margin-left: 50%;
}
.\-5u\28narrow\29 {
margin-left: 41.66667%;
}
.\-4u\28narrow\29 {
margin-left: 33.33333%;
}
.\-3u\28narrow\29 {
margin-left: 25%;
}
.\-2u\28narrow\29 {
margin-left: 16.66667%;
}
.\-1u\28narrow\29 {
margin-left: 8.33333%;
}
}
@media screen and (max-width: 840px) {
.row > * {
padding: 0 0 0 2em;
}
.row {
margin: 0 0 -1px -2em;
}
.row.uniform > * {
padding: 2em 0 0 2em;
}
.row.uniform {
margin: -2em 0 -1px -2em;
}
.row.\32 00\25 > * {
padding: 0 0 0 4em;
}
.row.\32 00\25 {
margin: 0 0 -1px -4em;
}
.row.uniform.\32 00\25 > * {
padding: 4em 0 0 4em;
}
.row.uniform.\32 00\25 {
margin: -4em 0 -1px -4em;
}
.row.\31 50\25 > * {
padding: 0 0 0 3em;
}
.row.\31 50\25 {
margin: 0 0 -1px -3em;
}
.row.uniform.\31 50\25 > * {
padding: 3em 0 0 3em;
}
.row.uniform.\31 50\25 {
margin: -3em 0 -1px -3em;
}
.row.\35 0\25 > * {
padding: 0 0 0 1em;
}
.row.\35 0\25 {
margin: 0 0 -1px -1em;
}
.row.uniform.\35 0\25 > * {
padding: 1em 0 0 1em;
}
.row.uniform.\35 0\25 {
margin: -1em 0 -1px -1em;
}
.row.\32 5\25 > * {
padding: 0 0 0 0.5em;
}
.row.\32 5\25 {
margin: 0 0 -1px -0.5em;
}
.row.uniform.\32 5\25 > * {
padding: 0.5em 0 0 0.5em;
}
.row.uniform.\32 5\25 {
margin: -0.5em 0 -1px -0.5em;
}
.\31 2u\28narrower\29, .\31 2u\24\28narrower\29 {
width: 100%;
clear: none;
margin-left: 0;
}
.\31 1u\28narrower\29, .\31 1u\24\28narrower\29 {
width: 91.6666666667%;
clear: none;
margin-left: 0;
}
.\31 0u\28narrower\29, .\31 0u\24\28narrower\29 {
width: 83.3333333333%;
clear: none;
margin-left: 0;
}
.\39 u\28narrower\29, .\39 u\24\28narrower\29 {
width: 75%;
clear: none;
margin-left: 0;
}
.\38 u\28narrower\29, .\38 u\24\28narrower\29 {
width: 66.6666666667%;
clear: none;
margin-left: 0;
}
.\37 u\28narrower\29, .\37 u\24\28narrower\29 {
width: 58.3333333333%;
clear: none;
margin-left: 0;
}
.\36 u\28narrower\29, .\36 u\24\28narrower\29 {
width: 50%;
clear: none;
margin-left: 0;
}
.\35 u\28narrower\29, .\35 u\24\28narrower\29 {
width: 41.6666666667%;
clear: none;
margin-left: 0;
}
.\34 u\28narrower\29, .\34 u\24\28narrower\29 {
width: 33.3333333333%;
clear: none;
margin-left: 0;
}
.\33 u\28narrower\29, .\33 u\24\28narrower\29 {
width: 25%;
clear: none;
margin-left: 0;
}
.\32 u\28narrower\29, .\32 u\24\28narrower\29 {
width: 16.6666666667%;
clear: none;
margin-left: 0;
}
.\31 u\28narrower\29, .\31 u\24\28narrower\29 {
width: 8.3333333333%;
clear: none;
margin-left: 0;
}
.\31 2u\24\28narrower\29 + *,
.\31 1u\24\28narrower\29 + *,
.\31 0u\24\28narrower\29 + *,
.\39 u\24\28narrower\29 + *,
.\38 u\24\28narrower\29 + *,
.\37 u\24\28narrower\29 + *,
.\36 u\24\28narrower\29 + *,
.\35 u\24\28narrower\29 + *,
.\34 u\24\28narrower\29 + *,
.\33 u\24\28narrower\29 + *,
.\32 u\24\28narrower\29 + *,
.\31 u\24\28narrower\29 + * {
clear: left;
}
.\-11u\28narrower\29 {
margin-left: 91.66667%;
}
.\-10u\28narrower\29 {
margin-left: 83.33333%;
}
.\-9u\28narrower\29 {
margin-left: 75%;
}
.\-8u\28narrower\29 {
margin-left: 66.66667%;
}
.\-7u\28narrower\29 {
margin-left: 58.33333%;
}
.\-6u\28narrower\29 {
margin-left: 50%;
}
.\-5u\28narrower\29 {
margin-left: 41.66667%;
}
.\-4u\28narrower\29 {
margin-left: 33.33333%;
}
.\-3u\28narrower\29 {
margin-left: 25%;
}
.\-2u\28narrower\29 {
margin-left: 16.66667%;
}
.\-1u\28narrower\29 {
margin-left: 8.33333%;
}
}
@media screen and (max-width: 736px) {
.row > * {
padding: 0 0 0 2em;
}
.row {
margin: 0 0 -1px -2em;
}
.row.uniform > * {
padding: 2em 0 0 2em;
}
.row.uniform {
margin: -2em 0 -1px -2em;
}
.row.\32 00\25 > * {
padding: 0 0 0 4em;
}
.row.\32 00\25 {
margin: 0 0 -1px -4em;
}
.row.uniform.\32 00\25 > * {
padding: 4em 0 0 4em;
}
.row.uniform.\32 00\25 {
margin: -4em 0 -1px -4em;
}
.row.\31 50\25 > * {
padding: 0 0 0 3em;
}
.row.\31 50\25 {
margin: 0 0 -1px -3em;
}
.row.uniform.\31 50\25 > * {
padding: 3em 0 0 3em;
}
.row.uniform.\31 50\25 {
margin: -3em 0 -1px -3em;
}
.row.\35 0\25 > * {
padding: 0 0 0 1em;
}
.row.\35 0\25 {
margin: 0 0 -1px -1em;
}
.row.uniform.\35 0\25 > * {
padding: 1em 0 0 1em;
}
.row.uniform.\35 0\25 {
margin: -1em 0 -1px -1em;
}
.row.\32 5\25 > * {
padding: 0 0 0 0.5em;
}
.row.\32 5\25 {
margin: 0 0 -1px -0.5em;
}
.row.uniform.\32 5\25 > * {
padding: 0.5em 0 0 0.5em;
}
.row.uniform.\32 5\25 {
margin: -0.5em 0 -1px -0.5em;
}
.\31 2u\28mobile\29, .\31 2u\24\28mobile\29 {
width: 100%;
clear: none;
margin-left: 0;
}
.\31 1u\28mobile\29, .\31 1u\24\28mobile\29 {
width: 91.6666666667%;
clear: none;
margin-left: 0;
}
.\31 0u\28mobile\29, .\31 0u\24\28mobile\29 {
width: 83.3333333333%;
clear: none;
margin-left: 0;
}
.\39 u\28mobile\29, .\39 u\24\28mobile\29 {
width: 75%;
clear: none;
margin-left: 0;
}
.\38 u\28mobile\29, .\38 u\24\28mobile\29 {
width: 66.6666666667%;
clear: none;
margin-left: 0;
}
.\37 u\28mobile\29, .\37 u\24\28mobile\29 {
width: 58.3333333333%;
clear: none;
margin-left: 0;
}
.\36 u\28mobile\29, .\36 u\24\28mobile\29 {
width: 50%;
clear: none;
margin-left: 0;
}
.\35 u\28mobile\29, .\35 u\24\28mobile\29 {
width: 41.6666666667%;
clear: none;
margin-left: 0;
}
.\34 u\28mobile\29, .\34 u\24\28mobile\29 {
width: 33.3333333333%;
clear: none;
margin-left: 0;
}
.\33 u\28mobile\29, .\33 u\24\28mobile\29 {
width: 25%;
clear: none;
margin-left: 0;
}
.\32 u\28mobile\29, .\32 u\24\28mobile\29 {
width: 16.6666666667%;
clear: none;
margin-left: 0;
}
.\31 u\28mobile\29, .\31 u\24\28mobile\29 {
width: 8.3333333333%;
clear: none;
margin-left: 0;
}
.\31 2u\24\28mobile\29 + *,
.\31 1u\24\28mobile\29 + *,
.\31 0u\24\28mobile\29 + *,
.\39 u\24\28mobile\29 + *,
.\38 u\24\28mobile\29 + *,
.\37 u\24\28mobile\29 + *,
.\36 u\24\28mobile\29 + *,
.\35 u\24\28mobile\29 + *,
.\34 u\24\28mobile\29 + *,
.\33 u\24\28mobile\29 + *,
.\32 u\24\28mobile\29 + *,
.\31 u\24\28mobile\29 + * {
clear: left;
}
.\-11u\28mobile\29 {
margin-left: 91.66667%;
}
.\-10u\28mobile\29 {
margin-left: 83.33333%;
}
.\-9u\28mobile\29 {
margin-left: 75%;
}
.\-8u\28mobile\29 {
margin-left: 66.66667%;
}
.\-7u\28mobile\29 {
margin-left: 58.33333%;
}
.\-6u\28mobile\29 {
margin-left: 50%;
}
.\-5u\28mobile\29 {
margin-left: 41.66667%;
}
.\-4u\28mobile\29 {
margin-left: 33.33333%;
}
.\-3u\28mobile\29 {
margin-left: 25%;
}
.\-2u\28mobile\29 {
margin-left: 16.66667%;
}
.\-1u\28mobile\29 {
margin-left: 8.33333%;
}
}
@media screen and (max-width: 480px) {
.row > * {
padding: 0 0 0 2em;
}
.row {
margin: 0 0 -1px -2em;
}
.row.uniform > * {
padding: 2em 0 0 2em;
}
.row.uniform {
margin: -2em 0 -1px -2em;
}
.row.\32 00\25 > * {
padding: 0 0 0 4em;
}
.row.\32 00\25 {
margin: 0 0 -1px -4em;
}
.row.uniform.\32 00\25 > * {
padding: 4em 0 0 4em;
}
.row.uniform.\32 00\25 {
margin: -4em 0 -1px -4em;
}
.row.\31 50\25 > * {
padding: 0 0 0 3em;
}
.row.\31 50\25 {
margin: 0 0 -1px -3em;
}
.row.uniform.\31 50\25 > * {
padding: 3em 0 0 3em;
}
.row.uniform.\31 50\25 {
margin: -3em 0 -1px -3em;
}
.row.\35 0\25 > * {
padding: 0 0 0 1em;
}
.row.\35 0\25 {
margin: 0 0 -1px -1em;
}
.row.uniform.\35 0\25 > * {
padding: 1em 0 0 1em;
}
.row.uniform.\35 0\25 {
margin: -1em 0 -1px -1em;
}
.row.\32 5\25 > * {
padding: 0 0 0 0.5em;
}
.row.\32 5\25 {
margin: 0 0 -1px -0.5em;
}
.row.uniform.\32 5\25 > * {
padding: 0.5em 0 0 0.5em;
}
.row.uniform.\32 5\25 {
margin: -0.5em 0 -1px -0.5em;
}
.\31 2u\28mobilep\29, .\31 2u\24\28mobilep\29 {
width: 100%;
clear: none;
margin-left: 0;
}
.\31 1u\28mobilep\29, .\31 1u\24\28mobilep\29 {
width: 91.6666666667%;
clear: none;
margin-left: 0;
}
.\31 0u\28mobilep\29, .\31 0u\24\28mobilep\29 {
width: 83.3333333333%;
clear: none;
margin-left: 0;
}
.\39 u\28mobilep\29, .\39 u\24\28mobilep\29 {
width: 75%;
clear: none;
margin-left: 0;
}
.\38 u\28mobilep\29, .\38 u\24\28mobilep\29 {
width: 66.6666666667%;
clear: none;
margin-left: 0;
}
.\37 u\28mobilep\29, .\37 u\24\28mobilep\29 {
width: 58.3333333333%;
clear: none;
margin-left: 0;
}
.\36 u\28mobilep\29, .\36 u\24\28mobilep\29 {
width: 50%;
clear: none;
margin-left: 0;
}
.\35 u\28mobilep\29, .\35 u\24\28mobilep\29 {
width: 41.6666666667%;
clear: none;
margin-left: 0;
}
.\34 u\28mobilep\29, .\34 u\24\28mobilep\29 {
width: 33.3333333333%;
clear: none;
margin-left: 0;
}
.\33 u\28mobilep\29, .\33 u\24\28mobilep\29 {
width: 25%;
clear: none;
margin-left: 0;
}
.\32 u\28mobilep\29, .\32 u\24\28mobilep\29 {
width: 16.6666666667%;
clear: none;
margin-left: 0;
}
.\31 u\28mobilep\29, .\31 u\24\28mobilep\29 {
width: 8.3333333333%;
clear: none;
margin-left: 0;
}
.\31 2u\24\28mobilep\29 + *,
.\31 1u\24\28mobilep\29 + *,
.\31 0u\24\28mobilep\29 + *,
.\39 u\24\28mobilep\29 + *,
.\38 u\24\28mobilep\29 + *,
.\37 u\24\28mobilep\29 + *,
.\36 u\24\28mobilep\29 + *,
.\35 u\24\28mobilep\29 + *,
.\34 u\24\28mobilep\29 + *,
.\33 u\24\28mobilep\29 + *,
.\32 u\24\28mobilep\29 + *,
.\31 u\24\28mobilep\29 + * {
clear: left;
}
.\-11u\28mobilep\29 {
margin-left: 91.66667%;
}
.\-10u\28mobilep\29 {
margin-left: 83.33333%;
}
.\-9u\28mobilep\29 {
margin-left: 75%;
}
.\-8u\28mobilep\29 {
margin-left: 66.66667%;
}
.\-7u\28mobilep\29 {
margin-left: 58.33333%;
}
.\-6u\28mobilep\29 {
margin-left: 50%;
}
.\-5u\28mobilep\29 {
margin-left: 41.66667%;
}
.\-4u\28mobilep\29 {
margin-left: 33.33333%;
}
.\-3u\28mobilep\29 {
margin-left: 25%;
}
.\-2u\28mobilep\29 {
margin-left: 16.66667%;
}
.\-1u\28mobilep\29 {
margin-left: 8.33333%;
}
}
/* Basic */
body {
background: #f5f5f5;
}
body, input, select, textarea {
color: #777;
font-family: "Source Sans Pro", sans-serif;
font-size: 16pt;
font-weight: 300;
line-height: 1.65em;
letter-spacing: -0.015em;
}
a {
-moz-transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
-webkit-transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
-ms-transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
border-bottom: dotted 1px;
color: #e89980;
text-decoration: none;
}
a:hover {
border-bottom-color: transparent;
}
strong, b {
color: #646464;
font-weight: 400;
}
em, i {
font-style: italic;
}
p {
margin: 0 0 2em 0;
}
h1, h2, h3, h4, h5, h6 {
color: #646464;
font-weight: 300;
line-height: 1em;
margin: 0 0 0.5em 0;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
color: inherit;
text-decoration: none;
}
h2 {
font-size: 2.25em;
line-height: 1.5em;
letter-spacing: -0.035em;
}
h3 {
font-size: 1.75em;
line-height: 1.5em;
letter-spacing: -0.025em;
}
h4 {
font-size: 1.1em;
line-height: 1.5em;
letter-spacing: 0;
}
h5 {
font-size: 0.9em;
line-height: 1.5em;
letter-spacing: 0;
}
h6 {
font-size: 0.7em;
line-height: 1.5em;
letter-spacing: 0;
}
sub {
font-size: 0.8em;
position: relative;
top: 0.5em;
}
sup {
font-size: 0.8em;
position: relative;
top: -0.5em;
}
hr {
border: 0;
border-bottom: solid 2px #e5e5e5;
margin: 2em 0;
}
hr.major {
margin: 3em 0;
}
blockquote {
border-left: solid 4px #e5e5e5;
font-style: italic;
margin: 0 0 2em 0;
padding: 0.5em 0 0.5em 2em;
}
pre {
-webkit-overflow-scrolling: touch;
background: #f8f8f8;
border-radius: 6px;
border: solid 1px #e5e5e5;
font-family: monospace;
font-size: 0.9em;
line-height: 1.75em;
margin: 0 0 2em 0;
overflow-x: auto;
padding: 1em 1.5em;
}
code {
background: #f8f8f8;
border-radius: 6px;
border: solid 1px #e5e5e5;
font-family: monospace;
font-size: 0.9em;
margin: 0 0.25em;
padding: 0.25em 0.65em;
}
.align-left {
text-align: left;
}
.align-center {
text-align: center;
}
.align-right {
text-align: right;
}
/* Section/Article */
section.special, article.special {
text-align: center;
}
header p {
color: #999;
position: relative;
margin: 0 0 1.5em 0;
font-style: italic;
}
header h2 + p {
font-size: 1.25em;
margin-top: -1em;
line-height: 1.5em;
}
header h3 + p {
font-size: 1.1em;
margin-top: -0.85em;
line-height: 1.5em;
}
header h4 + p,
header h5 + p,
header h6 + p {
font-size: 0.8em;
margin-top: -0.5em;
line-height: 1.5em;
}
header.major {
padding: 1em 0;
text-align: center;
}
header.major h2 {
margin: 0;
}
header.major p {
display: inline-block;
border-top: solid 2px #e5e5e5;
color: #777;
margin: 1.5em 0 0 0;
padding: 1.5em 0 0 0;
font-style: normal;
}
/* Form */
form {
margin: 0 0 2em 0;
}
label {
color: #646464;
display: block;
font-size: 0.9em;
font-weight: 300;
margin: 0 0 1em 0;
}
input[type="text"],
input[type="password"],
input[type="email"],
select,
textarea {
-moz-appearance: none;
-webkit-appearance: none;
-ms-appearance: none;
appearance: none;
background: #f8f8f8;
border-radius: 6px;
border: solid 1px #e5e5e5;
color: inherit;
display: block;
outline: 0;
padding: 0 1em;
text-decoration: none;
width: 100%;
}
input[type="text"]:invalid,
input[type="password"]:invalid,
input[type="email"]:invalid,
select:invalid,
textarea:invalid {
box-shadow: none;
}
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
border-color: #e89980;
box-shadow: 0 0 0 2px #e89980;
}
.select-wrapper {
text-decoration: none;
display: block;
position: relative;
}
.select-wrapper:before {
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
font-family: FontAwesome;
font-style: normal;
font-weight: normal;
text-transform: none !important;
}
.select-wrapper:before {
color: #e5e5e5;
content: '\f078';
display: block;
height: 3em;
line-height: 3em;
pointer-events: none;
position: absolute;
right: 0;
text-align: center;
top: 0;
width: 3em;
}
.select-wrapper select::-ms-expand {
display: none;
}
input[type="text"],
input[type="password"],
input[type="email"],
select {
height: 3em;
}
textarea {
padding: 0.75em 1em;
}
input[type="checkbox"],
input[type="radio"] {
-moz-appearance: none;
-webkit-appearance: none;
-ms-appearance: none;
appearance: none;
display: block;
float: left;
margin-right: -2em;
opacity: 0;
width: 1em;
z-index: -1;
}
input[type="checkbox"] + label,
input[type="radio"] + label {
text-decoration: none;
color: #777;
cursor: pointer;
display: inline-block;
font-size: 1em;
font-weight: 300;
padding-left: 2.55em;
padding-right: 0.75em;
position: relative;
}
input[type="checkbox"] + label:before,
input[type="radio"] + label:before {
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
font-family: FontAwesome;
font-style: normal;
font-weight: normal;
text-transform: none !important;
}
input[type="checkbox"] + label:before,
input[type="radio"] + label:before {
background: #f8f8f8;
border-radius: 6px;
border: solid 1px #e5e5e5;
content: '';
display: inline-block;
height: 1.8em;
left: 0;
line-height: 1.725em;
position: absolute;
text-align: center;
top: 0;
width: 1.8em;
}
input[type="checkbox"]:checked + label:before,
input[type="radio"]:checked + label:before {
background: #666;
border-color: #666;
color: #ffffff;
content: '\f00c';
}
input[type="checkbox"]:focus + label:before,
input[type="radio"]:focus + label:before {
border-color: #e89980;
box-shadow: 0 0 0 1px #e89980;
}
input[type="checkbox"] + label:before {
border-radius: 6px;
}
input[type="radio"] + label:before {
border-radius: 100%;
}
::-webkit-input-placeholder {
color: #999 !important;
opacity: 1.0;
}
:-moz-placeholder {
color: #999 !important;
opacity: 1.0;
}
::-moz-placeholder {
color: #999 !important;
opacity: 1.0;
}
:-ms-input-placeholder {
color: #999 !important;
opacity: 1.0;
}
.formerize-placeholder {
color: #999 !important;
opacity: 1.0;
}
/* Box */
.box {
background: #fff;
border-radius: 6px;
box-shadow: 0 2px 0 0 #e5e5e5;
margin: 0 0 2em 0;
padding: 3em;
}
.box > :last-child {
margin-bottom: 0;
}
.box.alt {
background: none !important;
border-radius: 0 !important;
box-shadow: none !important;
margin: 0 0 2em 0;
padding: 0 !important;
}
.box.features .features-row {
border-top: solid 2px #e5e5e5;
position: relative;
}
.box.features .features-row:after {
clear: both;
content: '';
display: block;
}
.box.features .features-row section {
float: left;
padding: 3em;
width: 50%;
}
.box.features .features-row section :last-child {
margin-bottom: 0;
}
.box.features .features-row section:nth-child(2n) {
padding-right: 0;
}
.box.features .features-row section:nth-child(2n):before {
background: #e5e5e5;
content: '';
display: block;
height: 100%;
margin-left: -3em;
position: absolute;
top: 0;
width: 2px;
}
.box.features .features-row section:nth-child(2n-1) {
padding-left: 0;
}
.box.features .features-row:first-child {
border-top: 0;
}
.box.features .features-row:first-child section {
padding-top: 0;
}
.box.features .features-row:last-child {
padding-bottom: 0;
}
.box.features .features-row:last-child section {
padding-bottom: 0;
}
.box.special {
text-align: center;
}
.box .image.featured {
border-radius: 0;
display: block;
margin: 3em 0 3em -3em;
position: relative;
width: calc(100% + 6em);
}
.box .image.featured img {
border-radius: 0;
display: block;
width: 100%;
}
.box .image.featured:first-child {
border-radius: 6px 6px 0 0;
margin-bottom: 3em;
margin-top: -3em;
}
.box .image.featured:first-child img {
border-radius: 6px 6px 0 0;
}
.box .image.featured:last-child {
border-radius: 0 0 6px 6px;
margin-bottom: -3em;
margin-top: 3em;
}
.box .image.featured:last-child img {
border-radius: 0 0 6px 6px;
}
/* Icon */
.icon {
text-decoration: none;
border-bottom: none;
position: relative;
}
.icon:before {
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
font-family: FontAwesome;
font-style: normal;
font-weight: normal;
text-transform: none !important;
}
.icon > .label {
display: none;
}
.icon.major {
background: #666;
border-radius: 100%;
color: #ffffff;
cursor: default;
display: inline-block;
height: 5.5em;
line-height: 5.5em;
margin: 0 0 2em 0;
width: 5.5em;
}
.icon.major:before {
font-size: 2.5em;
}
.icon.major.accent1 {
background: #666;
color: #ffffff;
}
.icon.major.accent2 {
background: #e89980;
color: #ffffff;
}
.icon.major.accent3 {
background: #7fcdb8;
color: #ffffff;
}
.icon.major.accent4 {
background: #90b0ba;
color: #ffffff;
}
.icon.major.accent5 {
background: #e5cb95;
color: #ffffff;
}
/* Image */
.image {
border-radius: 6px;
border: 0;
display: inline-block;
position: relative;
}
.image img {
border-radius: 6px;
display: block;
}
.image.left {
float: left;
padding: 0 1.5em 1em 0;
top: 0.25em;
}
.image.right {
float: right;
padding: 0 0 1em 1.5em;
top: 0.25em;
}
.image.fit {
display: block;
margin: 0 0 2em 0;
width: 100%;
}
.image.fit img {
display: block;
width: 100%;
}
/* List */
ol {
list-style: decimal;
margin: 0 0 2em 0;
padding-left: 1.25em;
}
ol li {
padding-left: 0.25em;
}
ul {
list-style: disc;
margin: 0 0 2em 0;
padding-left: 1em;
}
ul li {
padding-left: 0.5em;
}
ul.alt {
list-style: none;
padding-left: 0;
}
ul.alt li {
border-top: solid 1px #e5e5e5;
padding: 0.5em 0;
}
ul.alt li:first-child {
border-top: 0;
padding-top: 0;
}
ul.icons {
cursor: default;
list-style: none;
padding-left: 0;
}
ul.icons li {
display: inline-block;
padding: 0 1.25em 0 0;
}
ul.icons li:last-child {
padding-right: 0;
}
ul.icons li .icon {
color: inherit;
}
ul.icons li .icon:before {
font-size: 1.75em;
}
ul.actions {
cursor: default;
list-style: none;
padding-left: 0;
}
ul.actions li {
display: inline-block;
padding: 0 1em 0 0;
vertical-align: middle;
}
ul.actions li:last-child {
padding-right: 0;
}
ul.actions.small li {
padding: 0 0.5em 0 0;
}
ul.actions.vertical li {
display: block;
padding: 1em 0 0 0;
}
ul.actions.vertical li:first-child {
padding-top: 0;
}
ul.actions.vertical li > * {
margin-bottom: 0;
}
ul.actions.vertical.small li {
padding: 0.5em 0 0 0;
}
ul.actions.vertical.small li:first-child {
padding-top: 0;
}
ul.actions.fit {
display: table;
margin-left: -1em;
padding: 0;
table-layout: fixed;
width: calc(100% + 1em);
}
ul.actions.fit li {
display: table-cell;
padding: 0 0 0 1em;
}
ul.actions.fit li > * {
margin-bottom: 0;
}
ul.actions.fit.small {
margin-left: -0.5em;
width: calc(100% + 0.5em);
}
ul.actions.fit.small li {
padding: 0 0 0 0.5em;
}
dl {
margin: 0 0 2em 0;
}
/* Table */
.table-wrapper {
-webkit-overflow-scrolling: touch;
overflow-x: auto;
}
table {
margin: 0 0 2em 0;
width: 100%;
}
table tbody tr {
border: solid 1px #e5e5e5;
border-left: 0;
border-right: 0;
}
table tbody tr:nth-child(2n + 1) {
background-color: #f8f8f8;
}
table td {
padding: 0.75em 0.75em;
}
table th {
color: #646464;
font-size: 0.9em;
font-weight: 300;
padding: 0 0.75em 0.75em 0.75em;
text-align: left;
}
table thead {
border-bottom: solid 2px #e5e5e5;
}
table tfoot {
border-top: solid 2px #e5e5e5;
}
table.alt {
border-collapse: separate;
}
table.alt tbody tr td {
border: solid 1px #e5e5e5;
border-left-width: 0;
border-top-width: 0;
}
table.alt tbody tr td:first-child {
border-left-width: 1px;
}
table.alt tbody tr:first-child td {
border-top-width: 1px;
}
table.alt thead {
border-bottom: 0;
}
table.alt tfoot {
border-top: 0;
}
/* Button */
input[type="submit"],
input[type="reset"],
input[type="button"],
.button {
-moz-appearance: none;
-webkit-appearance: none;
-ms-appearance: none;
appearance: none;
-moz-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
-webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
-ms-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
background-color: #666;
border-radius: 6px;
border: 0;
color: #ffffff;
cursor: pointer;
display: inline-block;
font-weight: 400;
height: 3em;
line-height: 3em;
padding: 0 2em;
text-align: center;
text-decoration: none;
white-space: nowrap;
}
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:hover {
background-color: #737373;
}
input[type="submit"]:active,
input[type="reset"]:active,
input[type="button"]:active,
.button:active {
background-color: #595959;
}
input[type="submit"].icon,
input[type="reset"].icon,
input[type="button"].icon,
.button.icon {
padding-left: 1.35em;
}
input[type="submit"].icon:before,
input[type="reset"].icon:before,
input[type="button"].icon:before,
.button.icon:before {
margin-right: 0.5em;
}
input[type="submit"].fit,
input[type="reset"].fit,
input[type="button"].fit,
.button.fit {
display: block;
margin: 0 0 1em 0;
width: 100%;
}
input[type="submit"].small,
input[type="reset"].small,
input[type="button"].small,
.button.small {
font-size: 0.8em;
height: 2.7em;
line-height: 2.7em;
}
input[type="submit"].big,
input[type="reset"].big,
input[type="button"].big,
.button.big {
font-size: 1.25em;
height: 2.7em;
line-height: 2.7em;
}
input[type="submit"].alt,
input[type="reset"].alt,
input[type="button"].alt,
.button.alt {
background-color: transparent;
box-shadow: inset 0 0 0 2px #e5e5e5;
color: #777;
}
input[type="submit"].alt:hover,
input[type="reset"].alt:hover,
input[type="button"].alt:hover,
.button.alt:hover {
background-color: #f8f8f8;
}
input[type="submit"].alt:active,
input[type="reset"].alt:active,
input[type="button"].alt:active,
.button.alt:active {
background-color: #f0f0f0;
}
input[type="submit"].alt.icon:before,
input[type="reset"].alt.icon:before,
input[type="button"].alt.icon:before,
.button.alt.icon:before {
color: #999;
}
input[type="submit"].special,
input[type="reset"].special,
input[type="button"].special,
.button.special {
background-color: #e89980;
color: #ffffff !important;
}
input[type="submit"].special:hover,
input[type="reset"].special:hover,
input[type="button"].special:hover,
.button.special:hover {
background-color: #ecaa96;
}
input[type="submit"].special:active,
input[type="reset"].special:active,
input[type="button"].special:active,
.button.special:active {
background-color: #e4886a;
}
input[type="submit"].disabled, input[type="submit"]:disabled,
input[type="reset"].disabled,
input[type="reset"]:disabled,
input[type="button"].disabled,
input[type="button"]:disabled,
.button.disabled,
.button:disabled {
background-color: #777 !important;
box-shadow: inset 0 -0.15em 0 0 rgba(0, 0, 0, 0.15);
color: #f5f5f5 !important;
cursor: default;
opacity: 0.25;
}
/* Header */
#page-wrapper {
padding-top: 3em;
}
body.landing #page-wrapper {
padding-top: 0;
}
@-moz-keyframes reveal-header {
0% {
top: -5em;
}
100% {
top: 0;
}
}
@-webkit-keyframes reveal-header {
0% {
top: -5em;
}
100% {
top: 0;
}
}
@-ms-keyframes reveal-header {
0% {
top: -5em;
}
100% {
top: 0;
}
}
@keyframes reveal-header {
0% {
top: -5em;
}
100% {
top: 0;
}
}
#header {
background: #444;
color: #bbb;
cursor: default;
height: 3.25em;
left: 0;
line-height: 3.25em;
position: fixed;
top: 0;
width: 100%;
z-index: 10000;
}
#header h1 {
color: inherit;
height: inherit;
left: 1.25em;
line-height: inherit;
margin: 0;
padding: 0;
position: absolute;
top: 0;
}
#header h1 a {
color: #fff;
font-weight: 400;
border: 0;
}
#header nav {
height: inherit;
line-height: inherit;
position: absolute;
right: 0.75em;
top: 0;
vertical-align: middle;
}
#header nav > ul {
list-style: none;
margin: 0;
padding-left: 0;
}
#header nav > ul > li {
display: inline-block;
padding-left: 0;
}
#header nav > ul > li > ul {
display: none;
}
#header nav > ul > li a {
display: inline-block;
height: 2em;
line-height: 1.95em;
padding: 0 1em;
border-radius: 6px;
}
#header nav > ul > li a:not(.button) {
color: #fff;
display: inline-block;
text-decoration: none;
border: 0;
}
#header nav > ul > li a:not(.button).icon:before {
color: #999;
margin-right: 0.5em;
}
#header nav > ul > li:first-child {
margin-left: 0;
}
#header nav > ul > li.active a:not(.button) {
background-color: rgba(153, 153, 153, 0.25);
}
#header nav > ul > li .button {
margin: 0 0 0 0.5em;
position: relative;
}
#header input[type="submit"],
#header input[type="reset"],
#header input[type="button"],
#header .button {
background-color: transparent;
box-shadow: inset 0 0 0 2px #999;
color: #fff;
}
#header input[type="submit"]:hover,
#header input[type="reset"]:hover,
#header input[type="button"]:hover,
#header .button:hover {
background-color: rgba(153, 153, 153, 0.25);
}
#header input[type="submit"]:active,
#header input[type="reset"]:active,
#header input[type="button"]:active,
#header .button:active {
background-color: rgba(153, 153, 153, 0.5);
}
#header .container {
position: relative;
}
#header .container h1 {
left: 0;
}
#header .container nav {
right: 0;
}
#header.reveal {
-moz-animation: reveal-header 0.5s;
-webkit-animation: reveal-header 0.5s;
-ms-animation: reveal-header 0.5s;
animation: reveal-header 0.5s;
}
#header.alt {
-moz-animation: none;
-webkit-animation: none;
-ms-animation: none;
animation: none;
background: none;
color: rgba(255, 255, 255, 0.75);
position: absolute;
}
#header.alt nav > ul > li a:not(.button).icon:before {
color: rgba(255, 255, 255, 0.75);
}
#header.alt nav > ul > li.active a:not(.button) {
background-color: rgba(255, 255, 255, 0.2);
}
#header.alt input[type="submit"],
#header.alt input[type="reset"],
#header.alt input[type="button"],
#header.alt .button {
box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5);
}
#header.alt input[type="submit"]:hover,
#header.alt input[type="reset"]:hover,
#header.alt input[type="button"]:hover,
#header.alt .button:hover {
background-color: rgba(255, 255, 255, 0.1);
}
#header.alt input[type="submit"]:active,
#header.alt input[type="reset"]:active,
#header.alt input[type="button"]:active,
#header.alt .button:active {
background-color: rgba(255, 255, 255, 0.2);
}
.dropotron {
background: #fff;
border-radius: 6px;
box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.065), inset 0 -1px 0 0 #fff, inset 0 0 0 1px rgba(229, 229, 229, 0.5);
list-style: none;
margin: calc(-0.5em + 1px) 0 0 1px;
padding: 0.5em 0;
width: 11em;
}
.dropotron li {
padding: 0;
}
.dropotron li a, .dropotron li span {
-moz-transition: none;
-webkit-transition: none;
-ms-transition: none;
transition: none;
border: 0;
border-top: solid 1px #f2f2f2;
color: inherit;
display: block;
padding: 0.15em 1em;
}
.dropotron li:first-child > a, .dropotron li:first-child > span {
border-top: 0;
}
.dropotron li.active > a, .dropotron li.active > span, .dropotron li:hover > a, .dropotron li:hover > span {
background: #e89980;
color: #ffffff;
}
.dropotron.level-0 {
font-size: 0.9em;
margin: 1em 0 0 0;
}
.dropotron.level-0:before {
-moz-transform: rotate(45deg);
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
background: #fff;
border: solid 1px rgba(229, 229, 229, 0.5);
border-bottom: 0;
border-right: 0;
box-shadow: -0.25em -0.125em 0.125em 0 rgba(0, 0, 0, 0.015);
content: '';
display: block;
height: 0.75em;
position: absolute;
right: 1.25em;
top: -0.375em;
width: 0.75em;
z-index: 0;
}
/* Banner */
#banner {
background-attachment: scroll, fixed;
background-color: #666;
background-image: url("images/overlay.png"), url("../../images/banner.jpg");
background-position: top left, center center;
background-repeat: repeat, no-repeat;
background-size: auto, cover;
color: #fff;
padding: 12em 0 20em 0;
text-align: center;
}
#banner :last-child {
margin-bottom: 0;
}
#banner h2, #banner h3, #banner h4, #banner h5, #banner h6 {
color: #fff;
}
#banner h2 {
font-size: 3.5em;
line-height: 1em;
margin: 0 0 0.5em 0;
padding: 0;
}
#banner p {
font-size: 1.25em;
margin-bottom: 1.75em;
}
#banner input[type="submit"],
#banner input[type="reset"],
#banner input[type="button"],
#banner .button {
background-color: transparent;
box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5);
color: #fff;
min-width: 12em;
}
#banner input[type="submit"]:hover,
#banner input[type="reset"]:hover,
#banner input[type="button"]:hover,
#banner .button:hover {
background-color: rgba(255, 255, 255, 0.1);
}
#banner input[type="submit"]:active,
#banner input[type="reset"]:active,
#banner input[type="button"]:active,
#banner .button:active {
background-color: rgba(255, 255, 255, 0.2);
}
#banner input[type="submit"].special,
#banner input[type="reset"].special,
#banner input[type="button"].special,
#banner .button.special {
background: #fff;
color: #666 !important;
}
/* Main */
#main {
padding: 4em 0;
}
#main > header {
text-align: center;
margin: 0 0 3em 0;
}
#main > header h2 {
font-size: 2.75em;
margin: 0;
}
#main > header p {
border-top: solid 2px #e5e5e5;
color: #777;
display: inline-block;
font-style: normal;
margin: 1em 0 0 0;
padding: 1em 0 1.25em 0;
}
body.landing #main {
margin-top: -14em;
}
/* Footer */
#footer {
background: #f0f0f0;
padding: 4em 0 6em 0;
text-align: center;
}
#footer .icons a {
-moz-transition: opacity 0.2s ease-in-out;
-webkit-transition: opacity 0.2s ease-in-out;
-ms-transition: opacity 0.2s ease-in-out;
transition: opacity 0.2s ease-in-out;
opacity: 0.35;
}
#footer .icons a:hover {
opacity: 0.75;
}
#footer .copyright {
color: #999;
font-size: 0.9em;
line-height: 1em;
margin: 2em 0 0 0;
padding: 0;
text-align: center;
}
#footer .copyright a {
color: inherit;
}
#footer .copyright li {
border-left: solid 1px #dddddd;
display: inline-block;
list-style: none;
margin-left: 1em;
padding-left: 1em;
}
#footer .copyright li:first-child {
border-left: 0;
margin-left: 0;
padding-left: 0;
}
/* CTA */
#cta {
background: #e89980;
color: #f9e5df;
padding: 3.5em 0 4em 0;
text-align: center;
}
#cta h2, #cta h3, #cta h4, #cta h5, #cta h6 {
color: inherit;
}
#cta form {
margin: 0 auto;
max-width: 100%;
width: 25em;
}
#cta input[type="submit"],
#cta input[type="reset"],
#cta input[type="button"],
#cta .button {
box-shadow: none;
background: #fff;
color: #e89980;
}
#cta input[type="text"],
#cta input[type="password"],
#cta input[type="email"],
#cta select,
#cta textarea {
color: #ffffff;
background: rgba(255, 255, 255, 0.15);
border: 0;
}
#cta input[type="text"]:focus,
#cta input[type="password"]:focus,
#cta input[type="email"]:focus,
#cta select:focus,
#cta textarea:focus {
box-shadow: inset 0 0 0 2px #fff;
}
#cta ::-webkit-input-placeholder {
color: rgba(255, 255, 255, 0.75) !important;
}
#cta :-moz-placeholder {
color: rgba(255, 255, 255, 0.75) !important;
}
#cta ::-moz-placeholder {
color: rgba(255, 255, 255, 0.75) !important;
}
#cta :-ms-input-placeholder {
color: rgba(255, 255, 255, 0.75) !important;
}
#cta .formerize-placeholder {
color: rgba(255, 255, 255, 0.75) !important;
}
/* Wide */
@media screen and (max-width: 1680px) {
/* Basic */
body, input, select, textarea {
font-size: 13pt;
}
/* Banner */
#banner {
padding: 10em 0 18em 0;
}
}
/* Normal */
@media screen and (max-width: 1280px) {
/* Basic */
body, input, select, textarea {
font-size: 11pt;
}
/* Header */
.dropotron.level-0 {
font-size: 1em;
}
/* Banner */
#banner {
background-attachment: scroll;
}
#banner h2 {
font-size: 3.5em;
}
}
/* Narrow */
@media screen and (max-width: 980px) {
/* Basic */
body, input, select, textarea {
font-size: 11pt;
}
}
/* Narrower */
#navPanel, #navButton {
display: none;
}
@media screen and (max-width: 840px) {
/* Basic */
html, body {
overflow-x: hidden;
}
body, input, select, textarea {
font-size: 11pt;
}
h2 br, h3 br, h4 br, h5 br, h6 br {
display: none;
}
/* Section/Article */
header br {
display: none;
}
header.major {
padding: 0 4em;
}
/* Box */
.box {
padding: 3em 2em;
}
.box.features > section {
padding: 3em 2em;
}
.box .image.featured {
margin-left: -2em;
width: calc(100% + 4em);
}
.box .image.featured:first-child {
margin-bottom: 3em;
margin-top: -3em;
}
.box .image.featured:last-child {
margin-bottom: -3em;
margin-top: 3em;
}
/* Header */
#page-wrapper {
padding-top: 0;
}
#header {
display: none;
}
/* Banner */
/* Off-Canvas Navigation */
#page-wrapper {
-moz-backface-visibility: hidden;
-webkit-backface-visibility: hidden;
-ms-backface-visibility: hidden;
backface-visibility: hidden;
-moz-transition: -moz-transform 0.5s ease;
-webkit-transition: -webkit-transform 0.5s ease;
-ms-transition: -ms-transform 0.5s ease;
transition: transform 0.5s ease;
padding-bottom: 1px;
}
#navButton {
-moz-backface-visibility: hidden;
-webkit-backface-visibility: hidden;
-ms-backface-visibility: hidden;
backface-visibility: hidden;
-moz-transition: -moz-transform 0.5s ease;
-webkit-transition: -webkit-transform 0.5s ease;
-ms-transition: -ms-transform 0.5s ease;
transition: transform 0.5s ease;
display: block;
height: 44px;
left: 0;
position: fixed;
top: 0;
width: 100%;
z-index: 10001;
}
#navButton .toggle {
text-decoration: none;
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 100%;
border: 0;
outline: 0;
}
#navButton .toggle:before {
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
font-family: FontAwesome;
font-style: normal;
font-weight: normal;
text-transform: none !important;
}
#navButton .toggle:before {
background: rgba(192, 192, 192, 0.75);
border-radius: 6px;
color: #fff;
content: '\f0c9';
display: block;
font-size: 16px;
height: 2.25em;
left: 0.5em;
line-height: 2.25em;
position: absolute;
text-align: center;
top: 0.5em;
width: 3.5em;
}
#navPanel {
-moz-backface-visibility: hidden;
-webkit-backface-visibility: hidden;
-ms-backface-visibility: hidden;
backface-visibility: hidden;
-moz-transform: translateX(-275px);
-webkit-transform: translateX(-275px);
-ms-transform: translateX(-275px);
transform: translateX(-275px);
-moz-transition: -moz-transform 0.5s ease;
-webkit-transition: -webkit-transform 0.5s ease;
-ms-transition: -ms-transform 0.5s ease;
transition: transform 0.5s ease;
display: block;
height: 100%;
left: 0;
overflow-y: auto;
position: fixed;
top: 0;
width: 275px;
z-index: 10002;
background: #2b2b2b;
color: #bbb;
}
#navPanel .link {
border-bottom: 0;
border-top: solid 1px rgba(255, 255, 255, 0.05);
color: #bbb;
display: block;
height: 44px;
line-height: 44px;
padding: 0 1em 0 1em;
text-decoration: none;
}
#navPanel .link:first-child {
border-top: 0;
}
#navPanel .link.depth-0 {
color: #fff;
}
#navPanel .link .indent-1 {
display: inline-block;
width: 1em;
}
#navPanel .link .indent-2 {
display: inline-block;
width: 2em;
}
#navPanel .link .indent-3 {
display: inline-block;
width: 3em;
}
#navPanel .link .indent-4 {
display: inline-block;
width: 4em;
}
#navPanel .link .indent-5 {
display: inline-block;
width: 5em;
}
body.navPanel-visible #page-wrapper {
-moz-transform: translateX(275px);
-webkit-transform: translateX(275px);
-ms-transform: translateX(275px);
transform: translateX(275px);
}
body.navPanel-visible #navButton {
-moz-transform: translateX(275px);
-webkit-transform: translateX(275px);
-ms-transform: translateX(275px);
transform: translateX(275px);
}
body.navPanel-visible #navPanel {
-moz-transform: translateX(0);
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
}
/* Mobile */
@media screen and (max-width: 736px) {
/* Basic */
body, input, select, textarea {
font-size: 11pt;
}
h2 {
font-size: 1.75em;
line-height: 1.35em;
letter-spacing: -0.025em;
}
h3 {
font-size: 1.5em;
}
h4 {
font-size: 1em;
}
/* Section/Article */
header.major {
padding: 1em;
}
header.major h2, header.major p {
padding-left: 0.5em;
padding-right: 0.5em;
}
/* Box */
.box {
margin: 1em;
overflow-x: hidden;
padding: 2em 2em !important;
}
.box.features .features-row {
border-top: 0;
padding: 0;
}
.box.features .features-row section {
border: 0;
border-top: solid 1px #e5e5e5 !important;
float: none;
margin: 2em 0 0 0 !important;
padding: 2em 0 0 0 !important;
width: 100%;
}
.box.features .features-row:first-child section:first-child {
border-top: 0 !important;
margin-top: 0 !important;
padding-top: 0 !important;
}
.box .image.featured {
margin-left: -2em;
width: calc(100% + 4em);
}
.box .image.featured:first-child {
margin-bottom: 2em;
margin-top: -2em;
}
.box .image.featured:last-child {
margin-bottom: -2em;
margin-top: 2em;
}
/* Banner */
#banner {
padding: 4em 0;
}
#banner h2 {
font-size: 2.25em;
}
#banner p {
font-size: 1.25em;
}
/* Main */
#main {
padding: 4em 0 0 0;
}
#main > header {
margin: 0 2em 1.5em 2em;
}
#main > header h2 {
font-size: 2em;
}
#main > header p {
font-size: 1em;
padding-bottom: 1em;
}
body.landing #main {
padding: 0;
margin-top: 0;
}
/* Footer */
#footer {
padding: 4em 0;
}
#footer .copyright li {
border-left: 0;
display: block;
line-height: 2em;
margin-left: 0;
padding-left: 0;
}
}
/* Mobile (Portrait) */
@media screen and (max-width: 480px) {
/* Basic */
html, body {
min-width: 320px;
}
body, input, select, textarea {
font-size: 11pt;
}
/* Section/Article */
header.major {
padding: 0;
}
/* List */
ul.actions {
margin: 0 0 2em 0;
}
ul.actions li {
display: block;
padding: 1em 0 0 0;
text-align: center;
width: 100%;
}
ul.actions li:first-child {
padding-top: 0;
}
ul.actions li > * {
width: 100%;
margin: 0 !important;
}
ul.actions li > *.icon:before {
margin-left: -2em;
}
ul.actions.small li {
padding: 0.5em 0 0 0;
}
ul.actions.small li:first-child {
padding-top: 0;
}
/* Box */
.box {
border-radius: 0;
box-shadow: none;
margin: 1em 0 0 0;
padding: 3em 1em !important;
}
.box.features .features-row section {
margin: 3em 0 0 0 !important;
padding: 3em 0 0 0 !important;
}
.box .image.featured {
border-radius: 0;
margin-left: -1em;
width: calc(100% + 2em);
}
.box .image.featured img {
border-radius: 0 !important;
}
.box .image.featured:first-child {
margin-bottom: 3em;
margin-top: -3em;
}
.box .image.featured:last-child {
margin-bottom: -3em;
margin-top: 3em;
}
/* Banner */
#banner {
padding: 5em 1em 4em 1em;
}
/* Main */
#main > .box:first-child {
margin-top: 0;
}
/* CTA */
#cta {
padding: 2.5em 1em 3em 1em;
}
}
|
templates/home.html | linuxmahara/blockcypher-explorer | {% extends "base.html" %}
{% block content %}
{% load i18n %}
<div class="bg-primary-gradient page-header">
<div class="container">
{% include "partials/messages.html" %}
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<h1>Search the block chain</h1>
<p class="lead">Find info that other block explorers don't have</p>
<form role="search" method="post" action="{% url "home" %}">
{% csrf_token %}
<input type="hidden" value="btc" id="id_coin_symbol" name="coin_symbol">
<input type="hidden" value="" id="search_filter" name="search_filter">
<div class="input-group input-group-lg">
<div class="input-group-btn">
<button type="button" class="btn btn-primary dropdown-toggle" data-toggle="dropdown" aria-expanded="false">
<span id="search-dropdown-label">BTC</span> <span class="caret"></span>
</button>
<ul class="dropdown-menu" role="menu">
<li><a href="javascript:void(0);" onclick="setCoin('btc', 'BTC')">Bitcoin</a></li>
<li><a href="javascript:void(0);" onclick="setCoin('btc-testnet', 'BTC Testnet')">Bitcoin Testnet</a></li>
<li><a href="javascript:void(0);" onclick="setCoin('ltc', 'LTC')">Litecoin</a></li>
<li><a href="javascript:void(0);" onclick="setCoin('doge', 'DOGE')">DogeCoin</a></li>
<li><a href="javascript:void(0);" onclick="setCoin('uro', 'URO')">URO</a></li>
<li><a href="javascript:void(0);" onclick="setCoin('bcy', 'BC Testnet')">Blockcypher Testnet</a></li>
</ul>
</div>
<input autofocus class="form-control" id="id_search_string" maxlength="128" name="search_string" type="search" placeholder="Example: 16Fg2yjwrbtC6fZp61EV9mNVKmwCzGasw5">
</div>
<p class="help-block search-filter">
Enter an
<a href="javascript:void(0);" onclick="filterSearch('address', this)">address</a>,
<a href="javascript:void(0);" onclick="filterSearch('tx_hash', this)">transaction hash</a>,
<a href="javascript:void(0);" onclick="filterSearch('block_hash', this)">block hash</a>,
<a href="javascript:void(0);" onclick="filterSearch('block_num', this)">block number</a>, or
<a href="javascript:void(0);" onclick="filterSearch('wallet_name', this)">wallet name</a>.
</p>
<p class="text-center">
<button type="submit" class="btn btn-primary btn-lg btn-xl">
<i class="fa fa-search"></i>
{% trans "Search" %}
</button>
</p>
</form>
</div>
</div>
</div>
</div>
<div class="bg-white">
<div class="container">
<div class="row text-center">
<h2>Browse the Blockchain</h2>
<div class="col-lg-10 col-lg-offset-1">
<div class="col-lg-2 col-md-2 col-sm-2 col-xs-4">
<a href="{% url 'coin_overview' 'btc' %}" class="btc coin">
<span class="mpsb">Bitcoin</span>
</a>
</div>
<div class="col-lg-2 col-md-2 col-sm-2 col-xs-4">
<a href="{% url 'coin_overview' 'btc-testnet' %}" class="btc-testnet coin">
<span class="mpsb">Bitcoin Testnet</span>
</a>
</div>
<div class="col-lg-2 col-md-2 col-sm-2 col-xs-4">
<a href="{% url 'coin_overview' 'ltc' %}" class="ltc coin">
<span class="mpsb">Litecoin</span>
</a>
</div>
<div class="col-lg-2 col-md-2 col-sm-2 col-xs-4">
<a href="{% url 'coin_overview' 'doge' %}" class="doge coin">
<span class="mpsb">Dogecoin</span>
</a>
</div>
<div class="col-lg-2 col-md-2 col-sm-2 col-xs-4">
<a href="{% url 'coin_overview' 'uro' %}" class="uro coin">
<span class="mpsb">URO</span>
</a>
</div>
<div class="col-lg-2 col-md-2 col-sm-2 col-xs-4">
<a href="{% url 'coin_overview' 'bcy' %}" class="bc-testnet coin">
<span class="mpsb">BlockCypher Testnet</span>
</a>
</div>
</div>
</div>
<br />
<br />
<div class="row">
<p class="text-center">
Read more about this block explorer
<a href="{% url 'highlights' %}">here</a>.
</p>
</div>
</div>
</div>
{% endblock content %}
{% block extra_js %}
<script>
function filterSearch(filter, that) {
//Update search input
var coin_symbol_selected = $('#id_coin_symbol').val();
var search_placeholders = {
'btc': {
'address': '16Fg2yjwrbtC6fZp61EV9mNVKmwCzGasw5',
'wallet_name': 'sample.walletname.bit',
'tx_hash': '2509e5b65ed362557fcf2104e89f3c2430ceecc6a3275556c1b966eb641fe092',
'block_hash': '0000000000000000001e847e71b955482dab7228f4849a4659c0cf5cf323f247',
'block_num': '330,027',
},
'btc-testnet': {
'address': '2N1rjhumXA3ephUQTDMfGhufxGQPZuZUTMk',
'wallet_name': '',
'tx_hash': '7f827d4a3ae3b6e408fa1737f12f9dbfa2bb8fd79e0e3e63256a6e78310790a4',
'block_hash': '00000000b5017a924643958b430f073608142bf72a3cec1bfe30fed460246737',
'block_num': '308,576',
},
'ltc': {
'address': 'LcFFkbRUrr8j7TMi8oXUnfR4GPsgcXDepo',
'wallet_name': 'sample.walletname.bit',
'tx_hash': '3826e17bbac2724cd74b7377f0bd1489a82440d651016adda0132c42a179ad02',
'block_hash': '515683dee4ea5ec9341450b4f6a6c9f842a75680e96ee130bf8605e785ad59ff',
'block_num': '675,566',
},
'doge': {
'address': 'D7Y55r6Yoc1G8EECxkQ6SuSjTgGJJ7M6yD',
'wallet_name': 'sample.walletname.bit',
'tx_hash': '28132b9676b227f16bb687f49139fbb38d185caba4533a8c36d49f0fa470d83a',
'block_hash': '3c36f6b2abcc2e30111b997e551336db60bead9a0cd3c03fb192110bfbfe1841',
'block_num': '460,882',
},
'uro': {
'address': 'Uhf1LGdgmWe33hB9VVtubyzq1GduUAtaAJ',
'wallet_name': '',
'tx_hash': 'edb1537e92acb934890baf29794b45a5f30e6e648f376b1d2c5f50509ab10d29',
'block_hash': '00000000005ce75d7668175a10f0d402e985b3ae0bdde50adece45c1772aba4b',
'block_num': '85,430',
},
'bcy': {
'address': 'CFr99841LyMkyX5ZTGepY58rjXJhyNGXHf',
'wallet_name': '',
'tx_hash': '48cebffe1ed93ae2ce758abb52375cc7f89ecc94fd8244f6a9f6dd07463fc1cb',
'block_hash': '0000a577e78b310c7a5fe75abfc70f8f638aa56aae33552955c2becf509cd19a',
'block_num': '32,528',
},
}
$('#id_search_string').val(search_placeholders[coin_symbol_selected][filter]);
$('#search_filter').val(filter);
$('.search-filter .active').removeClass('active');
$(that).addClass('active');
}
$(document).ready(function(){
$( "#id_search_string" ).keydown(function() {
// Mark any suggestions as no longer a suggestion
$('.search-filter .active').removeClass('active');
});
})
</script>
{% endblock extra_js %}
|
TrollText/www/css/style.css | bfpias/trolltext | .messages{
margin:5px;
}
.message
{
position: relative;
width: 250px;
min-height: 20px;
padding: 5px;
background: #7DC0FF;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
border: #7F7F7F solid 3px;
float:right;
}
.from
{
position: relative;
width: 250px;
min-height: 20px;
padding: 5px;
background: #FF9E72;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
border: #7F7F7F solid 3px;
float:left;
}
.button-float{
height: 50px;
background: #ef473a !important;
color:white !important;
z-index: 12 !important;
position: absolute !important;
bottom: 15px !important;
right: 15px !important;
border-radius: 50% !important;
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26) !important;
-webkit-transform: translate3d(0, 0, 0) !important;
transform: translate3d(0, 0, 0) !important;
-webkit-transition: 0.2s linear !important;
transition: 0.2s linear !important;
-webkit-transition-property: -webkit-transform, all !important;
transition-property: transform, all !important;
}
.button-float:hover{
-webkit-transform: translate3d(0, -1px, 0) !important;
transform: translate3d(0, -1px, 0) !important;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4) !important;
background: darken($assertive, 10%) !important;
}
.padding{
padding-bottom: 100px;
}
.chat-box{
height:100px; width:100%;font-size: 12pt;line-height: 13pt;
} |
abstract-service-library/dist/abstract-service-library-2.1.0-gamma/api/org/nise/ux/asl/face/package-use.html | yeuser/java-libs | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_25) on Sat Dec 14 16:58:53 IRST 2013 -->
<title>Uses of Package org.nise.ux.asl.face (Abstract Service Library)</title>
<meta name="date" content="2013-12-14">
<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 Package org.nise.ux.asl.face (Abstract Service Library)";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li>Class</li>
<li class="navBarCell1Rev">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?org/nise/ux/asl/face/package-use.html" target="_top">Frames</a></li>
<li><a href="package-use.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h1 title="Uses of Package org.nise.ux.asl.face" class="title">Uses of Package<br>org.nise.ux.asl.face</h1>
</div>
<div class="contentContainer">
<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/nise/ux/asl/face/package-summary.html">org.nise.ux.asl.face</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.nise.ux.asl.face">org.nise.ux.asl.face</a></td>
<td class="colLast"> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="#org.nise.ux.asl.run">org.nise.ux.asl.run</a></td>
<td class="colLast"> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="org.nise.ux.asl.face">
<!-- -->
</a>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation">
<caption><span>Classes in <a href="../../../../../org/nise/ux/asl/face/package-summary.html">org.nise.ux.asl.face</a> used by <a href="../../../../../org/nise/ux/asl/face/package-summary.html">org.nise.ux.asl.face</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">Class and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colOne"><a href="../../../../../org/nise/ux/asl/face/class-use/Worker.html#org.nise.ux.asl.face">Worker</a> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="org.nise.ux.asl.run">
<!-- -->
</a>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation">
<caption><span>Classes in <a href="../../../../../org/nise/ux/asl/face/package-summary.html">org.nise.ux.asl.face</a> used by <a href="../../../../../org/nise/ux/asl/run/package-summary.html">org.nise.ux.asl.run</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">Class and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colOne"><a href="../../../../../org/nise/ux/asl/face/class-use/ServiceServer.html#org.nise.ux.asl.run">ServiceServer</a> </td>
</tr>
<tr class="rowColor">
<td class="colOne"><a href="../../../../../org/nise/ux/asl/face/class-use/ServiceServerMXBean.html#org.nise.ux.asl.run">ServiceServerMXBean</a> </td>
</tr>
<tr class="altColor">
<td class="colOne"><a href="../../../../../org/nise/ux/asl/face/class-use/WorkerFactory.html#org.nise.ux.asl.run">WorkerFactory</a>
<div class="block">Interface used to create Worker instances.</div>
</td>
</tr>
</tbody>
</table>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li>Class</li>
<li class="navBarCell1Rev">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?org/nise/ux/asl/face/package-use.html" target="_top">Frames</a></li>
<li><a href="package-use.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>This library is a work of NISE organization User-eXperience team.</i>
</small></p>
</body>
</html>
|
pitReports/201503061602/org.apache.commons.collections4.functors/ExceptionFactory.java.html | krivachy/compgs03_mutation_testing | <html>
<head>
<style type='text/css'>
html, body, div, span, p, blockquote, pre {
margin: 0;
padding: 0;
border: 0;
outline: 0;
font-weight: inherit;
font-style: inherit;
font-size: 100%;
font-family: inherit;
vertical-align: baseline;
}
body{
line-height: 1;
color: black;
background: white;
margin-left: 20px;
}
.src {
border: 1px solid #dddddd;
padding-top: 10px;
padding-right: 5px;
padding-left: 5px;
}
.covered {background-color: #ddffdd}
.uncovered {background-color: #ffdddd}
.killed {background-color: #aaffaa}
.survived {background-color: #ffaaaa}
.uncertain {background-color: #dde7ef}
.run_error {background-color: #dde7ef}
.na {background-color: #eeeeee}
.timed_out {background-color: #dde7ef}
.non_viable {background-color: #aaffaa}
.memory_error {background-color: #dde7ef}
.not_started {background-color: #dde7ef; color : red}
.no_coverage {background-color: #ffaaaa}
.pop {outline:none; }
.pop strong {line-height:30px;}
.pop {text-decoration:none;}
.pop span { z-index:10;display:none; padding:14px 20px; margin-top:-30px; margin-left:28px; width:800px; line-height:16px; word-wrap:break-word; }
.pop:hover span{ display:inline; position:absolute; color:#111; border:1px solid #DCA; background:#fffAF0;}
.pop span { border-radius:4px; -moz-border-radius: 4px; -webkit-border-radius: 4px; -moz-box-shadow: 5px 5px 8px #CCC; -webkit-box-shadow: 5px 5px 8px #CCC; box-shadow: 5px 5px 8px #CCC; }
</style>
</head>
<body>
<h1>ExceptionFactory.java</h1>
<table class="src">
<tr>
<td class='na'>
<a name='org.pitest.mutationtest.report.html.SourceFile@4d089ef7_1'/>
1
</td>
<td class=''>
<span class='pop'>
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4d089ef7_1'></a>
<span>
</span>
</td>
<td class=''><pre><span class=''>/*</span></pre></td></tr>
<tr>
<td class='na'>
<a name='org.pitest.mutationtest.report.html.SourceFile@4d089ef7_2'/>
2
</td>
<td class=''>
<span class='pop'>
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4d089ef7_2'></a>
<span>
</span>
</td>
<td class=''><pre><span class=''> * Licensed to the Apache Software Foundation (ASF) under one or more</span></pre></td></tr>
<tr>
<td class='na'>
<a name='org.pitest.mutationtest.report.html.SourceFile@4d089ef7_3'/>
3
</td>
<td class=''>
<span class='pop'>
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4d089ef7_3'></a>
<span>
</span>
</td>
<td class=''><pre><span class=''> * contributor license agreements. See the NOTICE file distributed with</span></pre></td></tr>
<tr>
<td class='na'>
<a name='org.pitest.mutationtest.report.html.SourceFile@4d089ef7_4'/>
4
</td>
<td class=''>
<span class='pop'>
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4d089ef7_4'></a>
<span>
</span>
</td>
<td class=''><pre><span class=''> * this work for additional information regarding copyright ownership.</span></pre></td></tr>
<tr>
<td class='na'>
<a name='org.pitest.mutationtest.report.html.SourceFile@4d089ef7_5'/>
5
</td>
<td class=''>
<span class='pop'>
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4d089ef7_5'></a>
<span>
</span>
</td>
<td class=''><pre><span class=''> * The ASF licenses this file to You under the Apache License, Version 2.0</span></pre></td></tr>
<tr>
<td class='na'>
<a name='org.pitest.mutationtest.report.html.SourceFile@4d089ef7_6'/>
6
</td>
<td class=''>
<span class='pop'>
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4d089ef7_6'></a>
<span>
</span>
</td>
<td class=''><pre><span class=''> * (the "License"); you may not use this file except in compliance with</span></pre></td></tr>
<tr>
<td class='na'>
<a name='org.pitest.mutationtest.report.html.SourceFile@4d089ef7_7'/>
7
</td>
<td class=''>
<span class='pop'>
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4d089ef7_7'></a>
<span>
</span>
</td>
<td class=''><pre><span class=''> * the License. You may obtain a copy of the License at</span></pre></td></tr>
<tr>
<td class='na'>
<a name='org.pitest.mutationtest.report.html.SourceFile@4d089ef7_8'/>
8
</td>
<td class=''>
<span class='pop'>
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4d089ef7_8'></a>
<span>
</span>
</td>
<td class=''><pre><span class=''> *</span></pre></td></tr>
<tr>
<td class='na'>
<a name='org.pitest.mutationtest.report.html.SourceFile@4d089ef7_9'/>
9
</td>
<td class=''>
<span class='pop'>
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4d089ef7_9'></a>
<span>
</span>
</td>
<td class=''><pre><span class=''> * http://www.apache.org/licenses/LICENSE-2.0</span></pre></td></tr>
<tr>
<td class='na'>
<a name='org.pitest.mutationtest.report.html.SourceFile@4d089ef7_10'/>
10
</td>
<td class=''>
<span class='pop'>
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4d089ef7_10'></a>
<span>
</span>
</td>
<td class=''><pre><span class=''> *</span></pre></td></tr>
<tr>
<td class='na'>
<a name='org.pitest.mutationtest.report.html.SourceFile@4d089ef7_11'/>
11
</td>
<td class=''>
<span class='pop'>
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4d089ef7_11'></a>
<span>
</span>
</td>
<td class=''><pre><span class=''> * Unless required by applicable law or agreed to in writing, software</span></pre></td></tr>
<tr>
<td class='na'>
<a name='org.pitest.mutationtest.report.html.SourceFile@4d089ef7_12'/>
12
</td>
<td class=''>
<span class='pop'>
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4d089ef7_12'></a>
<span>
</span>
</td>
<td class=''><pre><span class=''> * distributed under the License is distributed on an "AS IS" BASIS,</span></pre></td></tr>
<tr>
<td class='na'>
<a name='org.pitest.mutationtest.report.html.SourceFile@4d089ef7_13'/>
13
</td>
<td class=''>
<span class='pop'>
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4d089ef7_13'></a>
<span>
</span>
</td>
<td class=''><pre><span class=''> * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.</span></pre></td></tr>
<tr>
<td class='na'>
<a name='org.pitest.mutationtest.report.html.SourceFile@4d089ef7_14'/>
14
</td>
<td class=''>
<span class='pop'>
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4d089ef7_14'></a>
<span>
</span>
</td>
<td class=''><pre><span class=''> * See the License for the specific language governing permissions and</span></pre></td></tr>
<tr>
<td class='na'>
<a name='org.pitest.mutationtest.report.html.SourceFile@4d089ef7_15'/>
15
</td>
<td class=''>
<span class='pop'>
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4d089ef7_15'></a>
<span>
</span>
</td>
<td class=''><pre><span class=''> * limitations under the License.</span></pre></td></tr>
<tr>
<td class='na'>
<a name='org.pitest.mutationtest.report.html.SourceFile@4d089ef7_16'/>
16
</td>
<td class=''>
<span class='pop'>
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4d089ef7_16'></a>
<span>
</span>
</td>
<td class=''><pre><span class=''> */</span></pre></td></tr>
<tr>
<td class='na'>
<a name='org.pitest.mutationtest.report.html.SourceFile@4d089ef7_17'/>
17
</td>
<td class=''>
<span class='pop'>
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4d089ef7_17'></a>
<span>
</span>
</td>
<td class=''><pre><span class=''>package org.apache.commons.collections4.functors;</span></pre></td></tr>
<tr>
<td class='na'>
<a name='org.pitest.mutationtest.report.html.SourceFile@4d089ef7_18'/>
18
</td>
<td class=''>
<span class='pop'>
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4d089ef7_18'></a>
<span>
</span>
</td>
<td class=''><pre><span class=''></span></pre></td></tr>
<tr>
<td class='na'>
<a name='org.pitest.mutationtest.report.html.SourceFile@4d089ef7_19'/>
19
</td>
<td class=''>
<span class='pop'>
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4d089ef7_19'></a>
<span>
</span>
</td>
<td class=''><pre><span class=''>import java.io.Serializable;</span></pre></td></tr>
<tr>
<td class='na'>
<a name='org.pitest.mutationtest.report.html.SourceFile@4d089ef7_20'/>
20
</td>
<td class=''>
<span class='pop'>
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4d089ef7_20'></a>
<span>
</span>
</td>
<td class=''><pre><span class=''></span></pre></td></tr>
<tr>
<td class='na'>
<a name='org.pitest.mutationtest.report.html.SourceFile@4d089ef7_21'/>
21
</td>
<td class=''>
<span class='pop'>
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4d089ef7_21'></a>
<span>
</span>
</td>
<td class=''><pre><span class=''>import org.apache.commons.collections4.Factory;</span></pre></td></tr>
<tr>
<td class='na'>
<a name='org.pitest.mutationtest.report.html.SourceFile@4d089ef7_22'/>
22
</td>
<td class=''>
<span class='pop'>
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4d089ef7_22'></a>
<span>
</span>
</td>
<td class=''><pre><span class=''>import org.apache.commons.collections4.FunctorException;</span></pre></td></tr>
<tr>
<td class='na'>
<a name='org.pitest.mutationtest.report.html.SourceFile@4d089ef7_23'/>
23
</td>
<td class=''>
<span class='pop'>
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4d089ef7_23'></a>
<span>
</span>
</td>
<td class=''><pre><span class=''></span></pre></td></tr>
<tr>
<td class='na'>
<a name='org.pitest.mutationtest.report.html.SourceFile@4d089ef7_24'/>
24
</td>
<td class=''>
<span class='pop'>
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4d089ef7_24'></a>
<span>
</span>
</td>
<td class=''><pre><span class=''>/**</span></pre></td></tr>
<tr>
<td class='na'>
<a name='org.pitest.mutationtest.report.html.SourceFile@4d089ef7_25'/>
25
</td>
<td class=''>
<span class='pop'>
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4d089ef7_25'></a>
<span>
</span>
</td>
<td class=''><pre><span class=''> * Factory implementation that always throws an exception.</span></pre></td></tr>
<tr>
<td class='na'>
<a name='org.pitest.mutationtest.report.html.SourceFile@4d089ef7_26'/>
26
</td>
<td class=''>
<span class='pop'>
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4d089ef7_26'></a>
<span>
</span>
</td>
<td class=''><pre><span class=''> *</span></pre></td></tr>
<tr>
<td class='na'>
<a name='org.pitest.mutationtest.report.html.SourceFile@4d089ef7_27'/>
27
</td>
<td class=''>
<span class='pop'>
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4d089ef7_27'></a>
<span>
</span>
</td>
<td class=''><pre><span class=''> * @since 3.0</span></pre></td></tr>
<tr>
<td class='na'>
<a name='org.pitest.mutationtest.report.html.SourceFile@4d089ef7_28'/>
28
</td>
<td class=''>
<span class='pop'>
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4d089ef7_28'></a>
<span>
</span>
</td>
<td class=''><pre><span class=''> * @version $Id: ExceptionFactory.java 1543950 2013-11-20 21:13:35Z tn $</span></pre></td></tr>
<tr>
<td class='na'>
<a name='org.pitest.mutationtest.report.html.SourceFile@4d089ef7_29'/>
29
</td>
<td class=''>
<span class='pop'>
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4d089ef7_29'></a>
<span>
</span>
</td>
<td class=''><pre><span class=''> */</span></pre></td></tr>
<tr>
<td class='na'>
<a name='org.pitest.mutationtest.report.html.SourceFile@4d089ef7_30'/>
30
</td>
<td class=''>
<span class='pop'>
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4d089ef7_30'></a>
<span>
</span>
</td>
<td class=''><pre><span class=''>public final class ExceptionFactory<T> implements Factory<T>, Serializable {</span></pre></td></tr>
<tr>
<td class='na'>
<a name='org.pitest.mutationtest.report.html.SourceFile@4d089ef7_31'/>
31
</td>
<td class=''>
<span class='pop'>
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4d089ef7_31'></a>
<span>
</span>
</td>
<td class=''><pre><span class=''></span></pre></td></tr>
<tr>
<td class='na'>
<a name='org.pitest.mutationtest.report.html.SourceFile@4d089ef7_32'/>
32
</td>
<td class=''>
<span class='pop'>
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4d089ef7_32'></a>
<span>
</span>
</td>
<td class=''><pre><span class=''> /** Serial version UID */</span></pre></td></tr>
<tr>
<td class='na'>
<a name='org.pitest.mutationtest.report.html.SourceFile@4d089ef7_33'/>
33
</td>
<td class=''>
<span class='pop'>
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4d089ef7_33'></a>
<span>
</span>
</td>
<td class=''><pre><span class=''> private static final long serialVersionUID = 7179106032121985545L;</span></pre></td></tr>
<tr>
<td class='na'>
<a name='org.pitest.mutationtest.report.html.SourceFile@4d089ef7_34'/>
34
</td>
<td class=''>
<span class='pop'>
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4d089ef7_34'></a>
<span>
</span>
</td>
<td class=''><pre><span class=''></span></pre></td></tr>
<tr>
<td class='na'>
<a name='org.pitest.mutationtest.report.html.SourceFile@4d089ef7_35'/>
35
</td>
<td class=''>
<span class='pop'>
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4d089ef7_35'></a>
<span>
</span>
</td>
<td class=''><pre><span class=''> /** Singleton predicate instance */</span></pre></td></tr>
<tr>
<td class='na'>
<a name='org.pitest.mutationtest.report.html.SourceFile@4d089ef7_36'/>
36
</td>
<td class=''>
<span class='pop'>
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4d089ef7_36'></a>
<span>
</span>
</td>
<td class=''><pre><span class=''> @SuppressWarnings("rawtypes") // the static instance works for all types</span></pre></td></tr>
<tr>
<td class='covered'>
<a name='org.pitest.mutationtest.report.html.SourceFile@4d089ef7_37'/>
37
</td>
<td class=''>
<span class='pop'>
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4d089ef7_37'></a>
<span>
</span>
</td>
<td class='covered'><pre><span class=''> public static final Factory INSTANCE = new ExceptionFactory<Object>();</span></pre></td></tr>
<tr>
<td class='na'>
<a name='org.pitest.mutationtest.report.html.SourceFile@4d089ef7_38'/>
38
</td>
<td class=''>
<span class='pop'>
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4d089ef7_38'></a>
<span>
</span>
</td>
<td class=''><pre><span class=''></span></pre></td></tr>
<tr>
<td class='na'>
<a name='org.pitest.mutationtest.report.html.SourceFile@4d089ef7_39'/>
39
</td>
<td class=''>
<span class='pop'>
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4d089ef7_39'></a>
<span>
</span>
</td>
<td class=''><pre><span class=''> /**</span></pre></td></tr>
<tr>
<td class='na'>
<a name='org.pitest.mutationtest.report.html.SourceFile@4d089ef7_40'/>
40
</td>
<td class=''>
<span class='pop'>
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4d089ef7_40'></a>
<span>
</span>
</td>
<td class=''><pre><span class=''> * Factory returning the singleton instance.</span></pre></td></tr>
<tr>
<td class='na'>
<a name='org.pitest.mutationtest.report.html.SourceFile@4d089ef7_41'/>
41
</td>
<td class=''>
<span class='pop'>
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4d089ef7_41'></a>
<span>
</span>
</td>
<td class=''><pre><span class=''> *</span></pre></td></tr>
<tr>
<td class='na'>
<a name='org.pitest.mutationtest.report.html.SourceFile@4d089ef7_42'/>
42
</td>
<td class=''>
<span class='pop'>
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4d089ef7_42'></a>
<span>
</span>
</td>
<td class=''><pre><span class=''> * @param <T> the type the factory creates</span></pre></td></tr>
<tr>
<td class='na'>
<a name='org.pitest.mutationtest.report.html.SourceFile@4d089ef7_43'/>
43
</td>
<td class=''>
<span class='pop'>
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4d089ef7_43'></a>
<span>
</span>
</td>
<td class=''><pre><span class=''> * @return the singleton instance</span></pre></td></tr>
<tr>
<td class='na'>
<a name='org.pitest.mutationtest.report.html.SourceFile@4d089ef7_44'/>
44
</td>
<td class=''>
<span class='pop'>
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4d089ef7_44'></a>
<span>
</span>
</td>
<td class=''><pre><span class=''> * @since 3.1</span></pre></td></tr>
<tr>
<td class='na'>
<a name='org.pitest.mutationtest.report.html.SourceFile@4d089ef7_45'/>
45
</td>
<td class=''>
<span class='pop'>
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4d089ef7_45'></a>
<span>
</span>
</td>
<td class=''><pre><span class=''> */</span></pre></td></tr>
<tr>
<td class='na'>
<a name='org.pitest.mutationtest.report.html.SourceFile@4d089ef7_46'/>
46
</td>
<td class=''>
<span class='pop'>
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4d089ef7_46'></a>
<span>
</span>
</td>
<td class=''><pre><span class=''> @SuppressWarnings("unchecked") // the static instance works for all types</span></pre></td></tr>
<tr>
<td class='na'>
<a name='org.pitest.mutationtest.report.html.SourceFile@4d089ef7_47'/>
47
</td>
<td class=''>
<span class='pop'>
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4d089ef7_47'></a>
<span>
</span>
</td>
<td class=''><pre><span class=''> public static <T> Factory<T> exceptionFactory() {</span></pre></td></tr>
<tr>
<td class='covered'>
<a name='org.pitest.mutationtest.report.html.SourceFile@4d089ef7_48'/>
48
</td>
<td class='killed'>
<span class='pop'>
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4d089ef7_48'>1</a>
<span>
1. exceptionFactory : mutated return of Object value for org/apache/commons/collections4/functors/ExceptionFactory::exceptionFactory to ( if (x != null) null else throw new RuntimeException ) → KILLED<br/>
</span>
</td>
<td class='covered'><pre><span class='killed'> return (Factory<T>) INSTANCE;</span></pre></td></tr>
<tr>
<td class='na'>
<a name='org.pitest.mutationtest.report.html.SourceFile@4d089ef7_49'/>
49
</td>
<td class=''>
<span class='pop'>
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4d089ef7_49'></a>
<span>
</span>
</td>
<td class=''><pre><span class=''> }</span></pre></td></tr>
<tr>
<td class='na'>
<a name='org.pitest.mutationtest.report.html.SourceFile@4d089ef7_50'/>
50
</td>
<td class=''>
<span class='pop'>
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4d089ef7_50'></a>
<span>
</span>
</td>
<td class=''><pre><span class=''></span></pre></td></tr>
<tr>
<td class='na'>
<a name='org.pitest.mutationtest.report.html.SourceFile@4d089ef7_51'/>
51
</td>
<td class=''>
<span class='pop'>
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4d089ef7_51'></a>
<span>
</span>
</td>
<td class=''><pre><span class=''> /**</span></pre></td></tr>
<tr>
<td class='na'>
<a name='org.pitest.mutationtest.report.html.SourceFile@4d089ef7_52'/>
52
</td>
<td class=''>
<span class='pop'>
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4d089ef7_52'></a>
<span>
</span>
</td>
<td class=''><pre><span class=''> * Restricted constructor.</span></pre></td></tr>
<tr>
<td class='na'>
<a name='org.pitest.mutationtest.report.html.SourceFile@4d089ef7_53'/>
53
</td>
<td class=''>
<span class='pop'>
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4d089ef7_53'></a>
<span>
</span>
</td>
<td class=''><pre><span class=''> */</span></pre></td></tr>
<tr>
<td class='na'>
<a name='org.pitest.mutationtest.report.html.SourceFile@4d089ef7_54'/>
54
</td>
<td class=''>
<span class='pop'>
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4d089ef7_54'></a>
<span>
</span>
</td>
<td class=''><pre><span class=''> private ExceptionFactory() {</span></pre></td></tr>
<tr>
<td class='covered'>
<a name='org.pitest.mutationtest.report.html.SourceFile@4d089ef7_55'/>
55
</td>
<td class=''>
<span class='pop'>
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4d089ef7_55'></a>
<span>
</span>
</td>
<td class='covered'><pre><span class=''> super();</span></pre></td></tr>
<tr>
<td class='covered'>
<a name='org.pitest.mutationtest.report.html.SourceFile@4d089ef7_56'/>
56
</td>
<td class=''>
<span class='pop'>
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4d089ef7_56'></a>
<span>
</span>
</td>
<td class='covered'><pre><span class=''> }</span></pre></td></tr>
<tr>
<td class='na'>
<a name='org.pitest.mutationtest.report.html.SourceFile@4d089ef7_57'/>
57
</td>
<td class=''>
<span class='pop'>
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4d089ef7_57'></a>
<span>
</span>
</td>
<td class=''><pre><span class=''></span></pre></td></tr>
<tr>
<td class='na'>
<a name='org.pitest.mutationtest.report.html.SourceFile@4d089ef7_58'/>
58
</td>
<td class=''>
<span class='pop'>
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4d089ef7_58'></a>
<span>
</span>
</td>
<td class=''><pre><span class=''> /**</span></pre></td></tr>
<tr>
<td class='na'>
<a name='org.pitest.mutationtest.report.html.SourceFile@4d089ef7_59'/>
59
</td>
<td class=''>
<span class='pop'>
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4d089ef7_59'></a>
<span>
</span>
</td>
<td class=''><pre><span class=''> * Always throws an exception.</span></pre></td></tr>
<tr>
<td class='na'>
<a name='org.pitest.mutationtest.report.html.SourceFile@4d089ef7_60'/>
60
</td>
<td class=''>
<span class='pop'>
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4d089ef7_60'></a>
<span>
</span>
</td>
<td class=''><pre><span class=''> *</span></pre></td></tr>
<tr>
<td class='na'>
<a name='org.pitest.mutationtest.report.html.SourceFile@4d089ef7_61'/>
61
</td>
<td class=''>
<span class='pop'>
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4d089ef7_61'></a>
<span>
</span>
</td>
<td class=''><pre><span class=''> * @return never</span></pre></td></tr>
<tr>
<td class='na'>
<a name='org.pitest.mutationtest.report.html.SourceFile@4d089ef7_62'/>
62
</td>
<td class=''>
<span class='pop'>
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4d089ef7_62'></a>
<span>
</span>
</td>
<td class=''><pre><span class=''> * @throws FunctorException always</span></pre></td></tr>
<tr>
<td class='na'>
<a name='org.pitest.mutationtest.report.html.SourceFile@4d089ef7_63'/>
63
</td>
<td class=''>
<span class='pop'>
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4d089ef7_63'></a>
<span>
</span>
</td>
<td class=''><pre><span class=''> */</span></pre></td></tr>
<tr>
<td class='na'>
<a name='org.pitest.mutationtest.report.html.SourceFile@4d089ef7_64'/>
64
</td>
<td class=''>
<span class='pop'>
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4d089ef7_64'></a>
<span>
</span>
</td>
<td class=''><pre><span class=''> public T create() {</span></pre></td></tr>
<tr>
<td class='covered'>
<a name='org.pitest.mutationtest.report.html.SourceFile@4d089ef7_65'/>
65
</td>
<td class=''>
<span class='pop'>
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4d089ef7_65'></a>
<span>
</span>
</td>
<td class='covered'><pre><span class=''> throw new FunctorException("ExceptionFactory invoked");</span></pre></td></tr>
<tr>
<td class='na'>
<a name='org.pitest.mutationtest.report.html.SourceFile@4d089ef7_66'/>
66
</td>
<td class=''>
<span class='pop'>
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4d089ef7_66'></a>
<span>
</span>
</td>
<td class=''><pre><span class=''> }</span></pre></td></tr>
<tr>
<td class='na'>
<a name='org.pitest.mutationtest.report.html.SourceFile@4d089ef7_67'/>
67
</td>
<td class=''>
<span class='pop'>
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4d089ef7_67'></a>
<span>
</span>
</td>
<td class=''><pre><span class=''></span></pre></td></tr>
<tr>
<td class='na'>
<a name='org.pitest.mutationtest.report.html.SourceFile@4d089ef7_68'/>
68
</td>
<td class=''>
<span class='pop'>
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4d089ef7_68'></a>
<span>
</span>
</td>
<td class=''><pre><span class=''> private Object readResolve() {</span></pre></td></tr>
<tr>
<td class='covered'>
<a name='org.pitest.mutationtest.report.html.SourceFile@4d089ef7_69'/>
69
</td>
<td class='killed'>
<span class='pop'>
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4d089ef7_69'>1</a>
<span>
1. readResolve : mutated return of Object value for org/apache/commons/collections4/functors/ExceptionFactory::readResolve to ( if (x != null) null else throw new RuntimeException ) → KILLED<br/>
</span>
</td>
<td class='covered'><pre><span class='killed'> return INSTANCE;</span></pre></td></tr>
<tr>
<td class='na'>
<a name='org.pitest.mutationtest.report.html.SourceFile@4d089ef7_70'/>
70
</td>
<td class=''>
<span class='pop'>
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4d089ef7_70'></a>
<span>
</span>
</td>
<td class=''><pre><span class=''> }</span></pre></td></tr>
<tr>
<td class='na'>
<a name='org.pitest.mutationtest.report.html.SourceFile@4d089ef7_71'/>
71
</td>
<td class=''>
<span class='pop'>
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4d089ef7_71'></a>
<span>
</span>
</td>
<td class=''><pre><span class=''></span></pre></td></tr>
<tr>
<td class='na'>
<a name='org.pitest.mutationtest.report.html.SourceFile@4d089ef7_72'/>
72
</td>
<td class=''>
<span class='pop'>
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4d089ef7_72'></a>
<span>
</span>
</td>
<td class=''><pre><span class=''>}</span></pre></td></tr>
<tr><td></td><td></td><td><h2>Mutations</h2></td></tr>
<tr>
<td><a href='#org.pitest.mutationtest.report.html.SourceFile@4d089ef7_48'>48</a></td>
<td></td>
<td>
<a name='grouporg.pitest.mutationtest.report.html.SourceFile@4d089ef7_48'/>
<p class='KILLED'><span class='pop'>1.<span><b>1</b><br/><b>Location : </b>exceptionFactory<br/><b>Killed by : </b>org.apache.commons.collections4.FactoryUtilsTest.testExceptionFactory(org.apache.commons.collections4.FactoryUtilsTest)</span></span> mutated return of Object value for org/apache/commons/collections4/functors/ExceptionFactory::exceptionFactory to ( if (x != null) null else throw new RuntimeException ) → KILLED</p>
</td>
</tr>
<tr>
<td><a href='#org.pitest.mutationtest.report.html.SourceFile@4d089ef7_69'>69</a></td>
<td></td>
<td>
<a name='grouporg.pitest.mutationtest.report.html.SourceFile@4d089ef7_69'/>
<p class='KILLED'><span class='pop'>1.<span><b>1</b><br/><b>Location : </b>readResolve<br/><b>Killed by : </b>org.apache.commons.collections4.FactoryUtilsTest.testSingletonPatternInSerialization(org.apache.commons.collections4.FactoryUtilsTest)</span></span> mutated return of Object value for org/apache/commons/collections4/functors/ExceptionFactory::readResolve to ( if (x != null) null else throw new RuntimeException ) → KILLED</p>
</td>
</tr>
</table>
<h2>Active mutators</h2>
<ul>
<li class='mutator'>INCREMENTS_MUTATOR</li>
<li class='mutator'>VOID_METHOD_CALL_MUTATOR</li>
<li class='mutator'>RETURN_VALS_MUTATOR</li>
<li class='mutator'>MATH_MUTATOR</li>
<li class='mutator'>NEGATE_CONDITIONALS_MUTATOR</li>
<li class='mutator'>INVERT_NEGS_MUTATOR</li>
<li class='mutator'>CONDITIONALS_BOUNDARY_MUTATOR</li>
</ul>
<h2>Tests examined</h2>
<ul>
<li>org.apache.commons.collections4.FactoryUtilsTest.testExceptionFactory(org.apache.commons.collections4.FactoryUtilsTest) (1 ms)</li><li>org.apache.commons.collections4.FactoryUtilsTest.testSingletonPatternInSerialization(org.apache.commons.collections4.FactoryUtilsTest) (2 ms)</li>
</ul>
<br/>
Report generated by <a href='http://pitest.org'>PIT</a> 0.33
</body>
</html> |
apidoc/11/src-html/io/ebean/cache/ServerCacheNotifyPlugin.html | ebean-orm/ebean-orm.github.io | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html lang="en">
<head>
<title>Source code</title>
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
</head>
<body>
<div class="sourceContainer">
<pre><span class="sourceLineNo">001</span>package io.ebean.cache;<a name="line.1"></a>
<span class="sourceLineNo">002</span><a name="line.2"></a>
<span class="sourceLineNo">003</span>import io.ebean.config.ServerConfig;<a name="line.3"></a>
<span class="sourceLineNo">004</span><a name="line.4"></a>
<span class="sourceLineNo">005</span>/**<a name="line.5"></a>
<span class="sourceLineNo">006</span> * Plugin that provides a ServerCacheNotify implementation.<a name="line.6"></a>
<span class="sourceLineNo">007</span> * <p><a name="line.7"></a>
<span class="sourceLineNo">008</span> * Is supplied this will be used to send the ServerCacheNotification event to other cluster members.<a name="line.8"></a>
<span class="sourceLineNo">009</span> * </p><a name="line.9"></a>
<span class="sourceLineNo">010</span> */<a name="line.10"></a>
<span class="sourceLineNo">011</span>public interface ServerCacheNotifyPlugin {<a name="line.11"></a>
<span class="sourceLineNo">012</span><a name="line.12"></a>
<span class="sourceLineNo">013</span> /**<a name="line.13"></a>
<span class="sourceLineNo">014</span> * Create a ServerCacheNotify implementation given the server configuration.<a name="line.14"></a>
<span class="sourceLineNo">015</span> */<a name="line.15"></a>
<span class="sourceLineNo">016</span> ServerCacheNotify create(ServerConfig serverConfig);<a name="line.16"></a>
<span class="sourceLineNo">017</span>}<a name="line.17"></a>
</pre>
</div>
</body>
</html>
|
src/wi/templates/resources/ajax/add_disk.html | cc1-cloud/cc1 | {% load i18n %}
{% load formtags %}
<p>{% trans "Specify disk properties:" %}</p>
<form method="post" action="">
{% csrf_token %}
<div class="center">
{% show_fieldsetform form %}
</div>
<p>{% trans "Free storage space:" %} {{ free }} (MB)</p>
<div class="clear"></div>
<div class="dialog_button_area">
<button type="submit" class="ok-button mid_button">{% trans "Add disk" %}</button>
<button type="button" class="cancel-button mid_button">{% trans "Cancel" %}</button>
</div>
</form>
|
Baocms/Tpl/shop/fd_create.html | ksyydream/llx_admin | <include file='public:header'/>
<div class="mainBt">
<ul>
<li class="li1">商家</li>
<li class="li2">商家管理</li>
<li class="li2 li3">新增商家</li>
</ul>
</div>
<p class="attention"><span>注意: </span> 后台添加商户管理员ID请默认选择您自己的常用登录账户的id,目的是方便用户前台认领,如果用户被占用,请到回收站删除商家</p>
<form target="baocms_frm" action="<{:U('shop/fd_create')}>" method="post">
<div class="mainScAdd">
<div class="tableBox">
<table bordercolor="#dbdbdb" cellspacing="0" width="100%" border="1px" style=" border-collapse: collapse; margin:0px; vertical-align:middle; background-color:#FFF;" >
<tr>
<td class="lfTdBt">主店:</td>
<td class="rgTdBt">
<div class="lt">
<input type="hidden" id="shop_id" name="data[shop_id]" value="<{$detail.shop_id|default=''}>"/>
<input type="text" id="shop_name" name="shop_name" value="" class="manageInput" />
</div>
<a mini="select" w="800" h="600" href="<{:U('shop/select')}>" class="seleSj">选择店铺</a>
</td>
</tr>
<!-- <tr>
<td class="lfTdBt">商家类型:</td>
<td class="rgTdBt">
<select name="data[shop_class]" style="float: left;" id="shop_class" class="seleFl w210">
<option value="0">请选择.....</option>
<option value='1'>联盟商家</option>
<option value='2'>特约商家</option>
</select>
</td>
</tr> -->
<tr>
<td class="lfTdBt">所在区域:</td>
<td class="rgTdBt">
<select name="data[province_code]" style="float: left;" id="prin_id" class="seleFl w210"></select>
<select name="data[city_code]" style="float: left;" id="city_id" class="seleFl w210"></select>
<select name="data[area_code]" style="float: left;" id="area_id" class="seleFl w210"></select>
</td>
</tr>
<script src="<{:U('app/datas/cityarea')}>"></script>
<script>
var prin_code = <?php echo (int)$detail['province_code'];?>;
var city_id = <?php echo (int)$detail['city_code'];?>;
var area_id = <?php echo (int)$detail['area_code'];?>;
function changeCity(pid){
var city_str = '<option value="0">请选择.....</option>';
for(a in cityareas.city){
if(cityareas.city[a].provincecode ==pid){
city_str += '<option value="'+cityareas.city[a].code+'">'+cityareas.city[a].name+'</option>';
}
}
$("#city_id").html(city_str);
$("#area_id").html('<option value="0">请选择.....</option>');
}
function changeArea(cid){
var area_str = '<option value="0">请选择.....</option>';
for(a in cityareas.area){
if(cityareas.area[a].citycode ==cid){
area_str += '<option value="'+cityareas.area[a].code+'">'+cityareas.area[a].name+'</option>';
}
}
$("#area_id").html(area_str);
}
$(document).ready(function(){
var prin_str = '<option value="0">请选择.....</option>';
for(a in cityareas.province){
prin_str += '<option value="'+cityareas.province[a].code+'">'+cityareas.province[a].name+'</option>';
}
$("#prin_id").html(prin_str);
if(province_code){
changeCity(Nprovince_code);
}
});
$("#prin_id").change(function(){
prin_id = $(this).val();
changeCity($(this).val());
});
$("#city_id").change(function(){
area_id = $(this).val();
changeArea($(this).val());
});
</script>
<!-- <tr>
<td class="lfTdBt">所在商圈:</td>
<td class="rgTdBt">
<select name="data[business_id]" id="business_id" class="seleFl w210">
<option value="0">请选择...</option>
<foreach name="business" item="var">
<option value="<{$var.business_id}>"><{$var.business_name}></option>
</foreach>
</select>
</td>
</tr>-->
<tr>
<td class="lfTdBt">分店名称:</td>
<td class="rgTdBt"><input type="text" name="data[fd_name]" value="<{$detail.fd_name|default=''}>" class="scAddTextName w210" />
</td>
</tr><tr>
<td class="lfTdBt">
<js file='__PUBLIC__/js/uploadify/jquery.uploadify.min.js'/>
<link rel="stylesheet" href="__PUBLIC__/js/uploadify/uploadify.css">
商铺LOGO:
</td>
<td class="rgTdBt">
<div style="width: 300px;height: 100px; float: left;">
<input type="hidden" name="data[logo]" value="<{$detail.logo}>" id="data_logo" />
<input id="logo_file" name="logo_file" type="file" multiple="true" value="" />
</div>
<div style="width: 300px;height: 100px; float: left;">
<img id="logo_img" width="80" height="80" src="__ROOT__/attachs/<{$detail.logo|default='default.jpg'}>" />
<a href="<{:U('setting/attachs')}>">缩略图设置</a>
建议尺寸:<{$CONFIG.attachs.shoplogo.thumb}>
</div>
<script>
$("#logo_file").uploadify({
'swf': '__PUBLIC__/js/uploadify/uploadify.swf?t=<{$nowtime}>',
'uploader': '<{:U("app/upload/uploadify",array("model"=>"shoplogo"))}>',
'cancelImg': '__PUBLIC__/js/uploadify/uploadify-cancel.png',
'buttonText': '上传商铺LOGO',
'fileTypeExts': '*.gif;*.jpg;*.png',
'queueSizeLimit': 1,
'onUploadSuccess': function (file, data, response) {
$("#data_logo").val(data);
$("#logo_img").attr('src', '__ROOT__/attachs/' + data).show();
}
});
</script>
</td>
</tr><tr>
<td class="lfTdBt">
店铺缩略图:
</td>
<td class="rgTdBt">
<div style="width: 300px; height: 100px; float: left;">
<input type="hidden" name="data[photo]" value="<{$detail.photo}>" id="data_photo" />
<input id="photo_file" name="photo_file" type="file" multiple="true" value="" />
</div>
<div style="width: 300px; height: 100px; float: left;">
<img id="photo_img" width="80" height="80" src="__ROOT__/attachs/<{$detail.photo|default='default.jpg'}>" />
<a href="<{:U('setting/attachs')}>">缩略图设置</a>建议尺寸:<{$CONFIG.attachs.shopphoto.thumb}>
</div>
<script>
$("#photo_file").uploadify({
'swf': '__PUBLIC__/js/uploadify/uploadify.swf?t=<{$nowtime}>',
'uploader': '<{:U("app/upload/uploadify",array("model"=>"shopphoto"))}>',
'cancelImg': '__PUBLIC__/js/uploadify/uploadify-cancel.png',
'buttonText': '上传店铺缩略图',
'fileTypeExts': '*.gif;*.jpg;*.png',
'queueSizeLimit': 1,
'onUploadSuccess': function (file, data, response) {
$("#data_photo").val(data);
$("#photo_img").attr('src', '__ROOT__/attachs/' + data).show();
}
});
</script>
</td>
</tr><tr>
<td class="lfTdBt">分店地址:</td>
<td class="rgTdBt">
<input type="text" name="data[addr]" value="<{$detail.addr|default=''}>" class="scAddTextName w210" />
</td>
</tr><tr>
<td class="lfTdBt">分店电话:</td>
<td class="rgTdBt"><input type="text" name="data[tel]" value="<{$detail.tel|default=''}>" class="scAddTextName w210" />
</td>
</tr>
<tr>
<td class="lfTdBt">联系人:</td>
<td class="rgTdBt"><input type="text" name="data[contact]" value="<{$detail.contact|default=''}>" class="scAddTextName w210" />
</td>
</tr>
<tr>
<td class="lfTdBt">营业时间:</td>
<td class="rgTdBt"><input type="text" name="data[business_time]" value="<{$detail.business_time|default=''}>" class="scAddTextName w210" />
<code>例如8:00-19:00</code>
</td>
</tr>
<!-- <tr>
<td class="lfTdBt">人均消费:</td>
<td class="rgTdBt"><input type="text" name="data[price]" value="<{$detail.price|default='0'}>" class="scAddTextName w210" />
</td>
</tr> -->
<tr>
<td class="lfTdBt">商家坐标:</td>
<td class="rgTdBt">
<div class="lt">
经度<input type="text" name="data[lng]" id="data_lng" value="<{$detail.lng|default=''}>" class="scAddTextName w200" />
纬度 <input type="text" name="data[lat]" id="data_lat" value="<{$detail.lat|default=''}>" class="scAddTextName w200" />
</div>
<a style="margin-left: 10px;" mini="select" w="600" h="600" href="<{:U('public/maps')}>" class="seleSj">百度地图</a>
</tr>
<tr>
<td class="lfTdBt">详情:</td>
<td class="rgTdBt">
<script type="text/plain" id="data_details" name="details" style="width:800px;height:360px;"><{$ex.details}></script>
</td>
</tr>
<link rel="stylesheet" href="__PUBLIC__/umeditor/themes/default/css/umeditor.min.css" type="text/css">
<script type="text/javascript" charset="utf-8" src="__PUBLIC__/umeditor/umeditor.config.js"></script>
<script type="text/javascript" charset="utf-8" src="__PUBLIC__/umeditor/umeditor.min.js"></script>
<script type="text/javascript" src="__PUBLIC__/umeditor/lang/zh-cn/zh-cn.js"></script>
<script>
um = UM.getEditor('data_details', {
imageUrl: "<{:U('app/upload/editor')}>",
imagePath: '__ROOT__/attachs/editor/',
lang: 'zh-cn',
langPath: UMEDITOR_CONFIG.UMEDITOR_HOME_URL + "lang/",
focus: false
});
</script>
</table>
<input type="submit" value="确认添加" class="smtQrIpt" />
</div>
</div>
</form>
<include file='public:footer'/> |
docs/com/strangeberry/jmdns/tools/package-summary.html | nickylin/clementine-remote-android.dep-jmdns | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_22) on Thu Jan 20 14:21:30 PST 2011 -->
<TITLE>
com.strangeberry.jmdns.tools (JmDNS)
</TITLE>
<META NAME="date" CONTENT="2011-01-20">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="com.strangeberry.jmdns.tools (JmDNS)";
}
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<HR>
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Package</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../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>
JmDNS 3.4.0</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV PACKAGE
<A HREF="../../../../javax/jmdns/package-summary.html"><B>NEXT PACKAGE</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../index.html?com/strangeberry/jmdns/tools/package-summary.html" target="_top"><B>FRAMES</B></A>
<A HREF="package-summary.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<H2>
Package com.strangeberry.jmdns.tools
</H2>
Provides a GUI browser, a TTY browser and a service registry for JmDNS.
<P>
<B>See:</B>
<BR>
<A HREF="#package_description"><B>Description</B></A>
<P>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Class Summary</B></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD WIDTH="15%"><B><A HREF="../../../../com/strangeberry/jmdns/tools/Browser.html" title="class in com.strangeberry.jmdns.tools">Browser</A></B></TD>
<TD>User Interface for browsing JmDNS services.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD WIDTH="15%"><B><A HREF="../../../../com/strangeberry/jmdns/tools/Main.html" title="class in com.strangeberry.jmdns.tools">Main</A></B></TD>
<TD>Main sample program for JmDNS.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD WIDTH="15%"><B><A HREF="../../../../com/strangeberry/jmdns/tools/Responder.html" title="class in com.strangeberry.jmdns.tools">Responder</A></B></TD>
<TD>A sample JmDNS responder that reads a set of rendezvous service definitions from a file and registers them with rendezvous.</TD>
</TR>
</TABLE>
<P>
<A NAME="package_description"><!-- --></A><H2>
Package com.strangeberry.jmdns.tools Description
</H2>
<P>
<!--
##### THIS IS THE TEMPLATE FOR THE PACKAGE DOC COMMENTS. #####
##### TYPE YOUR PACKAGE COMMENTS HERE. BEGIN WITH A #####
##### ONE-SENTENCE SUMMARY STARTING WITH A VERB LIKE: #####
Provides for ...
-->
Provides a GUI browser, a TTY browser and a service registry for JmDNS.
<!--
<h2>Package Specification</h2>
##### FILL IN ANY SPECS NEEDED BY JAVA COMPATIBILITY KIT #####
<ul>
<li><a href="">##### REFER TO ANY FRAMEMAKER SPECIFICATION HERE #####</a>
</ul>
-->
<h2>Related Documentation</h2>
<!--
For overviews, tutorials, examples, guides, and tool documentation, please see:
<ul>
<li><a href="">##### REFER TO NON-SPEC DOCUMENTATION HERE #####</a>
</ul>
-->
<!-- Put @see and @since tags down here. -->
For overviews, tutorials, examples, guides, and tool documentation, please see
the Readme file of JmDNS.
<!-- Put @see and @since tags down here. -->
<P>
<P>
<DL>
</DL>
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Package</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-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>
JmDNS 3.4.0</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV PACKAGE
<A HREF="../../../../javax/jmdns/package-summary.html"><B>NEXT PACKAGE</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../index.html?com/strangeberry/jmdns/tools/package-summary.html" target="_top"><B>FRAMES</B></A>
<A HREF="package-summary.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
</BODY>
</HTML>
|
css/custom.css | Dockerizing/dockerizing.github.io | .panel {
background-color: #F8F8F8;
}
mark.yellow {
background-color: #FFF380;
color: black;
}
mark.blue {
background-color: rgb(48, 185, 233);
color: white;
}
span.comment {
color: #C71585;
}
.jumbotron h1, .jumbotron .h1 {
font-size: 36pt;
}
.nav-pills > li > a {
background-color: #eee;
}
.nav-pills > li > a:hover, .nav-pills > li > a:focus {
background-color: #337AB7;
color: #fff;
}
footer h2 {
font-size: 16pt;
}
footer h3 {
font-size: 14pt;
}
.github-icon-svg,
.twitter-icon-svg {
display: inline-block;
width: 16px;
height: 16px;
position: relative;
top: 3px;
}
/*
Bootstrap Callouts
Source: http://cpratt.co/twitter-bootstrap-callout-css-styles/
*/
.bs-callout {
padding: 20px;
margin: 20px 0;
border: 1px solid #eee;
border-left-width: 5px;
border-radius: 3px;
}
.bs-callout h4 {
margin-top: 0;
margin-bottom: 5px;
}
.bs-callout p:last-child {
margin-bottom: 0;
}
.bs-callout code {
border-radius: 3px;
}
.bs-callout+.bs-callout {
margin-top: -5px;
}
.bs-callout-default {
border-left-color: #777;
}
.bs-callout-default h4 {
color: #777;
}
.bs-callout-primary {
border-left-color: #428bca;
}
.bs-callout-primary h4 {
color: #428bca;
}
.bs-callout-success {
border-left-color: #5cb85c;
}
.bs-callout-success h4 {
color: #5cb85c;
}
.bs-callout-danger {
border-left-color: #d9534f;
}
.bs-callout-danger h4 {
color: #d9534f;
}
.bs-callout-warning {
border-left-color: #f0ad4e;
}
.bs-callout-warning h4 {
color: #f0ad4e;
}
.bs-callout-info {
border-left-color: #5bc0de;
}
.bs-callout-info h4 {
color: #5bc0de;
}
|
app/views/apidocs/v1.scala.html | eval-so/frontend | @main("eval.so version 1") {
<div class="hero-unit bp-front-hero">
<div class="container">
<h1>Eval.so API Version 1.</h1>
<p>
Want to develop applications around eval.so? Check out our API.
It's so simple, it's almost impossible to get wrong.
</p>
</div>
</div>
<div class="container">
<div class="row">
<div class="span12">
<h4>A quick note</h4>
<p>
First and foremost, it's worth noting that there are two endpoints for
the API. If you access <code>/api/[endpoint]</code> you will always hit
the latest version of the API. If you want to access a specific version
of the API, you should use <code>/api/[version]/[endpoint]</code>
instead.
</p>
<p>
Also note that all POST requests should send
<code>application/json</code> as their content type.
</p>
</div>
</div>
<div class="row">
<div class="row">
<div class="span12">
<h2>Evaluate Code</h2>
<pre><code>POST /api/evaluate</code></pre>
</div>
<div class="span6">
<h4><i class="icon-upload-alt"></i> Example Request</h4>
<pre><code>{
"language": "ruby",
"code": "puts 2+2",
"inputFiles": {
"input.txt": "aGVsbG8="
}
}</code></pre>
</div>
<div class="span6">
<h4><i class="icon-download-alt"></i> Example Response</h4>
<pre><code>{
"stdout": "4",
"stderr": "",
"wallTime": 387
}</code></pre>
</div>
</div>
<div class="row">
<div class="span6">
<table class="table table-bordered">
<tr>
<th>key</th>
<th>example</th>
<th>Description</th>
</tr>
<tr>
<td>language</td>
<td><code>"ruby"</code></td>
<td><strong>Required.</strong> The language being evaluated.</td>
</tr>
<tr>
<td>code</td>
<td><code>puts "Hello, world!"</code></td>
<td><strong>Required.</strong> The code to evaluate.</td>
</tr>
<tr>
<td>inputFiles</td>
<td><code>{ "input.txt": "aGVsbG8=" }</code></td>
<td>
An object containing files that are placed in the evaluation root.
The filename is the <strong>key</strong> and the contents of the
file is <strong>base64 encoded</strong> and is the
<strong>value</strong>.
</td>
</tr>
<tr>
<td>compilationOnly</td>
<td><code>false</code></td>
<td>
If <code>true</code>, only compilation will happen — not
execution of the result.
</td>
</tr>
</table>
</div>
<div class="span6">
<table class="table table-bordered">
<tr>
<th>key</th>
<th>example</th>
<th>Description</th>
</tr>
<tr>
<td>stdout</td>
<td><code>"Hello, World!"</code></td>
<td>The standard output produced by the evaluation.</td>
</tr>
<tr>
<td>stderr</td>
<td><code>""</code></td>
<td>The standard error produced by the evaluation.</td>
</tr>
<tr>
<td>wallTime</td>
<td><code>387</code></td>
<td>How long it took to evaluate the request, in ms.</td>
</tr>
<tr>
<td>exitCode</td>
<td><code>0</code></td>
<td>The exit code of the evaluation.</td>
</tr>
<tr>
<td>outputFiles</td>
<td><code>{ "output.txt": "aGVsbG8=" }</code></td>
<td>
An object containing files that are placed in the evaluation's
<code>~/output/</code> directory, which is created automatically.
The filename is the <strong>key</strong> and the contents of the
file is <strong>base64 encoded</strong> and is the
<strong>value</strong>.
</td>
</tr>
<tr>
<td>compilationResult</td>
<td></td>
<td>
The result of compiling the code, for languages that require
compilation. Everything that appears in the JSON root can possibly
appear in <code>compilationResult</code>, except
<code>outputFiles</code>.
</td>
</tr>
</table>
</div>
</div>
</div>
<div class="row">
<div class="span12">
<h2>List available languages</h2>
<pre><code>GET /api/languages</code></pre>
</div>
<div class="span6 pull-right">
<h4><i class="icon-download-alt"></i> Example Response</h4>
<pre><code>{
"languages": [
"apricot",
"bash",
"befunge",
"brainfuck",
"c",
"c#",
"c++",
...
"smalltalk",
"sml",
"sqlite",
"zsh"
]
}</code></pre>
</div>
<div class="span12">
<h2>Get information about a language</h2>
<div class="alert alert-warning"><strong>Watch out!</strong> This is not yet implemented.</div>
<pre><code>GET /api/language/:language</code></pre>
</div>
<div class="span6 pull-right">
<h4><i class="icon-download-alt"></i> Example Response</h4>
<pre><code>{
"name": "Ruby",
"aliases": [
"ruby",
"mri"
],
"version": "ruby-1.9.3.392-29.fc18.x86_64",
"notes": "MRI 1.9.3p392"
}</code></pre>
</div>
</div>
</div>
}
|
archive/v1.6/docs/reference/config/template/index.html | istio/istio.io | <!doctype html><html lang=en><head><title>Redirecting…</title><link rel=canonical href=/v1.6/docs/reference/config/policy-and-telemetry/templates/><meta name=robots content="noindex"><meta charset=utf-8><meta http-equiv=refresh content="0; url=/v1.6/docs/reference/config/policy-and-telemetry/templates/"></head><body><h1>Redirecting…</h1><a href=/v1.6/docs/reference/config/policy-and-telemetry/templates/>Click here if you are not redirected.</a></body></html> |
frontend/holder/grid_2.html | bdastur/notes | <html>
<head>
<link rel="stylesheet" href="../thirdparty/bootstrap-3.3.7-dist/css/bootstrap.min.css">
</head>
<body>
<script src="holder/holder.js"></script>
<script>
Holder.addTheme("beautiful", {
bg: "#eeebd4",
fg: "black",
size: 12,
align: center,
outline: yes
});
</script>
<div class="container-fluid">
<div class="row">
<div class="col-md-2" id="test">
<a href="#" class="thumbnail"><img data-src="holder.js/180x180?theme=sky" alt="..."></a>
<div class="caption">
<h3>Thumbnail label</h3>
<p>...</p>
<p><a href="#" class="btn btn-primary" role="button">Button</a>
<a href="#" class="btn btn-default" role="button">Button</a></p>
</div>
</div>
<div class="col-md-2" id="test1">
<a href="#" class="thumbnail"><img data-src="holder.js/180x180" alt="..."></a>
</div>
<div class="col-md-2" id="test2">
<a href="#" class="thumbnail"><img data-src="holder.js/180x180" alt="..."></a>
</div>
</div>
<div class="row">
<div class="col-md-2" id="test3">
<a href="#" class="thumbnail"><img data-src="holder.js/180x180" alt="..."></a>
</div>
<div class="col-md-2" id="test4">
<a href="#" class="thumbnail"><img data-src="holder.js/180x180" alt="..."></a>
</div>
<div class="col-md-2" id="test5">
<a href="#" class="thumbnail"><img data-src="holder.js/180x180" alt="..."></a>
</div>
</div>
<div class="row">
<div class="col-md-2" id="test6">
</div>
<div class="col-md-2" id="test7">
</div>
<div class="col-md-2">
</div>
</div>
<div class="row">
<div class="col-md-2">
</div>
<div class="col-md-2">
</div>
</div>
</div>
<script src="../thirdparty/jquery/jquery-3.3.1.min.js"></script>
<script src="../thirdparty/bootstrap-3.3.7-dist/js/bootstrap.min.js"></script>
<script src="holder/holder.js?v=1"></script>
<script>
Holder.addTheme("mytheme", {
bg: "#eeebd4",
fg: "black",
size: 12,
align: "cente4",
outline: "yes"
});
</script>
</body>
</html> |
external-apidocs/com/google/code/maven-play-plugin/org/playframework/play/1.3.4/play/data/validation/package-summary.html | play1-maven-plugin/play1-maven-plugin.github.io | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="pl">
<head>
<!-- Generated by javadoc (1.8.0_60) on Tue Mar 29 13:02:11 CEST 2016 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>play.data.validation (Play! API)</title>
<meta name="date" content="2016-03-29">
<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="play.data.validation (Play! API)";
}
}
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 class="navBarCell1Rev">Package</li>
<li>Class</li>
<li><a href="package-use.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../index-all.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../play/data/parsing/package-summary.html">Prev Package</a></li>
<li><a href="../../../play/db/package-summary.html">Next Package</a></li>
</ul>
<ul class="navList">
<li><a href="../../../index.html?play/data/validation/package-summary.html" target="_top">Frames</a></li>
<li><a href="package-summary.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h1 title="Package" class="title">Package play.data.validation</h1>
</div>
<div class="contentContainer">
<ul class="blockList">
<li class="blockList">
<table class="typeSummary" border="0" cellpadding="3" cellspacing="0" summary="Class Summary table, listing classes, and an explanation">
<caption><span>Class Summary</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Class</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href="../../../play/data/validation/Check.html" title="class in play.data.validation">Check</a></td>
<td class="colLast"> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../../play/data/validation/CheckWithCheck.html" title="class in play.data.validation">CheckWithCheck</a></td>
<td class="colLast"> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="../../../play/data/validation/EmailCheck.html" title="class in play.data.validation">EmailCheck</a></td>
<td class="colLast"> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../../play/data/validation/EqualsCheck.html" title="class in play.data.validation">EqualsCheck</a></td>
<td class="colLast"> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="../../../play/data/validation/Error.html" title="class in play.data.validation">Error</a></td>
<td class="colLast">
<div class="block">A validation error.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../../play/data/validation/InFutureCheck.html" title="class in play.data.validation">InFutureCheck</a></td>
<td class="colLast"> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="../../../play/data/validation/InPastCheck.html" title="class in play.data.validation">InPastCheck</a></td>
<td class="colLast"> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../../play/data/validation/IPv4AddressCheck.html" title="class in play.data.validation">IPv4AddressCheck</a></td>
<td class="colLast"> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="../../../play/data/validation/IPv6AddressCheck.html" title="class in play.data.validation">IPv6AddressCheck</a></td>
<td class="colLast"> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../../play/data/validation/IsTrueCheck.html" title="class in play.data.validation">IsTrueCheck</a></td>
<td class="colLast"> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="../../../play/data/validation/MatchCheck.html" title="class in play.data.validation">MatchCheck</a></td>
<td class="colLast"> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../../play/data/validation/MaxCheck.html" title="class in play.data.validation">MaxCheck</a></td>
<td class="colLast"> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="../../../play/data/validation/MaxSizeCheck.html" title="class in play.data.validation">MaxSizeCheck</a></td>
<td class="colLast"> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../../play/data/validation/MinCheck.html" title="class in play.data.validation">MinCheck</a></td>
<td class="colLast"> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="../../../play/data/validation/MinSizeCheck.html" title="class in play.data.validation">MinSizeCheck</a></td>
<td class="colLast"> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../../play/data/validation/PhoneCheck.html" title="class in play.data.validation">PhoneCheck</a></td>
<td class="colLast"> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="../../../play/data/validation/RangeCheck.html" title="class in play.data.validation">RangeCheck</a></td>
<td class="colLast"> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../../play/data/validation/RequiredCheck.html" title="class in play.data.validation">RequiredCheck</a></td>
<td class="colLast"> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="../../../play/data/validation/UniqueCheck.html" title="class in play.data.validation">UniqueCheck</a></td>
<td class="colLast">
<div class="block">Check which proof if one or a set of properties is unique.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../../play/data/validation/URLCheck.html" title="class in play.data.validation">URLCheck</a></td>
<td class="colLast"> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="../../../play/data/validation/Validation.html" title="class in play.data.validation">Validation</a></td>
<td class="colLast"> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../../play/data/validation/Validation.ValidationResult.html" title="class in play.data.validation">Validation.ValidationResult</a></td>
<td class="colLast"> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="../../../play/data/validation/Validation.Validator.html" title="class in play.data.validation">Validation.Validator</a></td>
<td class="colLast"> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../../play/data/validation/ValidationPlugin.html" title="class in play.data.validation">ValidationPlugin</a></td>
<td class="colLast"> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="../../../play/data/validation/ValidCheck.html" title="class in play.data.validation">ValidCheck</a></td>
<td class="colLast"> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<table class="typeSummary" border="0" cellpadding="3" cellspacing="0" summary="Annotation Types Summary table, listing annotation types, and an explanation">
<caption><span>Annotation Types Summary</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Annotation Type</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href="../../../play/data/validation/CheckWith.html" title="annotation in play.data.validation">CheckWith</a></td>
<td class="colLast"> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../../play/data/validation/Email.html" title="annotation in play.data.validation">Email</a></td>
<td class="colLast">
<div class="block">This field must be a valid email.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="../../../play/data/validation/Equals.html" title="annotation in play.data.validation">Equals</a></td>
<td class="colLast">
<div class="block">This field must be equals to another field.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../../play/data/validation/InFuture.html" title="annotation in play.data.validation">InFuture</a></td>
<td class="colLast">
<div class="block">This date must be in the future.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="../../../play/data/validation/InPast.html" title="annotation in play.data.validation">InPast</a></td>
<td class="colLast">
<div class="block">This date must be in the past.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../../play/data/validation/IPv4Address.html" title="annotation in play.data.validation">IPv4Address</a></td>
<td class="colLast">
<div class="block">This field must be a valid IP address.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="../../../play/data/validation/IPv6Address.html" title="annotation in play.data.validation">IPv6Address</a></td>
<td class="colLast">
<div class="block">This field must be a valid IP address.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../../play/data/validation/IsTrue.html" title="annotation in play.data.validation">IsTrue</a></td>
<td class="colLast">
<div class="block">This field must be true.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="../../../play/data/validation/Match.html" title="annotation in play.data.validation">Match</a></td>
<td class="colLast">
<div class="block">This field must match the regexp.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../../play/data/validation/Max.html" title="annotation in play.data.validation">Max</a></td>
<td class="colLast">
<div class="block">This field must be lower than.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="../../../play/data/validation/MaxSize.html" title="annotation in play.data.validation">MaxSize</a></td>
<td class="colLast">
<div class="block">This field size must be lower than.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../../play/data/validation/Min.html" title="annotation in play.data.validation">Min</a></td>
<td class="colLast">
<div class="block">This field must be greater than.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="../../../play/data/validation/MinSize.html" title="annotation in play.data.validation">MinSize</a></td>
<td class="colLast">
<div class="block">This field size must be equal or greater than.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../../play/data/validation/Password.html" title="annotation in play.data.validation">Password</a></td>
<td class="colLast">
<div class="block">This field is a password.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="../../../play/data/validation/Phone.html" title="annotation in play.data.validation">Phone</a></td>
<td class="colLast">
<div class="block">This field contain a phone number
This validation is relaxed and is intended to enforce a basic phone pattern.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../../play/data/validation/Range.html" title="annotation in play.data.validation">Range</a></td>
<td class="colLast">
<div class="block">This field must be lower than and greater than.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="../../../play/data/validation/Required.html" title="annotation in play.data.validation">Required</a></td>
<td class="colLast">
<div class="block">This field is required.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../../play/data/validation/Unique.html" title="annotation in play.data.validation">Unique</a></td>
<td class="colLast">
<div class="block">Check that a field or or field in a context is unique.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="../../../play/data/validation/URL.html" title="annotation in play.data.validation">URL</a></td>
<td class="colLast">
<div class="block">This field must be a valid url.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../../play/data/validation/Valid.html" title="annotation in play.data.validation">Valid</a></td>
<td class="colLast">
<div class="block">This bean must satisfy all checks.</div>
</td>
</tr>
</tbody>
</table>
</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 class="navBarCell1Rev">Package</li>
<li>Class</li>
<li><a href="package-use.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../index-all.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../play/data/parsing/package-summary.html">Prev Package</a></li>
<li><a href="../../../play/db/package-summary.html">Next Package</a></li>
</ul>
<ul class="navList">
<li><a href="../../../index.html?play/data/validation/package-summary.html" target="_top">Frames</a></li>
<li><a href="package-summary.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><a href="http://guillaume.bort.fr">Guillaume Bort</a> & <a href="http://www.zenexity.fr">zenexity</a> - Distributed under <a href="http://www.apache.org/licenses/LICENSE-2.0.html">Apache 2 licence</a>, without any warrantly</small></p>
</body>
</html>
|
public/scaladoc/2.1.7/org/scalatest/selenium/WebBrowser$CssSelectorQuery.html | scalatest/scalatest-website | <?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html>
<head>
<title>CssSelectorQuery - ScalaTest 2.1.7 - org.scalatest.selenium.WebBrowser.CssSelectorQuery</title>
<meta name="description" content="CssSelectorQuery - ScalaTest 2.1.7 - org.scalatest.selenium.WebBrowser.CssSelectorQuery" />
<meta name="keywords" content="CssSelectorQuery ScalaTest 2.1.7 org.scalatest.selenium.WebBrowser.CssSelectorQuery" />
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<link href="../../../lib/template.css" media="screen" type="text/css" rel="stylesheet" />
<link href="../../../lib/diagrams.css" media="screen" type="text/css" rel="stylesheet" id="diagrams-css" />
<script type="text/javascript" src="../../../lib/jquery.js" id="jquery-js"></script>
<script type="text/javascript" src="../../../lib/jquery-ui.js"></script>
<script type="text/javascript" src="../../../lib/template.js"></script>
<script type="text/javascript" src="../../../lib/tools.tooltip.js"></script>
<script type="text/javascript">
if(top === self) {
var url = '../../../index.html';
var hash = 'org.scalatest.selenium.WebBrowser$CssSelectorQuery';
var anchor = window.location.hash;
var anchor_opt = '';
if (anchor.length >= 1)
anchor_opt = '@' + anchor.substring(1);
window.location.href = url + '#' + hash + anchor_opt;
}
</script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-71294502-3', 'auto');
ga('send', 'pageview');
</script>
</head>
<body class="type">
<!-- Top of doc.scalatest.org [javascript] -->
<script type="text/javascript">
var rnd = window.rnd || Math.floor(Math.random()*10e6);
var pid204546 = window.pid204546 || rnd;
var plc204546 = window.plc204546 || 0;
var abkw = window.abkw || '';
var absrc = 'http://ab167933.adbutler-ikon.com/adserve/;ID=167933;size=468x60;setID=204546;type=js;sw='+screen.width+';sh='+screen.height+';spr='+window.devicePixelRatio+';kw='+abkw+';pid='+pid204546+';place='+(plc204546++)+';rnd='+rnd+';click=CLICK_MACRO_PLACEHOLDER';
document.write('<scr'+'ipt src="'+absrc+'" type="text/javascript"></scr'+'ipt>');
</script>
<div id="definition">
<img src="../../../lib/class_big.png" />
<p id="owner"><a href="../../package.html" class="extype" name="org">org</a>.<a href="../package.html" class="extype" name="org.scalatest">scalatest</a>.<a href="package.html" class="extype" name="org.scalatest.selenium">selenium</a>.<a href="WebBrowser.html" class="extype" name="org.scalatest.selenium.WebBrowser">WebBrowser</a></p>
<h1>CssSelectorQuery</h1>
</div>
<h4 id="signature" class="signature">
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">case class</span>
</span>
<span class="symbol">
<span class="name">CssSelectorQuery</span><span class="params">(<span name="queryString">queryString: <span class="extype" name="scala.Predef.String">String</span></span>)</span><span class="result"> extends <a href="WebBrowser$Query.html" class="extype" name="org.scalatest.selenium.WebBrowser.Query">Query</a> with <span class="extype" name="scala.Product">Product</span> with <span class="extype" name="scala.Serializable">Serializable</span></span>
</span>
</h4>
<div id="comment" class="fullcommenttop"><div class="comment cmt"><p>A CSS selector query.</p><p>This class enables syntax such as the following:</p><p><pre class="stHighlighted">
click on cssSelector(<span class="stQuotedString">"???"</span>)
^
</pre>
</p></div><dl class="paramcmts block"><dt class="param">queryString</dt><dd class="cmt"><p>the query string for this query.
</p></dd></dl><dl class="attributes block"> <dt>Source</dt><dd><a href="https://github.com/scalatest/scalatest/tree/release-2.1.7-for-scala-2.10/src/main/scala/org/scalatest/selenium/WebBrowser.scala" target="_blank">WebBrowser.scala</a></dd></dl><div class="toggleContainer block">
<span class="toggle">Linear Supertypes</span>
<div class="superTypes hiddenContent"><span class="extype" name="scala.Serializable">Serializable</span>, <span class="extype" name="java.io.Serializable">Serializable</span>, <span class="extype" name="scala.Product">Product</span>, <span class="extype" name="scala.Equals">Equals</span>, <a href="WebBrowser$Query.html" class="extype" name="org.scalatest.selenium.WebBrowser.Query">Query</a>, <span class="extype" name="scala.AnyRef">AnyRef</span>, <span class="extype" name="scala.Any">Any</span></div>
</div></div>
<div id="mbrsel">
<div id="textfilter"><span class="pre"></span><span class="input"><input id="mbrsel-input" type="text" accesskey="/" /></span><span class="post"></span></div>
<div id="order">
<span class="filtertype">Ordering</span>
<ol>
<li class="alpha in"><span>Alphabetic</span></li>
<li class="inherit out"><span>By inheritance</span></li>
</ol>
</div>
<div id="ancestors">
<span class="filtertype">Inherited<br />
</span>
<ol id="linearization">
<li class="in" name="org.scalatest.selenium.WebBrowser.CssSelectorQuery"><span>CssSelectorQuery</span></li><li class="in" name="scala.Serializable"><span>Serializable</span></li><li class="in" name="java.io.Serializable"><span>Serializable</span></li><li class="in" name="scala.Product"><span>Product</span></li><li class="in" name="scala.Equals"><span>Equals</span></li><li class="in" name="org.scalatest.selenium.WebBrowser.Query"><span>Query</span></li><li class="in" name="scala.AnyRef"><span>AnyRef</span></li><li class="in" name="scala.Any"><span>Any</span></li>
</ol>
</div><div id="ancestors">
<span class="filtertype"></span>
<ol>
<li class="hideall out"><span>Hide All</span></li>
<li class="showall in"><span>Show all</span></li>
</ol>
<a href="http://docs.scala-lang.org/overviews/scaladoc/usage.html#members" target="_blank">Learn more about member selection</a>
</div>
<div id="visbl">
<span class="filtertype">Visibility</span>
<ol><li class="public in"><span>Public</span></li><li class="all out"><span>All</span></li></ol>
</div>
</div>
<div id="template">
<div id="allMembers">
<div id="constructors" class="members">
<h3>Instance Constructors</h3>
<ol><li name="org.scalatest.selenium.WebBrowser.CssSelectorQuery#<init>" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="<init>(queryString:String):WebBrowser.this.CssSelectorQuery"></a>
<a id="<init>:CssSelectorQuery"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">new</span>
</span>
<span class="symbol">
<span class="name">CssSelectorQuery</span><span class="params">(<span name="queryString">queryString: <span class="extype" name="scala.Predef.String">String</span></span>)</span>
</span>
</h4>
<p class="shortcomment cmt"></p><div class="fullcomment"><div class="comment cmt"></div><dl class="paramcmts block"><dt class="param">queryString</dt><dd class="cmt"><p>the query string for this query.
</p></dd></dl></div>
</li></ol>
</div>
<div id="values" class="values members">
<h3>Value Members</h3>
<ol><li name="scala.AnyRef#!=" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="!=(x$1:AnyRef):Boolean"></a>
<a id="!=(AnyRef):Boolean"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier">final </span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span title="gt4s: $bang$eq" class="name">!=</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.AnyRef">AnyRef</span></span>)</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span>
</span>
</h4>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div>
</li><li name="scala.Any#!=" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="!=(x$1:Any):Boolean"></a>
<a id="!=(Any):Boolean"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier">final </span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span title="gt4s: $bang$eq" class="name">!=</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.Any">Any</span></span>)</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span>
</span>
</h4>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>Any</dd></dl></div>
</li><li name="scala.AnyRef###" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="##():Int"></a>
<a id="##():Int"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier">final </span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span title="gt4s: $hash$hash" class="name">##</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Int">Int</span></span>
</span>
</h4>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd></dl></div>
</li><li name="scala.AnyRef#==" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="==(x$1:AnyRef):Boolean"></a>
<a id="==(AnyRef):Boolean"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier">final </span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span title="gt4s: $eq$eq" class="name">==</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.AnyRef">AnyRef</span></span>)</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span>
</span>
</h4>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div>
</li><li name="scala.Any#==" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="==(x$1:Any):Boolean"></a>
<a id="==(Any):Boolean"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier">final </span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span title="gt4s: $eq$eq" class="name">==</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.Any">Any</span></span>)</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span>
</span>
</h4>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>Any</dd></dl></div>
</li><li name="scala.Any#asInstanceOf" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="asInstanceOf[T0]:T0"></a>
<a id="asInstanceOf[T0]:T0"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier">final </span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">asInstanceOf</span><span class="tparams">[<span name="T0">T0</span>]</span><span class="result">: <span class="extype" name="scala.Any.asInstanceOf.T0">T0</span></span>
</span>
</h4>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>Any</dd></dl></div>
</li><li name="org.scalatest.selenium.WebBrowser.CssSelectorQuery#by" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="by:org.openqa.selenium.By"></a>
<a id="by:By"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">val</span>
</span>
<span class="symbol">
<span class="name">by</span><span class="result">: <span class="extype" name="org.openqa.selenium.By">By</span></span>
</span>
</h4>
<p class="shortcomment cmt">The Selenium <code>By</code> for this query.</p><div class="fullcomment"><div class="comment cmt"><p>The Selenium <code>By</code> for this query.
</p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="" class="extype" name="org.scalatest.selenium.WebBrowser.CssSelectorQuery">CssSelectorQuery</a> → <a href="WebBrowser$Query.html" class="extype" name="org.scalatest.selenium.WebBrowser.Query">Query</a></dd></dl></div>
</li><li name="scala.AnyRef#clone" visbl="prt" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="clone():Object"></a>
<a id="clone():AnyRef"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">clone</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.AnyRef">AnyRef</span></span>
</span>
</h4>
<div class="fullcomment"><dl class="attributes block"> <dt>Attributes</dt><dd>protected[<a href="../../../java$lang.html" class="extype" name="java.lang">java.lang</a>] </dd><dt>Definition Classes</dt><dd>AnyRef</dd><dt>Annotations</dt><dd>
<span class="name">@throws</span><span class="args">()</span>
</dd></dl></div>
</li><li name="org.scalatest.selenium.WebBrowser.Query#element" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="element(implicitdriver:org.openqa.selenium.WebDriver):WebBrowser.this.Element"></a>
<a id="element(WebDriver):Element"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">element</span><span class="params">(<span class="implicit">implicit </span><span name="driver">driver: <span class="extype" name="org.openqa.selenium.WebDriver">WebDriver</span></span>)</span><span class="result">: <a href="WebBrowser$Element.html" class="extype" name="org.scalatest.selenium.WebBrowser.Element">Element</a></span>
</span>
</h4>
<p class="shortcomment cmt">Returns the first <code>Element</code> selected by this query, or throws <code>TestFailedException</code>
if no <code>Element</code> is selected.</p><div class="fullcomment"><div class="comment cmt"><p>Returns the first <code>Element</code> selected by this query, or throws <code>TestFailedException</code>
if no <code>Element</code> is selected.</p><p>The class of the <code>Element</code> returned will be a subtype of <code>Element</code> if appropriate.
For example, if this query selects a text field, the class of the returned <code>Element</code> will
be <code>TextField</code>.</p></div><dl class="paramcmts block"><dt class="param">driver</dt><dd class="cmt"><p>the <code>WebDriver</code> with which to drive the browser</p></dd><dt>returns</dt><dd class="cmt"><p>the <code>Element</code> selected by this query</p></dd></dl><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="WebBrowser$Query.html" class="extype" name="org.scalatest.selenium.WebBrowser.Query">Query</a></dd><dt>Exceptions thrown</dt><dd><span class="cmt">TestFailedException<p>if nothing is selected by this query
</p></span></dd></dl></div>
</li><li name="scala.AnyRef#eq" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="eq(x$1:AnyRef):Boolean"></a>
<a id="eq(AnyRef):Boolean"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier">final </span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">eq</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.AnyRef">AnyRef</span></span>)</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span>
</span>
</h4>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div>
</li><li name="scala.AnyRef#finalize" visbl="prt" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="finalize():Unit"></a>
<a id="finalize():Unit"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">finalize</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span>
</span>
</h4>
<div class="fullcomment"><dl class="attributes block"> <dt>Attributes</dt><dd>protected[<a href="../../../java$lang.html" class="extype" name="java.lang">java.lang</a>] </dd><dt>Definition Classes</dt><dd>AnyRef</dd><dt>Annotations</dt><dd>
<span class="name">@throws</span><span class="args">()</span>
</dd></dl></div>
</li><li name="org.scalatest.selenium.WebBrowser.Query#findAllElements" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="findAllElements(implicitdriver:org.openqa.selenium.WebDriver):Iterator[WebBrowser.this.Element]"></a>
<a id="findAllElements(WebDriver):Iterator[Element]"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">findAllElements</span><span class="params">(<span class="implicit">implicit </span><span name="driver">driver: <span class="extype" name="org.openqa.selenium.WebDriver">WebDriver</span></span>)</span><span class="result">: <span class="extype" name="scala.Iterator">Iterator</span>[<a href="WebBrowser$Element.html" class="extype" name="org.scalatest.selenium.WebBrowser.Element">Element</a>]</span>
</span>
</h4>
<p class="shortcomment cmt">Returns an <code>Iterator</code> over all <code>Element</code>s selected by this query.</p><div class="fullcomment"><div class="comment cmt"><p>Returns an <code>Iterator</code> over all <code>Element</code>s selected by this query.</p><p>The class of the <code>Element</code>s produced by the returned <code>Iterator</code> will be a
subtypes of <code>Element</code> if appropriate. For example, if an <code>Element</code>representing
a text field is returned by the <code>Iterator</code>, the class of the returned <code>Element</code> will
be <code>TextField</code>.</p><p>If no <code>Elements</code> are selected by this query, this method will return an empty <code>Iterator</code> will be returned.</p></div><dl class="paramcmts block"><dt class="param">driver</dt><dd class="cmt"><p>the <code>WebDriver</code> with which to drive the browser</p></dd><dt>returns</dt><dd class="cmt"><p>the <code>Iterator</code> over all <code>Element</code>s selected by this query
</p></dd></dl><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="WebBrowser$Query.html" class="extype" name="org.scalatest.selenium.WebBrowser.Query">Query</a></dd></dl></div>
</li><li name="org.scalatest.selenium.WebBrowser.Query#findElement" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="findElement(implicitdriver:org.openqa.selenium.WebDriver):Option[WebBrowser.this.Element]"></a>
<a id="findElement(WebDriver):Option[Element]"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">findElement</span><span class="params">(<span class="implicit">implicit </span><span name="driver">driver: <span class="extype" name="org.openqa.selenium.WebDriver">WebDriver</span></span>)</span><span class="result">: <span class="extype" name="scala.Option">Option</span>[<a href="WebBrowser$Element.html" class="extype" name="org.scalatest.selenium.WebBrowser.Element">Element</a>]</span>
</span>
</h4>
<p class="shortcomment cmt">Returns the first <code>Element</code> selected by this query, wrapped in a <code>Some</code>, or <code>None</code>
if no <code>Element</code> is selected.</p><div class="fullcomment"><div class="comment cmt"><p>Returns the first <code>Element</code> selected by this query, wrapped in a <code>Some</code>, or <code>None</code>
if no <code>Element</code> is selected.</p><p>The class of the <code>Element</code> returned will be a subtype of <code>Element</code> if appropriate.
For example, if this query selects a text field, the class of the returned <code>Element</code> will
be <code>TextField</code>.</p></div><dl class="paramcmts block"><dt class="param">driver</dt><dd class="cmt"><p>the <code>WebDriver</code> with which to drive the browser</p></dd><dt>returns</dt><dd class="cmt"><p>the <code>Element</code> selected by this query, wrapped in a <code>Some</code>, or <code>None</code> if
no <code>Element</code> is selected
</p></dd></dl><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="WebBrowser$Query.html" class="extype" name="org.scalatest.selenium.WebBrowser.Query">Query</a></dd></dl></div>
</li><li name="scala.AnyRef#getClass" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="getClass():Class[_]"></a>
<a id="getClass():Class[_]"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier">final </span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">getClass</span><span class="params">()</span><span class="result">: <span class="extype" name="java.lang.Class">Class</span>[_]</span>
</span>
</h4>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd></dl></div>
</li><li name="scala.Any#isInstanceOf" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="isInstanceOf[T0]:Boolean"></a>
<a id="isInstanceOf[T0]:Boolean"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier">final </span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">isInstanceOf</span><span class="tparams">[<span name="T0">T0</span>]</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span>
</span>
</h4>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>Any</dd></dl></div>
</li><li name="scala.AnyRef#ne" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="ne(x$1:AnyRef):Boolean"></a>
<a id="ne(AnyRef):Boolean"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier">final </span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">ne</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.AnyRef">AnyRef</span></span>)</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span>
</span>
</h4>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div>
</li><li name="scala.AnyRef#notify" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="notify():Unit"></a>
<a id="notify():Unit"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier">final </span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">notify</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span>
</span>
</h4>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div>
</li><li name="scala.AnyRef#notifyAll" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="notifyAll():Unit"></a>
<a id="notifyAll():Unit"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier">final </span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">notifyAll</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span>
</span>
</h4>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div>
</li><li name="org.scalatest.selenium.WebBrowser.CssSelectorQuery#queryString" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="queryString:String"></a>
<a id="queryString:String"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">val</span>
</span>
<span class="symbol">
<span class="name">queryString</span><span class="result">: <span class="extype" name="scala.Predef.String">String</span></span>
</span>
</h4>
<p class="shortcomment cmt">the query string for this query.</p><div class="fullcomment"><div class="comment cmt"><p>the query string for this query.
</p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="" class="extype" name="org.scalatest.selenium.WebBrowser.CssSelectorQuery">CssSelectorQuery</a> → <a href="WebBrowser$Query.html" class="extype" name="org.scalatest.selenium.WebBrowser.Query">Query</a></dd></dl></div>
</li><li name="scala.AnyRef#synchronized" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="synchronized[T0](x$1:=>T0):T0"></a>
<a id="synchronized[T0](⇒T0):T0"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier">final </span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">synchronized</span><span class="tparams">[<span name="T0">T0</span>]</span><span class="params">(<span name="arg0">arg0: ⇒ <span class="extype" name="java.lang.AnyRef.synchronized.T0">T0</span></span>)</span><span class="result">: <span class="extype" name="java.lang.AnyRef.synchronized.T0">T0</span></span>
</span>
</h4>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div>
</li><li name="scala.AnyRef#wait" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="wait():Unit"></a>
<a id="wait():Unit"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier">final </span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">wait</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span>
</span>
</h4>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd><dt>Annotations</dt><dd>
<span class="name">@throws</span><span class="args">()</span>
</dd></dl></div>
</li><li name="scala.AnyRef#wait" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="wait(x$1:Long,x$2:Int):Unit"></a>
<a id="wait(Long,Int):Unit"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier">final </span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">wait</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.Long">Long</span></span>, <span name="arg1">arg1: <span class="extype" name="scala.Int">Int</span></span>)</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span>
</span>
</h4>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd><dt>Annotations</dt><dd>
<span class="name">@throws</span><span class="args">()</span>
</dd></dl></div>
</li><li name="scala.AnyRef#wait" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="wait(x$1:Long):Unit"></a>
<a id="wait(Long):Unit"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier">final </span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">wait</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.Long">Long</span></span>)</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span>
</span>
</h4>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd><dt>Annotations</dt><dd>
<span class="name">@throws</span><span class="args">()</span>
</dd></dl></div>
</li><li name="org.scalatest.selenium.WebBrowser.Query#webElement" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="webElement(implicitdriver:org.openqa.selenium.WebDriver):org.openqa.selenium.WebElement"></a>
<a id="webElement(WebDriver):WebElement"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">webElement</span><span class="params">(<span class="implicit">implicit </span><span name="driver">driver: <span class="extype" name="org.openqa.selenium.WebDriver">WebDriver</span></span>)</span><span class="result">: <span class="extype" name="org.openqa.selenium.WebElement">WebElement</span></span>
</span>
</h4>
<p class="shortcomment cmt">Returns the first <code>WebElement</code> selected by this query, or throws <code>TestFailedException</code>
if no <code>WebElement</code> is selected.</p><div class="fullcomment"><div class="comment cmt"><p>Returns the first <code>WebElement</code> selected by this query, or throws <code>TestFailedException</code>
if no <code>WebElement</code> is selected.
</p></div><dl class="paramcmts block"><dt class="param">driver</dt><dd class="cmt"><p>the <code>WebDriver</code> with which to drive the browser</p></dd><dt>returns</dt><dd class="cmt"><p>the <code>WebElement</code> selected by this query</p></dd></dl><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="WebBrowser$Query.html" class="extype" name="org.scalatest.selenium.WebBrowser.Query">Query</a></dd><dt>Exceptions thrown</dt><dd><span class="cmt">TestFailedException<p>if nothing is selected by this query
</p></span></dd></dl></div>
</li></ol>
</div>
</div>
<div id="inheritedMembers">
<div class="parent" name="scala.Serializable">
<h3>Inherited from <span class="extype" name="scala.Serializable">Serializable</span></h3>
</div><div class="parent" name="java.io.Serializable">
<h3>Inherited from <span class="extype" name="java.io.Serializable">Serializable</span></h3>
</div><div class="parent" name="scala.Product">
<h3>Inherited from <span class="extype" name="scala.Product">Product</span></h3>
</div><div class="parent" name="scala.Equals">
<h3>Inherited from <span class="extype" name="scala.Equals">Equals</span></h3>
</div><div class="parent" name="org.scalatest.selenium.WebBrowser.Query">
<h3>Inherited from <a href="WebBrowser$Query.html" class="extype" name="org.scalatest.selenium.WebBrowser.Query">Query</a></h3>
</div><div class="parent" name="scala.AnyRef">
<h3>Inherited from <span class="extype" name="scala.AnyRef">AnyRef</span></h3>
</div><div class="parent" name="scala.Any">
<h3>Inherited from <span class="extype" name="scala.Any">Any</span></h3>
</div>
</div>
<div id="groupedMembers">
<div class="group" name="Ungrouped">
<h3>Ungrouped</h3>
</div>
</div>
</div>
<div id="tooltip"></div>
<div id="footer"> </div>
</body>
</html> |
MinimaxAlgorithm/poi-3.8/docs/apidocs/org/apache/poi/poifs/filesystem/POIFSDocumentPath.html | Stephania16/ProductDesignGame | <!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_29) on Sat Mar 17 18:04:40 MSK 2012 -->
<TITLE>
POIFSDocumentPath (POI API Documentation)
</TITLE>
<META NAME="date" CONTENT="2012-03-17">
<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="POIFSDocumentPath (POI API Documentation)";
}
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<HR>
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/POIFSDocumentPath.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../org/apache/poi/poifs/filesystem/POIFSDocument.html" title="class in org.apache.poi.poifs.filesystem"><B>PREV CLASS</B></A>
<A HREF="../../../../../org/apache/poi/poifs/filesystem/POIFSFileSystem.html" title="class in org.apache.poi.poifs.filesystem"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../index.html?org/apache/poi/poifs/filesystem/POIFSDocumentPath.html" target="_top"><B>FRAMES</B></A>
<A HREF="POIFSDocumentPath.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: NESTED | FIELD | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<!-- ======== START OF CLASS DATA ======== -->
<H2>
<FONT SIZE="-1">
org.apache.poi.poifs.filesystem</FONT>
<BR>
Class POIFSDocumentPath</H2>
<PRE>
java.lang.Object
<IMG SRC="../../../../../resources/inherit.gif" ALT="extended by "><B>org.apache.poi.poifs.filesystem.POIFSDocumentPath</B>
</PRE>
<HR>
<DL>
<DT><PRE>public class <B>POIFSDocumentPath</B><DT>extends java.lang.Object</DL>
</PRE>
<P>
Class POIFSDocumentPath
<P>
<P>
<DL>
<DT><B>Version:</B></DT>
<DD>%I%, %G%</DD>
<DT><B>Author:</B></DT>
<DD>Marc Johnson (mjohnson at apache dot org)</DD>
</DL>
<HR>
<P>
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<A NAME="constructor_summary"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Constructor Summary</B></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><B><A HREF="../../../../../org/apache/poi/poifs/filesystem/POIFSDocumentPath.html#POIFSDocumentPath()">POIFSDocumentPath</A></B>()</CODE>
<BR>
simple constructor for the path of a document that is in the
root of the POIFSFileSystem.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><B><A HREF="../../../../../org/apache/poi/poifs/filesystem/POIFSDocumentPath.html#POIFSDocumentPath(org.apache.poi.poifs.filesystem.POIFSDocumentPath, java.lang.String[])">POIFSDocumentPath</A></B>(<A HREF="../../../../../org/apache/poi/poifs/filesystem/POIFSDocumentPath.html" title="class in org.apache.poi.poifs.filesystem">POIFSDocumentPath</A> path,
java.lang.String[] components)</CODE>
<BR>
constructor that adds additional subdirectories to an existing
path</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><B><A HREF="../../../../../org/apache/poi/poifs/filesystem/POIFSDocumentPath.html#POIFSDocumentPath(java.lang.String[])">POIFSDocumentPath</A></B>(java.lang.String[] components)</CODE>
<BR>
constructor for the path of a document that is not in the root
of the POIFSFileSystem</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> boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/poi/poifs/filesystem/POIFSDocumentPath.html#equals(java.lang.Object)">equals</A></B>(java.lang.Object o)</CODE>
<BR>
equality.</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/poi/poifs/filesystem/POIFSDocumentPath.html#getComponent(int)">getComponent</A></B>(int n)</CODE>
<BR>
get the specified component</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../../org/apache/poi/poifs/filesystem/POIFSDocumentPath.html" title="class in org.apache.poi.poifs.filesystem">POIFSDocumentPath</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/poi/poifs/filesystem/POIFSDocumentPath.html#getParent()">getParent</A></B>()</CODE>
<BR>
Returns the path's parent or <code>null</code> if this path
is the root path.</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/poi/poifs/filesystem/POIFSDocumentPath.html#hashCode()">hashCode</A></B>()</CODE>
<BR>
calculate and return the hashcode</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/poi/poifs/filesystem/POIFSDocumentPath.html#length()">length</A></B>()</CODE>
<BR>
</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/poi/poifs/filesystem/POIFSDocumentPath.html#toString()">toString</A></B>()</CODE>
<BR>
Returns a string representation of the path.</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, finalize, getClass, notify, notifyAll, wait, wait, wait</CODE></TD>
</TR>
</TABLE>
<P>
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<A NAME="constructor_detail"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
<B>Constructor Detail</B></FONT></TH>
</TR>
</TABLE>
<A NAME="POIFSDocumentPath(java.lang.String[])"><!-- --></A><H3>
POIFSDocumentPath</H3>
<PRE>
public <B>POIFSDocumentPath</B>(java.lang.String[] components)
throws java.lang.IllegalArgumentException</PRE>
<DL>
<DD>constructor for the path of a document that is not in the root
of the POIFSFileSystem
<P>
<DL>
<DT><B>Parameters:</B><DD><CODE>components</CODE> - the Strings making up the path to a document.
The Strings must be ordered as they appear in
the directory hierarchy of the the document
-- the first string must be the name of a
directory in the root of the POIFSFileSystem,
and every Nth (for N > 1) string thereafter
must be the name of a directory in the
directory identified by the (N-1)th string.
<p>
If the components parameter is null or has
zero length, the POIFSDocumentPath is
appropriate for a document that is in the
root of a POIFSFileSystem
<DT><B>Throws:</B>
<DD><CODE>java.lang.IllegalArgumentException</CODE> - if any of the elements in
the components parameter
are null or have zero
length</DL>
</DL>
<HR>
<A NAME="POIFSDocumentPath()"><!-- --></A><H3>
POIFSDocumentPath</H3>
<PRE>
public <B>POIFSDocumentPath</B>()</PRE>
<DL>
<DD>simple constructor for the path of a document that is in the
root of the POIFSFileSystem. The constructor that takes an
array of Strings can also be used to create such a
POIFSDocumentPath by passing it a null or empty String array
<P>
</DL>
<HR>
<A NAME="POIFSDocumentPath(org.apache.poi.poifs.filesystem.POIFSDocumentPath, java.lang.String[])"><!-- --></A><H3>
POIFSDocumentPath</H3>
<PRE>
public <B>POIFSDocumentPath</B>(<A HREF="../../../../../org/apache/poi/poifs/filesystem/POIFSDocumentPath.html" title="class in org.apache.poi.poifs.filesystem">POIFSDocumentPath</A> path,
java.lang.String[] components)
throws java.lang.IllegalArgumentException</PRE>
<DL>
<DD>constructor that adds additional subdirectories to an existing
path
<P>
<DL>
<DT><B>Parameters:</B><DD><CODE>path</CODE> - the existing path<DD><CODE>components</CODE> - the additional subdirectory names to be added
<DT><B>Throws:</B>
<DD><CODE>java.lang.IllegalArgumentException</CODE> - if any of the Strings in
components is null or zero
length</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="equals(java.lang.Object)"><!-- --></A><H3>
equals</H3>
<PRE>
public boolean <B>equals</B>(java.lang.Object o)</PRE>
<DL>
<DD>equality. Two POIFSDocumentPath instances are equal if they
have the same number of component Strings, and if each
component String is equal to its coresponding component String
<P>
<DD><DL>
<DT><B>Overrides:</B><DD><CODE>equals</CODE> in class <CODE>java.lang.Object</CODE></DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>o</CODE> - the object we're checking equality for
<DT><B>Returns:</B><DD>true if the object is equal to this object</DL>
</DD>
</DL>
<HR>
<A NAME="hashCode()"><!-- --></A><H3>
hashCode</H3>
<PRE>
public int <B>hashCode</B>()</PRE>
<DL>
<DD>calculate and return the hashcode
<P>
<DD><DL>
<DT><B>Overrides:</B><DD><CODE>hashCode</CODE> in class <CODE>java.lang.Object</CODE></DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>hashcode</DL>
</DD>
</DL>
<HR>
<A NAME="length()"><!-- --></A><H3>
length</H3>
<PRE>
public int <B>length</B>()</PRE>
<DL>
<DD><DL>
<DT><B>Returns:</B><DD>the number of components</DL>
</DD>
</DL>
<HR>
<A NAME="getComponent(int)"><!-- --></A><H3>
getComponent</H3>
<PRE>
public java.lang.String <B>getComponent</B>(int n)
throws java.lang.ArrayIndexOutOfBoundsException</PRE>
<DL>
<DD>get the specified component
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>n</CODE> - which component (0 ... length() - 1)
<DT><B>Returns:</B><DD>the nth component;
<DT><B>Throws:</B>
<DD><CODE>java.lang.ArrayIndexOutOfBoundsException</CODE> - if n < 0 or n >=
length()</DL>
</DD>
</DL>
<HR>
<A NAME="getParent()"><!-- --></A><H3>
getParent</H3>
<PRE>
public <A HREF="../../../../../org/apache/poi/poifs/filesystem/POIFSDocumentPath.html" title="class in org.apache.poi.poifs.filesystem">POIFSDocumentPath</A> <B>getParent</B>()</PRE>
<DL>
<DD><p>Returns the path's parent or <code>null</code> if this path
is the root path.</p>
<P>
<DD><DL>
<DT><B>Returns:</B><DD>path of parent, or null if this path is the root path<DT><B>Since:</B></DT>
<DD>2002-01-24</DD>
</DL>
</DD>
</DL>
<HR>
<A NAME="toString()"><!-- --></A><H3>
toString</H3>
<PRE>
public java.lang.String <B>toString</B>()</PRE>
<DL>
<DD><p>Returns a string representation of the path. Components are
separated by the platform-specific file separator.</p>
<P>
<DD><DL>
<DT><B>Overrides:</B><DD><CODE>toString</CODE> in class <CODE>java.lang.Object</CODE></DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>string representation<DT><B>Since:</B></DT>
<DD>2002-01-24</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="class-use/POIFSDocumentPath.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../org/apache/poi/poifs/filesystem/POIFSDocument.html" title="class in org.apache.poi.poifs.filesystem"><B>PREV CLASS</B></A>
<A HREF="../../../../../org/apache/poi/poifs/filesystem/POIFSFileSystem.html" title="class in org.apache.poi.poifs.filesystem"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../index.html?org/apache/poi/poifs/filesystem/POIFSDocumentPath.html" target="_top"><B>FRAMES</B></A>
<A HREF="POIFSDocumentPath.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: NESTED | FIELD | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
<i>Copyright 2012 The Apache Software Foundation or
its licensors, as applicable.</i>
</BODY>
</HTML>
|
doc/testing/package-tree.html | shidh/CloudDataBases | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="zh">
<head>
<!-- Generated by javadoc (version 1.6.0_27) on Sat Dec 21 10:19:22 CET 2013 -->
<title>testing 类分层结构</title>
<meta name="date" content="2013-12-21">
<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="testing \u7C7B\u5206\u5C42\u7ED3\u6784";
}
//-->
</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="跳过导航链接"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../overview-summary.html">概述</a></li>
<li><a href="package-summary.html">软件包</a></li>
<li>类</li>
<li>使用</li>
<li class="navBarCell1Rev">树</li>
<li><a href="../deprecated-list.html">已过时</a></li>
<li><a href="../index-files/index-1.html">索引</a></li>
<li><a href="../help-doc.html">帮助</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../logger/package-tree.html">上一个</a></li>
<li>下一个</li>
</ul>
<ul class="navList">
<li><a href="../index.html?testing/package-tree.html" target="_top">框架</a></li>
<li><a href="package-tree.html" target="_top">无框架</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../allclasses-noframe.html">所有类</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">软件包 testing 的分层结构</h1>
<span class="strong">软件包分层结构:</span>
<ul class="horizontal">
<li><a href="../overview-tree.html">所有软件包</a></li>
</ul>
</div>
<div class="contentContainer">
<h2 title="类分层结构">类分层结构</h2>
<ul>
<li type="circle">java.lang.Object
<ul>
<li type="circle">testing.<a href="../testing/AllTests.html" title="testing 中的类"><span class="strong">AllTests</span></a></li>
<li type="circle">junit.framework.Assert
<ul>
<li type="circle">junit.framework.TestCase (implements junit.framework.Test)
<ul>
<li type="circle">testing.<a href="../testing/AdditionalTest.html" title="testing 中的类"><span class="strong">AdditionalTest</span></a></li>
<li type="circle">testing.<a href="../testing/ConnectionTest.html" title="testing 中的类"><span class="strong">ConnectionTest</span></a></li>
<li type="circle">testing.<a href="../testing/InteractionTest.html" title="testing 中的类"><span class="strong">InteractionTest</span></a></li>
</ul>
</li>
</ul>
</li>
<li type="circle">testing.<a href="../testing/PerformanceTest.html" title="testing 中的类"><span class="strong">PerformanceTest</span></a></li>
<li type="circle">testing.<a href="../testing/Test.html" title="testing 中的类"><span class="strong">Test</span></a></li>
</ul>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="跳过导航链接"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../overview-summary.html">概述</a></li>
<li><a href="package-summary.html">软件包</a></li>
<li>类</li>
<li>使用</li>
<li class="navBarCell1Rev">树</li>
<li><a href="../deprecated-list.html">已过时</a></li>
<li><a href="../index-files/index-1.html">索引</a></li>
<li><a href="../help-doc.html">帮助</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../logger/package-tree.html">上一个</a></li>
<li>下一个</li>
</ul>
<ul class="navList">
<li><a href="../index.html?testing/package-tree.html" target="_top">框架</a></li>
<li><a href="package-tree.html" target="_top">无框架</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../allclasses-noframe.html">所有类</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>
|
library/hazelcast/2.5/hazelcast-2.5/docs/javadoc/com/hazelcast/client/class-use/ClientConfigBuilder.html | health-and-care-developer-network/health-and-care-developer-network | <!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_37) on Tue Jan 15 15:45:40 EET 2013 -->
<TITLE>
Uses of Class com.hazelcast.client.ClientConfigBuilder (Hazelcast API - 2.5)
</TITLE>
<META NAME="date" CONTENT="2013-01-15">
<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 com.hazelcast.client.ClientConfigBuilder (Hazelcast API - 2.5)";
}
}
</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="../../../../com/hazelcast/client/ClientConfigBuilder.html" title="class in com.hazelcast.client"><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="../../../../overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../index.html?com/hazelcast/client//class-useClientConfigBuilder.html" target="_top"><B>FRAMES</B></A>
<A HREF="ClientConfigBuilder.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>com.hazelcast.client.ClientConfigBuilder</B></H2>
</CENTER>
No usage of com.hazelcast.client.ClientConfigBuilder
<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="../../../../com/hazelcast/client/ClientConfigBuilder.html" title="class in com.hazelcast.client"><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="../../../../overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../index.html?com/hazelcast/client//class-useClientConfigBuilder.html" target="_top"><B>FRAMES</B></A>
<A HREF="ClientConfigBuilder.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
<i>Copyright © 2008-2012 Hazelcast, Inc. All Rights Reserved.</i>
</BODY>
</HTML>
|
src/swagger-oauth2-redirect.html | gravitee-io/gravitee-management-webui | <!--
Copyright (C) 2015 The Gravitee team (http://gravitee.io)
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.
-->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="description" content="" />
<meta name="viewport" content="width=device-width" />
<link rel="icon" href="favicon.ico" />
<script language="JavaScript">
var oauth2 = window.opener.swaggerUIRedirectOauth2;
var sentState = oauth2.state;
var redirectUrl = oauth2.redirectUrl;
var isValid, qp, arr;
if (/code|token|error/.test(window.location.hash)) {
qp = window.location.hash.substring(1);
} else {
qp = location.search.substring(1);
}
arr = qp.split('&');
arr.forEach(function (v, i, _arr) {
_arr[i] = '"' + v.replace('=', '":"') + '"';
});
qp = qp
? JSON.parse('{' + arr.join() + '}', function (key, value) {
return key === '' ? value : decodeURIComponent(value);
})
: {};
isValid = qp.state === sentState;
if (
(oauth2.auth.schema.get('flow') === 'accessCode' || oauth2.auth.schema.get('flow') === 'authorizationCode') &&
!oauth2.auth.code
) {
if (!isValid) {
oauth2.errCb({
authId: oauth2.auth.name,
source: 'auth',
level: 'warning',
message: "Authorization may be unsafe, passed state was changed in server Passed state wasn't returned from auth server",
});
}
if (qp.code) {
delete oauth2.state;
oauth2.auth.code = qp.code;
oauth2.callback({ auth: oauth2.auth, redirectUrl: redirectUrl });
} else {
let oauthErrorMsg;
if (qp.error) {
oauthErrorMsg =
'[' +
qp.error +
']: ' +
(qp.error_description ? qp.error_description + '. ' : 'no accessCode received from the server. ') +
(qp.error_uri ? 'More info: ' + qp.error_uri : '');
}
oauth2.errCb({
authId: oauth2.auth.name,
source: 'auth',
level: 'error',
message: oauthErrorMsg || '[Authorization failed]: no accessCode received from the server',
});
}
} else {
oauth2.callback({ auth: oauth2.auth, token: qp, isValid: isValid, redirectUrl: redirectUrl });
}
window.close();
</script>
</head>
<body layout="column">
<p id="BrowserNotSupportedBanner" class="browsehappy" style="display: none">
You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your
experience.
</p>
</body>
</html>
|
docs/kettle-engine/core/io.github.restioson.kettle.entity.component/-health-component/health.html | Restioson/restioson.github.io | <HTML>
<HEAD>
<meta charset="UTF-8">
<title>HealthComponent.health - core</title>
<link rel="stylesheet" href="..\..\..\style.css">
</HEAD>
<BODY>
<a href="../../index.html">core</a> / <a href="../index.html">io.github.restioson.kettle.entity.component</a> / <a href="index.html">HealthComponent</a> / <a href=".">health</a><br/>
<br/>
<h1>health</h1>
<a name="io.github.restioson.kettle.entity.component.HealthComponent$health"></a>
<code><span class="keyword">var </span><span class="identifier">health</span><span class="symbol">: </span><span class="identifier">Int</span></code> <a href="https://github.com/Restioson/kettle-engine/tree/master/core/src/kotlin/io/github/restioson/kettle/entity/component/HealthComponent.kt#L12">(source)</a>
</BODY>
</HTML>
|
javadoc/org/smslib/class-use/InboundEncryptedMessage.html | pioryan/smslib | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_27) on Wed Mar 06 23:03:08 EET 2013 -->
<TITLE>
Uses of Class org.smslib.InboundEncryptedMessage (SMSLib 3.5.3)
</TITLE>
<META NAME="date" CONTENT="2013-03-06">
<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 org.smslib.InboundEncryptedMessage (SMSLib 3.5.3)";
}
}
</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="../../../org/smslib/InboundEncryptedMessage.html" title="class in org.smslib"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>SMSLib 3.5.3</b></EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../index.html?org/smslib/\class-useInboundEncryptedMessage.html" target="_top"><B>FRAMES</B></A>
<A HREF="InboundEncryptedMessage.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<CENTER>
<H2>
<B>Uses of Class<br>org.smslib.InboundEncryptedMessage</B></H2>
</CENTER>
No usage of org.smslib.InboundEncryptedMessage
<P>
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../org/smslib/InboundEncryptedMessage.html" title="class in org.smslib"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>SMSLib 3.5.3</b></EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../index.html?org/smslib/\class-useInboundEncryptedMessage.html" target="_top"><B>FRAMES</B></A>
<A HREF="InboundEncryptedMessage.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>
(c) 2002-2011, http://smslib.org
</BODY>
</HTML>
|
docs/build/html/genindex.html | mattjhayes/nmeta |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Index — nmeta 0.2.0 documentation</title>
<link rel="stylesheet" href="_static/alabaster.css" type="text/css" />
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: './',
VERSION: '0.2.0',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
};
</script>
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
<link rel="top" title="nmeta 0.2.0 documentation" href="index.html" />
<link rel="stylesheet" href="_static/custom.css" type="text/css" />
<meta name="viewport" content="width=device-width, initial-scale=0.9, maximum-scale=0.9" />
</head>
<body role="document">
<div class="document">
<div class="documentwrapper">
<div class="bodywrapper">
<div class="body" role="main">
<h1 id="index">Index</h1>
<div class="genindex-jumpbox">
<a href="#_"><strong>_</strong></a>
| <a href="#A"><strong>A</strong></a>
| <a href="#B"><strong>B</strong></a>
| <a href="#C"><strong>C</strong></a>
| <a href="#D"><strong>D</strong></a>
| <a href="#E"><strong>E</strong></a>
| <a href="#F"><strong>F</strong></a>
| <a href="#G"><strong>G</strong></a>
| <a href="#I"><strong>I</strong></a>
| <a href="#K"><strong>K</strong></a>
| <a href="#L"><strong>L</strong></a>
| <a href="#M"><strong>M</strong></a>
| <a href="#N"><strong>N</strong></a>
| <a href="#O"><strong>O</strong></a>
| <a href="#P"><strong>P</strong></a>
| <a href="#Q"><strong>Q</strong></a>
| <a href="#R"><strong>R</strong></a>
| <a href="#S"><strong>S</strong></a>
| <a href="#T"><strong>T</strong></a>
| <a href="#U"><strong>U</strong></a>
| <a href="#V"><strong>V</strong></a>
</div>
<h2 id="_">_</h2>
<table style="width: 100%" class="indextable genindextable"><tr>
<td style="width: 33%" valign="top"><dl>
<dt><a href="nmeta.html#nmeta.NMeta._add_flow">_add_flow() (nmeta.NMeta method)</a>
</dt>
<dt><a href="nmeta.html#nmeta.NMeta._CONTEXTS">_CONTEXTS (nmeta.NMeta attribute)</a>
</dt>
<dt><a href="nmeta.html#nmeta.NMeta._packet_in_debug">_packet_in_debug() (nmeta.NMeta method)</a>
</dt>
</dl></td>
<td style="width: 33%" valign="top"><dl>
<dt><a href="nmeta.html#nmeta.NMeta._packet_in_handler">_packet_in_handler() (nmeta.NMeta method)</a>
</dt>
<dt><a href="nmeta.html#nmeta._port_status_handler">_port_status_handler() (in module nmeta)</a>
</dt>
</dl></td>
</tr></table>
<h2 id="A">A</h2>
<table style="width: 100%" class="indextable genindextable"><tr>
<td style="width: 33%" valign="top"><dl>
<dt><a href="switch_abstraction.html#switch_abstraction.SwitchAbstract.add_flow">add_flow() (switch_abstraction.SwitchAbstract method)</a>
</dt>
<dt><a href="switch_abstraction.html#switch_abstraction.SwitchAbstract.add_flow_eth">add_flow_eth() (switch_abstraction.SwitchAbstract method)</a>
</dt>
<dt><a href="switch_abstraction.html#switch_abstraction.SwitchAbstract.add_flow_ip">add_flow_ip() (switch_abstraction.SwitchAbstract method)</a>
</dt>
<dt><a href="switch_abstraction.html#switch_abstraction.SwitchAbstract.add_flow_tcp">add_flow_tcp() (switch_abstraction.SwitchAbstract method)</a>
</dt>
</dl></td>
<td style="width: 33%" valign="top"><dl>
<dt><a href="api.html#api.Api">Api (class in api)</a>
</dt>
<dt><a href="api.html#module-api">api (module)</a>
</dt>
<dt><a href="tc_identity.html#tc_identity.IdentityInspect.arp_reply_in">arp_reply_in() (tc_identity.IdentityInspect method)</a>
</dt>
<dt><a href="nmisc.html#nmisc.AutoVivification">AutoVivification (class in nmisc)</a>
</dt>
</dl></td>
</tr></table>
<h2 id="B">B</h2>
<table style="width: 100%" class="indextable genindextable"><tr>
<td style="width: 33%" valign="top"><dl>
<dt><a href="forwarding.html#forwarding.Forwarding.basic_switch">basic_switch() (forwarding.Forwarding method)</a>
</dt>
</dl></td>
</tr></table>
<h2 id="C">C</h2>
<table style="width: 100%" class="indextable genindextable"><tr>
<td style="width: 33%" valign="top"><dl>
<dt><a href="tc_identity.html#tc_identity.IdentityInspect.check_identity">check_identity() (tc_identity.IdentityInspect method)</a>
</dt>
<dt><a href="tc_payload.html#tc_payload.PayloadInspect.check_payload">check_payload() (tc_payload.PayloadInspect method)</a>
</dt>
<dt><a href="qos.html#qos.QoS.check_policy">check_policy() (qos.QoS method)</a>
</dt>
<dd><dl>
<dt><a href="tc_policy.html#tc_policy.TrafficClassificationPolicy.check_policy">(tc_policy.TrafficClassificationPolicy method)</a>
</dt>
</dl></dd>
<dt><a href="tc_static.html#tc_static.StaticInspect.check_static">check_static() (tc_static.StaticInspect method)</a>
</dt>
</dl></td>
<td style="width: 33%" valign="top"><dl>
<dt><a href="tc_statistical.html#tc_statistical.StatisticalInspect.check_statistical">check_statistical() (tc_statistical.StatisticalInspect method)</a>
</dt>
<dt><a href="config.html#config.Config">Config (class in config)</a>
</dt>
<dt><a href="config.html#module-config">config (module)</a>
</dt>
</dl></td>
</tr></table>
<h2 id="D">D</h2>
<table style="width: 100%" class="indextable genindextable"><tr>
<td style="width: 33%" valign="top"><dl>
<dt><a href="nmeta.html#nmeta.NMeta.desc_stats_reply_handler">desc_stats_reply_handler() (nmeta.NMeta method)</a>
</dt>
<dt><a href="tc_identity.html#tc_identity.IdentityInspect.dhcp_in">dhcp_in() (tc_identity.IdentityInspect method)</a>
</dt>
<dt><a href="dns_experimental.html#dns_experimental.DNS">DNS (class in dns_experimental)</a>
</dt>
</dl></td>
<td style="width: 33%" valign="top"><dl>
<dt><a href="dns_experimental.html#module-dns_experimental">dns_experimental (module)</a>
</dt>
<dt><a href="tc_identity.html#tc_identity.IdentityInspect.dns_reply_in">dns_reply_in() (tc_identity.IdentityInspect method)</a>
</dt>
</dl></td>
</tr></table>
<h2 id="E">E</h2>
<table style="width: 100%" class="indextable genindextable"><tr>
<td style="width: 33%" valign="top"><dl>
<dt><a href="nmeta.html#nmeta.NMeta.error_msg_handler">error_msg_handler() (nmeta.NMeta method)</a>
</dt>
</dl></td>
</tr></table>
<h2 id="F">F</h2>
<table style="width: 100%" class="indextable genindextable"><tr>
<td style="width: 33%" valign="top"><dl>
<dt><a href="flow.html#module-flow">flow (module)</a>
</dt>
<dt><a href="flow.html#flow.FlowMetadata">FlowMetadata (class in flow)</a>
</dt>
</dl></td>
<td style="width: 33%" valign="top"><dl>
<dt><a href="forwarding.html#forwarding.Forwarding">Forwarding (class in forwarding)</a>
</dt>
<dt><a href="forwarding.html#module-forwarding">forwarding (module)</a>
</dt>
</dl></td>
</tr></table>
<h2 id="G">G</h2>
<table style="width: 100%" class="indextable genindextable"><tr>
<td style="width: 33%" valign="top"><dl>
<dt><a href="switch_abstraction.html#switch_abstraction.SwitchAbstract.get_actions">get_actions() (switch_abstraction.SwitchAbstract method)</a>
</dt>
<dt><a href="tc_identity.html#tc_identity.IdentityInspect.get_augmented_fm_table">get_augmented_fm_table() (tc_identity.IdentityInspect method)</a>
</dt>
<dt><a href="api.html#api.RESTAPIController.get_data_structure_size_rows">get_data_structure_size_rows() (api.RESTAPIController method)</a>
</dt>
<dt><a href="measure.html#measure.Measurement.get_event_metric_stats">get_event_metric_stats() (measure.Measurement method)</a>
</dt>
<dt><a href="measure.html#measure.Measurement.get_event_rate">get_event_rate() (measure.Measurement method)</a>
</dt>
<dt><a href="api.html#api.RESTAPIController.get_event_rates">get_event_rates() (api.RESTAPIController method)</a>
</dt>
<dd><dl>
<dt><a href="measure.html#measure.Measurement.get_event_rates">(measure.Measurement method)</a>
</dt>
</dl></dd>
<dt><a href="switch_abstraction.html#switch_abstraction.SwitchAbstract.get_flow_match">get_flow_match() (switch_abstraction.SwitchAbstract method)</a>
</dt>
<dt><a href="flow.html#flow.FlowMetadata.get_fm_table">get_fm_table() (flow.FlowMetadata method)</a>
</dt>
<dt><a href="flow.html#flow.FlowMetadata.get_fm_table_size_rows">get_fm_table_size_rows() (flow.FlowMetadata method)</a>
</dt>
</dl></td>
<td style="width: 33%" valign="top"><dl>
<dt><a href="switch_abstraction.html#switch_abstraction.SwitchAbstract.get_friendly_of_version">get_friendly_of_version() (switch_abstraction.SwitchAbstract method)</a>
</dt>
<dt><a href="api.html#api.RESTAPIController.get_id_ip">get_id_ip() (api.RESTAPIController method)</a>
</dt>
<dt><a href="api.html#api.RESTAPIController.get_id_mac">get_id_mac() (api.RESTAPIController method)</a>
</dt>
<dt><a href="api.html#api.RESTAPIController.get_id_service">get_id_service() (api.RESTAPIController method)</a>
</dt>
<dt><a href="tc_identity.html#tc_identity.IdentityInspect.get_identity_nic_table">get_identity_nic_table() (tc_identity.IdentityInspect method)</a>
</dt>
<dt><a href="tc_identity.html#tc_identity.IdentityInspect.get_identity_system_table">get_identity_system_table() (tc_identity.IdentityInspect method)</a>
</dt>
<dt><a href="switch_abstraction.html#switch_abstraction.SwitchAbstract.get_in_port">get_in_port() (switch_abstraction.SwitchAbstract method)</a>
</dt>
<dt><a href="api.html#api.RESTAPIController.get_packet_time">get_packet_time() (api.RESTAPIController method)</a>
</dt>
<dt><a href="config.html#config.Config.get_value">get_value() (config.Config method)</a>
</dt>
</dl></td>
</tr></table>
<h2 id="I">I</h2>
<table style="width: 100%" class="indextable genindextable"><tr>
<td style="width: 33%" valign="top"><dl>
<dt><a href="tc_identity.html#tc_identity.IdentityInspect">IdentityInspect (class in tc_identity)</a>
</dt>
<dt><a href="tc_identity.html#tc_identity.IdentityInspect.ip4_in">ip4_in() (tc_identity.IdentityInspect method)</a>
</dt>
<dt><a href="api.html#api.Api.IP_PATTERN">IP_PATTERN (api.Api attribute)</a>
</dt>
<dt><a href="nmeta.html#nmeta.ipv4_text_to_int">ipv4_text_to_int() (in module nmeta)</a>
</dt>
<dt><a href="tc_static.html#tc_static.StaticInspect.is_match_ethertype">is_match_ethertype() (tc_static.StaticInspect method)</a>
</dt>
<dt><a href="tc_static.html#tc_static.StaticInspect.is_match_ip_space">is_match_ip_space() (tc_static.StaticInspect method)</a>
</dt>
</dl></td>
<td style="width: 33%" valign="top"><dl>
<dt><a href="tc_static.html#tc_static.StaticInspect.is_match_macaddress">is_match_macaddress() (tc_static.StaticInspect method)</a>
</dt>
<dt><a href="tc_static.html#tc_static.StaticInspect.is_valid_ethertype">is_valid_ethertype() (tc_static.StaticInspect method)</a>
</dt>
<dt><a href="tc_static.html#tc_static.StaticInspect.is_valid_ip_space">is_valid_ip_space() (tc_static.StaticInspect method)</a>
</dt>
<dt><a href="tc_static.html#tc_static.StaticInspect.is_valid_macaddress">is_valid_macaddress() (tc_static.StaticInspect method)</a>
</dt>
<dt><a href="tc_static.html#tc_static.StaticInspect.is_valid_transport_port">is_valid_transport_port() (tc_static.StaticInspect method)</a>
</dt>
</dl></td>
</tr></table>
<h2 id="K">K</h2>
<table style="width: 100%" class="indextable genindextable"><tr>
<td style="width: 33%" valign="top"><dl>
<dt><a href="measure.html#measure.Measurement.kick_the_metric_buckets">kick_the_metric_buckets() (measure.Measurement method)</a>
</dt>
</dl></td>
<td style="width: 33%" valign="top"><dl>
<dt><a href="measure.html#measure.Measurement.kick_the_rate_buckets">kick_the_rate_buckets() (measure.Measurement method)</a>
</dt>
</dl></td>
</tr></table>
<h2 id="L">L</h2>
<table style="width: 100%" class="indextable genindextable"><tr>
<td style="width: 33%" valign="top"><dl>
<dt><a href="api.html#api.RESTAPIController.list_flow_table">list_flow_table() (api.RESTAPIController method)</a>
</dt>
<dt><a href="api.html#api.RESTAPIController.list_flow_table_augmented">list_flow_table_augmented() (api.RESTAPIController method)</a>
</dt>
<dt><a href="api.html#api.RESTAPIController.list_flow_table_by_IP">list_flow_table_by_IP() (api.RESTAPIController method)</a>
</dt>
</dl></td>
<td style="width: 33%" valign="top"><dl>
<dt><a href="api.html#api.RESTAPIController.list_identity_nic_table">list_identity_nic_table() (api.RESTAPIController method)</a>
</dt>
<dt><a href="api.html#api.RESTAPIController.list_identity_system_table">list_identity_system_table() (api.RESTAPIController method)</a>
</dt>
<dt><a href="tc_identity.html#tc_identity.IdentityInspect.lldp_in">lldp_in() (tc_identity.IdentityInspect method)</a>
</dt>
</dl></td>
</tr></table>
<h2 id="M">M</h2>
<table style="width: 100%" class="indextable genindextable"><tr>
<td style="width: 33%" valign="top"><dl>
<dt><a href="tc_payload.html#tc_payload.PayloadInspect.maintain_fcip_table">maintain_fcip_table() (tc_payload.PayloadInspect method)</a>
</dt>
<dd><dl>
<dt><a href="tc_statistical.html#tc_statistical.StatisticalInspect.maintain_fcip_table">(tc_statistical.StatisticalInspect method)</a>
</dt>
</dl></dd>
<dt><a href="flow.html#flow.FlowMetadata.maintain_fm_table">maintain_fm_table() (flow.FlowMetadata method)</a>
</dt>
<dt><a href="tc_identity.html#tc_identity.IdentityInspect.maintain_identity_tables">maintain_identity_tables() (tc_identity.IdentityInspect method)</a>
</dt>
</dl></td>
<td style="width: 33%" valign="top"><dl>
<dt><a href="measure.html#module-measure">measure (module)</a>
</dt>
<dt><a href="measure.html#measure.Measurement">Measurement (class in measure)</a>
</dt>
<dt><a href="api.html#api.NotFoundError.message">message (api.NotFoundError attribute)</a>
</dt>
</dl></td>
</tr></table>
<h2 id="N">N</h2>
<table style="width: 100%" class="indextable genindextable"><tr>
<td style="width: 33%" valign="top"><dl>
<dt><a href="nmeta.html#nmeta.NMeta">NMeta (class in nmeta)</a>
</dt>
<dt><a href="nmeta.html#module-nmeta">nmeta (module)</a>
</dt>
</dl></td>
<td style="width: 33%" valign="top"><dl>
<dt><a href="nmisc.html#module-nmisc">nmisc (module)</a>
</dt>
<dt><a href="api.html#api.NotFoundError">NotFoundError</a>
</dt>
</dl></td>
</tr></table>
<h2 id="O">O</h2>
<table style="width: 100%" class="indextable genindextable"><tr>
<td style="width: 33%" valign="top"><dl>
<dt><a href="nmeta.html#nmeta.NMeta.OFP_VERSIONS">OFP_VERSIONS (nmeta.NMeta attribute)</a>
</dt>
</dl></td>
</tr></table>
<h2 id="P">P</h2>
<table style="width: 100%" class="indextable genindextable"><tr>
<td style="width: 33%" valign="top"><dl>
<dt><a href="switch_abstraction.html#switch_abstraction.SwitchAbstract.packet_out">packet_out() (switch_abstraction.SwitchAbstract method)</a>
</dt>
<dt><a href="dns_experimental.html#dns_experimental.DNS.parse_dns">parse_dns() (dns_experimental.DNS method)</a>
</dt>
</dl></td>
<td style="width: 33%" valign="top"><dl>
<dt><a href="tc_payload.html#tc_payload.PayloadInspect">PayloadInspect (class in tc_payload)</a>
</dt>
</dl></td>
</tr></table>
<h2 id="Q">Q</h2>
<table style="width: 100%" class="indextable genindextable"><tr>
<td style="width: 33%" valign="top"><dl>
<dt><a href="qos.html#qos.QoS">QoS (class in qos)</a>
</dt>
</dl></td>
<td style="width: 33%" valign="top"><dl>
<dt><a href="qos.html#module-qos">qos (module)</a>
</dt>
</dl></td>
</tr></table>
<h2 id="R">R</h2>
<table style="width: 100%" class="indextable genindextable"><tr>
<td style="width: 33%" valign="top"><dl>
<dt><a href="measure.html#measure.Measurement.record_metric">record_metric() (measure.Measurement method)</a>
</dt>
<dt><a href="measure.html#measure.Measurement.record_rate_event">record_rate_event() (measure.Measurement method)</a>
</dt>
<dt><a href="switch_abstraction.html#switch_abstraction.SwitchAbstract.request_switch_desc">request_switch_desc() (switch_abstraction.SwitchAbstract method)</a>
</dt>
</dl></td>
<td style="width: 33%" valign="top"><dl>
<dt><a href="api.html#api.rest_command">rest_command() (in module api)</a>
</dt>
<dt><a href="api.html#api.RESTAPIController">RESTAPIController (class in api)</a>
</dt>
</dl></td>
</tr></table>
<h2 id="S">S</h2>
<table style="width: 100%" class="indextable genindextable"><tr>
<td style="width: 33%" valign="top"><dl>
<dt><a href="switch_abstraction.html#switch_abstraction.SwitchAbstract.set_switch_config">set_switch_config() (switch_abstraction.SwitchAbstract method)</a>
</dt>
<dt><a href="switch_abstraction.html#switch_abstraction.SwitchAbstract.set_switch_table_miss">set_switch_table_miss() (switch_abstraction.SwitchAbstract method)</a>
</dt>
<dt><a href="tc_static.html#tc_static.StaticInspect">StaticInspect (class in tc_static)</a>
</dt>
<dt><a href="tc_statistical.html#tc_statistical.StatisticalInspect">StatisticalInspect (class in tc_statistical)</a>
</dt>
</dl></td>
<td style="width: 33%" valign="top"><dl>
<dt><a href="switch_abstraction.html#module-switch_abstraction">switch_abstraction (module)</a>
</dt>
<dt><a href="nmeta.html#nmeta.NMeta.switch_connection_handler">switch_connection_handler() (nmeta.NMeta method)</a>
</dt>
<dt><a href="switch_abstraction.html#switch_abstraction.SwitchAbstract">SwitchAbstract (class in switch_abstraction)</a>
</dt>
</dl></td>
</tr></table>
<h2 id="T">T</h2>
<table style="width: 100%" class="indextable genindextable"><tr>
<td style="width: 33%" valign="top"><dl>
<dt><a href="tc_identity.html#module-tc_identity">tc_identity (module)</a>
</dt>
<dt><a href="tc_payload.html#module-tc_payload">tc_payload (module)</a>
</dt>
<dt><a href="tc_policy.html#module-tc_policy">tc_policy (module)</a>
</dt>
</dl></td>
<td style="width: 33%" valign="top"><dl>
<dt><a href="tc_static.html#module-tc_static">tc_static (module)</a>
</dt>
<dt><a href="tc_statistical.html#module-tc_statistical">tc_statistical (module)</a>
</dt>
<dt><a href="tc_policy.html#tc_policy.TrafficClassificationPolicy">TrafficClassificationPolicy (class in tc_policy)</a>
</dt>
</dl></td>
</tr></table>
<h2 id="U">U</h2>
<table style="width: 100%" class="indextable genindextable"><tr>
<td style="width: 33%" valign="top"><dl>
<dt><a href="flow.html#flow.FlowMetadata.update_flowmetadata">update_flowmetadata() (flow.FlowMetadata method)</a>
</dt>
<dt><a href="api.html#api.Api.url_data_size_rows">url_data_size_rows (api.Api attribute)</a>
</dt>
<dt><a href="api.html#api.Api.url_flowtable">url_flowtable (api.Api attribute)</a>
</dt>
<dt><a href="api.html#api.Api.url_flowtable_augmented">url_flowtable_augmented (api.Api attribute)</a>
</dt>
<dt><a href="api.html#api.Api.url_flowtable_by_ip">url_flowtable_by_ip (api.Api attribute)</a>
</dt>
<dt><a href="api.html#api.Api.url_identity_ip">url_identity_ip (api.Api attribute)</a>
</dt>
</dl></td>
<td style="width: 33%" valign="top"><dl>
<dt><a href="api.html#api.Api.url_identity_mac">url_identity_mac (api.Api attribute)</a>
</dt>
<dt><a href="api.html#api.Api.url_identity_nic_table">url_identity_nic_table (api.Api attribute)</a>
</dt>
<dt><a href="api.html#api.Api.url_identity_service">url_identity_service (api.Api attribute)</a>
</dt>
<dt><a href="api.html#api.Api.url_identity_system_table">url_identity_system_table (api.Api attribute)</a>
</dt>
<dt><a href="api.html#api.Api.url_measure_event_rates">url_measure_event_rates (api.Api attribute)</a>
</dt>
<dt><a href="api.html#api.Api.url_measure_pkt_time">url_measure_pkt_time (api.Api attribute)</a>
</dt>
</dl></td>
</tr></table>
<h2 id="V">V</h2>
<table style="width: 100%" class="indextable genindextable"><tr>
<td style="width: 33%" valign="top"><dl>
<dt><a href="tc_identity.html#tc_identity.IdentityInspect.valid_id_ip_service">valid_id_ip_service() (tc_identity.IdentityInspect method)</a>
</dt>
</dl></td>
<td style="width: 33%" valign="top"><dl>
<dt><a href="qos.html#qos.QoS.validate_policy">validate_policy() (qos.QoS method)</a>
</dt>
<dd><dl>
<dt><a href="tc_policy.html#tc_policy.TrafficClassificationPolicy.validate_policy">(tc_policy.TrafficClassificationPolicy method)</a>
</dt>
</dl></dd>
</dl></td>
</tr></table>
</div>
</div>
</div>
<div class="sphinxsidebar" role="navigation" aria-label="main navigation">
<div class="sphinxsidebarwrapper">
<div class="relations">
<h3>Related Topics</h3>
<ul>
<li><a href="index.html">Documentation overview</a><ul>
</ul></li>
</ul>
</div>
<div id="searchbox" style="display: none" role="search">
<h3>Quick search</h3>
<form class="search" action="search.html" method="get">
<div><input type="text" name="q" /></div>
<div><input type="submit" value="Go" /></div>
<input type="hidden" name="check_keywords" value="yes" />
<input type="hidden" name="area" value="default" />
</form>
</div>
<script type="text/javascript">$('#searchbox').show(0);</script>
</div>
</div>
<div class="clearer"></div>
</div>
<div class="footer">
©2016, Matthew John Hayes.
|
Powered by <a href="http://sphinx-doc.org/">Sphinx 1.4.6</a>
& <a href="https://github.com/bitprophet/alabaster">Alabaster 0.7.9</a>
</div>
</body>
</html> |
bonfire/tests/simpletest/extensions/index.html | inputx/code-ref-doc | <!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
<html>
<head>
<title>PHPXRef 0.7.1 : Unnamed Project : /tests/simpletest/extensions/</title>
<link rel="stylesheet" href="../../../sample.css" type="text/css">
<link rel="stylesheet" href="../../../sample-print.css" type="text/css" media="print">
<style id="hilight" type="text/css"></style>
<meta http-equiv="content-type" content="text/html;charset=iso-8859-1">
</head>
<body bgcolor="#ffffff" text="#000000" link="#801800" vlink="#300540" alink="#ffffff">
<table class="pagetitle" width="100%">
<tr>
<td valign="top" class="pagetitle">
[ <a href="../../../index.html">Index</a> ]
</td>
<td align="right" class="pagetitle">
<h2 style="margin-bottom: 0px">PHP Cross Reference of Unnamed Project</h2>
</td>
</tr>
</table>
<!-- Generated by PHPXref 0.7.1 at Thu Oct 23 18:57:41 2014 -->
<!-- PHPXref (c) 2000-2010 Gareth Watts - gareth@omnipotent.net -->
<!-- http://phpxref.sourceforge.net/ -->
<script src="../../../phpxref.js" type="text/javascript"></script>
<script language="JavaScript" type="text/javascript">
<!--
ext='.html';
relbase='../../../';
subdir='tests/simpletest/extensions';
filename='index.html';
cookiekey='phpxref';
handleNavFrame(relbase, subdir, filename);
// -->
</script>
<script language="JavaScript" type="text/javascript">
if (gwGetCookie('xrefnav')=='off')
document.write('<p class="navlinks">[ <a href="javascript:navOn()">Show Explorer<\/a> ]<\/p>');
else
document.write('<p class="navlinks">[ <a href="javascript:navOff()">Hide Explorer<\/a> ]<\/p>');
</script>
<noscript>
<p class="navlinks">
[ <a href="../../../nav.html" target="_top">Show Explorer</a> ]
[ <a href="index.html" target="_top">Hide Navbar</a> ]
</p>
</noscript>
<script language="JavaScript" type="text/javascript">
<!--
document.writeln('<table align="right" class="searchbox-link"><tr><td><a class="searchbox-link" href="javascript:void(0)" onMouseOver="showSearchBox()">Search</a><br>');
document.writeln('<table border="0" cellspacing="0" cellpadding="0" class="searchbox" id="searchbox">');
document.writeln('<tr><td class="searchbox-title">');
document.writeln('<a class="searchbox-title" href="javascript:showSearchPopup()">Search History +</a>');
document.writeln('<\/td><\/tr>');
document.writeln('<tr><td class="searchbox-body" id="searchbox-body">');
document.writeln('<form name="search" style="margin:0px; padding:0px" onSubmit=\'return jump()\'>');
document.writeln('<a class="searchbox-body" href="../../../_classes/index.html">Class<\/a>: ');
document.writeln('<input type="text" size=10 value="" name="classname"><br>');
document.writeln('<a id="funcsearchlink" class="searchbox-body" href="../../../_functions/index.html">Function<\/a>: ');
document.writeln('<input type="text" size=10 value="" name="funcname"><br>');
document.writeln('<a class="searchbox-body" href="../../../_variables/index.html">Variable<\/a>: ');
document.writeln('<input type="text" size=10 value="" name="varname"><br>');
document.writeln('<a class="searchbox-body" href="../../../_constants/index.html">Constant<\/a>: ');
document.writeln('<input type="text" size=10 value="" name="constname"><br>');
document.writeln('<a class="searchbox-body" href="../../../_tables/index.html">Table<\/a>: ');
document.writeln('<input type="text" size=10 value="" name="tablename"><br>');
document.writeln('<input type="submit" class="searchbox-button" value="Search">');
document.writeln('<\/form>');
document.writeln('<\/td><\/tr><\/table>');
document.writeln('<\/td><\/tr><\/table>');
// -->
</script>
<div id="search-popup" class="searchpopup"><p id="searchpopup-title" class="searchpopup-title">title</p><div id="searchpopup-body" class="searchpopup-body">Body</div><p class="searchpopup-close"><a href="javascript:gwCloseActive()">[close]</a></p></div>
<div class="filelist">
<h2 class="filelist-title">/tests/simpletest/extensions/</h2>
<table width="100%"><tr><td class="filelist-filename" nowrap="nowrap" width="25"><img src="../../../_icons/folder.gif" alt="Folder"></td><td class="filelist-filename" nowrap="nowrap"><a class="filelist-filename" href="../index.html">Up one level</a>
<td> </td></tr>
<tr><td valign="top" class="filelist-filename" nowrap="nowrap" width="25"><img src="../../../_icons/folder.gif" alt="Folder"></td><td valign="top" class="filelist-filename" nowrap="nowrap"><a class="filelist-filename" href="testdox/index.html">testdox/</a><br>
<td> </td></tr>
<tr><td valign="top" class="filelist-filename" nowrap="nowrap" width="25"><img src="../../../_icons/text.gif" alt="File"></td><td class="filelist-filename" nowrap="nowrap" valign="top"><a href="my_reporter.php.html">my_reporter.php</a> [<a href="my_reporter.php.source.html">source</a>] [294 lines] </td><td valign="top" class="filelist-filename" width="95%"></td></tr>
<tr><td valign="top" class="filelist-filename" nowrap="nowrap" width="25"><img src="../../../_icons/text.gif" alt="File"></td><td class="filelist-filename" nowrap="nowrap" valign="top"><a href="pear_test_case.php.html">pear_test_case.php</a> [<a href="pear_test_case.php.source.html">source</a>] [196 lines] </td><td valign="top" class="filelist-filename" width="95%">adapter for SimpleTest to use PEAR PHPUnit test cases </td></tr>
<tr><td valign="top" class="filelist-filename" nowrap="nowrap" width="25"><img src="../../../_icons/text.gif" alt="File"></td><td class="filelist-filename" nowrap="nowrap" valign="top"><a href="testdox.php.html">testdox.php</a> [<a href="testdox.php.source.html">source</a>] [53 lines] </td><td valign="top" class="filelist-filename" width="95%">Extension for a TestDox reporter </td></tr>
</table></div>
<!-- A link to the phpxref site in your customized footer file is appreciated ;-) -->
<br><hr>
<table width="100%">
<tr><td>Generated: Thu Oct 23 18:57:41 2014</td>
<td align="right"><i>Cross-referenced by <a href="http://phpxref.sourceforge.net/">PHPXref 0.7.1</a></i></td>
</tr>
</table>
</body></html>
|
topics/protocol.html | zhangyouzhi/rediscn |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link href='/css/styles.css' rel='stylesheet' type='text/css' />
<link href='/images/favicon.png' rel='shortcut icon' />
<script src='/js/jquery.min.1.4.js'></script>
<script src='/js/app.js'></script>
<meta content='width=device-width, minimum-scale=1.0, maximum-scale=1.0' name='viewport' />
<title>Redis命令</title>
<meta http-equiv="description" content="redis中文资料站,下载安装redis,查找redis常用命令(commands),选择适合的redis客户端方式,配置redis主从(master-slave),阅读redis官方文档,社区里了解更多redis信息,提交redis的bug。" />
</head>
<body class=''>
<script src='/js/head.js'></script>
<div class='text'>
<article id='topic'>
<h1>协议说明</h1>
<p>Redis协议在以下几点之间做出了折衷:</p>
<ul>
<li>简单的实现</li>
<li>快速地被计算机解析</li>
<li>简单得可以能被人工解析</li>
</ul>
<h2>网络层</h2>
<p>Redis在TCP端口6379上监听到来的连接,客户端连接到来时,Redis服务器为此创建一个TCP连接。在客户端与服务器端之间传输的每个Redis命令或者数据都以<code>\r\n</code>结尾。</p>
<h2>请求</h2>
<p>Redis接收由不同参数组成的命令。一旦收到命令,将会立刻被处理,并回复给客户端。</p>
<h2>新的统一请求协议</h2>
<p>新的统一协议已在Redis 1.2中引入,但是在Redis 2.0中,这就成为了与Redis服务器通讯的标准方式。</p>
<p>在这个统一协议里,发送给Redis服务端的所有参数都是二进制安全的。以下是通用形式:</p>
<pre><code>*<number of arguments> CR LF
$<number of bytes of argument 1> CR LF
<argument data> CR LF
...
$<number of bytes of argument N> CR LF
<argument data> CR LF
</code></pre>
<p>例子如下:</p>
<pre><code>*3
$3
SET
$5
mykey
$7
myvalue
</code></pre>
<p>上面的命令看上去像是单引号字符串,所以可以在查询中看到每个字节的准确值:</p>
<pre><code>"*3\r\n$3\r\nSET\r\n$5\r\nmykey\r\n$7\r\nmyvalue\r\n"
</code></pre>
<p>
在Redis的回复中也使用这样的格式。批量回复时,这种格式用于每个参数<code>$6\r\nmydata\r\n</code>。
实际的统一请求协议是Redis用于返回列表项,并调用 <a href="/topics/protocol.html#multi-bulk-reply">Multi-bulk</a>回复。
仅仅是N个以以<code>*<argc>\r\n</code>为前缀的不同批量回复,<code><argc></code>是紧随的参数(批量回复)数目。
</p>
<h2>回复</h2>
<p>Redis用不同的回复类型回复命令。它可能从服务器发送的第一个字节开始校验回复类型:</p>
<ul>
<li>用单行回复,回复的第一个字节将是“+”</li>
<li>错误消息,回复的第一个字节将是“-”</li>
<li>整型数字,回复的第一个字节将是“:”</li>
<li>批量回复,回复的第一个字节将是“$”</li>
<li>多个批量回复,回复的第一个字节将是“<code>*</code>”</li>
</ul>
<p><a name="status-reply"></a></p>
<h2>状态回复</h2>
<p>状态回复(或者单行回复)以“+”开始以“\r\n”结尾的单行字符串形式。例如:</p>
<pre><code>+OK
</code></pre>
<p>客户端库将在“+”后面返回所有数据,正如上例中字符串“OK”一样。</p>
<h2>错误回复</h2>
<p>错误回复发送类似于状态回复。唯一的不同是第一个字节用“-”代替“+”。</p>
<p>错误回复仅仅在一些意料之外的事情发生时发送,例如:如果你试图执行一个操作来应付错误的数据类型,或者如果命令不存在等等。所以当收到一个错误回复时,客户端将会出现一个异常。
</p>
<p><a name="integer-reply"></a></p>
<h2>整型回复</h2>
<p>这种回复类型只是用CRLF结尾字符串来表示整型,用一个字节的“:”作为前缀。例如:“:0\r\n”,或者“:1000\r\n”是整型回复。</p>
<p>像INCR或者LASTAVE命令用整型回复作为实际回复值,此时对于返回的整型没有特殊的意思。它仅仅是为INCR、LASTSAVE的UNIX时间等增加数值。</p>
<p>一些命令像EXISTS将为true返回1,为false返回0。</p>
<p>其它命令像SADD、SREM和SETNX如果操作实际完成了的话将返回1,否则返回0。</p>
<p>接下来的命令将回复一个整型回复:SETNX、DEL、EXISTS、INCR、INCRBY、DECR、DECRBY、DBSIZE、LASTSAVE、RENAMENX、MOVE、LLEN、SADD、SREM、SISMEMBER、SCARD。</p>
<p><a name="nil-reply"></a>
<a name="bulk-reply"></a></p>
<h2>批量回复(Bulk replies)</h2>
<p>批量回复被服务器用于返回一个单二进制安全字符串。</p>
<pre><code>C: GET mykey
S: $6\r\nfoobar\r\n
</code></pre>
<p>服务器发送第一行回复,该行以“$”开始后面跟随实际要发送的字节数,随后是CRLF,然后发送实际数据,随后是2个字节的额外数据用于最后的CRLF。服务器发送的准确序列如下:</p>
<pre><code>"$6\r\nfoobar\r\n"
</code></pre>
<p>如果请求的值不存在,批量回复将使用特殊的值-1来作为数据长度,例如:</p>
<pre><code>C: GET nonexistingkey
S: $-1
</code></pre>
<p>当请求的对象不存在时,客户端库API不会返回空字符串,而会返回空对象。例如:Ruby库返回‘nil’,而C库返回NULL(或者在回复的对象里设置指定的标志)等等。</p>
<p><a name="multi-bulk-reply"></a></p>
<h2>多批量回复(Multi-bulk replies)</h2>
<p>像命令LRNGE需要返回多个值(列表的每个元素是一个值,而LRANGE需要返回多于一个单元素)。使用多批量写是有技巧的,用一个初始行作为前缀来指示多少个批量写紧随其后。批量回复的第一个字节总是<code>*</code>,例如:</p>
<pre><code>C: LRANGE mylist 0 3
s: *4
s: $3
s: foo
s: $3
s: bar
s: $5
s: Hello
s: $5
s: World
</code></pre>
<p>正如您可以看到的多批量回复是以完全相同的格式使用Redis统一协议将命令发送给服务器。</p>
<p>服务器发送的第一行是<code>*4\r\n</code>,用于指定紧随着4个批量回复。然后传送每个批量写。</p>
<p>
如果指定的键不存在,则该键被认为是持有一个空的列表,且数值0被当作多批量计数值来发送,例如:
</p>
<pre><code>C: LRANGE nokey 0 1
S: *0
</code></pre>
<p>当<a href="/commands/blpop.html">BLPOP</a>命令超时时,它返回nil多批量回复。这种类型多批量回复的计数器是<code>-1</code>,且值被当作nil来解释。例如:</p>
<pre><code>C: BLPOP key 1
S: *-1
</code></pre>
<p>
当这种情况发生时,客户端库API将返回空nil对象,且不是一个空列表。这必须有别于空列表和错误条件(例如:<a href="/commands/blpop.html">BLPOP</a>命令的超时条件)。
</p>
<h2>多批量回复中的Nil元素</h2>
<p>多批量回复的单元素长度可能是-1,为了发出信号这个元素被丢失且不是空字符串。这种情况发送在SORT命令时,此时使用GET模式选项且指定的键丢失。一个多批量回复包含一个空元素的例子如下:</p>
<pre><code>S: *3
S: $3
S: foo
S: $-1
S: $3
S: bar
</code></pre>
<p>第二个元素是空。客户端库返回如下:</p>
<pre><code>["foo",nil,"bar"]
</code></pre>
<h2>多命令和管道</h2>
<p>客户端能使用同样条件为了发出多个命令。管道用于支持多命令能够被客户端用单写操作来发送,它不需要为了发送下一条命令而读取服务器的回复。所有回复都能在最后被读出。</p>
<p>通常Redis服务器和客户端拥有非常快速的连接,所以在客户端的实现中支持这个特性不是那么重要,如果一个应用需要在短时间内发出大量的命令,管道仍然会非常快。</p>
<h2>旧协议发送命令</h2>
<p>在统一请求协议出现前,Redis用不同的协议发送命令,现在仍然支持,它简单通过手动telnet。在这种协议中,有两种类型的命令:</p>
<ul>
<li>内联命令:简单命令其参数用空格分割字符串。非二进制安全。</li>
<li>批量命令:批量命令准确如内联命令,但是最后的参数用特殊方式来处理用于保证最后参数二进制安全。</li>
</ul>
<h2>内联命令</h2>
<p>最简单的发送Redis命令的方式是通过内联命令。下面是一个使用内联命令聊天的服务器/客户端的例子(服务器聊天用S:开始,客户端聊天用C:开始)。</p>
<pre><code>C: PING
S: +PONG
</code></pre>
<p>下面是另外一个内联命令返回整数的例子:</p>
<pre><code>C: EXISTS somekey
S: :0
</code></pre>
<p>因为‘somekey’不存在,所以服务器返回‘:0’。</p>
<p>注意:EXISTS命令带有一个参数。参数用空格分割。</p>
<h2>批量命令</h2>
<p>一些命令当用内联命令发送时需要一种特殊的格式用于支持最后参数二进制安全。这种命令用最后参数作为“字节计数器”,然后发送批量数据(因为服务器知道读取多少个字节,所以是二进制安全的)。</p>
<p>请看下面的例子:</p>
<pre><code>C: SET mykey 6
C: foobar
S: +OK
</code></pre>
<p>这条命令的最后一个参数是‘6’。这用于指定随后数据的字节数,即字符串“foobar”。注意:虽然这个字节流是以额外的两个CRLF字节结尾的。</p>
<p>所有批量命令都是用这种准确的格式:用随后数据的字节数代替最后一个参数,紧跟着后面是组成参数本身的字节和CRLF。为了更清楚程序,下面是通过客户端发送字符串的例子:</p>
<pre><code>"SET mykey 6\r\nfoobar\r\n"
</code></pre>
<p>Redis有一个内部列表,用于表示哪些命令是内联,哪些命令是批量,所以你不得不发送相应的命令。强烈建议使用新的统一请求协议来代替老的协议。</p>
</article>
</div>
<div class='text' id='comments'>
<div id='disqus_thread'></div>
<script type='text/javascript'>
//<![CDATA[
var disqus_shortname = 'rediscn';
/* * * DON'T EDIT BELOW THIS LINE * * */
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = 'http://' + disqus_shortname + '.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
//]]>
</script>
<a class='dsq-brlink' href='http://disqus.com'>
Comments powered by
<span class='logo-disqus'>
Disqus
</span>
</a>
</div>
<script src='/js/foot.js'></script>
</body>
</html>
|
assets/css/app/dialog.css | lugavin/bootstrap | /*========== Modal Begin ==========*/
.fade.in {
opacity: 1;
}
.modal-backdrop {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 1040;
background-color: #000;
}
.modal-backdrop.fade {
filter: alpha(opacity=0);
opacity: 0;
}
.modal-backdrop.in {
filter: alpha(opacity=50);
opacity: 0.5;
}
/*========== Modal End ==========*/
/*========== Dialog Begin ==========*/
.modal-dialog {
position: relative;
width: auto;
margin: 10px;
}
@media (min-width: 768px) {
.modal-dialog {
width: 600px;
margin: 30px auto;
}
.modal-content {
-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
}
}
.modal {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 1050;
overflow: hidden;
outline: 0;
}
.modal > .modal-dialog > .modal-content {
position: relative;
background-color: #fff;
-webkit-background-clip: padding-box;
background-clip: padding-box;
border: 1px solid #999;
border-radius: 3px;
outline: 0;
-webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
}
.modal > .modal-dialog > .modal-content > .modal-header {
min-height: 16px;
padding: 15px;
border-bottom: 1px solid #e5e5e5;
color: #fff;
background-color: #337ab7;
}
.modal > .modal-dialog > .modal-content > .modal-body {
position: relative;
padding: 15px;
}
.modal > .modal-dialog > .modal-content > .modal-footer {
padding: 15px;
text-align: right;
border-top: 1px solid #e5e5e5;
}
.modal > .modal-dialog > .modal-content > .modal-footer .btn + .btn {
margin-bottom: 0;
margin-left: 10px;
}
.btn {
padding: 5px 10px;
font-size: 12px;
line-height: 1.5;
border-radius: 3px;
border: 1px solid transparent;
}
.btn-default {
color: #333;
background-color: #fff;
border-color: #ccc;
}
.btn-primary {
color: #fff;
background-color: #337ab7;
border-color: #2e6da4;
}
/*========== Dialog End ==========*/ |
play2-maven-plugin/1.0.0-rc4/play2-maven-plugin/apidocs/com/google/code/play2/plugin/package-frame.html | play2-maven-plugin/play2-maven-plugin.github.io | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="pl">
<head>
<!-- Generated by javadoc -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>com.google.code.play2.plugin (Play! 2.x Maven Plugin 1.0.0-rc4 API)</title>
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
<body>
<h1 class="bar"><a href="../../../../../com/google/code/play2/plugin/package-summary.html" target="classFrame">com.google.code.play2.plugin</a></h1>
<div class="indexContainer">
<h2 title="Classes">Classes</h2>
<ul title="Classes">
<li><a href="AbstractAntJavaBasedPlay2Mojo.html" title="class in com.google.code.play2.plugin" target="classFrame">AbstractAntJavaBasedPlay2Mojo</a></li>
<li><a href="AbstractAntJavaBasedPlay2Mojo.JavaRunnable.html" title="class in com.google.code.play2.plugin" target="classFrame">AbstractAntJavaBasedPlay2Mojo.JavaRunnable</a></li>
<li><a href="AbstractArchivingMojo.html" title="class in com.google.code.play2.plugin" target="classFrame">AbstractArchivingMojo</a></li>
<li><a href="AbstractPlay2AssetsCompileMojo.html" title="class in com.google.code.play2.plugin" target="classFrame">AbstractPlay2AssetsCompileMojo</a></li>
<li><a href="AbstractPlay2DistMojo.html" title="class in com.google.code.play2.plugin" target="classFrame">AbstractPlay2DistMojo</a></li>
<li><a href="AbstractPlay2EnhanceMojo.html" title="class in com.google.code.play2.plugin" target="classFrame">AbstractPlay2EnhanceMojo</a></li>
<li><a href="AbstractPlay2Mojo.html" title="class in com.google.code.play2.plugin" target="classFrame">AbstractPlay2Mojo</a></li>
<li><a href="AbstractPlay2ServerMojo.html" title="class in com.google.code.play2.plugin" target="classFrame">AbstractPlay2ServerMojo</a></li>
<li><a href="AbstractPlay2SourceGeneratorMojo.html" title="class in com.google.code.play2.plugin" target="classFrame">AbstractPlay2SourceGeneratorMojo</a></li>
<li><a href="AbstractPlay2StartServerMojo.html" title="class in com.google.code.play2.plugin" target="classFrame">AbstractPlay2StartServerMojo</a></li>
<li><a href="AbstractPlay2StopServerMojo.html" title="class in com.google.code.play2.plugin" target="classFrame">AbstractPlay2StopServerMojo</a></li>
<li><a href="LessDependencyCache.html" title="class in com.google.code.play2.plugin" target="classFrame">LessDependencyCache</a></li>
<li><a href="MavenFileWatchLogger.html" title="class in com.google.code.play2.plugin" target="classFrame">MavenFileWatchLogger</a></li>
<li><a href="MavenPlay2Builder.html" title="class in com.google.code.play2.plugin" target="classFrame">MavenPlay2Builder</a></li>
<li><a href="MavenPlay2BuilderRunnable.html" title="class in com.google.code.play2.plugin" target="classFrame">MavenPlay2BuilderRunnable</a></li>
<li><a href="PidFileDeleter.html" title="class in com.google.code.play2.plugin" target="classFrame">PidFileDeleter</a></li>
<li><a href="Play2ClosureCompileMojo.html" title="class in com.google.code.play2.plugin" target="classFrame">Play2ClosureCompileMojo</a></li>
<li><a href="Play2CoffeeCompileMojo.html" title="class in com.google.code.play2.plugin" target="classFrame">Play2CoffeeCompileMojo</a></li>
<li><a href="Play2DistExplodedMojo.html" title="class in com.google.code.play2.plugin" target="classFrame">Play2DistExplodedMojo</a></li>
<li><a href="Play2DistMojo.html" title="class in com.google.code.play2.plugin" target="classFrame">Play2DistMojo</a></li>
<li><a href="Play2EbeanEnhanceMojo.html" title="class in com.google.code.play2.plugin" target="classFrame">Play2EbeanEnhanceMojo</a></li>
<li><a href="Play2EnhanceClassesMojo.html" title="class in com.google.code.play2.plugin" target="classFrame">Play2EnhanceClassesMojo</a></li>
<li><a href="Play2LessCompileMojo.html" title="class in com.google.code.play2.plugin" target="classFrame">Play2LessCompileMojo</a></li>
<li><a href="Play2RoutesCompileMojo.html" title="class in com.google.code.play2.plugin" target="classFrame">Play2RoutesCompileMojo</a></li>
<li><a href="Play2RunMojo.html" title="class in com.google.code.play2.plugin" target="classFrame">Play2RunMojo</a></li>
<li><a href="Play2StartMojo.html" title="class in com.google.code.play2.plugin" target="classFrame">Play2StartMojo</a></li>
<li><a href="Play2StopMojo.html" title="class in com.google.code.play2.plugin" target="classFrame">Play2StopMojo</a></li>
<li><a href="Play2TemplateCompileMojo.html" title="class in com.google.code.play2.plugin" target="classFrame">Play2TemplateCompileMojo</a></li>
</ul>
</div>
</body>
</html>
|
thirdparty/source/asio-1.11.0/doc/asio/reference/basic_socket_iostream/time_point.html | letitvi/VideoGridPlayer | <html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>basic_socket_iostream::time_point</title>
<link rel="stylesheet" href="../../../boostbook.css" type="text/css">
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
<link rel="home" href="../../../index.html" title="Asio">
<link rel="up" href="../basic_socket_iostream.html" title="basic_socket_iostream">
<link rel="prev" href="rdbuf.html" title="basic_socket_iostream::rdbuf">
<link rel="next" href="time_type.html" title="basic_socket_iostream::time_type">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
<table cellpadding="2" width="100%"><tr><td valign="top"><img alt="asio C++ library" width="250" height="60" src="../../../asio.png"></td></tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="rdbuf.html"><img src="../../../prev.png" alt="Prev"></a><a accesskey="u" href="../basic_socket_iostream.html"><img src="../../../up.png" alt="Up"></a><a accesskey="h" href="../../../index.html"><img src="../../../home.png" alt="Home"></a><a accesskey="n" href="time_type.html"><img src="../../../next.png" alt="Next"></a>
</div>
<div class="section">
<div class="titlepage"><div><div><h4 class="title">
<a name="asio.reference.basic_socket_iostream.time_point"></a><a class="link" href="time_point.html" title="basic_socket_iostream::time_point">basic_socket_iostream::time_point</a>
</h4></div></div></div>
<p>
<a class="indexterm" name="idp136604080"></a>
The time type.
</p>
<pre class="programlisting"><span class="keyword">typedef</span> <span class="identifier">TimeTraits</span><span class="special">::</span><span class="identifier">time_point</span> <span class="identifier">time_point</span><span class="special">;</span>
</pre>
<h6>
<a name="asio.reference.basic_socket_iostream.time_point.h0"></a>
<span><a name="asio.reference.basic_socket_iostream.time_point.requirements"></a></span><a class="link" href="time_point.html#asio.reference.basic_socket_iostream.time_point.requirements">Requirements</a>
</h6>
<p>
<span class="emphasis"><em>Header: </em></span><code class="literal">asio/basic_socket_iostream.hpp</code>
</p>
<p>
<span class="emphasis"><em>Convenience header: </em></span><code class="literal">asio.hpp</code>
</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 © 2003-2015 Christopher M.
Kohlhoff<p>
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)
</p>
</div></td>
</tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="rdbuf.html"><img src="../../../prev.png" alt="Prev"></a><a accesskey="u" href="../basic_socket_iostream.html"><img src="../../../up.png" alt="Up"></a><a accesskey="h" href="../../../index.html"><img src="../../../home.png" alt="Home"></a><a accesskey="n" href="time_type.html"><img src="../../../next.png" alt="Next"></a>
</div>
</body>
</html>
|
codecoverage/c++/4.9/bits/hashtable.h.func.html | smangano/theoria | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>LCOV - coverage.info - c++/4.9/bits/hashtable.h - functions</title>
<link rel="stylesheet" type="text/css" href="../../../gcov.css">
</head>
<body>
<table width="100%" border=0 cellspacing=0 cellpadding=0>
<tr><td class="title">LCOV - code coverage report</td></tr>
<tr><td class="ruler"><img src="../../../glass.png" width=3 height=3 alt=""></td></tr>
<tr>
<td width="100%">
<table cellpadding=1 border=0 width="100%">
<tr>
<td width="10%" class="headerItem">Current view:</td>
<td width="35%" class="headerValue"><a href="../../../index.html">top level</a> - <a href="index.html">c++/4.9/bits</a> - hashtable.h<span style="font-size: 80%;"> (<a href="hashtable.h.gcov.html">source</a> / functions)</span></td>
<td width="5%"></td>
<td width="15%"></td>
<td width="10%" class="headerCovTableHead">Hit</td>
<td width="10%" class="headerCovTableHead">Total</td>
<td width="15%" class="headerCovTableHead">Coverage</td>
</tr>
<tr>
<td class="headerItem">Test:</td>
<td class="headerValue">coverage.info</td>
<td></td>
<td class="headerItem">Lines:</td>
<td class="headerCovTableEntry">29</td>
<td class="headerCovTableEntry">112</td>
<td class="headerCovTableEntryLo">25.9 %</td>
</tr>
<tr>
<td class="headerItem">Date:</td>
<td class="headerValue">2016-11-07 04:20:52</td>
<td></td>
<td class="headerItem">Functions:</td>
<td class="headerCovTableEntry">5</td>
<td class="headerCovTableEntry">19</td>
<td class="headerCovTableEntryLo">26.3 %</td>
</tr>
<tr><td><img src="../../../glass.png" width=3 height=3 alt=""></td></tr>
</table>
</td>
</tr>
<tr><td class="ruler"><img src="../../../glass.png" width=3 height=3 alt=""></td></tr>
</table>
<center>
<table width="60%" cellpadding=1 cellspacing=1 border=0>
<tr><td><br></td></tr>
<tr>
<td width="80%" class="tableHead">Function Name <span class="tableHeadSort"><img src="../../../glass.png" width=10 height=14 alt="Sort by function name" title="Sort by function name" border=0></span></td>
<td width="20%" class="tableHead">Hit count <span class="tableHeadSort"><a href="hashtable.h.func-sort-c.html"><img src="../../../updown.png" width=10 height=14 alt="Sort by hit count" title="Sort by hit count" border=0></a></span></td>
</tr>
<tr>
<td class="coverFn"><a href="hashtable.h.gcov.html#620">_ZNKSt10_HashtableISsSt4pairIKSsSsESaIS2_ENSt8__detail10_Select1stESt8equal_toISsESt4hashISsENS4_18_Mod_range_hashingENS4_20_Default_ranged_hashENS4_20_Prime_rehash_policyENS4_17_Hashtable_traitsILb1ELb0ELb1EEEE12_M_find_nodeEmRS1_m</a></td>
<td class="coverFnLo">0</td>
</tr>
<tr>
<td class="coverFn"><a href="hashtable.h.gcov.html#607">_ZNKSt10_HashtableISsSt4pairIKSsSsESaIS2_ENSt8__detail10_Select1stESt8equal_toISsESt4hashISsENS4_18_Mod_range_hashingENS4_20_Default_ranged_hashENS4_20_Prime_rehash_policyENS4_17_Hashtable_traitsILb1ELb0ELb1EEEE15_M_bucket_indexEPNS4_10_Hash_nodeIS2_Lb1EEE</a></td>
<td class="coverFnLo">0</td>
</tr>
<tr>
<td class="coverFn"><a href="hashtable.h.gcov.html#611">_ZNKSt10_HashtableISsSt4pairIKSsSsESaIS2_ENSt8__detail10_Select1stESt8equal_toISsESt4hashISsENS4_18_Mod_range_hashingENS4_20_Default_ranged_hashENS4_20_Prime_rehash_policyENS4_17_Hashtable_traitsILb1ELb0ELb1EEEE15_M_bucket_indexERS1_m</a></td>
<td class="coverFnLo">0</td>
</tr>
<tr>
<td class="coverFn"><a href="hashtable.h.gcov.html#1431">_ZNKSt10_HashtableISsSt4pairIKSsSsESaIS2_ENSt8__detail10_Select1stESt8equal_toISsESt4hashISsENS4_18_Mod_range_hashingENS4_20_Default_ranged_hashENS4_20_Prime_rehash_policyENS4_17_Hashtable_traitsILb1ELb0ELb1EEEE19_M_find_before_nodeEmRS1_m</a></td>
<td class="coverFnLo">0</td>
</tr>
<tr>
<td class="coverFn"><a href="hashtable.h.gcov.html#326">_ZNKSt10_HashtableISsSt4pairIKSsSsESaIS2_ENSt8__detail10_Select1stESt8equal_toISsESt4hashISsENS4_18_Mod_range_hashingENS4_20_Default_ranged_hashENS4_20_Prime_rehash_policyENS4_17_Hashtable_traitsILb1ELb0ELb1EEEE21_M_uses_single_bucketEPPNS4_15_Hash_node_baseE</a></td>
<td class="coverFnLo">0</td>
</tr>
<tr>
<td class="coverFn"><a href="hashtable.h.gcov.html#485">_ZNKSt10_HashtableISsSt4pairIKSsSsESaIS2_ENSt8__detail10_Select1stESt8equal_toISsESt4hashISsENS4_18_Mod_range_hashingENS4_20_Default_ranged_hashENS4_20_Prime_rehash_policyENS4_17_Hashtable_traitsILb1ELb0ELb1EEEE3endEv</a></td>
<td class="coverFnLo">0</td>
</tr>
<tr>
<td class="coverFn"><a href="hashtable.h.gcov.html#1313">_ZNKSt10_HashtableISsSt4pairIKSsSsESaIS2_ENSt8__detail10_Select1stESt8equal_toISsESt4hashISsENS4_18_Mod_range_hashingENS4_20_Default_ranged_hashENS4_20_Prime_rehash_policyENS4_17_Hashtable_traitsILb1ELb0ELb1EEEE4findERS1_</a></td>
<td class="coverFnLo">0</td>
</tr>
<tr>
<td class="coverFn"><a href="hashtable.h.gcov.html#367">_ZNKSt10_HashtableISsSt4pairIKSsSsESaIS2_ENSt8__detail10_Select1stESt8equal_toISsESt4hashISsENS4_18_Mod_range_hashingENS4_20_Default_ranged_hashENS4_20_Prime_rehash_policyENS4_17_Hashtable_traitsILb1ELb0ELb1EEEE8_M_beginEv</a></td>
<td class="coverFnLo">0</td>
</tr>
<tr>
<td class="coverFn"><a href="hashtable.h.gcov.html#1995">_ZNSt10_HashtableISsSt4pairIKSsSsESaIS2_ENSt8__detail10_Select1stESt8equal_toISsESt4hashISsENS4_18_Mod_range_hashingENS4_20_Default_ranged_hashENS4_20_Prime_rehash_policyENS4_17_Hashtable_traitsILb1ELb0ELb1EEEE13_M_rehash_auxEmSt17integral_constantIbLb1EE</a></td>
<td class="coverFnLo">0</td>
</tr>
<tr>
<td class="coverFn"><a href="hashtable.h.gcov.html#337">_ZNSt10_HashtableISsSt4pairIKSsSsESaIS2_ENSt8__detail10_Select1stESt8equal_toISsESt4hashISsENS4_18_Mod_range_hashingENS4_20_Default_ranged_hashENS4_20_Prime_rehash_policyENS4_17_Hashtable_traitsILb1ELb0ELb1EEEE19_M_allocate_bucketsEm</a></td>
<td class="coverFnHi">56</td>
</tr>
<tr>
<td class="coverFn"><a href="hashtable.h.gcov.html#349">_ZNSt10_HashtableISsSt4pairIKSsSsESaIS2_ENSt8__detail10_Select1stESt8equal_toISsESt4hashISsENS4_18_Mod_range_hashingENS4_20_Default_ranged_hashENS4_20_Prime_rehash_policyENS4_17_Hashtable_traitsILb1ELb0ELb1EEEE21_M_deallocate_bucketsEPPNS4_15_Hash_node_baseEm</a></td>
<td class="coverFnLo">0</td>
</tr>
<tr>
<td class="coverFn"><a href="hashtable.h.gcov.html#358">_ZNSt10_HashtableISsSt4pairIKSsSsESaIS2_ENSt8__detail10_Select1stESt8equal_toISsESt4hashISsENS4_18_Mod_range_hashingENS4_20_Default_ranged_hashENS4_20_Prime_rehash_policyENS4_17_Hashtable_traitsILb1ELb0ELb1EEEE21_M_deallocate_bucketsEv</a></td>
<td class="coverFnLo">0</td>
</tr>
<tr>
<td class="coverFn"><a href="hashtable.h.gcov.html#1602">_ZNSt10_HashtableISsSt4pairIKSsSsESaIS2_ENSt8__detail10_Select1stESt8equal_toISsESt4hashISsENS4_18_Mod_range_hashingENS4_20_Default_ranged_hashENS4_20_Prime_rehash_policyENS4_17_Hashtable_traitsILb1ELb0ELb1EEEE21_M_insert_unique_nodeEmmPNS4_10_Hash_nodeIS2_Lb1EEE</a></td>
<td class="coverFnHi">47</td>
</tr>
<tr>
<td class="coverFn"><a href="hashtable.h.gcov.html#1458">_ZNSt10_HashtableISsSt4pairIKSsSsESaIS2_ENSt8__detail10_Select1stESt8equal_toISsESt4hashISsENS4_18_Mod_range_hashingENS4_20_Default_ranged_hashENS4_20_Prime_rehash_policyENS4_17_Hashtable_traitsILb1ELb0ELb1EEEE22_M_insert_bucket_beginEmPNS4_10_Hash_nodeIS2_Lb1EEE</a></td>
<td class="coverFnHi">47</td>
</tr>
<tr>
<td class="coverFn"><a href="hashtable.h.gcov.html#1935">_ZNSt10_HashtableISsSt4pairIKSsSsESaIS2_ENSt8__detail10_Select1stESt8equal_toISsESt4hashISsENS4_18_Mod_range_hashingENS4_20_Default_ranged_hashENS4_20_Prime_rehash_policyENS4_17_Hashtable_traitsILb1ELb0ELb1EEEE5clearEv</a></td>
<td class="coverFnLo">0</td>
</tr>
<tr>
<td class="coverFn"><a href="hashtable.h.gcov.html#1972">_ZNSt10_HashtableISsSt4pairIKSsSsESaIS2_ENSt8__detail10_Select1stESt8equal_toISsESt4hashISsENS4_18_Mod_range_hashingENS4_20_Default_ranged_hashENS4_20_Prime_rehash_policyENS4_17_Hashtable_traitsILb1ELb0ELb1EEEE9_M_rehashEmRKm</a></td>
<td class="coverFnLo">0</td>
</tr>
<tr>
<td class="coverFn"><a href="hashtable.h.gcov.html#413">_ZNSt10_HashtableISsSt4pairIKSsSsESaIS2_ENSt8__detail10_Select1stESt8equal_toISsESt4hashISsENS4_18_Mod_range_hashingENS4_20_Default_ranged_hashENS4_20_Prime_rehash_policyENS4_17_Hashtable_traitsILb1ELb0ELb1EEEEC2EmRKS9_RKS7_RKS3_</a></td>
<td class="coverFnHi">56</td>
</tr>
<tr>
<td class="coverFn"><a href="hashtable.h.gcov.html#786">_ZNSt10_HashtableISsSt4pairIKSsSsESaIS2_ENSt8__detail10_Select1stESt8equal_toISsESt4hashISsENS4_18_Mod_range_hashingENS4_20_Default_ranged_hashENS4_20_Prime_rehash_policyENS4_17_Hashtable_traitsILb1ELb0ELb1EEEEC2EmRKS9_RKSA_RKSB_RKS7_RKS5_RKS3_</a></td>
<td class="coverFnHi">56</td>
</tr>
<tr>
<td class="coverFn"><a href="hashtable.h.gcov.html#1214">_ZNSt10_HashtableISsSt4pairIKSsSsESaIS2_ENSt8__detail10_Select1stESt8equal_toISsESt4hashISsENS4_18_Mod_range_hashingENS4_20_Default_ranged_hashENS4_20_Prime_rehash_policyENS4_17_Hashtable_traitsILb1ELb0ELb1EEEED2Ev</a></td>
<td class="coverFnLo">0</td>
</tr>
</table>
<br>
</center>
<table width="100%" border=0 cellspacing=0 cellpadding=0>
<tr><td class="ruler"><img src="../../../glass.png" width=3 height=3 alt=""></td></tr>
<tr><td class="versionInfo">Generated by: <a href="http://ltp.sourceforge.net/coverage/lcov.php" target="_parent">LCOV version 1.11</a></td></tr>
</table>
<br>
</body>
</html>
|
docs/com/google/api/ads/dfp/v201306/BaseRateAction.html | google-code-export/google-api-dfp-java | <!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-google-v5) on Thu Dec 19 17:42:33 EST 2013 -->
<title>BaseRateAction</title>
<meta name="date" content="2013-12-19">
<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="BaseRateAction";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../../com/google/api/ads/dfp/v201306/BaseRate.html" title="class in com.google.api.ads.dfp.v201306"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../../../../com/google/api/ads/dfp/v201306/BaseRateActionError.html" title="class in com.google.api.ads.dfp.v201306"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?com/google/api/ads/dfp/v201306/BaseRateAction.html" target="_top">Frames</a></li>
<li><a href="BaseRateAction.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li>Field | </li>
<li><a href="#constructor_summary">Constr</a> | </li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li><a href="#constructor_detail">Constr</a> | </li>
<li><a href="#method_detail">Method</a></li>
</ul>
</div>
<a name="skip-navbar_top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">com.google.api.ads.dfp.v201306</div>
<h2 title="Class BaseRateAction" class="title">Class BaseRateAction</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li>com.google.api.ads.dfp.v201306.BaseRateAction</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Implemented Interfaces:</dt>
<dd>java.io.Serializable</dd>
</dl>
<dl>
<dt>Direct Known Subclasses:</dt>
<dd><a href="../../../../../../com/google/api/ads/dfp/v201306/ActivateBaseRates.html" title="class in com.google.api.ads.dfp.v201306">ActivateBaseRates</a>, <a href="../../../../../../com/google/api/ads/dfp/v201306/DeactivateBaseRates.html" title="class in com.google.api.ads.dfp.v201306">DeactivateBaseRates</a></dd>
</dl>
<hr>
<br>
<pre>public abstract class <span class="strong">BaseRateAction</span>
extends java.lang.Object
implements java.io.Serializable</pre>
<div class="block">Represents the action that can be performed on <a href="../../../../../../com/google/api/ads/dfp/v201306/BaseRate.html" title="class in com.google.api.ads.dfp.v201306"><code>BaseRate</code></a>
objects.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../../../serialized-form.html#com.google.api.ads.dfp.v201306.BaseRateAction">Serialized Form</a></dd></dl>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor_summary">
<!-- -->
</a>
<h3>Constructor Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
<caption><span>Constructors</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><strong><a href="../../../../../../com/google/api/ads/dfp/v201306/BaseRateAction.html#BaseRateAction()">BaseRateAction</a></strong>()</code> </td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><strong><a href="../../../../../../com/google/api/ads/dfp/v201306/BaseRateAction.html#BaseRateAction(java.lang.String)">BaseRateAction</a></strong>(java.lang.String baseRateActionType)</code> </td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method_summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span>Methods</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../../../../com/google/api/ads/dfp/v201306/BaseRateAction.html#equals(java.lang.Object)">equals</a></strong>(java.lang.Object obj)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../../../../com/google/api/ads/dfp/v201306/BaseRateAction.html#getBaseRateActionType()">getBaseRateActionType</a></strong>()</code>
<div class="block">Gets the baseRateActionType value for this BaseRateAction.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static org.apache.axis.encoding.Deserializer</code></td>
<td class="colLast"><code><strong><a href="../../../../../../com/google/api/ads/dfp/v201306/BaseRateAction.html#getDeserializer(java.lang.String, java.lang.Class, javax.xml.namespace.QName)">getDeserializer</a></strong>(java.lang.String mechType,
java.lang.Class _javaType,
javax.xml.namespace.QName _xmlType)</code>
<div class="block">Get Custom Deserializer</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static org.apache.axis.encoding.Serializer</code></td>
<td class="colLast"><code><strong><a href="../../../../../../com/google/api/ads/dfp/v201306/BaseRateAction.html#getSerializer(java.lang.String, java.lang.Class, javax.xml.namespace.QName)">getSerializer</a></strong>(java.lang.String mechType,
java.lang.Class _javaType,
javax.xml.namespace.QName _xmlType)</code>
<div class="block">Get Custom Serializer</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static org.apache.axis.description.TypeDesc</code></td>
<td class="colLast"><code><strong><a href="../../../../../../com/google/api/ads/dfp/v201306/BaseRateAction.html#getTypeDesc()">getTypeDesc</a></strong>()</code>
<div class="block">Return type metadata object</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>int</code></td>
<td class="colLast"><code><strong><a href="../../../../../../com/google/api/ads/dfp/v201306/BaseRateAction.html#hashCode()">hashCode</a></strong>()</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../../../com/google/api/ads/dfp/v201306/BaseRateAction.html#setBaseRateActionType(java.lang.String)">setBaseRateActionType</a></strong>(java.lang.String baseRateActionType)</code>
<div class="block">Sets the baseRateActionType value for this BaseRateAction.</div>
</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class java.lang.Object</h3>
<code>clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait</code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor_detail">
<!-- -->
</a>
<h3>Constructor Detail</h3>
<a name="BaseRateAction()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>BaseRateAction</h4>
<pre>public BaseRateAction()</pre>
</li>
</ul>
<a name="BaseRateAction(java.lang.String)">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>BaseRateAction</h4>
<pre>public BaseRateAction(java.lang.String baseRateActionType)</pre>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method_detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="getBaseRateActionType()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getBaseRateActionType</h4>
<pre>public java.lang.String getBaseRateActionType()</pre>
<div class="block">Gets the baseRateActionType value for this BaseRateAction.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>baseRateActionType * Indicates that this instance is a subtype of BaseRateAction.
Although this field is returned in the response, it is ignored on
input
and cannot be selected. Specify xsi:type instead.</dd></dl>
</li>
</ul>
<a name="setBaseRateActionType(java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setBaseRateActionType</h4>
<pre>public void setBaseRateActionType(java.lang.String baseRateActionType)</pre>
<div class="block">Sets the baseRateActionType value for this BaseRateAction.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>baseRateActionType</code> - * Indicates that this instance is a subtype of BaseRateAction.
Although this field is returned in the response, it is ignored on
input
and cannot be selected. Specify xsi:type instead.</dd></dl>
</li>
</ul>
<a name="equals(java.lang.Object)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>equals</h4>
<pre>public boolean equals(java.lang.Object obj)</pre>
<dl>
<dt><strong>Overrides:</strong></dt>
<dd><code>equals</code> in class <code>java.lang.Object</code></dd>
</dl>
</li>
</ul>
<a name="hashCode()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>hashCode</h4>
<pre>public int hashCode()</pre>
<dl>
<dt><strong>Overrides:</strong></dt>
<dd><code>hashCode</code> in class <code>java.lang.Object</code></dd>
</dl>
</li>
</ul>
<a name="getTypeDesc()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getTypeDesc</h4>
<pre>public static org.apache.axis.description.TypeDesc getTypeDesc()</pre>
<div class="block">Return type metadata object</div>
</li>
</ul>
<a name="getSerializer(java.lang.String, java.lang.Class, javax.xml.namespace.QName)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getSerializer</h4>
<pre>public static org.apache.axis.encoding.Serializer getSerializer(java.lang.String mechType,
java.lang.Class _javaType,
javax.xml.namespace.QName _xmlType)</pre>
<div class="block">Get Custom Serializer</div>
</li>
</ul>
<a name="getDeserializer(java.lang.String, java.lang.Class, javax.xml.namespace.QName)">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>getDeserializer</h4>
<pre>public static org.apache.axis.encoding.Deserializer getDeserializer(java.lang.String mechType,
java.lang.Class _javaType,
javax.xml.namespace.QName _xmlType)</pre>
<div class="block">Get Custom Deserializer</div>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../../com/google/api/ads/dfp/v201306/BaseRate.html" title="class in com.google.api.ads.dfp.v201306"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../../../../com/google/api/ads/dfp/v201306/BaseRateActionError.html" title="class in com.google.api.ads.dfp.v201306"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?com/google/api/ads/dfp/v201306/BaseRateAction.html" target="_top">Frames</a></li>
<li><a href="BaseRateAction.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li>Field | </li>
<li><a href="#constructor_summary">Constr</a> | </li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li><a href="#constructor_detail">Constr</a> | </li>
<li><a href="#method_detail">Method</a></li>
</ul>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>
|
example-app/app/content_push/cp-tile-file.html | 01org/nlpljs | <!--
Natural Language Processing Library for JavaScript
A client-side NLP utility library for web applications
Copyright 2015 Intel Corporation
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.
Authors:
Elliot Smith <elliot.smith@intel.com>
Max Waterman <max.waterman@intel.com>
Plamena Manolova <plamena.manolova@intel.com>
-->
<!--
- wrapper for a Google Drive file thumbnail
-->
<link rel="import" href="../bower_components/polymer/polymer.html">
<link rel="import" href="../bower_components/paper-material/paper-material.html">
<link rel="import" href="./cp-tile-style.html">
<dom-module id="cp-tile-file">
<template>
<style include="cp-tile-style">
#imageContainer {
height: calc(100% - 46px);
width: 100%;
overflow: hidden;
border-radius: 2px;
}
#image {
object-fit: contain;
object-position: 50% 50%;
background-color: #eee;
}
#meta {
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: center;
height: 46px;
text-align: left;
padding: 0.5em;
box-sizing: border-box;
width: 100%;
border-top: 1px solid #e6e6e6;
}
#caption {
margin-top: 0;
margin-bottom: 0;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
font-size: 12px;
line-height: 16px;
padding-left: 8px;
}
#icon {
min-width: 16px;
min-height: 16px;
}
</style>
<div id="container">
<paper-material elevation="1" id="imageShadow">
<div id="overlay"></div>
<div id="imageContainer">
<img id="image" src="[[src]]">
</div>
<div id="meta">
<img id="icon" src="[[iconLink]]">
<p id="caption">[[caption]]</p>
</div>
</paper-material>
</div>
</template>
<script src="./cp-layout-frame-chooser.js">
/* globals FrameChooser: true */
</script>
<script>
(function () {
'use strict';
Polymer({
is: 'cp-tile-file',
properties: {
/* file tiles are always ready */
done: {
type: Boolean,
value: true
},
/* hard-code the frame for file tiles */
frame: {
value: function () {
return FrameChooser.FRAMES.small_square;
}
},
/* we always set loaded to true, so that file tiles are
loaded into cp-display regardless of whether their related
thumbnail loads */
loaded: {
type: Boolean,
value: true
},
src: {
type: String,
value: ''
},
/* type of object used to create the tile */
type: {
type: String,
value: 'file'
},
iconLink: {
type: String,
value: null
},
caption: {
type: String,
value: ''
}
},
ready: function () {
/* THESE PROPERTIES SHOULD BE SET */
/* URL for the file thumbnail to be displayed */
this.src = null;
/* title to show at the bottom of the tile */
this.caption = '';
/* URL of icon to display, showing the file type */
this.iconLink = null;
/* the original data used to construct the tile, as
returned by a file search */
this.file = {};
/* keywords associated with the tile with structure:
[{
text: "<keyword text>",
groupId: "<keyword group ID>"
}, ...]
*/
this.keywords = [];
}
}); // Polymer()
}());
</script>
</dom-module>
|
Server/thirdparty/hazelcast/hazelcast-3.3.3/docs/javadoc/com/hazelcast/cache/impl/operation/class-use/CacheClearOperation.html | SoCe/SoCe | <!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_65) on Wed Nov 12 13:03:02 UTC 2014 -->
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
<title>Uses of Class com.hazelcast.cache.impl.operation.CacheClearOperation (Hazelcast Root 3.3.3 API)</title>
<meta name="date" content="2014-11-12">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class com.hazelcast.cache.impl.operation.CacheClearOperation (Hazelcast Root 3.3.3 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="../../../../../../com/hazelcast/cache/impl/operation/CacheClearOperation.html" title="class in com.hazelcast.cache.impl.operation">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/hazelcast/cache/impl/operation/class-use/CacheClearOperation.html" target="_top">Frames</a></li>
<li><a href="CacheClearOperation.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h2 title="Uses of Class com.hazelcast.cache.impl.operation.CacheClearOperation" class="title">Uses of Class<br>com.hazelcast.cache.impl.operation.CacheClearOperation</h2>
</div>
<div class="classUseContainer">No usage of com.hazelcast.cache.impl.operation.CacheClearOperation</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/hazelcast/cache/impl/operation/CacheClearOperation.html" title="class in com.hazelcast.cache.impl.operation">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/hazelcast/cache/impl/operation/class-use/CacheClearOperation.html" target="_top">Frames</a></li>
<li><a href="CacheClearOperation.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 © 2014 <a href="http://www.hazelcast.com/">Hazelcast, Inc.</a>. All Rights Reserved.</small></p>
</body>
</html>
|
TFSAP-7.1.1-software-package/src_TFSAP_June_2017/htmldocs/hdocs/wd.html | Prof-Boualem-Boashash/TFSAP-7.1-software-package | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/REC-html40/loose.dtd">
<html>
<head>
<title>Description of wd</title>
<meta name="keywords" content="wvd">
<meta name="description" content="Wigner-Ville distribution">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta name="generator" content="m2html © 2003 Guillaume Flandin">
<meta name="robots" content="index, follow">
<link type="text/css" rel="stylesheet" href="../m2html.css">
</head>
<body>
<a name="_top"></a>
<!-- menu.html hdocs -->
<h1>wvd
<img src="../mex.png" alt="Linux PC" border="0" title="Linux PC"></h1>
<h2><a name="_name"></a>PURPOSE <a href="#_top"><img alt="^" border="0" src="../up.png"></a></h2>
<div class="box"><strong>Wigner-Ville distribution</strong></div>
<h2><a name="_description"></a>DESCRIPTION <a href="#_top"><img alt="^" border="0" src="../up.png"></a></h2>
<div class="fragment"><pre class="comment"> Wigner-Ville distribution
Computes the Wigner Distribution of the input signal.If the input signal is an anlytic signal,
the produced result will be similar to the Wigner-Ville Distribution.
Usage:
tfd = wd(signal,[, fft_length],[,time_res] )
Parameters:
signal
One dimensional signal to be analysed.
time_res
The number of time samples to skip between successive slices.
Default vaule is 1.
fft_length
Zero-padding at the FFT stage of the analysis may be specified by
giving an fft_length larger than lag_window_length. If fft_length
is not specified, or is smaller than the lag_window_length, then the
next highest power of two above lag_window_length is used. If
fft_length is not a power of two, the next highest power of two is
used.
tfd
The computed time-frequency distribution. size(tfd) will
return [a, b], where a is the next largest power of two above
fft_length, and b is floor(length(signal)/time_res) - 1.
See Also: <a href="analyt.html" class="code" title="">analyt</a>, <a href="quadtfd.html" class="code" title="">quadtfd</a></pre></div>
<!-- crossreference -->
<!-- removed -->
<!-- crossreference -->
<hr><address>Generated by <strong><a href="http://www.artefact.tk/software/matlab/m2html/" target="_parent">m2html</a></strong> © 2016</address>
</body>
</html> |
website/ankorsite/static/javadoc/apidocs-0.1/at/irian/ankor/messaging/modify/class-use/CoerceTypeModifier.html | ankor-io/ankor-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.7.0_51) on Thu Feb 27 18:45:00 CET 2014 -->
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
<title>Uses of Class at.irian.ankor.messaging.modify.CoerceTypeModifier (Ankor - Project 0.1 API)</title>
<meta name="date" content="2014-02-27">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class at.irian.ankor.messaging.modify.CoerceTypeModifier (Ankor - Project 0.1 API)";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../at/irian/ankor/messaging/modify/CoerceTypeModifier.html" title="class in at.irian.ankor.messaging.modify">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?at/irian/ankor/messaging/modify/class-use/CoerceTypeModifier.html" target="_top">Frames</a></li>
<li><a href="CoerceTypeModifier.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 at.irian.ankor.messaging.modify.CoerceTypeModifier" class="title">Uses of Class<br>at.irian.ankor.messaging.modify.CoerceTypeModifier</h2>
</div>
<div class="classUseContainer">No usage of at.irian.ankor.messaging.modify.CoerceTypeModifier</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="../../../../../../at/irian/ankor/messaging/modify/CoerceTypeModifier.html" title="class in at.irian.ankor.messaging.modify">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?at/irian/ankor/messaging/modify/class-use/CoerceTypeModifier.html" target="_top">Frames</a></li>
<li><a href="CoerceTypeModifier.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 © 2014. All rights reserved.</small></p>
</body>
</html>
|
docs/www.euroscipy.org/2017/descriptions/19441.html | datapythonista/datapythonista.github.io | <!DOCTYPE html>
<head>
<meta charset="utf-8" />
<!-- Set the viewport width to device width for mobile -->
<meta name="viewport" content="width=device-width" />
<title>Game Theory and Python</title>
<link rel="stylesheet" href="../../theme/css/normalize.css" />
<link rel="stylesheet" href="../../theme/css/foundation.min.css" />
<link rel="stylesheet" href="../../theme/css/style.css" />
<link rel="stylesheet" href="../../theme/css/pygments.css" />
<link rel="shortcut icon" href="../../theme/images/icons/favicon.ico"/>
<script src="../../theme/js/custom.modernizr.js"></script>
<link rel="stylesheet" href="../../static/2019/euroscipy.css" />
</head>
<body>
<!-- Nav Bar -->
<nav>
<div class="top-bar">
<div class="row">
<div class="large-9 large-centered columns">
<a href="../.."><img src="../../theme/images/euroscipy_logo.png" alt="EuroSciPy Website"/></a>
<h1>EuroSciPy</h1>
</div>
</div>
</div>
<!-- Show menu items and pages -->
<div class="row">
<div class="large-9 columns">
<ul class="button-group navigation">
</ul>
</div>
</div>
</nav>
<!-- End Nav -->
<!-- Main Page Content and Sidebar -->
<div class="row">
<!-- Main Blog Content -->
<div class="large-9 columns">
<h3>Game Theory and Python</h3>
<p>Game Theory is the study of strategic interactions between several players in
a "game". It has grown into a complex and multi-branched subject over the
years due to the applications it offers to real world problems. This
workshop will cover an introduction to the field of Game Theory and more
specifically to the discipline of iterated games. </p>
<p>A famous iterated game commonly used to understand the evolution of
co-operative behaviour is the Iterated Prisoner’s Dilemma (IPD). In the 1980s,
a computer tournament of the Iterated Prisoner's Dilemma game spawned to life a
new field of research. Scholars from various disciplines were invited to
submit strategies in computer code and they would compete in a round
robin tournament where the strategy with the highest average score would
be the winner. </p>
<p>Strategies are a set of rules used to describe to a player how to play
the IPD game. The research of computer tournaments includes studying the
interactions of such strategies and the exploration of a strategy that
dominates them all. An open source Python library, the Axelrod-Python, was
introduced on the field in 2015 for carrying out such research and will be
used in this workshop.</p>
<p>I am proposing an introduction to the Axelrod-Python library and to IPD
computer tournaments. Moreover, the library allows the user to interact with
more than 190 strategies that have been implemented. This will allow
participants to explore the strategic rules and possibly inspire the creation
of new strategies and the contribution of these to the library.</p>
</div>
<!-- End Main Content -->
</div> <!-- End Main Content and Sidebar -->
<footer role="contentinfo"><!-- Footer -->
<footer class="row">
<div class="large-12 columns">
<hr />
<div class="row">
<div class="large-8 columns">
<p>EuroSciPy by The EuroSciPy team <info@euroscipy.org></p>
</div>
<div class="large-4 columns">
<a href="privacy.html"> Privacy terms</a>
</div>
</div>
</footer></footer> |
docs/javadoc/de/esoco/lib/comm/http/HttpResponse.html | esoco/esoco-lib | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_191) on Mon Oct 29 14:51:35 CET 2018 -->
<title>HttpResponse (esoco-lib 1.3.0 API)</title>
<meta name="date" content="2018-10-29">
<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="HttpResponse (esoco-lib 1.3.0 API)";
}
}
catch(err) {
}
//-->
var methods = {"i0":10,"i1":10,"i2":10,"i3":10};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
var tableTab = "tableTab";
var activeTableTab = "activeTableTab";
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../de/esoco/lib/comm/http/HttpRequestMethod.html" title="enum in de.esoco.lib.comm.http"><span class="typeNameLink">Prev Class</span></a></li>
<li><a href="../../../../../de/esoco/lib/comm/http/HttpStatusCode.html" title="enum in de.esoco.lib.comm.http"><span class="typeNameLink">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?de/esoco/lib/comm/http/HttpResponse.html" target="_top">Frames</a></li>
<li><a href="HttpResponse.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li>Field | </li>
<li><a href="#constructor.summary">Constr</a> | </li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li><a href="#constructor.detail">Constr</a> | </li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">de.esoco.lib.comm.http</div>
<h2 title="Class HttpResponse" class="title">Class HttpResponse</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li>org.obrel.core.RelatedObject</li>
<li>
<ul class="inheritance">
<li>de.esoco.lib.comm.http.HttpResponse</li>
</ul>
</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Implemented Interfaces:</dt>
<dd>org.obrel.core.Relatable</dd>
</dl>
<hr>
<br>
<pre>public class <span class="typeNameLabel">HttpResponse</span>
extends org.obrel.core.RelatedObject</pre>
<div class="block">A class that contains the data of an HTTP response and additional response
information (like headers) in it's relations.</div>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor.summary">
<!-- -->
</a>
<h3>Constructor Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
<caption><span>Constructors</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../../de/esoco/lib/comm/http/HttpResponse.html#HttpResponse-de.esoco.lib.comm.http.HttpStatusCode-java.io.Reader-int-">HttpResponse</a></span>(<a href="../../../../../de/esoco/lib/comm/http/HttpStatusCode.html" title="enum in de.esoco.lib.comm.http">HttpStatusCode</a> eStatus,
java.io.Reader rResponseData,
int nResponseLength)</code>
<div class="block">Creates a new instance with a certain status code.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../../de/esoco/lib/comm/http/HttpResponse.html#HttpResponse-de.esoco.lib.comm.http.HttpStatusCode-java.lang.String-">HttpResponse</a></span>(<a href="../../../../../de/esoco/lib/comm/http/HttpStatusCode.html" title="enum in de.esoco.lib.comm.http">HttpStatusCode</a> eStatus,
java.lang.String sResponseData)</code>
<div class="block">Creates a new instance with a certain status code and (short) response
data as a string.</div>
</td>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../../de/esoco/lib/comm/http/HttpResponse.html#HttpResponse-java.io.Reader-int-">HttpResponse</a></span>(java.io.Reader rResponseData,
int nResponseLength)</code>
<div class="block">Creates a new instance for a successful request with the status code
<a href="../../../../../de/esoco/lib/comm/http/HttpStatusCode.html#OK"><code>HttpStatusCode.OK</code></a>.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../../de/esoco/lib/comm/http/HttpResponse.html#HttpResponse-java.lang.String-">HttpResponse</a></span>(java.lang.String sResponseData)</code>
<div class="block">Creates a new instance for a successful request from a response data
string.</div>
</td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method.summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd"> </span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd"> </span></span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr id="i0" class="altColor">
<td class="colFirst"><code>java.util.List<java.lang.String></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../de/esoco/lib/comm/http/HttpResponse.html#setHeader-de.esoco.lib.comm.http.HttpHeaderTypes.HttpHeaderField-java.lang.String-">setHeader</a></span>(<a href="../../../../../de/esoco/lib/comm/http/HttpHeaderTypes.HttpHeaderField.html" title="enum in de.esoco.lib.comm.http">HttpHeaderTypes.HttpHeaderField</a> eField,
java.lang.String sValue)</code>
<div class="block">Sets a header field of this response to a certain value.</div>
</td>
</tr>
<tr id="i1" class="rowColor">
<td class="colFirst"><code><T> <a href="../../../../../de/esoco/lib/comm/http/HttpResponse.html" title="class in de.esoco.lib.comm.http">HttpResponse</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../de/esoco/lib/comm/http/HttpResponse.html#with-org.obrel.core.RelationType-T-">with</a></span>(org.obrel.core.RelationType<T> rType,
T rValue)</code>
<div class="block">A builder-pattern variant of <code>RelatedObject.set(RelationType, Object)</code> which
returns this response instance to allow the concatenation of multiple
method invocations.</div>
</td>
</tr>
<tr id="i2" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../de/esoco/lib/comm/http/HttpResponse.html#write-java.io.OutputStream-">write</a></span>(java.io.OutputStream rOutput)</code>
<div class="block">Writes this response to the given output stream.</div>
</td>
</tr>
<tr id="i3" class="rowColor">
<td class="colFirst"><code>protected void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../de/esoco/lib/comm/http/HttpResponse.html#writeResponseHeader-de.esoco.lib.comm.http.HttpStatusCode-java.util.Map-java.io.Writer-">writeResponseHeader</a></span>(<a href="../../../../../de/esoco/lib/comm/http/HttpStatusCode.html" title="enum in de.esoco.lib.comm.http">HttpStatusCode</a> eStatus,
java.util.Map<java.lang.String,java.util.List<java.lang.String>> rResponseHeaders,
java.io.Writer rOut)</code>
<div class="block">Writes the header for an HTTP response with a certain status code to a
<code>Writer</code>.</div>
</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.org.obrel.core.RelatedObject">
<!-- -->
</a>
<h3>Methods inherited from class org.obrel.core.RelatedObject</h3>
<code>deleteRelation, get, getRelation, getRelations, notifyRelationListeners, readRelations, relationsEqual, relationsHashCode, relationsString, set, set, toString, transform, writeRelations</code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class java.lang.Object</h3>
<code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait</code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.org.obrel.core.Relatable">
<!-- -->
</a>
<h3>Methods inherited from interface org.obrel.core.Relatable</h3>
<code>deleteRelation, deleteRelations, get, get, getAll, getRelationCount, getRelations, hasFlag, hasRelation, hasRelations, init, set, set, set, streamRelations</code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor.detail">
<!-- -->
</a>
<h3>Constructor Detail</h3>
<a name="HttpResponse-java.lang.String-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>HttpResponse</h4>
<pre>public HttpResponse(java.lang.String sResponseData)</pre>
<div class="block">Creates a new instance for a successful request from a response data
string. The HTTP status code will be be set to <a href="../../../../../de/esoco/lib/comm/http/HttpStatusCode.html#OK"><code>HttpStatusCode.OK</code></a>.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>sResponseData</code> - The response data string</dd>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../../de/esoco/lib/comm/http/HttpResponse.html#HttpResponse-de.esoco.lib.comm.http.HttpStatusCode-java.io.Reader-int-"><code>HttpResponse(HttpStatusCode, Reader, int)</code></a></dd>
</dl>
</li>
</ul>
<a name="HttpResponse-java.io.Reader-int-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>HttpResponse</h4>
<pre>public HttpResponse(java.io.Reader rResponseData,
int nResponseLength)</pre>
<div class="block">Creates a new instance for a successful request with the status code
<a href="../../../../../de/esoco/lib/comm/http/HttpStatusCode.html#OK"><code>HttpStatusCode.OK</code></a>.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>rResponseData</code> - A stream reader that provides access to the data
of the response body</dd>
<dd><code>nResponseLength</code> - The length of the response data stream</dd>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../../de/esoco/lib/comm/http/HttpResponse.html#HttpResponse-de.esoco.lib.comm.http.HttpStatusCode-java.io.Reader-int-"><code>HttpResponse(HttpStatusCode, Reader, int)</code></a></dd>
</dl>
</li>
</ul>
<a name="HttpResponse-de.esoco.lib.comm.http.HttpStatusCode-java.lang.String-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>HttpResponse</h4>
<pre>public HttpResponse(<a href="../../../../../de/esoco/lib/comm/http/HttpStatusCode.html" title="enum in de.esoco.lib.comm.http">HttpStatusCode</a> eStatus,
java.lang.String sResponseData)</pre>
<div class="block">Creates a new instance with a certain status code and (short) response
data as a string. For longer response bodies it is recommended to use the
constructor with a <code>Reader</code> argument.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>eStatus</code> - The response status code</dd>
<dd><code>sResponseData</code> - The data of the response body</dd>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../../de/esoco/lib/comm/http/HttpResponse.html#HttpResponse-de.esoco.lib.comm.http.HttpStatusCode-java.io.Reader-int-"><code>HttpResponse(HttpStatusCode, Reader, int)</code></a></dd>
</dl>
</li>
</ul>
<a name="HttpResponse-de.esoco.lib.comm.http.HttpStatusCode-java.io.Reader-int-">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>HttpResponse</h4>
<pre>public HttpResponse(<a href="../../../../../de/esoco/lib/comm/http/HttpStatusCode.html" title="enum in de.esoco.lib.comm.http">HttpStatusCode</a> eStatus,
java.io.Reader rResponseData,
int nResponseLength)</pre>
<div class="block">Creates a new instance with a certain status code. The response data must
be provided as a <code>Reader</code> instance. The status code will be set on
this instance as a relation with the relation type <a href="../../../../../de/esoco/lib/comm/CommunicationRelationTypes.html#HTTP_STATUS_CODE"><code>CommunicationRelationTypes.HTTP_STATUS_CODE</code></a>.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>eStatus</code> - The response status code</dd>
<dd><code>rResponseData</code> - A stream reader that provides access to the data
of the response body</dd>
<dd><code>nResponseLength</code> - The length of the response data stream</dd>
</dl>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method.detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="setHeader-de.esoco.lib.comm.http.HttpHeaderTypes.HttpHeaderField-java.lang.String-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setHeader</h4>
<pre>public java.util.List<java.lang.String> setHeader(<a href="../../../../../de/esoco/lib/comm/http/HttpHeaderTypes.HttpHeaderField.html" title="enum in de.esoco.lib.comm.http">HttpHeaderTypes.HttpHeaderField</a> eField,
java.lang.String sValue)</pre>
<div class="block">Sets a header field of this response to a certain value.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>eField</code> - The header field to set</dd>
<dd><code>sValue</code> - The field value</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>The previous header value or NULL for none</dd>
</dl>
</li>
</ul>
<a name="with-org.obrel.core.RelationType-java.lang.Object-">
<!-- -->
</a><a name="with-org.obrel.core.RelationType-T-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>with</h4>
<pre>public <T> <a href="../../../../../de/esoco/lib/comm/http/HttpResponse.html" title="class in de.esoco.lib.comm.http">HttpResponse</a> with(org.obrel.core.RelationType<T> rType,
T rValue)</pre>
<div class="block">A builder-pattern variant of <code>RelatedObject.set(RelationType, Object)</code> which
returns this response instance to allow the concatenation of multiple
method invocations.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>rType</code> - The type of the relation to set</dd>
<dd><code>rValue</code> - The relation value</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>This instance for concatenation</dd>
</dl>
</li>
</ul>
<a name="write-java.io.OutputStream-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>write</h4>
<pre>public void write(java.io.OutputStream rOutput)
throws java.io.IOException</pre>
<div class="block">Writes this response to the given output stream.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>rOutput</code> - The target output stream</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code>java.io.IOException</code> - If writing to the stream fails</dd>
</dl>
</li>
</ul>
<a name="writeResponseHeader-de.esoco.lib.comm.http.HttpStatusCode-java.util.Map-java.io.Writer-">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>writeResponseHeader</h4>
<pre>protected void writeResponseHeader(<a href="../../../../../de/esoco/lib/comm/http/HttpStatusCode.html" title="enum in de.esoco.lib.comm.http">HttpStatusCode</a> eStatus,
java.util.Map<java.lang.String,java.util.List<java.lang.String>> rResponseHeaders,
java.io.Writer rOut)
throws java.io.IOException</pre>
<div class="block">Writes the header for an HTTP response with a certain status code to a
<code>Writer</code>.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>eStatus</code> - The response status</dd>
<dd><code>rResponseHeaders</code> - </dd>
<dd><code>rOut</code> - The output writer</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code>java.io.IOException</code> - If writing data fails</dd>
</dl>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../de/esoco/lib/comm/http/HttpRequestMethod.html" title="enum in de.esoco.lib.comm.http"><span class="typeNameLink">Prev Class</span></a></li>
<li><a href="../../../../../de/esoco/lib/comm/http/HttpStatusCode.html" title="enum in de.esoco.lib.comm.http"><span class="typeNameLink">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?de/esoco/lib/comm/http/HttpResponse.html" target="_top">Frames</a></li>
<li><a href="HttpResponse.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li>Field | </li>
<li><a href="#constructor.summary">Constr</a> | </li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li><a href="#constructor.detail">Constr</a> | </li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>
|
docs/devapidocs/org/apache/hadoop/hbase/regionserver/wal/class-use/WALEditsReplaySink.html | devansh2015/hbase-0.98.8 | <!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_67) on Fri Nov 14 18:25:19 PST 2014 -->
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
<title>Uses of Class org.apache.hadoop.hbase.regionserver.wal.WALEditsReplaySink (HBase 0.98.8-hadoop2 API)</title>
<meta name="date" content="2014-11-14">
<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.hadoop.hbase.regionserver.wal.WALEditsReplaySink (HBase 0.98.8-hadoop2 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/hadoop/hbase/regionserver/wal/WALEditsReplaySink.html" title="class in org.apache.hadoop.hbase.regionserver.wal">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?org/apache/hadoop/hbase/regionserver/wal/class-use/WALEditsReplaySink.html" target="_top">Frames</a></li>
<li><a href="WALEditsReplaySink.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.hadoop.hbase.regionserver.wal.WALEditsReplaySink" class="title">Uses of Class<br>org.apache.hadoop.hbase.regionserver.wal.WALEditsReplaySink</h2>
</div>
<div class="classUseContainer">No usage of org.apache.hadoop.hbase.regionserver.wal.WALEditsReplaySink</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/hadoop/hbase/regionserver/wal/WALEditsReplaySink.html" title="class in org.apache.hadoop.hbase.regionserver.wal">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?org/apache/hadoop/hbase/regionserver/wal/class-use/WALEditsReplaySink.html" target="_top">Frames</a></li>
<li><a href="WALEditsReplaySink.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 © 2014 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</small></p>
</body>
</html>
|
help/searchReturnjsp1.html | ulviibrahimov/CMPUT391F | <html>
<head>
<title>searchReturn.jsp</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="generator" content="HelpNDoc Personal Edition 4.6.2.573">
<meta name="keywords" content="">
<link type="text/css" rel="stylesheet" media="all" href="css/reset.css" />
<link type="text/css" rel="stylesheet" media="all" href="css/base.css" />
<link type="text/css" rel="stylesheet" media="all" href="css/hnd.css" />
<!--[if lte IE 8]>
<link type="text/css" rel="stylesheet" media="all" href="css/ielte8.css" />
<![endif]-->
<style type="text/css">
#topic_header
{
background-color: #EFEFEF;
}
</style>
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/hnd.js"></script>
<script type="text/javascript">
$(document).ready(function()
{
if (top.frames.length == 0)
{
var sTopicUrl = top.location.href.substring(top.location.href.lastIndexOf("/") + 1, top.location.href.length);
top.location.href = "Help.html?" + sTopicUrl;
}
else if (top && top.FrameTOC && top.FrameTOC.SelectTocItem)
{
top.FrameTOC.SelectTocItem("searchReturnjsp1");
}
});
</script>
</head>
<body>
<div id="topic_content">
<p></p>
<p class="rvps2"><span class="rvts13"><br/></span></p>
<p class="rvps2"><span class="rvts13"><br/></span></p>
<p class="rvps2"><span class="rvts13"><br/></span></p>
<p class="rvps2"><span class="rvts13"><br/></span></p>
<p class="rvps2"><span class="rvts13">For general user: </span></p>
<p class="rvps2"><span class="rvts13">"select images.photo_id, images.subject, images.place, images.description 6*score(" + Integer.toString(matchNum + 1)+ ")+3*score(" + Integer.toString(matchNum + 2)+ ")+score(" + Integer.toString(matchNum + 3)+ ") as rank FROM images where images.photo_id in (select distinct i.photo_id from images i, group_lists g where (g.friend_id = '"+name+"' and g.group_id = i.permitted) or i.owner_name='"+name+"' or i.permitted=1) and images.timing between to_date('" + dateStart+ "', 'DD/MM/YYYY') AND to_date('" + dateEnd+ "', 'DD/MM/YYYY') AND (contains(images.subject, '"+ wordList[i] + "', "+ Integer.toString(countNum + 1)+ ") > 0 OR contains(images.place, '"+ wordList[i] + "', "+ Integer.toString(countNum + 2)+ ") > 0 OR contains(images.description, '" + wordList[i]+ "', " + Integer.toString(countNum + 3)+ ") > 0)"</span></p>
<p class="rvps2"><span class="rvts13"><br/></span></p>
<p class="rvps2"><span class="rvts13">For ‘admin’:</span></p>
<p class="rvps2"><span class="rvts13">"select images.photo_id, images.subject, images.place, images.description 6*score(" + Integer.toString(matchNum + 1)+ ")+3*score(" + Integer.toString(matchNum + 2)+ ")+score(" + Integer.toString(matchNum + 3)+ ") as rank FROM images.timing between to_date('" + dateStart+ "', 'DD/MM/YYYY') AND to_date('" + dateEnd+ "', 'DD/MM/YYYY') AND (contains(images.subject, '"+ wordList[i] + "', "+ Integer.toString(countNum + 1)+ ") > 0 OR contains(images.place, '"+ wordList[i] + "', "+ Integer.toString(countNum + 2)+ ") > 0 OR contains(images.description, '" + wordList[i]+ "', " + Integer.toString(countNum + 3)+ ") > 0)</span></p>
<p></p>
<p class="rvps4"><span class="rvts11">Created with the Personal Edition of HelpNDoc: </span><a class="rvts12" href="http://www.helpndoc.com/feature-tour">Easily create Web Help sites</a></p>
</div>
</body>
</html>
|
web/src/main/resources/templates/error.html | NEU-2016/NEUban | <!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org">
<head>
<title th:text="#{error.title}"></title>
<meta charset="utf-8"/>
<link rel="stylesheet" type="text/css" th:href="@{/css/bootstrap.min.css}"/>
</head>
<body>
<div class="container">
<h1 th:text="#{error.header}"></h1>
<p th:text="#{error.text}"></p>
<p th:if="${errorMessage}" th:text="${errorMessage}"></p>
<img th:src="@{/images/errorimg1.png}"/>
</div>
</body>
</html> |
_includes/calendar3.html | sjmscott/row | <div class="row">
<h1>Bootstrap 3 Lightbox using Modal</h1>
<div class="row">
<div class="col-lg-3 col-sm-4 col-6"><a href="#" title="Image 1"><img src="//placehold.it/600x350" class="thumbnail img-responsive"></a></div>
<div class="col-lg-3 col-sm-4 col-6"><a href="#" title="Image 2"><img src="//placehold.it/600x350/2255EE" class="thumbnail img-responsive"></a></div>
<div class="col-lg-3 col-sm-4 col-6"><a href="#" title="Image 3"><img src="//placehold.it/600x350/449955/FFF" class="thumbnail img-responsive"></a></div>
<div class="col-lg-3 col-sm-4 col-6"><a href="#" title="Image 4"><img src="//placehold.it/600x350/992233" class="thumbnail img-responsive"></a></div>
<div class="col-lg-3 col-sm-4 col-6"><a href="#" title="Image 5"><img src="//placehold.it/600x350/2255EE" class="thumbnail img-responsive"></a></div>
<div class="col-lg-3 col-sm-4 col-6"><a href="#" title="Image 6"><img src="//placehold.it/600x350/449955/FFF" class="thumbnail img-responsive"></a></div>
<div class="col-lg-3 col-sm-4 col-6"><a href="#" title="Image 8"><img src="//placehold.it/600x350/777" class="thumbnail img-responsive"></a></div>
<div class="col-lg-3 col-sm-4 col-6"><a href="#" title="Image 9"><img src="//placehold.it/600x350/992233" class="thumbnail img-responsive"></a></div>
<div class="col-lg-3 col-sm-4 col-6"><a href="#" title="Image 10"><img src="//placehold.it/600x350/EEE" class="thumbnail img-responsive"></a></div>
<div class="col-lg-3 col-sm-4 col-6"><a href="#" title="Image 11"><img src="//placehold.it/600x350/449955/FFF" class="thumbnail img-responsive"></a></div>
<div class="col-lg-3 col-sm-4 col-6"><a href="#" title="Image 12"><img src="//placehold.it/600x350/DDD" class="thumbnail img-responsive"></a></div>
<div class="col-lg-3 col-sm-4 col-6"><a href="#" title="Image 13"><img src="//placehold.it/600x350/992233" class="thumbnail img-responsive"></a></div>
</div>
<hr>
<a href="http://bootply.com/71401">Edit on Bootply</a>
<hr>
</div>
</div>
<div id="myModal" class="modal fade" tabindex="-1" role="dialog">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h3 class="modal-title">Heading</h3>
</div>
<div class="modal-body">
</div>
<div class="modal-footer">
<button class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div> |
docs/sdl2/SDL_SwapFloat.html | Fillipoman/solaire | <!doctype html><html lang="en-US">
<head>
<meta charset="utf-8">
<link href="layout.css" charset="utf-8" type="text/css" rel="stylesheet"></link>
<title>SDL_SwapFloat</title>
</head>
<body>
<script src="menu.js"></script>
<div id="pagecontent">
<h1>SDL_SwapFloat</h1>
<p>Use this function to swap the byte order of a floating point value.
<h2>Syntax</h2>
<div style="codearea">
<pre>
float SDL_SwapFloat(float x)
</pre></div>
<h2>Function Parameters</h2>
<table>
<tr><td><strong>x</strong></td><td>the value to be swapped</td></tr>
</table>
<h2>Return Value</h2>
<p>Returns the swapped value.
<h2>Code Examples</h2>
<h2>Remarks</h2>
<h2>Related Functions</h2>
<ul style="list-style-type:none"><li><a href="SDL_SwapFloatBE.html">SDL_SwapFloatBE</a></li>
<li><a href="SDL_SwapFloatLE.html">SDL_SwapFloatLE</a></li></ul>
</div>
</body>
</html> |
source/doc/gameframework/game/GameLevel.html | elyas-bhy/octolink | <!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_07) on Fri Dec 19 15:11:13 CET 2008 -->
<TITLE>
GameLevel
</TITLE>
<META NAME="date" CONTENT="2008-12-19">
<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="GameLevel";
}
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<HR>
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/GameLevel.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../gameframework/game/GameEntity.html" title="interface in gameframework.game"><B>PREV CLASS</B></A>
<A HREF="../../gameframework/game/GameLevelDefaultImpl.html" title="class in gameframework.game"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../index.html?gameframework/game/GameLevel.html" target="_top"><B>FRAMES</B></A>
<A HREF="GameLevel.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: NESTED | FIELD | CONSTR | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: FIELD | 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">
gameframework.game</FONT>
<BR>
Interface GameLevel</H2>
<DL>
<DT><B>All Superinterfaces:</B> <DD>java.lang.Runnable</DD>
</DL>
<DL>
<DT><B>All Known Implementing Classes:</B> <DD><A HREF="../../gameframework/game/GameLevelDefaultImpl.html" title="class in gameframework.game">GameLevelDefaultImpl</A>, <A HREF="../../pacman/PacmanGameLevel.html" title="class in pacman">PacmanGameLevel</A></DD>
</DL>
<HR>
<DL>
<DT><PRE>public interface <B>GameLevel</B><DT>extends java.lang.Runnable</DL>
</PRE>
<P>
<HR>
<P>
<!-- ========== 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="../../gameframework/game/GameLevel.html#start()">start</A></B>()</CODE>
<BR>
</TD>
</TR>
</TABLE>
<A NAME="methods_inherited_from_class_java.lang.Runnable"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left"><B>Methods inherited from interface java.lang.Runnable</B></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE>run</CODE></TD>
</TR>
</TABLE>
<P>
<!-- ============ 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="start()"><!-- --></A><H3>
start</H3>
<PRE>
void <B>start</B>()</PRE>
<DL>
<DD><DL>
</DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<!-- ========= END OF CLASS DATA ========= -->
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/GameLevel.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../gameframework/game/GameEntity.html" title="interface in gameframework.game"><B>PREV CLASS</B></A>
<A HREF="../../gameframework/game/GameLevelDefaultImpl.html" title="class in gameframework.game"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../index.html?gameframework/game/GameLevel.html" target="_top"><B>FRAMES</B></A>
<A HREF="GameLevel.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: NESTED | FIELD | CONSTR | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: FIELD | CONSTR | <A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
</BODY>
</HTML>
|
docs/javadoc/2.3/com/fasterxml/jackson/databind/jsontype/impl/class-use/AsWrapperTypeDeserializer.html | FasterXML/jackson-databind | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_25) on Sat Nov 16 21:43:21 PST 2013 -->
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
<title>Uses of Class com.fasterxml.jackson.databind.jsontype.impl.AsWrapperTypeDeserializer (jackson-databind 2.3.0 API)</title>
<meta name="date" content="2013-11-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 com.fasterxml.jackson.databind.jsontype.impl.AsWrapperTypeDeserializer (jackson-databind 2.3.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="../../../../../../../com/fasterxml/jackson/databind/jsontype/impl/AsWrapperTypeDeserializer.html" title="class in com.fasterxml.jackson.databind.jsontype.impl">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/fasterxml/jackson/databind/jsontype/impl/class-use/AsWrapperTypeDeserializer.html" target="_top">Frames</a></li>
<li><a href="AsWrapperTypeDeserializer.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h2 title="Uses of Class com.fasterxml.jackson.databind.jsontype.impl.AsWrapperTypeDeserializer" class="title">Uses of Class<br>com.fasterxml.jackson.databind.jsontype.impl.AsWrapperTypeDeserializer</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/fasterxml/jackson/databind/jsontype/impl/AsWrapperTypeDeserializer.html" title="class in com.fasterxml.jackson.databind.jsontype.impl">AsWrapperTypeDeserializer</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.fasterxml.jackson.databind.jsontype.impl">com.fasterxml.jackson.databind.jsontype.impl</a></td>
<td class="colLast">
<div class="block">Package that contains standard implementations for
<a href="../../../../../../../com/fasterxml/jackson/databind/jsontype/TypeResolverBuilder.html" title="interface in com.fasterxml.jackson.databind.jsontype"><code>TypeResolverBuilder</code></a>
and
<a href="../../../../../../../com/fasterxml/jackson/databind/jsontype/TypeIdResolver.html" title="interface in com.fasterxml.jackson.databind.jsontype"><code>TypeIdResolver</code></a>.</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="com.fasterxml.jackson.databind.jsontype.impl">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../../com/fasterxml/jackson/databind/jsontype/impl/AsWrapperTypeDeserializer.html" title="class in com.fasterxml.jackson.databind.jsontype.impl">AsWrapperTypeDeserializer</a> in <a href="../../../../../../../com/fasterxml/jackson/databind/jsontype/impl/package-summary.html">com.fasterxml.jackson.databind.jsontype.impl</a></h3>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing constructors, and an explanation">
<caption><span>Constructors in <a href="../../../../../../../com/fasterxml/jackson/databind/jsontype/impl/package-summary.html">com.fasterxml.jackson.databind.jsontype.impl</a> with parameters of type <a href="../../../../../../../com/fasterxml/jackson/databind/jsontype/impl/AsWrapperTypeDeserializer.html" title="class in com.fasterxml.jackson.databind.jsontype.impl">AsWrapperTypeDeserializer</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colLast"><code><strong><a href="../../../../../../../com/fasterxml/jackson/databind/jsontype/impl/AsWrapperTypeDeserializer.html#AsWrapperTypeDeserializer(com.fasterxml.jackson.databind.jsontype.impl.AsWrapperTypeDeserializer, com.fasterxml.jackson.databind.BeanProperty)">AsWrapperTypeDeserializer</a></strong>(<a href="../../../../../../../com/fasterxml/jackson/databind/jsontype/impl/AsWrapperTypeDeserializer.html" title="class in com.fasterxml.jackson.databind.jsontype.impl">AsWrapperTypeDeserializer</a> src,
<a href="../../../../../../../com/fasterxml/jackson/databind/BeanProperty.html" title="interface in com.fasterxml.jackson.databind">BeanProperty</a> property)</code> </td>
</tr>
</tbody>
</table>
</li>
</ul>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../../com/fasterxml/jackson/databind/jsontype/impl/AsWrapperTypeDeserializer.html" title="class in com.fasterxml.jackson.databind.jsontype.impl">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/fasterxml/jackson/databind/jsontype/impl/class-use/AsWrapperTypeDeserializer.html" target="_top">Frames</a></li>
<li><a href="AsWrapperTypeDeserializer.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 © 2012-2013 <a href="http://fasterxml.com/">FasterXML</a>. All Rights Reserved.</small></p>
</body>
</html>
|
rtk/v4/459.html | hochanh/hochanh.github.io | <!DOCTYPE html>
<meta charset=utf-8>
<title>Redirecting...</title>
<link rel=canonical href="../敏/index.html">
<meta http-equiv=refresh content="0; url='../敏/index.html'">
<h1>Redirecting...</h1>
<a href="../敏/index.html">Click here if you are not redirected.</a>
<script>location='../敏/index.html'</script>
|
duke-encounters/src/main/resources/templates/login.html | dschadow/ApplicationIntrusionDetection | <!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head th:include="partials :: head"></head>
<body>
<div class="container" id="main">
<nav class="navbar-inverse navbar-default navbar-fixed-top">
<div class="container">
<div th:replace="partials :: navbar-header"></div>
<div class="collapse navbar-collapse" id="mainNavigation">
<ul class="nav navbar-nav">
<li><a th:href="@{/encounters}">Encounters</a></li>
<li><a th:href="@{/search}">Search</a></li>
</ul>
<form th:replace="partials :: navbar-search-form"></form>
<ul th:replace="partials :: navbar-menu"></ul>
</div>
</div>
</nav>
<div class="row" id="welcome">
<div class="col-12">
<h1>Login</h1>
<p class="lead">Use your credentials to log in. Need to <a th:href="@{/register}">register</a> first?</p>
</div>
</div>
<div class="row" id="operationResults">
<div class="col-12">
<p th:if="${userCreated}" class="alert alert-success">User <strong th:text="${userCreated}"></strong>
successfully created, you can now use it to log in.</p>
</div>
</div>
<div class="row" id="login">
<div class="col-12">
<form class="form-horizontal" action="#" th:action="@{/login}" method="post" role="form">
<div th:if="${loginError}" class="alert alert-danger" role="alert">
Login failed - wrong username and/or password.
</div>
<div class="form-group">
<label class="col-sm-2 control-label" for="username">Username</label>
<div class="col-sm-3">
<input type="text" autocomplete="off" autofocus="autofocus" id="username" name="username"
class="form-control" placeholder="Username"/>
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label" for="password">Password</label>
<div class="col-sm-3">
<input type="password" autocomplete="off" id="password" name="password" class="form-control"
placeholder="Password"/>
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label" for="remember-me">Remember Me</label>
<div class="col-sm-1">
<input type="checkbox" id="remember-me" name="remember-me" class="form-control"/>
</div>
</div>
<div class="form-group">
<div class="col-sm-5">
<button type="submit" class="btn btn-success pull-right">Log in</button>
</div>
</div>
</form>
</div>
</div>
</div>
<footer th:include="partials :: footer"></footer>
<div th:replace="partials :: scripts"></div>
</body>
</html> |
paper/lib_new/TemplateBinding/examples/how_to/bind_to_attributes.html | jarrodek/feed-reader | <!DOCTYPE html><!--
Copyright (c) 2014 The Polymer Project Authors. All rights reserved.
This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
Code distributed by Google as part of the polymer project is also
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
--><html><head>
<script src="../../load.js"></script>
</head>
<body>
<h1>Bind To Attributes</h1>
<ul>
<template id="colors" repeat="{{ colors }}">
<li style="color: {{ color }}">The style attribute of this list item is bound</li>
</template>
</ul>
<button id="rotateText">Rotate</button>
<script src="bind_to_attributes.html.0.js"></script>
</body></html> |
src/main/webapp/project/views/editmember.html | ox-it/ords-ui | <div class="breadcrumbs-wrapper">
<a href="#/">My Projects</a>
<a href="#/project/{{project.projectId}}">{{project.name}}</a>
<span class="breadcrumbs youarehere">Edit member</span>
</div>
<h1>Edit Member: {{member.getName()}}</h1>
<p>Here you can alter this project member's permissions</p>
<form class="process" ng-submit="editMember()">
<div class="formItem">
<label for="editableRoleList">Required role<span class="small">Please specify the new permission level for this member <br>
<a href="http://help.it.ox.ac.uk/research/ords/howto02#ORDS-roles" target="_blank">More information about roles</a></span></label>
<select ng-model = "member.role" name="editableRoleList" id="editableRoleList">
<option value="viewer">Viewer</option>
<option value="contributor">Contributor</option>
<option value="projectadministrator">Project Administrator</option>
</select>
</div>
<div class="form-buttons">
<button name="cancel" class="cancel" ng-click="cancel()">Cancel</button>
<button name="submit" class="button">Save changes</button>
</div>
</form> |
templates/portfolio/pages/view.html | carlosvin/pricecalculator | {% extends 'layout.html' %}
{% block titlebody %}
<a href="{{ url_for('portfolio.view', name=portfolio.name, uid=portfolio.owner) }}">{{ portfolio.name }}</a>
{% endblock %}
{% block titlebodyextra %}
<small> ({{ portfolio.market }})</small>
{% endblock %}
{% if portfolio.owner==uid %}
{% block titlebodyactions %}
<a href="{{ url_for('portfolio.update',name=portfolio.name) }}" class="btn btn-primary btn-sm">Editar</a>
{% endblock %}
{% endif %}
{% block body %}
{% include 'portfolio/view.html' %}
{% endblock %}
|
docs/javadoc/apidocs/src-html/net/ljcomputing/database/factory/DatabaseConversionFactory.html | willmorejg/net.ljcomputing.database | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html lang="en">
<head>
<title>Source code</title>
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head>
<body>
<div class="sourceContainer">
<pre><span class="sourceLineNo">001</span>/**<a name="line.1"></a>
<span class="sourceLineNo">002</span> Copyright 2015, James G. Willmore<a name="line.2"></a>
<span class="sourceLineNo">003</span><a name="line.3"></a>
<span class="sourceLineNo">004</span> Licensed under the Apache License, Version 2.0 (the "License");<a name="line.4"></a>
<span class="sourceLineNo">005</span> you may not use this file except in compliance with the License.<a name="line.5"></a>
<span class="sourceLineNo">006</span> You may obtain a copy of the License at<a name="line.6"></a>
<span class="sourceLineNo">007</span><a name="line.7"></a>
<span class="sourceLineNo">008</span> http://www.apache.org/licenses/LICENSE-2.0<a name="line.8"></a>
<span class="sourceLineNo">009</span><a name="line.9"></a>
<span class="sourceLineNo">010</span> Unless required by applicable law or agreed to in writing, software<a name="line.10"></a>
<span class="sourceLineNo">011</span> distributed under the License is distributed on an "AS IS" BASIS,<a name="line.11"></a>
<span class="sourceLineNo">012</span> WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.<a name="line.12"></a>
<span class="sourceLineNo">013</span> See the License for the specific language governing permissions and<a name="line.13"></a>
<span class="sourceLineNo">014</span> limitations under the License.<a name="line.14"></a>
<span class="sourceLineNo">015</span> */<a name="line.15"></a>
<span class="sourceLineNo">016</span><a name="line.16"></a>
<span class="sourceLineNo">017</span>package net.ljcomputing.database.factory;<a name="line.17"></a>
<span class="sourceLineNo">018</span><a name="line.18"></a>
<span class="sourceLineNo">019</span>import net.ljcomputing.database.servcie.DatabaseConversionService;<a name="line.19"></a>
<span class="sourceLineNo">020</span>import net.ljcomputing.database.strategy.DatabaseConversionStrategyType;<a name="line.20"></a>
<span class="sourceLineNo">021</span><a name="line.21"></a>
<span class="sourceLineNo">022</span>/**<a name="line.22"></a>
<span class="sourceLineNo">023</span> * Database conversion service factory - creates a conversion service based upon<a name="line.23"></a>
<span class="sourceLineNo">024</span> * the strategy type requested.<a name="line.24"></a>
<span class="sourceLineNo">025</span> * <a name="line.25"></a>
<span class="sourceLineNo">026</span> * @author James G. Willmore<a name="line.26"></a>
<span class="sourceLineNo">027</span> *<a name="line.27"></a>
<span class="sourceLineNo">028</span> */<a name="line.28"></a>
<span class="sourceLineNo">029</span>public interface DatabaseConversionFactory {<a name="line.29"></a>
<span class="sourceLineNo">030</span><a name="line.30"></a>
<span class="sourceLineNo">031</span> /**<a name="line.31"></a>
<span class="sourceLineNo">032</span> * Creates a new DatabaseConversion object.<a name="line.32"></a>
<span class="sourceLineNo">033</span> *<a name="line.33"></a>
<span class="sourceLineNo">034</span> * @param conversionStrategy the conversion strategy<a name="line.34"></a>
<span class="sourceLineNo">035</span> * @return the database conversion service<a name="line.35"></a>
<span class="sourceLineNo">036</span> * @throws Exception the exception<a name="line.36"></a>
<span class="sourceLineNo">037</span> */<a name="line.37"></a>
<span class="sourceLineNo">038</span> public DatabaseConversionService createConversionService(<a name="line.38"></a>
<span class="sourceLineNo">039</span> DatabaseConversionStrategyType conversionStrategy) throws Exception;<a name="line.39"></a>
<span class="sourceLineNo">040</span>}<a name="line.40"></a>
</pre>
</div>
</body>
</html>
|
target/apidocs/org/jsoup/select/class-use/Evaluator.Attribute.html | E-lai/jsoup-proxy | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="zh">
<head>
<!-- Generated by javadoc (version 1.7.0_45) on Fri Nov 06 18:17:49 CST 2015 -->
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
<title>类 org.jsoup.select.Evaluator.Attribute的使用 (jsoup 1.8.4-SNAPSHOT API)</title>
<meta name="date" content="2015-11-06">
<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="\u7C7B org.jsoup.select.Evaluator.Attribute\u7684\u4F7F\u7528 (jsoup 1.8.4-SNAPSHOT API)";
}
//-->
</script>
<noscript>
<div>您的浏览器已禁用 JavaScript。</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="导航">
<li><a href="../../../../overview-summary.html">概览</a></li>
<li><a href="../package-summary.html">程序包</a></li>
<li><a href="../../../../org/jsoup/select/Evaluator.Attribute.html" title="org.jsoup.select中的类">类</a></li>
<li class="navBarCell1Rev">使用</li>
<li><a href="../package-tree.html">树</a></li>
<li><a href="../../../../deprecated-list.html">已过时</a></li>
<li><a href="../../../../index-all.html">索引</a></li>
<li><a href="../../../../help-doc.html">帮助</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>上一个</li>
<li>下一个</li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?org/jsoup/select/class-use/Evaluator.Attribute.html" target="_top">框架</a></li>
<li><a href="Evaluator.Attribute.html" target="_top">无框架</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../allclasses-noframe.html">所有类</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="类 org.jsoup.select.Evaluator.Attribute 的使用" class="title">类 org.jsoup.select.Evaluator.Attribute<br>的使用</h2>
</div>
<div class="classUseContainer">没有org.jsoup.select.Evaluator.Attribute的用法</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="跳过导航链接"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="导航">
<li><a href="../../../../overview-summary.html">概览</a></li>
<li><a href="../package-summary.html">程序包</a></li>
<li><a href="../../../../org/jsoup/select/Evaluator.Attribute.html" title="org.jsoup.select中的类">类</a></li>
<li class="navBarCell1Rev">使用</li>
<li><a href="../package-tree.html">树</a></li>
<li><a href="../../../../deprecated-list.html">已过时</a></li>
<li><a href="../../../../index-all.html">索引</a></li>
<li><a href="../../../../help-doc.html">帮助</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>上一个</li>
<li>下一个</li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?org/jsoup/select/class-use/Evaluator.Attribute.html" target="_top">框架</a></li>
<li><a href="Evaluator.Attribute.html" target="_top">无框架</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../allclasses-noframe.html">所有类</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 © 2009-2015 <a href="http://jonathanhedley.com/">Jonathan Hedley</a>. All Rights Reserved.</small></p>
</body>
</html>
|
assets/commits.html | google/git-appraise-web | <!DOCTYPE html>
<!--
Copyright 2016 Google Inc. All rights reserved.
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>
<link rel="import" href="https://raw.githubusercontent.com/Download/polymer-cdn/1.2.3.2/lib/polymer/polymer.html">
<link rel="import" href="https://raw.githubusercontent.com/Download/polymer-cdn/1.2.3.2/lib/paper-button/paper-button.html">
<link rel="import" href="https://raw.githubusercontent.com/Download/polymer-cdn/1.2.3.2/lib/paper-toolbar/paper-toolbar.html">
<link rel="import" href="https://raw.githubusercontent.com/Download/polymer-cdn/1.2.3.2/lib/paper-radio-button/paper-radio-button.html">
<link rel="import" href="/static/diff.html">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
</head>
<body>
<dom-module id="commits-list">
<template>
<style>
.lhs-only {
background-color:#e4e4e4;
}
.radio {
width: 20px;
}
.commit-list {
border-bottom: lightgrey;
border-bottom-style: solid;
border-bottom-width: thin;
}
paper-button {
font-size: inherit;
height: inherit;
}
</style>
<paper-toolbar>
<i class="material-icons" on-tap="toggleHidden">{{toggleIcon}}</i>
<span class="title">Changes:</span>
<paper-button raised on-tap="toggleInline">{{inlineButtonTitle}}</paper-button>
</paper-toolbar>
<table class="commit-list" hidden$="{{hidden}}">
<template is="dom-repeat" items="{{commits}}">
<tr class$="{{item.style}}">
<td>{{item.name}}</td>
<td><friendly-timestamp timestamp="{{item.details.time}}"></friendly-timestamp></td>
<td class="author">{{item.details.authorEmail}}</td>
<td class="summary">{{item.details.summary}}</td>
<td class="radio">
<paper-radio-button name="lhs"
checked="{{item.isLhs}}"
hidden$="{{item.hideLeftHandSelect}}"
disabled="true">
</paper-radio-button>
</td>
<td class="radio">
<paper-radio-button name="rhs"
checked="{{item.isRhs}}"
hidden$="{{item.hideRightHandSelect}}"
disabled="true">
</paper-radio-button>
</td>
</tr>
</template>
</table>
<unified-diff summary="{{diff}}" inline="{{inline}}" hidden$="{{hidden}}"></unified-diff>
</template>
<script>
function friendlyCommits(review, lhs, rhs, commits) {
rhsCommits = {}
function addToRhs(commit) {
commit.style = "both";
commit.showRhs = true;
commit.hideRightHandSelect = false;
rhsCommits[commit.id] = commit;
}
for (var i in commits) {
var commit = commits[i];
commit.name = commit.id.substring(0,6);
commit.style = "lhs-only";
commit.hideLeftHandSelect = false;
commit.hideRightHandSelect = true;
commit.isLhs = (commit.id == lhs);
commit.isRhs = (commit.id == rhs);
if (commit.id == review) {
addToRhs(commit);
} else {
for (var p in commit.details.parents) {
var parent = commit.details.parents[p];
if (parent in rhsCommits) {
addToRhs(commit);
}
}
}
}
commits.reverse();
commits[0].style = "rhs-only";
commits[0].hideLeftHandSelect = true;
return commits
}
Polymer({
is: 'commits-list',
properties: {
review: {
type: String
},
diff: {
type: Object,
observer: "_updateDiff"
},
leftHandSide: {
type: String,
value: ""
},
rightHandSide: {
type: String,
value: ""
},
commits: {
type: Array,
value: []
},
toggleIcon: {
type: String,
value: "indeterminate_check_box"
},
hidden: {
type: Boolean,
value: false
},
inline: {
type: Boolean,
value: false
},
inlineButtonTitle: {
type: String,
value: "Display Inline"
}
},
toggleHidden: function() {
this.hidden = !this.hidden;
if (this.hidden) {
this.toggleIcon = "add_box"
} else {
this.toggleIcon = "indeterminate_check_box"
}
},
toggleInline: function() {
this.inline = !this.inline;
this.inlineButtonTitle = this.inline? "Display Side-by-Side" : "Display Inline";
},
_updateDiff: function() {
if (this.diff && this.diff.reviewCommits) {
this.leftHandSide = this.diff.leftHandSide;
this.rightHandSide = this.diff.rightHandSide;
this.commits = friendlyCommits(this.review, this.leftHandSide,
this.rightHandSide,
this.diff.reviewCommits);
}
}
});
</script>
</dom-module>
</body>
</html>
|
css/bootstrap.css | lylynguyen/lylynguyen.github.io | /*!
* Bootstrap v3.3.6 (http://getbootstrap.com)
* Copyright 2011-2015 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
font-family: sans-serif;
-webkit-text-size-adjust: 100%;
-ms-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 {
margin: .67em 0;
font-size: 2em;
}
mark {
color: #000;
background: #ff0;
}
small {
font-size: 80%;
}
sub,
sup {
position: relative;
font-size: 75%;
line-height: 0;
vertical-align: baseline;
}
sup {
top: -.5em;
}
sub {
bottom: -.25em;
}
img {
border: 0;
}
svg:not(:root) {
overflow: hidden;
}
figure {
margin: 1em 40px;
}
hr {
height: 0;
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;
}
pre {
overflow: auto;
}
code,
kbd,
pre,
samp {
font-family: monospace, monospace;
font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
margin: 0;
font: inherit;
color: inherit;
}
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 {
padding: 0;
border: 0;
}
input {
line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
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-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;
-webkit-appearance: textfield;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
-webkit-appearance: none;
}
fieldset {
padding: .35em .625em .75em;
margin: 0 2px;
border: 1px solid #c0c0c0;
}
legend {
padding: 0;
border: 0;
}
textarea {
overflow: auto;
}
optgroup {
font-weight: bold;
}
table {
border-spacing: 0;
border-collapse: collapse;
}
td,
th {
padding: 0;
}
/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
*,
*:before,
*:after {
color: #000 !important;
text-shadow: none !important;
background: transparent !important;
-webkit-box-shadow: none !important;
box-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/glyphicons-halflings-regular.eot');
src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/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: rgba(0, 0, 0, 0);
}
body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 14px;
line-height: 1.42857143;
color: #333;
background-color: #fff;
}
input,
button,
select,
textarea {
font-family: inherit;
font-size: inherit;
line-height: inherit;
}
a {
color: #337ab7;
text-decoration: none;
}
a:hover,
a:focus {
color: #23527c;
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,
.thumbnail > img,
.thumbnail a > img,
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
display: block;
max-width: 100%;
height: auto;
}
.img-rounded {
border-radius: 6px;
}
.img-thumbnail {
display: inline-block;
max-width: 100%;
height: auto;
padding: 4px;
line-height: 1.42857143;
background-color: #fff;
border: 1px solid #ddd;
border-radius: 4px;
-webkit-transition: all .2s ease-in-out;
-o-transition: all .2s ease-in-out;
transition: all .2s ease-in-out;
}
.img-circle {
border-radius: 50%;
height: 50px;
width: 50px;
}
hr {
margin-top: 20px;
margin-bottom: 20px;
border: 0;
border-top: 1px solid #eee;
}
.sr-only {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
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: inherit;
font-weight: 500;
line-height: 1.1;
color: inherit;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small,
.h1 small,
.h2 small,
.h3 small,
.h4 small,
.h5 small,
.h6 small,
h1 .small,
h2 .small,
h3 .small,
h4 .small,
h5 .small,
h6 .small,
.h1 .small,
.h2 .small,
.h3 .small,
.h4 .small,
.h5 .small,
.h6 .small {
font-weight: normal;
line-height: 1;
color: #777;
}
h1,
.h1,
h2,
.h2,
h3,
.h3 {
margin-top: 20px;
margin-bottom: 10px;
}
h1 small,
.h1 small,
h2 small,
.h2 small,
h3 small,
.h3 small,
h1 .small,
.h1 .small,
h2 .small,
.h2 .small,
h3 .small,
.h3 .small {
font-size: 65%;
}
h4,
.h4,
h5,
.h5,
h6,
.h6 {
margin-top: 10px;
margin-bottom: 10px;
}
h4 small,
.h4 small,
h5 small,
.h5 small,
h6 small,
.h6 small,
h4 .small,
.h4 .small,
h5 .small,
.h5 .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 {
padding: .2em;
background-color: #fcf8e3;
}
.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 {
text-transform: uppercase;
}
.text-capitalize {
text-transform: capitalize;
}
.text-muted {
color: #777;
}
.text-primary {
color: #337ab7;
}
a.text-primary:hover,
a.text-primary:focus {
color: #286090;
}
.text-success {
color: #3c763d;
}
a.text-success:hover,
a.text-success:focus {
color: #2b542c;
}
.text-info {
color: #31708f;
}
a.text-info:hover,
a.text-info:focus {
color: #245269;
}
.text-warning {
color: #8a6d3b;
}
a.text-warning:hover,
a.text-warning:focus {
color: #66512c;
}
.text-danger {
color: #a94442;
}
a.text-danger:hover,
a.text-danger:focus {
color: #843534;
}
.bg-primary {
color: #fff;
background-color: #337ab7;
}
a.bg-primary:hover,
a.bg-primary:focus {
background-color: #286090;
}
.bg-success {
background-color: #dff0d8;
}
a.bg-success:hover,
a.bg-success:focus {
background-color: #c1e2b3;
}
.bg-info {
background-color: #d9edf7;
}
a.bg-info:hover,
a.bg-info:focus {
background-color: #afd9ee;
}
.bg-warning {
background-color: #fcf8e3;
}
a.bg-warning:hover,
a.bg-warning:focus {
background-color: #f7ecb5;
}
.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 #eee;
}
ul,
ol {
margin-top: 0;
margin-bottom: 10px;
}
ul ul,
ol ul,
ul ol,
ol ol {
margin-bottom: 0;
}
.list-unstyled {
padding-left: 0;
list-style: none;
}
.list-inline {
padding-left: 0;
margin-left: -5px;
list-style: none;
}
.list-inline > li {
display: inline-block;
padding-right: 5px;
padding-left: 5px;
}
dl {
margin-top: 0;
margin-bottom: 20px;
}
dt,
dd {
line-height: 1.42857143;
}
dt {
font-weight: bold;
}
dd {
margin-left: 0;
}
@media (min-width: 768px) {
.dl-horizontal dt {
float: left;
width: 160px;
overflow: hidden;
clear: left;
text-align: right;
text-overflow: ellipsis;
white-space: nowrap;
}
.dl-horizontal dd {
margin-left: 180px;
}
}
abbr[title],
abbr[data-original-title] {
cursor: help;
border-bottom: 1px dotted #777;
}
.initialism {
font-size: 90%;
text-transform: uppercase;
}
blockquote {
padding: 10px 20px;
margin: 0 0 20px;
font-size: 17.5px;
border-left: 5px solid #eee;
}
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.42857143;
color: #777;
}
blockquote footer:before,
blockquote small:before,
blockquote .small:before {
content: '\2014 \00A0';
}
.blockquote-reverse,
blockquote.pull-right {
padding-right: 15px;
padding-left: 0;
text-align: right;
border-right: 5px solid #eee;
border-left: 0;
}
.blockquote-reverse footer:before,
blockquote.pull-right footer:before,
.blockquote-reverse small:before,
blockquote.pull-right small:before,
.blockquote-reverse .small:before,
blockquote.pull-right .small:before {
content: '';
}
.blockquote-reverse footer:after,
blockquote.pull-right footer:after,
.blockquote-reverse small:after,
blockquote.pull-right small:after,
.blockquote-reverse .small:after,
blockquote.pull-right .small:after {
content: '\00A0 \2014';
}
address {
margin-bottom: 20px;
font-style: normal;
line-height: 1.42857143;
}
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;
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25);
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25);
}
kbd kbd {
padding: 0;
font-size: 100%;
font-weight: bold;
-webkit-box-shadow: none;
box-shadow: none;
}
pre {
display: block;
padding: 9.5px;
margin: 0 0 10px;
font-size: 13px;
line-height: 1.42857143;
color: #333;
word-break: break-all;
word-wrap: break-word;
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 {
padding-right: 15px;
padding-left: 15px;
margin-right: auto;
margin-left: auto;
}
@media (min-width: 768px) {
.container {
width: 750px;
}
}
@media (min-width: 992px) {
.container {
width: 970px;
}
}
@media (min-width: 1200px) {
.container {
width: 1170px;
}
}
.container-fluid {
padding-right: 15px;
padding-left: 15px;
margin-right: auto;
margin-left: auto;
}
.row {
margin-right: -15px;
margin-left: -15px;
}
.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-right: 15px;
padding-left: 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-12 {
width: 100%;
}
.col-xs-11 {
width: 91.66666667%;
}
.col-xs-10 {
width: 83.33333333%;
}
.col-xs-9 {
width: 75%;
}
.col-xs-8 {
width: 66.66666667%;
}
.col-xs-7 {
width: 58.33333333%;
}
.col-xs-6 {
width: 50%;
}
.col-xs-5 {
width: 41.66666667%;
}
.col-xs-4 {
width: 33.33333333%;
}
.col-xs-3 {
width: 25%;
}
.col-xs-2 {
width: 16.66666667%;
}
.col-xs-1 {
width: 8.33333333%;
}
.col-xs-pull-12 {
right: 100%;
}
.col-xs-pull-11 {
right: 91.66666667%;
}
.col-xs-pull-10 {
right: 83.33333333%;
}
.col-xs-pull-9 {
right: 75%;
}
.col-xs-pull-8 {
right: 66.66666667%;
}
.col-xs-pull-7 {
right: 58.33333333%;
}
.col-xs-pull-6 {
right: 50%;
}
.col-xs-pull-5 {
right: 41.66666667%;
}
.col-xs-pull-4 {
right: 33.33333333%;
}
.col-xs-pull-3 {
right: 25%;
}
.col-xs-pull-2 {
right: 16.66666667%;
}
.col-xs-pull-1 {
right: 8.33333333%;
}
.col-xs-pull-0 {
right: auto;
}
.col-xs-push-12 {
left: 100%;
}
.col-xs-push-11 {
left: 91.66666667%;
}
.col-xs-push-10 {
left: 83.33333333%;
}
.col-xs-push-9 {
left: 75%;
}
.col-xs-push-8 {
left: 66.66666667%;
}
.col-xs-push-7 {
left: 58.33333333%;
}
.col-xs-push-6 {
left: 50%;
}
.col-xs-push-5 {
left: 41.66666667%;
}
.col-xs-push-4 {
left: 33.33333333%;
}
.col-xs-push-3 {
left: 25%;
}
.col-xs-push-2 {
left: 16.66666667%;
}
.col-xs-push-1 {
left: 8.33333333%;
}
.col-xs-push-0 {
left: auto;
}
.col-xs-offset-12 {
margin-left: 100%;
}
.col-xs-offset-11 {
margin-left: 91.66666667%;
}
.col-xs-offset-10 {
margin-left: 83.33333333%;
}
.col-xs-offset-9 {
margin-left: 75%;
}
.col-xs-offset-8 {
margin-left: 66.66666667%;
}
.col-xs-offset-7 {
margin-left: 58.33333333%;
}
.col-xs-offset-6 {
margin-left: 50%;
}
.col-xs-offset-5 {
margin-left: 41.66666667%;
}
.col-xs-offset-4 {
margin-left: 33.33333333%;
}
.col-xs-offset-3 {
margin-left: 25%;
}
.col-xs-offset-2 {
margin-left: 16.66666667%;
}
.col-xs-offset-1 {
margin-left: 8.33333333%;
}
.col-xs-offset-0 {
margin-left: 0;
}
@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-12 {
width: 100%;
}
.col-sm-11 {
width: 91.66666667%;
}
.col-sm-10 {
width: 83.33333333%;
}
.col-sm-9 {
width: 75%;
}
.col-sm-8 {
width: 66.66666667%;
}
.col-sm-7 {
width: 58.33333333%;
}
.col-sm-6 {
width: 50%;
}
.col-sm-5 {
width: 41.66666667%;
}
.col-sm-4 {
width: 33.33333333%;
}
.col-sm-3 {
width: 25%;
}
.col-sm-2 {
width: 16.66666667%;
}
.col-sm-1 {
width: 8.33333333%;
}
.col-sm-pull-12 {
right: 100%;
}
.col-sm-pull-11 {
right: 91.66666667%;
}
.col-sm-pull-10 {
right: 83.33333333%;
}
.col-sm-pull-9 {
right: 75%;
}
.col-sm-pull-8 {
right: 66.66666667%;
}
.col-sm-pull-7 {
right: 58.33333333%;
}
.col-sm-pull-6 {
right: 50%;
}
.col-sm-pull-5 {
right: 41.66666667%;
}
.col-sm-pull-4 {
right: 33.33333333%;
}
.col-sm-pull-3 {
right: 25%;
}
.col-sm-pull-2 {
right: 16.66666667%;
}
.col-sm-pull-1 {
right: 8.33333333%;
}
.col-sm-pull-0 {
right: auto;
}
.col-sm-push-12 {
left: 100%;
}
.col-sm-push-11 {
left: 91.66666667%;
}
.col-sm-push-10 {
left: 83.33333333%;
}
.col-sm-push-9 {
left: 75%;
}
.col-sm-push-8 {
left: 66.66666667%;
}
.col-sm-push-7 {
left: 58.33333333%;
}
.col-sm-push-6 {
left: 50%;
}
.col-sm-push-5 {
left: 41.66666667%;
}
.col-sm-push-4 {
left: 33.33333333%;
}
.col-sm-push-3 {
left: 25%;
}
.col-sm-push-2 {
left: 16.66666667%;
}
.col-sm-push-1 {
left: 8.33333333%;
}
.col-sm-push-0 {
left: auto;
}
.col-sm-offset-12 {
margin-left: 100%;
}
.col-sm-offset-11 {
margin-left: 91.66666667%;
}
.col-sm-offset-10 {
margin-left: 83.33333333%;
}
.col-sm-offset-9 {
margin-left: 75%;
}
.col-sm-offset-8 {
margin-left: 66.66666667%;
}
.col-sm-offset-7 {
margin-left: 58.33333333%;
}
.col-sm-offset-6 {
margin-left: 50%;
}
.col-sm-offset-5 {
margin-left: 41.66666667%;
}
.col-sm-offset-4 {
margin-left: 33.33333333%;
}
.col-sm-offset-3 {
margin-left: 25%;
}
.col-sm-offset-2 {
margin-left: 16.66666667%;
}
.col-sm-offset-1 {
margin-left: 8.33333333%;
}
.col-sm-offset-0 {
margin-left: 0;
}
}
@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-12 {
width: 100%;
}
.col-md-11 {
width: 91.66666667%;
}
.col-md-10 {
width: 83.33333333%;
}
.col-md-9 {
width: 75%;
}
.col-md-8 {
width: 66.66666667%;
}
.col-md-7 {
width: 58.33333333%;
}
.col-md-6 {
width: 50%;
}
.col-md-5 {
width: 41.66666667%;
}
.col-md-4 {
width: 33.33333333%;
}
.col-md-3 {
width: 25%;
}
.col-md-2 {
width: 16.66666667%;
}
.col-md-1 {
width: 8.33333333%;
}
.col-md-pull-12 {
right: 100%;
}
.col-md-pull-11 {
right: 91.66666667%;
}
.col-md-pull-10 {
right: 83.33333333%;
}
.col-md-pull-9 {
right: 75%;
}
.col-md-pull-8 {
right: 66.66666667%;
}
.col-md-pull-7 {
right: 58.33333333%;
}
.col-md-pull-6 {
right: 50%;
}
.col-md-pull-5 {
right: 41.66666667%;
}
.col-md-pull-4 {
right: 33.33333333%;
}
.col-md-pull-3 {
right: 25%;
}
.col-md-pull-2 {
right: 16.66666667%;
}
.col-md-pull-1 {
right: 8.33333333%;
}
.col-md-pull-0 {
right: auto;
}
.col-md-push-12 {
left: 100%;
}
.col-md-push-11 {
left: 91.66666667%;
}
.col-md-push-10 {
left: 83.33333333%;
}
.col-md-push-9 {
left: 75%;
}
.col-md-push-8 {
left: 66.66666667%;
}
.col-md-push-7 {
left: 58.33333333%;
}
.col-md-push-6 {
left: 50%;
}
.col-md-push-5 {
left: 41.66666667%;
}
.col-md-push-4 {
left: 33.33333333%;
}
.col-md-push-3 {
left: 25%;
}
.col-md-push-2 {
left: 16.66666667%;
}
.col-md-push-1 {
left: 8.33333333%;
}
.col-md-push-0 {
left: auto;
}
.col-md-offset-12 {
margin-left: 100%;
}
.col-md-offset-11 {
margin-left: 91.66666667%;
}
.col-md-offset-10 {
margin-left: 83.33333333%;
}
.col-md-offset-9 {
margin-left: 75%;
}
.col-md-offset-8 {
margin-left: 66.66666667%;
}
.col-md-offset-7 {
margin-left: 58.33333333%;
}
.col-md-offset-6 {
margin-left: 50%;
}
.col-md-offset-5 {
margin-left: 41.66666667%;
}
.col-md-offset-4 {
margin-left: 33.33333333%;
}
.col-md-offset-3 {
margin-left: 25%;
}
.col-md-offset-2 {
margin-left: 16.66666667%;
}
.col-md-offset-1 {
margin-left: 8.33333333%;
}
.col-md-offset-0 {
margin-left: 0;
}
}
@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-12 {
width: 100%;
}
.col-lg-11 {
width: 91.66666667%;
}
.col-lg-10 {
width: 83.33333333%;
}
.col-lg-9 {
width: 75%;
}
.col-lg-8 {
width: 66.66666667%;
}
.col-lg-7 {
width: 58.33333333%;
}
.col-lg-6 {
width: 50%;
}
.col-lg-5 {
width: 41.66666667%;
}
.col-lg-4 {
width: 33.33333333%;
}
.col-lg-3 {
width: 25%;
}
.col-lg-2 {
width: 16.66666667%;
}
.col-lg-1 {
width: 8.33333333%;
}
.col-lg-pull-12 {
right: 100%;
}
.col-lg-pull-11 {
right: 91.66666667%;
}
.col-lg-pull-10 {
right: 83.33333333%;
}
.col-lg-pull-9 {
right: 75%;
}
.col-lg-pull-8 {
right: 66.66666667%;
}
.col-lg-pull-7 {
right: 58.33333333%;
}
.col-lg-pull-6 {
right: 50%;
}
.col-lg-pull-5 {
right: 41.66666667%;
}
.col-lg-pull-4 {
right: 33.33333333%;
}
.col-lg-pull-3 {
right: 25%;
}
.col-lg-pull-2 {
right: 16.66666667%;
}
.col-lg-pull-1 {
right: 8.33333333%;
}
.col-lg-pull-0 {
right: auto;
}
.col-lg-push-12 {
left: 100%;
}
.col-lg-push-11 {
left: 91.66666667%;
}
.col-lg-push-10 {
left: 83.33333333%;
}
.col-lg-push-9 {
left: 75%;
}
.col-lg-push-8 {
left: 66.66666667%;
}
.col-lg-push-7 {
left: 58.33333333%;
}
.col-lg-push-6 {
left: 50%;
}
.col-lg-push-5 {
left: 41.66666667%;
}
.col-lg-push-4 {
left: 33.33333333%;
}
.col-lg-push-3 {
left: 25%;
}
.col-lg-push-2 {
left: 16.66666667%;
}
.col-lg-push-1 {
left: 8.33333333%;
}
.col-lg-push-0 {
left: auto;
}
.col-lg-offset-12 {
margin-left: 100%;
}
.col-lg-offset-11 {
margin-left: 91.66666667%;
}
.col-lg-offset-10 {
margin-left: 83.33333333%;
}
.col-lg-offset-9 {
margin-left: 75%;
}
.col-lg-offset-8 {
margin-left: 66.66666667%;
}
.col-lg-offset-7 {
margin-left: 58.33333333%;
}
.col-lg-offset-6 {
margin-left: 50%;
}
.col-lg-offset-5 {
margin-left: 41.66666667%;
}
.col-lg-offset-4 {
margin-left: 33.33333333%;
}
.col-lg-offset-3 {
margin-left: 25%;
}
.col-lg-offset-2 {
margin-left: 16.66666667%;
}
.col-lg-offset-1 {
margin-left: 8.33333333%;
}
.col-lg-offset-0 {
margin-left: 0;
}
}
table {
background-color: transparent;
}
caption {
padding-top: 8px;
padding-bottom: 8px;
color: #777;
text-align: left;
}
th {
text-align: left;
}
.table {
width: 100%;
max-width: 100%;
margin-bottom: 20px;
}
.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
padding: 8px;
line-height: 1.42857143;
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 > colgroup + thead > tr:first-child > th,
.table > thead:first-child > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > td,
.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 > tbody > tr > th,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > td {
padding: 5px;
}
.table-bordered {
border: 1px solid #ddd;
}
.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
border: 1px solid #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;
display: table-column;
float: none;
}
table td[class*="col-"],
table th[class*="col-"] {
position: static;
display: table-cell;
float: none;
}
.table > thead > tr > td.active,
.table > tbody > tr > td.active,
.table > tfoot > tr > td.active,
.table > thead > tr > th.active,
.table > tbody > tr > th.active,
.table > tfoot > tr > th.active,
.table > thead > tr.active > td,
.table > tbody > tr.active > td,
.table > tfoot > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr.active > th,
.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 > tbody > tr > td.success,
.table > tfoot > tr > td.success,
.table > thead > tr > th.success,
.table > tbody > tr > th.success,
.table > tfoot > tr > th.success,
.table > thead > tr.success > td,
.table > tbody > tr.success > td,
.table > tfoot > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr.success > th,
.table > tfoot > tr.success > th {
background-color: #dff0d8;
}
.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: #d0e9c6;
}
.table > thead > tr > td.info,
.table > tbody > tr > td.info,
.table > tfoot > tr > td.info,
.table > thead > tr > th.info,
.table > tbody > tr > th.info,
.table > tfoot > tr > th.info,
.table > thead > tr.info > td,
.table > tbody > tr.info > td,
.table > tfoot > tr.info > td,
.table > thead > tr.info > th,
.table > tbody > tr.info > th,
.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 > tbody > tr > td.warning,
.table > tfoot > tr > td.warning,
.table > thead > tr > th.warning,
.table > tbody > tr > th.warning,
.table > tfoot > tr > th.warning,
.table > thead > tr.warning > td,
.table > tbody > tr.warning > td,
.table > tfoot > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr.warning > th,
.table > tfoot > tr.warning > th {
background-color: #fcf8e3;
}
.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: #faf2cc;
}
.table > thead > tr > td.danger,
.table > tbody > tr > td.danger,
.table > tfoot > tr > td.danger,
.table > thead > tr > th.danger,
.table > tbody > tr > th.danger,
.table > tfoot > tr > th.danger,
.table > thead > tr.danger > td,
.table > tbody > tr.danger > td,
.table > tfoot > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr.danger > th,
.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 {
min-height: .01%;
overflow-x: auto;
}
@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 > tbody > tr > th,
.table-responsive > .table > tfoot > tr > th,
.table-responsive > .table > thead > tr > td,
.table-responsive > .table > tbody > tr > td,
.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 > tbody > tr > th:first-child,
.table-responsive > .table-bordered > tfoot > tr > th:first-child,
.table-responsive > .table-bordered > thead > tr > td:first-child,
.table-responsive > .table-bordered > tbody > tr > td: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 > tbody > tr > th:last-child,
.table-responsive > .table-bordered > tfoot > tr > th:last-child,
.table-responsive > .table-bordered > thead > tr > td:last-child,
.table-responsive > .table-bordered > tbody > tr > td: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 > tfoot > tr:last-child > th,
.table-responsive > .table-bordered > tbody > tr:last-child > td,
.table-responsive > .table-bordered > tfoot > tr:last-child > td {
border-bottom: 0;
}
}
fieldset {
min-width: 0;
padding: 0;
margin: 0;
border: 0;
}
legend {
display: block;
width: 100%;
padding: 0;
margin-bottom: 20px;
font-size: 21px;
line-height: inherit;
color: #333;
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.42857143;
color: #555;
}
.form-control {
display: block;
width: 100%;
height: 34px;
padding: 6px 12px;
font-size: 14px;
line-height: 1.42857143;
color: #555;
background-color: #fff;
background-image: none;
border: 1px solid #ccc;
border-radius: 4px;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
-webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
-o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.form-control:focus {
border-color: #66afe9;
outline: 0;
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .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 {
background-color: transparent;
border: 0;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
background-color: #eee;
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[type="time"].input-sm,
input[type="datetime-local"].input-sm,
input[type="month"].input-sm,
.input-group-sm input[type="date"],
.input-group-sm input[type="time"],
.input-group-sm input[type="datetime-local"],
.input-group-sm input[type="month"] {
line-height: 30px;
}
input[type="date"].input-lg,
input[type="time"].input-lg,
input[type="datetime-local"].input-lg,
input[type="month"].input-lg,
.input-group-lg input[type="date"],
.input-group-lg input[type="time"],
.input-group-lg input[type="datetime-local"],
.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-top: 4px \9;
margin-left: -20px;
}
.radio + .radio,
.checkbox + .checkbox {
margin-top: -5px;
}
.radio-inline,
.checkbox-inline {
position: relative;
display: inline-block;
padding-left: 20px;
margin-bottom: 0;
font-weight: normal;
vertical-align: middle;
cursor: pointer;
}
.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
margin-top: 0;
margin-left: 10px;
}
input[type="radio"][disabled],
input[type="checkbox"][disabled],
input[type="radio"].disabled,
input[type="checkbox"].disabled,
fieldset[disabled] input[type="radio"],
fieldset[disabled] input[type="checkbox"] {
cursor: not-allowed;
}
.radio-inline.disabled,
.checkbox-inline.disabled,
fieldset[disabled] .radio-inline,
fieldset[disabled] .checkbox-inline {
cursor: not-allowed;
}
.radio.disabled label,
.checkbox.disabled label,
fieldset[disabled] .radio label,
fieldset[disabled] .checkbox label {
cursor: not-allowed;
}
.form-control-static {
min-height: 34px;
padding-top: 7px;
padding-bottom: 7px;
margin-bottom: 0;
}
.form-control-static.input-lg,
.form-control-static.input-sm {
padding-right: 0;
padding-left: 0;
}
.input-sm {
height: 30px;
padding: 5px 10px;
font-size: 12px;
line-height: 1.5;
border-radius: 3px;
}
select.input-sm {
height: 30px;
line-height: 30px;
}
textarea.input-sm,
select[multiple].input-sm {
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 {
height: 46px;
padding: 10px 16px;
font-size: 18px;
line-height: 1.3333333;
border-radius: 6px;
}
select.input-lg {
height: 46px;
line-height: 46px;
}
textarea.input-lg,
select[multiple].input-lg {
height: auto;
}
.form-group-lg .form-control {
height: 46px;
padding: 10px 16px;
font-size: 18px;
line-height: 1.3333333;
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.3333333;
}
.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-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-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: #3c763d;
}
.has-success .form-control {
border-color: #3c763d;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}
.has-success .form-control:focus {
border-color: #2b542c;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;
}
.has-success .input-group-addon {
color: #3c763d;
background-color: #dff0d8;
border-color: #3c763d;
}
.has-success .form-control-feedback {
color: #3c763d;
}
.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: #8a6d3b;
}
.has-warning .form-control {
border-color: #8a6d3b;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}
.has-warning .form-control:focus {
border-color: #66512c;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b;
}
.has-warning .input-group-addon {
color: #8a6d3b;
background-color: #fcf8e3;
border-color: #8a6d3b;
}
.has-warning .form-control-feedback {
color: #8a6d3b;
}
.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: #a94442;
}
.has-error .form-control {
border-color: #a94442;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}
.has-error .form-control:focus {
border-color: #843534;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
}
.has-error .input-group-addon {
color: #a94442;
background-color: #f2dede;
border-color: #a94442;
}
.has-error .form-control-feedback {
color: #a94442;
}
.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 {
padding-top: 7px;
margin-top: 0;
margin-bottom: 0;
}
.form-horizontal .radio,
.form-horizontal .checkbox {
min-height: 27px;
}
.form-horizontal .form-group {
margin-right: -15px;
margin-left: -15px;
}
@media (min-width: 768px) {
.form-horizontal .control-label {
padding-top: 7px;
margin-bottom: 0;
text-align: right;
}
}
.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;
padding: 6px 12px;
margin-bottom: 0;
font-size: 14px;
font-weight: normal;
line-height: 1.42857143;
text-align: center;
white-space: nowrap;
vertical-align: middle;
-ms-touch-action: manipulation;
touch-action: manipulation;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
background-image: none;
border: 1px solid transparent;
border-radius: 4px;
}
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.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 {
background-image: none;
outline: 0;
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
}
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
cursor: not-allowed;
filter: alpha(opacity=65);
-webkit-box-shadow: none;
box-shadow: none;
opacity: .65;
}
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 > .dropdown-toggle.btn-default {
color: #333;
background-color: #e6e6e6;
border-color: #adadad;
}
.btn-default:active:hover,
.btn-default.active:hover,
.open > .dropdown-toggle.btn-default:hover,
.btn-default:active:focus,
.btn-default.active:focus,
.open > .dropdown-toggle.btn-default:focus,
.btn-default:active.focus,
.btn-default.active.focus,
.open > .dropdown-toggle.btn-default.focus {
color: #333;
background-color: #d4d4d4;
border-color: #8c8c8c;
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
background-image: none;
}
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled.focus,
.btn-default[disabled].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: #337ab7;
border-color: #2e6da4;
}
.btn-primary:focus,
.btn-primary.focus {
color: #fff;
background-color: #286090;
border-color: #122b40;
}
.btn-primary:hover {
color: #fff;
background-color: #286090;
border-color: #204d74;
}
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
color: #fff;
background-color: #286090;
border-color: #204d74;
}
.btn-primary:active:hover,
.btn-primary.active:hover,
.open > .dropdown-toggle.btn-primary:hover,
.btn-primary:active:focus,
.btn-primary.active:focus,
.open > .dropdown-toggle.btn-primary:focus,
.btn-primary:active.focus,
.btn-primary.active.focus,
.open > .dropdown-toggle.btn-primary.focus {
color: #fff;
background-color: #204d74;
border-color: #122b40;
}
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
background-image: none;
}
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled.focus,
.btn-primary[disabled].focus,
fieldset[disabled] .btn-primary.focus {
background-color: #337ab7;
border-color: #2e6da4;
}
.btn-primary .badge {
color: #337ab7;
background-color: #fff;
}
.btn-success {
color: #fff;
background-color: #5cb85c;
border-color: #4cae4c;
}
.btn-success:focus,
.btn-success.focus {
color: #fff;
background-color: #449d44;
border-color: #255625;
}
.btn-success:hover {
color: #fff;
background-color: #449d44;
border-color: #398439;
}
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
color: #fff;
background-color: #449d44;
border-color: #398439;
}
.btn-success:active:hover,
.btn-success.active:hover,
.open > .dropdown-toggle.btn-success:hover,
.btn-success:active:focus,
.btn-success.active:focus,
.open > .dropdown-toggle.btn-success:focus,
.btn-success:active.focus,
.btn-success.active.focus,
.open > .dropdown-toggle.btn-success.focus {
color: #fff;
background-color: #398439;
border-color: #255625;
}
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
background-image: none;
}
.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled.focus,
.btn-success[disabled].focus,
fieldset[disabled] .btn-success.focus {
background-color: #5cb85c;
border-color: #4cae4c;
}
.btn-success .badge {
color: #5cb85c;
background-color: #fff;
}
.btn-info {
color: #fff;
background-color: #5bc0de;
border-color: #46b8da;
}
.btn-info:focus,
.btn-info.focus {
color: #fff;
background-color: #31b0d5;
border-color: #1b6d85;
}
.btn-info:hover {
color: #fff;
background-color: #31b0d5;
border-color: #269abc;
}
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
color: #fff;
background-color: #31b0d5;
border-color: #269abc;
}
.btn-info:active:hover,
.btn-info.active:hover,
.open > .dropdown-toggle.btn-info:hover,
.btn-info:active:focus,
.btn-info.active:focus,
.open > .dropdown-toggle.btn-info:focus,
.btn-info:active.focus,
.btn-info.active.focus,
.open > .dropdown-toggle.btn-info.focus {
color: #fff;
background-color: #269abc;
border-color: #1b6d85;
}
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
background-image: none;
}
.btn-info.disabled:hover,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info:hover,
.btn-info.disabled:focus,
.btn-info[disabled]:focus,
fieldset[disabled] .btn-info:focus,
.btn-info.disabled.focus,
.btn-info[disabled].focus,
fieldset[disabled] .btn-info.focus {
background-color: #5bc0de;
border-color: #46b8da;
}
.btn-info .badge {
color: #5bc0de;
background-color: #fff;
}
.btn-warning {
color: #fff;
background-color: #f0ad4e;
border-color: #eea236;
}
.btn-warning:focus,
.btn-warning.focus {
color: #fff;
background-color: #ec971f;
border-color: #985f0d;
}
.btn-warning:hover {
color: #fff;
background-color: #ec971f;
border-color: #d58512;
}
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
color: #fff;
background-color: #ec971f;
border-color: #d58512;
}
.btn-warning:active:hover,
.btn-warning.active:hover,
.open > .dropdown-toggle.btn-warning:hover,
.btn-warning:active:focus,
.btn-warning.active:focus,
.open > .dropdown-toggle.btn-warning:focus,
.btn-warning:active.focus,
.btn-warning.active.focus,
.open > .dropdown-toggle.btn-warning.focus {
color: #fff;
background-color: #d58512;
border-color: #985f0d;
}
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
background-image: none;
}
.btn-warning.disabled:hover,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning:hover,
.btn-warning.disabled:focus,
.btn-warning[disabled]:focus,
fieldset[disabled] .btn-warning:focus,
.btn-warning.disabled.focus,
.btn-warning[disabled].focus,
fieldset[disabled] .btn-warning.focus {
background-color: #f0ad4e;
border-color: #eea236;
}
.btn-warning .badge {
color: #f0ad4e;
background-color: #fff;
}
.btn-danger {
color: #fff;
background-color: #d9534f;
border-color: #d43f3a;
}
.btn-danger:focus,
.btn-danger.focus {
color: #fff;
background-color: #c9302c;
border-color: #761c19;
}
.btn-danger:hover {
color: #fff;
background-color: #c9302c;
border-color: #ac2925;
}
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
color: #fff;
background-color: #c9302c;
border-color: #ac2925;
}
.btn-danger:active:hover,
.btn-danger.active:hover,
.open > .dropdown-toggle.btn-danger:hover,
.btn-danger:active:focus,
.btn-danger.active:focus,
.open > .dropdown-toggle.btn-danger:focus,
.btn-danger:active.focus,
.btn-danger.active.focus,
.open > .dropdown-toggle.btn-danger.focus {
color: #fff;
background-color: #ac2925;
border-color: #761c19;
}
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
background-image: none;
}
.btn-danger.disabled:hover,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger:hover,
.btn-danger.disabled:focus,
.btn-danger[disabled]:focus,
fieldset[disabled] .btn-danger:focus,
.btn-danger.disabled.focus,
.btn-danger[disabled].focus,
fieldset[disabled] .btn-danger.focus {
background-color: #d9534f;
border-color: #d43f3a;
}
.btn-danger .badge {
color: #d9534f;
background-color: #fff;
}
.btn-link {
font-weight: normal;
color: #337ab7;
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: #23527c;
text-decoration: underline;
background-color: transparent;
}
.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:hover,
.btn-link[disabled]:focus,
fieldset[disabled] .btn-link:focus {
color: #777;
text-decoration: none;
}
.btn-lg,
.btn-group-lg > .btn {
padding: 10px 16px;
font-size: 18px;
line-height: 1.3333333;
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 .15s linear;
-o-transition: opacity .15s linear;
transition: opacity .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-timing-function: ease;
-o-transition-timing-function: ease;
transition-timing-function: ease;
-webkit-transition-duration: .35s;
-o-transition-duration: .35s;
transition-duration: .35s;
-webkit-transition-property: height, visibility;
-o-transition-property: height, visibility;
transition-property: height, visibility;
}
.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;
font-size: 14px;
text-align: left;
list-style: none;
background-color: #fff;
-webkit-background-clip: padding-box;
background-clip: padding-box;
border: 1px solid #ccc;
border: 1px solid rgba(0, 0, 0, .15);
border-radius: 4px;
-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}
.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.42857143;
color: #333;
white-space: nowrap;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
color: #262626;
text-decoration: none;
background-color: #f5f5f5;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
color: #fff;
text-decoration: none;
background-color: #337ab7;
outline: 0;
}
.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
color: #777;
}
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
text-decoration: none;
cursor: not-allowed;
background-color: transparent;
background-image: none;
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.open > .dropdown-menu {
display: block;
}
.open > a {
outline: 0;
}
.dropdown-menu-right {
right: 0;
left: auto;
}
.dropdown-menu-left {
right: auto;
left: 0;
}
.dropdown-header {
display: block;
padding: 3px 20px;
font-size: 12px;
line-height: 1.42857143;
color: #777;
white-space: nowrap;
}
.dropdown-backdrop {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 990;
}
.pull-right > .dropdown-menu {
right: 0;
left: auto;
}
.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
content: "";
border-top: 0;
border-bottom: 4px dashed;
border-bottom: 4px solid \9;
}
.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 {
right: auto;
left: 0;
}
}
.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-vertical > .btn:hover,
.btn-group > .btn:focus,
.btn-group-vertical > .btn:focus,
.btn-group > .btn:active,
.btn-group-vertical > .btn:active,
.btn-group > .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 .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-top-right-radius: 0;
border-bottom-right-radius: 0;
}
.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
border-top-left-radius: 0;
border-bottom-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-top-right-radius: 0;
border-bottom-right-radius: 0;
}
.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}
.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
outline: 0;
}
.btn-group > .btn + .dropdown-toggle {
padding-right: 8px;
padding-left: 8px;
}
.btn-group > .btn-lg + .dropdown-toggle {
padding-right: 12px;
padding-left: 12px;
}
.btn-group.open .dropdown-toggle {
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
box-shadow: inset 0 3px 5px rgba(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 {
border-width: 5px 5px 0;
border-bottom-width: 0;
}
.dropup .btn-lg .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 > .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-left-radius: 4px;
border-top-right-radius: 4px;
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:last-child:not(:first-child) {
border-top-left-radius: 0;
border-top-right-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-left-radius: 0;
border-top-right-radius: 0;
}
.btn-group-justified {
display: table;
width: 100%;
table-layout: fixed;
border-collapse: separate;
}
.btn-group-justified > .btn,
.btn-group-justified > .btn-group {
display: table-cell;
float: none;
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-group > .btn input[type="radio"],
[data-toggle="buttons"] > .btn input[type="checkbox"],
[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-right: 0;
padding-left: 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-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.3333333;
border-radius: 6px;
}
select.input-group-lg > .form-control,
select.input-group-lg > .input-group-addon,
select.input-group-lg > .input-group-btn > .btn {
height: 46px;
line-height: 46px;
}
textarea.input-group-lg > .form-control,
textarea.input-group-lg > .input-group-addon,
textarea.input-group-lg > .input-group-btn > .btn,
select[multiple].input-group-lg > .form-control,
select[multiple].input-group-lg > .input-group-addon,
select[multiple].input-group-lg > .input-group-btn > .btn {
height: auto;
}
.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-group-sm > .form-control,
select.input-group-sm > .input-group-addon,
select.input-group-sm > .input-group-btn > .btn {
height: 30px;
line-height: 30px;
}
textarea.input-group-sm > .form-control,
textarea.input-group-sm > .input-group-addon,
textarea.input-group-sm > .input-group-btn > .btn,
select[multiple].input-group-sm > .form-control,
select[multiple].input-group-sm > .input-group-addon,
select[multiple].input-group-sm > .input-group-btn > .btn {
height: auto;
}
.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: #555;
text-align: center;
background-color: #eee;
border: 1px solid #ccc;
border-radius: 4px;
}
.input-group-addon.input-sm {
padding: 5px 10px;
font-size: 12px;
border-radius: 3px;
}
.input-group-addon.input-lg {
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-top-right-radius: 0;
border-bottom-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-top-left-radius: 0;
border-bottom-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 {
padding-left: 0;
margin-bottom: 0;
list-style: none;
}
.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: #eee;
}
.nav > li.disabled > a {
color: #777;
}
.nav > li.disabled > a:hover,
.nav > li.disabled > a:focus {
color: #777;
text-decoration: none;
cursor: not-allowed;
background-color: transparent;
}
.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
background-color: #eee;
border-color: #337ab7;
}
.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.42857143;
border: 1px solid transparent;
border-radius: 4px 4px 0 0;
}
.nav-tabs > li > a:hover {
border-color: #eee #eee #ddd;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
color: #555;
cursor: default;
background-color: #fff;
border: 1px solid #ddd;
border-bottom-color: transparent;
}
.nav-tabs.nav-justified {
width: 100%;
border-bottom: 0;
}
.nav-tabs.nav-justified > li {
float: none;
}
.nav-tabs.nav-justified > li > a {
margin-bottom: 5px;
text-align: center;
}
.nav-tabs.nav-justified > .dropdown .dropdown-menu {
top: auto;
left: auto;
}
@media (min-width: 768px) {
.nav-tabs.nav-justified > li {
display: table-cell;
width: 1%;
}
.nav-tabs.nav-justified > li > a {
margin-bottom: 0;
}
}
.nav-tabs.nav-justified > li > a {
margin-right: 0;
border-radius: 4px;
}
.nav-tabs.nav-justified > .active > a,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:focus {
border: 1px solid #ddd;
}
@media (min-width: 768px) {
.nav-tabs.nav-justified > li > a {
border-bottom: 1px solid #ddd;
border-radius: 4px 4px 0 0;
}
.nav-tabs.nav-justified > .active > a,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:focus {
border-bottom-color: #fff;
}
}
.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: #337ab7;
}
.nav-stacked > li {
float: none;
}
.nav-stacked > li + li {
margin-top: 2px;
margin-left: 0;
}
.nav-justified {
width: 100%;
}
.nav-justified > li {
float: none;
}
.nav-justified > li > a {
margin-bottom: 5px;
text-align: center;
}
.nav-justified > .dropdown .dropdown-menu {
top: auto;
left: auto;
}
@media (min-width: 768px) {
.nav-justified > li {
display: table-cell;
width: 1%;
}
.nav-justified > li > a {
margin-bottom: 0;
}
}
.nav-tabs-justified {
border-bottom: 0;
}
.nav-tabs-justified > li > a {
margin-right: 0;
border-radius: 4px;
}
.nav-tabs-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus {
border: 1px solid #ddd;
}
@media (min-width: 768px) {
.nav-tabs-justified > li > a {
border-bottom: 1px solid #ddd;
border-radius: 4px 4px 0 0;
}
.nav-tabs-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-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-left-radius: 0;
border-top-right-radius: 0;
}
.navbar {
position: relative;
min-height: 50px;
margin-bottom: 20px;
border: 1px solid transparent;
}
@media (min-width: 768px) {
.navbar {
border-radius: 4px;
}
}
@media (min-width: 768px) {
.navbar-header {
float: left;
}
}
.navbar-collapse {
padding-right: 15px;
padding-left: 15px;
overflow-x: visible;
-webkit-overflow-scrolling: touch;
border-top: 1px solid transparent;
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
}
.navbar-collapse.in {
overflow-y: auto;
}
@media (min-width: 768px) {
.navbar-collapse {
width: auto;
border-top: 0;
-webkit-box-shadow: none;
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-right: 0;
padding-left: 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-fluid > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-collapse {
margin-right: -15px;
margin-left: -15px;
}
@media (min-width: 768px) {
.container > .navbar-header,
.container-fluid > .navbar-header,
.container > .navbar-collapse,
.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;
height: 50px;
padding: 15px 15px;
font-size: 18px;
line-height: 20px;
}
.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;
padding: 9px 10px;
margin-top: 8px;
margin-right: 15px;
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;
-webkit-box-shadow: none;
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 {
padding: 10px 15px;
margin-top: 8px;
margin-right: -15px;
margin-bottom: 8px;
margin-left: -15px;
border-top: 1px solid transparent;
border-bottom: 1px solid transparent;
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
}
@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;
padding-top: 0;
padding-bottom: 0;
margin-right: 0;
margin-left: 0;
border: 0;
-webkit-box-shadow: none;
box-shadow: none;
}
}
.navbar-nav > li > .dropdown-menu {
margin-top: 0;
border-top-left-radius: 0;
border-top-right-radius: 0;
}
.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
margin-bottom: 0;
border-top-left-radius: 4px;
border-top-right-radius: 4px;
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
}
.navbar-btn {
margin-top: 8px;
margin-bottom: 8px;
}
.navbar-btn.btn-sm {
margin-top: 10px;
margin-bottom: 10px;
}
.navbar-btn.btn-xs {
margin-top: 14px;
margin-bottom: 14px;
}
.navbar-text {
margin-top: 15px;
margin-bottom: 15px;
}
@media (min-width: 768px) {
.navbar-text {
float: left;
margin-right: 15px;
margin-left: 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: #f8f8f8;
border-color: #e7e7e7;
}
.navbar-default .navbar-brand {
color: #777;
}
.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
color: #5e5e5e;
background-color: transparent;
}
.navbar-default .navbar-text {
color: #777;
}
.navbar-default .navbar-nav > li > a {
color: #777;
}
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
color: #333;
background-color: transparent;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
color: #555;
background-color: #e7e7e7;
}
.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: #e7e7e7;
}
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
color: #555;
background-color: #e7e7e7;
}
@media (max-width: 767px) {
.navbar-default .navbar-nav .open .dropdown-menu > li > a {
color: #777;
}
.navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
.navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
color: #333;
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: #555;
background-color: #e7e7e7;
}
.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: #777;
}
.navbar-default .navbar-link:hover {
color: #333;
}
.navbar-default .btn-link {
color: #777;
}
.navbar-default .btn-link:hover,
.navbar-default .btn-link:focus {
color: #333;
}
.navbar-default .btn-link[disabled]:hover,
fieldset[disabled] .navbar-default .btn-link:hover,
.navbar-default .btn-link[disabled]:focus,
fieldset[disabled] .navbar-default .btn-link:focus {
color: #ccc;
}
.navbar-inverse {
background-color: #222;
border-color: #080808;
}
.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: #080808;
}
.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 {
color: #fff;
background-color: #080808;
}
@media (max-width: 767px) {
.navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
border-color: #080808;
}
.navbar-inverse .navbar-nav .open .dropdown-menu .divider {
background-color: #080808;
}
.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: #080808;
}
.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,
fieldset[disabled] .navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link[disabled]:focus,
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 {
padding: 0 5px;
color: #ccc;
content: "/\00a0";
}
.breadcrumb > .active {
color: #777;
}
.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;
margin-left: -1px;
line-height: 1.42857143;
color: #337ab7;
text-decoration: none;
background-color: #fff;
border: 1px solid #ddd;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
margin-left: 0;
border-top-left-radius: 4px;
border-bottom-left-radius: 4px;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
border-top-right-radius: 4px;
border-bottom-right-radius: 4px;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
z-index: 2;
color: #23527c;
background-color: #eee;
border-color: #ddd;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
z-index: 3;
color: #fff;
cursor: default;
background-color: #337ab7;
border-color: #337ab7;
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
color: #777;
cursor: not-allowed;
background-color: #fff;
border-color: #ddd;
}
.pagination-lg > li > a,
.pagination-lg > li > span {
padding: 10px 16px;
font-size: 18px;
line-height: 1.3333333;
}
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
border-top-left-radius: 6px;
border-bottom-left-radius: 6px;
}
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
border-top-right-radius: 6px;
border-bottom-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-top-left-radius: 3px;
border-bottom-left-radius: 3px;
}
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
border-top-right-radius: 3px;
border-bottom-right-radius: 3px;
}
.pager {
padding-left: 0;
margin: 20px 0;
text-align: center;
list-style: none;
}
.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: #eee;
}
.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: #777;
cursor: not-allowed;
background-color: #fff;
}
.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;
}
a.label:hover,
a.label:focus {
color: #fff;
text-decoration: none;
cursor: pointer;
}
.label:empty {
display: none;
}
.btn .label {
position: relative;
top: -1px;
}
.label-default {
background-color: #777;
}
.label-default[href]:hover,
.label-default[href]:focus {
background-color: #5e5e5e;
}
.label-primary {
background-color: #337ab7;
}
.label-primary[href]:hover,
.label-primary[href]:focus {
background-color: #286090;
}
.label-success {
background-color: #5cb85c;
}
.label-success[href]:hover,
.label-success[href]:focus {
background-color: #449d44;
}
.label-info {
background-color: #5bc0de;
}
.label-info[href]:hover,
.label-info[href]:focus {
background-color: #31b0d5;
}
.label-warning {
background-color: #f0ad4e;
}
.label-warning[href]:hover,
.label-warning[href]:focus {
background-color: #ec971f;
}
.label-danger {
background-color: #d9534f;
}
.label-danger[href]:hover,
.label-danger[href]:focus {
background-color: #c9302c;
}
.badge {
display: inline-block;
min-width: 10px;
padding: 3px 7px;
font-size: 12px;
font-weight: bold;
line-height: 1;
color: #fff;
text-align: center;
white-space: nowrap;
vertical-align: middle;
background-color: #777;
border-radius: 10px;
}
.badge:empty {
display: none;
}
.btn .badge {
position: relative;
top: -1px;
}
.btn-xs .badge,
.btn-group-xs > .btn .badge {
top: 0;
padding: 1px 5px;
}
a.badge:hover,
a.badge:focus {
color: #fff;
text-decoration: none;
cursor: pointer;
}
.list-group-item.active > .badge,
.nav-pills > .active > a > .badge {
color: #337ab7;
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;
}
.jumbotron {
padding-top: 30px;
padding-bottom: 30px;
margin-bottom: 30px;
color: inherit;
background-color: #eee;
}
.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 {
padding-right: 15px;
padding-left: 15px;
border-radius: 6px;
}
.jumbotron .container {
max-width: 100%;
}
@media screen and (min-width: 768px) {
.jumbotron {
padding-top: 48px;
padding-bottom: 48px;
}
.container .jumbotron,
.container-fluid .jumbotron {
padding-right: 60px;
padding-left: 60px;
}
.jumbotron h1,
.jumbotron .h1 {
font-size: 63px;
}
}
.thumbnail {
display: block;
padding: 4px;
margin-bottom: 20px;
line-height: 1.42857143;
background-color: #fff;
border: 1px solid #ddd;
border-radius: 4px;
-webkit-transition: border .2s ease-in-out;
-o-transition: border .2s ease-in-out;
transition: border .2s ease-in-out;
}
.thumbnail > img,
.thumbnail a > img {
margin-right: auto;
margin-left: auto;
}
a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
border-color: #337ab7;
}
.thumbnail .caption {
padding: 9px;
color: #333;
}
.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 {
color: #3c763d;
background-color: #dff0d8;
border-color: #d6e9c6;
}
.alert-success hr {
border-top-color: #c9e2b3;
}
.alert-success .alert-link {
color: #2b542c;
}
.alert-info {
color: #31708f;
background-color: #d9edf7;
border-color: #bce8f1;
}
.alert-info hr {
border-top-color: #a6e1ec;
}
.alert-info .alert-link {
color: #245269;
}
.alert-warning {
color: #8a6d3b;
background-color: #fcf8e3;
border-color: #faebcc;
}
.alert-warning hr {
border-top-color: #f7e1b5;
}
.alert-warning .alert-link {
color: #66512c;
}
.alert-danger {
color: #a94442;
background-color: #f2dede;
border-color: #ebccd1;
}
.alert-danger hr {
border-top-color: #e4b9c0;
}
.alert-danger .alert-link {
color: #843534;
}
@-webkit-keyframes progress-bar-stripes {
from {
background-position: 40px 0;
}
to {
background-position: 0 0;
}
}
@-o-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 {
height: 20px;
margin-bottom: 20px;
overflow: hidden;
background-color: #f5f5f5;
border-radius: 4px;
-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
box-shadow: inset 0 1px 2px rgba(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: #337ab7;
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
-webkit-transition: width .6s ease;
-o-transition: width .6s ease;
transition: width .6s ease;
}
.progress-striped .progress-bar,
.progress-bar-striped {
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
-webkit-background-size: 40px 40px;
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: #5cb85c;
}
.progress-striped .progress-bar-success {
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}
.progress-bar-info {
background-color: #5bc0de;
}
.progress-striped .progress-bar-info {
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}
.progress-bar-warning {
background-color: #f0ad4e;
}
.progress-striped .progress-bar-warning {
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}
.progress-bar-danger {
background-color: #d9534f;
}
.progress-striped .progress-bar-danger {
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}
.media {
margin-top: 15px;
}
.media:first-child {
margin-top: 0;
}
.media,
.media-body {
overflow: hidden;
zoom: 1;
}
.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 {
padding-left: 0;
margin-bottom: 20px;
}
.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-left-radius: 4px;
border-top-right-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,
button.list-group-item:hover,
a.list-group-item:focus,
button.list-group-item:focus {
color: #555;
text-decoration: none;
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 {
color: #777;
cursor: not-allowed;
background-color: #eee;
}
.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: #777;
}
.list-group-item.active,
.list-group-item.active:hover,
.list-group-item.active:focus {
z-index: 2;
color: #fff;
background-color: #337ab7;
border-color: #337ab7;
}
.list-group-item.active .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading,
.list-group-item.active:focus .list-group-item-heading,
.list-group-item.active .list-group-item-heading > small,
.list-group-item.active:hover .list-group-item-heading > small,
.list-group-item.active:focus .list-group-item-heading > small,
.list-group-item.active .list-group-item-heading > .small,
.list-group-item.active:hover .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: #c7ddef;
}
.list-group-item-success {
color: #3c763d;
background-color: #dff0d8;
}
a.list-group-item-success,
button.list-group-item-success {
color: #3c763d;
}
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,
button.list-group-item-success:hover,
a.list-group-item-success:focus,
button.list-group-item-success:focus {
color: #3c763d;
background-color: #d0e9c6;
}
a.list-group-item-success.active,
button.list-group-item-success.active,
a.list-group-item-success.active:hover,
button.list-group-item-success.active:hover,
a.list-group-item-success.active:focus,
button.list-group-item-success.active:focus {
color: #fff;
background-color: #3c763d;
border-color: #3c763d;
}
.list-group-item-info {
color: #31708f;
background-color: #d9edf7;
}
a.list-group-item-info,
button.list-group-item-info {
color: #31708f;
}
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,
button.list-group-item-info:hover,
a.list-group-item-info:focus,
button.list-group-item-info:focus {
color: #31708f;
background-color: #c4e3f3;
}
a.list-group-item-info.active,
button.list-group-item-info.active,
a.list-group-item-info.active:hover,
button.list-group-item-info.active:hover,
a.list-group-item-info.active:focus,
button.list-group-item-info.active:focus {
color: #fff;
background-color: #31708f;
border-color: #31708f;
}
.list-group-item-warning {
color: #8a6d3b;
background-color: #fcf8e3;
}
a.list-group-item-warning,
button.list-group-item-warning {
color: #8a6d3b;
}
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,
button.list-group-item-warning:hover,
a.list-group-item-warning:focus,
button.list-group-item-warning:focus {
color: #8a6d3b;
background-color: #faf2cc;
}
a.list-group-item-warning.active,
button.list-group-item-warning.active,
a.list-group-item-warning.active:hover,
button.list-group-item-warning.active:hover,
a.list-group-item-warning.active:focus,
button.list-group-item-warning.active:focus {
color: #fff;
background-color: #8a6d3b;
border-color: #8a6d3b;
}
.list-group-item-danger {
color: #a94442;
background-color: #f2dede;
}
a.list-group-item-danger,
button.list-group-item-danger {
color: #a94442;
}
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,
button.list-group-item-danger:hover,
a.list-group-item-danger:focus,
button.list-group-item-danger:focus {
color: #a94442;
background-color: #ebcccc;
}
a.list-group-item-danger.active,
button.list-group-item-danger.active,
a.list-group-item-danger.active:hover,
button.list-group-item-danger.active:hover,
a.list-group-item-danger.active:focus,
button.list-group-item-danger.active:focus {
color: #fff;
background-color: #a94442;
border-color: #a94442;
}
.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, .05);
box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
}
.panel-body {
padding: 15px;
}
.panel-heading {
padding: 10px 15px;
border-bottom: 1px solid transparent;
border-top-left-radius: 3px;
border-top-right-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-left-radius: 3px;
border-top-right-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-left-radius: 0;
border-top-right-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-right: 15px;
padding-left: 15px;
}
.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
border-top-left-radius: 3px;
border-top-right-radius: 3px;
}
.panel > .table:first-child > thead:first-child > tr:first-child,
.panel > .table-responsive:first-child > .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 > 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-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .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 td:first-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th: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-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .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 td:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th: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-responsive:last-child > .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 > tfoot:last-child > tr:last-child {
border-bottom-right-radius: 3px;
border-bottom-left-radius: 3px;
}
.panel > .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 td:first-child,
.panel > .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 td:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th: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-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .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 td:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th: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-responsive > .table-bordered > thead > tr > th:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > td: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-responsive > .table-bordered > thead > tr > th:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > td: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-responsive > .table-bordered > thead > tr:first-child > td,
.panel > .table-bordered > tbody > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.panel > .table-bordered > thead > tr:first-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
.panel > .table-bordered > tbody > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
border-bottom: 0;
}
.panel > .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
border-bottom: 0;
}
.panel > .table-responsive {
margin-bottom: 0;
border: 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: #333;
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: #333;
}
.panel-default > .panel-footer + .panel-collapse > .panel-body {
border-bottom-color: #ddd;
}
.panel-primary {
border-color: #337ab7;
}
.panel-primary > .panel-heading {
color: #fff;
background-color: #337ab7;
border-color: #337ab7;
}
.panel-primary > .panel-heading + .panel-collapse > .panel-body {
border-top-color: #337ab7;
}
.panel-primary > .panel-heading .badge {
color: #337ab7;
background-color: #fff;
}
.panel-primary > .panel-footer + .panel-collapse > .panel-body {
border-bottom-color: #337ab7;
}
.panel-success {
border-color: #d6e9c6;
}
.panel-success > .panel-heading {
color: #3c763d;
background-color: #dff0d8;
border-color: #d6e9c6;
}
.panel-success > .panel-heading + .panel-collapse > .panel-body {
border-top-color: #d6e9c6;
}
.panel-success > .panel-heading .badge {
color: #dff0d8;
background-color: #3c763d;
}
.panel-success > .panel-footer + .panel-collapse > .panel-body {
border-bottom-color: #d6e9c6;
}
.panel-info {
border-color: #bce8f1;
}
.panel-info > .panel-heading {
color: #31708f;
background-color: #d9edf7;
border-color: #bce8f1;
}
.panel-info > .panel-heading + .panel-collapse > .panel-body {
border-top-color: #bce8f1;
}
.panel-info > .panel-heading .badge {
color: #d9edf7;
background-color: #31708f;
}
.panel-info > .panel-footer + .panel-collapse > .panel-body {
border-bottom-color: #bce8f1;
}
.panel-warning {
border-color: #faebcc;
}
.panel-warning > .panel-heading {
color: #8a6d3b;
background-color: #fcf8e3;
border-color: #faebcc;
}
.panel-warning > .panel-heading + .panel-collapse > .panel-body {
border-top-color: #faebcc;
}
.panel-warning > .panel-heading .badge {
color: #fcf8e3;
background-color: #8a6d3b;
}
.panel-warning > .panel-footer + .panel-collapse > .panel-body {
border-bottom-color: #faebcc;
}
.panel-danger {
border-color: #ebccd1;
}
.panel-danger > .panel-heading {
color: #a94442;
background-color: #f2dede;
border-color: #ebccd1;
}
.panel-danger > .panel-heading + .panel-collapse > .panel-body {
border-top-color: #ebccd1;
}
.panel-danger > .panel-heading .badge {
color: #f2dede;
background-color: #a94442;
}
.panel-danger > .panel-footer + .panel-collapse > .panel-body {
border-bottom-color: #ebccd1;
}
.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;
bottom: 0;
left: 0;
width: 100%;
height: 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, .05);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
}
.well blockquote {
border-color: #ddd;
border-color: rgba(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;
filter: alpha(opacity=20);
opacity: .2;
}
.close:hover,
.close:focus {
color: #000;
text-decoration: none;
cursor: pointer;
filter: alpha(opacity=50);
opacity: .5;
}
button.close {
-webkit-appearance: none;
padding: 0;
cursor: pointer;
background: transparent;
border: 0;
}
.modal-open {
overflow: hidden;
}
.modal {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 1050;
display: none;
overflow: hidden;
-webkit-overflow-scrolling: touch;
outline: 0;
}
.modal.fade .modal-dialog {
-webkit-transition: -webkit-transform .3s ease-out;
-o-transition: -o-transform .3s ease-out;
transition: transform .3s ease-out;
-webkit-transform: translate(0, -25%);
-ms-transform: translate(0, -25%);
-o-transform: translate(0, -25%);
transform: translate(0, -25%);
}
.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;
-webkit-background-clip: padding-box;
background-clip: padding-box;
border: 1px solid #999;
border: 1px solid rgba(0, 0, 0, .2);
border-radius: 6px;
outline: 0;
-webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
}
.modal-backdrop {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 1040;
background-color: #000;
}
.modal-backdrop.fade {
filter: alpha(opacity=0);
opacity: 0;
}
.modal-backdrop.in {
filter: alpha(opacity=50);
opacity: .5;
}
.modal-header {
padding: 15px;
border-bottom: 1px solid #e5e5e5;
}
.modal-header .close {
margin-top: -2px;
}
.modal-title {
margin: 0;
line-height: 1.42857143;
}
.modal-body {
position: relative;
padding: 15px;
}
.modal-footer {
padding: 15px;
text-align: right;
border-top: 1px solid #e5e5e5;
}
.modal-footer .btn + .btn {
margin-bottom: 0;
margin-left: 5px;
}
.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, .5);
box-shadow: 0 5px 15px rgba(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-size: 12px;
font-style: normal;
font-weight: normal;
line-height: 1.42857143;
text-align: left;
text-align: start;
text-decoration: none;
text-shadow: none;
text-transform: none;
letter-spacing: normal;
word-break: normal;
word-spacing: normal;
word-wrap: normal;
white-space: normal;
filter: alpha(opacity=0);
opacity: 0;
line-break: auto;
}
.tooltip.in {
filter: alpha(opacity=90);
opacity: .9;
}
.tooltip.top {
padding: 5px 0;
margin-top: -3px;
}
.tooltip.right {
padding: 0 5px;
margin-left: 3px;
}
.tooltip.bottom {
padding: 5px 0;
margin-top: 3px;
}
.tooltip.left {
padding: 0 5px;
margin-left: -3px;
}
.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 {
right: 5px;
bottom: 0;
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-size: 14px;
font-style: normal;
font-weight: normal;
line-height: 1.42857143;
text-align: left;
text-align: start;
text-decoration: none;
text-shadow: none;
text-transform: none;
letter-spacing: normal;
word-break: normal;
word-spacing: normal;
word-wrap: normal;
white-space: normal;
background-color: #fff;
-webkit-background-clip: padding-box;
background-clip: padding-box;
border: 1px solid #ccc;
border: 1px solid rgba(0, 0, 0, .2);
border-radius: 6px;
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
line-break: auto;
}
.popover.top {
margin-top: -10px;
}
.popover.right {
margin-left: 10px;
}
.popover.bottom {
margin-top: 10px;
}
.popover.left {
margin-left: -10px;
}
.popover-title {
padding: 8px 14px;
margin: 0;
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 {
content: "";
border-width: 10px;
}
.popover.top > .arrow {
bottom: -11px;
left: 50%;
margin-left: -11px;
border-top-color: #999;
border-top-color: rgba(0, 0, 0, .25);
border-bottom-width: 0;
}
.popover.top > .arrow:after {
bottom: 1px;
margin-left: -10px;
content: " ";
border-top-color: #fff;
border-bottom-width: 0;
}
.popover.right > .arrow {
top: 50%;
left: -11px;
margin-top: -11px;
border-right-color: #999;
border-right-color: rgba(0, 0, 0, .25);
border-left-width: 0;
}
.popover.right > .arrow:after {
bottom: -10px;
left: 1px;
content: " ";
border-right-color: #fff;
border-left-width: 0;
}
.popover.bottom > .arrow {
top: -11px;
left: 50%;
margin-left: -11px;
border-top-width: 0;
border-bottom-color: #999;
border-bottom-color: rgba(0, 0, 0, .25);
}
.popover.bottom > .arrow:after {
top: 1px;
margin-left: -10px;
content: " ";
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: #999;
border-left-color: rgba(0, 0, 0, .25);
}
.popover.left > .arrow:after {
right: 1px;
bottom: -10px;
content: " ";
border-right-width: 0;
border-left-color: #fff;
}
.carousel {
position: relative;
}
.carousel-inner {
position: relative;
width: 100%;
overflow: hidden;
}
.carousel-inner > .item {
position: relative;
display: none;
-webkit-transition: .6s ease-in-out left;
-o-transition: .6s ease-in-out left;
transition: .6s ease-in-out left;
}
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
line-height: 1;
}
@media all and (transform-3d), (-webkit-transform-3d) {
.carousel-inner > .item {
-webkit-transition: -webkit-transform .6s ease-in-out;
-o-transition: -o-transform .6s ease-in-out;
transition: transform .6s ease-in-out;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
-webkit-perspective: 1000px;
perspective: 1000px;
}
.carousel-inner > .item.next,
.carousel-inner > .item.active.right {
left: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
.carousel-inner > .item.prev,
.carousel-inner > .item.active.left {
left: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
.carousel-inner > .item.next.left,
.carousel-inner > .item.prev.right,
.carousel-inner > .item.active {
left: 0;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 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;
bottom: 0;
left: 0;
width: 15%;
font-size: 20px;
color: #fff;
text-align: center;
text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
background-color: rgba(0, 0, 0, 0);
filter: alpha(opacity=50);
opacity: .5;
}
.carousel-control.left {
background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
background-image: -o-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, .0001)));
background-image: linear-gradient(to right, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
background-repeat: repeat-x;
}
.carousel-control.right {
right: 0;
left: auto;
background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
background-image: -o-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .0001)), to(rgba(0, 0, 0, .5)));
background-image: linear-gradient(to right, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
background-repeat: repeat-x;
}
.carousel-control:hover,
.carousel-control:focus {
color: #fff;
text-decoration: none;
filter: alpha(opacity=90);
outline: 0;
opacity: .9;
}
.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
position: absolute;
top: 50%;
z-index: 5;
display: inline-block;
margin-top: -10px;
}
.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;
font-family: serif;
line-height: 1;
}
.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%;
padding-left: 0;
margin-left: -30%;
text-align: center;
list-style: none;
}
.carousel-indicators li {
display: inline-block;
width: 10px;
height: 10px;
margin: 1px;
text-indent: -999px;
cursor: pointer;
background-color: #000 \9;
background-color: rgba(0, 0, 0, 0);
border: 1px solid #fff;
border-radius: 10px;
}
.carousel-indicators .active {
width: 12px;
height: 12px;
margin: 0;
background-color: #fff;
}
.carousel-caption {
position: absolute;
right: 15%;
bottom: 20px;
left: 15%;
z-index: 10;
padding-top: 20px;
padding-bottom: 20px;
color: #fff;
text-align: center;
text-shadow: 0 1px 2px rgba(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 {
right: 20%;
left: 20%;
padding-bottom: 30px;
}
.carousel-indicators {
bottom: 20px;
}
}
.clearfix:before,
.clearfix:after,
.dl-horizontal dd:before,
.dl-horizontal dd:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after,
.form-horizontal .form-group:before,
.form-horizontal .form-group:after,
.btn-toolbar:before,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:before,
.btn-group-vertical > .btn-group:after,
.nav:before,
.nav:after,
.navbar:before,
.navbar:after,
.navbar-header:before,
.navbar-header:after,
.navbar-collapse:before,
.navbar-collapse:after,
.pager:before,
.pager:after,
.panel-body:before,
.panel-body:after,
.modal-header:before,
.modal-header:after,
.modal-footer:before,
.modal-footer:after {
display: table;
content: " ";
}
.clearfix:after,
.dl-horizontal dd:after,
.container:after,
.container-fluid:after,
.row:after,
.form-horizontal .form-group:after,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:after,
.nav:after,
.navbar:after,
.navbar-header:after,
.navbar-collapse:after,
.pager:after,
.panel-body:after,
.modal-header:after,
.modal-footer:after {
clear: both;
}
.center-block {
display: block;
margin-right: auto;
margin-left: 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,
.visible-sm,
.visible-md,
.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;
}
}
/*# sourceMappingURL=bootstrap.css.map */
|
wicket/src/test/java/org/apache/wicket/ajax/AjaxHeaderContributionPage2_expected.html | Servoy/wicket | <html>
<head>
<link href="../test"/>
<script type="text/javascript" src="javascripturl"></script>
<script type="text/javascript" src="resources/org.apache.wicket.markup.html.WicketEventReference/wicket-event.js"></script>
<script type="text/javascript" ><!--/*--><![CDATA[/*><!--*/
Wicket.Event.add(window, "domready", function(event) { domReady();;});
/*-->]]>*/</script>
<script type="text/javascript" ><!--/*--><![CDATA[/*><!--*/
Wicket.Event.add(window, "load", function(event) { onLoad();;});
/*-->]]>*/</script>
<link href="../test2"/>
<script type="text/javascript" src="javascripturlB"></script>
<script type="text/javascript" ><!--/*--><![CDATA[/*><!--*/
Wicket.Event.add(window, "domready", function(event) { domReadyB();;});
/*-->]]>*/</script>
<script type="text/javascript" ><!--/*--><![CDATA[/*><!--*/
Wicket.Event.add(window, "load", function(event) { onLoadB();;});
/*-->]]>*/</script>
<script type="text/javascript" src="resources/org.apache.wicket.ajax.WicketAjaxReference/wicket-ajax.js"></script>
<script type="text/javascript" src="resources/org.apache.wicket.ajax.AbstractDefaultAjaxBehavior/wicket-ajax-debug.js"></script>
<script type="text/javascript" id="wicket-ajax-debug-enable"><!--/*--><![CDATA[/*><!--*/
wicketAjaxDebugEnable=true;
/*-->]]>*/</script>
</head><body>
<span wicket:id="test1" id="test11"><wicket:panel>
test
</wicket:panel></span>
<span wicket:id="test2" id="test22"><wicket:panel>
test
</wicket:panel></span>
<span wicket:id="test3" id="test33"><wicket:panel>
test
</wicket:panel></span>
<span wicket:id="btest1" id="btest14"><wicket:panel>
test
</wicket:panel></span>
<span wicket:id="btest2" id="btest25"><wicket:panel>
test
</wicket:panel></span>
<span wicket:id="btest3" id="btest36"><wicket:panel>
test
</wicket:panel></span>
<a href="?wicket:interface=:0:link::ILinkListener::" wicket:id="link" id="link7" onclick="var wcall=wicketAjaxGet('?wicket:interface=:0:link::IBehaviorListener:0:',function() { }.bind(this),function() { }.bind(this), function() {return Wicket.$('link7') != null;}.bind(this));return !wcall;">Test</a>
</body>
</html> |
docs/apidocs/org/apache/mina/core/package-tree.html | sardine/mina-ja | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_20) on Sun Jun 06 00:15:52 JST 2010 -->
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<TITLE>
org.apache.mina.core クラス階層 (Apache MINA Core 2.0.0-RC1 API)
</TITLE>
<META NAME="date" CONTENT="2010-06-06">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="org.apache.mina.core クラス階層 (Apache MINA Core 2.0.0-RC1 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="ナビゲーションリンクをスキップ"></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>概要</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>パッケージ</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">クラス</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">使用</FONT> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>階層ツリー</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>非推奨 API</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>索引</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>ヘルプ</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/mina/core/buffer/package-tree.html"><B>次</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../index.html?org/apache/mina/core/package-tree.html" target="_top"><B>フレームあり</B></A>
<A HREF="package-tree.html" target="_top"><B>フレームなし</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>すべてのクラス</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../allclasses-noframe.html"><B>すべてのクラス</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<CENTER>
<H2>
パッケージ org.apache.mina.core の階層
</H2>
</CENTER>
<DL>
<DT><B>パッケージ階層:</B><DD><A HREF="../../../../overview-tree.html">すべてのパッケージ</A></DL>
<HR>
<H2>
クラス階層
</H2>
<UL>
<LI TYPE="circle">java.lang.Object<UL>
<LI TYPE="circle">org.apache.mina.core.<A HREF="../../../../org/apache/mina/core/IoUtil.html" title="org.apache.mina.core 内のクラス"><B>IoUtil</B></A><LI TYPE="circle">java.lang.Throwable (implements java.io.Serializable)
<UL>
<LI TYPE="circle">java.lang.Exception<UL>
<LI TYPE="circle">java.lang.RuntimeException<UL>
<LI TYPE="circle">org.apache.mina.core.<A HREF="../../../../org/apache/mina/core/RuntimeIoException.html" title="org.apache.mina.core 内のクラス"><B>RuntimeIoException</B></A></UL>
</UL>
</UL>
</UL>
</UL>
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="ナビゲーションリンクをスキップ"></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>概要</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>パッケージ</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">クラス</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">使用</FONT> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>階層ツリー</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>非推奨 API</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>索引</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>ヘルプ</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/mina/core/buffer/package-tree.html"><B>次</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../index.html?org/apache/mina/core/package-tree.html" target="_top"><B>フレームあり</B></A>
<A HREF="package-tree.html" target="_top"><B>フレームなし</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>すべてのクラス</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../allclasses-noframe.html"><B>すべてのクラス</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
Copyright © 2004-2010 <a href="http://mina.apache.org/">Apache MINA Project</a>. All Rights Reserved.
</BODY>
</HTML>
|
Net/Controls/ControlsCommandsHookActions/Readme.html | Esri/arcobjects-sdk-community-samples | <!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title>Using HookActions in custom commands</title>
<style>
table, th, td {
border: 1px solid black;
border-collapse: collapse;
}
th, td {
padding: 5px;
}
th {
font-weight: bold;
}
</style>
</head>
<body>
## Using HookActions in custom commands
<div xmlns="http://www.w3.org/1999/xhtml" xmlns:my="http://schemas.microsoft.com/office/infopath/2003/myXSD/2006-02-10T23:25:53">This sample demonstrates how to use the IHookActions interface in custom commands to zoom, pan, flash and create graphics, labels, and callouts of selected features. The sample uses the MapControl, GlobeControl, and ToolbarControl in conjunction with the control commands.</div>
```
Language: C#, VB
Subject: Controls
Organization: Esri, http://www.esri.com
Date: 10/17/2019
ArcObjects SDK: 10.8
Visual Studio: 2017, 2019
.NET Target Framework: 4.5
```
### Resources
* [ArcObjects .NET API Reference online](http://desktop.arcgis.com/en/arcobjects/latest/net/webframe.htm)
* [Sample Data Download](../../releases)
* [What's new](http://desktop.arcgis.com/en/arcobjects/latest/net/webframe.htm#91cabc68-2271-400a-8ff9-c7fb25108546.htm)
* [Download the ArcObjects SDK for .Net from MyEsri.com](https://my.esri.com/)
### Usage
1. Add data to map, globe or both. For instance, add wsiearth/wsiearth.tif as the globe backdrop to allow black graphics and callouts to be seen. You could add line features from UsaMajorHighways/usa_major_highways.shp.
1. Select some features. Note: on globe, you must select multiple features using Shift+Ctrl; there is no extent selection.
1. Right-click the display to zoom, pan, flash or create graphics, labels, or callouts of selected features.
1. Note: on globe, graphics cannot be selected.
#### Additional information
<div xmlns="http://www.w3.org/1999/xhtml">Each custom command uses the HookHelper and GlobeHookHelper object to manage the hook passed to the ICommand.OnCreate event. In the ICommand.OnClick event, the IBasicMap.FeatureSelection method is used to return the feature selection of the IHookHelper.FocusMap or the IGlobeHookHelper.Globe. The geometry of each feature in the feature selection is added to an IArray.</div>
<div xmlns="http://www.w3.org/1999/xhtml"> </div>
<div xmlns="http://www.w3.org/1999/xhtml">The IHookActions.ActionSupportedOnMultiple property is used to determine whether the specified action (zoom, pan, flash, graphic, label, or callout) is supported with the geometries in the array. If the action is supported, the IHookActions.DoActionOnMultiple or IHookActions.DoActionWithNameOnMultiple method is called to perform the specific action. The DoActionWithNameOnMultiple method is used when performing a label or callout action. In addition to passing an array of geometries, an array of strings for labeling is also passed. In this case, that string array contains the value from the first field of each feature.</div>
<div xmlns="http://www.w3.org/1999/xhtml"> </div>
<div xmlns="http://www.w3.org/1999/xhtml">The custom commands are added to a ToolbarMenu using the IToolbarMenu.AddItem method and the ToolbarMenu's hook property is set to the ToolbarControl. In the MapControl and GlobeControl OnMouseDown event, the IToolbarMenu.PopupMenu method is used to display the menu when the right mouse button is clicked.</div>
#### See Also
[HookHelper](http://desktop.arcgis.com/search/?q=HookHelper&p=0&language=en&product=arcobjects-sdk-dotnet&version=&n=15&collection=help)
[GlobeHookHelper](http://desktop.arcgis.com/search/?q=GlobeHookHelper&p=0&language=en&product=arcobjects-sdk-dotnet&version=&n=15&collection=help)
[IHookActions](http://desktop.arcgis.com/search/?q=IHookActions&p=0&language=en&product=arcobjects-sdk-dotnet&version=&n=15&collection=help)
---------------------------------
#### Licensing
<table><tr><th> Development licensing </th><th> Deployment licensing </th></tr>
<tr><td> Engine Developer Kit </td><td> Engine: 3D Analyst </td></tr>
<tr><td> </td><td> ArcGIS Desktop Basic: 3D Analyst </td></tr>
<tr><td> </td><td> ArcGIS Desktop Standard: 3D Analyst </td></tr>
<tr><td> </td><td> ArcGIS Desktop Advanced: 3D Analyst </td></tr>
</table>
</body>
</html> |
examples/build_system/cmake/import_lib/main/lib/tinyxml2/docs/classtinyxml2_1_1_x_m_l_comment.html | krzychb/rtd-test-bed | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.13"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>TinyXML-2: tinyxml2::XMLComment Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">TinyXML-2
 <span id="projectnumber">6.0.0</span>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.13 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "search",false,'Search');
</script>
<script type="text/javascript" src="menudata.js"></script>
<script type="text/javascript" src="menu.js"></script>
<script type="text/javascript">
$(function() {
initMenu('',true,false,'search.php','Search');
$(document).ready(function() { init_search(); });
});
</script>
<div id="main-nav"></div>
<!-- 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"><b>tinyxml2</b></li><li class="navelem"><a class="el" href="classtinyxml2_1_1_x_m_l_comment.html">XMLComment</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> |
<a href="classtinyxml2_1_1_x_m_l_comment-members.html">List of all members</a> </div>
<div class="headertitle">
<div class="title">tinyxml2::XMLComment Class Reference</div> </div>
</div><!--header-->
<div class="contents">
<p><code>#include <<a class="el" href="tinyxml2_8h_source.html">tinyxml2.h</a>></code></p>
<div class="dynheader">
Inheritance diagram for tinyxml2::XMLComment:</div>
<div class="dyncontent">
<div class="center">
<img src="classtinyxml2_1_1_x_m_l_comment.png" usemap="#tinyxml2::XMLComment_map" alt=""/>
<map id="tinyxml2::XMLComment_map" name="tinyxml2::XMLComment_map">
<area href="classtinyxml2_1_1_x_m_l_node.html" alt="tinyxml2::XMLNode" shape="rect" coords="0,0,141,24"/>
</map>
</div></div>
<table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr class="memitem:a8093e1dc8a34fa446d9dc3fde0e6c0ee"><td class="memItemLeft" align="right" valign="top"><a id="a8093e1dc8a34fa446d9dc3fde0e6c0ee"></a>
virtual <a class="el" href="classtinyxml2_1_1_x_m_l_comment.html">XMLComment</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classtinyxml2_1_1_x_m_l_comment.html#a8093e1dc8a34fa446d9dc3fde0e6c0ee">ToComment</a> ()</td></tr>
<tr class="memdesc:a8093e1dc8a34fa446d9dc3fde0e6c0ee"><td class="mdescLeft"> </td><td class="mdescRight">Safely cast to a Comment, or null. <br /></td></tr>
<tr class="separator:a8093e1dc8a34fa446d9dc3fde0e6c0ee"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4a33dc32fae0285b03f9cfcb3e43e122"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classtinyxml2_1_1_x_m_l_comment.html#a4a33dc32fae0285b03f9cfcb3e43e122">Accept</a> (<a class="el" href="classtinyxml2_1_1_x_m_l_visitor.html">XMLVisitor</a> *visitor) const</td></tr>
<tr class="separator:a4a33dc32fae0285b03f9cfcb3e43e122"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a08991cc63fadf7e95078ac4f9ea1b073"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classtinyxml2_1_1_x_m_l_node.html">XMLNode</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classtinyxml2_1_1_x_m_l_comment.html#a08991cc63fadf7e95078ac4f9ea1b073">ShallowClone</a> (<a class="el" href="classtinyxml2_1_1_x_m_l_document.html">XMLDocument</a> *document) const</td></tr>
<tr class="separator:a08991cc63fadf7e95078ac4f9ea1b073"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6f7d227b25afa8cc3c763b7cc8833739"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classtinyxml2_1_1_x_m_l_comment.html#a6f7d227b25afa8cc3c763b7cc8833739">ShallowEqual</a> (const <a class="el" href="classtinyxml2_1_1_x_m_l_node.html">XMLNode</a> *compare) const</td></tr>
<tr class="separator:a6f7d227b25afa8cc3c763b7cc8833739"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_methods_classtinyxml2_1_1_x_m_l_node"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classtinyxml2_1_1_x_m_l_node')"><img src="closed.png" alt="-"/> Public Member Functions inherited from <a class="el" href="classtinyxml2_1_1_x_m_l_node.html">tinyxml2::XMLNode</a></td></tr>
<tr class="memitem:a2de84cfa4ec3fe249bad745069d145f1 inherit pub_methods_classtinyxml2_1_1_x_m_l_node"><td class="memItemLeft" align="right" valign="top"><a id="a2de84cfa4ec3fe249bad745069d145f1"></a>
const <a class="el" href="classtinyxml2_1_1_x_m_l_document.html">XMLDocument</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classtinyxml2_1_1_x_m_l_node.html#a2de84cfa4ec3fe249bad745069d145f1">GetDocument</a> () const</td></tr>
<tr class="memdesc:a2de84cfa4ec3fe249bad745069d145f1 inherit pub_methods_classtinyxml2_1_1_x_m_l_node"><td class="mdescLeft"> </td><td class="mdescRight">Get the <a class="el" href="classtinyxml2_1_1_x_m_l_document.html">XMLDocument</a> that owns this <a class="el" href="classtinyxml2_1_1_x_m_l_node.html">XMLNode</a>. <br /></td></tr>
<tr class="separator:a2de84cfa4ec3fe249bad745069d145f1 inherit pub_methods_classtinyxml2_1_1_x_m_l_node"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af343d1ef0b45c0020e62d784d7e67a68 inherit pub_methods_classtinyxml2_1_1_x_m_l_node"><td class="memItemLeft" align="right" valign="top"><a id="af343d1ef0b45c0020e62d784d7e67a68"></a>
<a class="el" href="classtinyxml2_1_1_x_m_l_document.html">XMLDocument</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classtinyxml2_1_1_x_m_l_node.html#af343d1ef0b45c0020e62d784d7e67a68">GetDocument</a> ()</td></tr>
<tr class="memdesc:af343d1ef0b45c0020e62d784d7e67a68 inherit pub_methods_classtinyxml2_1_1_x_m_l_node"><td class="mdescLeft"> </td><td class="mdescRight">Get the <a class="el" href="classtinyxml2_1_1_x_m_l_document.html">XMLDocument</a> that owns this <a class="el" href="classtinyxml2_1_1_x_m_l_node.html">XMLNode</a>. <br /></td></tr>
<tr class="separator:af343d1ef0b45c0020e62d784d7e67a68 inherit pub_methods_classtinyxml2_1_1_x_m_l_node"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aab516e699567f75cc9ab2ef2eee501e8 inherit pub_methods_classtinyxml2_1_1_x_m_l_node"><td class="memItemLeft" align="right" valign="top"><a id="aab516e699567f75cc9ab2ef2eee501e8"></a>
virtual <a class="el" href="classtinyxml2_1_1_x_m_l_element.html">XMLElement</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classtinyxml2_1_1_x_m_l_node.html#aab516e699567f75cc9ab2ef2eee501e8">ToElement</a> ()</td></tr>
<tr class="memdesc:aab516e699567f75cc9ab2ef2eee501e8 inherit pub_methods_classtinyxml2_1_1_x_m_l_node"><td class="mdescLeft"> </td><td class="mdescRight">Safely cast to an Element, or null. <br /></td></tr>
<tr class="separator:aab516e699567f75cc9ab2ef2eee501e8 inherit pub_methods_classtinyxml2_1_1_x_m_l_node"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a41c55dab9162d1eb62db2008430e376b inherit pub_methods_classtinyxml2_1_1_x_m_l_node"><td class="memItemLeft" align="right" valign="top"><a id="a41c55dab9162d1eb62db2008430e376b"></a>
virtual <a class="el" href="classtinyxml2_1_1_x_m_l_text.html">XMLText</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classtinyxml2_1_1_x_m_l_node.html#a41c55dab9162d1eb62db2008430e376b">ToText</a> ()</td></tr>
<tr class="memdesc:a41c55dab9162d1eb62db2008430e376b inherit pub_methods_classtinyxml2_1_1_x_m_l_node"><td class="mdescLeft"> </td><td class="mdescRight">Safely cast to Text, or null. <br /></td></tr>
<tr class="separator:a41c55dab9162d1eb62db2008430e376b inherit pub_methods_classtinyxml2_1_1_x_m_l_node"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a836e2966ed736fc3c94f70e12a2a3357 inherit pub_methods_classtinyxml2_1_1_x_m_l_node"><td class="memItemLeft" align="right" valign="top"><a id="a836e2966ed736fc3c94f70e12a2a3357"></a>
virtual <a class="el" href="classtinyxml2_1_1_x_m_l_document.html">XMLDocument</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classtinyxml2_1_1_x_m_l_node.html#a836e2966ed736fc3c94f70e12a2a3357">ToDocument</a> ()</td></tr>
<tr class="memdesc:a836e2966ed736fc3c94f70e12a2a3357 inherit pub_methods_classtinyxml2_1_1_x_m_l_node"><td class="mdescLeft"> </td><td class="mdescRight">Safely cast to a Document, or null. <br /></td></tr>
<tr class="separator:a836e2966ed736fc3c94f70e12a2a3357 inherit pub_methods_classtinyxml2_1_1_x_m_l_node"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a174fd4c22c010b58138c1b84a0dfbd51 inherit pub_methods_classtinyxml2_1_1_x_m_l_node"><td class="memItemLeft" align="right" valign="top"><a id="a174fd4c22c010b58138c1b84a0dfbd51"></a>
virtual <a class="el" href="classtinyxml2_1_1_x_m_l_declaration.html">XMLDeclaration</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classtinyxml2_1_1_x_m_l_node.html#a174fd4c22c010b58138c1b84a0dfbd51">ToDeclaration</a> ()</td></tr>
<tr class="memdesc:a174fd4c22c010b58138c1b84a0dfbd51 inherit pub_methods_classtinyxml2_1_1_x_m_l_node"><td class="mdescLeft"> </td><td class="mdescRight">Safely cast to a Declaration, or null. <br /></td></tr>
<tr class="separator:a174fd4c22c010b58138c1b84a0dfbd51 inherit pub_methods_classtinyxml2_1_1_x_m_l_node"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8675a74aa0ada6eccab0c77ef3e5b9bd inherit pub_methods_classtinyxml2_1_1_x_m_l_node"><td class="memItemLeft" align="right" valign="top"><a id="a8675a74aa0ada6eccab0c77ef3e5b9bd"></a>
virtual <a class="el" href="classtinyxml2_1_1_x_m_l_unknown.html">XMLUnknown</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classtinyxml2_1_1_x_m_l_node.html#a8675a74aa0ada6eccab0c77ef3e5b9bd">ToUnknown</a> ()</td></tr>
<tr class="memdesc:a8675a74aa0ada6eccab0c77ef3e5b9bd inherit pub_methods_classtinyxml2_1_1_x_m_l_node"><td class="mdescLeft"> </td><td class="mdescRight">Safely cast to an Unknown, or null. <br /></td></tr>
<tr class="separator:a8675a74aa0ada6eccab0c77ef3e5b9bd inherit pub_methods_classtinyxml2_1_1_x_m_l_node"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a66344989a4b436155bcda72bd6b07b82 inherit pub_methods_classtinyxml2_1_1_x_m_l_node"><td class="memItemLeft" align="right" valign="top">const char * </td><td class="memItemRight" valign="bottom"><a class="el" href="classtinyxml2_1_1_x_m_l_node.html#a66344989a4b436155bcda72bd6b07b82">Value</a> () const</td></tr>
<tr class="separator:a66344989a4b436155bcda72bd6b07b82 inherit pub_methods_classtinyxml2_1_1_x_m_l_node"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a09dd68cf9eae137579f6e50f36487513 inherit pub_methods_classtinyxml2_1_1_x_m_l_node"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classtinyxml2_1_1_x_m_l_node.html#a09dd68cf9eae137579f6e50f36487513">SetValue</a> (const char *val, bool staticMem=false)</td></tr>
<tr class="separator:a09dd68cf9eae137579f6e50f36487513 inherit pub_methods_classtinyxml2_1_1_x_m_l_node"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9b5fc636646fda761d342c72e91cb286 inherit pub_methods_classtinyxml2_1_1_x_m_l_node"><td class="memItemLeft" align="right" valign="top"><a id="a9b5fc636646fda761d342c72e91cb286"></a>
int </td><td class="memItemRight" valign="bottom"><a class="el" href="classtinyxml2_1_1_x_m_l_node.html#a9b5fc636646fda761d342c72e91cb286">GetLineNum</a> () const</td></tr>
<tr class="memdesc:a9b5fc636646fda761d342c72e91cb286 inherit pub_methods_classtinyxml2_1_1_x_m_l_node"><td class="mdescLeft"> </td><td class="mdescRight">Gets the line number the node is in, if the document was parsed from a file. <br /></td></tr>
<tr class="separator:a9b5fc636646fda761d342c72e91cb286 inherit pub_methods_classtinyxml2_1_1_x_m_l_node"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae0f62bc186c56c2e0483ebd52dbfbe34 inherit pub_methods_classtinyxml2_1_1_x_m_l_node"><td class="memItemLeft" align="right" valign="top"><a id="ae0f62bc186c56c2e0483ebd52dbfbe34"></a>
const <a class="el" href="classtinyxml2_1_1_x_m_l_node.html">XMLNode</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classtinyxml2_1_1_x_m_l_node.html#ae0f62bc186c56c2e0483ebd52dbfbe34">Parent</a> () const</td></tr>
<tr class="memdesc:ae0f62bc186c56c2e0483ebd52dbfbe34 inherit pub_methods_classtinyxml2_1_1_x_m_l_node"><td class="mdescLeft"> </td><td class="mdescRight">Get the parent of this node on the DOM. <br /></td></tr>
<tr class="separator:ae0f62bc186c56c2e0483ebd52dbfbe34 inherit pub_methods_classtinyxml2_1_1_x_m_l_node"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac3ab489e6e202a3cd1762d3b332e89d4 inherit pub_methods_classtinyxml2_1_1_x_m_l_node"><td class="memItemLeft" align="right" valign="top"><a id="ac3ab489e6e202a3cd1762d3b332e89d4"></a>
bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classtinyxml2_1_1_x_m_l_node.html#ac3ab489e6e202a3cd1762d3b332e89d4">NoChildren</a> () const</td></tr>
<tr class="memdesc:ac3ab489e6e202a3cd1762d3b332e89d4 inherit pub_methods_classtinyxml2_1_1_x_m_l_node"><td class="mdescLeft"> </td><td class="mdescRight">Returns true if this node has no children. <br /></td></tr>
<tr class="separator:ac3ab489e6e202a3cd1762d3b332e89d4 inherit pub_methods_classtinyxml2_1_1_x_m_l_node"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae7dc225e1018cdd685f7563593a1fe08 inherit pub_methods_classtinyxml2_1_1_x_m_l_node"><td class="memItemLeft" align="right" valign="top"><a id="ae7dc225e1018cdd685f7563593a1fe08"></a>
const <a class="el" href="classtinyxml2_1_1_x_m_l_node.html">XMLNode</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classtinyxml2_1_1_x_m_l_node.html#ae7dc225e1018cdd685f7563593a1fe08">FirstChild</a> () const</td></tr>
<tr class="memdesc:ae7dc225e1018cdd685f7563593a1fe08 inherit pub_methods_classtinyxml2_1_1_x_m_l_node"><td class="mdescLeft"> </td><td class="mdescRight">Get the first child node, or null if none exists. <br /></td></tr>
<tr class="separator:ae7dc225e1018cdd685f7563593a1fe08 inherit pub_methods_classtinyxml2_1_1_x_m_l_node"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1795a35852dc8aae877cc8ded986e59b inherit pub_methods_classtinyxml2_1_1_x_m_l_node"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classtinyxml2_1_1_x_m_l_element.html">XMLElement</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classtinyxml2_1_1_x_m_l_node.html#a1795a35852dc8aae877cc8ded986e59b">FirstChildElement</a> (const char *name=0) const</td></tr>
<tr class="separator:a1795a35852dc8aae877cc8ded986e59b inherit pub_methods_classtinyxml2_1_1_x_m_l_node"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9b8583a277e8e26f4cbbb5492786778e inherit pub_methods_classtinyxml2_1_1_x_m_l_node"><td class="memItemLeft" align="right" valign="top"><a id="a9b8583a277e8e26f4cbbb5492786778e"></a>
const <a class="el" href="classtinyxml2_1_1_x_m_l_node.html">XMLNode</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classtinyxml2_1_1_x_m_l_node.html#a9b8583a277e8e26f4cbbb5492786778e">LastChild</a> () const</td></tr>
<tr class="memdesc:a9b8583a277e8e26f4cbbb5492786778e inherit pub_methods_classtinyxml2_1_1_x_m_l_node"><td class="mdescLeft"> </td><td class="mdescRight">Get the last child node, or null if none exists. <br /></td></tr>
<tr class="separator:a9b8583a277e8e26f4cbbb5492786778e inherit pub_methods_classtinyxml2_1_1_x_m_l_node"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a173e9d1341bc56992e2d320a35936551 inherit pub_methods_classtinyxml2_1_1_x_m_l_node"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classtinyxml2_1_1_x_m_l_element.html">XMLElement</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classtinyxml2_1_1_x_m_l_node.html#a173e9d1341bc56992e2d320a35936551">LastChildElement</a> (const char *name=0) const</td></tr>
<tr class="separator:a173e9d1341bc56992e2d320a35936551 inherit pub_methods_classtinyxml2_1_1_x_m_l_node"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aac667c513d445f8b783e1e15ef9d3551 inherit pub_methods_classtinyxml2_1_1_x_m_l_node"><td class="memItemLeft" align="right" valign="top"><a id="aac667c513d445f8b783e1e15ef9d3551"></a>
const <a class="el" href="classtinyxml2_1_1_x_m_l_node.html">XMLNode</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classtinyxml2_1_1_x_m_l_node.html#aac667c513d445f8b783e1e15ef9d3551">PreviousSibling</a> () const</td></tr>
<tr class="memdesc:aac667c513d445f8b783e1e15ef9d3551 inherit pub_methods_classtinyxml2_1_1_x_m_l_node"><td class="mdescLeft"> </td><td class="mdescRight">Get the previous (left) sibling node of this node. <br /></td></tr>
<tr class="separator:aac667c513d445f8b783e1e15ef9d3551 inherit pub_methods_classtinyxml2_1_1_x_m_l_node"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a872936cae46fb473eb47fec99129fc70 inherit pub_methods_classtinyxml2_1_1_x_m_l_node"><td class="memItemLeft" align="right" valign="top"><a id="a872936cae46fb473eb47fec99129fc70"></a>
const <a class="el" href="classtinyxml2_1_1_x_m_l_element.html">XMLElement</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classtinyxml2_1_1_x_m_l_node.html#a872936cae46fb473eb47fec99129fc70">PreviousSiblingElement</a> (const char *name=0) const</td></tr>
<tr class="memdesc:a872936cae46fb473eb47fec99129fc70 inherit pub_methods_classtinyxml2_1_1_x_m_l_node"><td class="mdescLeft"> </td><td class="mdescRight">Get the previous (left) sibling element of this node, with an optionally supplied name. <br /></td></tr>
<tr class="separator:a872936cae46fb473eb47fec99129fc70 inherit pub_methods_classtinyxml2_1_1_x_m_l_node"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a79db9ef0fe014d27790f2218b87bcbb5 inherit pub_methods_classtinyxml2_1_1_x_m_l_node"><td class="memItemLeft" align="right" valign="top"><a id="a79db9ef0fe014d27790f2218b87bcbb5"></a>
const <a class="el" href="classtinyxml2_1_1_x_m_l_node.html">XMLNode</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classtinyxml2_1_1_x_m_l_node.html#a79db9ef0fe014d27790f2218b87bcbb5">NextSibling</a> () const</td></tr>
<tr class="memdesc:a79db9ef0fe014d27790f2218b87bcbb5 inherit pub_methods_classtinyxml2_1_1_x_m_l_node"><td class="mdescLeft"> </td><td class="mdescRight">Get the next (right) sibling node of this node. <br /></td></tr>
<tr class="separator:a79db9ef0fe014d27790f2218b87bcbb5 inherit pub_methods_classtinyxml2_1_1_x_m_l_node"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1264c86233328f0cd36297552d982f80 inherit pub_methods_classtinyxml2_1_1_x_m_l_node"><td class="memItemLeft" align="right" valign="top"><a id="a1264c86233328f0cd36297552d982f80"></a>
const <a class="el" href="classtinyxml2_1_1_x_m_l_element.html">XMLElement</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classtinyxml2_1_1_x_m_l_node.html#a1264c86233328f0cd36297552d982f80">NextSiblingElement</a> (const char *name=0) const</td></tr>
<tr class="memdesc:a1264c86233328f0cd36297552d982f80 inherit pub_methods_classtinyxml2_1_1_x_m_l_node"><td class="mdescLeft"> </td><td class="mdescRight">Get the next (right) sibling element of this node, with an optionally supplied name. <br /></td></tr>
<tr class="separator:a1264c86233328f0cd36297552d982f80 inherit pub_methods_classtinyxml2_1_1_x_m_l_node"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aeb249ed60f4e8bfad3709151c3ee4286 inherit pub_methods_classtinyxml2_1_1_x_m_l_node"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classtinyxml2_1_1_x_m_l_node.html">XMLNode</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classtinyxml2_1_1_x_m_l_node.html#aeb249ed60f4e8bfad3709151c3ee4286">InsertEndChild</a> (<a class="el" href="classtinyxml2_1_1_x_m_l_node.html">XMLNode</a> *addThis)</td></tr>
<tr class="separator:aeb249ed60f4e8bfad3709151c3ee4286 inherit pub_methods_classtinyxml2_1_1_x_m_l_node"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8ff7dc071f3a1a6ae2ac25a37492865d inherit pub_methods_classtinyxml2_1_1_x_m_l_node"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classtinyxml2_1_1_x_m_l_node.html">XMLNode</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classtinyxml2_1_1_x_m_l_node.html#a8ff7dc071f3a1a6ae2ac25a37492865d">InsertFirstChild</a> (<a class="el" href="classtinyxml2_1_1_x_m_l_node.html">XMLNode</a> *addThis)</td></tr>
<tr class="separator:a8ff7dc071f3a1a6ae2ac25a37492865d inherit pub_methods_classtinyxml2_1_1_x_m_l_node"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a85adb8f0b7477eec30f9a41d420b09c2 inherit pub_methods_classtinyxml2_1_1_x_m_l_node"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classtinyxml2_1_1_x_m_l_node.html">XMLNode</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classtinyxml2_1_1_x_m_l_node.html#a85adb8f0b7477eec30f9a41d420b09c2">InsertAfterChild</a> (<a class="el" href="classtinyxml2_1_1_x_m_l_node.html">XMLNode</a> *afterThis, <a class="el" href="classtinyxml2_1_1_x_m_l_node.html">XMLNode</a> *addThis)</td></tr>
<tr class="separator:a85adb8f0b7477eec30f9a41d420b09c2 inherit pub_methods_classtinyxml2_1_1_x_m_l_node"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0360085cc54df5bff85d5c5da13afdce inherit pub_methods_classtinyxml2_1_1_x_m_l_node"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classtinyxml2_1_1_x_m_l_node.html#a0360085cc54df5bff85d5c5da13afdce">DeleteChildren</a> ()</td></tr>
<tr class="separator:a0360085cc54df5bff85d5c5da13afdce inherit pub_methods_classtinyxml2_1_1_x_m_l_node"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a363b6edbd6ebd55f8387d2b89f2b0921 inherit pub_methods_classtinyxml2_1_1_x_m_l_node"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classtinyxml2_1_1_x_m_l_node.html#a363b6edbd6ebd55f8387d2b89f2b0921">DeleteChild</a> (<a class="el" href="classtinyxml2_1_1_x_m_l_node.html">XMLNode</a> *node)</td></tr>
<tr class="separator:a363b6edbd6ebd55f8387d2b89f2b0921 inherit pub_methods_classtinyxml2_1_1_x_m_l_node"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a62c71b6bf8734b5424063b8d9a61c266 inherit pub_methods_classtinyxml2_1_1_x_m_l_node"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classtinyxml2_1_1_x_m_l_node.html">XMLNode</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classtinyxml2_1_1_x_m_l_node.html#a62c71b6bf8734b5424063b8d9a61c266">DeepClone</a> (<a class="el" href="classtinyxml2_1_1_x_m_l_document.html">XMLDocument</a> *target) const</td></tr>
<tr class="separator:a62c71b6bf8734b5424063b8d9a61c266 inherit pub_methods_classtinyxml2_1_1_x_m_l_node"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a002978fc889cc011d143185f2377eca2 inherit pub_methods_classtinyxml2_1_1_x_m_l_node"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classtinyxml2_1_1_x_m_l_node.html#a002978fc889cc011d143185f2377eca2">SetUserData</a> (void *userData)</td></tr>
<tr class="separator:a002978fc889cc011d143185f2377eca2 inherit pub_methods_classtinyxml2_1_1_x_m_l_node"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7f0687574afa03bc479dc44f29db0afe inherit pub_methods_classtinyxml2_1_1_x_m_l_node"><td class="memItemLeft" align="right" valign="top">void * </td><td class="memItemRight" valign="bottom"><a class="el" href="classtinyxml2_1_1_x_m_l_node.html#a7f0687574afa03bc479dc44f29db0afe">GetUserData</a> () const</td></tr>
<tr class="separator:a7f0687574afa03bc479dc44f29db0afe inherit pub_methods_classtinyxml2_1_1_x_m_l_node"><td class="memSeparator" colspan="2"> </td></tr>
</table>
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
<div class="textblock"><p>An XML Comment. </p>
</div><h2 class="groupheader">Member Function Documentation</h2>
<a id="a4a33dc32fae0285b03f9cfcb3e43e122"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a4a33dc32fae0285b03f9cfcb3e43e122">◆ </a></span>Accept()</h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual bool tinyxml2::XMLComment::Accept </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classtinyxml2_1_1_x_m_l_visitor.html">XMLVisitor</a> * </td>
<td class="paramname"><em>visitor</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Accept a hierarchical visit of the nodes in the TinyXML-2 DOM. Every node in the XML tree will be conditionally visited and the host will be called back via the <a class="el" href="classtinyxml2_1_1_x_m_l_visitor.html">XMLVisitor</a> interface.</p>
<p>This is essentially a SAX interface for TinyXML-2. (Note however it doesn't re-parse the XML for the callbacks, so the performance of TinyXML-2 is unchanged by using this interface versus any other.)</p>
<p>The interface has been based on ideas from:</p>
<ul>
<li><a href="http://www.saxproject.org/">http://www.saxproject.org/</a></li>
<li><a href="http://c2.com/cgi/wiki?HierarchicalVisitorPattern">http://c2.com/cgi/wiki?HierarchicalVisitorPattern</a></li>
</ul>
<p>Which are both good references for "visiting".</p>
<p>An example of using <a class="el" href="classtinyxml2_1_1_x_m_l_comment.html#a4a33dc32fae0285b03f9cfcb3e43e122">Accept()</a>: </p><pre class="fragment">XMLPrinter printer;
tinyxmlDoc.Accept( &printer );
const char* xmlcstr = printer.CStr();
</pre>
<p>Implements <a class="el" href="classtinyxml2_1_1_x_m_l_node.html#a81e66df0a44c67a7af17f3b77a152785">tinyxml2::XMLNode</a>.</p>
</div>
</div>
<a id="a08991cc63fadf7e95078ac4f9ea1b073"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a08991cc63fadf7e95078ac4f9ea1b073">◆ </a></span>ShallowClone()</h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual <a class="el" href="classtinyxml2_1_1_x_m_l_node.html">XMLNode</a>* tinyxml2::XMLComment::ShallowClone </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classtinyxml2_1_1_x_m_l_document.html">XMLDocument</a> * </td>
<td class="paramname"><em>document</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Make a copy of this node, but not its children. You may pass in a Document pointer that will be the owner of the new Node. If the 'document' is null, then the node returned will be allocated from the current Document. (this-><a class="el" href="classtinyxml2_1_1_x_m_l_node.html#af343d1ef0b45c0020e62d784d7e67a68" title="Get the XMLDocument that owns this XMLNode. ">GetDocument()</a>)</p>
<p>Note: if called on a <a class="el" href="classtinyxml2_1_1_x_m_l_document.html">XMLDocument</a>, this will return null. </p>
<p>Implements <a class="el" href="classtinyxml2_1_1_x_m_l_node.html#a8402cbd3129d20e9e6024bbcc0531283">tinyxml2::XMLNode</a>.</p>
</div>
</div>
<a id="a6f7d227b25afa8cc3c763b7cc8833739"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a6f7d227b25afa8cc3c763b7cc8833739">◆ </a></span>ShallowEqual()</h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual bool tinyxml2::XMLComment::ShallowEqual </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classtinyxml2_1_1_x_m_l_node.html">XMLNode</a> * </td>
<td class="paramname"><em>compare</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Test if 2 nodes are the same, but don't test children. The 2 nodes do not need to be in the same Document.</p>
<p>Note: if called on a <a class="el" href="classtinyxml2_1_1_x_m_l_document.html">XMLDocument</a>, this will return false. </p>
<p>Implements <a class="el" href="classtinyxml2_1_1_x_m_l_node.html#a7ce18b751c3ea09eac292dca264f9226">tinyxml2::XMLNode</a>.</p>
</div>
</div>
<hr/>The documentation for this class was generated from the following file:<ul>
<li><a class="el" href="tinyxml2_8h_source.html">tinyxml2.h</a></li>
</ul>
</div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Sun Dec 10 2017 20:04:44 for TinyXML-2 by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.13
</small></address>
</body>
</html>
|
100treeedu/a6-6-1____.html | yicold/axure-case | <!DOCTYPE html>
<html>
<head>
<title>A6-6-1消息推送</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<meta name="apple-mobile-web-app-capable" content="yes"/>
<link href="resources/css/jquery-ui-themes.css" type="text/css" rel="stylesheet"/>
<link href="resources/css/axure_rp_page.css" type="text/css" rel="stylesheet"/>
<link href="data/styles.css" type="text/css" rel="stylesheet"/>
<link href="files/a6-6-1____/styles.css" type="text/css" rel="stylesheet"/>
<script src="resources/scripts/jquery-1.7.1.min.js"></script>
<script src="resources/scripts/jquery-ui-1.8.10.custom.min.js"></script>
<script src="resources/scripts/axure/axQuery.js"></script>
<script src="resources/scripts/axure/globals.js"></script>
<script src="resources/scripts/axutils.js"></script>
<script src="resources/scripts/axure/annotation.js"></script>
<script src="resources/scripts/axure/axQuery.std.js"></script>
<script src="resources/scripts/axure/doc.js"></script>
<script src="data/document.js"></script>
<script src="resources/scripts/messagecenter.js"></script>
<script src="resources/scripts/axure/events.js"></script>
<script src="resources/scripts/axure/recording.js"></script>
<script src="resources/scripts/axure/action.js"></script>
<script src="resources/scripts/axure/expr.js"></script>
<script src="resources/scripts/axure/geometry.js"></script>
<script src="resources/scripts/axure/flyout.js"></script>
<script src="resources/scripts/axure/ie.js"></script>
<script src="resources/scripts/axure/model.js"></script>
<script src="resources/scripts/axure/repeater.js"></script>
<script src="resources/scripts/axure/sto.js"></script>
<script src="resources/scripts/axure/utils.temp.js"></script>
<script src="resources/scripts/axure/variables.js"></script>
<script src="resources/scripts/axure/drag.js"></script>
<script src="resources/scripts/axure/move.js"></script>
<script src="resources/scripts/axure/visibility.js"></script>
<script src="resources/scripts/axure/style.js"></script>
<script src="resources/scripts/axure/adaptive.js"></script>
<script src="resources/scripts/axure/tree.js"></script>
<script src="resources/scripts/axure/init.temp.js"></script>
<script src="files/a6-6-1____/data.js"></script>
<script src="resources/scripts/axure/legacy.js"></script>
<script src="resources/scripts/axure/viewer.js"></script>
<script src="resources/scripts/axure/math.js"></script>
<script type="text/javascript">
$axure.utils.getTransparentGifPath = function() { return 'resources/images/transparent.gif'; };
$axure.utils.getOtherPath = function() { return 'resources/Other.html'; };
$axure.utils.getReloadPath = function() { return 'resources/reload.html'; };
</script>
</head>
<body>
<div id="base" class="">
<!-- Unnamed (Group) -->
<div id="u6387" class="ax_default">
<!-- Unnamed (Rectangle) -->
<div id="u6388" class="ax_default shape1">
<div id="u6388_div" class=""></div>
<!-- Unnamed () -->
<div id="u6389" class="text" style="display: none; visibility: hidden">
<p><span></span></p>
</div>
</div>
<!-- Unnamed (Rectangle) -->
<div id="u6390" class="ax_default shape1">
<div id="u6390_div" class=""></div>
<!-- Unnamed () -->
<div id="u6391" class="text" style="display: none; visibility: hidden">
<p><span></span></p>
</div>
</div>
<!-- Unnamed (Rectangle) -->
<div id="u6392" class="ax_default shape1">
<div id="u6392_div" class=""></div>
<!-- Unnamed () -->
<div id="u6393" class="text" style="display: none; visibility: hidden">
<p><span></span></p>
</div>
</div>
<!-- Unnamed (Rectangle) -->
<div id="u6394" class="ax_default shape1">
<div id="u6394_div" class=""></div>
<!-- Unnamed () -->
<div id="u6395" class="text" style="display: none; visibility: hidden">
<p><span></span></p>
</div>
</div>
<!-- Unnamed (Rectangle) -->
<div id="u6396" class="ax_default shape1">
<div id="u6396_div" class=""></div>
<!-- Unnamed () -->
<div id="u6397" class="text" style="display: none; visibility: hidden">
<p><span></span></p>
</div>
</div>
<!-- Unnamed (Rectangle) -->
<div id="u6398" class="ax_default shape1">
<div id="u6398_div" class=""></div>
<!-- Unnamed () -->
<div id="u6399" class="text" style="display: none; visibility: hidden">
<p><span></span></p>
</div>
</div>
<!-- Unnamed (Rectangle) -->
<div id="u6400" class="ax_default shape1">
<div id="u6400_div" class=""></div>
<!-- Unnamed () -->
<div id="u6401" class="text" style="display: none; visibility: hidden">
<p><span></span></p>
</div>
</div>
<!-- Unnamed (Rectangle) -->
<div id="u6402" class="ax_default shape1">
<div id="u6402_div" class=""></div>
<!-- Unnamed () -->
<div id="u6403" class="text" style="display: none; visibility: hidden">
<p><span></span></p>
</div>
</div>
<!-- Unnamed (Rectangle) -->
<div id="u6404" class="ax_default shape1">
<div id="u6404_div" class=""></div>
<!-- Unnamed () -->
<div id="u6405" class="text" style="display: none; visibility: hidden">
<p><span></span></p>
</div>
</div>
</div>
<!-- Unnamed (Rectangle) -->
<div id="u6406" class="ax_default shape2">
<div id="u6406_div" class=""></div>
<!-- Unnamed () -->
<div id="u6407" class="text" style="display: none; visibility: hidden">
<p><span></span></p>
</div>
</div>
<!-- Unnamed (Group) -->
<div id="u6408" class="ax_default">
<!-- time_panel (Rectangle) -->
<div id="u6409" class="ax_default shape2" data-label="time_panel">
<div id="u6409_div" class=""></div>
<!-- Unnamed () -->
<div id="u6410" class="text" style="visibility: visible;">
<p><span>05:28</span></p>
</div>
</div>
<!-- Unnamed (Image) -->
<div id="u6411" class="ax_default _图片1">
<img id="u6411_img" class="img " src="images/a6-6__/u6320.png"/>
<!-- Unnamed () -->
<div id="u6412" class="text" style="display: none; visibility: hidden">
<p><span></span></p>
</div>
</div>
<!-- Unnamed (Image) -->
<div id="u6413" class="ax_default image3">
<img id="u6413_img" class="img " src="images/a6-6__/u6322.png"/>
<!-- Unnamed () -->
<div id="u6414" class="text" style="display: none; visibility: hidden">
<p><span></span></p>
</div>
</div>
<!-- Unnamed (Image) -->
<div id="u6415" class="ax_default image3">
<img id="u6415_img" class="img " src="images/a6-6__/u6324.png"/>
<!-- Unnamed () -->
<div id="u6416" class="text" style="display: none; visibility: hidden">
<p><span></span></p>
</div>
</div>
<!-- Unnamed (Rectangle) -->
<div id="u6417" class="ax_default">
<div id="u6417_div" class=""></div>
<!-- Unnamed () -->
<div id="u6418" class="text" style="visibility: visible;">
<p><span>80%</span></p>
</div>
</div>
<!-- timer (Dynamic Panel) -->
<div id="u6419" class="ax_default" data-label="timer">
<div id="u6419_state0" class="panel_state" data-label="State1">
<div id="u6419_state0_content" class="panel_state_content">
</div>
</div>
<div id="u6419_state1" class="panel_state" data-label="State2" style="display: none; visibility: hidden;">
<div id="u6419_state1_content" class="panel_state_content">
</div>
</div>
</div>
<!-- Unnamed (Image) -->
<div id="u6420" class="ax_default _图片1">
<img id="u6420_img" class="img " src="images/a6-6__/u6329.png"/>
<!-- Unnamed () -->
<div id="u6421" class="text" style="display: none; visibility: hidden">
<p><span></span></p>
</div>
</div>
</div>
<!-- Unnamed (Group) -->
<div id="u6422" class="ax_default">
</div>
<!-- Unnamed (Group) -->
<div id="u6423" class="ax_default">
</div>
<!-- Unnamed (Image) -->
<div id="u6424" class="ax_default image1">
<img id="u6424_img" class="img " src="images/a1登录/u524.png"/>
<!-- Unnamed () -->
<div id="u6425" class="text" style="display: none; visibility: hidden">
<p><span></span></p>
</div>
</div>
<!-- Unnamed (Rectangle) -->
<div id="u6426" class="ax_default label">
<div id="u6426_div" class=""></div>
<!-- Unnamed () -->
<div id="u6427" class="text" style="visibility: visible;">
<p><span>推送设置</span></p>
</div>
</div>
<!-- Unnamed (Drop) -->
<div id="u6428" class="ax_default box_2">
<img id="u6428_img" class="img " src="images/a1登录/u510.png"/>
<!-- Unnamed () -->
<div id="u6429" class="text" style="visibility: visible;">
<p><span>1</span></p>
</div>
</div>
<!-- Unnamed (Rectangle) -->
<div id="u6430" class="ax_default label">
<div id="u6430_div" class=""></div>
<!-- Unnamed () -->
<div id="u6431" class="text" style="visibility: visible;">
<p><span>默认全部开启;</span></p>
</div>
</div>
<!-- Unnamed (Ellipse) -->
<div id="u6432" class="ax_default box_2">
<img id="u6432_img" class="img " src="images/a1登录/u514.png"/>
<!-- Unnamed () -->
<div id="u6433" class="text" style="visibility: visible;">
<p><span>1</span></p>
</div>
</div>
<!-- Unnamed (Rectangle) -->
<div id="u6434" class="ax_default box_21">
<div id="u6434_div" class=""></div>
<!-- Unnamed () -->
<div id="u6435" class="text" style="display: none; visibility: hidden">
<p><span></span></p>
</div>
</div>
<!-- Unnamed (Rectangle) -->
<div id="u6436" class="ax_default label1">
<div id="u6436_div" class=""></div>
<!-- Unnamed () -->
<div id="u6437" class="text" style="visibility: visible;">
<p><span>学校通知</span></p>
</div>
</div>
<!-- Unnamed (Rectangle) -->
<div id="u6438" class="ax_default label1">
<div id="u6438_div" class=""></div>
<!-- Unnamed () -->
<div id="u6439" class="text" style="visibility: visible;">
<p><span>接收来自学校的推送</span></p>
</div>
</div>
<!-- Unnamed (Rectangle) -->
<div id="u6440" class="ax_default box_11">
<div id="u6440_div" class=""></div>
<!-- Unnamed () -->
<div id="u6441" class="text" style="display: none; visibility: hidden">
<p><span></span></p>
</div>
</div>
<!-- Unnamed (Rectangle) -->
<div id="u6442" class="ax_default box_21">
<div id="u6442_div" class=""></div>
<!-- Unnamed () -->
<div id="u6443" class="text" style="display: none; visibility: hidden">
<p><span></span></p>
</div>
</div>
<!-- Unnamed (Rectangle) -->
<div id="u6444" class="ax_default box_21">
<div id="u6444_div" class=""></div>
<!-- Unnamed () -->
<div id="u6445" class="text" style="display: none; visibility: hidden">
<p><span></span></p>
</div>
</div>
<!-- Unnamed (Rectangle) -->
<div id="u6446" class="ax_default label1">
<div id="u6446_div" class=""></div>
<!-- Unnamed () -->
<div id="u6447" class="text" style="visibility: visible;">
<p><span>评论通知</span></p>
</div>
</div>
<!-- Unnamed (Rectangle) -->
<div id="u6448" class="ax_default label1">
<div id="u6448_div" class=""></div>
<!-- Unnamed () -->
<div id="u6449" class="text" style="visibility: visible;">
<p><span>接收来自评价的回复</span></p>
</div>
</div>
<!-- Unnamed (Rectangle) -->
<div id="u6450" class="ax_default box_11">
<div id="u6450_div" class=""></div>
<!-- Unnamed () -->
<div id="u6451" class="text" style="display: none; visibility: hidden">
<p><span></span></p>
</div>
</div>
<!-- Unnamed (Rectangle) -->
<div id="u6452" class="ax_default box_21">
<div id="u6452_div" class=""></div>
<!-- Unnamed () -->
<div id="u6453" class="text" style="display: none; visibility: hidden">
<p><span></span></p>
</div>
</div>
<!-- Unnamed (Rectangle) -->
<div id="u6454" class="ax_default box_21">
<div id="u6454_div" class=""></div>
<!-- Unnamed () -->
<div id="u6455" class="text" style="display: none; visibility: hidden">
<p><span></span></p>
</div>
</div>
<!-- Unnamed (Rectangle) -->
<div id="u6456" class="ax_default label1">
<div id="u6456_div" class=""></div>
<!-- Unnamed () -->
<div id="u6457" class="text" style="visibility: visible;">
<p><span>消息通知</span></p>
</div>
</div>
<!-- Unnamed (Rectangle) -->
<div id="u6458" class="ax_default label1">
<div id="u6458_div" class=""></div>
<!-- Unnamed () -->
<div id="u6459" class="text" style="visibility: visible;">
<p><span>接收来自好友、群组的通知</span></p>
</div>
</div>
<!-- Unnamed (Rectangle) -->
<div id="u6460" class="ax_default box_11">
<div id="u6460_div" class=""></div>
<!-- Unnamed () -->
<div id="u6461" class="text" style="display: none; visibility: hidden">
<p><span></span></p>
</div>
</div>
<!-- Unnamed (Rectangle) -->
<div id="u6462" class="ax_default box_21">
<div id="u6462_div" class=""></div>
<!-- Unnamed () -->
<div id="u6463" class="text" style="display: none; visibility: hidden">
<p><span></span></p>
</div>
</div>
<!-- Unnamed (Image) -->
<div id="u6464" class="ax_default image">
<img id="u6464_img" class="img " src="images/a6-6-1____/u6464.png"/>
<!-- Unnamed () -->
<div id="u6465" class="text" style="display: none; visibility: hidden">
<p><span></span></p>
</div>
</div>
</div>
</body>
</html>
|
index.html | YaYaStudio/YaYaStudio.github.io | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<body style="background-color: lightslategrey; color: #FFFFFF;text-align: center;">
<h1>Hello YaYaStudio</h1>
</body>
</html>
|
t1a06-Spy-Name.html | iamivan15/ivan-javascript | t1a06-Spy-Name.html
<h1 align=center>Spy program by fred</h1>
Write your private ideas here<br>
<textarea id="myArea1" rows=5 cols=70>This is good</textarea><br><br>
<input type=button value=encrypt onclick="{
myStart = document.getElementById('myArea1').value.toUpperCase()
//alert(myStart)
myMax = document.getElementById('myArea1').value.length
document.getElementById('myArea2').value = ''
for (myLoop = 0; myLoop <= myMax-1; myLoop++ ){
myTemp = ''
if (myStart[myLoop] == 'A'){myTemp = 'S'}
if (myStart[myLoop] == 'B'){myTemp = 'F'}
if (myStart[myLoop] == 'C'){myTemp = 'T'}
if (myStart[myLoop] == 'D'){myTemp = 'V'}
if (myStart[myLoop] == 'E'){myTemp = 'X'}
if (myStart[myLoop] == 'J'){myTemp = 'I'}
if (myStart[myLoop] == 'K'){myTemp = 'L'}
if (myStart[myLoop] == 'L'){myTemp = 'R'}
if (myStart[myLoop] == 'M'){myTemp = 'D'}
if (myStart[myLoop] == 'N'){myTemp = 'E'}
if (myStart[myLoop] == 'P'){myTemp = 'O'}
if (myStart[myLoop] == 'Q'){myTemp = 'P'}
if (myStart[myLoop] == 'R'){myTemp = 'Q'}
if (myStart[myLoop] == 'U'){myTemp = ';'}
if (myStart[myLoop] == 'V'){myTemp = 'C'}
if (myStart[myLoop] == 'W'){myTemp = 'U'}
if (myStart[myLoop] == 'X'){myTemp = 'M'}
if (myStart[myLoop] == 'Y'){myTemp = 'H'}
if (myStart[myLoop] == 'Z'){myTemp = 'J'}
if (myStart[myLoop] == 'T'){myTemp = 'G'}
if (myStart[myLoop] == 'H'){myTemp = 'A'}
if (myStart[myLoop] == 'I'){myTemp = 'N'}
if (myStart[myLoop] == 'S'){myTemp = 'B'}
if (myStart[myLoop] == 'G'){myTemp = 'W'}
if (myStart[myLoop] == 'O'){myTemp = 'Z'}
if (myStart[myLoop] == 'D'){myTemp = 'K'}
if (myStart[myLoop] == 'F'){myTemp = 'Y'}
if (myStart[myLoop] == ' '){myTemp = '7'}
if (myStart[myLoop] == '3'){myTemp = ' '}
if (myStart[myLoop] == '1'){myTemp = '2'}
if (myStart[myLoop] == '2'){myTemp = '3'}
if (myStart[myLoop] == '4'){myTemp = '5'}
if (myStart[myLoop] == '5'){myTemp = '4'}
if (myStart[myLoop] == '6'){myTemp = '8'}
if (myStart[myLoop] == '8'){myTemp = '0'}
if (myStart[myLoop] == '0'){myTemp = '9'}
if (myStart[myLoop] == '9'){myTemp = '6'}
if (myStart[myLoop] == '7'){myTemp = '*'}
document.getElementById('myArea2').value += myTemp
}
}"><br>
The encrypted version to email goes here<br>
<textarea id="myArea2" rows=5 cols=70></textarea><br><br>
The decryipted reply goes here.<br>
<input type=button value=decrypt onclick="{
myStart = document.getElementById('myArea2').value.toUpperCase()
// alert(document.getElementById('myArea2').value.length)
myMax = document.getElementById('myArea2').value.length
document.getElementById('myArea3').value = ''
for (myLoop = 0; myLoop <= myMax-1; myLoop++ ){
myTemp = ''
if (myStart[myLoop] == 'S'){myTemp = 'A'}
if (myStart[myLoop] == 'F'){myTemp = 'B'}
if (myStart[myLoop] == 'T'){myTemp = 'C'}
if (myStart[myLoop] == 'V'){myTemp = 'D'}
if (myStart[myLoop] == 'X'){myTemp = 'E'}
if (myStart[myLoop] == 'I'){myTemp = 'J'}
if (myStart[myLoop] == 'L'){myTemp = 'K'}
if (myStart[myLoop] == 'R'){myTemp = 'L'}
if (myStart[myLoop] == 'D'){myTemp = 'M'}
if (myStart[myLoop] == 'E'){myTemp = 'N'}
if (myStart[myLoop] == 'O'){myTemp = 'P'}
if (myStart[myLoop] == 'P'){myTemp = 'Q'}
if (myStart[myLoop] == 'Q'){myTemp = 'R'}
if (myStart[myLoop] == ';'){myTemp = 'U'}
if (myStart[myLoop] == 'C'){myTemp = 'V'}
if (myStart[myLoop] == 'U'){myTemp = 'W'}
if (myStart[myLoop] == 'M'){myTemp = 'X'}
if (myStart[myLoop] == 'H'){myTemp = 'Y'}
if (myStart[myLoop] == 'J'){myTemp = 'Z'}
if (myStart[myLoop] == 'G'){myTemp = 'T'}
if (myStart[myLoop] == 'A'){myTemp = 'H'}
if (myStart[myLoop] == 'N'){myTemp = 'I'}
if (myStart[myLoop] == 'B'){myTemp = 'S'}
if (myStart[myLoop] == 'W'){myTemp = 'G'}
if (myStart[myLoop] == 'Z'){myTemp = 'O'}
if (myStart[myLoop] == 'K'){myTemp = 'D'}
if (myStart[myLoop] == 'Y'){myTemp = 'F'}
if (myStart[myLoop] == '7'){myTemp = ' '}
if (myStart[myLoop] == ' '){myTemp = '3'}
if (myStart[myLoop] == '2'){myTemp = '1'}
if (myStart[myLoop] == '3'){myTemp = '2'}
if (myStart[myLoop] == '4'){myTemp = '5'}
if (myStart[myLoop] == '5'){myTemp = '4'}
if (myStart[myLoop] == '8'){myTemp = '6'}
if (myStart[myLoop] == '0'){myTemp = '8'}
if (myStart[myLoop] == '9'){myTemp = '0'}
if (myStart[myLoop] == '6'){myTemp = '9'}
if (myStart[myLoop] == '*'){myTemp = '7'}
document.getElementById('myArea3').value += myTemp
}
}"><br>
<textarea id="myArea3" rows=5 cols=70></textarea><br><br>
|
新建文件夹/material_admin_v-1.5-2/Template/index.html | LilShy/test | <!DOCTYPE html>
<!--[if IE 9 ]><html class="ie9"><![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Material Admin</title>
<!-- CSS -->
<link href="jquery/css/app.min.1.css" rel="stylesheet">
<link href="jquery/css/app.min.2.css" rel="stylesheet">
<style type="text/css">
.col-sm-6 {
height: 100vh;
}
h2 {
width: 300px;
padding: 20px 30px 23px;
font-weight: normal;
font-size: 50px;
position: absolute;
border-radius: 5px;
margin: 0;
text-align: center;
min-height: 100px;
left: 50%;
margin-left: -150px;
top: 50%;
margin-top: -50px;
}
.ng h2 {
color: #2196F3;
background-color: #fff;
}
.jq h2 {
color: #fff;
background-color: #2196F3;
}
@media (max-width: 768px) {
.col-sm-6 {
height: 50vh;
width: 100%;
display: block;
}
h2 {
font-size: 30px;
min-height: 76px;
margin-top: -38px;
width: 200px;
margin-left: -100px;
}
}
</style>
</head>
<body class="p-0">
<a class="col-sm-6 bgm-blue ng" href="angular">
<h2>AngularJs</h2>
</div>
<a class="col-sm-6 jq" href="jquery">
<h2>jQuery</h2>
</a>
</body>
</html>
|
static/javadoc/pub/com/avaje/ebean/config/dbplatform/class-use/H2SequenceIdGenerator.html | archive-avaje-org/archive-avaje-org.github.io | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_10-beta) on Mon May 10 15:22:34 NZST 2010 -->
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<TITLE>
Uses of Class com.avaje.ebean.config.dbplatform.H2SequenceIdGenerator (Ebean 2.6.0 API)
</TITLE>
<META NAME="date" CONTENT="2010-05-10">
<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 com.avaje.ebean.config.dbplatform.H2SequenceIdGenerator (Ebean 2.6.0 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="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../com/avaje/ebean/config/dbplatform/H2SequenceIdGenerator.html" title="class in com.avaje.ebean.config.dbplatform"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../index.html?com/avaje/ebean/config/dbplatform/\class-useH2SequenceIdGenerator.html" target="_top"><B>FRAMES</B></A>
<A HREF="H2SequenceIdGenerator.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>com.avaje.ebean.config.dbplatform.H2SequenceIdGenerator</B></H2>
</CENTER>
No usage of com.avaje.ebean.config.dbplatform.H2SequenceIdGenerator
<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="../../../../../../com/avaje/ebean/config/dbplatform/H2SequenceIdGenerator.html" title="class in com.avaje.ebean.config.dbplatform"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../index.html?com/avaje/ebean/config/dbplatform/\class-useH2SequenceIdGenerator.html" target="_top"><B>FRAMES</B></A>
<A HREF="H2SequenceIdGenerator.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 © 2010. All Rights Reserved.
</BODY>
</HTML>
|
testdata/goldens/java/com.google.cloud.speech.v1p1beta1.AdaptationSettings.Builder.html | googleapis/doc-templates | <!DOCTYPE html>
<html devsite="">
<head>
<meta name="project_path" value="/java/_project.yaml">
<meta name="book_path" value="/java/_book.yaml">
</head>
<body>
{% verbatim %}
<div>
<article data-uid="com.google.cloud.speech.v1p1beta1.AdaptationSettings.Builder">
<h1 class="page-title">Class AdaptationSettings.Builder
</h1>
<div class="codewrapper">
<pre class="prettyprint"><code>public static class AdaptationSettings.Builder extends ClientSettings.Builder<AdaptationSettings,AdaptationSettings.Builder></code></pre>
</div>
<div class="markdown level0 summary"><p>Builder for AdaptationSettings.</p>
</div>
<div class="inheritance">
<h2>Inheritance</h2>
<span><a class="xref" href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html">java.lang.Object</a></span> <span> > </span>
<span><a class="xref" href="https://cloud.google.com/java/docs/reference/gax/latest/com.google.api.gax.rpc.ClientSettings.Builder.html">ClientSettings.Builder</a></span> <span> > </span>
<span class="xref">AdaptationSettings.Builder</span>
</div>
<div class="inheritedMembers expandable">
<h2 class="showalways">Inherited Members</h2>
<div>
<a class="xref" href="https://cloud.google.com/java/docs/reference/gax/latest/com.google.api.gax.rpc.ClientSettings.Builder.html#com_google_api_gax_rpc_ClientSettings_Builder_applyToAllUnaryMethods_java_lang_Iterable_com_google_api_gax_rpc_UnaryCallSettings_Builder_______com_google_api_core_ApiFunction_com_google_api_gax_rpc_UnaryCallSettings_Builder______java_lang_Void__">ClientSettings.Builder.applyToAllUnaryMethods(Iterable<UnaryCallSettings.Builder<?,?>>,ApiFunction<UnaryCallSettings.Builder<?,?>,Void>)</a>
</div>
<div>
<a class="xref" href="https://cloud.google.com/java/docs/reference/gax/latest/com.google.api.gax.rpc.ClientSettings.Builder.html#com_google_api_gax_rpc_ClientSettings_Builder_build__">ClientSettings.Builder.build()</a>
</div>
<div>
<span class="xref">com.google.api.gax.rpc.ClientSettings.Builder.getBackgroundExecutorProvider()</span>
</div>
<div>
<a class="xref" href="https://cloud.google.com/java/docs/reference/gax/latest/com.google.api.gax.rpc.ClientSettings.Builder.html#com_google_api_gax_rpc_ClientSettings_Builder_getClock__">ClientSettings.Builder.getClock()</a>
</div>
<div>
<a class="xref" href="https://cloud.google.com/java/docs/reference/gax/latest/com.google.api.gax.rpc.ClientSettings.Builder.html#com_google_api_gax_rpc_ClientSettings_Builder_getCredentialsProvider__">ClientSettings.Builder.getCredentialsProvider()</a>
</div>
<div>
<a class="xref" href="https://cloud.google.com/java/docs/reference/gax/latest/com.google.api.gax.rpc.ClientSettings.Builder.html#com_google_api_gax_rpc_ClientSettings_Builder_getEndpoint__">ClientSettings.Builder.getEndpoint()</a>
</div>
<div>
<a class="xref" href="https://cloud.google.com/java/docs/reference/gax/latest/com.google.api.gax.rpc.ClientSettings.Builder.html#com_google_api_gax_rpc_ClientSettings_Builder_getExecutorProvider__">ClientSettings.Builder.getExecutorProvider()</a>
</div>
<div>
<a class="xref" href="https://cloud.google.com/java/docs/reference/gax/latest/com.google.api.gax.rpc.ClientSettings.Builder.html#com_google_api_gax_rpc_ClientSettings_Builder_getHeaderProvider__">ClientSettings.Builder.getHeaderProvider()</a>
</div>
<div>
<a class="xref" href="https://cloud.google.com/java/docs/reference/gax/latest/com.google.api.gax.rpc.ClientSettings.Builder.html#com_google_api_gax_rpc_ClientSettings_Builder_getInternalHeaderProvider__">ClientSettings.Builder.getInternalHeaderProvider()</a>
</div>
<div>
<a class="xref" href="https://cloud.google.com/java/docs/reference/gax/latest/com.google.api.gax.rpc.ClientSettings.Builder.html#com_google_api_gax_rpc_ClientSettings_Builder_getQuotaProjectId__">ClientSettings.Builder.getQuotaProjectId()</a>
</div>
<div>
<a class="xref" href="https://cloud.google.com/java/docs/reference/gax/latest/com.google.api.gax.rpc.ClientSettings.Builder.html#com_google_api_gax_rpc_ClientSettings_Builder_getStubSettings__">ClientSettings.Builder.getStubSettings()</a>
</div>
<div>
<a class="xref" href="https://cloud.google.com/java/docs/reference/gax/latest/com.google.api.gax.rpc.ClientSettings.Builder.html#com_google_api_gax_rpc_ClientSettings_Builder_getTransportChannelProvider__">ClientSettings.Builder.getTransportChannelProvider()</a>
</div>
<div>
<a class="xref" href="https://cloud.google.com/java/docs/reference/gax/latest/com.google.api.gax.rpc.ClientSettings.Builder.html#com_google_api_gax_rpc_ClientSettings_Builder_getWatchdogCheckInterval__">ClientSettings.Builder.getWatchdogCheckInterval()</a>
</div>
<div>
<a class="xref" href="https://cloud.google.com/java/docs/reference/gax/latest/com.google.api.gax.rpc.ClientSettings.Builder.html#com_google_api_gax_rpc_ClientSettings_Builder_getWatchdogProvider__">ClientSettings.Builder.getWatchdogProvider()</a>
</div>
<div>
<a class="xref" href="https://cloud.google.com/java/docs/reference/gax/latest/com.google.api.gax.rpc.ClientSettings.Builder.html#com_google_api_gax_rpc_ClientSettings_Builder_self__">ClientSettings.Builder.self()</a>
</div>
<div>
<span class="xref">com.google.api.gax.rpc.ClientSettings.Builder.setBackgroundExecutorProvider(com.google.api.gax.core.ExecutorProvider)</span>
</div>
<div>
<a class="xref" href="https://cloud.google.com/java/docs/reference/gax/latest/com.google.api.gax.rpc.ClientSettings.Builder.html#com_google_api_gax_rpc_ClientSettings_Builder_setClock_com_google_api_core_ApiClock_">ClientSettings.Builder.setClock(ApiClock)</a>
</div>
<div>
<a class="xref" href="https://cloud.google.com/java/docs/reference/gax/latest/com.google.api.gax.rpc.ClientSettings.Builder.html#com_google_api_gax_rpc_ClientSettings_Builder_setCredentialsProvider_com_google_api_gax_core_CredentialsProvider_">ClientSettings.Builder.setCredentialsProvider(CredentialsProvider)</a>
</div>
<div>
<a class="xref" href="https://cloud.google.com/java/docs/reference/gax/latest/com.google.api.gax.rpc.ClientSettings.Builder.html#com_google_api_gax_rpc_ClientSettings_Builder_setEndpoint_java_lang_String_">ClientSettings.Builder.setEndpoint(String)</a>
</div>
<div>
<a class="xref" href="https://cloud.google.com/java/docs/reference/gax/latest/com.google.api.gax.rpc.ClientSettings.Builder.html#com_google_api_gax_rpc_ClientSettings_Builder_setExecutorProvider_com_google_api_gax_core_ExecutorProvider_">ClientSettings.Builder.setExecutorProvider(ExecutorProvider)</a>
</div>
<div>
<a class="xref" href="https://cloud.google.com/java/docs/reference/gax/latest/com.google.api.gax.rpc.ClientSettings.Builder.html#com_google_api_gax_rpc_ClientSettings_Builder_setHeaderProvider_com_google_api_gax_rpc_HeaderProvider_">ClientSettings.Builder.setHeaderProvider(HeaderProvider)</a>
</div>
<div>
<a class="xref" href="https://cloud.google.com/java/docs/reference/gax/latest/com.google.api.gax.rpc.ClientSettings.Builder.html#com_google_api_gax_rpc_ClientSettings_Builder_setInternalHeaderProvider_com_google_api_gax_rpc_HeaderProvider_">ClientSettings.Builder.setInternalHeaderProvider(HeaderProvider)</a>
</div>
<div>
<a class="xref" href="https://cloud.google.com/java/docs/reference/gax/latest/com.google.api.gax.rpc.ClientSettings.Builder.html#com_google_api_gax_rpc_ClientSettings_Builder_setQuotaProjectId_java_lang_String_">ClientSettings.Builder.setQuotaProjectId(String)</a>
</div>
<div>
<a class="xref" href="https://cloud.google.com/java/docs/reference/gax/latest/com.google.api.gax.rpc.ClientSettings.Builder.html#com_google_api_gax_rpc_ClientSettings_Builder_setTransportChannelProvider_com_google_api_gax_rpc_TransportChannelProvider_">ClientSettings.Builder.setTransportChannelProvider(TransportChannelProvider)</a>
</div>
<div>
<a class="xref" href="https://cloud.google.com/java/docs/reference/gax/latest/com.google.api.gax.rpc.ClientSettings.Builder.html#com_google_api_gax_rpc_ClientSettings_Builder_setWatchdogCheckInterval_org_threeten_bp_Duration_">ClientSettings.Builder.setWatchdogCheckInterval(Duration)</a>
</div>
<div>
<a class="xref" href="https://cloud.google.com/java/docs/reference/gax/latest/com.google.api.gax.rpc.ClientSettings.Builder.html#com_google_api_gax_rpc_ClientSettings_Builder_setWatchdogProvider_com_google_api_gax_rpc_WatchdogProvider_">ClientSettings.Builder.setWatchdogProvider(WatchdogProvider)</a>
</div>
<div>
<a class="xref" href="https://cloud.google.com/java/docs/reference/gax/latest/com.google.api.gax.rpc.ClientSettings.Builder.html#com_google_api_gax_rpc_ClientSettings_Builder_toString__">ClientSettings.Builder.toString()</a>
</div>
<div>
<a class="xref" href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html#clone--">Object.clone()</a>
</div>
<div>
<a class="xref" href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html#equals-java.lang.Object-">Object.equals(Object)</a>
</div>
<div>
<a class="xref" href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html#finalize--">Object.finalize()</a>
</div>
<div>
<a class="xref" href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html#getClass--">Object.getClass()</a>
</div>
<div>
<a class="xref" href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html#hashCode--">Object.hashCode()</a>
</div>
<div>
<a class="xref" href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html#notify--">Object.notify()</a>
</div>
<div>
<a class="xref" href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html#notifyAll--">Object.notifyAll()</a>
</div>
<div>
<a class="xref" href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html#wait--">Object.wait()</a>
</div>
<div>
<a class="xref" href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html#wait-long-">Object.wait(long)</a>
</div>
<div>
<a class="xref" href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html#wait-long-int-">Object.wait(long,int)</a>
</div>
</div>
<h2 id="constructors">Constructors
</h2>
<a id="com_google_cloud_speech_v1p1beta1_AdaptationSettings_Builder_Builder_" data-uid="com.google.cloud.speech.v1p1beta1.AdaptationSettings.Builder.Builder*"></a>
<h3 id="com_google_cloud_speech_v1p1beta1_AdaptationSettings_Builder_Builder__" data-uid="com.google.cloud.speech.v1p1beta1.AdaptationSettings.Builder.Builder()" class="notranslate">Builder()</h3>
<div class="codewrapper">
<pre class="prettyprint"><code>protected Builder()</code></pre>
</div>
<a id="com_google_cloud_speech_v1p1beta1_AdaptationSettings_Builder_Builder_" data-uid="com.google.cloud.speech.v1p1beta1.AdaptationSettings.Builder.Builder*"></a>
<h3 id="com_google_cloud_speech_v1p1beta1_AdaptationSettings_Builder_Builder_com_google_api_gax_rpc_ClientContext_" data-uid="com.google.cloud.speech.v1p1beta1.AdaptationSettings.Builder.Builder(com.google.api.gax.rpc.ClientContext)" class="notranslate">Builder(ClientContext clientContext)</h3>
<div class="codewrapper">
<pre class="prettyprint"><code>protected Builder(ClientContext clientContext)</code></pre>
</div>
<strong>Parameter</strong>
<table class="responsive">
<tbody>
<tr>
<td><strong>Name</strong></td>
<td><strong>Description</strong></td>
</tr>
<tr>
<td><span class="parametername">clientContext</span></td>
<td><code><a class="xref" href="https://cloud.google.com/java/docs/reference/gax/latest/com.google.api.gax.rpc.ClientContext.html">ClientContext</a></code><br></td>
</tr>
</tbody>
</table>
<a id="com_google_cloud_speech_v1p1beta1_AdaptationSettings_Builder_Builder_" data-uid="com.google.cloud.speech.v1p1beta1.AdaptationSettings.Builder.Builder*"></a>
<h3 id="com_google_cloud_speech_v1p1beta1_AdaptationSettings_Builder_Builder_com_google_cloud_speech_v1p1beta1_AdaptationSettings_" data-uid="com.google.cloud.speech.v1p1beta1.AdaptationSettings.Builder.Builder(com.google.cloud.speech.v1p1beta1.AdaptationSettings)" class="notranslate">Builder(AdaptationSettings settings)</h3>
<div class="codewrapper">
<pre class="prettyprint"><code>protected Builder(AdaptationSettings settings)</code></pre>
</div>
<strong>Parameter</strong>
<table class="responsive">
<tbody>
<tr>
<td><strong>Name</strong></td>
<td><strong>Description</strong></td>
</tr>
<tr>
<td><span class="parametername">settings</span></td>
<td><code><a class="xref" href="com.google.cloud.speech.v1p1beta1.AdaptationSettings.html">AdaptationSettings</a></code><br></td>
</tr>
</tbody>
</table>
<a id="com_google_cloud_speech_v1p1beta1_AdaptationSettings_Builder_Builder_" data-uid="com.google.cloud.speech.v1p1beta1.AdaptationSettings.Builder.Builder*"></a>
<h3 id="com_google_cloud_speech_v1p1beta1_AdaptationSettings_Builder_Builder_com_google_cloud_speech_v1p1beta1_stub_AdaptationStubSettings_Builder_" data-uid="com.google.cloud.speech.v1p1beta1.AdaptationSettings.Builder.Builder(com.google.cloud.speech.v1p1beta1.stub.AdaptationStubSettings.Builder)" class="notranslate">Builder(AdaptationStubSettings.Builder stubSettings)</h3>
<div class="codewrapper">
<pre class="prettyprint"><code>protected Builder(AdaptationStubSettings.Builder stubSettings)</code></pre>
</div>
<strong>Parameter</strong>
<table class="responsive">
<tbody>
<tr>
<td><strong>Name</strong></td>
<td><strong>Description</strong></td>
</tr>
<tr>
<td><span class="parametername">stubSettings</span></td>
<td><code><a class="xref" href="com.google.cloud.speech.v1p1beta1.stub.AdaptationStubSettings.Builder.html">AdaptationStubSettings.Builder</a></code><br></td>
</tr>
</tbody>
</table>
<h2 id="methods">Methods
</h2>
<a id="com_google_cloud_speech_v1p1beta1_AdaptationSettings_Builder_applyToAllUnaryMethods_" data-uid="com.google.cloud.speech.v1p1beta1.AdaptationSettings.Builder.applyToAllUnaryMethods*"></a>
<h3 id="com_google_cloud_speech_v1p1beta1_AdaptationSettings_Builder_applyToAllUnaryMethods_com_google_api_core_ApiFunction_com_google_api_gax_rpc_UnaryCallSettings_Builder______java_lang_Void__" data-uid="com.google.cloud.speech.v1p1beta1.AdaptationSettings.Builder.applyToAllUnaryMethods(com.google.api.core.ApiFunction<com.google.api.gax.rpc.UnaryCallSettings.Builder<?,?>,java.lang.Void>)" class="notranslate">applyToAllUnaryMethods(ApiFunction<UnaryCallSettings.Builder<?,?>,Void> settingsUpdater)</h3>
<div class="codewrapper">
<pre class="prettyprint"><code>public AdaptationSettings.Builder applyToAllUnaryMethods(ApiFunction<UnaryCallSettings.Builder<?,?>,Void> settingsUpdater)</code></pre>
</div>
<div class="markdown level1 summary"><p>Applies the given settings updater function to all of the unary API methods in this service.</p>
<p> <p>Note: This method does not support applying settings to streaming methods.</p>
</div>
<strong>Parameter</strong>
<table class="responsive">
<tbody>
<tr>
<td><strong>Name</strong></td>
<td><strong>Description</strong></td>
</tr>
<tr>
<td><span class="parametername">settingsUpdater</span></td>
<td><code><span class="xref">com.google.api.core.ApiFunction</span><<a class="xref" href="https://cloud.google.com/java/docs/reference/gax/latest/com.google.api.gax.rpc.UnaryCallSettings.Builder.html">Builder</a><<span class="xref">?</span>,<span class="xref">?</span>>,<span class="xref">java.lang.Void</span>></code><br></td>
</tr>
</tbody>
</table>
<strong>Returns</strong>
<table class="responsive">
<tbody>
<tr>
<td><strong>Type</strong></td>
<td><strong>Description</strong></td>
</tr>
<tr>
<td><a class="xref" href="com.google.cloud.speech.v1p1beta1.AdaptationSettings.Builder.html">AdaptationSettings.Builder</a></td>
<td></td>
</tr>
</tbody>
</table>
<a id="com_google_cloud_speech_v1p1beta1_AdaptationSettings_Builder_build_" data-uid="com.google.cloud.speech.v1p1beta1.AdaptationSettings.Builder.build*"></a>
<h3 id="com_google_cloud_speech_v1p1beta1_AdaptationSettings_Builder_build__" data-uid="com.google.cloud.speech.v1p1beta1.AdaptationSettings.Builder.build()" class="notranslate">build()</h3>
<div class="codewrapper">
<pre class="prettyprint"><code>public AdaptationSettings build()</code></pre>
</div>
<strong>Returns</strong>
<table class="responsive">
<tbody>
<tr>
<td><strong>Type</strong></td>
<td><strong>Description</strong></td>
</tr>
<tr>
<td><a class="xref" href="com.google.cloud.speech.v1p1beta1.AdaptationSettings.html">AdaptationSettings</a></td>
<td></td>
</tr>
</tbody>
</table>
<strong>Overrides</strong>
<div><a class="xref" href="https://cloud.google.com/java/docs/reference/gax/latest/com.google.api.gax.rpc.ClientSettings.Builder.html#com_google_api_gax_rpc_ClientSettings_Builder_build__">ClientSettings.Builder<SettingsT,B>.build()</a></div>
<strong>Exceptions</strong>
<table class="responsive">
<tbody>
<tr>
<td><strong>Type</strong></td>
<td><strong>Description</strong></td>
</tr>
<tr>
<td><a class="xref" href="https://docs.oracle.com/javase/8/docs/api/java/io/IOException.html">IOException</a></td>
<td></td>
</tr>
</tbody>
</table>
<a id="com_google_cloud_speech_v1p1beta1_AdaptationSettings_Builder_createCustomClassSettings_" data-uid="com.google.cloud.speech.v1p1beta1.AdaptationSettings.Builder.createCustomClassSettings*"></a>
<h3 id="com_google_cloud_speech_v1p1beta1_AdaptationSettings_Builder_createCustomClassSettings__" data-uid="com.google.cloud.speech.v1p1beta1.AdaptationSettings.Builder.createCustomClassSettings()" class="notranslate">createCustomClassSettings()</h3>
<div class="codewrapper">
<pre class="prettyprint"><code>public UnaryCallSettings.Builder<CreateCustomClassRequest,CustomClass> createCustomClassSettings()</code></pre>
</div>
<div class="markdown level1 summary"><p>Returns the builder for the settings used for calls to createCustomClass.</p>
</div>
<strong>Returns</strong>
<table class="responsive">
<tbody>
<tr>
<td><strong>Type</strong></td>
<td><strong>Description</strong></td>
</tr>
<tr>
<td><a class="xref" href="https://cloud.google.com/java/docs/reference/gax/latest/com.google.api.gax.rpc.UnaryCallSettings.Builder.html">Builder</a><<a class="xref" href="com.google.cloud.speech.v1p1beta1.CreateCustomClassRequest.html">CreateCustomClassRequest</a>,<a class="xref" href="com.google.cloud.speech.v1p1beta1.CustomClass.html">CustomClass</a>></td>
<td></td>
</tr>
</tbody>
</table>
<a id="com_google_cloud_speech_v1p1beta1_AdaptationSettings_Builder_createPhraseSetSettings_" data-uid="com.google.cloud.speech.v1p1beta1.AdaptationSettings.Builder.createPhraseSetSettings*"></a>
<h3 id="com_google_cloud_speech_v1p1beta1_AdaptationSettings_Builder_createPhraseSetSettings__" data-uid="com.google.cloud.speech.v1p1beta1.AdaptationSettings.Builder.createPhraseSetSettings()" class="notranslate">createPhraseSetSettings()</h3>
<div class="codewrapper">
<pre class="prettyprint"><code>public UnaryCallSettings.Builder<CreatePhraseSetRequest,PhraseSet> createPhraseSetSettings()</code></pre>
</div>
<div class="markdown level1 summary"><p>Returns the builder for the settings used for calls to createPhraseSet.</p>
</div>
<strong>Returns</strong>
<table class="responsive">
<tbody>
<tr>
<td><strong>Type</strong></td>
<td><strong>Description</strong></td>
</tr>
<tr>
<td><a class="xref" href="https://cloud.google.com/java/docs/reference/gax/latest/com.google.api.gax.rpc.UnaryCallSettings.Builder.html">Builder</a><<a class="xref" href="com.google.cloud.speech.v1p1beta1.CreatePhraseSetRequest.html">CreatePhraseSetRequest</a>,<a class="xref" href="com.google.cloud.speech.v1p1beta1.PhraseSet.html">PhraseSet</a>></td>
<td></td>
</tr>
</tbody>
</table>
<a id="com_google_cloud_speech_v1p1beta1_AdaptationSettings_Builder_deleteCustomClassSettings_" data-uid="com.google.cloud.speech.v1p1beta1.AdaptationSettings.Builder.deleteCustomClassSettings*"></a>
<h3 id="com_google_cloud_speech_v1p1beta1_AdaptationSettings_Builder_deleteCustomClassSettings__" data-uid="com.google.cloud.speech.v1p1beta1.AdaptationSettings.Builder.deleteCustomClassSettings()" class="notranslate">deleteCustomClassSettings()</h3>
<div class="codewrapper">
<pre class="prettyprint"><code>public UnaryCallSettings.Builder<DeleteCustomClassRequest,Empty> deleteCustomClassSettings()</code></pre>
</div>
<div class="markdown level1 summary"><p>Returns the builder for the settings used for calls to deleteCustomClass.</p>
</div>
<strong>Returns</strong>
<table class="responsive">
<tbody>
<tr>
<td><strong>Type</strong></td>
<td><strong>Description</strong></td>
</tr>
<tr>
<td><a class="xref" href="https://cloud.google.com/java/docs/reference/gax/latest/com.google.api.gax.rpc.UnaryCallSettings.Builder.html">Builder</a><<a class="xref" href="com.google.cloud.speech.v1p1beta1.DeleteCustomClassRequest.html">DeleteCustomClassRequest</a>,<a class="xref" href="https://cloud.google.com/java/docs/reference/protobuf/latest/com.google.protobuf.Empty.html">Empty</a>></td>
<td></td>
</tr>
</tbody>
</table>
<a id="com_google_cloud_speech_v1p1beta1_AdaptationSettings_Builder_deletePhraseSetSettings_" data-uid="com.google.cloud.speech.v1p1beta1.AdaptationSettings.Builder.deletePhraseSetSettings*"></a>
<h3 id="com_google_cloud_speech_v1p1beta1_AdaptationSettings_Builder_deletePhraseSetSettings__" data-uid="com.google.cloud.speech.v1p1beta1.AdaptationSettings.Builder.deletePhraseSetSettings()" class="notranslate">deletePhraseSetSettings()</h3>
<div class="codewrapper">
<pre class="prettyprint"><code>public UnaryCallSettings.Builder<DeletePhraseSetRequest,Empty> deletePhraseSetSettings()</code></pre>
</div>
<div class="markdown level1 summary"><p>Returns the builder for the settings used for calls to deletePhraseSet.</p>
</div>
<strong>Returns</strong>
<table class="responsive">
<tbody>
<tr>
<td><strong>Type</strong></td>
<td><strong>Description</strong></td>
</tr>
<tr>
<td><a class="xref" href="https://cloud.google.com/java/docs/reference/gax/latest/com.google.api.gax.rpc.UnaryCallSettings.Builder.html">Builder</a><<a class="xref" href="com.google.cloud.speech.v1p1beta1.DeletePhraseSetRequest.html">DeletePhraseSetRequest</a>,<a class="xref" href="https://cloud.google.com/java/docs/reference/protobuf/latest/com.google.protobuf.Empty.html">Empty</a>></td>
<td></td>
</tr>
</tbody>
</table>
<a id="com_google_cloud_speech_v1p1beta1_AdaptationSettings_Builder_getCustomClassSettings_" data-uid="com.google.cloud.speech.v1p1beta1.AdaptationSettings.Builder.getCustomClassSettings*"></a>
<h3 id="com_google_cloud_speech_v1p1beta1_AdaptationSettings_Builder_getCustomClassSettings__" data-uid="com.google.cloud.speech.v1p1beta1.AdaptationSettings.Builder.getCustomClassSettings()" class="notranslate">getCustomClassSettings()</h3>
<div class="codewrapper">
<pre class="prettyprint"><code>public UnaryCallSettings.Builder<GetCustomClassRequest,CustomClass> getCustomClassSettings()</code></pre>
</div>
<div class="markdown level1 summary"><p>Returns the builder for the settings used for calls to getCustomClass.</p>
</div>
<strong>Returns</strong>
<table class="responsive">
<tbody>
<tr>
<td><strong>Type</strong></td>
<td><strong>Description</strong></td>
</tr>
<tr>
<td><a class="xref" href="https://cloud.google.com/java/docs/reference/gax/latest/com.google.api.gax.rpc.UnaryCallSettings.Builder.html">Builder</a><<a class="xref" href="com.google.cloud.speech.v1p1beta1.GetCustomClassRequest.html">GetCustomClassRequest</a>,<a class="xref" href="com.google.cloud.speech.v1p1beta1.CustomClass.html">CustomClass</a>></td>
<td></td>
</tr>
</tbody>
</table>
<a id="com_google_cloud_speech_v1p1beta1_AdaptationSettings_Builder_getPhraseSetSettings_" data-uid="com.google.cloud.speech.v1p1beta1.AdaptationSettings.Builder.getPhraseSetSettings*"></a>
<h3 id="com_google_cloud_speech_v1p1beta1_AdaptationSettings_Builder_getPhraseSetSettings__" data-uid="com.google.cloud.speech.v1p1beta1.AdaptationSettings.Builder.getPhraseSetSettings()" class="notranslate">getPhraseSetSettings()</h3>
<div class="codewrapper">
<pre class="prettyprint"><code>public UnaryCallSettings.Builder<GetPhraseSetRequest,PhraseSet> getPhraseSetSettings()</code></pre>
</div>
<div class="markdown level1 summary"><p>Returns the builder for the settings used for calls to getPhraseSet.</p>
</div>
<strong>Returns</strong>
<table class="responsive">
<tbody>
<tr>
<td><strong>Type</strong></td>
<td><strong>Description</strong></td>
</tr>
<tr>
<td><a class="xref" href="https://cloud.google.com/java/docs/reference/gax/latest/com.google.api.gax.rpc.UnaryCallSettings.Builder.html">Builder</a><<a class="xref" href="com.google.cloud.speech.v1p1beta1.GetPhraseSetRequest.html">GetPhraseSetRequest</a>,<a class="xref" href="com.google.cloud.speech.v1p1beta1.PhraseSet.html">PhraseSet</a>></td>
<td></td>
</tr>
</tbody>
</table>
<a id="com_google_cloud_speech_v1p1beta1_AdaptationSettings_Builder_getStubSettingsBuilder_" data-uid="com.google.cloud.speech.v1p1beta1.AdaptationSettings.Builder.getStubSettingsBuilder*"></a>
<h3 id="com_google_cloud_speech_v1p1beta1_AdaptationSettings_Builder_getStubSettingsBuilder__" data-uid="com.google.cloud.speech.v1p1beta1.AdaptationSettings.Builder.getStubSettingsBuilder()" class="notranslate">getStubSettingsBuilder()</h3>
<div class="codewrapper">
<pre class="prettyprint"><code>public AdaptationStubSettings.Builder getStubSettingsBuilder()</code></pre>
</div>
<strong>Returns</strong>
<table class="responsive">
<tbody>
<tr>
<td><strong>Type</strong></td>
<td><strong>Description</strong></td>
</tr>
<tr>
<td><a class="xref" href="com.google.cloud.speech.v1p1beta1.stub.AdaptationStubSettings.Builder.html">AdaptationStubSettings.Builder</a></td>
<td></td>
</tr>
</tbody>
</table>
<a id="com_google_cloud_speech_v1p1beta1_AdaptationSettings_Builder_listCustomClassesSettings_" data-uid="com.google.cloud.speech.v1p1beta1.AdaptationSettings.Builder.listCustomClassesSettings*"></a>
<h3 id="com_google_cloud_speech_v1p1beta1_AdaptationSettings_Builder_listCustomClassesSettings__" data-uid="com.google.cloud.speech.v1p1beta1.AdaptationSettings.Builder.listCustomClassesSettings()" class="notranslate">listCustomClassesSettings()</h3>
<div class="codewrapper">
<pre class="prettyprint"><code>public PagedCallSettings.Builder<ListCustomClassesRequest,ListCustomClassesResponse,AdaptationClient.ListCustomClassesPagedResponse> listCustomClassesSettings()</code></pre>
</div>
<div class="markdown level1 summary"><p>Returns the builder for the settings used for calls to listCustomClasses.</p>
</div>
<strong>Returns</strong>
<table class="responsive">
<tbody>
<tr>
<td><strong>Type</strong></td>
<td><strong>Description</strong></td>
</tr>
<tr>
<td><a class="xref" href="https://cloud.google.com/java/docs/reference/gax/latest/com.google.api.gax.rpc.PagedCallSettings.Builder.html">Builder</a><<a class="xref" href="com.google.cloud.speech.v1p1beta1.ListCustomClassesRequest.html">ListCustomClassesRequest</a>,<a class="xref" href="com.google.cloud.speech.v1p1beta1.ListCustomClassesResponse.html">ListCustomClassesResponse</a>,<a class="xref" href="com.google.cloud.speech.v1p1beta1.AdaptationClient.ListCustomClassesPagedResponse.html">ListCustomClassesPagedResponse</a>></td>
<td></td>
</tr>
</tbody>
</table>
<a id="com_google_cloud_speech_v1p1beta1_AdaptationSettings_Builder_listPhraseSetSettings_" data-uid="com.google.cloud.speech.v1p1beta1.AdaptationSettings.Builder.listPhraseSetSettings*"></a>
<h3 id="com_google_cloud_speech_v1p1beta1_AdaptationSettings_Builder_listPhraseSetSettings__" data-uid="com.google.cloud.speech.v1p1beta1.AdaptationSettings.Builder.listPhraseSetSettings()" class="notranslate">listPhraseSetSettings()</h3>
<div class="codewrapper">
<pre class="prettyprint"><code>public PagedCallSettings.Builder<ListPhraseSetRequest,ListPhraseSetResponse,AdaptationClient.ListPhraseSetPagedResponse> listPhraseSetSettings()</code></pre>
</div>
<div class="markdown level1 summary"><p>Returns the builder for the settings used for calls to listPhraseSet.</p>
</div>
<strong>Returns</strong>
<table class="responsive">
<tbody>
<tr>
<td><strong>Type</strong></td>
<td><strong>Description</strong></td>
</tr>
<tr>
<td><a class="xref" href="https://cloud.google.com/java/docs/reference/gax/latest/com.google.api.gax.rpc.PagedCallSettings.Builder.html">Builder</a><<a class="xref" href="com.google.cloud.speech.v1p1beta1.ListPhraseSetRequest.html">ListPhraseSetRequest</a>,<a class="xref" href="com.google.cloud.speech.v1p1beta1.ListPhraseSetResponse.html">ListPhraseSetResponse</a>,<a class="xref" href="com.google.cloud.speech.v1p1beta1.AdaptationClient.ListPhraseSetPagedResponse.html">ListPhraseSetPagedResponse</a>></td>
<td></td>
</tr>
</tbody>
</table>
<a id="com_google_cloud_speech_v1p1beta1_AdaptationSettings_Builder_updateCustomClassSettings_" data-uid="com.google.cloud.speech.v1p1beta1.AdaptationSettings.Builder.updateCustomClassSettings*"></a>
<h3 id="com_google_cloud_speech_v1p1beta1_AdaptationSettings_Builder_updateCustomClassSettings__" data-uid="com.google.cloud.speech.v1p1beta1.AdaptationSettings.Builder.updateCustomClassSettings()" class="notranslate">updateCustomClassSettings()</h3>
<div class="codewrapper">
<pre class="prettyprint"><code>public UnaryCallSettings.Builder<UpdateCustomClassRequest,CustomClass> updateCustomClassSettings()</code></pre>
</div>
<div class="markdown level1 summary"><p>Returns the builder for the settings used for calls to updateCustomClass.</p>
</div>
<strong>Returns</strong>
<table class="responsive">
<tbody>
<tr>
<td><strong>Type</strong></td>
<td><strong>Description</strong></td>
</tr>
<tr>
<td><a class="xref" href="https://cloud.google.com/java/docs/reference/gax/latest/com.google.api.gax.rpc.UnaryCallSettings.Builder.html">Builder</a><<a class="xref" href="com.google.cloud.speech.v1p1beta1.UpdateCustomClassRequest.html">UpdateCustomClassRequest</a>,<a class="xref" href="com.google.cloud.speech.v1p1beta1.CustomClass.html">CustomClass</a>></td>
<td></td>
</tr>
</tbody>
</table>
<a id="com_google_cloud_speech_v1p1beta1_AdaptationSettings_Builder_updatePhraseSetSettings_" data-uid="com.google.cloud.speech.v1p1beta1.AdaptationSettings.Builder.updatePhraseSetSettings*"></a>
<h3 id="com_google_cloud_speech_v1p1beta1_AdaptationSettings_Builder_updatePhraseSetSettings__" data-uid="com.google.cloud.speech.v1p1beta1.AdaptationSettings.Builder.updatePhraseSetSettings()" class="notranslate">updatePhraseSetSettings()</h3>
<div class="codewrapper">
<pre class="prettyprint"><code>public UnaryCallSettings.Builder<UpdatePhraseSetRequest,PhraseSet> updatePhraseSetSettings()</code></pre>
</div>
<div class="markdown level1 summary"><p>Returns the builder for the settings used for calls to updatePhraseSet.</p>
</div>
<strong>Returns</strong>
<table class="responsive">
<tbody>
<tr>
<td><strong>Type</strong></td>
<td><strong>Description</strong></td>
</tr>
<tr>
<td><a class="xref" href="https://cloud.google.com/java/docs/reference/gax/latest/com.google.api.gax.rpc.UnaryCallSettings.Builder.html">Builder</a><<a class="xref" href="com.google.cloud.speech.v1p1beta1.UpdatePhraseSetRequest.html">UpdatePhraseSetRequest</a>,<a class="xref" href="com.google.cloud.speech.v1p1beta1.PhraseSet.html">PhraseSet</a>></td>
<td></td>
</tr>
</tbody>
</table>
</article>
</div>
{% endverbatim %}
</body>
</html>
|
packages/hbase-0.98.7-hadoop2/docs/devapidocs/org/apache/hadoop/hbase/thrift2/generated/class-use/THBaseService.deleteSingle_result._Fields.html | gsoundar/mambo-ec2-deploy | <!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_67) on Wed Oct 08 15:57:25 PDT 2014 -->
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
<title>Uses of Class org.apache.hadoop.hbase.thrift2.generated.THBaseService.deleteSingle_result._Fields (HBase 0.98.7-hadoop2 API)</title>
<meta name="date" content="2014-10-08">
<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.hadoop.hbase.thrift2.generated.THBaseService.deleteSingle_result._Fields (HBase 0.98.7-hadoop2 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/hadoop/hbase/thrift2/generated/THBaseService.deleteSingle_result._Fields.html" title="enum in org.apache.hadoop.hbase.thrift2.generated">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?org/apache/hadoop/hbase/thrift2/generated/class-use/THBaseService.deleteSingle_result._Fields.html" target="_top">Frames</a></li>
<li><a href="THBaseService.deleteSingle_result._Fields.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.hadoop.hbase.thrift2.generated.THBaseService.deleteSingle_result._Fields" class="title">Uses of Class<br>org.apache.hadoop.hbase.thrift2.generated.THBaseService.deleteSingle_result._Fields</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/hadoop/hbase/thrift2/generated/THBaseService.deleteSingle_result._Fields.html" title="enum in org.apache.hadoop.hbase.thrift2.generated">THBaseService.deleteSingle_result._Fields</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.hadoop.hbase.thrift2.generated">org.apache.hadoop.hbase.thrift2.generated</a></td>
<td class="colLast"> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="org.apache.hadoop.hbase.thrift2.generated">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../../org/apache/hadoop/hbase/thrift2/generated/THBaseService.deleteSingle_result._Fields.html" title="enum in org.apache.hadoop.hbase.thrift2.generated">THBaseService.deleteSingle_result._Fields</a> in <a href="../../../../../../../org/apache/hadoop/hbase/thrift2/generated/package-summary.html">org.apache.hadoop.hbase.thrift2.generated</a></h3>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing fields, and an explanation">
<caption><span>Fields in <a href="../../../../../../../org/apache/hadoop/hbase/thrift2/generated/package-summary.html">org.apache.hadoop.hbase.thrift2.generated</a> with type parameters of type <a href="../../../../../../../org/apache/hadoop/hbase/thrift2/generated/THBaseService.deleteSingle_result._Fields.html" title="enum in org.apache.hadoop.hbase.thrift2.generated">THBaseService.deleteSingle_result._Fields</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Field and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>static <a href="http://docs.oracle.com/javase/6/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a><<a href="../../../../../../../org/apache/hadoop/hbase/thrift2/generated/THBaseService.deleteSingle_result._Fields.html" title="enum in org.apache.hadoop.hbase.thrift2.generated">THBaseService.deleteSingle_result._Fields</a>,org.apache.thrift.meta_data.FieldMetaData></code></td>
<td class="colLast"><span class="strong">THBaseService.deleteSingle_result.</span><code><strong><a href="../../../../../../../org/apache/hadoop/hbase/thrift2/generated/THBaseService.deleteSingle_result.html#metaDataMap">metaDataMap</a></strong></code> </td>
</tr>
</tbody>
</table>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../../../org/apache/hadoop/hbase/thrift2/generated/package-summary.html">org.apache.hadoop.hbase.thrift2.generated</a> that return <a href="../../../../../../../org/apache/hadoop/hbase/thrift2/generated/THBaseService.deleteSingle_result._Fields.html" title="enum in org.apache.hadoop.hbase.thrift2.generated">THBaseService.deleteSingle_result._Fields</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/hadoop/hbase/thrift2/generated/THBaseService.deleteSingle_result._Fields.html" title="enum in org.apache.hadoop.hbase.thrift2.generated">THBaseService.deleteSingle_result._Fields</a></code></td>
<td class="colLast"><span class="strong">THBaseService.deleteSingle_result.</span><code><strong><a href="../../../../../../../org/apache/hadoop/hbase/thrift2/generated/THBaseService.deleteSingle_result.html#fieldForId(int)">fieldForId</a></strong>(int fieldId)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../../../../../org/apache/hadoop/hbase/thrift2/generated/THBaseService.deleteSingle_result._Fields.html" title="enum in org.apache.hadoop.hbase.thrift2.generated">THBaseService.deleteSingle_result._Fields</a></code></td>
<td class="colLast"><span class="strong">THBaseService.deleteSingle_result._Fields.</span><code><strong><a href="../../../../../../../org/apache/hadoop/hbase/thrift2/generated/THBaseService.deleteSingle_result._Fields.html#findByName(java.lang.String)">findByName</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> name)</code>
<div class="block">Find the _Fields constant that matches name, or null if its not found.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../../../../../org/apache/hadoop/hbase/thrift2/generated/THBaseService.deleteSingle_result._Fields.html" title="enum in org.apache.hadoop.hbase.thrift2.generated">THBaseService.deleteSingle_result._Fields</a></code></td>
<td class="colLast"><span class="strong">THBaseService.deleteSingle_result._Fields.</span><code><strong><a href="../../../../../../../org/apache/hadoop/hbase/thrift2/generated/THBaseService.deleteSingle_result._Fields.html#findByThriftId(int)">findByThriftId</a></strong>(int fieldId)</code>
<div class="block">Find the _Fields constant that matches fieldId, or null if its not found.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../../../../../org/apache/hadoop/hbase/thrift2/generated/THBaseService.deleteSingle_result._Fields.html" title="enum in org.apache.hadoop.hbase.thrift2.generated">THBaseService.deleteSingle_result._Fields</a></code></td>
<td class="colLast"><span class="strong">THBaseService.deleteSingle_result._Fields.</span><code><strong><a href="../../../../../../../org/apache/hadoop/hbase/thrift2/generated/THBaseService.deleteSingle_result._Fields.html#findByThriftIdOrThrow(int)">findByThriftIdOrThrow</a></strong>(int fieldId)</code>
<div class="block">Find the _Fields constant that matches fieldId, throwing an exception
if it is not found.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../../../../../org/apache/hadoop/hbase/thrift2/generated/THBaseService.deleteSingle_result._Fields.html" title="enum in org.apache.hadoop.hbase.thrift2.generated">THBaseService.deleteSingle_result._Fields</a></code></td>
<td class="colLast"><span class="strong">THBaseService.deleteSingle_result._Fields.</span><code><strong><a href="../../../../../../../org/apache/hadoop/hbase/thrift2/generated/THBaseService.deleteSingle_result._Fields.html#valueOf(java.lang.String)">valueOf</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> name)</code>
<div class="block">Returns the enum constant of this type with the specified name.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../../../../../org/apache/hadoop/hbase/thrift2/generated/THBaseService.deleteSingle_result._Fields.html" title="enum in org.apache.hadoop.hbase.thrift2.generated">THBaseService.deleteSingle_result._Fields</a>[]</code></td>
<td class="colLast"><span class="strong">THBaseService.deleteSingle_result._Fields.</span><code><strong><a href="../../../../../../../org/apache/hadoop/hbase/thrift2/generated/THBaseService.deleteSingle_result._Fields.html#values()">values</a></strong>()</code>
<div class="block">Returns an array containing the constants of this enum type, in
the order they are declared.</div>
</td>
</tr>
</tbody>
</table>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../../../org/apache/hadoop/hbase/thrift2/generated/package-summary.html">org.apache.hadoop.hbase.thrift2.generated</a> with parameters of type <a href="../../../../../../../org/apache/hadoop/hbase/thrift2/generated/THBaseService.deleteSingle_result._Fields.html" title="enum in org.apache.hadoop.hbase.thrift2.generated">THBaseService.deleteSingle_result._Fields</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="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></code></td>
<td class="colLast"><span class="strong">THBaseService.deleteSingle_result.</span><code><strong><a href="../../../../../../../org/apache/hadoop/hbase/thrift2/generated/THBaseService.deleteSingle_result.html#getFieldValue(org.apache.hadoop.hbase.thrift2.generated.THBaseService.deleteSingle_result._Fields)">getFieldValue</a></strong>(<a href="../../../../../../../org/apache/hadoop/hbase/thrift2/generated/THBaseService.deleteSingle_result._Fields.html" title="enum in org.apache.hadoop.hbase.thrift2.generated">THBaseService.deleteSingle_result._Fields</a> field)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><span class="strong">THBaseService.deleteSingle_result.</span><code><strong><a href="../../../../../../../org/apache/hadoop/hbase/thrift2/generated/THBaseService.deleteSingle_result.html#isSet(org.apache.hadoop.hbase.thrift2.generated.THBaseService.deleteSingle_result._Fields)">isSet</a></strong>(<a href="../../../../../../../org/apache/hadoop/hbase/thrift2/generated/THBaseService.deleteSingle_result._Fields.html" title="enum in org.apache.hadoop.hbase.thrift2.generated">THBaseService.deleteSingle_result._Fields</a> field)</code>
<div class="block">Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="strong">THBaseService.deleteSingle_result.</span><code><strong><a href="../../../../../../../org/apache/hadoop/hbase/thrift2/generated/THBaseService.deleteSingle_result.html#setFieldValue(org.apache.hadoop.hbase.thrift2.generated.THBaseService.deleteSingle_result._Fields,%20java.lang.Object)">setFieldValue</a></strong>(<a href="../../../../../../../org/apache/hadoop/hbase/thrift2/generated/THBaseService.deleteSingle_result._Fields.html" title="enum in org.apache.hadoop.hbase.thrift2.generated">THBaseService.deleteSingle_result._Fields</a> field,
<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a> value)</code> </td>
</tr>
</tbody>
</table>
</li>
</ul>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../../org/apache/hadoop/hbase/thrift2/generated/THBaseService.deleteSingle_result._Fields.html" title="enum in org.apache.hadoop.hbase.thrift2.generated">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?org/apache/hadoop/hbase/thrift2/generated/class-use/THBaseService.deleteSingle_result._Fields.html" target="_top">Frames</a></li>
<li><a href="THBaseService.deleteSingle_result._Fields.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 © 2014 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</small></p>
</body>
</html>
|
base/static/base/css/selector.css | GroSte/feumgmt | /* SELECTOR (FILTER INTERFACE) */
.selector {
width: 100%;
float: left; }
.selector select {
width: 100%;
height: 17.2em;
border: 1px solid #AAA; }
.selector-available, .selector-chosen {
float: left;
width: 42%;
text-align: center;
margin-bottom: 5px; }
.selector-available h2,
.selector-chosen h2 {
color: #FFF;
background-color: #FAA40E;
border: 1px solid #AAA;
font-size: 100%;
padding: 4px 2px;
margin: 0; }
.selector .selector-filter {
background: white;
border: 1px solid #AAA;
border-width: 0 1px;
padding: 3px;
color: #999;
font-size: 10px;
margin: 0;
text-align: left; }
.selector-chosen select {
border-top: none; }
.selector .selector-filter label,
.inline-group .aligned .selector .selector-filter label {
width: 16px;
padding: 2px; }
.selector .selector-available input {
width: 90%; }
.selector ul.selector-chooser {
float: left;
width: 4%;
background-color: #EEE;
border-radius: 8px;
margin: 10em 5px 0 5px;
padding: 0;
text-align: center; }
.selector-chooser li {
margin: 0;
padding: 3px 4px;
list-style-type: none;
display: inline-block; }
.selector select {
margin-bottom: 10px;
margin-top: 0; }
.selector-add, .selector-remove {
width: 16px;
height: 16px;
display: block;
text-indent: -3000px;
overflow: hidden; }
.selector-add {
background: url(../img/icons/selector-icons.gif) 0 -161px no-repeat;
cursor: default;
margin-bottom: 2px; }
.active.selector-add {
background: url(../img/icons/selector-icons.gif) 0 -187px no-repeat;
cursor: pointer; }
.selector-remove {
background: url(../img/icons/selector-icons.gif) 0 -109px no-repeat;
cursor: default; }
.active.selector-remove {
background: url(../img/icons/selector-icons.gif) 0 -135px no-repeat;
cursor: pointer; }
a.selector-chooseall, a.selector-clearall {
display: inline-block;
text-align: left;
margin-left: auto;
margin-right: auto;
font-weight: bold;
font-size: 90%;
color: #666; }
a.selector-chooseall {
padding: 3px 18px 3px 0; }
a.selector-clearall {
padding: 3px 0 3px 18px; }
a.active.selector-chooseall:hover, a.active.selector-clearall:hover {
color: #036;
text-decoration: none; }
a.selector-chooseall {
background: url(../img/icons/selector-icons.gif) right -263px no-repeat;
cursor: default; }
a.active.selector-chooseall {
background: url(../img/icons/selector-icons.gif) right -289px no-repeat;
cursor: pointer; }
a.selector-clearall {
background: url(../img/icons/selector-icons.gif) left -211px no-repeat;
cursor: default; }
a.active.selector-clearall {
background: url(../img/icons/selector-icons.gif) left -237px no-repeat;
cursor: pointer; }
/*# sourceMappingURL=selector.css.map */
|
treebanks/no_nynorsk/no_nynorsk-dep-compound-prt.html | UniversalDependencies/universaldependencies.github.io | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="en-GB" xml:lang="en-GB" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<title>Statistics of compound:prt in UD_Norwegian-Nynorsk</title>
<link rel="root" href=""/> <!-- for JS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="../../css/jquery-ui-redmond.css"/>
<link rel="stylesheet" type="text/css" href="../../css/style.css"/>
<link rel="stylesheet" type="text/css" href="../../css/style-vis.css"/>
<link rel="stylesheet" type="text/css" href="../../css/hint.css"/>
<script type="text/javascript" src="../../lib/ext/head.load.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/anchor-js/3.2.2/anchor.min.js"></script>
<script>document.addEventListener("DOMContentLoaded", function(event) {anchors.add();});</script>
<!-- Set up this custom Google search at https://cse.google.com/cse/business/settings?cx=001145188882102106025:dl1mehhcgbo -->
<!-- DZ 2021-01-22: I am temporarily hiding the search field to find out whether it slows down loading of the title page.
<script>
(function() {
var cx = '001145188882102106025:dl1mehhcgbo';
var gcse = document.createElement('script');
gcse.type = 'text/javascript';
gcse.async = true;
gcse.src = 'https://cse.google.com/cse.js?cx=' + cx;
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(gcse, s);
})();
</script> -->
<!-- <link rel="shortcut icon" href="favicon.ico"/> -->
</head>
<body>
<div id="main" class="center">
<div id="hp-header">
<table width="100%"><tr><td width="50%">
<span class="header-text"><a href="http://universaldependencies.org/#language-">home</a></span>
<span class="header-text"><a href="https://github.com/universaldependencies/docs/edit/pages-source/treebanks/no_nynorsk/no_nynorsk-dep-compound-prt.md" target="#">edit page</a></span>
<span class="header-text"><a href="https://github.com/universaldependencies/docs/issues">issue tracker</a></span>
</td><td>
<gcse:search></gcse:search>
</td></tr></table>
</div>
<hr/>
<div class="v2complete">
This page pertains to UD version 2.
</div>
<div id="content">
<noscript>
<div id="noscript">
It appears that you have Javascript disabled.
Please consider enabling Javascript for this page to see the visualizations.
</div>
</noscript>
<!-- The content may include scripts and styles, hence we must load the shared libraries before the content. -->
<script type="text/javascript">
console.time('loading libraries');
var root = '../../'; // filled in by jekyll
head.js(
// External libraries
// DZ: Copied from embedding.html. I don't know which one is needed for what, so I'm currently keeping them all.
root + 'lib/ext/jquery.min.js',
root + 'lib/ext/jquery.svg.min.js',
root + 'lib/ext/jquery.svgdom.min.js',
root + 'lib/ext/jquery.timeago.js',
root + 'lib/ext/jquery-ui.min.js',
root + 'lib/ext/waypoints.min.js',
root + 'lib/ext/jquery.address.min.js'
);
</script>
<h2 id="treebank-statistics-ud_norwegian-nynorsk-relations-compoundprt">Treebank Statistics: UD_Norwegian-Nynorsk: Relations: <code class="language-plaintext highlighter-rouge">compound:prt</code></h2>
<p>This relation is a language-specific subtype of <tt><a href="no_nynorsk-dep-compound.html">compound</a></tt>.</p>
<p>3067 nodes (1%) are attached to their parents as <code class="language-plaintext highlighter-rouge">compound:prt</code>.</p>
<p>2998 instances of <code class="language-plaintext highlighter-rouge">compound:prt</code> (98%) are left-to-right (parent precedes child).
Average distance between parent and child is 1.58265405934138.</p>
<p>The following 1 pairs of parts of speech are connected with <code class="language-plaintext highlighter-rouge">compound:prt</code>: <tt><a href="no_nynorsk-pos-VERB.html">VERB</a></tt>-<tt><a href="no_nynorsk-pos-ADP.html">ADP</a></tt> (3067; 100% instances).</p>
<pre><code class="language-conllu"># visual-style 2 bgColor:blue
# visual-style 2 fgColor:white
# visual-style 1 bgColor:blue
# visual-style 1 fgColor:white
# visual-style 1 2 compound:prt color:blue
1 Varm varme VERB _ Mood=Imp|VerbForm=Fin 0 root _ _
2 opp opp ADP _ _ 1 compound:prt _ _
3 steikepanna steikepanne NOUN _ Definite=Def|Gender=Fem|Number=Sing 1 obj _ SpaceAfter=No
4 , $, PUNCT _ _ 6 punct _ _
5 og og CCONJ _ _ 6 cc _ _
6 ha ha VERB _ Mood=Imp|VerbForm=Fin 1 conj _ _
7 i i ADP _ _ 6 compound:prt _ _
8 smør smør NOUN _ Definite=Ind|Gender=Neut|Number=Sing 6 obj _ SpaceAfter=No
9 . $. PUNCT _ _ 1 punct _ _
</code></pre>
</div>
<!-- support for embedded visualizations -->
<script type="text/javascript">
var root = '../../'; // filled in by jekyll
head.js(
// We assume that external libraries such as jquery.min.js have already been loaded outside!
// (See _layouts/base.html.)
// brat helper modules
root + 'lib/brat/configuration.js',
root + 'lib/brat/util.js',
root + 'lib/brat/annotation_log.js',
root + 'lib/ext/webfont.js',
// brat modules
root + 'lib/brat/dispatcher.js',
root + 'lib/brat/url_monitor.js',
root + 'lib/brat/visualizer.js',
// embedding configuration
root + 'lib/local/config.js',
// project-specific collection data
root + 'lib/local/collections.js',
// Annodoc
root + 'lib/annodoc/annodoc.js',
// NOTE: non-local libraries
'https://spyysalo.github.io/conllu.js/conllu.js'
);
var webFontURLs = [
// root + 'static/fonts/Astloch-Bold.ttf',
root + 'static/fonts/PT_Sans-Caption-Web-Regular.ttf',
root + 'static/fonts/Liberation_Sans-Regular.ttf'
];
var setupTimeago = function() {
jQuery("time.timeago").timeago();
};
head.ready(function() {
setupTimeago();
// mark current collection (filled in by Jekyll)
Collections.listing['_current'] = '';
// perform all embedding and support functions
Annodoc.activate(Config.bratCollData, Collections.listing);
});
</script>
<!-- google analytics -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-55233688-1', 'auto');
ga('send', 'pageview');
</script>
<div id="footer">
<p class="footer-text">© 2014–2021
<a href="http://universaldependencies.org/introduction.html#contributors" style="color:gray">Universal Dependencies contributors</a>.
Site powered by <a href="http://spyysalo.github.io/annodoc" style="color:gray">Annodoc</a> and <a href="http://brat.nlplab.org/" style="color:gray">brat</a></p>.
</div>
</div>
</body>
</html>
|
docs/2020.2.0-RELEASE-KOTLIN/zircon.core/zircon.core/org.hexworks.zircon.internal.grid/-thread-safe-tile-grid/insert-layer-at.html | Hexworks/zircon | <html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>insertLayerAt</title>
<link href="../../../images/logo-icon.svg" rel="icon" type="image/svg">
<script>var pathToRoot = "../../../";</script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async="async"></script>
<link href="../../../styles/style.css" rel="Stylesheet">
<link href="../../../styles/logo-styles.css" rel="Stylesheet">
<link href="../../../styles/jetbrains-mono.css" rel="Stylesheet">
<link href="../../../styles/main.css" rel="Stylesheet">
<script type="text/javascript" src="../../../scripts/clipboard.js" async="async"></script>
<script type="text/javascript" src="../../../scripts/navigation-loader.js" async="async"></script>
<script type="text/javascript" src="../../../scripts/platform-content-handler.js" async="async"></script>
<script type="text/javascript" src="../../../scripts/main.js" async="async"></script>
</head>
<body>
<div id="container">
<div id="leftColumn">
<div id="logo"></div>
<div id="paneSearch"></div>
<div id="sideMenu"></div>
</div>
<div id="main">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<script type="text/javascript" src="../../../scripts/pages.js"></script>
<script type="text/javascript" src="../../../scripts/main.js"></script>
<div class="main-content" id="content" pageIds="org.hexworks.zircon.internal.grid/ThreadSafeTileGrid/insertLayerAt/#kotlin.Int#org.hexworks.zircon.api.graphics.Layer/PointingToDeclaration//-828656838">
<div class="navigation-wrapper" id="navigation-wrapper">
<div class="breadcrumbs"><a href="../../index.html">zircon.core</a>/<a href="../index.html">org.hexworks.zircon.internal.grid</a>/<a href="index.html">ThreadSafeTileGrid</a>/<a href="insert-layer-at.html">insertLayerAt</a></div>
<div class="pull-right d-flex">
<div class="filter-section" id="filter-section"><button class="platform-tag platform-selector common-like" data-active="" data-filter=":zircon.core:dokkaHtml/commonMain">common</button></div>
<div id="searchBar"></div>
</div>
</div>
<div class="cover ">
<h1 class="cover"><span>insert</span><wbr></wbr><span>Layer</span><wbr></wbr><span>At</span></h1>
</div>
<div class="divergent-group" data-filterable-current=":zircon.core:dokkaHtml/commonMain" data-filterable-set=":zircon.core:dokkaHtml/commonMain"><div class="with-platform-tags"><span class="pull-right"></span></div>
<div>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":zircon.core:dokkaHtml/commonMain"><div class="symbol monospace">open override fun <a href="insert-layer-at.html">insertLayerAt</a>(level: <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a>, layer: <a href="../../org.hexworks.zircon.api.graphics/-layer/index.html">Layer</a>): <a href="../../org.hexworks.zircon.api.graphics/-layer-handle/index.html">LayerHandle</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
</div>
<h2 class="">Sources</h2>
<div class="table" data-togglable="Sources"><a data-name="%5Borg.hexworks.zircon.internal.grid%2FThreadSafeTileGrid%2FinsertLayerAt%2F%23kotlin.Int%23org.hexworks.zircon.api.graphics.Layer%2FPointingToDeclaration%2F%5D%2FSource%2F-828656838" anchor-label="https://github.com/Hexworks/zircon/tree/master/zircon.core/src/commonMain/kotlin/org/hexworks/zircon/internal/grid/ThreadSafeTileGrid.kt#L214" id="%5Borg.hexworks.zircon.internal.grid%2FThreadSafeTileGrid%2FinsertLayerAt%2F%23kotlin.Int%23org.hexworks.zircon.api.graphics.Layer%2FPointingToDeclaration%2F%5D%2FSource%2F-828656838" data-filterable-set=":zircon.core:dokkaHtml/commonMain"></a>
<div class="table-row" data-filterable-current=":zircon.core:dokkaHtml/commonMain" data-filterable-set=":zircon.core:dokkaHtml/commonMain">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex"><a href="https://github.com/Hexworks/zircon/tree/master/zircon.core/src/commonMain/kotlin/org/hexworks/zircon/internal/grid/ThreadSafeTileGrid.kt#L214">(source)</a><span class="anchor-wrapper"><span class="anchor-icon" pointing-to="%5Borg.hexworks.zircon.internal.grid%2FThreadSafeTileGrid%2FinsertLayerAt%2F%23kotlin.Int%23org.hexworks.zircon.api.graphics.Layer%2FPointingToDeclaration%2F%5D%2FSource%2F-828656838"></span>
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
</span></span></div>
<div></div>
</div>
</div>
</div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content"></a></span><span>© 2020 Copyright</span><span class="pull-right"><span>Sponsored and developed by dokka</span><a href="https://github.com/Kotlin/dokka"><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body>
</html>
|
docs/apidoc/public/svnmailer.stream.CountStream-class.html | m-tmatma/svnmailer | <?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>svnmailer.stream.CountStream</title>
<link rel="stylesheet" href="epydoc.css" type="text/css"></link>
</head>
<body bgcolor="white" text="black" link="blue" vlink="#204080"
alink="#204080">
<!-- =========== START OF NAVBAR =========== -->
<table class="navbar" border="0" width="100%" cellpadding="0" bgcolor="#a0c0ff" cellspacing="0">
<tr valign="center">
<th class="navbar"> <a class="navbar" href="svnmailer-module.html">Home</a> </th>
<th class="navbar"> <a class="navbar" href="trees.html">Trees</a> </th>
<th class="navbar"> <a class="navbar" href="indices.html">Index</a> </th>
<th class="navbar"> <a class="navbar" href="help.html">Help</a> </th>
<th class="navbar" width="100%"></th>
</tr>
</table>
<table width="100%" cellpadding="0" cellspacing="0">
<tr valign="top">
<td width="100%">
<font size="-1"><b class="breadcrumbs">
<a href="svnmailer-module.html">Package svnmailer</a> ::
<a href="svnmailer.stream-module.html">Module stream</a> ::
Class CountStream
</b></font></br>
</td>
<td><table cellpadding="0" cellspacing="0">
<tr><td align="right"><font size="-2">[<a href="../private/svnmailer.stream.CountStream-class.html">show private</a> | hide private]</font></td></tr>
<tr><td align="right"><font size="-2">[<a href="frames.html"target="_top">frames</a> | <a href="svnmailer.stream.CountStream-class.html" target="_top">no frames</a>]</font></td></tr>
</table></td>
</tr></table>
<!-- =========== START OF CLASS DESCRIPTION =========== -->
<h2 class="class">Class CountStream</h2>
<pre class="base-tree">
<a href="__builtin__.object-class.html"><code>object</code></a> --+
|
<a href="../private/svnmailer.stream._BaseStream-class.html"><code>_BaseStream</code></a> --+
|
<b>CountStream</b>
</pre><br />
<hr/>
Dummy stream, which throws away all data<hr/>
<!-- =========== START OF METHOD SUMMARY =========== -->
<table class="summary" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white">
<tr bgcolor="#70b0f0" class="summary">
<th colspan="2">Method Summary</th></tr>
<tr><td align="right" valign="top" width="15%"><font size="-1"> </font></td>
<td><code><span class="summary-sig"><a href="svnmailer.stream.CountStream-class.html#__init__" class="summary-sig-name"><code>__init__</code></a>(<span class=summary-sig-arg>self</span>)</span></code>
<br />
Initialization</td></tr>
<tr><td align="right" valign="top" width="15%"><font size="-1"> </font></td>
<td><code><span class="summary-sig"><a href="svnmailer.stream.CountStream-class.html#write" class="summary-sig-name"><code>write</code></a>(<span class=summary-sig-arg>self</span>,
<span class=summary-sig-arg>towrite</span>)</span></code>
<br />
throw away stuff and count the number of octets</td></tr>
<tr><td align="right" valign="top" width="15%"><font size="-1"> </font></td>
<td><code><span class="summary-sig"><a href="svnmailer.stream.CountStream-class.html#writelines" class="summary-sig-name"><code>writelines</code></a>(<span class=summary-sig-arg>self</span>,
<span class=summary-sig-arg>lines</span>)</span></code>
<br />
write lines</td></tr>
<tr bgcolor="#e8f0f8" class="group">
<th colspan="2"> Inherited from object</th></tr>
<tr><td align="right" valign="top" width="15%"><font size="-1"> </font></td>
<td><code><span class="summary-sig"><a href="__builtin__.object-class.html#__delattr__" class="summary-sig-name"><code>__delattr__</code></a>(<span class="summary-sig-vararg">...</span>)</span></code>
<br />
x.__delattr__('name') <==> del x.name...</td></tr>
<tr><td align="right" valign="top" width="15%"><font size="-1"> </font></td>
<td><code><span class="summary-sig"><a href="__builtin__.object-class.html#__getattribute__" class="summary-sig-name"><code>__getattribute__</code></a>(<span class="summary-sig-vararg">...</span>)</span></code>
<br />
x.__getattribute__('name') <==> x.name...</td></tr>
<tr><td align="right" valign="top" width="15%"><font size="-1"> </font></td>
<td><code><span class="summary-sig"><a href="__builtin__.object-class.html#__hash__" class="summary-sig-name"><code>__hash__</code></a>(<span class=summary-sig-arg>x</span>)</span></code>
<br />
x.__hash__() <==> hash(x)...</td></tr>
<tr><td align="right" valign="top" width="15%"><font size="-1"> </font></td>
<td><code><span class="summary-sig"><a href="__builtin__.object-class.html#__reduce__" class="summary-sig-name"><code>__reduce__</code></a>(<span class="summary-sig-vararg">...</span>)</span></code>
<br />
helper for pickle...</td></tr>
<tr><td align="right" valign="top" width="15%"><font size="-1"> </font></td>
<td><code><span class="summary-sig"><a href="__builtin__.object-class.html#__reduce_ex__" class="summary-sig-name"><code>__reduce_ex__</code></a>(<span class="summary-sig-vararg">...</span>)</span></code>
<br />
helper for pickle...</td></tr>
<tr><td align="right" valign="top" width="15%"><font size="-1"> </font></td>
<td><code><span class="summary-sig"><a href="__builtin__.object-class.html#__repr__" class="summary-sig-name"><code>__repr__</code></a>(<span class=summary-sig-arg>x</span>)</span></code>
<br />
x.__repr__() <==> repr(x)...</td></tr>
<tr><td align="right" valign="top" width="15%"><font size="-1"> </font></td>
<td><code><span class="summary-sig"><a href="__builtin__.object-class.html#__setattr__" class="summary-sig-name"><code>__setattr__</code></a>(<span class="summary-sig-vararg">...</span>)</span></code>
<br />
x.__setattr__('name', value) <==> x.name = value...</td></tr>
<tr><td align="right" valign="top" width="15%"><font size="-1"> </font></td>
<td><code><span class="summary-sig"><a href="__builtin__.object-class.html#__str__" class="summary-sig-name"><code>__str__</code></a>(<span class=summary-sig-arg>x</span>)</span></code>
<br />
x.__str__() <==> str(x)...</td></tr>
<tr bgcolor="#e8f0f8" class="group">
<th colspan="2"> Inherited from type</th></tr>
<tr><td align="right" valign="top" width="15%"><font size="-1"> </font></td>
<td><code><span class="summary-sig"><a href="__builtin__.type-class.html#__new__" class="summary-sig-name"><code>__new__</code></a>(<span class=summary-sig-arg>T</span>,
<span class=summary-sig-arg>S</span>,
<span class="summary-sig-vararg">...</span>)</span></code>
<br />
T.__new__(S, ...) -> a new object with type S, a subtype of T...</td></tr>
</table><br />
<!-- =========== START OF METHOD DETAILS =========== -->
<table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white">
<tr bgcolor="#70b0f0" class="details">
<th colspan="2">Method Details</th></tr>
</table>
<a name="__init__"></a>
<table width="100%" class="func-details" bgcolor="#e0e0e0"><tr><td>
<h3><span class="sig"><span class="sig-name">__init__</span>(<span class=sig-arg>self</span>)</span>
<br /><i>(Constructor)</i>
</h3>
Initialization <dl><dt></dt><dd>
<dl><dt><b>Overrides:</b></dt>
<dd><a href="../private/svnmailer.stream._BaseStream-class.html#__init__"><code>svnmailer.stream._BaseStream.__init__</code></a></dd>
</dl>
</dd></dl>
</td></tr></table>
<a name="write"></a>
<table width="100%" class="func-details" bgcolor="#e0e0e0"><tr><td>
<h3><span class="sig"><span class="sig-name">write</span>(<span class=sig-arg>self</span>,
<span class=sig-arg>towrite</span>)</span>
</h3>
throw away stuff and count the number of octets <dl><dt></dt><dd>
<dl><dt><b>Overrides:</b></dt>
<dd><a href="../private/svnmailer.stream._BaseStream-class.html#write"><code>svnmailer.stream._BaseStream.write</code></a></dd>
</dl>
</dd></dl>
</td></tr></table>
<a name="writelines"></a>
<table width="100%" class="func-details" bgcolor="#e0e0e0"><tr><td>
<h3><span class="sig"><span class="sig-name">writelines</span>(<span class=sig-arg>self</span>,
<span class=sig-arg>lines</span>)</span>
</h3>
write lines <dl><dt></dt><dd>
<dl><dt><b>Overrides:</b></dt>
<dd><a href="../private/svnmailer.stream._BaseStream-class.html#writelines"><code>svnmailer.stream._BaseStream.writelines</code></a></dd>
</dl>
</dd></dl>
</td></tr></table>
<br />
<!-- =========== START OF NAVBAR =========== -->
<table class="navbar" border="0" width="100%" cellpadding="0" bgcolor="#a0c0ff" cellspacing="0">
<tr valign="center">
<th class="navbar"> <a class="navbar" href="svnmailer-module.html">Home</a> </th>
<th class="navbar"> <a class="navbar" href="trees.html">Trees</a> </th>
<th class="navbar"> <a class="navbar" href="indices.html">Index</a> </th>
<th class="navbar"> <a class="navbar" href="help.html">Help</a> </th>
<th class="navbar" width="100%"></th>
</tr>
</table>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td align="left"><font size="-2">Generated by Epydoc 2.0 on Sun Sep 25 20:49:14 2005</font></td>
<td align="right"><a href="http://epydoc.sourceforge.net"
><font size="-2">http://epydoc.sf.net</font></a></td>
</tr>
</table>
</body>
</html>
|
target13/site/clover/com/cardatechnologies/utils/validators/abaroutevalidator/Test_AbaRouteValidator_03_testAbaNumberCheck_4078_bad_1kc.html | dcarda/aba.route.validator | <!DOCTYPE html>
<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"/>
<link rel="SHORTCUT ICON" href="../../../../../img/clover.ico" />
<link rel="stylesheet" href="../../../../../aui/css/aui.min.css" media="all"/>
<link rel="stylesheet" href="../../../../../aui/css/aui-experimental.min.css" media="all"/>
<!--[if IE 9]><link rel="stylesheet" href="../../../../../aui/css/aui-ie9.min.css" media="all"/><![endif]-->
<style type="text/css" media="all">
@import url('../../../../../style.css');
@import url('../../../../../tree.css');
</style>
<script src="../../../../../jquery-1.8.3.min.js" type="text/javascript"></script>
<script src="../../../../../aui/js/aui.min.js" type="text/javascript"></script>
<script src="../../../../../aui/js/aui-experimental.min.js" type="text/javascript"></script>
<script src="../../../../../aui/js/aui-soy.min.js" type="text/javascript"></script>
<script src="../../../../../package-nodes-tree.js" type="text/javascript"></script>
<script src="../../../../../clover-tree.js" type="text/javascript"></script>
<script src="../../../../../clover.js" type="text/javascript"></script>
<script src="../../../../../clover-descriptions.js" type="text/javascript"></script>
<script src="../../../../../cloud.js" type="text/javascript"></script>
<title>ABA Route Transit Number Validator 1.0.1-SNAPSHOT</title>
</head>
<body>
<div id="page">
<header id="header" role="banner">
<nav class="aui-header aui-dropdown2-trigger-group" role="navigation">
<div class="aui-header-inner">
<div class="aui-header-primary">
<h1 id="logo" class="aui-header-logo aui-header-logo-clover">
<a href="http://openclover.org" title="Visit OpenClover home page"><span class="aui-header-logo-device">OpenClover</span></a>
</h1>
</div>
<div class="aui-header-secondary">
<ul class="aui-nav">
<li id="system-help-menu">
<a class="aui-nav-link" title="Open online documentation" target="_blank"
href="http://openclover.org/documentation">
<span class="aui-icon aui-icon-small aui-iconfont-help"> Help</span>
</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<div class="aui-page-panel">
<div class="aui-page-panel-inner">
<div class="aui-page-panel-nav aui-page-panel-nav-clover">
<div class="aui-page-header-inner" style="margin-bottom: 20px;">
<div class="aui-page-header-image">
<a href="http://cardatechnologies.com" target="_top">
<div class="aui-avatar aui-avatar-large aui-avatar-project">
<div class="aui-avatar-inner">
<img src="../../../../../img/clover_logo_large.png" alt="Clover icon"/>
</div>
</div>
</a>
</div>
<div class="aui-page-header-main" >
<h1>
<a href="http://cardatechnologies.com" target="_top">
ABA Route Transit Number Validator 1.0.1-SNAPSHOT
</a>
</h1>
</div>
</div>
<nav class="aui-navgroup aui-navgroup-vertical">
<div class="aui-navgroup-inner">
<ul class="aui-nav">
<li class="">
<a href="../../../../../dashboard.html">Project overview</a>
</li>
</ul>
<div class="aui-nav-heading packages-nav-heading">
<strong>Packages</strong>
</div>
<div class="aui-nav project-packages">
<form method="get" action="#" class="aui package-filter-container">
<input type="text" autocomplete="off" class="package-filter text"
placeholder="Type to filter packages..." name="package-filter" id="package-filter"
title="Start typing package name (or part of the name) to search through the tree. Use arrow keys and the Enter key to navigate."/>
</form>
<p class="package-filter-no-results-message hidden">
<small>No results found.</small>
</p>
<div class="packages-tree-wrapper" data-root-relative="../../../../../" data-package-name="com.cardatechnologies.utils.validators.abaroutevalidator">
<div class="packages-tree-container"></div>
<div class="clover-packages-lozenges"></div>
</div>
</div>
</div>
</nav> </div>
<section class="aui-page-panel-content">
<div class="aui-page-panel-content-clover">
<div class="aui-page-header-main"><ol class="aui-nav aui-nav-breadcrumbs">
<li><a href="../../../../../dashboard.html"> Project Clover database Sat Aug 7 2021 12:29:33 MDT</a></li>
<li><a href="test-pkg-summary.html">Package com.cardatechnologies.utils.validators.abaroutevalidator</a></li>
<li><a href="test-Test_AbaRouteValidator_03.html">Class Test_AbaRouteValidator_03</a></li>
</ol></div>
<h1 class="aui-h2-clover">
Test testAbaNumberCheck_4078_bad
</h1>
<table class="aui">
<thead>
<tr>
<th>Test</th>
<th><label title="The test result. Either a Pass, Fail or Error.">Status</label></th>
<th><label title="When the test execution was started">Start time</label></th>
<th><label title="The total time in seconds taken to run this test.">Time (seconds)</label></th>
<th><label title="A failure or error message if the test is not successful.">Message</label></th>
</tr>
</thead>
<tbody>
<tr>
<td>
<a href="../../../../../com/cardatechnologies/utils/validators/abaroutevalidator/Test_AbaRouteValidator_03.html?line=37937#src-37937" >testAbaNumberCheck_4078_bad</a>
</td>
<td>
<span class="sortValue">1</span><span class="aui-lozenge aui-lozenge-success">PASS</span>
</td>
<td>
7 Aug 12:32:49
</td>
<td>
0.0 </td>
<td>
<div></div>
<div class="errorMessage"></div>
</td>
</tr>
</tbody>
</table>
<div> </div>
<table class="aui aui-table-sortable">
<thead>
<tr>
<th style="white-space:nowrap;"><label title="A class that was directly hit by this test.">Target Class</label></th>
<th colspan="4"><label title="The percentage of coverage contributed by each single test.">Coverage contributed by</label> testAbaNumberCheck_4078_bad</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<span class="sortValue">com.cardatechnologies.utils.validators.abaroutevalidator.exceptions.AbaRouteValidationException</span>
  <a href="../../../../../com/cardatechnologies/utils/validators/abaroutevalidator/exceptions/AbaRouteValidationException.html?id=2028#AbaRouteValidationException" title="AbaRouteValidationException" name="sl-43">com.cardatechnologies.utils.validators.abaroutevalidator.exceptions.AbaRouteValidationException</a>
</td>
<td>
<span class="sortValue">0.5714286</span>57.1%
</td>
<td class="align-middle" style="width: 100%" colspan="3">
<div>
<div title="57.1% Covered" style="min-width:40px;" class="barNegative contribBarNegative contribBarNegative"><div class="barPositive contribBarPositive contribBarPositive" style="width:57.1%"></div></div></div> </td>
</tr>
<tr>
<td>
<span class="sortValue">com.cardatechnologies.utils.validators.abaroutevalidator.ErrorCodes</span>
  <a href="../../../../../com/cardatechnologies/utils/validators/abaroutevalidator/ErrorCodes.html?id=2028#ErrorCodes" title="ErrorCodes" name="sl-42">com.cardatechnologies.utils.validators.abaroutevalidator.ErrorCodes</a>
</td>
<td>
<span class="sortValue">0.5714286</span>57.1%
</td>
<td class="align-middle" style="width: 100%" colspan="3">
<div>
<div title="57.1% Covered" style="min-width:40px;" class="barNegative contribBarNegative contribBarNegative"><div class="barPositive contribBarPositive contribBarPositive" style="width:57.1%"></div></div></div> </td>
</tr>
<tr>
<td>
<span class="sortValue">com.cardatechnologies.utils.validators.abaroutevalidator.AbaRouteValidator</span>
  <a href="../../../../../com/cardatechnologies/utils/validators/abaroutevalidator/AbaRouteValidator.html?id=2028#AbaRouteValidator" title="AbaRouteValidator" name="sl-47">com.cardatechnologies.utils.validators.abaroutevalidator.AbaRouteValidator</a>
</td>
<td>
<span class="sortValue">0.29411766</span>29.4%
</td>
<td class="align-middle" style="width: 100%" colspan="3">
<div>
<div title="29.4% Covered" style="min-width:40px;" class="barNegative contribBarNegative contribBarNegative"><div class="barPositive contribBarPositive contribBarPositive" style="width:29.4%"></div></div></div> </td>
</tr>
</tbody>
</table>
</div> <!-- class="aui-page-panel-content-clover" -->
<footer id="footer" role="contentinfo">
<section class="footer-body">
<ul>
<li>
Report generated by <a target="_new" href="http://openclover.org">OpenClover</a> v 4.4.1
on Sat Aug 7 2021 12:49:26 MDT using coverage data from Sat Aug 7 2021 12:47:23 MDT.
</li>
</ul>
<ul>
<li>OpenClover is free and open-source software. </li>
</ul>
</section>
</footer> </section> <!-- class="aui-page-panel-content" -->
</div> <!-- class="aui-page-panel-inner" -->
</div> <!-- class="aui-page-panel" -->
</div> <!-- id="page" -->
</body>
</html> |
docs/streams/core-concepts.html | sslavic/kafka | <!--
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.
-->
<script><!--#include virtual="../js/templateData.js" --></script>
<script id="content-template" type="text/x-handlebars-template">
<h1>Core Concepts</h1>
<div class="sub-nav-sticky">
<div class="sticky-top">
<div style="height:35px">
<a href="/{{version}}/documentation/streams/">Introduction</a>
<a href="/{{version}}/documentation/streams/quickstart">Run Demo App</a>
<a href="/{{version}}/documentation/streams/tutorial">Tutorial: Write App</a>
<a class="active-menu-item" href="/{{version}}/documentation/streams/core-concepts">Concepts</a>
<a href="/{{version}}/documentation/streams/architecture">Architecture</a>
<a href="/{{version}}/documentation/streams/developer-guide/">Developer Guide</a>
<a href="/{{version}}/documentation/streams/upgrade-guide">Upgrade</a>
</div>
</div>
</div>
<p>
Kafka Streams is a client library for processing and analyzing data stored in Kafka.
It builds upon important stream processing concepts such as properly distinguishing between event time and processing time, windowing support, and simple yet efficient management and real-time querying of application state.
</p>
<p>
Kafka Streams has a <b>low barrier to entry</b>: You can quickly write and run a small-scale proof-of-concept on a single machine; and you only need to run additional instances of your application on multiple machines to scale up to high-volume production workloads.
Kafka Streams transparently handles the load balancing of multiple instances of the same application by leveraging Kafka's parallelism model.
</p>
<p>
Some highlights of Kafka Streams:
</p>
<ul>
<li>Designed as a <b>simple and lightweight client library</b>, which can be easily embedded in any Java application and integrated with any existing packaging, deployment and operational tools that users have for their streaming applications.</li>
<li>Has <b>no external dependencies on systems other than Apache Kafka itself</b> as the internal messaging layer; notably, it uses Kafka's partitioning model to horizontally scale processing while maintaining strong ordering guarantees.</li>
<li>Supports <b>fault-tolerant local state</b>, which enables very fast and efficient stateful operations like windowed joins and aggregations.</li>
<li>Supports <b>exactly-once</b> processing semantics to guarantee that each record will be processed once and only once even when there is a failure on either Streams clients or Kafka brokers in the middle of processing.</li>
<li>Employs <b>one-record-at-a-time processing</b> to achieve millisecond processing latency, and supports <b>event-time based windowing operations</b> with out-of-order arrival of records.</li>
<li>Offers necessary stream processing primitives, along with a <b>high-level Streams DSL</b> and a <b>low-level Processor API</b>.</li>
</ul>
<p>
We first summarize the key concepts of Kafka Streams.
</p>
<h3><a id="streams_topology" href="#streams_topology">Stream Processing Topology</a></h3>
<ul>
<li>A <b>stream</b> is the most important abstraction provided by Kafka Streams: it represents an unbounded, continuously updating data set. A stream is an ordered, replayable, and fault-tolerant sequence of immutable data records, where a <b>data record</b> is defined as a key-value pair.</li>
<li>A <b>stream processing application</b> is any program that makes use of the Kafka Streams library. It defines its computational logic through one or more <b>processor topologies</b>, where a processor topology is a graph of stream processors (nodes) that are connected by streams (edges).</li>
<li>A <a id="defining-a-stream-processor" href="/{{version}}/documentation/streams/developer-guide/processor-api#defining-a-stream-processor"><b>stream processor</b></a> is a node in the processor topology; it represents a processing step to transform data in streams by receiving one input record at a time from its upstream processors in the topology, applying its operation to it, and may subsequently produce one or more output records to its downstream processors. </li>
</ul>
There are two special processors in the topology:
<ul>
<li><b>Source Processor</b>: A source processor is a special type of stream processor that does not have any upstream processors. It produces an input stream to its topology from one or multiple Kafka topics by consuming records from these topics and forwarding them to its down-stream processors.</li>
<li><b>Sink Processor</b>: A sink processor is a special type of stream processor that does not have down-stream processors. It sends any received records from its up-stream processors to a specified Kafka topic.</li>
</ul>
Note that in normal processor nodes other remote systems can also be accessed while processing the current record. Therefore the processed results can either be streamed back into Kafka or written to an external system.
<img class="centered" src="/{{version}}/images/streams-architecture-topology.jpg" style="width:400px">
<p>
Kafka Streams offers two ways to define the stream processing topology: the <a href="/{{version}}/documentation/streams/developer-guide/dsl-api.html"><b>Kafka Streams DSL</b></a> provides
the most common data transformation operations such as <code>map</code>, <code>filter</code>, <code>join</code> and <code>aggregations</code> out of the box; the lower-level <a href="/{{version}}/documentation/streams/developer-guide/processor-api.html"><b>Processor API</b></a> allows
developers define and connect custom processors as well as to interact with <a href="#streams_state">state stores</a>.
</p>
<p>
A processor topology is merely a logical abstraction for your stream processing code.
At runtime, the logical topology is instantiated and replicated inside the application for parallel processing (see <a href="/{{version}}/documentation/streams/architecture#streams_architecture_tasks"><b>Stream Partitions and Tasks</b></a> for details).
</p>
<h3><a id="streams_time" href="#streams_time">Time</a></h3>
<p>
A critical aspect in stream processing is the notion of <b>time</b>, and how it is modeled and integrated.
For example, some operations such as <b>windowing</b> are defined based on time boundaries.
</p>
<p>
Common notions of time in streams are:
</p>
<ul>
<li><b>Event time</b> - The point in time when an event or data record occurred, i.e. was originally created "at the source". <b>Example:</b> If the event is a geo-location change reported by a GPS sensor in a car, then the associated event-time would be the time when the GPS sensor captured the location change.</li>
<li><b>Processing time</b> - The point in time when the event or data record happens to be processed by the stream processing application, i.e. when the record is being consumed. The processing time may be milliseconds, hours, or days etc. later than the original event time. <b>Example:</b> Imagine an analytics application that reads and processes the geo-location data reported from car sensors to present it to a fleet management dashboard. Here, processing-time in the analytics application might be milliseconds or seconds (e.g. for real-time pipelines based on Apache Kafka and Kafka Streams) or hours (e.g. for batch pipelines based on Apache Hadoop or Apache Spark) after event-time.</li>
<li><b>Ingestion time</b> - The point in time when an event or data record is stored in a topic partition by a Kafka broker. The difference to event time is that this ingestion timestamp is generated when the record is appended to the target topic by the Kafka broker, not when the record is created "at the source". The difference to processing time is that processing time is when the stream processing application processes the record. <b>For example,</b> if a record is never processed, there is no notion of processing time for it, but it still has an ingestion time.</li>
</ul>
<p>
The choice between event-time and ingestion-time is actually done through the configuration of Kafka (not Kafka Streams): From Kafka 0.10.x onwards, timestamps are automatically embedded into Kafka messages. Depending on Kafka's configuration these timestamps represent event-time or ingestion-time. The respective Kafka configuration setting can be specified on the broker level or per topic. The default timestamp extractor in Kafka Streams will retrieve these embedded timestamps as-is. Hence, the effective time semantics of your application depend on the effective Kafka configuration for these embedded timestamps.
</p>
<p>
Kafka Streams assigns a <b>timestamp</b> to every data record via the <code>TimestampExtractor</code> interface.
These per-record timestamps describe the progress of a stream with regards to time and are leveraged by time-dependent operations such as window operations.
As a result, this time will only advance when a new record arrives at the processor.
We call this data-driven time the <b>stream time</b> of the application to differentiate with the <b>wall-clock time</b> when this application is actually executing.
Concrete implementations of the <code>TimestampExtractor</code> interface will then provide different semantics to the stream time definition.
For example retrieving or computing timestamps based on the actual contents of data records such as an embedded timestamp field to provide event time semantics,
and returning the current wall-clock time thereby yield processing time semantics to stream time.
Developers can thus enforce different notions of time depending on their business needs.
</p>
<p>
Finally, whenever a Kafka Streams application writes records to Kafka, then it will also assign timestamps to these new records. The way the timestamps are assigned depends on the context:
</p>
<ul>
<li> When new output records are generated via processing some input record, for example, <code>context.forward()</code> triggered in the <code>process()</code> function call, output record timestamps are inherited from input record timestamps directly.</li>
<li> When new output records are generated via periodic functions such as <code>Punctuator#punctuate()</code>, the output record timestamp is defined as the current internal time (obtained through <code>context.timestamp()</code>) of the stream task.</li>
<li> For aggregations, the timestamp of a result update record will be the maximum timestamp of all input records contributing to the result.</li>
</ul>
<p>
Note, that the describe default behavior can be changed in the Processor API by assigning timestamps to output records explicitly when calling <code>#forward()</code>.
</p>
<h3><a id="streams_concepts_aggregations" href="#streams_concepts_aggregations">Aggregations</a></h3>
<p>
An <strong>aggregation</strong> operation takes one input stream or table, and yields a new table by combining multiple input records into a single output record. Examples of aggregations are computing counts or sum.
</p>
<p>
In the <code>Kafka Streams DSL</code>, an input stream of an <code>aggregation</code> can be a KStream or a KTable, but the output stream will always be a KTable. This allows Kafka Streams to update an aggregate value upon the out-of-order arrival of further records after the value was produced and emitted. When such out-of-order arrival happens, the aggregating KStream or KTable emits a new aggregate value. Because the output is a KTable, the new value is considered to overwrite the old value with the same key in subsequent processing steps.
</p>
<h3> <a id="streams_concepts_windowing" href="#streams_concepts_windowing">Windowing</a></h3>
<p>
Windowing lets you control how to <em>group records that have the same key</em> for stateful operations such as <code>aggregations</code> or <code>joins</code> into so-called <em>windows</em>. Windows are tracked per record key.
</p>
<p>
<code>Windowing operations</code> are available in the <code>Kafka Streams DSL</code>. When working with windows, you can specify a <strong>grace period</strong> for the window. This grace period controls how long Kafka Streams will wait for <strong>out-of-order</strong> data records for a given window. If a record arrives after the grace period of a window has passed, the record is discarded and will not be processed in that window. Specifically, a record is discarded if its timestamp dictates it belongs to a window, but the current stream time is greater than the end of the window plus the grace period.
</p>
<p>
Out-of-order records are always possible in the real world and should be properly accounted for in your applications. It depends on the effective <code>time semantics </code> how out-of-order records are handled. In the case of processing-time, the semantics are "when the record is being processed", which means that the notion of out-of-order records is not applicable as, by definition, no record can be out-of-order. Hence, out-of-order records can only be considered as such for event-time. In both cases, Kafka Streams is able to properly handle out-of-order records.
</p>
<h3><a id="streams_concepts_duality" href="#streams-concepts-duality">Duality of Streams and Tables</a></h3>
<p>
When implementing stream processing use cases in practice, you typically need both <strong>streams</strong> and also <strong>databases</strong>.
An example use case that is very common in practice is an e-commerce application that enriches an incoming <em>stream</em> of customer
transactions with the latest customer information from a <em>database table</em>. In other words, streams are everywhere, but databases are everywhere, too.
</p>
<p>
Any stream processing technology must therefore provide <strong>first-class support for streams and tables</strong>.
Kafka's Streams API provides such functionality through its core abstractions for
<a id="streams_concepts_kstream" href="/{{version}}/documentation/streams/developer-guide/dsl-api#streams_concepts_kstream">streams</a>
and <a id="streams_concepts_ktable" href="/{{version}}/documentation/streams/developer-guide/dsl-api#streams_concepts_ktable">tables</a>,
which we will talk about in a minute. Now, an interesting observation is that there is actually a <strong>close relationship between streams and tables</strong>,
the so-called stream-table duality. And Kafka exploits this duality in many ways: for example, to make your applications
<a id="streams-developer-guide-execution-scaling" href="/{{version}}/documentation/streams/developer-guide/running-app#elastic-scaling-of-your-application">elastic</a>,
to support <a id="streams_architecture_recovery" href="/{{version}}/documentation/streams/architecture#streams_architecture_recovery">fault-tolerant stateful processing</a>,
or to run <a id="streams-developer-guide-interactive-queries" href="/{{version}}/documentation/streams/developer-guide/interactive-queries#interactive-queries">interactive queries</a>
against your application's latest processing results. And, beyond its internal usage, the Kafka Streams API
also allows developers to exploit this duality in their own applications.
</p>
<p>
Before we discuss concepts such as <a id="streams-developer-guide-dsl-aggregating" href="/{{version}}/documentation/streams/developer-guide/dsl-api#aggregating">aggregations</a>
in Kafka Streams, we must first introduce <strong>tables</strong> in more detail, and talk about the aforementioned stream-table duality.
Essentially, this duality means that a stream can be viewed as a table, and a table can be viewed as a stream.
</p>
<h3><a id="streams_state" href="#streams_state">States</a></h3>
<p>
Some stream processing applications don't require state, which means the processing of a message is independent from
the processing of all other messages.
However, being able to maintain state opens up many possibilities for sophisticated stream processing applications: you
can join input streams, or group and aggregate data records. Many such stateful operators are provided by the <a href="/{{version}}/documentation/streams/developer-guide/dsl-api.html"><b>Kafka Streams DSL</b></a>.
</p>
<p>
Kafka Streams provides so-called <b>state stores</b>, which can be used by stream processing applications to store and query data.
This is an important capability when implementing stateful operations.
Every task in Kafka Streams embeds one or more state stores that can be accessed via APIs to store and query data required for processing.
These state stores can either be a persistent key-value store, an in-memory hashmap, or another convenient data structure.
Kafka Streams offers fault-tolerance and automatic recovery for local state stores.
</p>
<p>
Kafka Streams allows direct read-only queries of the state stores by methods, threads, processes or applications external to the stream processing application that created the state stores. This is provided through a feature called <b>Interactive Queries</b>. All stores are named and Interactive Queries exposes only the read operations of the underlying implementation.
</p>
<br>
<h2><a id="streams_processing_guarantee" href="#streams_processing_guarantee">Processing Guarantees</a></h2>
<p>
In stream processing, one of the most frequently asked question is "does my stream processing system guarantee that each record is processed once and only once, even if some failures are encountered in the middle of processing?"
Failing to guarantee exactly-once stream processing is a deal-breaker for many applications that cannot tolerate any data-loss or data duplicates, and in that case a batch-oriented framework is usually used in addition
to the stream processing pipeline, known as the <a href="http://lambda-architecture.net/">Lambda Architecture</a>.
Prior to 0.11.0.0, Kafka only provides at-least-once delivery guarantees and hence any stream processing systems that leverage it as the backend storage could not guarantee end-to-end exactly-once semantics.
In fact, even for those stream processing systems that claim to support exactly-once processing, as long as they are reading from / writing to Kafka as the source / sink, their applications cannot actually guarantee that
no duplicates will be generated throughout the pipeline.<br />
Since the 0.11.0.0 release, Kafka has added support to allow its producers to send messages to different topic partitions in a <a href="https://kafka.apache.org/documentation/#semantics">transactional and idempotent manner</a>,
and Kafka Streams has hence added the end-to-end exactly-once processing semantics by leveraging these features.
More specifically, it guarantees that for any record read from the source Kafka topics, its processing results will be reflected exactly once in the output Kafka topic as well as in the state stores for stateful operations.
Note the key difference between Kafka Streams end-to-end exactly-once guarantee with other stream processing frameworks' claimed guarantees is that Kafka Streams tightly integrates with the underlying Kafka storage system and ensure that
commits on the input topic offsets, updates on the state stores, and writes to the output topics will be completed atomically instead of treating Kafka as an external system that may have side-effects.
For more information on how this is done inside Kafka Streams, see <a href="https://cwiki.apache.org/confluence/display/KAFKA/KIP-129%3A+Streams+Exactly-Once+Semantics">KIP-129</a>.<br />
As of the 2.6.0 release, Kafka Streams supports an improved implementation of exactly-once processing, named "exactly-once beta",
which requires broker version 2.5.0 or newer.
This implementation is more efficient, because it reduces client and broker resource utilization, like client threads and used network connections,
and it enables higher throughput and improved scalability.
For more information on how this is done inside the brokers and Kafka Streams, see
<a href="https://cwiki.apache.org/confluence/display/KAFKA/KIP-447%3A+Producer+scalability+for+exactly+once+semantics">KIP-447</a>.<br />
To enable exactly-once semantics when running Kafka Streams applications,
set the <code>processing.guarantee</code> config value (default value is <b>at_least_once</b>)
to <b>exactly_once</b> (requires brokers version 0.11.0 or newer) or <b>exactly_once_beta</b> (requires brokers version 2.5 or newer).
For more information, see the <a href="/{{version}}/documentation/streams/developer-guide/config-streams.html">Kafka Streams Configs</a> section.
</p>
<h3><a id="streams_out_of_ordering" href="#streams_out_of_ordering">Out-of-Order Handling</a></h3>
<p>
Besides the guarantee that each record will be processed exactly-once, another issue that many stream processing application will face is how to
handle <a href="https://dl.acm.org/citation.cfm?id=3242155">out-of-order data</a> that may impact their business logic. In Kafka Streams, there are two causes that could potentially
result in out-of-order data arrivals with respect to their timestamps:
</p>
<ul>
<li> Within a topic-partition, a record's timestamp may not be monotonically increasing along with their offsets. Since Kafka Streams will always try to process records within a topic-partition to follow the offset order,
it can cause records with larger timestamps (but smaller offsets) to be processed earlier than records with smaller timestamps (but larger offsets) in the same topic-partition.
</li>
<li> Within a <a href="/{{version}}/documentation/streams/architecture#streams_architecture_tasks">stream task</a> that may be processing multiple topic-partitions, if users configure the application to not wait for all partitions to contain some buffered data and
pick from the partition with the smallest timestamp to process the next record, then later on when some records are fetched for other topic-partitions, their timestamps may be smaller than those processed records fetched from another topic-partition.
</li>
</ul>
<p>
For stateless operations, out-of-order data will not impact processing logic since only one record is considered at a time, without looking into the history of past processed records;
for stateful operations such as aggregations and joins, however, out-of-order data could cause the processing logic to be incorrect. If users want to handle such out-of-order data, generally they need to allow their applications
to wait for longer time while bookkeeping their states during the wait time, i.e. making trade-off decisions between latency, cost, and correctness.
In Kafka Streams specifically, users can configure their window operators for windowed aggregations to achieve such trade-offs (details can be found in <a href="/{{version}}/documentation/streams/developer-guide"><b>Developer Guide</b></a>).
As for Joins, users have to be aware that some of the out-of-order data cannot be handled by increasing on latency and cost in Streams yet:
</p>
<ul>
<li> For Stream-Stream joins, all three types (inner, outer, left) handle out-of-order records correctly, but the resulted stream may contain unnecessary leftRecord-null for left joins, and leftRecord-null or null-rightRecord for outer joins. </li>
<li> For Stream-Table joins, out-of-order records are not handled (i.e., Streams applications don't check for out-of-order records and just process all records in offset order), and hence it may produce unpredictable results. </li>
<li> For Table-Table joins, out-of-order records are not handled (i.e., Streams applications don't check for out-of-order records and just process all records in offset order). However, the join result is a changelog stream and hence will be eventually consistent. </li>
</ul>
<div class="pagination">
<a href="/{{version}}/documentation/streams/tutorial" class="pagination__btn pagination__btn__prev">Previous</a>
<a href="/{{version}}/documentation/streams/architecture" class="pagination__btn pagination__btn__next">Next</a>
</div>
</script>
<!--#include virtual="../../includes/_header.htm" -->
<!--#include virtual="../../includes/_top.htm" -->
<div class="content documentation documentation--current">
<!--#include virtual="../../includes/_nav.htm" -->
<div class="right">
<!--#include virtual="../../includes/_docs_banner.htm" -->
<ul class="breadcrumbs">
<li><a href="/documentation">Documentation</a></li>
<li><a href="/documentation/streams">Kafka Streams</a></li>
</ul>
<div class="p-content"></div>
</div>
</div>
<!--#include virtual="../../includes/_footer.htm" -->
<script>
$(function() {
// Show selected style on nav item
$('.b-nav__streams').addClass('selected');
//sticky secondary nav
var $navbar = $(".sub-nav-sticky"),
y_pos = $navbar.offset().top,
height = $navbar.height();
$(window).scroll(function() {
var scrollTop = $(window).scrollTop();
if (scrollTop > y_pos - height) {
$navbar.addClass("navbar-fixed")
} else if (scrollTop <= y_pos) {
$navbar.removeClass("navbar-fixed")
}
});
// Display docs subnav items
$('.b-nav__docs').parent().toggleClass('nav__item__with__subs--expanded');
});
</script>
|
carrot2-webapp-3.8.1/herballsilvertrigram/01497947.txt.html | idigbio-citsci-hackathon/carrotFacetNgram | <html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<span class='rank0 0.0'>?6</span>
<span class='rank0 0.0'>7</span>
<span class='rank0 0.0'>8</span>
<span class='rank0 0.0'>9</span>
<span class='rank6 5.886281793427337'>10</span>
</br>
<span class='rank0 0.0'>.</span>
<span class='rank0 0.0'>,,</span>
<span class='rank5 5.380675333968457'>The</span>
<span class='rank6 5.910214491268059'>New</span>
<span class='rank5 5.027215308896533'>York</span>
</br>
<span class='rank4 4.050174224831018'>copyright</span>
<span class='rank2 1.7822710117187128'>reserved</span>
<span class='rank0 -0.3482453244774675'>botanical</span>
<span class='rank3 3.451197890939337'>Garden</span>
</br>
<span class='rank14 14.39021113259546'>Revised</span>
<span class='rank4 4.456588980111844'>for</span>
<span class='rank10 9.692689519007637'>Rare</span>
<span class='rank2 2.3388802077460475'>Plants</span>
<span class='rank6 6.129628052059067'>of</span>
<span class='rank1 0.547932610981583'>Puerto</span>
<span class='rank0 0.055062450032060895'>Rico.</span>
</br>
<span class='rank7 6.5714608043381055'>J.</span>
<span class='rank8 7.770156551563198'>C.</span>
<span class='rank25 25.38428745288575'>Trejo</span>
<span class='rank-5 -4.65204457331869'>September,</span>
<span class='rank5 4.5475787639717495'>2006</span>
</br>
<span class='rank-12 -11.662750556870819'>Ciudadanos</span>
<span class='rank3 2.767904097996105'>del</span>
<span class='rank9 9.078861369814168'>Karso</span>
</br>
<span class='rank3 2.7395249946955857'>BAHAMAS</span>
</br>
<span class='rank0 0.0'>..........</span>
<span class='rank40 39.64032503643245'>~FL,{ÀCsf'str£çd.</span>
<span class='rank52 51.81975184842238'>'sl.rlAfy\/r.</span>
<span class='rank11 10.714595530729639'>(Xsv\/h/x4r$.</span>
</br>
<span class='rank9 8.922836061501583'>(y£c.</span>
<span class='rank0 0.0'>.</span>
<span class='rank10 10.021448350169694'>............Ia^</span>
</br>
<span class='rank14 14.262153184547056'>EXAM1ND</span>
<span class='rank0 0.0'>FîR</span>
<span class='rank4 4.29887101623795'>BAHAMA</span>
<span class='rank4 4.107585886410401'>FLORA</span>
<span class='rank8 8.412010437735592'>w.</span>
<span class='rank7 7.00102346402533'>T.</span>
<span class='rank23 23.093352977111678'>GILLfS</span>
</br>
<span class='rank4 4.3452095742978045'>BOTANICAL</span>
</br>
<span class='rank7 6.8134437030399475'>'>71.</span>
<span class='rank0 0.0'>S</span>
</br>
<span class='rank0 0.0'>\</span>
</br>
<span class='rank9 8.95027623456047'>01497947</span>
</br>
</br></br>
<strong>Legend - </strong>
Level of confidence that token is an accurately-transcribed word</br>
<span class='rank-13'> </span> extremely low
<span class='rank-7'> </span> very low
<span class='rank-1'> </span> low
<span class='rank0'> </span> undetermined
<span class='rank1'> </span> medium
<span class='rank6'> </span> high
<span class='rank16'> </span> very high</br>
</body>
</html>
|
webServer/wwwroot/misc/css/layout.css | AnthemiusGuo/contactFriends | @media print {
body {
background-color: #fff !important;
}
.page-bar {
display: none;
}
.page-sidebar-wrapper {
display: none;
}
.page-quick-sidebar-wrapper {
display: none;
}
.theme-panel {
display: none;
}
.hidden-print {
display: none;
}
.page-footer {
display: none;
}
.no-page-break {
page-break-after: avoid;
}
.page-container {
margin: 0px !important;
padding: 0px !important;
}
.page-content {
padding: 0 !important;
min-height: 300px !important;
padding: 0px 20px 20px !important;
margin: 0 !important;
}
}
/***
Page Header
***/
.page-header.navbar {
width: 100%;
padding: 0 20px 0 20px;
margin: 0;
border: 0px;
padding: 0px;
box-shadow: none;
height: 46px;
min-height: 46px;
filter: none;
background-image: none;
/* Fixed header */
/* Header logo */
/* Search box */
/* Menu Toggler */
/* Top menu */
}
.page-header.navbar.navbar-fixed-top {
z-index: 9995;
}
.page-header.navbar.navbar-static-top {
z-index: 9995;
}
.page-header.navbar .page-logo {
float: left;
display: block;
width: 235px;
height: 46px;
padding-left: 20px;
padding-right: 20px;
}
.page-sidebar-closed.page-sidebar-closed-hide-logo .page-header.navbar .page-logo {
padding: 0;
}
.page-header.navbar .page-logo > .logo-image,
.page-header.navbar .page-logo > a {
display: inline-block;
float: left;
}
.page-header.navbar .page-logo .logo-default {
margin: 0 0 0 0;
}
.page-header.navbar .page-logo .logo-mini {
display: none;
margin-left: 5px;
}
.page-header.navbar .page-logo .text-logo {
padding-left: 20px;
padding-top: 12px;
}
.page-header.navbar .search-form {
display: inline-block;
width: 46px;
position: relative;
float: left;
transition: all 0.6s;
}
.page-header.navbar .search-form .input-group .form-control {
height: 46px;
border: 0;
background: transparent !important;
font-size: 13px;
padding-left: 0;
margin-left: 12px;
text-indent: -150000px;
}
.page-header.navbar .search-form .input-group .form-control:hover {
cursor: pointer;
}
.page-header.navbar .search-form .input-group .input-group-btn {
height: 46px;
}
.page-header.navbar .search-form .input-group .input-group-btn .btn.submit {
margin-left: -24px;
padding: 0;
width: 46px;
background: none;
margin-top: 4px;
display: block;
}
.page-header.navbar .search-form .input-group .input-group-btn .btn.submit > i {
font-size: 15px;
}
.page-header.navbar .search-form.open {
transition: all 0.6s;
width: 300px !important;
}
.page-header.navbar .search-form.open .input-group .form-control {
text-indent: 0;
}
.page-header.navbar .search-form.open .input-group .form-control:hover {
cursor: text;
}
.page-header.navbar .search-form.open .input-group .input-group-btn .btn.submit {
margin-left: 0;
}
.page-header.navbar .menu-toggler {
display: block;
cursor: pointer;
opacity: 0.7;
filter: alpha(opacity=70);
width: 24px;
height: 24px;
background-repeat: no-repeat;
background-position: center center;
}
.page-header.navbar .menu-toggler:hover {
filter: alpha(opacity=100);
opacity: 1;
}
.page-header.navbar .menu-toggler.sidebar-toggler {
float: right;
margin: 11px 0 0 0;
}
.page-sidebar-closed.page-sidebar-closed-hide-logo .page-header.navbar .menu-toggler.sidebar-toggler {
margin-right: 10.5px;
}
.page-header.navbar .menu-toggler.responsive-toggler {
display: none;
float: right;
margin: 11px 6px 0 6px;
}
.page-header.navbar .top-menu {
margin: 0;
padding: 0;
float: right;
}
.page-header.navbar .top-menu .navbar-nav {
padding: 0;
margin-right: 20px;
display: block;
/* Extended Dropdowns */
/* Notification */
/* Inbox */
/* Tasks */
/* User */
/* Language */
/* Dark version */
}
.page-header.navbar .top-menu .navbar-nav > li.dropdown {
margin: 0px;
padding: 0px 4px;
height: 46px;
display: inline-block;
}
.page-header.navbar .top-menu .navbar-nav > li.dropdown:last-child {
padding-right: 0px;
}
.page-header.navbar .top-menu .navbar-nav > li.dropdown > .dropdown-toggle {
margin: 0px;
padding: 17px 10px 9px 10px;
}
.page-header.navbar .top-menu .navbar-nav > li.dropdown > .dropdown-toggle:last-child {
padding-right: 0;
}
.page-header.navbar .top-menu .navbar-nav > li.dropdown > .dropdown-toggle > i {
font-size: 17px;
}
.page-header.navbar .top-menu .navbar-nav > li.dropdown > .dropdown-toggle > i.glyphicon {
font-size: 16px;
}
.page-header.navbar .top-menu .navbar-nav > li.dropdown > .dropdown-toggle > .badge {
font-family: "Open Sans", sans-serif;
position: absolute;
top: 10px;
right: 20px;
font-weight: 300px;
padding: 3px 6px;
}
.page-header.navbar .top-menu .navbar-nav > li.dropdown > .dropdown-toggle:focus {
background: none;
}
.page-header.navbar .top-menu .navbar-nav > li.dropdown .dropdown-menu {
margin-top: 3px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
-ms-border-radius: 4px;
-o-border-radius: 4px;
border-radius: 4px;
}
.page-header.navbar .top-menu .navbar-nav > li.dropdown .dropdown-menu:before {
position: absolute;
top: -7px;
right: 9px;
display: inline-block !important;
border-right: 7px solid transparent;
border-bottom: 7px solid #eee;
border-left: 7px solid transparent;
border-bottom-color: rgba(0, 0, 0, 0.2);
content: '';
}
.page-header.navbar .top-menu .navbar-nav > li.dropdown .dropdown-menu:after {
position: absolute;
top: -6px;
right: 10px;
display: inline-block !important;
border-right: 6px solid transparent;
border-bottom: 6px solid #fff;
border-left: 6px solid transparent;
content: '';
}
.page-header.navbar .top-menu .navbar-nav > li.dropdown .dropdown-menu > li > a {
color: #555;
}
.page-header.navbar .top-menu .navbar-nav > li.dropdown-extended .dropdown-menu {
min-width: 160px;
max-width: 275px;
width: 275px;
z-index: 9995;
/* header notifications dropdowns */
}
.page-header.navbar .top-menu .navbar-nav > li.dropdown-extended .dropdown-menu > li.external {
display: block;
overflow: hidden;
padding: 15px 15px;
letter-spacing: 0.5px;
-webkit-border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0;
-ms-border-radius: 4px 4px 0 0;
-o-border-radius: 4px 4px 0 0;
border-radius: 4px 4px 0 0;
}
.page-header.navbar .top-menu .navbar-nav > li.dropdown-extended .dropdown-menu > li.external > h3 {
margin: 0;
padding: 0;
float: left;
font-size: 13px;
display: inline-block;
}
.page-header.navbar .top-menu .navbar-nav > li.dropdown-extended .dropdown-menu > li.external > a {
display: inline-block;
padding: 0;
background: none;
clear: inherit;
font-size: 13px;
font-weight: 300;
position: absolute;
right: 10px;
border: 0;
margin-top: -1px;
}
.page-header.navbar .top-menu .navbar-nav > li.dropdown-extended .dropdown-menu > li.external > a:hover {
text-decoration: underline;
}
.page-header.navbar .top-menu .navbar-nav > li.dropdown-extended .dropdown-menu .dropdown-menu-list {
padding-right: 0 !important;
padding-left: 0;
list-style: none;
}
.page-header.navbar .top-menu .navbar-nav > li.dropdown-extended .dropdown-menu .dropdown-menu-list > li > a {
display: block;
clear: both;
font-weight: 300;
line-height: 20px;
white-space: normal;
font-size: 13px;
padding: 16px 15px 18px;
text-shadow: none;
}
.page-header.navbar .top-menu .navbar-nav > li.dropdown-extended .dropdown-menu .dropdown-menu-list > li > a:hover {
opacity: 1;
filter: alpha(opacity=100);
}
.page-header.navbar .top-menu .navbar-nav > li.dropdown-extended .dropdown-menu .dropdown-menu-list > li:first-child a {
border-top: none;
}
.page-header.navbar .top-menu .navbar-nav > li.dropdown-notification .dropdown-menu .dropdown-menu-list > li a .details {
overflow: hidden;
}
.page-header.navbar .top-menu .navbar-nav > li.dropdown-notification .dropdown-menu .dropdown-menu-list > li a .details .label-icon {
margin-right: 10px;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
}
.page-header.navbar .top-menu .navbar-nav > li.dropdown-notification .dropdown-menu .dropdown-menu-list > li a .details .label-icon i {
margin-right: 2px;
margin-left: 1px;
}
.page-header.navbar .top-menu .navbar-nav > li.dropdown-notification .dropdown-menu .dropdown-menu-list > li a .details .label-icon .badge {
right: 15px;
}
.page-header.navbar .top-menu .navbar-nav > li.dropdown-notification .dropdown-menu .dropdown-menu-list > li a .time {
float: right;
max-width: 75px;
font-size: 11px;
font-weight: 400;
opacity: 0.7;
filter: alpha(opacity=70);
text-align: right;
padding: 1px 5px;
}
.page-header.navbar .top-menu .navbar-nav > li.dropdown-inbox > .dropdown-menu .dropdown-menu-list > li .photo {
float: left;
margin: 0 6px 6px 0;
}
.page-header.navbar .top-menu .navbar-nav > li.dropdown-inbox > .dropdown-menu .dropdown-menu-list > li .photo img {
height: 40px;
width: 40px;
-webkit-border-radius: 50% !important;
-moz-border-radius: 50% !important;
-ms-border-radius: 50% !important;
-o-border-radius: 50% !important;
border-radius: 50% !important;
}
.page-header.navbar .top-menu .navbar-nav > li.dropdown-inbox > .dropdown-menu .dropdown-menu-list > li .subject {
display: block;
margin-left: 46px;
}
.page-header.navbar .top-menu .navbar-nav > li.dropdown-inbox > .dropdown-menu .dropdown-menu-list > li .subject .from {
font-size: 13px;
font-weight: 600;
}
.page-header.navbar .top-menu .navbar-nav > li.dropdown-inbox > .dropdown-menu .dropdown-menu-list > li .subject .time {
font-size: 12px;
font-weight: 400;
opacity: 0.5;
filter: alpha(opacity=50);
float: right;
}
.page-header.navbar .top-menu .navbar-nav > li.dropdown-inbox > .dropdown-menu .dropdown-menu-list > li .message {
display: block !important;
font-size: 12px;
line-height: 1.3;
margin-left: 46px;
}
.page-header.navbar .top-menu .navbar-nav > li.dropdown-tasks .dropdown-menu .dropdown-menu-list > li .task {
margin-bottom: 5px;
}
.page-header.navbar .top-menu .navbar-nav > li.dropdown-tasks .dropdown-menu .dropdown-menu-list > li .task .desc {
font-size: 13px;
font-weight: 300;
}
.page-header.navbar .top-menu .navbar-nav > li.dropdown-tasks .dropdown-menu .dropdown-menu-list > li .task .percent {
float: right;
font-weight: 600;
display: inline-block;
}
.page-header.navbar .top-menu .navbar-nav > li.dropdown-tasks .dropdown-menu .dropdown-menu-list > li .progress {
display: block;
height: 8px;
margin: 8px 0 2px;
}
.page-header.navbar .top-menu .navbar-nav > li.dropdown-tasks .dropdown-menu .dropdown-menu-list > li .progress .progress-bar {
box-shadow: none;
}
.page-header.navbar .top-menu .navbar-nav > li.dropdown-user .dropdown-toggle {
padding: 14px 6px 12px 8px;
}
.page-header.navbar .top-menu .navbar-nav > li.dropdown-user .dropdown-toggle > .username {
display: inline-block;
font-size: 13px;
font-weight: 300;
}
.page-header.navbar .top-menu .navbar-nav > li.dropdown-user .dropdown-toggle > img {
float: left;
margin-top: -5px;
margin-right: 5px;
height: 29px;
display: inline-block;
}
.page-header.navbar .top-menu .navbar-nav > li.dropdown-user .dropdown-toggle > i {
display: inline-block;
margin-top: 5px;
margin: 0;
font-size: 13px;
}
.page-header.navbar .top-menu .navbar-nav > li.dropdown-user .dropdown-menu {
width: 175px;
}
.page-header.navbar .top-menu .navbar-nav > li.dropdown-user .dropdown-menu > li > a {
font-size: 14px;
font-weight: 300;
}
.page-header.navbar .top-menu .navbar-nav > li.dropdown-user .dropdown-menu > li > a i {
width: 15px;
display: inline-block;
margin-right: 9px;
}
.page-header.navbar .top-menu .navbar-nav > li.dropdown-user .dropdown-menu > li > a .badge {
margin-right: 10px;
}
.page-header.navbar .top-menu .navbar-nav > li.dropdown-language {
padding-left: 0;
padding-right: 0;
margin: 0;
}
.page-header.navbar .top-menu .navbar-nav > li.dropdown-language > .dropdown-toggle {
padding: 14px 3px 12px 7px;
}
.page-header.navbar .top-menu .navbar-nav > li.dropdown-language > .dropdown-toggle > img {
margin-bottom: 2px;
}
.page-header.navbar .top-menu .navbar-nav > li.dropdown-language > .dropdown-toggle > i {
font-size: 14px;
}
.page-header.navbar .top-menu .navbar-nav > li.dropdown-language > .dropdown-menu > li > a {
font-size: 13px;
}
.page-header.navbar .top-menu .navbar-nav > li.dropdown-language > .dropdown-menu > li > a > img {
margin-bottom: 2px;
margin-right: 5px;
}
.page-header.navbar .top-menu .navbar-nav li.dropdown-dark .dropdown-menu:before {
border-left: none;
border-right: none;
}
.page-header.navbar .top-menu .navbar-nav li.dropdown-dark .dropdown-menu .dropdown-menu-list > li.external a {
background: none !important;
border: none !important;
}
/* Allow expanded search for above 768px */
@media (min-width: 768px) {
/* 768px */
.page-header.navbar {
/* Search box */
}
.page-header.navbar .search-form.search-form-expanded {
width: 200px;
}
.page-header.navbar .search-form.search-form-expanded .input-group .form-control {
text-indent: 0;
}
.page-header.navbar .search-form.search-form-expanded .input-group .form-control:hover {
cursor: text;
}
.page-header.navbar .search-form.search-form-expanded .input-group .input-group-btn .btn.submit {
margin-left: 0;
}
}
/***
Horizontal Menu
***/
.page-header.navbar {
/* Header container */
/* Mega menu */
}
.page-header.navbar .container {
position: relative;
}
.page-header.navbar .hor-menu {
margin: 0 0 0 -17px;
margin: 0;
float: left;
}
.page-header.navbar .hor-menu .navbar-nav {
position: static;
/* Mega menu */
/* Mega Menu Dropdown */
/* Classic menu */
}
.page-header.navbar .hor-menu .navbar-nav.navbar-right .dropdown-menu {
left: auto;
right: 0;
}
.page-header.navbar .hor-menu .navbar-nav > li.mega-menu-dropdown {
position: static;
}
.page-header.navbar .hor-menu .navbar-nav > li.mega-menu-dropdown > .dropdown-menu {
left: auto;
width: auto;
}
.page-header.navbar .hor-menu .navbar-nav > li.mega-menu-dropdown > .dropdown-menu .mega-menu-content {
font-family: "Open Sans", sans-serif;
padding: 15px;
margin: 0;
}
.page-header.navbar .hor-menu .navbar-nav > li.mega-menu-dropdown > .dropdown-menu .mega-menu-content.mega-menu-responsive-content {
padding: 10px 18px 10px 45px;
}
.page-header.navbar .hor-menu .navbar-nav > li.mega-menu-dropdown > .dropdown-menu .mega-menu-content .mega-menu-submenu {
padding: 0;
margin: 0;
}
.page-header.navbar .hor-menu .navbar-nav > li.mega-menu-dropdown > .dropdown-menu .mega-menu-content .mega-menu-submenu:last-child {
border-right: 0;
}
.page-header.navbar .hor-menu .navbar-nav > li.mega-menu-dropdown > .dropdown-menu .mega-menu-content .mega-menu-submenu li {
padding: 1px !important;
margin: 0 !important;
list-style: none;
}
.page-header.navbar .hor-menu .navbar-nav > li.mega-menu-dropdown > .dropdown-menu .mega-menu-content .mega-menu-submenu li > h3 {
margin-top: 5px;
padding-left: 6px;
font-size: 15px;
font-weight: 400;
}
.page-header.navbar .hor-menu .navbar-nav > li.mega-menu-dropdown > .dropdown-menu .mega-menu-content .mega-menu-submenu li > a {
white-space: normal;
font-family: "Open Sans", sans-serif;
padding: 7px;
margin: 0;
font-size: 14px;
font-weight: 300;
}
.page-header.navbar .hor-menu .navbar-nav > li.mega-menu-dropdown > .dropdown-menu .mega-menu-content .mega-menu-submenu li > a.iconify {
padding: 7px 7px 7px 30px;
}
.page-header.navbar .hor-menu .navbar-nav > li.mega-menu-dropdown > .dropdown-menu .mega-menu-content .mega-menu-submenu li > a.iconify > i {
position: absolute;
top: auto !important;
margin-left: -24px;
font-size: 15px;
margin-top: 3px !important;
}
.page-header.navbar .hor-menu .navbar-nav > li.mega-menu-dropdown > .dropdown-menu .mega-menu-content .mega-menu-submenu li > a .badge,
.page-header.navbar .hor-menu .navbar-nav > li.mega-menu-dropdown > .dropdown-menu .mega-menu-content .mega-menu-submenu li > a .label {
margin-left: 5px;
}
.page-header.navbar .hor-menu .navbar-nav > li.mega-menu-dropdown.mega-menu-full .dropdown-menu {
left: 20px;
right: 20px;
}
.page-header.navbar .hor-menu .navbar-nav > li.menu-dropdown .dropdown-menu:after, .page-header.navbar .hor-menu .navbar-nav > li.menu-dropdown .dropdown-menu:before {
display: none !important;
}
.page-header.navbar .hor-menu .navbar-nav > li > a {
font-size: 14px;
font-weight: 400;
padding: 13px 13px;
}
.page-header.navbar .hor-menu .navbar-nav > li > a:focus {
background: none !important;
}
.page-header.navbar .hor-menu .navbar-nav > li.current .selected, .page-header.navbar .hor-menu .navbar-nav > li.active .selected {
left: 50%;
bottom: 0;
position: absolute;
border-left: 6px solid transparent;
border-right: 6px solid transparent;
border-top: 6px solid transparent;
display: inline-block;
margin: 0;
width: 0;
height: 0px;
margin-left: -7px;
margin-bottom: -6px;
}
.page-header.navbar .hor-menu .navbar-nav > li .dropdown-menu {
margin-top: 0;
border: none;
}
.page-header.navbar .hor-menu .navbar-nav > li .dropdown-menu li > a {
font-family: "Open Sans", sans-serif;
font-size: 14px;
font-weight: 300;
padding: 9px 10px;
white-space: normal;
}
.page-header.navbar .hor-menu .navbar-nav > li .dropdown-menu li > a .label,
.page-header.navbar .hor-menu .navbar-nav > li .dropdown-menu li > a .badge {
font-weight: 300;
}
.page-header.navbar .hor-menu .navbar-nav > li.classic-menu-dropdown .dropdown-menu {
min-width: 195px;
max-width: 235px;
}
.page-header.navbar .hor-menu .navbar-nav > li .dropdown-submenu > .dropdown-menu {
top: 0;
}
.page-header.navbar .hor-menu .navbar-nav > li .dropdown-submenu > a:after {
top: 9px;
right: 10px;
}
/* Form medium devices upto large devices */
@media (min-width: 992px) and (max-width: 1200px) {
/* 992px 1200px */
/* Boxed layout */
.page-boxed .page-header.navbar {
/* Top menu */
}
.page-boxed .page-header.navbar .top-menu .navbar-nav > li.dropdown-user .dropdown-toggle .username.username-hide-on-mobile {
display: none;
}
.page-boxed .page-header.navbar .top-menu .navbar-nav > li.dropdown-language .dropdown-toggle .langname {
display: none;
}
}
@media (min-width: 992px) {
/* 992px */
/* Page header */
.page-header.navbar {
/* Header logo */
}
.page-sidebar-closed.page-sidebar-closed-hide-logo .page-header.navbar .page-logo {
padding: 0;
}
.page-sidebar-closed.page-sidebar-closed-hide-logo .page-header.navbar .page-logo {
width: 45px;
}
.page-sidebar-closed.page-sidebar-closed-hide-logo .page-header.navbar .page-logo .logo-default {
display: none;
}
/* Boxed Layout */
.page-boxed .page-header.navbar {
/* Page logo */
/* Top menu */
}
.page-boxed .page-header.navbar .page-logo {
width: 236px;
}
.page-boxed .page-header.navbar .top-menu .navbar-nav {
margin-right: 0px;
}
/* Sidebar closed & logo hidden */
.page-sidebar-closed.page-sidebar-closed-hide-logo.page-boxed .page-header.navbar {
/* Page logo */
}
.page-sidebar-closed.page-sidebar-closed-hide-logo.page-boxed .page-header.navbar .page-logo {
width: 46px;
}
/* Boxed layout & page sidebar fixed layout */
.page-boxed.page-sidebar-fixed .page-header.navbar {
/* Page logo */
}
.page-boxed.page-sidebar-fixed .page-header.navbar .page-logo {
width: 235px;
}
}
@media (max-width: 991px) {
/* 991px */
/* Page header */
.page-header.navbar {
padding: 0 20px 0 20px;
position: relative;
clear: both;
/* Page logo */
/* Menu Toggler */
/* Top Menu */
}
.page-header.navbar .page-logo {
width: auto;
padding: 0;
margin-right: 10px;
margin-left: 0px !important;
padding-left: 0px !important;
}
.page-header.navbar .page-logo img {
margin-left: 4px !important;
}
.page-header.navbar .menu-toggler.sidebar-toggler {
display: none !important;
}
.page-header.navbar .menu-toggler.responsive-toggler {
display: inline-block;
}
.page-header.navbar .top-menu .navbar-nav {
display: inline-block;
margin: 0 10px 0 0;
}
.page-header.navbar .top-menu .navbar-nav > li {
float: left;
}
.page-header.navbar .top-menu .navbar-nav .nav li.dropdown i {
display: inline-block;
position: relative;
top: 1px;
right: 0px;
}
.page-header.navbar .top-menu .navbar-nav .open .dropdown-menu {
position: absolute;
}
/* Fixed header for mobile */
.page-header-fixed.page-header-fixed-mobile .navbar-fixed-top {
position: fixed;
}
/* Boxed Layout */
.page-boxed .page-header.navbar > .container {
max-width: none !important;
margin: 0 !important;
padding: 0 !important;
}
}
@media (min-width: 768px) and (max-width: 991px) {
/* 768px & 991px */
/* Boxed Layout */
.page-boxed .page-header.navbar {
margin: auto !important;
padding: 0;
}
.page-boxed .page-header.navbar > .container {
margin: auto !important;
}
}
@media (max-width: 767px) {
/* 767px */
/* Page header */
.page-header.navbar {
padding: 0 10px 0 10px;
/* Header logo */
/* Search box */
/* Top navigation menu*/
}
.page-header.navbar .page-logo {
width: auto;
}
.page-header.navbar .search-form.open {
z-index: 3;
left: 10px;
right: 10px;
position: absolute;
width: auto !important;
}
.page-header.navbar .top-menu .navbar-nav > li.dropdown-extended > .dropdown-menu {
max-width: 255px;
width: 255px;
}
.page-header.navbar .top-menu .navbar-nav > li.dropdown-notification .dropdown-menu {
margin-right: -190px;
}
.page-header.navbar .top-menu .navbar-nav > li.dropdown-notification .dropdown-menu:after, .page-header.navbar .top-menu .navbar-nav > li.dropdown-notification .dropdown-menu:before {
margin-right: 190px;
}
.page-header.navbar .top-menu .navbar-nav > li.dropdown-inbox .dropdown-menu {
margin-right: -150px;
}
.page-header.navbar .top-menu .navbar-nav > li.dropdown-inbox .dropdown-menu:after, .page-header.navbar .top-menu .navbar-nav > li.dropdown-inbox .dropdown-menu:before {
margin-right: 150px;
}
.page-header.navbar .top-menu .navbar-nav > li.dropdown-tasks .dropdown-menu {
margin-right: -110px;
}
.page-header.navbar .top-menu .navbar-nav > li.dropdown-tasks .dropdown-menu:after, .page-header.navbar .top-menu .navbar-nav > li.dropdown-tasks .dropdown-menu:before {
margin-right: 110px;
}
}
@media (max-width: 580px) {
/* Page header */
.page-header.navbar .top-menu .navbar-nav > li.dropdown-user .dropdown-toggle .username.username-hide-on-mobile {
display: none;
}
.page-header.navbar .top-menu .navbar-nav > li.dropdown-language .dropdown-toggle .langname {
display: none;
}
}
@media (max-width: 480px) {
/* 480px */
/* Fixed header for mobile */
.page-header-fixed.page-header-fixed-mobile .page-header.navbar {
height: 92px;
}
.page-header.navbar {
/* Top menu */
}
.page-header.navbar .top-menu {
display: block;
clear: both;
}
.page-header.navbar .top-menu .navbar-nav {
margin-right: 0;
}
.page-header.navbar .top-menu .navbar-nav > li.dropdown .dropdown-toggle {
padding: 17px 6px 9px 6px;
}
.page-header.navbar .top-menu .navbar-nav > li.dropdown-language .dropdown-toggle {
padding: 14px 4px 12px 2px;
}
.page-header.navbar .top-menu .navbar-nav > li.dropdown-user .dropdown-toggle {
padding: 14px 0px 12px 2px;
}
}
/***
Pace - Page Progress
***/
.pace .pace-progress {
z-index: 10000;
top: 44px;
height: 2px;
}
.pace .pace-progress-inner {
box-shadow: none;
}
.pace .pace-activity {
top: 48px;
right: 22px;
border-radius: 10px !important;
}
@media (max-width: 480px) {
/* 480px */
.page-header-fixed .pace .pace-progress {
top: 92px;
}
.page-header-fixed .pace .pace-activity {
top: 188px;
right: 15px;
}
}
/***
Page container
***/
.page-container {
margin: 0px;
padding: 0px;
position: relative;
/* Fixed header */
/* Fixed footer for mobile */
}
.page-container:before, .page-container:after {
content: " ";
display: table;
}
.page-container:after {
clear: both;
}
.page-header-fixed .page-container {
margin-top: 46px;
}
.page-footer-fixed.page-footer-fixed-mobile .page-container {
margin-bottom: 20px !important;
}
@media (min-width: 992px) {
/* Page container in fixed footer */
.page-footer-fixed .page-container {
margin-bottom: 20px !important;
}
}
@media (max-width: 991px) {
/* Page container */
.page-container {
margin: 0 !important;
padding: 0 !important;
}
.page-header-fixed.page-header-fixed-mobile .page-container {
margin-top: 46px !important;
}
}
@media (max-width: 480px) {
/* Page container */
.page-header-fixed.page-header-fixed-mobile .page-container {
margin-top: 92px !important;
}
}
/***
Page sidebar
***/
/* IE8 fix */
.ie8 .page-sidebar {
width: 235px;
float: left;
position: relative;
margin-right: -100%;
}
/* Page Sidebar */
.page-sidebar,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover {
/* Default sidebar menu */
/* light sidebar menu */
}
.page-sidebar.navbar-collapse,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover.navbar-collapse {
padding: 0;
box-shadow: none;
}
.page-sidebar .page-sidebar-menu,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu {
list-style: none;
margin: 0;
padding: 0;
/* 1st level links */
/* all links */
}
.page-sidebar .page-sidebar-menu > li,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu > li {
display: block;
margin: 0;
padding: 0;
border: 0px;
}
.page-sidebar .page-sidebar-menu > li.sidebar-toggler-wrapper, .page-sidebar .page-sidebar-menu > li.sidebar-search-wrapper,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu > li.sidebar-toggler-wrapper,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu > li.sidebar-search-wrapper {
border: 0 !important;
}
.page-sidebar .page-sidebar-menu > li.sidebar-toggler-wrapper:before, .page-sidebar .page-sidebar-menu > li.sidebar-toggler-wrapper:after, .page-sidebar .page-sidebar-menu > li.sidebar-search-wrapper:before, .page-sidebar .page-sidebar-menu > li.sidebar-search-wrapper:after,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu > li.sidebar-toggler-wrapper:before,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu > li.sidebar-toggler-wrapper:after,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu > li.sidebar-search-wrapper:before,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu > li.sidebar-search-wrapper:after {
content: " ";
display: table;
}
.page-sidebar .page-sidebar-menu > li.sidebar-toggler-wrapper:after, .page-sidebar .page-sidebar-menu > li.sidebar-search-wrapper:after,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu > li.sidebar-toggler-wrapper:after,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu > li.sidebar-search-wrapper:after {
clear: both;
}
.page-sidebar .page-sidebar-menu > li.start > a,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu > li.start > a {
border-top-color: transparent !important;
}
.page-sidebar .page-sidebar-menu > li.last > a,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu > li.last > a {
border-bottom-color: transparent !important;
}
.page-sidebar .page-sidebar-menu > li > a,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu > li > a {
display: block;
position: relative;
margin: 0;
border: 0px;
padding: 10px 15px;
text-decoration: none;
font-size: 14px;
font-weight: 300;
}
.page-sidebar .page-sidebar-menu > li > a > i,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu > li > a > i {
font-size: 16px;
margin-right: 5px;
text-shadow: none;
}
.page-sidebar .page-sidebar-menu > li > a > i.glyphicon,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu > li > a > i.glyphicon {
top: 3px;
margin-left: 1px;
margin-right: 4px;
}
.page-sidebar .page-sidebar-menu > li > a > [class^="icon-"],
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu > li > a > [class^="icon-"] {
top: 2px;
margin-left: 1px;
margin-right: 4px;
}
.page-sidebar-fixed .page-sidebar .page-sidebar-menu > li > a, .page-sidebar-fixed
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu > li > a {
transition: all 0.2s ease;
}
.page-sidebar-reversed.page-sidebar-fixed .page-sidebar .page-sidebar-menu > li > a, .page-sidebar-reversed.page-sidebar-fixed
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu > li > a {
transition: none;
}
.page-sidebar .page-sidebar-menu > li.heading,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu > li.heading {
padding: 15px 15px 15px 15px;
}
.page-sidebar .page-sidebar-menu > li.heading > h3,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu > li.heading > h3 {
margin: 0;
padding: 0;
font-size: 14px;
font-weight: 300;
}
.page-sidebar .page-sidebar-menu > li.heading + li > a,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu > li.heading + li > a {
border-top: 0;
}
.page-sidebar .page-sidebar-menu > li.open > a,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu > li.open > a {
font-size: 14px;
}
.page-sidebar .page-sidebar-menu > li.active > a,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu > li.active > a {
border: none;
text-shadow: none;
font-size: 14px;
}
.page-sidebar .page-sidebar-menu > li.active > a > .selected,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu > li.active > a > .selected {
display: block;
background-image: none;
/* will be set in a theme css file*/
float: right;
position: absolute;
right: 0px;
top: 8px;
background: none;
width: 0;
height: 0;
border-top: 12px solid transparent;
border-bottom: 12px solid transparent;
border-right: 12px solid #ffffff;
}
.page-sidebar-reversed .page-sidebar .page-sidebar-menu > li.active > a > .selected, .page-sidebar-reversed
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu > li.active > a > .selected {
right: auto;
left: 0;
border-right: 0;
border-left: 8px solid #ffffff;
}
.page-container-bg-solid .page-sidebar .page-sidebar-menu > li.active > a > .selected, .page-container-bg-solid
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu > li.active > a > .selected {
border-color: transparent #F1F3FA transparent transparent;
}
.page-container-bg-solid.page-sidebar-reversed .page-sidebar .page-sidebar-menu > li.active > a > .selected, .page-container-bg-solid.page-sidebar-reversed
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu > li.active > a > .selected {
border-color: transparent transparent transparent #F1F3FA;
}
.page-sidebar .page-sidebar-menu li > a > .arrow:before,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu li > a > .arrow:before {
float: right;
width: 10px;
text-align: center;
margin-top: -1px;
margin-right: 5px;
margin-left: 5px;
display: inline;
font-size: 16px;
font-family: FontAwesome;
height: auto;
content: "\f104";
font-weight: 300;
text-shadow: none;
}
.page-sidebar .page-sidebar-menu li > a > .arrow.open:before,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu li > a > .arrow.open:before {
content: "\f107";
}
.page-sidebar .page-sidebar-menu li > a > .badge,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu li > a > .badge {
float: right;
margin-top: 1px;
margin-right: 0px;
}
.page-sidebar .page-sidebar-menu .sub-menu,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu .sub-menu {
list-style: none;
display: none;
padding: 0;
margin: 8px 0px 8px 0px;
}
.page-sidebar .page-sidebar-menu .sub-menu li,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu .sub-menu li {
background: none;
margin: 0px;
padding: 0px;
margin-top: 1px !important;
/* 2nd level sub menu */
}
.page-sidebar .page-sidebar-menu .sub-menu li > a,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu .sub-menu li > a {
display: block;
margin: 0;
padding: 6px 15px 6px 43px;
text-decoration: none;
font-size: 14px;
font-weight: 300;
background: none;
}
.page-sidebar .page-sidebar-menu .sub-menu li > a > i,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu .sub-menu li > a > i {
font-size: 14px;
}
.page-sidebar .page-sidebar-menu .sub-menu li > .sub-menu,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu .sub-menu li > .sub-menu {
margin: 0;
}
.page-sidebar .page-sidebar-menu .sub-menu li > .sub-menu > li,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu .sub-menu li > .sub-menu > li {
/* 3rd level sub menu */
}
.page-sidebar .page-sidebar-menu .sub-menu li > .sub-menu > li > a,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu .sub-menu li > .sub-menu > li > a {
padding-left: 60px;
}
.page-sidebar .page-sidebar-menu .sub-menu li > .sub-menu > li > .sub-menu,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu .sub-menu li > .sub-menu > li > .sub-menu {
margin: 0;
}
.page-sidebar .page-sidebar-menu .sub-menu li > .sub-menu > li > .sub-menu > li > a,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu .sub-menu li > .sub-menu > li > .sub-menu > li > a {
padding-left: 80px;
}
.page-sidebar .page-sidebar-menu li.active > .sub-menu,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu li.active > .sub-menu {
display: block;
}
.page-sidebar .page-sidebar-menu.page-sidebar-menu-light > li > a,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu.page-sidebar-menu-light > li > a {
border: 0;
margin: 0;
padding-left: 11px;
border-left: 4px solid transparent;
}
.page-sidebar .page-sidebar-menu.page-sidebar-menu-light > li .sub-menu,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu.page-sidebar-menu-light > li .sub-menu {
margin: 0;
padding: 1px 0;
}
.page-sidebar .page-sidebar-menu.page-sidebar-menu-light > li .sub-menu li > a,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu.page-sidebar-menu-light > li .sub-menu li > a {
padding-top: 8px;
padding-bottom: 8px;
}
.page-sidebar .page-sidebar-menu.page-sidebar-menu-light > li .sub-menu li:first-child,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu.page-sidebar-menu-light > li .sub-menu li:first-child {
margin-top: 0 !important;
}
.page-sidebar-reversed .page-sidebar .page-sidebar-menu.page-sidebar-menu-light > li > a, .page-sidebar-reversed
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu.page-sidebar-menu-light > li > a {
padding-left: 15px;
padding-right: 11px;
border-left: 0;
border-right: 4px solid transparent;
}
.page-sidebar .sidebar-toggler,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .sidebar-toggler {
display: block;
cursor: pointer;
opacity: 0.7;
filter: alpha(opacity=70);
width: 30px;
height: 27px;
margin-top: 15px;
margin-right: 19px;
float: right;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
-ms-border-radius: 4px;
-o-border-radius: 4px;
border-radius: 4px;
}
.page-sidebar .sidebar-toggler:hover,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .sidebar-toggler:hover {
filter: alpha(opacity=100);
opacity: 1;
}
.page-sidebar .sidebar-search,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .sidebar-search {
padding: 0;
margin: 22px 18px 22px 18px;
}
.page-sidebar .sidebar-search .remove,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .sidebar-search .remove {
display: none;
}
.page-sidebar .sidebar-search .remove > i,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .sidebar-search .remove > i {
font-size: 16px;
}
.page-sidebar .sidebar-search .input-group,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .sidebar-search .input-group {
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
-ms-border-radius: 4px;
-o-border-radius: 4px;
border-radius: 4px;
}
.page-sidebar .sidebar-search .input-group .form-control,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .sidebar-search .input-group .form-control {
border: 0;
font-size: 14px;
padding: 0;
height: auto;
line-height: auto;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
-ms-border-radius: 4px;
-o-border-radius: 4px;
border-radius: 4px;
}
.page-sidebar .sidebar-search .input-group .input-group-btn .btn,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .sidebar-search .input-group .input-group-btn .btn {
padding: 2px 0 0 0;
background-color: transparent;
background-repeat: no-repeat;
background-position: 100% 3px;
}
.page-sidebar .sidebar-search .input-group .input-group-btn .btn > i,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .sidebar-search .input-group .input-group-btn .btn > i {
font-size: 15px;
}
.page-sidebar .sidebar-search.sidebar-search-bordered,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .sidebar-search.sidebar-search-bordered {
margin: 25px 18px 25px 18px;
}
.page-sidebar .sidebar-search.sidebar-search-bordered .input-group .form-control,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .sidebar-search.sidebar-search-bordered .input-group .form-control {
font-size: 13px;
padding: 6px 8px;
}
.page-sidebar .sidebar-search.sidebar-search-bordered .input-group .input-group-btn .btn,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .sidebar-search.sidebar-search-bordered .input-group .input-group-btn .btn {
margin-right: 6px;
}
@media (min-width: 992px) {
/* 992px */
.page-sidebar {
width: 235px;
float: left;
position: relative;
margin-right: -100%;
}
.page-full-width .page-sidebar {
display: none !important;
}
.page-sidebar.navbar-collapse {
max-height: none !important;
}
.page-sidebar-reversed .page-sidebar {
float: right;
margin-right: 0;
margin-left: -100%;
}
.page-sidebar-reversed.page-sidebar-fixed .page-sidebar {
margin-left: -235px;
}
.page-sidebar-reversed.page-sidebar-fixed .page-sidebar-wrapper {
position: relative;
float: right;
}
.page-sidebar-fixed .page-sidebar {
position: fixed !important;
margin-left: 0;
top: 46px;
}
.page-sidebar-fixed .page-sidebar-menu > li.last {
margin-bottom: 15px !important;
}
/* Sidebar Closed */
.page-sidebar-closed .page-sidebar {
width: 45px !important;
}
.page-sidebar-closed .page-sidebar .page-sidebar-menu.page-sidebar-menu-closed {
/* sidebar */
width: 45px !important;
/* sidebar toggler */
/* sidebar search */
/* sidebar bordered search */
/* sidebar search expanded */
/* sidebar bordered search expanded */
}
.page-sidebar-closed .page-sidebar .page-sidebar-menu.page-sidebar-menu-closed > li {
/* hide opened sub menu */
}
.page-sidebar-closed .page-sidebar .page-sidebar-menu.page-sidebar-menu-closed > li.open > .sub-menu,
.page-sidebar-closed .page-sidebar .page-sidebar-menu.page-sidebar-menu-closed > li > .sub-menu {
display: none !important;
}
.page-sidebar-closed .page-sidebar .page-sidebar-menu.page-sidebar-menu-closed > li:hover {
width: 256px !important;
position: relative !important;
z-index: 10000;
display: block !important;
}
.page-sidebar-closed .page-sidebar .page-sidebar-menu.page-sidebar-menu-closed > li:hover > a {
-webkit-border-radius: 0 4px 0 0;
-moz-border-radius: 0 4px 0 0;
-ms-border-radius: 0 4px 0 0;
-o-border-radius: 0 4px 0 0;
border-radius: 0 4px 0 0;
}
.page-sidebar-closed .page-sidebar .page-sidebar-menu.page-sidebar-menu-closed > li:hover > a > i {
margin-right: 10px;
}
.page-sidebar-closed .page-sidebar .page-sidebar-menu.page-sidebar-menu-closed > li:hover > a > .title {
display: inline !important;
padding-left: 15px;
}
.page-sidebar-closed .page-sidebar .page-sidebar-menu.page-sidebar-menu-closed > li:hover > a > .badge {
display: block !important;
}
.page-sidebar-closed .page-sidebar .page-sidebar-menu.page-sidebar-menu-closed > li:hover > a > .selected {
display: none;
}
.page-sidebar-closed .page-sidebar .page-sidebar-menu.page-sidebar-menu-closed > li:hover.heading {
width: 45px !important;
box-shadow: none;
}
.page-sidebar-closed .page-sidebar .page-sidebar-menu.page-sidebar-menu-closed > li:hover > .sub-menu {
width: 210px;
position: absolute;
z-index: 2000;
left: 46px;
margin-top: 0;
top: 100%;
display: block !important;
-webkit-border-radius: 0 0 4px 4px;
-moz-border-radius: 0 0 4px 4px;
-ms-border-radius: 0 0 4px 4px;
-o-border-radius: 0 0 4px 4px;
border-radius: 0 0 4px 4px;
}
.page-sidebar-closed .page-sidebar .page-sidebar-menu.page-sidebar-menu-closed > li:hover > .sub-menu > li > a {
padding-left: 15px !important;
}
.page-sidebar-closed .page-sidebar .page-sidebar-menu.page-sidebar-menu-closed > li:hover > .sub-menu > li > .sub-menu > li > a {
padding-left: 30px !important;
}
.page-sidebar-closed .page-sidebar .page-sidebar-menu.page-sidebar-menu-closed > li:hover > .sub-menu > li > .sub-menu > li > .sub-menu > li > a {
padding-left: 45px !important;
}
.page-sidebar-closed .page-sidebar .page-sidebar-menu.page-sidebar-menu-closed > li.heading > h3 {
display: none;
}
.page-sidebar-closed .page-sidebar .page-sidebar-menu.page-sidebar-menu-closed > li.sidebar-toggler-wrapper .sidebar-toggler {
margin-right: 8px;
}
.page-sidebar-closed .page-sidebar .page-sidebar-menu.page-sidebar-menu-closed > li.sidebar-toggler-wrapper:hover {
width: 45px !important;
}
.page-sidebar-closed .page-sidebar .page-sidebar-menu.page-sidebar-menu-closed > li.sidebar-search-wrapper:hover {
width: 45px !important;
}
.page-sidebar-closed .page-sidebar .page-sidebar-menu.page-sidebar-menu-closed > li > a {
padding-left: 11px;
}
.page-sidebar-closed .page-sidebar .page-sidebar-menu.page-sidebar-menu-closed > li > a .selected {
right: -3px !important;
}
.page-sidebar-closed .page-sidebar .page-sidebar-menu.page-sidebar-menu-closed > li > a > .badge,
.page-sidebar-closed .page-sidebar .page-sidebar-menu.page-sidebar-menu-closed > li > a > .title,
.page-sidebar-closed .page-sidebar .page-sidebar-menu.page-sidebar-menu-closed > li > a > .arrow {
display: none !important;
}
.page-sidebar-closed .page-sidebar .page-sidebar-menu.page-sidebar-menu-closed .sidebar-toggler {
margin-left: 3px;
margin-right: 3px;
}
.page-sidebar-closed .page-sidebar .page-sidebar-menu.page-sidebar-menu-closed .sidebar-search .input-group {
border-color: transparent;
margin-left: -4px;
}
.page-sidebar-closed .page-sidebar .page-sidebar-menu.page-sidebar-menu-closed .sidebar-search .input-group .form-control {
display: none;
}
.page-sidebar-closed .page-sidebar .page-sidebar-menu.page-sidebar-menu-closed .sidebar-search .input-group .input-group-btn .btn {
display: block;
}
.page-sidebar-closed .page-sidebar .page-sidebar-menu.page-sidebar-menu-closed .sidebar-search.sidebar-search-bordered .input-group {
padding: 5px 0 3px 0;
}
.page-sidebar-closed .page-sidebar .page-sidebar-menu.page-sidebar-menu-closed .sidebar-search.open {
height: 39px;
margin-top: 14px;
margin-bottom: 14px;
}
.page-sidebar-closed .page-sidebar .page-sidebar-menu.page-sidebar-menu-closed .sidebar-search.open .input-group {
width: 210px;
position: relative;
z-index: 1;
margin-left: 24px;
padding: 0;
}
.page-sidebar-closed .page-sidebar .page-sidebar-menu.page-sidebar-menu-closed .sidebar-search.open .input-group .form-control {
background: none;
border: 0;
display: block;
padding: 8px 8px;
}
.page-sidebar-closed .page-sidebar .page-sidebar-menu.page-sidebar-menu-closed .sidebar-search.open .input-group .input-group-btn .btn {
display: block;
margin-right: 8px;
margin-top: 1px;
}
.page-sidebar-closed .page-sidebar .page-sidebar-menu.page-sidebar-menu-closed .sidebar-search.open .remove {
background-repeat: no-repeat;
width: 11px;
height: 11px;
margin: 9px -5px 9px -7px;
display: block;
float: left;
}
.page-sidebar-closed .page-sidebar .page-sidebar-menu.page-sidebar-menu-closed .sidebar-search.open.sidebar-search-bordered {
height: 36px;
margin-top: 23px;
margin-bottom: 23px;
}
.page-sidebar-closed .page-sidebar .page-sidebar-menu.page-sidebar-menu-closed .sidebar-search.open.sidebar-search-bordered .input-group {
padding: 0;
}
.page-sidebar-closed .page-sidebar .page-sidebar-menu.page-sidebar-menu-light.page-sidebar-menu-closed > li > a {
padding-right: 11px;
padding-left: 7px;
}
.page-sidebar-closed.page-sidebar-reversed .page-sidebar {
margin-left: -45px;
width: 45px;
}
.page-sidebar-closed.page-sidebar-reversed .page-sidebar .page-sidebar-menu.page-sidebar-menu-closed {
/* sidebar */
/* sidebar search */
}
.page-sidebar-closed.page-sidebar-reversed .page-sidebar .page-sidebar-menu.page-sidebar-menu-closed > li > .sub-menu {
left: auto;
right: 46px;
}
.page-sidebar-closed.page-sidebar-reversed .page-sidebar .page-sidebar-menu.page-sidebar-menu-closed > li:hover {
margin-left: -211px;
}
.page-sidebar-closed.page-sidebar-reversed .page-sidebar .page-sidebar-menu.page-sidebar-menu-closed > li:hover > a {
-webkit-border-radius: 4px 0 0 0;
-moz-border-radius: 4px 0 0 0;
-ms-border-radius: 4px 0 0 0;
-o-border-radius: 4px 0 0 0;
border-radius: 4px 0 0 0;
}
.page-sidebar-closed.page-sidebar-reversed .page-sidebar .page-sidebar-menu.page-sidebar-menu-closed > li:hover > a > .title {
padding-left: 0;
padding-right: 15px;
}
.page-sidebar-closed.page-sidebar-reversed .page-sidebar .page-sidebar-menu.page-sidebar-menu-closed > li:hover > a > i {
margin-right: 0;
margin-left: 2px;
}
.page-sidebar-closed.page-sidebar-reversed .page-sidebar .page-sidebar-menu.page-sidebar-menu-closed > li.sidebar-search-wrapper:hover, .page-sidebar-closed.page-sidebar-reversed .page-sidebar .page-sidebar-menu.page-sidebar-menu-closed > li.sidebar-toggler-wrapper:hover {
margin-left: 0;
}
.page-sidebar-closed.page-sidebar-reversed .page-sidebar .page-sidebar-menu.page-sidebar-menu-closed .sidebar-search.open .input-group {
margin-left: -227px;
}
.page-sidebar-closed.page-sidebar-reversed .page-sidebar .page-sidebar-menu.page-sidebar-menu-closed .sidebar-search.open .input-group .input-group-btn .btn {
margin-right: 10px !important;
}
.page-sidebar-closed.page-sidebar-reversed .page-sidebar .page-sidebar-menu.page-sidebar-menu-closed .sidebar-search.open .remove {
margin: 9px 4px 12px -16px !important;
float: right !important;
}
.page-sidebar-closed.page-sidebar-reversed .page-sidebar .page-sidebar-menu.page-sidebar-menu-light.page-sidebar-menu-closed > li > a {
padding-right: 7px;
padding-left: 11px;
}
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover {
width: 235px !important;
display: absolute;
z-index: 10000;
}
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu {
width: 235px !important;
}
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu .selected {
display: none !important;
}
.page-sidebar-closed.page-sidebar-fixed.page-sidebar-reversed .page-sidebar:hover {
width: 235px !important;
display: absolute;
z-index: 10000;
margin-left: -235px !important;
}
.page-sidebar-closed.page-sidebar-fixed.page-sidebar-reversed .page-sidebar:hover .page-sidebar-menu {
width: 235px !important;
}
.page-sidebar-closed.page-sidebar-hide .page-sidebar {
display: none !important;
}
/* Sidebar Menu Wirh Hoverable Submenu */
.page-sidebar-menu.page-sidebar-menu-hover-submenu li .sub-menu {
display: none;
width: 210px;
z-index: 2000;
position: absolute;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
-ms-border-radius: 4px;
-o-border-radius: 4px;
border-radius: 4px;
}
.page-sidebar-menu.page-sidebar-menu-hover-submenu li .sub-menu > li > a {
margin: 3px;
}
.page-sidebar-menu.page-sidebar-menu-hover-submenu li.active .sub-menu, .page-sidebar-menu.page-sidebar-menu-hover-submenu li.open .sub-menu {
display: none !important;
}
.page-sidebar-menu.page-sidebar-menu-hover-submenu li a > .arrow {
display: none;
}
.page-sidebar-menu.page-sidebar-menu-hover-submenu li:hover > a > .arrow {
display: block;
float: right;
position: absolute;
right: 0;
margin-top: -20px;
background: none;
width: 0;
height: 0;
border-style: solid;
border-top: 12px double transparent;
border-bottom: 12px double transparent;
border-left: 0;
}
.page-sidebar-menu.page-sidebar-menu-hover-submenu li:hover > a > .arrow:after, .page-sidebar-menu.page-sidebar-menu-hover-submenu li:hover > a > .arrow:before {
display: none;
}
.page-sidebar-reversed .page-sidebar-menu.page-sidebar-menu-hover-submenu li:hover > a > .arrow {
right: auto;
left: 0;
border-right: 0;
}
.page-sidebar-menu.page-sidebar-menu-hover-submenu li:hover > .sub-menu {
display: inline-block !important;
}
.page-sidebar-menu.page-sidebar-menu-hover-submenu > li:hover > a > .arrow {
z-index: 1;
right: 0px;
margin-top: -23px;
}
.page-sidebar-menu.page-sidebar-menu-hover-submenu > li:hover > a > .selected {
display: none;
}
.page-sidebar-menu.page-sidebar-menu-hover-submenu > li:hover > .sub-menu {
margin-left: 235px;
margin-top: -40px;
}
.page-sidebar-reversed .page-sidebar-menu.page-sidebar-menu-hover-submenu > li:hover > .sub-menu {
margin-left: -210px !important;
}
.page-sidebar-closed .page-sidebar-menu.page-sidebar-menu-hover-submenu > li:hover > .sub-menu {
margin-left: 0;
}
.page-sidebar-menu.page-sidebar-menu-hover-submenu > li:hover > .sub-menu > li > a {
padding-left: 15px;
}
.page-sidebar-menu.page-sidebar-menu-hover-submenu > li:hover > .sub-menu > li .sub-menu {
margin-left: 210px;
margin-top: -38px !important;
}
.page-sidebar-reversed .page-sidebar-menu.page-sidebar-menu-hover-submenu > li:hover > .sub-menu > li .sub-menu {
margin-left: -210px !important;
}
.page-sidebar-menu.page-sidebar-menu-hover-submenu > li:hover > .sub-menu > li .sub-menu > li > a {
padding-left: 10px;
padding-right: 10px;
}
.page-sidebar-menu.page-sidebar-menu-light.page-sidebar-menu-hover-submenu li:hover > .sub-menu {
margin-top: -41px;
}
.page-sidebar-menu.page-sidebar-menu-light.page-sidebar-menu-hover-submenu li:hover > .sub-menu > li > .sub-menu {
margin-top: -41px;
}
}
@media (max-width: 991px) {
/* 991px */
.page-sidebar {
border-top: 0 !important;
margin: 20px;
}
.page-sidebar .sidebar-toggler {
display: none;
}
.page-sidebar .selected {
display: none !important;
}
.page-sidebar.navbar-collapse {
max-height: none;
/* set some max height to have a scrollable menu on mobile devices */
}
.page-sidebar.navbar-collapse.collapse {
display: none !important;
}
.page-sidebar.navbar-collapse.in {
border-top: 0 !important;
margin: 20px;
position: relative;
overflow: hidden !important;
overflow-y: auto !important;
display: block !important;
}
.page-sidebar.navbar-collapse.navbar-no-scroll {
max-height: none !important;
}
.page-sidebar .mega-menu-responsive-content {
padding: 10px 18px 10px 45px;
}
.page-full-width .page-sidebar-menu {
display: block;
}
}
@media (min-width: 768px) and (max-width: 991px) {
/* 768px & 991px */
.page-sidebar .btn-navbar.collapsed .arrow {
display: none;
}
.page-sidebar .btn-navbar .arrow {
position: absolute;
right: 25px;
width: 0;
height: 0;
top: 50px;
border-bottom: 15px solid #5f646b;
border-left: 15px solid transparent;
border-right: 15px solid transparent;
}
}
@media (max-width: 480px) {
/* 480px */
/* Page sidebar */
.page-sidebar,
.page-sidebar.in {
margin: 0 10px 10px 10px !important;
}
.page-header-fixed.page-header-fixed-mobile .page-sidebar, .page-header-fixed.page-header-fixed-mobile
.page-sidebar.in {
margin-top: 10px !important;
}
}
/******************
Page Quick Sidebar
******************/
/***
Quick Sidebar Layout
***/
/* Quick sidebar toggler */
.page-header .top-menu .dropdown-quick-sidebar-toggler > .dropdown-toggle {
padding: 17px 10px 9px 10px !important;
}
.page-header .top-menu .dropdown-quick-sidebar-toggler > .dropdown-toggle i {
top: 0px;
}
.page-quick-sidebar-open .page-header .top-menu .dropdown-quick-sidebar-toggler > .dropdown-toggle i:before {
content: "\e066";
}
/* Quick sidebar wrapper */
.page-quick-sidebar-wrapper {
transition: right 0.3s;
z-index: 9994;
position: fixed;
top: 46px;
bottom: 0;
right: -270px;
width: 270px;
}
.page-footer-fixed .page-quick-sidebar-wrapper {
bottom: 33px;
}
.page-quick-sidebar-full-height .page-quick-sidebar-wrapper {
top: 0;
bottom: 0;
}
.page-quick-sidebar-open .page-quick-sidebar-wrapper {
transition: right 0.3s;
right: 0;
}
/***
Quick Sidebar Toggler
***/
.page-quick-sidebar-toggler {
overflow: hidden;
z-index: 9994;
display: none;
width: 28px;
height: 27px;
position: fixed;
top: 19px;
right: 15px;
text-align: center;
padding-top: 6px;
}
.page-quick-sidebar-open .page-quick-sidebar-toggler {
display: inline-block;
}
.page-quick-sidebar-toggler > i {
font-size: 17px;
}
/* quick sidebar top position fix for mobile view */
@media (max-width: 480px) {
/* 480px */
.page-quick-sidebar-wrapper {
top: 92px;
}
.page-quick-sidebar-toggler {
top: 65px;
}
}
.page-header,
.page-sidebar-wrapper,
.page-content-wrapper,
.page-footer {
transition: margin 0.3s;
}
/* Quick sidebar with push content */
.page-quick-sidebar-open.page-quick-sidebar-push-content .page-sidebar-wrapper {
transition: margin-left 0.3s;
margin-left: -270px;
}
.page-quick-sidebar-open.page-quick-sidebar-push-content .page-content-wrapper {
transition: margin-left 0.3s;
margin-left: -270px;
}
.page-quick-sidebar-open.page-quick-sidebar-push-content .page-footer {
transition: margin-right 0.3s;
margin-right: 270px;
margin-left: -270px;
}
/* Page sidebar reversed */
.page-sidebar-reversed.page-quick-sidebar-open.page-quick-sidebar-push-content .page-sidebar-wrapper {
transition: margin-right 0.3s;
margin-right: 270px;
}
/* Quick sidebar with full height content */
.page-quick-sidebar-open.page-quick-sidebar-push-content.page-quick-sidebar-full-height .page-header {
transition: margin-left 0.3s;
margin-left: -270px;
}
.page-quick-sidebar-open.page-quick-sidebar-push-content.page-footer-fixed:not(.page-quick-sidebar-full-height) .page-footer {
margin-left: 0;
margin-right: 0;
}
/* Quick sidebar with transparent content */
.page-quick-sidebar-open.page-quick-sidebar-over-content-transparent .page-quick-sidebar-wrapper {
opacity: 0.9;
filter: alpha(opacity=90);
}
/* Hide the responsive menu if its shown while the quick sidebar opened on mobile */
@media (max-width: 991px) {
/* 991px */
.page-quick-sidebar-open.page-quick-sidebar-push-content .page-sidebar-wrapper {
display: none;
}
}
/***
Quick Sidebar Content
***/
.page-quick-sidebar-wrapper {
overflow: hidden;
}
.page-quick-sidebar-wrapper .page-quick-sidebar {
/* Quick sidebar tabs */
/* Quick sidebar tabs content */
/* Quick sidebar general list heading */
/* Quick sidebar general list-items */
/* Inner content */
/* Quick sidebar list */
/* Quick sidebar list item */
/* Quick sidebar list item shown */
/* Quick sidebar chat */
/* Quick sidebar alerts */
/* Quick sidebar settings */
}
.page-quick-sidebar-wrapper .page-quick-sidebar .nav-justified {
margin: 0;
padding: 0;
}
.page-quick-sidebar-wrapper .page-quick-sidebar .nav-justified > li {
display: table-cell !important;
width: 1% !important;
}
.page-quick-sidebar-wrapper .page-quick-sidebar .nav-justified > li > a {
padding: 15px 15px;
border: 0;
height: 46px;
font-size: 13px;
text-transform: uppercase;
-webkit-border-radius: 0;
-moz-border-radius: 0;
-ms-border-radius: 0;
-o-border-radius: 0;
border-radius: 0;
}
.page-quick-sidebar-wrapper .page-quick-sidebar .nav-justified > li > a > .badge {
position: absolute;
top: 12px;
right: 3px;
}
.page-quick-sidebar-wrapper .page-quick-sidebar .nav-justified > li > a:hover {
border: 0;
}
.page-quick-sidebar-wrapper .page-quick-sidebar .nav-justified > li .dropdown-menu {
margin-top: 8px;
margin-right: 20px;
}
.page-quick-sidebar-wrapper .page-quick-sidebar .nav-justified > li .dropdown-menu:before {
position: absolute;
top: -7px;
right: 19px;
display: inline-block !important;
border-right: 7px solid transparent;
border-left: 7px solid transparent;
border-bottom-color: rgba(0, 0, 0, 0.2);
content: '';
}
.page-quick-sidebar-wrapper .page-quick-sidebar .nav-justified > li .dropdown-menu:after {
position: absolute;
top: -6px;
right: 20px;
display: inline-block !important;
border-right: 6px solid transparent;
border-bottom: 6px solid #fff;
border-left: 6px solid transparent;
content: '';
}
.page-quick-sidebar-wrapper .page-quick-sidebar .nav-justified > .tab-content {
margin: 0;
padding: 0;
}
.page-quick-sidebar-wrapper .page-quick-sidebar .list-heading {
font-size: 16px;
margin: 10px 10px;
}
.page-quick-sidebar-wrapper .page-quick-sidebar .list-items {
margin: 0;
padding: 0;
list-style: none;
}
.page-quick-sidebar-wrapper .page-quick-sidebar .list-items > li {
margin: 0;
padding: 10px;
background: none;
border-bottom-width: 1px;
border-bottom-style: solid;
}
.page-quick-sidebar-wrapper .page-quick-sidebar .list-items > li:last-child {
border-bottom: 0;
}
.page-quick-sidebar-wrapper .page-quick-sidebar .list-items.borderless li {
border: 0;
}
.page-quick-sidebar-wrapper .page-quick-sidebar .inner-content {
margin: 10px 10px;
}
.page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-list {
position: absolute !important;
width: 270px !important;
transition: margin 0.3s;
}
.page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-item {
position: absolute !important;
width: 270px !important;
transition: margin 0.3s;
margin-left: 270px;
}
.page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-item .page-quick-sidebar-nav {
padding: 15px 10px 0px 10px;
}
.page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-item .page-quick-sidebar-nav .page-quick-sidebar-back-to-list {
vertical-align: middle;
display: inline-block;
font-size: 14px;
}
.page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-item .page-quick-sidebar-nav .page-quick-sidebar-back-to-list > i {
font-size: 17px;
line-height: 17px;
vertical-align: top;
margin-right: 3px;
}
.page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-content-item-shown .page-quick-sidebar-list {
transition: margin 0.3s;
margin-left: -270px;
}
.page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-content-item-shown .page-quick-sidebar-list .slimScrollBar,
.page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-content-item-shown .page-quick-sidebar-list .slimScrollRail {
display: none !important;
}
.page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-content-item-shown .page-quick-sidebar-item {
transition: margin 0.3s;
margin-left: 0;
}
.page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-chat .page-quick-sidebar-chat-users {
padding: 10px 0;
position: relative;
}
.page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-chat .page-quick-sidebar-chat-users .media-list .media {
padding: 12px 10px 11px 10px;
}
.page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-chat .page-quick-sidebar-chat-users .media-list .media .media-object {
border-radius: 50% !important;
width: 38.57143px;
opacity: 0.8;
filter: alpha(opacity=80);
float: left;
margin-right: 10px;
}
.page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-chat .page-quick-sidebar-chat-users .media-list .media .media-object:before, .page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-chat .page-quick-sidebar-chat-users .media-list .media .media-object:after {
content: " ";
display: table;
}
.page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-chat .page-quick-sidebar-chat-users .media-list .media .media-object:after {
clear: both;
}
.page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-chat .page-quick-sidebar-chat-users .media-list .media:hover {
cursor: pointer;
}
.page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-chat .page-quick-sidebar-chat-users .media-list .media:hover .media-object {
opacity: 1;
filter: alpha(opacity=100);
}
.page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-chat .page-quick-sidebar-chat-users .media-list .media .media-body .media-heading {
margin: 5px 0 0 0;
font-size: 14px;
}
.page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-chat .page-quick-sidebar-chat-users .media-list .media .media-body .media-heading-sub {
font-size: 11px;
text-transform: uppercase;
}
.page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-chat .page-quick-sidebar-chat-users .media-list .media .media-body .media-heading-small {
font-size: 10px;
}
.page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-chat .page-quick-sidebar-chat-users .media-list .media .media-status {
margin-top: 10px;
right: 10px;
position: absolute;
display: inline-block;
}
.page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-chat .page-quick-sidebar-chat-user .page-quick-sidebar-chat-user-messages {
padding: 0px 10px;
position: relative;
}
.page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-chat .page-quick-sidebar-chat-user .page-quick-sidebar-chat-user-messages .post {
transition: display 0.3s;
padding: 5px 0;
margin: 10px auto;
font-size: 12px;
}
.page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-chat .page-quick-sidebar-chat-user .page-quick-sidebar-chat-user-messages .post .body {
display: block;
}
.page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-chat .page-quick-sidebar-chat-user .page-quick-sidebar-chat-user-messages .post .avatar {
width: 38.57143px;
border-radius: 50% !important;
}
.page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-chat .page-quick-sidebar-chat-user .page-quick-sidebar-chat-user-messages .post.in .avatar {
float: left;
margin-right: 10px;
}
.page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-chat .page-quick-sidebar-chat-user .page-quick-sidebar-chat-user-messages .post.out .avatar {
float: right;
margin-left: 10px;
}
.page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-chat .page-quick-sidebar-chat-user .page-quick-sidebar-chat-user-messages .post .name {
font-size: 12px;
font-weight: 300;
}
.page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-chat .page-quick-sidebar-chat-user .page-quick-sidebar-chat-user-messages .post .datetime {
font-size: 12px;
font-weight: 300;
text-style: italic;
}
.page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-chat .page-quick-sidebar-chat-user .page-quick-sidebar-chat-user-messages .post .message {
display: block;
padding: 5px;
position: relative;
}
.page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-chat .page-quick-sidebar-chat-user .page-quick-sidebar-chat-user-messages .post.in .message {
text-align: left;
margin-left: 55px;
}
.page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-chat .page-quick-sidebar-chat-user .page-quick-sidebar-chat-user-messages .post.in .message .arrow {
display: block;
position: absolute;
top: 9px;
left: -6px;
width: 0;
height: 0;
border-top: 6px solid transparent;
border-bottom: 6px solid transparent;
border-right-width: 6px;
border-right-style: solid;
}
.page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-chat .page-quick-sidebar-chat-user .page-quick-sidebar-chat-user-messages .post.out .message {
margin-right: 55px;
text-align: right;
}
.page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-chat .page-quick-sidebar-chat-user .page-quick-sidebar-chat-user-messages .post.out .message .arrow {
display: block;
position: absolute;
top: 9px;
right: -6px;
border-top: 6px solid transparent;
border-bottom: 6px solid transparent;
border-left-width: 6px;
border-left-style: solid;
}
.page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-chat .page-quick-sidebar-chat-user .page-quick-sidebar-chat-user-messages .post.out .name,
.page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-chat .page-quick-sidebar-chat-user .page-quick-sidebar-chat-user-messages .post.out .datetime {
text-align: right;
}
.page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-chat .page-quick-sidebar-chat-user .page-quick-sidebar-chat-user-form {
padding: 20px 10px 15px 10px;
}
.page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-chat .page-quick-sidebar-chat-user .page-quick-sidebar-chat-user-form .input-group .form-control {
font-size: 13px;
}
.page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-alerts .page-quick-sidebar-alerts-list {
padding: 10px 0;
position: relative;
}
.page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-alerts .page-quick-sidebar-alerts-list .feeds li .label {
margin-top: 5px;
}
.page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-alerts .page-quick-sidebar-alerts-list .feeds li .desc {
padding: 0;
}
.page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-settings .page-quick-sidebar-settings-list {
padding: 10px 0;
position: relative;
}
.page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-settings .page-quick-sidebar-settings-list .list-items li .bootstrap-switch {
margin-top: -3px;
float: right;
border: 0;
min-width: 59px;
}
.page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-settings .page-quick-sidebar-settings-list .list-items li .form-control {
width: 75px !important;
padding: 4px 4px !important;
float: right;
border: 0;
margin-top: -4px;
}
.page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-settings .page-quick-sidebar-settings-list .list-items li select.form-control {
padding: 4px 0px !important;
}
/***
Page content
***/
/* Page title */
.page-title {
padding: 0px;
font-size: 28px;
letter-spacing: -1px;
display: block;
color: #666;
margin: 0px 0px 15px 0px;
font-weight: 300;
font-family: "Open Sans", sans-serif;
/* subtitle */
}
.page-title small {
font-size: 14px;
letter-spacing: 0px;
font-weight: 300;
color: #888;
}
.page-container-bg-solid .page-title {
color: #666;
margin-bottom: 20px;
margin-top: 20px;
}
.page-container-bg-solid .page-title small {
color: #666;
}
/* Page breadcrumb */
.page-bar {
padding: 0px;
background-color: #f7f7f7;
margin-bottom: 25px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
-ms-border-radius: 4px;
-o-border-radius: 4px;
border-radius: 4px;
}
.page-bar:before, .page-bar:after {
content: " ";
display: table;
}
.page-bar:after {
clear: both;
}
.page-bar .page-breadcrumb {
display: inline-block;
float: left;
padding: 8px;
margin: 0;
list-style: none;
}
.page-bar .page-breadcrumb > li {
display: inline-block;
}
.ie8 .page-bar .page-breadcrumb > li {
margin-right: 1px;
}
.page-bar .page-breadcrumb > li > a,
.page-bar .page-breadcrumb > li > span {
color: #888;
font-size: 14px;
text-shadow: none;
}
.page-bar .page-breadcrumb > li > i {
color: #aaa;
font-size: 14px;
text-shadow: none;
}
.page-bar .page-breadcrumb > li > i[class^="icon-"],
.page-bar .page-breadcrumb > li > i[class*="icon-"] {
color: gray;
}
.page-bar .page-toolbar {
display: inline-block;
float: right;
padding: 0;
}
.page-bar .page-toolbar .btn-fit-height {
-webkit-border-radius: 0 4px 4px 0;
-moz-border-radius: 0 4px 4px 0;
-ms-border-radius: 0 4px 4px 0;
-o-border-radius: 0 4px 4px 0;
border-radius: 0 4px 4px 0;
padding-top: 8px;
padding-bottom: 8px;
}
.page-container-bg-solid .page-bar {
position: relative;
padding: 0px 20px;
background-color: #ffffff;
margin: -25px -20px 0 -20px;
}
.page-container-bg-solid .page-bar .page-breadcrumb {
padding: 11px 0;
}
.page-container-bg-solid .page-bar .page-breadcrumb > li > a,
.page-container-bg-solid .page-bar .page-breadcrumb > li > span {
color: #888;
}
.page-container-bg-solid .page-bar .page-breadcrumb > li > i {
color: #aaa;
}
.page-container-bg-solid .page-bar .page-breadcrumb > li > i[class^="icon-"],
.page-container-bg-solid .page-bar .page-breadcrumb > li > i[class*="icon-"] {
color: #8c8c8c;
}
.page-container-bg-solid .page-bar .page-toolbar {
padding: 6px 0;
}
.page-container-bg-solid .page-bar .page-toolbar .btn {
margin-top: -2px;
}
.page-container-bg-solid .page-bar .page-toolbar .btn.btn-sm {
margin-top: 0px;
}
/* Page content */
.page-content {
margin-top: 0px;
padding: 0px;
background-color: #fff;
}
.page-container-bg-solid .page-content {
background: #F1F3FA;
}
.page-full-width .page-content {
margin-left: 0px !important;
}
@media (min-width: 992px) {
/* 992px */
/* Page content */
.page-content-wrapper {
float: left;
width: 100%;
}
.page-content-wrapper .page-content {
margin-left: 235px;
margin-top: 0px;
min-height: 600px;
padding: 25px 20px 10px 20px;
}
.page-content-wrapper .page-content.no-min-height {
min-height: auto;
}
.page-sidebar-fixed.page-sidebar-hover-on .page-content-wrapper .page-content {
margin-left: 45px;
}
.page-sidebar-reversed .page-content-wrapper .page-content {
margin-left: 0 !important;
margin-right: 235px !important;
}
.page-sidebar-reversed.page-sidebar-fixed.page-sidebar-hover-on .page-content-wrapper .page-content {
margin-left: 0;
margin-right: 45px;
}
.page-sidebar-reversed.page-sidebar-closed .page-content-wrapper .page-content {
margin-left: 0 !important;
margin-right: 45px !important;
}
.page-sidebar-closed .page-content-wrapper .page-content {
margin-left: 45px !important;
}
.page-sidebar-closed.page-sidebar-hide .page-content-wrapper .page-content {
margin-left: 0 !important;
}
.page-sidebar-closed.page-sidebar-reversed.page-sidebar-hide .page-content-wrapper .page-content {
margin-right: 0 !important;
}
.page-full-width .page-content-wrapper .page-content {
margin-left: 0px !important;
}
}
@media (max-width: 991px) {
/* 991px */
/* Bg solid content's breadcrumb */
.page-container-bg-solid .page-bar {
margin-top: -20px;
}
/* Boxed page container */
.page-boxed > .container {
max-width: none !important;
margin: 0 !important;
padding: 0 !important;
}
/* Page content */
.page-content-wrapper .page-content {
margin: 0px !important;
padding: 20px 20px 20px 20px !important;
min-height: 280px;
}
}
@media (min-width: 768px) and (max-width: 991px) {
/* 768px & 991px */
/* Boxed page container */
.page-boxed > .container {
margin: auto !important;
}
}
@media (max-width: 767px) {
/* 767px */
/* Page content */
.page-content-wrapper .page-content {
padding: 20px 10px 10px 10px !important;
overflow: hidden;
/* Page title */
}
.page-content-wrapper .page-content .page-title {
margin-bottom: 20px;
font-size: 18px;
}
.page-content-wrapper .page-content .page-title small {
font-size: 13px;
padding-top: 3px;
}
}
@media (max-width: 480px) {
/* 480px */
/* Dashboard date range panel */
.page-content-wrapper .page-content .page-title small {
display: block;
clear: both;
}
}
/***
Page footer
***/
.page-footer {
padding: 8px 20px 5px 20px;
font-size: 12px;
height: 33px;
}
.page-footer:before, .page-footer:after {
content: " ";
display: table;
}
.page-footer:after {
clear: both;
}
.page-footer .page-footer-inner {
float: left;
display: inline-block;
}
.page-footer-fixed.page-footer-fixed-mobile .page-footer {
position: fixed;
left: 0;
right: 0;
z-index: 10000;
bottom: 0;
}
.page-footer-fixed.page-footer-fixed-mobile.page-sidebar-fixed .page-footer {
margin-left: 0 !important;
}
@media (min-width: 992px) {
/* 992px */
/* Default footer */
.page-footer {
clear: left;
}
/* Fixed footer */
.page-footer-fixed .page-footer {
position: fixed;
left: 0;
right: 0;
z-index: 10000;
bottom: 0;
}
/* Footer with footer sidebar */
.page-sidebar-fixed.page-sidebar-closed .page-footer {
margin-left: 45px;
}
.page-sidebar-fixed.page-footer-fixed .page-footer {
margin-left: 0 !important;
}
/* Fixed Sidebar */
.page-sidebar-fixed .page-footer {
margin-left: 235px;
padding: 8px 20px 5px 20px;
}
/* Boxed page */
.page-boxed .page-footer {
padding: 8px 0 5px 0;
}
.page-boxed.page-sidebar-fixed .page-footer {
padding-right: 20px;
padding-left: 20px;
}
/* Page sidebar reversed */
.page-sidebar-reversed.page-sidebar-fixed .page-footer {
margin-left: 0;
margin-right: 235px;
padding: 8px 20px 5px 20px;
}
.page-sidebar-reversed.page-sidebar-fixed.page-footer-fixed .page-footer {
margin-left: 0;
margin-right: 0;
}
.page-sidebar-reversed.page-sidebar-fixed.page-sidebar-closed .page-footer {
margin-right: 45px;
}
}
@media (max-width: 991px) {
/* 991px */
/* Boxed Layout */
.page-boxed .page-footer {
padding-left: 0px;
padding-right: 0px;
}
}
@media (max-width: 767px) {
/* 767px */
/* Default footer & boxed footer */
.page-footer,
.page-boxed .page-footer {
padding-left: 10px;
padding-right: 10px;
}
/* Fixed footer */
.page-footer-fixed .page-footer .container {
padding-left: 0;
padding-right: 0;
}
}
/* Scroll Top Top */
.scroll-to-top {
display: inline-block;
padding: 1px;
text-align: center;
position: fixed;
bottom: 10px;
z-index: 10001;
display: none;
right: 10px;
}
.scroll-to-top > i {
display: inline-block;
color: #687991;
font-size: 30px;
opacity: 0.6;
filter: alpha(opacity=60);
}
.scroll-to-top:hover {
cursor: pointer;
}
.scroll-to-top:hover > i {
opacity: 1;
filter: alpha(opacity=100);
}
@media (min-width: 992px) {
/* 992px */
.scroll-to-top {
right: 20px;
}
}
@media (max-width: 991px) {
/* 991px */
.scroll-to-top {
bottom: 10px;
right: 10px;
}
.scroll-to-top > i {
font-size: 28px;
}
}
/***
Theme Panel
***/
.theme-panel {
width: 420px;
margin-top: -13px;
margin-right: 0px;
z-index: 100;
float: right;
position: relative;
/* content solid bg color */
}
.theme-panel > .toggler {
top: 4px;
right: 0;
padding: 20px;
cursor: pointer;
position: absolute;
background: #d5dade url(../img/icon-color.png) center no-repeat;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
-ms-border-radius: 4px;
-o-border-radius: 4px;
border-radius: 4px;
}
.theme-panel > .toggler:hover {
background-color: #3d3d3d !important;
}
.theme-panel > .toggler-close {
display: none;
top: 4px;
right: 0;
padding: 20px;
z-index: 101;
cursor: pointer;
position: absolute;
background: #3d3d3d url(../img/icon-color-close.png) center no-repeat !important;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
-ms-border-radius: 4px;
-o-border-radius: 4px;
border-radius: 4px;
}
.theme-panel > .toggler-close:hover {
background-color: #222 !important;
}
.theme-panel > .theme-options {
top: 4px;
right: 0;
display: none;
position: absolute;
z-index: 100;
background: #3d3d3d;
box-shadow: 5px 5px rgba(61, 61, 61, 0.1);
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
-ms-border-radius: 4px;
-o-border-radius: 4px;
border-radius: 4px;
}
.theme-panel > .theme-options > .theme-option {
color: #cfcfcf;
padding: 10px;
border-top: 1px solid #444;
margin-top: 0px;
margin-bottom: 0px;
}
.theme-panel > .theme-options > .theme-option > span {
text-transform: uppercase;
display: inline-block;
width: 145px;
font-size: 13px;
font-weight: 300;
}
.theme-panel > .theme-options > .theme-option > select.form-control {
display: inline;
width: 135px;
padding: 2px;
text-transform: lowercase;
}
.theme-panel > .theme-options > .theme-option.theme-colors {
border-top: 0;
}
.theme-panel > .theme-options > .theme-option.theme-colors > span {
display: block;
width: auto;
}
.theme-panel > .theme-options > .theme-option.theme-colors > ul {
list-style: none;
padding: 0;
display: block;
margin-bottom: 10px !important;
margin-top: 15px;
}
.theme-panel > .theme-options > .theme-option.theme-colors > ul > li {
width: 40px;
height: 40px;
margin: 0 4px;
cursor: pointer;
list-style: none;
float: left;
border: solid 1px #707070;
/* theme colors */
}
.theme-panel > .theme-options > .theme-option.theme-colors > ul > li:first-child {
margin-left: 0;
}
.theme-panel > .theme-options > .theme-option.theme-colors > ul > li:hover, .theme-panel > .theme-options > .theme-option.theme-colors > ul > li.current {
border: solid 2px #d64635;
}
.theme-panel > .theme-options > .theme-option.theme-colors > ul > li.color-default {
background: #333438;
}
.theme-panel > .theme-options > .theme-option.theme-colors > ul > li.color-darkblue {
background: #2b3643;
}
.theme-panel > .theme-options > .theme-option.theme-colors > ul > li.color-blue {
background: #2D5F8B;
}
.theme-panel > .theme-options > .theme-option.theme-colors > ul > li.color-grey {
background: #697380;
}
.theme-panel > .theme-options > .theme-option.theme-colors > ul > li.color-light {
background: #F9FAFD;
}
.theme-panel > .theme-options > .theme-option.theme-colors > ul > li.color-light2 {
background: #F1F1F1;
}
.page-container-bg-solid .theme-panel {
position: absolute;
margin-top: 30px;
margin-right: 20px;
right: 0;
}
.page-container-bg-solid .theme-panel > .toggler {
background: #BFCAD1 url(../img/icon-color.png) center no-repeat;
}
.page-container-bg-solid.page-sidebar-reversed .theme-panel {
margin-right: 255px;
}
/***
Page Loading
***/
.page-on-load {
background: #fefefe;
}
.page-on-load .page-header,
.page-on-load .page-container,
.page-on-load .page-footer,
.page-on-load > .clearfix {
display: none;
transition: all 2s;
}
|
base_dependencies/sns_module/src/main/webapp/mobileview/community/ajax_memberdetail_panel.html | xdvalue/mcoding | <div id="memberDetail_face" class="bui_p_24 bui_inline bui_ta_c" hg_style="bgc">
<div class="bui_round bui_bds_4 bui_bdc_white" style="width: 96px;height: 96px;line-height: 96px;">
<i class="fa fa-user bui_fac_white bui_fas_96" style="line-height: 128px;"></i>
</div>
</div>
<div class="bui_bgc_white">
<li>
<div class="bui_plr_12">
<div class="bui_ipg_48 bui_block">
<i class="fa fa-mobile bui_fas_24 bui_fl bui_tc_black_f48" hg_style="tc"></i>
<input type="tel" name="memberDetail_mobilePhone" id="memberDetail_mobilePhone" placeholder="手机号码" maxlength="11" value="" class="bui_ipt_48 bui_bds_0 bui_ts_14" />
</div>
</div>
<hr/>
</li>
<li id="memberDetail_CodeInput" style="display: none;">
<div class="bui_plr_12">
<div class="bui_ipg_48 bui_block">
<i class="fa fa-copy bui_fl bui_tc_black_f48" hg_style="tc"></i>
<div class="bui_fr" id="memberDetail_CodeBtn">
<button onclick="javascript:getSmsCode();" class="bui_btn_24 bui_ts_12 bui_radius bui_bgc_white">获取</button>
</div>
<input type="tel" name="memberDetail_Code" id="memberDetail_Code" placeholder="验证码" maxlength="6" value="" class="bui_ipt_48 bui_bds_0 bui_ts_14" />
</div>
</div>
<hr/>
</li>
<li>
<div class="bui_plr_12">
<div class="bui_ipg_48 bui_block">
<i class="fa fa-user bui_fl bui_tc_black_f48" hg_style="tc"></i>
<input type="text" name="memberDetail_fullname" id="memberDetail_fullname" placeholder="姓名" maxlength="20" value="" class="bui_ipt_48 bui_bds_0 bui_ts_14" />
</div>
</div>
<hr/>
</li>
<li>
<div class="bui_plr_12">
<div class="bui_ipg_48 bui_block">
<i class="fa fa-intersex bui_fl bui_tc_black_f48" hg_style="tc"></i>
<select name="memberDetail_gender" id="memberDetail_gender" class="bui_ipt_48 bui_bds_0 bui_ts_14">
<option>男</option>
<option>女</option>
</select>
</div>
</div>
<hr/>
</li>
<li>
<div class="bui_plr_12">
<div class="bui_ipg_48 bui_block">
<i class="fa fa-birthday-cake bui_fl bui_tc_black_f48" hg_style="tc"></i>
<input type="text" name="memberDetail_birthday" id="memberDetail_birthday" placeholder="生日" value="" class="bui_ipt_48 bui_bds_0 bui_ts_14" readonly="readonly" />
</div>
</div>
<hr/>
</li>
<!-- <li>
<div class="bui_plr_12">
<div class="bui_ipg_48 bui_block">
<i class="fa fa-male bui_fl bui_tc_black_f48" hg_style="tc"></i>
<select name="memberDetail_height" id="memberDetail_height" class="bui_ipt_48 bui_bds_0 bui_ts_14">
<option>请设置您的身高</option>
</select>
</div>
</div>
<hr/>
</li> -->
<!-- <li>
<div class="bui_plr_12">
<div class="bui_ipg_48 bui_block">
<i class="fa fa-balance-scale bui_fl bui_tc_black_f48" hg_style="tc"></i>
<select name="memberDetail_weight" id="memberDetail_weight" class="bui_ipt_48 bui_bds_0 bui_ts_14">
<option>请设置您的体重</option>
</select>
</div>
</div>
<hr/>
</li> -->
</div>
<script type="text/javascript">
$(document).ready(function() {
//获取个人信息
getMemberDetail();
//按钮跟随滚动
buijs_ipt_scroll();
//引用第三方日历插件
$("#memberDetail_birthday").buijs_date({
positions: 'bottom',
start: 4,
min: 2
});
});
//全局变量
var _isNewUser; //是否新用户
var _smsCode= ""; //验证短信
//获取个人信息
function getMemberDetail() {
//未绑定手机
if (buijs_formcheck_mobile(hg_memberInfo.mobilephone) == false) {
_isNewUser = true;
$("#memberDetail_CodeInput").show();
$("#memberDetail_mobilePhone").val('').prop('disabled', false);
}
//已绑定手机
else {
_isNewUser = false;
$("#memberDetail_CodeInput").hide();
$("#memberDetail_mobilePhone").val(hg_memberInfo.mobilephone).prop('disabled', true);
};
//插入头像
if (hg_memberInfo.headImgUrl != '' && hg_memberInfo.headImgUrl != null) {
$("#memberDetail_face").html('<div class="bui_round bui_bds_4 bui_bdc_white_d24" style="width:96px;height:96px;" data-bui_img=""><img src="' + hg_memberInfo.headImgUrl + '"/></div>').find('[data-bui_img]').buijs_img();
}else {
$("#memberDetail_face").html('<div class="bui_round bui_bds_4 bui_bdc_white_d24" style="width:96px;height:96px;" data-bui_img=""><img src="' + hg_memberInfo.wxMember.wxHeadimgurl + '"/></div>').find('[data-bui_img]').buijs_img();
};
//昵称
$("#memberDetail_fullname").val(hg_memberInfo.name || "未知用户");
//性别
$("#memberDetail_gender option").map(function() {
if ($(this).text().indexOf(hg_memberInfo.gender == 1? "男": "女") > -1) {
$(this).prop('selected', true).siblings('option').prop('selected', false);
}
});
//生日
var birthdayV= hg_memberInfo.birthday;
$("#memberDetail_birthday").val(birthdayV || '');
//身高
var _demoHeight = '';
var _heightList = '';
for (_height_i = 140; _height_i <= 230; _height_i++) {
_heightList += '<option>' + _height_i + 'cm</option>'
};
$("#memberDetail_height").html('<option>请设置您的身高</option><option>140cm以下</option>' + _heightList + '<option>230cm以上</option>');
if (_demoHeight) {
$("#memberDetail_height option").map(function() {
if (parseInt($(this).val()) == _demoHeight) {
$(this).prop('selected', true).siblings('option').prop('selected', false);
}
});
} else {
$("#memberDetail_height option:first").prop('selected', true).siblings('option').prop('selected', false);
}
//体重
var _demoWeight = '';
var _weightList = '';
for (_weight_i = 30; _weight_i <= 200; _weight_i++) {
_weightList += '<option>' + _weight_i + 'kg</option>'
};
$("#memberDetail_weight").html('<option>请设置您的体重</option><option>30kg以下</option>' + _weightList + '<option>200kg以上</option>');
if (_demoWeight) {
$("#memberDetail_weight option").map(function() {
if (parseInt($(this).val()) == _demoWeight) {
$(this).prop('selected', true).siblings('option').prop('selected', false);
}
});
} else {
$("#memberDetail_weight option:first").prop('selected', true).siblings('option').prop('selected', false);
};
if (hg_memberInfo.ext1) {
$("#memberDetail_height").val(hg_memberInfo.ext1);
}
if (hg_memberInfo.ext2) {
$("#memberDetail_weight").val(hg_memberInfo.ext2);
}
};
//获取验证码
function getSmsCode() {
if (buijs_formcheck_mobile($("#memberDetail_mobilePhone").val()) == false) {
buijs_alert({
content: '手机格式不正确'
});
return false;
} else {
$.ajax({
type: "get",
url: _jsonUrl + "member/front/sendVerifyCode?phoneNum="+$("#memberDetail_mobilePhone").val(),
async: true,
cache: false,
dataType: 'json',
error: function (data,reo){
buijs_alert({
content: "网络超时,请刷新重试。("+data.status+":"+reo+")"
})
},
success: function(data) {
_smsCode = data.data
console.log(data);
$("#memberDetail_CodeBtn button").prop('disabled', true).removeClass('bui_bgc_white').addClass('bui_bgc_black').html('60s');
//倒计时
var i = 60;
var int = setInterval(smsCodecountDown, 1000);
function smsCodecountDown() {
i = i - 1;
if (i >= 0) {
$("#memberDetail_CodeBtn button").html(i + 's');
} else {
$("#memberDetail_CodeBtn button").prop('disabled', false).html('获取');
window.clearInterval(int);
}
};
}
});
};
};
//更新个人信息
function updataMemberDetail() {
console.log(_isNewUser);
//前端校验
if (buijs_formcheck_mobile($("#memberDetail_mobilePhone").val()) == false) {
buijs_alert({
content: '手机格式不正确'
});
return false;
// } else if (_isNewUser == true && buijs_formcheck_length($("#memberDetail_Code").val(), 6, 6) == false) {
// buijs_alert({
// content: '验证码格式不正确'
// });
// return false;
// } else if (_isNewUser == true && $("#memberDetail_Code").val() != _smsCode) {
// buijs_alert({
// content: '验证码错误'
// });
// return false;
} else if (buijs_formcheck_length($("#memberDetail_fullname").val(), 20, 2) == false) {
buijs_alert({
content: '昵称格式不正确'
});
return false;
} else if (buijs_formcheck_length($("#memberDetail_birthday").val(), 20, 1) == false) {
buijs_alert({
content: '请设置您的生日'
});
return false;
}
//后端校验
else {
var birthday= $('#memberDetail_birthday').val();
buijs_showloading('black_f72');
var updataMemberDetailData = {
mobilephone: $('#memberDetail_mobilePhone').val(),
gender: $("#memberDetail_gender option:selected").text() == "男"? 1 : 0,
name: $('#memberDetail_fullname').val(),
birthday: birthday,
};
$.ajax({
type: "post",
url: _jsonUrl + "member/front/editCurrentMember?verifyCode="+$("#memberDetail_Code").val(),
contentType: "application/json",
dataType: "json",
complete: function () {
buijs_closeloading();
},
data: JSON.stringify(updataMemberDetailData),
error: function (data,reo){
buijs_alert({
content: "网络超时,请刷新重试。("+data.status+":"+reo+")"
})
},
success: function(data) {
console.log(updataMemberDetailData)
if (data.status=="00"){
buijs_alert({
content: "修改成功"
});
getMyInfo(); //my.js 里面的方法
history.go(-1);
}else {
buijs_alert({
content: data.msg
});
}
}
});
};
};
</script> |
2016.8.1/apidocs/org/wildfly/swarm/config/mail/class-use/MailSessionConsumer.html | wildfly-swarm/wildfly-swarm-javadocs | <!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_60-ea) on Tue Aug 16 17:15:33 EDT 2016 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Interface org.wildfly.swarm.config.mail.MailSessionConsumer (Public javadocs 2016.8.1 API)</title>
<meta name="date" content="2016-08-16">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Interface org.wildfly.swarm.config.mail.MailSessionConsumer (Public javadocs 2016.8.1 API)";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../org/wildfly/swarm/config/mail/MailSessionConsumer.html" title="interface in org.wildfly.swarm.config.mail">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../../../../../../overview-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 class="aboutLanguage">WildFly Swarm API, 2016.8.1</div>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?org/wildfly/swarm/config/mail/class-use/MailSessionConsumer.html" target="_top">Frames</a></li>
<li><a href="MailSessionConsumer.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 org.wildfly.swarm.config.mail.MailSessionConsumer" class="title">Uses of Interface<br>org.wildfly.swarm.config.mail.MailSessionConsumer</h2>
</div>
<div class="classUseContainer">
<ul class="blockList">
<li class="blockList">
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation">
<caption><span>Packages that use <a href="../../../../../../org/wildfly/swarm/config/mail/MailSessionConsumer.html" title="interface in org.wildfly.swarm.config.mail">MailSessionConsumer</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.wildfly.swarm.config">org.wildfly.swarm.config</a></td>
<td class="colLast"> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="#org.wildfly.swarm.config.mail">org.wildfly.swarm.config.mail</a></td>
<td class="colLast"> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="#org.wildfly.swarm.mail">org.wildfly.swarm.mail</a></td>
<td class="colLast"> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="org.wildfly.swarm.config">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../org/wildfly/swarm/config/mail/MailSessionConsumer.html" title="interface in org.wildfly.swarm.config.mail">MailSessionConsumer</a> in <a href="../../../../../../org/wildfly/swarm/config/package-summary.html">org.wildfly.swarm.config</a></h3>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../../org/wildfly/swarm/config/package-summary.html">org.wildfly.swarm.config</a> with parameters of type <a href="../../../../../../org/wildfly/swarm/config/mail/MailSessionConsumer.html" title="interface in org.wildfly.swarm.config.mail">MailSessionConsumer</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/wildfly/swarm/config/Mail.html" title="type parameter in Mail">T</a></code></td>
<td class="colLast"><span class="typeNameLabel">Mail.</span><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/Mail.html#mailSession-java.lang.String-org.wildfly.swarm.config.mail.MailSessionConsumer-">mailSession</a></span>(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> childKey,
<a href="../../../../../../org/wildfly/swarm/config/mail/MailSessionConsumer.html" title="interface in org.wildfly.swarm.config.mail">MailSessionConsumer</a> consumer)</code>
<div class="block">Create and configure a MailSession object to the list of subresources</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="org.wildfly.swarm.config.mail">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../org/wildfly/swarm/config/mail/MailSessionConsumer.html" title="interface in org.wildfly.swarm.config.mail">MailSessionConsumer</a> in <a href="../../../../../../org/wildfly/swarm/config/mail/package-summary.html">org.wildfly.swarm.config.mail</a></h3>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../../org/wildfly/swarm/config/mail/package-summary.html">org.wildfly.swarm.config.mail</a> that return <a href="../../../../../../org/wildfly/swarm/config/mail/MailSessionConsumer.html" title="interface in org.wildfly.swarm.config.mail">MailSessionConsumer</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>default <a href="../../../../../../org/wildfly/swarm/config/mail/MailSessionConsumer.html" title="interface in org.wildfly.swarm.config.mail">MailSessionConsumer</a><<a href="../../../../../../org/wildfly/swarm/config/mail/MailSessionConsumer.html" title="type parameter in MailSessionConsumer">T</a>></code></td>
<td class="colLast"><span class="typeNameLabel">MailSessionConsumer.</span><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/mail/MailSessionConsumer.html#andThen-org.wildfly.swarm.config.mail.MailSessionConsumer-">andThen</a></span>(<a href="../../../../../../org/wildfly/swarm/config/mail/MailSessionConsumer.html" title="interface in org.wildfly.swarm.config.mail">MailSessionConsumer</a><<a href="../../../../../../org/wildfly/swarm/config/mail/MailSessionConsumer.html" title="type parameter in MailSessionConsumer">T</a>> after)</code> </td>
</tr>
</tbody>
</table>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../../org/wildfly/swarm/config/mail/package-summary.html">org.wildfly.swarm.config.mail</a> with parameters of type <a href="../../../../../../org/wildfly/swarm/config/mail/MailSessionConsumer.html" title="interface in org.wildfly.swarm.config.mail">MailSessionConsumer</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>default <a href="../../../../../../org/wildfly/swarm/config/mail/MailSessionConsumer.html" title="interface in org.wildfly.swarm.config.mail">MailSessionConsumer</a><<a href="../../../../../../org/wildfly/swarm/config/mail/MailSessionConsumer.html" title="type parameter in MailSessionConsumer">T</a>></code></td>
<td class="colLast"><span class="typeNameLabel">MailSessionConsumer.</span><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/mail/MailSessionConsumer.html#andThen-org.wildfly.swarm.config.mail.MailSessionConsumer-">andThen</a></span>(<a href="../../../../../../org/wildfly/swarm/config/mail/MailSessionConsumer.html" title="interface in org.wildfly.swarm.config.mail">MailSessionConsumer</a><<a href="../../../../../../org/wildfly/swarm/config/mail/MailSessionConsumer.html" title="type parameter in MailSessionConsumer">T</a>> after)</code> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="org.wildfly.swarm.mail">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../org/wildfly/swarm/config/mail/MailSessionConsumer.html" title="interface in org.wildfly.swarm.config.mail">MailSessionConsumer</a> in <a href="../../../../../../org/wildfly/swarm/mail/package-summary.html">org.wildfly.swarm.mail</a></h3>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing subinterfaces, and an explanation">
<caption><span>Subinterfaces of <a href="../../../../../../org/wildfly/swarm/config/mail/MailSessionConsumer.html" title="interface in org.wildfly.swarm.config.mail">MailSessionConsumer</a> in <a href="../../../../../../org/wildfly/swarm/mail/package-summary.html">org.wildfly.swarm.mail</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><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/mail/EnhancedMailSessionConsumer.html" title="interface in org.wildfly.swarm.mail">EnhancedMailSessionConsumer</a></span></code> </td>
</tr>
</tbody>
</table>
</li>
</ul>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../org/wildfly/swarm/config/mail/MailSessionConsumer.html" title="interface in org.wildfly.swarm.config.mail">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../../../../../../overview-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 class="aboutLanguage">WildFly Swarm API, 2016.8.1</div>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?org/wildfly/swarm/config/mail/class-use/MailSessionConsumer.html" target="_top">Frames</a></li>
<li><a href="MailSessionConsumer.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 © 2016 <a href="http://www.jboss.org">JBoss by Red Hat</a>. All rights reserved.</small></p>
</body>
</html>
|
2016.9/apidocs/org/wildfly/swarm/config/security/security_domain/package-frame.html | wildfly-swarm/wildfly-swarm-javadocs | <!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_60-ea) on Tue Sep 06 12:41:43 EDT 2016 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>org.wildfly.swarm.config.security.security_domain (Public javadocs 2016.9 API)</title>
<meta name="date" content="2016-09-06">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../../script.js"></script>
</head>
<body>
<h1 class="bar"><a href="../../../../../../org/wildfly/swarm/config/security/security_domain/package-summary.html" target="classFrame">org.wildfly.swarm.config.security.security_domain</a></h1>
<div class="indexContainer">
<h2 title="Interfaces">Interfaces</h2>
<ul title="Interfaces">
<li><a href="ClassicACLConsumer.html" title="interface in org.wildfly.swarm.config.security.security_domain" target="classFrame"><span class="interfaceName">ClassicACLConsumer</span></a></li>
<li><a href="ClassicACLSupplier.html" title="interface in org.wildfly.swarm.config.security.security_domain" target="classFrame"><span class="interfaceName">ClassicACLSupplier</span></a></li>
<li><a href="ClassicAuditConsumer.html" title="interface in org.wildfly.swarm.config.security.security_domain" target="classFrame"><span class="interfaceName">ClassicAuditConsumer</span></a></li>
<li><a href="ClassicAuditSupplier.html" title="interface in org.wildfly.swarm.config.security.security_domain" target="classFrame"><span class="interfaceName">ClassicAuditSupplier</span></a></li>
<li><a href="ClassicAuthenticationConsumer.html" title="interface in org.wildfly.swarm.config.security.security_domain" target="classFrame"><span class="interfaceName">ClassicAuthenticationConsumer</span></a></li>
<li><a href="ClassicAuthenticationSupplier.html" title="interface in org.wildfly.swarm.config.security.security_domain" target="classFrame"><span class="interfaceName">ClassicAuthenticationSupplier</span></a></li>
<li><a href="ClassicAuthorizationConsumer.html" title="interface in org.wildfly.swarm.config.security.security_domain" target="classFrame"><span class="interfaceName">ClassicAuthorizationConsumer</span></a></li>
<li><a href="ClassicAuthorizationSupplier.html" title="interface in org.wildfly.swarm.config.security.security_domain" target="classFrame"><span class="interfaceName">ClassicAuthorizationSupplier</span></a></li>
<li><a href="ClassicIdentityTrustConsumer.html" title="interface in org.wildfly.swarm.config.security.security_domain" target="classFrame"><span class="interfaceName">ClassicIdentityTrustConsumer</span></a></li>
<li><a href="ClassicIdentityTrustSupplier.html" title="interface in org.wildfly.swarm.config.security.security_domain" target="classFrame"><span class="interfaceName">ClassicIdentityTrustSupplier</span></a></li>
<li><a href="ClassicJSSEConsumer.html" title="interface in org.wildfly.swarm.config.security.security_domain" target="classFrame"><span class="interfaceName">ClassicJSSEConsumer</span></a></li>
<li><a href="ClassicJSSESupplier.html" title="interface in org.wildfly.swarm.config.security.security_domain" target="classFrame"><span class="interfaceName">ClassicJSSESupplier</span></a></li>
<li><a href="ClassicMappingConsumer.html" title="interface in org.wildfly.swarm.config.security.security_domain" target="classFrame"><span class="interfaceName">ClassicMappingConsumer</span></a></li>
<li><a href="ClassicMappingSupplier.html" title="interface in org.wildfly.swarm.config.security.security_domain" target="classFrame"><span class="interfaceName">ClassicMappingSupplier</span></a></li>
<li><a href="JaspiAuthenticationConsumer.html" title="interface in org.wildfly.swarm.config.security.security_domain" target="classFrame"><span class="interfaceName">JaspiAuthenticationConsumer</span></a></li>
<li><a href="JaspiAuthenticationSupplier.html" title="interface in org.wildfly.swarm.config.security.security_domain" target="classFrame"><span class="interfaceName">JaspiAuthenticationSupplier</span></a></li>
</ul>
<h2 title="Classes">Classes</h2>
<ul title="Classes">
<li><a href="ClassicACL.html" title="class in org.wildfly.swarm.config.security.security_domain" target="classFrame">ClassicACL</a></li>
<li><a href="ClassicACL.ClassicACLResources.html" title="class in org.wildfly.swarm.config.security.security_domain" target="classFrame">ClassicACL.ClassicACLResources</a></li>
<li><a href="ClassicAudit.html" title="class in org.wildfly.swarm.config.security.security_domain" target="classFrame">ClassicAudit</a></li>
<li><a href="ClassicAudit.ClassicAuditResources.html" title="class in org.wildfly.swarm.config.security.security_domain" target="classFrame">ClassicAudit.ClassicAuditResources</a></li>
<li><a href="ClassicAuthentication.html" title="class in org.wildfly.swarm.config.security.security_domain" target="classFrame">ClassicAuthentication</a></li>
<li><a href="ClassicAuthentication.ClassicAuthenticationResources.html" title="class in org.wildfly.swarm.config.security.security_domain" target="classFrame">ClassicAuthentication.ClassicAuthenticationResources</a></li>
<li><a href="ClassicAuthorization.html" title="class in org.wildfly.swarm.config.security.security_domain" target="classFrame">ClassicAuthorization</a></li>
<li><a href="ClassicAuthorization.ClassicAuthorizationResources.html" title="class in org.wildfly.swarm.config.security.security_domain" target="classFrame">ClassicAuthorization.ClassicAuthorizationResources</a></li>
<li><a href="ClassicIdentityTrust.html" title="class in org.wildfly.swarm.config.security.security_domain" target="classFrame">ClassicIdentityTrust</a></li>
<li><a href="ClassicIdentityTrust.ClassicIdentityTrustResources.html" title="class in org.wildfly.swarm.config.security.security_domain" target="classFrame">ClassicIdentityTrust.ClassicIdentityTrustResources</a></li>
<li><a href="ClassicJSSE.html" title="class in org.wildfly.swarm.config.security.security_domain" target="classFrame">ClassicJSSE</a></li>
<li><a href="ClassicMapping.html" title="class in org.wildfly.swarm.config.security.security_domain" target="classFrame">ClassicMapping</a></li>
<li><a href="ClassicMapping.ClassicMappingResources.html" title="class in org.wildfly.swarm.config.security.security_domain" target="classFrame">ClassicMapping.ClassicMappingResources</a></li>
<li><a href="JaspiAuthentication.html" title="class in org.wildfly.swarm.config.security.security_domain" target="classFrame">JaspiAuthentication</a></li>
<li><a href="JaspiAuthentication.JaspiAuthenticationResources.html" title="class in org.wildfly.swarm.config.security.security_domain" target="classFrame">JaspiAuthentication.JaspiAuthenticationResources</a></li>
</ul>
</div>
</body>
</html>
|
target13/site/clover/com/cardatechnologies/utils/validators/abaroutevalidator/Test_AbaRouteValidator_05_testAbaNumberCheck_9554_bad_ur6.html | dcarda/aba.route.validator | <!DOCTYPE html>
<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"/>
<link rel="SHORTCUT ICON" href="../../../../../img/clover.ico" />
<link rel="stylesheet" href="../../../../../aui/css/aui.min.css" media="all"/>
<link rel="stylesheet" href="../../../../../aui/css/aui-experimental.min.css" media="all"/>
<!--[if IE 9]><link rel="stylesheet" href="../../../../../aui/css/aui-ie9.min.css" media="all"/><![endif]-->
<style type="text/css" media="all">
@import url('../../../../../style.css');
@import url('../../../../../tree.css');
</style>
<script src="../../../../../jquery-1.8.3.min.js" type="text/javascript"></script>
<script src="../../../../../aui/js/aui.min.js" type="text/javascript"></script>
<script src="../../../../../aui/js/aui-experimental.min.js" type="text/javascript"></script>
<script src="../../../../../aui/js/aui-soy.min.js" type="text/javascript"></script>
<script src="../../../../../package-nodes-tree.js" type="text/javascript"></script>
<script src="../../../../../clover-tree.js" type="text/javascript"></script>
<script src="../../../../../clover.js" type="text/javascript"></script>
<script src="../../../../../clover-descriptions.js" type="text/javascript"></script>
<script src="../../../../../cloud.js" type="text/javascript"></script>
<title>ABA Route Transit Number Validator 1.0.1-SNAPSHOT</title>
</head>
<body>
<div id="page">
<header id="header" role="banner">
<nav class="aui-header aui-dropdown2-trigger-group" role="navigation">
<div class="aui-header-inner">
<div class="aui-header-primary">
<h1 id="logo" class="aui-header-logo aui-header-logo-clover">
<a href="http://openclover.org" title="Visit OpenClover home page"><span class="aui-header-logo-device">OpenClover</span></a>
</h1>
</div>
<div class="aui-header-secondary">
<ul class="aui-nav">
<li id="system-help-menu">
<a class="aui-nav-link" title="Open online documentation" target="_blank"
href="http://openclover.org/documentation">
<span class="aui-icon aui-icon-small aui-iconfont-help"> Help</span>
</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<div class="aui-page-panel">
<div class="aui-page-panel-inner">
<div class="aui-page-panel-nav aui-page-panel-nav-clover">
<div class="aui-page-header-inner" style="margin-bottom: 20px;">
<div class="aui-page-header-image">
<a href="http://cardatechnologies.com" target="_top">
<div class="aui-avatar aui-avatar-large aui-avatar-project">
<div class="aui-avatar-inner">
<img src="../../../../../img/clover_logo_large.png" alt="Clover icon"/>
</div>
</div>
</a>
</div>
<div class="aui-page-header-main" >
<h1>
<a href="http://cardatechnologies.com" target="_top">
ABA Route Transit Number Validator 1.0.1-SNAPSHOT
</a>
</h1>
</div>
</div>
<nav class="aui-navgroup aui-navgroup-vertical">
<div class="aui-navgroup-inner">
<ul class="aui-nav">
<li class="">
<a href="../../../../../dashboard.html">Project overview</a>
</li>
</ul>
<div class="aui-nav-heading packages-nav-heading">
<strong>Packages</strong>
</div>
<div class="aui-nav project-packages">
<form method="get" action="#" class="aui package-filter-container">
<input type="text" autocomplete="off" class="package-filter text"
placeholder="Type to filter packages..." name="package-filter" id="package-filter"
title="Start typing package name (or part of the name) to search through the tree. Use arrow keys and the Enter key to navigate."/>
</form>
<p class="package-filter-no-results-message hidden">
<small>No results found.</small>
</p>
<div class="packages-tree-wrapper" data-root-relative="../../../../../" data-package-name="com.cardatechnologies.utils.validators.abaroutevalidator">
<div class="packages-tree-container"></div>
<div class="clover-packages-lozenges"></div>
</div>
</div>
</div>
</nav> </div>
<section class="aui-page-panel-content">
<div class="aui-page-panel-content-clover">
<div class="aui-page-header-main"><ol class="aui-nav aui-nav-breadcrumbs">
<li><a href="../../../../../dashboard.html"> Project Clover database Sat Aug 7 2021 12:29:33 MDT</a></li>
<li><a href="test-pkg-summary.html">Package com.cardatechnologies.utils.validators.abaroutevalidator</a></li>
<li><a href="test-Test_AbaRouteValidator_05.html">Class Test_AbaRouteValidator_05</a></li>
</ol></div>
<h1 class="aui-h2-clover">
Test testAbaNumberCheck_9554_bad
</h1>
<table class="aui">
<thead>
<tr>
<th>Test</th>
<th><label title="The test result. Either a Pass, Fail or Error.">Status</label></th>
<th><label title="When the test execution was started">Start time</label></th>
<th><label title="The total time in seconds taken to run this test.">Time (seconds)</label></th>
<th><label title="A failure or error message if the test is not successful.">Message</label></th>
</tr>
</thead>
<tbody>
<tr>
<td>
<a href="../../../../../com/cardatechnologies/utils/validators/abaroutevalidator/Test_AbaRouteValidator_05.html?line=49336#src-49336" >testAbaNumberCheck_9554_bad</a>
</td>
<td>
<span class="sortValue">1</span><span class="aui-lozenge aui-lozenge-success">PASS</span>
</td>
<td>
7 Aug 12:34:51
</td>
<td>
0.0 </td>
<td>
<div></div>
<div class="errorMessage"></div>
</td>
</tr>
</tbody>
</table>
<div> </div>
<table class="aui aui-table-sortable">
<thead>
<tr>
<th style="white-space:nowrap;"><label title="A class that was directly hit by this test.">Target Class</label></th>
<th colspan="4"><label title="The percentage of coverage contributed by each single test.">Coverage contributed by</label> testAbaNumberCheck_9554_bad</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<span class="sortValue">com.cardatechnologies.utils.validators.abaroutevalidator.exceptions.AbaRouteValidationException</span>
  <a href="../../../../../com/cardatechnologies/utils/validators/abaroutevalidator/exceptions/AbaRouteValidationException.html?id=39858#AbaRouteValidationException" title="AbaRouteValidationException" name="sl-43">com.cardatechnologies.utils.validators.abaroutevalidator.exceptions.AbaRouteValidationException</a>
</td>
<td>
<span class="sortValue">0.5714286</span>57.1%
</td>
<td class="align-middle" style="width: 100%" colspan="3">
<div>
<div title="57.1% Covered" style="min-width:40px;" class="barNegative contribBarNegative contribBarNegative"><div class="barPositive contribBarPositive contribBarPositive" style="width:57.1%"></div></div></div> </td>
</tr>
<tr>
<td>
<span class="sortValue">com.cardatechnologies.utils.validators.abaroutevalidator.ErrorCodes</span>
  <a href="../../../../../com/cardatechnologies/utils/validators/abaroutevalidator/ErrorCodes.html?id=39858#ErrorCodes" title="ErrorCodes" name="sl-42">com.cardatechnologies.utils.validators.abaroutevalidator.ErrorCodes</a>
</td>
<td>
<span class="sortValue">0.5714286</span>57.1%
</td>
<td class="align-middle" style="width: 100%" colspan="3">
<div>
<div title="57.1% Covered" style="min-width:40px;" class="barNegative contribBarNegative contribBarNegative"><div class="barPositive contribBarPositive contribBarPositive" style="width:57.1%"></div></div></div> </td>
</tr>
<tr>
<td>
<span class="sortValue">com.cardatechnologies.utils.validators.abaroutevalidator.AbaRouteValidator</span>
  <a href="../../../../../com/cardatechnologies/utils/validators/abaroutevalidator/AbaRouteValidator.html?id=39858#AbaRouteValidator" title="AbaRouteValidator" name="sl-47">com.cardatechnologies.utils.validators.abaroutevalidator.AbaRouteValidator</a>
</td>
<td>
<span class="sortValue">0.29411766</span>29.4%
</td>
<td class="align-middle" style="width: 100%" colspan="3">
<div>
<div title="29.4% Covered" style="min-width:40px;" class="barNegative contribBarNegative contribBarNegative"><div class="barPositive contribBarPositive contribBarPositive" style="width:29.4%"></div></div></div> </td>
</tr>
</tbody>
</table>
</div> <!-- class="aui-page-panel-content-clover" -->
<footer id="footer" role="contentinfo">
<section class="footer-body">
<ul>
<li>
Report generated by <a target="_new" href="http://openclover.org">OpenClover</a> v 4.4.1
on Sat Aug 7 2021 12:49:26 MDT using coverage data from Sat Aug 7 2021 12:47:23 MDT.
</li>
</ul>
<ul>
<li>OpenClover is free and open-source software. </li>
</ul>
</section>
</footer> </section> <!-- class="aui-page-panel-content" -->
</div> <!-- class="aui-page-panel-inner" -->
</div> <!-- class="aui-page-panel" -->
</div> <!-- id="page" -->
</body>
</html> |
_includes/js.html | ShaneCurcuru/punderthings | <!-- jQuery Version 1.11.0 -->
<script src="{{ "/js/jquery-1.11.0.js" | prepend: site.baseurl }}"></script>
<!-- Bootstrap Core JavaScript -->
<script src="{{ "/js/bootstrap.min.js" | prepend: site.baseurl }}"></script>
<!-- Plugin JavaScript -->
<script src="{{ "/js/jquery.easing.min.js" | prepend: site.baseurl }}"></script>
<script src="{{ "/js/classie.js" | prepend: site.baseurl }}"></script>
<script src="{{ "/js/cbpAnimatedHeader.js" | prepend: site.baseurl }}"></script>
<!-- Contact Form JavaScript -->
<script src="{{ "/js/jqBootstrapValidation.js" | prepend: site.baseurl }}"></script>
<script src="{{ "/js/contact_me.js" | prepend: site.baseurl }}"></script>
<!-- Custom Theme JavaScript -->
<script src="{{ "/js/agency.js" | prepend: site.baseurl }}"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-104072125-1', 'auto');
ga('send', 'pageview');
</script> |
MinimaxAlgorithm/poi-3.8/docs/apidocs/org/apache/poi/xslf/model/geom/class-use/Context.html | Stephania16/ProductDesignGame | <!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_29) on Sat Mar 17 18:06:08 MSK 2012 -->
<TITLE>
Uses of Class org.apache.poi.xslf.model.geom.Context (POI API Documentation)
</TITLE>
<META NAME="date" CONTENT="2012-03-17">
<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 org.apache.poi.xslf.model.geom.Context (POI API Documentation)";
}
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<HR>
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../org/apache/poi/xslf/model/geom/Context.html" title="class in org.apache.poi.xslf.model.geom"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../../index.html?org/apache/poi/xslf/model/geom/\class-useContext.html" target="_top"><B>FRAMES</B></A>
<A HREF="Context.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<CENTER>
<H2>
<B>Uses of Class<br>org.apache.poi.xslf.model.geom.Context</B></H2>
</CENTER>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
Packages that use <A HREF="../../../../../../../org/apache/poi/xslf/model/geom/Context.html" title="class in org.apache.poi.xslf.model.geom">Context</A></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="#org.apache.poi.xslf.model.geom"><B>org.apache.poi.xslf.model.geom</B></A></TD>
<TD> </TD>
</TR>
</TABLE>
<P>
<A NAME="org.apache.poi.xslf.model.geom"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
Uses of <A HREF="../../../../../../../org/apache/poi/xslf/model/geom/Context.html" title="class in org.apache.poi.xslf.model.geom">Context</A> in <A HREF="../../../../../../../org/apache/poi/xslf/model/geom/package-summary.html">org.apache.poi.xslf.model.geom</A></FONT></TH>
</TR>
</TABLE>
<P>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../../../../org/apache/poi/xslf/model/geom/package-summary.html">org.apache.poi.xslf.model.geom</A> with parameters of type <A HREF="../../../../../../../org/apache/poi/xslf/model/geom/Context.html" title="class in org.apache.poi.xslf.model.geom">Context</A></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> double</CODE></FONT></TD>
<TD><CODE><B>TanExpression.</B><B><A HREF="../../../../../../../org/apache/poi/xslf/model/geom/TanExpression.html#evaluate(org.apache.poi.xslf.model.geom.Context)">evaluate</A></B>(<A HREF="../../../../../../../org/apache/poi/xslf/model/geom/Context.html" title="class in org.apache.poi.xslf.model.geom">Context</A> ctx)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> double</CODE></FONT></TD>
<TD><CODE><B>SqrtExpression.</B><B><A HREF="../../../../../../../org/apache/poi/xslf/model/geom/SqrtExpression.html#evaluate(org.apache.poi.xslf.model.geom.Context)">evaluate</A></B>(<A HREF="../../../../../../../org/apache/poi/xslf/model/geom/Context.html" title="class in org.apache.poi.xslf.model.geom">Context</A> ctx)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> double</CODE></FONT></TD>
<TD><CODE><B>SinExpression.</B><B><A HREF="../../../../../../../org/apache/poi/xslf/model/geom/SinExpression.html#evaluate(org.apache.poi.xslf.model.geom.Context)">evaluate</A></B>(<A HREF="../../../../../../../org/apache/poi/xslf/model/geom/Context.html" title="class in org.apache.poi.xslf.model.geom">Context</A> ctx)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> double</CODE></FONT></TD>
<TD><CODE><B>SinArcTanExpression.</B><B><A HREF="../../../../../../../org/apache/poi/xslf/model/geom/SinArcTanExpression.html#evaluate(org.apache.poi.xslf.model.geom.Context)">evaluate</A></B>(<A HREF="../../../../../../../org/apache/poi/xslf/model/geom/Context.html" title="class in org.apache.poi.xslf.model.geom">Context</A> ctx)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> double</CODE></FONT></TD>
<TD><CODE><B>PinExpression.</B><B><A HREF="../../../../../../../org/apache/poi/xslf/model/geom/PinExpression.html#evaluate(org.apache.poi.xslf.model.geom.Context)">evaluate</A></B>(<A HREF="../../../../../../../org/apache/poi/xslf/model/geom/Context.html" title="class in org.apache.poi.xslf.model.geom">Context</A> ctx)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> double</CODE></FONT></TD>
<TD><CODE><B>MultiplyDivideExpression.</B><B><A HREF="../../../../../../../org/apache/poi/xslf/model/geom/MultiplyDivideExpression.html#evaluate(org.apache.poi.xslf.model.geom.Context)">evaluate</A></B>(<A HREF="../../../../../../../org/apache/poi/xslf/model/geom/Context.html" title="class in org.apache.poi.xslf.model.geom">Context</A> ctx)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> double</CODE></FONT></TD>
<TD><CODE><B>ModExpression.</B><B><A HREF="../../../../../../../org/apache/poi/xslf/model/geom/ModExpression.html#evaluate(org.apache.poi.xslf.model.geom.Context)">evaluate</A></B>(<A HREF="../../../../../../../org/apache/poi/xslf/model/geom/Context.html" title="class in org.apache.poi.xslf.model.geom">Context</A> ctx)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> double</CODE></FONT></TD>
<TD><CODE><B>MinExpression.</B><B><A HREF="../../../../../../../org/apache/poi/xslf/model/geom/MinExpression.html#evaluate(org.apache.poi.xslf.model.geom.Context)">evaluate</A></B>(<A HREF="../../../../../../../org/apache/poi/xslf/model/geom/Context.html" title="class in org.apache.poi.xslf.model.geom">Context</A> ctx)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> double</CODE></FONT></TD>
<TD><CODE><B>MaxExpression.</B><B><A HREF="../../../../../../../org/apache/poi/xslf/model/geom/MaxExpression.html#evaluate(org.apache.poi.xslf.model.geom.Context)">evaluate</A></B>(<A HREF="../../../../../../../org/apache/poi/xslf/model/geom/Context.html" title="class in org.apache.poi.xslf.model.geom">Context</A> ctx)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> double</CODE></FONT></TD>
<TD><CODE><B>LiteralValueExpression.</B><B><A HREF="../../../../../../../org/apache/poi/xslf/model/geom/LiteralValueExpression.html#evaluate(org.apache.poi.xslf.model.geom.Context)">evaluate</A></B>(<A HREF="../../../../../../../org/apache/poi/xslf/model/geom/Context.html" title="class in org.apache.poi.xslf.model.geom">Context</A> ctx)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> double</CODE></FONT></TD>
<TD><CODE><B>IfElseExpression.</B><B><A HREF="../../../../../../../org/apache/poi/xslf/model/geom/IfElseExpression.html#evaluate(org.apache.poi.xslf.model.geom.Context)">evaluate</A></B>(<A HREF="../../../../../../../org/apache/poi/xslf/model/geom/Context.html" title="class in org.apache.poi.xslf.model.geom">Context</A> ctx)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> double</CODE></FONT></TD>
<TD><CODE><B>Guide.</B><B><A HREF="../../../../../../../org/apache/poi/xslf/model/geom/Guide.html#evaluate(org.apache.poi.xslf.model.geom.Context)">evaluate</A></B>(<A HREF="../../../../../../../org/apache/poi/xslf/model/geom/Context.html" title="class in org.apache.poi.xslf.model.geom">Context</A> ctx)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> double</CODE></FONT></TD>
<TD><CODE><B>Expression.</B><B><A HREF="../../../../../../../org/apache/poi/xslf/model/geom/Expression.html#evaluate(org.apache.poi.xslf.model.geom.Context)">evaluate</A></B>(<A HREF="../../../../../../../org/apache/poi/xslf/model/geom/Context.html" title="class in org.apache.poi.xslf.model.geom">Context</A> ctx)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> double</CODE></FONT></TD>
<TD><CODE><B>CosineArcTanExpression.</B><B><A HREF="../../../../../../../org/apache/poi/xslf/model/geom/CosineArcTanExpression.html#evaluate(org.apache.poi.xslf.model.geom.Context)">evaluate</A></B>(<A HREF="../../../../../../../org/apache/poi/xslf/model/geom/Context.html" title="class in org.apache.poi.xslf.model.geom">Context</A> ctx)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> double</CODE></FONT></TD>
<TD><CODE><B>CosExpression.</B><B><A HREF="../../../../../../../org/apache/poi/xslf/model/geom/CosExpression.html#evaluate(org.apache.poi.xslf.model.geom.Context)">evaluate</A></B>(<A HREF="../../../../../../../org/apache/poi/xslf/model/geom/Context.html" title="class in org.apache.poi.xslf.model.geom">Context</A> ctx)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> double</CODE></FONT></TD>
<TD><CODE><B>ArcTanExpression.</B><B><A HREF="../../../../../../../org/apache/poi/xslf/model/geom/ArcTanExpression.html#evaluate(org.apache.poi.xslf.model.geom.Context)">evaluate</A></B>(<A HREF="../../../../../../../org/apache/poi/xslf/model/geom/Context.html" title="class in org.apache.poi.xslf.model.geom">Context</A> ctx)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> double</CODE></FONT></TD>
<TD><CODE><B>AdjustValue.</B><B><A HREF="../../../../../../../org/apache/poi/xslf/model/geom/AdjustValue.html#evaluate(org.apache.poi.xslf.model.geom.Context)">evaluate</A></B>(<A HREF="../../../../../../../org/apache/poi/xslf/model/geom/Context.html" title="class in org.apache.poi.xslf.model.geom">Context</A> ctx)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> double</CODE></FONT></TD>
<TD><CODE><B>AddSubtractExpression.</B><B><A HREF="../../../../../../../org/apache/poi/xslf/model/geom/AddSubtractExpression.html#evaluate(org.apache.poi.xslf.model.geom.Context)">evaluate</A></B>(<A HREF="../../../../../../../org/apache/poi/xslf/model/geom/Context.html" title="class in org.apache.poi.xslf.model.geom">Context</A> ctx)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> double</CODE></FONT></TD>
<TD><CODE><B>AddDivideExpression.</B><B><A HREF="../../../../../../../org/apache/poi/xslf/model/geom/AddDivideExpression.html#evaluate(org.apache.poi.xslf.model.geom.Context)">evaluate</A></B>(<A HREF="../../../../../../../org/apache/poi/xslf/model/geom/Context.html" title="class in org.apache.poi.xslf.model.geom">Context</A> ctx)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> double</CODE></FONT></TD>
<TD><CODE><B>AbsExpression.</B><B><A HREF="../../../../../../../org/apache/poi/xslf/model/geom/AbsExpression.html#evaluate(org.apache.poi.xslf.model.geom.Context)">evaluate</A></B>(<A HREF="../../../../../../../org/apache/poi/xslf/model/geom/Context.html" title="class in org.apache.poi.xslf.model.geom">Context</A> ctx)</CODE>
<BR>
</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>QuadToCommand.</B><B><A HREF="../../../../../../../org/apache/poi/xslf/model/geom/QuadToCommand.html#execute(java.awt.geom.GeneralPath, org.apache.poi.xslf.model.geom.Context)">execute</A></B>(java.awt.geom.GeneralPath path,
<A HREF="../../../../../../../org/apache/poi/xslf/model/geom/Context.html" title="class in org.apache.poi.xslf.model.geom">Context</A> ctx)</CODE>
<BR>
</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>PathCommand.</B><B><A HREF="../../../../../../../org/apache/poi/xslf/model/geom/PathCommand.html#execute(java.awt.geom.GeneralPath, org.apache.poi.xslf.model.geom.Context)">execute</A></B>(java.awt.geom.GeneralPath path,
<A HREF="../../../../../../../org/apache/poi/xslf/model/geom/Context.html" title="class in org.apache.poi.xslf.model.geom">Context</A> ctx)</CODE>
<BR>
Execute the command an append a segment to the specified path</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>MoveToCommand.</B><B><A HREF="../../../../../../../org/apache/poi/xslf/model/geom/MoveToCommand.html#execute(java.awt.geom.GeneralPath, org.apache.poi.xslf.model.geom.Context)">execute</A></B>(java.awt.geom.GeneralPath path,
<A HREF="../../../../../../../org/apache/poi/xslf/model/geom/Context.html" title="class in org.apache.poi.xslf.model.geom">Context</A> ctx)</CODE>
<BR>
</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>LineToCommand.</B><B><A HREF="../../../../../../../org/apache/poi/xslf/model/geom/LineToCommand.html#execute(java.awt.geom.GeneralPath, org.apache.poi.xslf.model.geom.Context)">execute</A></B>(java.awt.geom.GeneralPath path,
<A HREF="../../../../../../../org/apache/poi/xslf/model/geom/Context.html" title="class in org.apache.poi.xslf.model.geom">Context</A> ctx)</CODE>
<BR>
</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>CurveToCommand.</B><B><A HREF="../../../../../../../org/apache/poi/xslf/model/geom/CurveToCommand.html#execute(java.awt.geom.GeneralPath, org.apache.poi.xslf.model.geom.Context)">execute</A></B>(java.awt.geom.GeneralPath path,
<A HREF="../../../../../../../org/apache/poi/xslf/model/geom/Context.html" title="class in org.apache.poi.xslf.model.geom">Context</A> ctx)</CODE>
<BR>
</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>ClosePathCommand.</B><B><A HREF="../../../../../../../org/apache/poi/xslf/model/geom/ClosePathCommand.html#execute(java.awt.geom.GeneralPath, org.apache.poi.xslf.model.geom.Context)">execute</A></B>(java.awt.geom.GeneralPath path,
<A HREF="../../../../../../../org/apache/poi/xslf/model/geom/Context.html" title="class in org.apache.poi.xslf.model.geom">Context</A> ctx)</CODE>
<BR>
</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>ArcToCommand.</B><B><A HREF="../../../../../../../org/apache/poi/xslf/model/geom/ArcToCommand.html#execute(java.awt.geom.GeneralPath, org.apache.poi.xslf.model.geom.Context)">execute</A></B>(java.awt.geom.GeneralPath path,
<A HREF="../../../../../../../org/apache/poi/xslf/model/geom/Context.html" title="class in org.apache.poi.xslf.model.geom">Context</A> ctx)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.awt.geom.GeneralPath</CODE></FONT></TD>
<TD><CODE><B>Path.</B><B><A HREF="../../../../../../../org/apache/poi/xslf/model/geom/Path.html#getPath(org.apache.poi.xslf.model.geom.Context)">getPath</A></B>(<A HREF="../../../../../../../org/apache/poi/xslf/model/geom/Context.html" title="class in org.apache.poi.xslf.model.geom">Context</A> ctx)</CODE>
<BR>
Convert the internal represenation to java.awt.GeneralPath</TD>
</TR>
</TABLE>
<P>
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../org/apache/poi/xslf/model/geom/Context.html" title="class in org.apache.poi.xslf.model.geom"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../../index.html?org/apache/poi/xslf/model/geom/\class-useContext.html" target="_top"><B>FRAMES</B></A>
<A HREF="Context.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
<i>Copyright 2012 The Apache Software Foundation or
its licensors, as applicable.</i>
</BODY>
</HTML>
|
css/creative.css | OSP123/tutorials | /*!
* Start Bootstrap - Creative Bootstrap Theme (http://startbootstrap.com)
* Code licensed under the Apache License v2.0.
* For details, see http://www.apache.org/licenses/LICENSE-2.0.
*/
html,
body {
width: 100%;
height: 100%;
}
body {
font-family: Merriweather,'Helvetica Neue',Arial,sans-serif;
}
hr {
max-width: 50px;
border-color: #f05f40;
border-width: 3px;
}
hr.light {
border-color: #fff;
}
a {
color: white;
-webkit-transition: all .35s;
-moz-transition: all .35s;
transition: all .35s;
}
a:hover,
a:focus {
color: #eb3812;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: 'Open Sans','Helvetica Neue',Arial,sans-serif;
}
p {
margin-bottom: 20px;
font-size: 16px;
line-height: 1.5;
}
.bg-primary {
background-color: #f05f40;
}
.bg-dark {
color: #fff;
background-color: #222;
}
.text-faded {
color: rgba(255,255,255,.7);
}
section {
padding: 100px 0;
}
aside {
padding: 50px 0;
}
.no-padding {
padding: 0;
}
.navbar-default {
border-color: rgba(34,34,34,.05);
font-family: 'Open Sans','Helvetica Neue',Arial,sans-serif;
background-color: #fff;
-webkit-transition: all .35s;
-moz-transition: all .35s;
transition: all .35s;
}
.navbar-default .navbar-header .navbar-brand {
text-transform: uppercase;
font-family: 'Open Sans','Helvetica Neue',Arial,sans-serif;
font-weight: 700;
color: #f05f40;
}
.navbar-default .navbar-header .navbar-brand:hover,
.navbar-default .navbar-header .navbar-brand:focus {
color: #eb3812;
}
.navbar-default .nav > li>a,
.navbar-default .nav>li>a:focus {
text-transform: uppercase;
font-size: 13px;
font-weight: 700;
color: #222;
}
.navbar-default .nav > li>a:hover,
.navbar-default .nav>li>a:focus:hover {
color: #f05f40;
}
.navbar-default .nav > li.active>a,
.navbar-default .nav>li.active>a:focus {
color: #f05f40!important;
background-color: transparent;
}
.navbar-default .nav > li.active>a:hover,
.navbar-default .nav>li.active>a:focus:hover {
background-color: transparent;
}
@media(min-width:768px) {
.navbar-default {
border-color: rgba(255,255,255,.3);
background-color: transparent;
}
.navbar-default .navbar-header .navbar-brand {
color: rgba(255,255,255,.7);
}
.navbar-default .navbar-header .navbar-brand:hover,
.navbar-default .navbar-header .navbar-brand:focus {
color: #fff;
}
.navbar-default .nav > li>a,
.navbar-default .nav>li>a:focus {
color: rgba(255,255,255,.7);
}
.navbar-default .nav > li>a:hover,
.navbar-default .nav>li>a:focus:hover {
color: #fff;
}
.navbar-default.affix {
border-color: rgba(34,34,34,.05);
background-color: #fff;
}
.navbar-default.affix .navbar-header .navbar-brand {
font-size: 14px;
color: #f05f40;
}
.navbar-default.affix .navbar-header .navbar-brand:hover,
.navbar-default.affix .navbar-header .navbar-brand:focus {
color: #eb3812;
}
.navbar-default.affix .nav > li>a,
.navbar-default.affix .nav>li>a:focus {
color: #222;
}
.navbar-default.affix .nav > li>a:hover,
.navbar-default.affix .nav>li>a:focus:hover {
color: #f05f40;
}
}
header {
position: relative;
width: 100%;
min-height: auto;
text-align: center;
color: #fff;
background-image: url(../img/coding_background.jpg);
background-position: center;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
}
header .header-content {
position: relative;
width: 100%;
padding: 100px 15px;
text-align: center;
}
header .header-content .header-content-inner h1 {
margin-top: 0;
margin-bottom: 0;
text-transform: uppercase;
font-weight: 700;
}
header .header-content .header-content-inner hr {
margin: 30px auto;
}
header .header-content .header-content-inner p {
margin-bottom: 50px;
font-size: 16px;
font-weight: 300;
color: rgba(255,255,255,.7);
}
@media(min-width:768px) {
header {
min-height: 100%;
}
header .header-content {
position: absolute;
top: 50%;
padding: 0 50px;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
}
header .header-content .header-content-inner {
margin-right: auto;
margin-left: auto;
max-width: 1000px;
}
header .header-content .header-content-inner p {
margin-right: auto;
margin-left: auto;
max-width: 80%;
font-size: 18px;
background: rgba(8, 8, 8, 0.41);
}
}
.section-heading {
margin-top: 0;
}
.service-box {
margin: 50px auto 0;
max-width: 400px;
}
@media(min-width:992px) {
.service-box {
margin: 20px auto 0;
}
}
.service-box p {
margin-bottom: 0;
}
.portfolio-box {
display: block;
position: relative;
margin: 0 auto;
max-width: 650px;
}
.portfolio-box .portfolio-box-caption {
display: block;
position: absolute;
bottom: 0;
width: 100%;
height: 100%;
text-align: center;
color: #fff;
opacity: 0;
background: rgba(240,95,64,.9);
-webkit-transition: all .35s;
-moz-transition: all .35s;
transition: all .35s;
}
.portfolio-box .portfolio-box-caption .portfolio-box-caption-content {
position: absolute;
top: 50%;
width: 100%;
text-align: center;
transform: translateY(-50%);
}
.portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-category,
.portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-name {
padding: 0 15px;
font-family: 'Open Sans','Helvetica Neue',Arial,sans-serif;
}
.portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-category {
text-transform: uppercase;
font-size: 14px;
font-weight: 600;
}
.portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-name {
font-size: 18px;
}
.portfolio-box:hover .portfolio-box-caption {
opacity: 1;
}
@media(min-width:768px) {
.portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-category {
font-size: 16px;
}
.portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-name {
font-size: 22px;
}
}
.call-to-action h2 {
margin: 0 auto 20px;
}
.text-primary {
color: #f05f40;
}
.no-gutter > [class*=col-] {
padding-right: 0;
padding-left: 0;
}
.btn-default {
border-color: #fff;
color: #222;
background-color: #fff;
-webkit-transition: all .35s;
-moz-transition: all .35s;
transition: all .35s;
}
.btn-default:hover,
.btn-default:focus,
.btn-default.focus,
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
border-color: #ededed;
color: #222;
background-color: #f2f2f2;
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
background-image: none;
}
.btn-default.disabled,
.btn-default[disabled],
fieldset[disabled] .btn-default,
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled.focus,
.btn-default[disabled].focus,
fieldset[disabled] .btn-default.focus,
.btn-default.disabled:active,
.btn-default[disabled]:active,
fieldset[disabled] .btn-default:active,
.btn-default.disabled.active,
.btn-default[disabled].active,
fieldset[disabled] .btn-default.active {
border-color: #fff;
background-color: #fff;
}
.btn-default .badge {
color: #fff;
background-color: #222;
}
.btn-primary {
border-color: #f05f40;
color: #fff;
background-color: #f05f40;
-webkit-transition: all .35s;
-moz-transition: all .35s;
transition: all .35s;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
border-color: #ed431f;
color: #fff;
background-color: #ee4b28;
}
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
background-image: none;
}
.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled.focus,
.btn-primary[disabled].focus,
fieldset[disabled] .btn-primary.focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary[disabled].active,
fieldset[disabled] .btn-primary.active {
border-color: #f05f40;
background-color: #f05f40;
}
.btn-primary .badge {
color: #f05f40;
background-color: #fff;
}
.btn {
border: 0;
border-radius: 300px;
text-transform: uppercase;
font-family: 'Open Sans','Helvetica Neue',Arial,sans-serif;
font-weight: 700;
}
.btn-xl {
padding: 15px 30px;
}
::-moz-selection {
text-shadow: none;
color: #fff;
background: #222;
}
::selection {
text-shadow: none;
color: #fff;
background: #222;
}
img::selection {
color: #fff;
background: 0 0;
}
img::-moz-selection {
color: #fff;
background: 0 0;
}
body {
webkit-tap-highlight-color: #222;
}
input {
color: black;
}
/* Styling for Weather Map API */
li a {
color: white;
}
.weather_header {
background-image: url(../img/rain.jpg);
}
/* Styling for Mashable API */
.mashape_header {
background-image: url(../img/json.jpg);
}
.firebase_header {
background-image: url(../img/firebase-logo.png);
background-repeat: no-repeat;
background-size: 50%;
background-color: black;
background-position: 50% 40%;
}
.firebase_header .header-content-inner {
position: relative;
top: 5em;
}
.bg-primary-mashape {
background-color: #51B378;
}
/* Styling for OMDb API */
.omdb_header {
background-image: url(../img/json_colored.jpg);
}
.bg-primary-omdb {
background-color: #096588;
}
#output, .pretty {
color: white;
}
/* Styling for ES6 */
.es6_header {
background-image: url(../img/es6.jpg);
}
.bg-primary-es6 {
background-color: #096588;
color: white;
}
.bg-primary-es6 a {
color: #ff983b;
}
|
bonfire/_variables/em_relist.html | inputx/code-ref-doc | <!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
<html>
<head>
<title>PHPXRef 0.7.1 : Unnamed Project : Variable Reference: $em_relist</title>
<link rel="stylesheet" href="../sample.css" type="text/css">
<link rel="stylesheet" href="../sample-print.css" type="text/css" media="print">
<style id="hilight" type="text/css"></style>
<meta http-equiv="content-type" content="text/html;charset=iso-8859-1">
</head>
<body bgcolor="#ffffff" text="#000000" link="#801800" vlink="#300540" alink="#ffffff">
<table class="pagetitle" width="100%">
<tr>
<td valign="top" class="pagetitle">
[ <a href="../index.html">Index</a> ]
</td>
<td align="right" class="pagetitle">
<h2 style="margin-bottom: 0px">PHP Cross Reference of Unnamed Project</h2>
</td>
</tr>
</table>
<!-- Generated by PHPXref 0.7.1 at Thu Oct 23 18:57:41 2014 -->
<!-- PHPXref (c) 2000-2010 Gareth Watts - gareth@omnipotent.net -->
<!-- http://phpxref.sourceforge.net/ -->
<script src="../phpxref.js" type="text/javascript"></script>
<script language="JavaScript" type="text/javascript">
<!--
ext='.html';
relbase='../';
subdir='_variables';
filename='index.html';
cookiekey='phpxref';
handleNavFrame(relbase, subdir, filename);
logVariable('em_relist');
// -->
</script>
<script language="JavaScript" type="text/javascript">
if (gwGetCookie('xrefnav')=='off')
document.write('<p class="navlinks">[ <a href="javascript:navOn()">Show Explorer<\/a> ]<\/p>');
else
document.write('<p class="navlinks">[ <a href="javascript:navOff()">Hide Explorer<\/a> ]<\/p>');
</script>
<noscript>
<p class="navlinks">
[ <a href="../nav.html" target="_top">Show Explorer</a> ]
[ <a href="index.html" target="_top">Hide Navbar</a> ]
</p>
</noscript>
[<a href="../index.html">Top level directory</a>]<br>
<script language="JavaScript" type="text/javascript">
<!--
document.writeln('<table align="right" class="searchbox-link"><tr><td><a class="searchbox-link" href="javascript:void(0)" onMouseOver="showSearchBox()">Search</a><br>');
document.writeln('<table border="0" cellspacing="0" cellpadding="0" class="searchbox" id="searchbox">');
document.writeln('<tr><td class="searchbox-title">');
document.writeln('<a class="searchbox-title" href="javascript:showSearchPopup()">Search History +</a>');
document.writeln('<\/td><\/tr>');
document.writeln('<tr><td class="searchbox-body" id="searchbox-body">');
document.writeln('<form name="search" style="margin:0px; padding:0px" onSubmit=\'return jump()\'>');
document.writeln('<a class="searchbox-body" href="../_classes/index.html">Class<\/a>: ');
document.writeln('<input type="text" size=10 value="" name="classname"><br>');
document.writeln('<a id="funcsearchlink" class="searchbox-body" href="../_functions/index.html">Function<\/a>: ');
document.writeln('<input type="text" size=10 value="" name="funcname"><br>');
document.writeln('<a class="searchbox-body" href="../_variables/index.html">Variable<\/a>: ');
document.writeln('<input type="text" size=10 value="" name="varname"><br>');
document.writeln('<a class="searchbox-body" href="../_constants/index.html">Constant<\/a>: ');
document.writeln('<input type="text" size=10 value="" name="constname"><br>');
document.writeln('<a class="searchbox-body" href="../_tables/index.html">Table<\/a>: ');
document.writeln('<input type="text" size=10 value="" name="tablename"><br>');
document.writeln('<input type="submit" class="searchbox-button" value="Search">');
document.writeln('<\/form>');
document.writeln('<\/td><\/tr><\/table>');
document.writeln('<\/td><\/tr><\/table>');
// -->
</script>
<div id="search-popup" class="searchpopup"><p id="searchpopup-title" class="searchpopup-title">title</p><div id="searchpopup-body" class="searchpopup-body">Body</div><p class="searchpopup-close"><a href="javascript:gwCloseActive()">[close]</a></p></div>
<h3>Variable Cross Reference</h3>
<h2><a href="index.html#em_relist">$em_relist</a></h2>
<b>Defined at:</b><ul>
<li><a href="../bonfire/helpers/markdown_helper.php.html">/bonfire/helpers/markdown_helper.php</A> -> <a href="../bonfire/helpers/markdown_helper.php.source.html#l1143"> line 1143</A></li>
<li><a href="../bonfire/helpers/markdown_helper.php.html">/bonfire/helpers/markdown_helper.php</A> -> <a href="../bonfire/helpers/markdown_helper.php.source.html#l2590"> line 2590</A></li>
</ul>
<br><b>Referenced 3 times:</b><ul>
<li><a href="../bonfire/helpers/markdown_helper.php.html">/bonfire/helpers/markdown_helper.php</a> -> <a href="../bonfire/helpers/markdown_helper.php.source.html#l1143"> line 1143</a></li>
<li><a href="../bonfire/helpers/markdown_helper.php.html">/bonfire/helpers/markdown_helper.php</a> -> <a href="../bonfire/helpers/markdown_helper.php.source.html#l1165"> line 1165</a></li>
<li><a href="../bonfire/helpers/markdown_helper.php.html">/bonfire/helpers/markdown_helper.php</a> -> <a href="../bonfire/helpers/markdown_helper.php.source.html#l2590"> line 2590</a></li>
</ul>
<!-- A link to the phpxref site in your customized footer file is appreciated ;-) -->
<br><hr>
<table width="100%">
<tr><td>Generated: Thu Oct 23 18:57:41 2014</td>
<td align="right"><i>Cross-referenced by <a href="http://phpxref.sourceforge.net/">PHPXref 0.7.1</a></i></td>
</tr>
</table>
</body></html>
|
src/app/subscription/template/subscribe.html | ColdrickSotK/storyboard-webclient | <span ng-if="!enabled && !resolving"
class="text-muted">
<i ng-if="subscribed"
class="fa fa-star"></i>
<i ng-if="!subscribed"
class="fa fa-star-o"></i>
</span>
<span ng-if="resolving"
class="text-muted">
<i class="fa fa-spin fa-refresh"></i>
</span>
<a ng-if="enabled && !resolving"
href=""
title="Subscribe"
ng-click="toggleSubscribe()">
<i ng-if="subscribed"
class="fa fa-star"></i>
<i ng-if="!subscribed"
class="fa fa-star-o"></i>
</a>
|
2018.3.3/apidocs/org/wildfly/swarm/infinispan/detect/package-use.html | wildfly-swarm/wildfly-swarm-javadocs | <!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_151) on Thu Mar 08 14:17:44 MST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Package org.wildfly.swarm.infinispan.detect (BOM: * : All 2018.3.3 API)</title>
<meta name="date" content="2018-03-08">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Package org.wildfly.swarm.infinispan.detect (BOM: * : All 2018.3.3 API)";
}
}
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 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 class="aboutLanguage">WildFly Swarm API, 2018.3.3</div>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/wildfly/swarm/infinispan/detect/package-use.html" target="_top">Frames</a></li>
<li><a href="package-use.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h1 title="Uses of Package org.wildfly.swarm.infinispan.detect" class="title">Uses of Package<br>org.wildfly.swarm.infinispan.detect</h1>
</div>
<div class="contentContainer">No usage of org.wildfly.swarm.infinispan.detect</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 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 class="aboutLanguage">WildFly Swarm API, 2018.3.3</div>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/wildfly/swarm/infinispan/detect/package-use.html" target="_top">Frames</a></li>
<li><a href="package-use.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 © 2018 <a href="http://www.jboss.org">JBoss by Red Hat</a>. All rights reserved.</small></p>
</body>
</html>
|
2016.10.0/apidocs/org/wildfly/swarm/config/management/class-use/ManagementOperationsServiceConsumer.html | wildfly-swarm/wildfly-swarm-javadocs | <!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_60-ea) on Mon Oct 03 10:36:48 EDT 2016 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Interface org.wildfly.swarm.config.management.ManagementOperationsServiceConsumer (Public javadocs 2016.10.0 API)</title>
<meta name="date" content="2016-10-03">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Interface org.wildfly.swarm.config.management.ManagementOperationsServiceConsumer (Public javadocs 2016.10.0 API)";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../org/wildfly/swarm/config/management/ManagementOperationsServiceConsumer.html" title="interface in org.wildfly.swarm.config.management">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../../../../../../overview-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 class="aboutLanguage">WildFly Swarm API, 2016.10.0</div>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?org/wildfly/swarm/config/management/class-use/ManagementOperationsServiceConsumer.html" target="_top">Frames</a></li>
<li><a href="ManagementOperationsServiceConsumer.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 org.wildfly.swarm.config.management.ManagementOperationsServiceConsumer" class="title">Uses of Interface<br>org.wildfly.swarm.config.management.ManagementOperationsServiceConsumer</h2>
</div>
<div class="classUseContainer">
<ul class="blockList">
<li class="blockList">
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation">
<caption><span>Packages that use <a href="../../../../../../org/wildfly/swarm/config/management/ManagementOperationsServiceConsumer.html" title="interface in org.wildfly.swarm.config.management">ManagementOperationsServiceConsumer</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.wildfly.swarm.config">org.wildfly.swarm.config</a></td>
<td class="colLast"> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="#org.wildfly.swarm.config.management">org.wildfly.swarm.config.management</a></td>
<td class="colLast"> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="org.wildfly.swarm.config">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../org/wildfly/swarm/config/management/ManagementOperationsServiceConsumer.html" title="interface in org.wildfly.swarm.config.management">ManagementOperationsServiceConsumer</a> in <a href="../../../../../../org/wildfly/swarm/config/package-summary.html">org.wildfly.swarm.config</a></h3>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../../org/wildfly/swarm/config/package-summary.html">org.wildfly.swarm.config</a> with parameters of type <a href="../../../../../../org/wildfly/swarm/config/management/ManagementOperationsServiceConsumer.html" title="interface in org.wildfly.swarm.config.management">ManagementOperationsServiceConsumer</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/wildfly/swarm/config/ManagementCoreService.html" title="type parameter in ManagementCoreService">T</a></code></td>
<td class="colLast"><span class="typeNameLabel">ManagementCoreService.</span><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/ManagementCoreService.html#managementOperationsService-org.wildfly.swarm.config.management.ManagementOperationsServiceConsumer-">managementOperationsService</a></span>(<a href="../../../../../../org/wildfly/swarm/config/management/ManagementOperationsServiceConsumer.html" title="interface in org.wildfly.swarm.config.management">ManagementOperationsServiceConsumer</a> consumer)</code>
<div class="block">Execution of management operations.</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="org.wildfly.swarm.config.management">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../org/wildfly/swarm/config/management/ManagementOperationsServiceConsumer.html" title="interface in org.wildfly.swarm.config.management">ManagementOperationsServiceConsumer</a> in <a href="../../../../../../org/wildfly/swarm/config/management/package-summary.html">org.wildfly.swarm.config.management</a></h3>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../../org/wildfly/swarm/config/management/package-summary.html">org.wildfly.swarm.config.management</a> that return <a href="../../../../../../org/wildfly/swarm/config/management/ManagementOperationsServiceConsumer.html" title="interface in org.wildfly.swarm.config.management">ManagementOperationsServiceConsumer</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>default <a href="../../../../../../org/wildfly/swarm/config/management/ManagementOperationsServiceConsumer.html" title="interface in org.wildfly.swarm.config.management">ManagementOperationsServiceConsumer</a><<a href="../../../../../../org/wildfly/swarm/config/management/ManagementOperationsServiceConsumer.html" title="type parameter in ManagementOperationsServiceConsumer">T</a>></code></td>
<td class="colLast"><span class="typeNameLabel">ManagementOperationsServiceConsumer.</span><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/management/ManagementOperationsServiceConsumer.html#andThen-org.wildfly.swarm.config.management.ManagementOperationsServiceConsumer-">andThen</a></span>(<a href="../../../../../../org/wildfly/swarm/config/management/ManagementOperationsServiceConsumer.html" title="interface in org.wildfly.swarm.config.management">ManagementOperationsServiceConsumer</a><<a href="../../../../../../org/wildfly/swarm/config/management/ManagementOperationsServiceConsumer.html" title="type parameter in ManagementOperationsServiceConsumer">T</a>> after)</code> </td>
</tr>
</tbody>
</table>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../../org/wildfly/swarm/config/management/package-summary.html">org.wildfly.swarm.config.management</a> with parameters of type <a href="../../../../../../org/wildfly/swarm/config/management/ManagementOperationsServiceConsumer.html" title="interface in org.wildfly.swarm.config.management">ManagementOperationsServiceConsumer</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>default <a href="../../../../../../org/wildfly/swarm/config/management/ManagementOperationsServiceConsumer.html" title="interface in org.wildfly.swarm.config.management">ManagementOperationsServiceConsumer</a><<a href="../../../../../../org/wildfly/swarm/config/management/ManagementOperationsServiceConsumer.html" title="type parameter in ManagementOperationsServiceConsumer">T</a>></code></td>
<td class="colLast"><span class="typeNameLabel">ManagementOperationsServiceConsumer.</span><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/management/ManagementOperationsServiceConsumer.html#andThen-org.wildfly.swarm.config.management.ManagementOperationsServiceConsumer-">andThen</a></span>(<a href="../../../../../../org/wildfly/swarm/config/management/ManagementOperationsServiceConsumer.html" title="interface in org.wildfly.swarm.config.management">ManagementOperationsServiceConsumer</a><<a href="../../../../../../org/wildfly/swarm/config/management/ManagementOperationsServiceConsumer.html" title="type parameter in ManagementOperationsServiceConsumer">T</a>> after)</code> </td>
</tr>
</tbody>
</table>
</li>
</ul>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../org/wildfly/swarm/config/management/ManagementOperationsServiceConsumer.html" title="interface in org.wildfly.swarm.config.management">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../../../../../../overview-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 class="aboutLanguage">WildFly Swarm API, 2016.10.0</div>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?org/wildfly/swarm/config/management/class-use/ManagementOperationsServiceConsumer.html" target="_top">Frames</a></li>
<li><a href="ManagementOperationsServiceConsumer.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 © 2016 <a href="http://www.jboss.org">JBoss by Red Hat</a>. All rights reserved.</small></p>
</body>
</html>
|
core/src/main/javascript/google/registry/ui/css/forms.css | google/nomulus | form.set,
form.item,
div.set,
div.item {
width: 700px;
}
.set table,
.item table {
width: 100%;
border-collapse: separate;
border-spacing: 0;
}
/* Going to play some games here to get section leads to float left,
* followed by their next rows in floated right column. */
.item table,
.set table {
padding-top: 2em;
margin-top: 1em;
border-top: solid 1px #ebebeb;
}
.set tr,
.item tr {
margin: 0;
padding: 0;
min-height: 28px;
}
.set td,
.item td {
padding: 0.5em 0;
}
.item tr.section-lead th h2,
.item tr.section-lead th h3 {
font-size: 1em;
font-weight: bold;
color: #15c;
}
tr.subsection h3::first-letter {
text-transform: capitalize;
}
.set td:first-child,
.item td:first-child {
width: 260px;
}
.set td:first-child span.description,
.item td:first-child span.description {
width: 170px;
}
.description ol {
list-style-type: decimal;
margin-left: 2em;
}
/* Setting groups and labels. */
.set .kd-settings-pane-section td {
border-bottom: solid 1px #ebebeb;
}
td.setting-group-compact {
padding-left: 0.5em;
}
.setting-group-compact div {
line-height: 140%;
}
.item label {
font-weight: bold;
}
.set label + input {
margin-left: 1em;
}
.kd-settings-pane-section td label.setting-label {
padding-top: 0.5em;
}
td.label {
width: 70%;
}
/* Compact sequence of labels. */
.setting label + label {
margin-left: 2em;
}
form label,
.setting-label {
line-height: 13px;
margin-bottom: 5px;
}
.setting label {
display: inline-block;
font-weight: normal;
margin-right: 1em;
vertical-align: top;
}
div.checkbox-with-label {
margin-bottom: 1em;
}
/* Controls */
.set input:not([type="submit"]),
.item input:not([type="submit"]) {
width: 250px;
padding: 0.5em;
}
.item input[type='checkbox'],
.item input[type='radio'] {
width: auto;
}
input[readonly] {
border: solid 1px white;
margin-left: 0.5em;
padding-top: 0 !important;
padding-left: 0 !important;
}
.setting input[type=radio] {
}
.setting input[type=radio],
.setting input[type=checkbox] {
position: relative;
top: -3px;
}
/**
* Consistent top space in second column items. Input elements need to
* switch from using margin to padding when they're edit toggled, so that
* the text doesn't move. The other elements are just defined here for
* consistency.
* @see td.domain-registrar-contacts
*/
input[readonly],
td.setting p {
margin-top: 0.5em;
margin-left: 0.5em;
}
.item button[disabled] {
display: none;
}
div.checkbox-with-label input[type='checkbox'],
div.checkbox-with-label input[type='checkbox'] + label {
display: inline-block;
}
/*
* 3 line street has just inputs in a row
* @see td padding-bottom
*/
.setting input + input,
.setting div {
margin-top: 1em;
}
.setting div {
margin-top: 0.5em;
}
.setting input[type='checkbox'] {
display: inline;
}
.setting input + button,
.setting-item-list {
margin-left: 0.5em;
}
|
docs/api/org/springframework/transaction/class-use/CannotCreateTransactionException.html | mattxia/spring-2.5-analysis | <!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_03) on Mon Nov 19 21:41:23 CET 2007 -->
<TITLE>
Uses of Class org.springframework.transaction.CannotCreateTransactionException (Spring Framework API 2.5)
</TITLE>
<META NAME="date" CONTENT="2007-11-19">
<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 org.springframework.transaction.CannotCreateTransactionException (Spring Framework API 2.5)";
}
}
</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="../../../../org/springframework/transaction/CannotCreateTransactionException.html" title="class in org.springframework.transaction"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<a href="http://www.springframework.org/" target="_top">The Spring Framework</a></EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../index.html?org/springframework/transaction/\class-useCannotCreateTransactionException.html" target="_top"><B>FRAMES</B></A>
<A HREF="CannotCreateTransactionException.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<CENTER>
<H2>
<B>Uses of Class<br>org.springframework.transaction.CannotCreateTransactionException</B></H2>
</CENTER>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
Packages that use <A HREF="../../../../org/springframework/transaction/CannotCreateTransactionException.html" title="class in org.springframework.transaction">CannotCreateTransactionException</A></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="#org.springframework.transaction"><B>org.springframework.transaction</B></A></TD>
<TD>Exception hierarchy for Spring's transaction infrastructure,
independent of any specific transaction management system. </TD>
</TR>
</TABLE>
<P>
<A NAME="org.springframework.transaction"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
Uses of <A HREF="../../../../org/springframework/transaction/CannotCreateTransactionException.html" title="class in org.springframework.transaction">CannotCreateTransactionException</A> in <A HREF="../../../../org/springframework/transaction/package-summary.html">org.springframework.transaction</A></FONT></TH>
</TR>
</TABLE>
<P>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left" COLSPAN="2">Subclasses of <A HREF="../../../../org/springframework/transaction/CannotCreateTransactionException.html" title="class in org.springframework.transaction">CannotCreateTransactionException</A> in <A HREF="../../../../org/springframework/transaction/package-summary.html">org.springframework.transaction</A></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> class</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/springframework/transaction/NestedTransactionNotSupportedException.html" title="class in org.springframework.transaction">NestedTransactionNotSupportedException</A></B></CODE>
<BR>
Exception thrown when attempting to work with a nested transaction
but nested transactions are not supported by the underlying backend.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> class</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/springframework/transaction/TransactionSuspensionNotSupportedException.html" title="class in org.springframework.transaction">TransactionSuspensionNotSupportedException</A></B></CODE>
<BR>
Exception thrown when attempting to suspend an existing transaction
but transaction suspension is not supported by the underlying backend.</TD>
</TR>
</TABLE>
<P>
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../org/springframework/transaction/CannotCreateTransactionException.html" title="class in org.springframework.transaction"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<a href="http://www.springframework.org/" target="_top">The Spring Framework</a></EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../index.html?org/springframework/transaction/\class-useCannotCreateTransactionException.html" target="_top"><B>FRAMES</B></A>
<A HREF="CannotCreateTransactionException.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
<i>Copyright © 2002-2007 <a href=http://www.springframework.org/ target=_top>The Spring Framework</a>.</i>
</BODY>
</HTML>
|
web/src/templates/conf/preferences.html | frhumanes/consulting | {% extends "conf/includes/base.html" %}
{% load i18n messages %}
{% block left_panel %}
{% comment %} {% include "cal/includes/events/calendar.html" %} {% endcomment %}
{% endblock %}
{% block right_panel %}
<!-- Button Toolbar -->
<div class="row">
<div class="span5">
<div class="btn-toolbar" style="margin-bottom: 9px">
<div class="btn-group">
<a class="btn btn-primary" href="{% url cal.views.main %}">{% trans "Calendar" %}</a>
<a class="btn btn-primary" href="{% url cal.list_slot_type %}">{% trans "Preference types" %}</a>
</div>
<div class="btn-group">
<a class="btn btn-primary" href="#"><i class="icon-user icon-white"></i> {% trans "Absences" %}</a>
<a class="btn btn-primary dropdown-toggle" data-toggle="dropdown" href="#"><b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="{% url cal.list_vacation %}"><i class="icon-plane"></i> {% trans "Vacations" %}</a></li>
<li><a href="{% url cal.list_event %}"><i class="icon-calendar"></i> {% trans "Events" %}</a></li>
</ul>
</div>
</div>
</div>
</div>
{% endblock %}
{% comment %}
{% extends "cal/includes/base.html" %}
<!-- ... -->
{% block content %}
<a href="{% url cal.views.main year|add:'-3' %}"><< Prev</a>
<a href="{% url cal.views.main year|add:'3' %}">Next >></a>
{% for year, months in years %}
<div class="clear"></div>
<h4>{{ year }}</h4>
{% for month in months %}
<div class=
{% if month.current %}"current"{% endif %}
{% if not month.current %}"month"{% endif %} >
{% if month.entry %}<b>{% endif %}
<a href="{% url cal.views.month year month.n %}">{{ month.name }}</a>
{% if month.entry %}</b>{% endif %}
</div>
{% if month.n == 6 %}<br />{% endif %}
{% endfor %}
{% endfor %}
{% endblock %}
{% endcomment %}
|
result.html | rozentill/AceVision | <!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- 上述3个meta标签*必须*放在最前面,任何其他内容都*必须*跟随其后! -->
<title>Search Result</title>
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="//cdn.bootcss.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="//cdn.bootcss.com/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<h1>你好,世界!</h1>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="//cdn.bootcss.com/jquery/1.11.3/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="js/bootstrap.min.js"></script>
</body>
</html>
|
_includes/head.html | SaintPeterCalvaryBaptistChurch/SaintPeterCalvaryBaptistChurch.github.io | <head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="{{ site.description }}">
<title>{% if page.title %}{{ page.title }} - {{ site.title }}{% else %}{{ site.title }}{% endif %}</title>
<link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}">
<!-- Bootstrap Core CSS -->
<link rel="stylesheet" href="{{ "/css/bootstrap.min.css" | prepend: site.baseurl }}">
<!-- Custom CSS -->
<link rel="stylesheet" href="{{ "/css/clean-blog.css" | prepend: site.baseurl }}">
<!-- Pygments Github CSS -->
<link rel="stylesheet" href="{{ "/css/syntax.css" | prepend: site.baseurl }}">
<!-- Custom Fonts -->
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href='//fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
<link href='//fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800' rel='stylesheet' type='text/css'>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
|
first.html | masterofdaemon/geo-cordova-meteor | <head>
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script>
<title>first</title>
</head>
<body>
<h2>Welcome</h2>
{{> home}}
</body>
<template name="hello">
<article>
<p>Finding your location: <span id="status">checking...</span></p>
</article>
<p>latitude: {{latitude}}</p>
<p>longitude: {{longitude}}</p>
<p>speed: {{speed}}</p>
<p>altitude: {{altitude}}</p>
</template>
<template name="home">
<h1>Map of locations</h1>
{{> map}}
<h1>Data</h1>
</template>
<template name="map">
<div id="map">
<div id="map-canvas"></div>
</div>
</template> |
libs/netmera-mobile-2.3.0-javadoc/com/netmera/mobile/NetmeraJavascriptInterface.html | tasomaniac/DevFest | <!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_33) on Sat Oct 05 14:38:10 VET 2013 -->
<TITLE>
NetmeraJavascriptInterface
</TITLE>
<META NAME="date" CONTENT="2013-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="NetmeraJavascriptInterface";
}
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<HR>
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/NetmeraJavascriptInterface.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../com/netmera/mobile/NetmeraIOSPush.html" title="class in com.netmera.mobile"><B>PREV CLASS</B></A>
<A HREF="../../../com/netmera/mobile/NetmeraLocalSession.html" title="class in com.netmera.mobile"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../index.html?com/netmera/mobile/NetmeraJavascriptInterface.html" target="_top"><B>FRAMES</B></A>
<A HREF="NetmeraJavascriptInterface.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: NESTED | FIELD | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<!-- ======== START OF CLASS DATA ======== -->
<H2>
<FONT SIZE="-1">
com.netmera.mobile</FONT>
<BR>
Class NetmeraJavascriptInterface</H2>
<PRE>
java.lang.Object
<IMG SRC="../../../resources/inherit.gif" ALT="extended by "><B>com.netmera.mobile.NetmeraJavascriptInterface</B>
</PRE>
<HR>
<DL>
<DT><PRE>public class <B>NetmeraJavascriptInterface</B><DT>extends java.lang.Object</DL>
</PRE>
<P>
This class is used to inject the given Java object into rich push WebView.
The object is injected into the JavaScript context of the received rich push
notification, using the supplied name. This allows the Java object's methods
to be accessed from JavaScript
<P>
<P>
<HR>
<P>
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<A NAME="constructor_summary"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Constructor Summary</B></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><B><A HREF="../../../com/netmera/mobile/NetmeraJavascriptInterface.html#NetmeraJavascriptInterface(java.lang.Object, java.lang.String)">NetmeraJavascriptInterface</A></B>(java.lang.Object object,
java.lang.String name)</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> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../com/netmera/mobile/NetmeraJavascriptInterface.html#getName()">getName</A></B>()</CODE>
<BR>
</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="../../../com/netmera/mobile/NetmeraJavascriptInterface.html#getObject()">getObject</A></B>()</CODE>
<BR>
</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="../../../com/netmera/mobile/NetmeraJavascriptInterface.html#setName(java.lang.String)">setName</A></B>(java.lang.String name)</CODE>
<BR>
</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="../../../com/netmera/mobile/NetmeraJavascriptInterface.html#setObject(java.lang.Object)">setObject</A></B>(java.lang.Object object)</CODE>
<BR>
</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, 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="NetmeraJavascriptInterface(java.lang.Object, java.lang.String)"><!-- --></A><H3>
NetmeraJavascriptInterface</H3>
<PRE>
public <B>NetmeraJavascriptInterface</B>(java.lang.Object object,
java.lang.String name)</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="getName()"><!-- --></A><H3>
getName</H3>
<PRE>
public java.lang.String <B>getName</B>()</PRE>
<DL>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="setName(java.lang.String)"><!-- --></A><H3>
setName</H3>
<PRE>
public void <B>setName</B>(java.lang.String name)</PRE>
<DL>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="getObject()"><!-- --></A><H3>
getObject</H3>
<PRE>
public java.lang.Object <B>getObject</B>()</PRE>
<DL>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="setObject(java.lang.Object)"><!-- --></A><H3>
setObject</H3>
<PRE>
public void <B>setObject</B>(java.lang.Object object)</PRE>
<DL>
<DD><DL>
</DL>
</DD>
</DL>
<!-- ========= END OF CLASS DATA ========= -->
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/NetmeraJavascriptInterface.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../com/netmera/mobile/NetmeraIOSPush.html" title="class in com.netmera.mobile"><B>PREV CLASS</B></A>
<A HREF="../../../com/netmera/mobile/NetmeraLocalSession.html" title="class in com.netmera.mobile"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../index.html?com/netmera/mobile/NetmeraJavascriptInterface.html" target="_top"><B>FRAMES</B></A>
<A HREF="NetmeraJavascriptInterface.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: NESTED | FIELD | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
</BODY>
</HTML>
|
pages/contactMe.html | iwazzaaby/iwazzaaby.github.io | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>contact form</title>
</head>
<body>
<div class="container">
<section id="contact">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">Contact Me</h2>
<h3 class="section-subheading text-muted">I'll get to you ASAP.</h3>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<form name="sentMessage" id="contactForm" action="http://formspree.io/Rios.1998.Max@gmail.com"
method="POST">
<div class="row">
<div class="col-md-6">
<div class="form-group">
<input type="text" class="form-control" placeholder="Your Name *" id="name" required data-validation-required-message="Please enter your name.">
<p class="help-block text-danger"></p>
</div>
<div class="form-group">
<input type="email" class="form-control" placeholder="Your Email *" id="email" required data-validation-required-message="Please enter your email address.">
<p class="help-block text-danger"></p>
</div>
<div class="form-group">
<input type="tel" class="form-control" placeholder="Your Phone *" id="phone" required data-validation-required-message="Please enter your phone number.">
<p class="help-block text-danger"></p>
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<textarea class="form-control" placeholder="Your Message *" id="message" required data-validation-required-message="Please enter a message."></textarea>
<p class="help-block text-danger"></p>
</div>
</div>
<div class="clearfix"></div>
<div class="col-lg-12 text-center">
<div id="success"></div>
<button type="Submit" class="btn btn-xl">Send Message</button>
</form>
</div>
</div>
</form>
</div>
</div>
</div>
</section>
</div>
</body>
</html>
|
spikex-core/conf/template/email.html | clidev/spike.x | <!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 name="viewport" content="width=device-width" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>{{@title}}</title>
<style>
/* https://github.com/leemunroe/html-email-template */
* {
margin: 0;
padding: 0;
font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
font-size: 100%;
line-height: 1.6;
}
img {
max-width: 100%;
}
body {
-webkit-font-smoothing: antialiased;
-webkit-text-size-adjust: none;
width: 100%!important;
height: 100%;
}
a {
color: #348eda;
}
.btn-primary {
text-decoration: none;
color: #FFF;
background-color: #348eda;
border: solid #348eda;
border-width: 10px 20px;
line-height: 2;
font-weight: bold;
margin-right: 10px;
text-align: center;
cursor: pointer;
display: inline-block;
border-radius: 25px;
}
.btn-secondary {
text-decoration: none;
color: #FFF;
background-color: #aaa;
border: solid #aaa;
border-width: 10px 20px;
line-height: 2;
font-weight: bold;
margin-right: 10px;
text-align: center;
cursor: pointer;
display: inline-block;
border-radius: 25px;
}
.last {
margin-bottom: 0;
}
.first {
margin-top: 0;
}
.padding {
padding: 10px 0;
}
table.body-wrap {
width: 100%;
padding: 20px;
}
table.body-wrap .container {
border: 1px solid #f0f0f0;
}
table.footer-wrap {
width: 100%;
clear: both!important;
}
.footer-wrap .container p {
font-size: 12px;
color: #666;
}
table.footer-wrap a {
color: #999;
}
h1, h2, h3 {
font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
line-height: 1.1;
margin-bottom: 15px;
color: #000;
margin: 40px 0 10px;
line-height: 1.2;
font-weight: 200;
}
h1 {
font-size: 36px;
}
h2 {
font-size: 28px;
}
h3 {
font-size: 22px;
}
p, ul, ol {
margin-bottom: 10px;
font-weight: normal;
font-size: 14px;
}
ul li, ol li {
margin-left: 5px;
list-style-position: inside;
}
.alert-success {
color: #468847;
}
.alert-warning {
color: #8a6d3b;
}
.alert-danger {
color: #b94a48;
}
.alert-icon {
width: 48px;
}
.container {
display: block!important;
max-width: 768px!important;
margin: 0 auto!important; /* makes it centered */
clear: both!important;
}
.body-wrap .container {
padding: 20px;
}
.content {
max-width: 768px;
margin: 0 auto;
display: block;
}
.content table {
width: 100%;
}
</style>
</head>
<body bgcolor="#f6f6f6">
<table class="body-wrap">
<tr>
<td></td>
{{#@alert-success}}
<td class="container" bgcolor="#dff0d8">
<!-- content -->
<div class="content">
<table>
<tr>
<td class="alert-icon">
<img alt="Success!" src="cid:success-small" style="vertical-align: middle">
</td>
<td class="alert-success" align="left">
<b>
{{@title}}
</b>
</td>
</tr>
</table>
</div>
<!-- /content -->
</td>
{{/@alert-success}}
{{#@alert-warning}}
<td class="container" bgcolor="#fcf8e3">
<!-- content -->
<div class="content">
<table>
<tr>
<td class="alert-icon">
<img alt="Warning!" src="cid:warning-small" style="vertical-align: middle">
</td>
<td class="alert-warning" align="left">
<b>
{{@title}}
</b>
</td>
</tr>
</table>
</div>
<!-- /content -->
</td>
{{/@alert-warning}}
{{#@alert-danger}}
<td class="container" bgcolor="#f2dede">
<!-- content -->
<div class="content">
<table>
<tr>
<td class="alert-icon">
<img alt="Danger!" src="cid:danger-small" style="vertical-align: middle">
</td>
<td class="alert-danger" align="left">
<b>
{{@title}}
</b>
</td>
</tr>
</table>
</div>
<!-- /content -->
</td>
{{/@alert-danger}}
</tr>
</table>
<!-- body -->
<table class="body-wrap">
<tr>
<td></td>
<td class="container" bgcolor="#FFFFFF">
<!-- content -->
<div class="content">
<table>
<tr>
<td>
<p>
<b>Event information</b>
</p>
<ul>
<li>Source: {{@source}}</li>
<li>Location: {{@location}}</li>
<li>Timestamp: {{@timestamp}}</li>
<li>Type: {{@type}}</li>
<li>Priority: {{@priority}}</li>
<li>Tags: {{@tags}}</li>
<li>UUID: {{@id}}</li>
</ul>
<p>
<b>Details</b>
</p>
<p>
{{@message}}
</p>
</td>
</tr>
</table>
</div>
<!-- /content -->
</td>
<td></td>
</tr>
</table>
<!-- /body -->
<!-- footer -->
<table class="footer-wrap">
<tr>
<td></td>
<td class="container">
<!-- content -->
<div class="content">
<table>
<tr>
<td align="right">
This email was generated by
</td>
<td align="left">
<a href="http://www.spikex.io"><img alt="Spike.X" src="cid:spikex-logo" style="vertical-align: middle"/></a>
</td>
</tr>
</table>
</div>
<!-- /content -->
</td>
<td></td>
</tr>
</table>
<!-- /footer -->
</body>
</html> |
discovery-frontend/src/app/dashboard/component/create-dashboard/create-board-ds-relation.component.html | metatron-app/metatron-discovery | <!--
~ 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="ddp-association">
<span class="ddp-label">{{ 'msg.board.create.association-key' | translate }}</span>
<!-- box data -->
<div class="ddp-box-data">
<div class="ddp-bar"></div>
<div class="ddp-box-name ddp-fleft">
{{relation.ui.source.name}}
<span *ngIf="relation.ui.sourceField"> | <strong>{{relation.ui.sourceField.name}}</strong> </span>
</div>
<div class="ddp-box-name ddp-fright">
{{relation.ui.target.name}}
<span *ngIf="relation.ui.targetField"> | <strong>{{relation.ui.targetField.name}}</strong> </span>
</div>
</div>
<!-- //box data -->
<!-- buttons -->
<div class="ddp-buttons">
<a (click)="editRelation()" href="javascript:" class="ddp-btn-delete-b"></a>
<a (click)="deleteRelation()" href="javascript:" class="ddp-btn-edit-b"></a>
</div>
<!-- //buttons -->
</div>
|
public/docs/en/2.9.0rc1/guide_upgrading_windows-phone_index.md.html | csantanapr/cordova-blog | <!DOCTYPE html>
<!--
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.
--><html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=no, width=device-width">
<meta name="generator" content="joDoc">
<title>Apache Cordova API Documentation</title>
<link rel="stylesheet" type="text/css" href="index.css">
<link rel="stylesheet" type="text/css" href="mobile.css" media="only screen and (max-device-width: 1024px)">
<link rel="stylesheet" type="text/css" href="prettify/prettify.css">
</head>
<body>
<div id="header">
<h1><a href="index.html">Apache <strong>Cordova</strong> Documentation</a></h1>
<small>
<select><optgroup label="English" value="en">
<option value="edge">edge</option>
<option selected value="2.9.0rc1">2.9.0rc1</option>
<option value="2.9.0">2.9.0</option>
<option value="2.8.0">2.8.0</option>
<option value="2.7.0rc1">2.7.0rc1</option>
<option value="2.7.0">2.7.0</option>
<option value="2.6.0rc1">2.6.0rc1</option>
<option value="2.6.0">2.6.0</option>
<option value="2.5.0rc1">2.5.0rc1</option>
<option value="2.5.0">2.5.0</option>
<option value="2.4.0rc1">2.4.0rc1</option>
<option value="2.4.0">2.4.0</option>
<option value="2.3.0rc2">2.3.0rc2</option>
<option value="2.3.0rc1">2.3.0rc1</option>
<option value="2.3.0">2.3.0</option>
<option value="2.2.0rc2">2.2.0rc2</option>
<option value="2.2.0rc1">2.2.0rc1</option>
<option value="2.2.0">2.2.0</option>
<option value="2.1.0rc2">2.1.0rc2</option>
<option value="2.1.0rc1">2.1.0rc1</option>
<option value="2.1.0">2.1.0</option>
<option value="2.0.0rc1">2.0.0rc1</option>
<option value="2.0.0">2.0.0</option>
<option value="1.9.0rc1">1.9.0rc1</option>
<option value="1.9.0">1.9.0</option>
<option value="1.8.1">1.8.1</option>
<option value="1.8.0rc1">1.8.0rc1</option>
<option value="1.8.0">1.8.0</option>
<option value="1.7.0rc1">1.7.0rc1</option>
<option value="1.7.0">1.7.0</option>
<option value="1.6.1">1.6.1</option>
<option value="1.6.0rc1">1.6.0rc1</option>
<option value="1.6.0">1.6.0</option>
<option value="1.5.0rc1">1.5.0rc1</option>
<option value="1.5.0">1.5.0</option>
</optgroup>
<optgroup label="Japanese" value="jp">
<option value="2.2.0">2.2.0</option>
<option value="2.1.0">2.1.0</option>
<option value="2.0.0">2.0.0</option>
<option value="1.9.0">1.9.0</option>
<option value="1.8.1">1.8.1</option>
<option value="1.7.0">1.7.0</option>
</optgroup>
<optgroup label="Korean" value="kr"><option value="2.0.0">2.0.0</option></optgroup></select></small>
</div>
<div id="subheader">
<h1>Upgrading Cordova Windows Phone</h1>
<small><select><option value="Upgrading%2520Cordova%2520Windows%2520Phone">Upgrading Cordova Windows Phone</option>
<option value="Upgrading%20Cordova%20Windows%20Phone_upgrade_to_2_8_0_from_2_9_0"> - Upgrade to 2.8.0 from 2.9.0</option>
<option value="Upgrading%20Cordova%20Windows%20Phone_upgrade_to_2_8_0_from_2_7_0"> - Upgrade to 2.8.0 from 2.7.0</option>
<option value="Upgrading%20Cordova%20Windows%20Phone_upgrade_to_2_7_0_from_2_6_0"> - Upgrade to 2.7.0 from 2.6.0</option>
<option value="Upgrading%20Cordova%20Windows%20Phone_upgrade_to_2_6_0_from_2_5_0"> - Upgrade to 2.6.0 from 2.5.0</option>
<option value="Upgrading%20Cordova%20Windows%20Phone_upgrade_to_2_5_0_from_2_4_0"> - Upgrade to 2.5.0 from 2.4.0</option>
<option value="Upgrading%20Cordova%20Windows%20Phone_upgrade_to_2_4_0_from_2_3_0"> - Upgrade to 2.4.0 from 2.3.0</option>
<option value="Upgrading%20Cordova%20Windows%20Phone_upgrade_to_2_3_0_from_2_2_0"> - Upgrade to 2.3.0 from 2.2.0</option>
<option value="Upgrading%20Cordova%20Windows%20Phone_upgrade_to_2_2_0_from_2_1_0"> - Upgrade to 2.2.0 from 2.1.0</option>
<option value="Upgrading%20Cordova%20Windows%20Phone_upgrade_to_2_1_0_from_2_0_0"> - Upgrade to 2.1.0 from 2.0.0</option>
<option value="Upgrading%20Cordova%20Windows%20Phone_upgrade_to_2_0_0_from_1_9_0"> - Upgrade to 2.0.0 from 1.9.0</option>
<option value="Upgrading%20Cordova%20Windows%20Phone_upgrade_to_1_9_0_from_1_8_0"> - Upgrade to 1.9.0 from 1.8.0</option>
<option value="Upgrading%20Cordova%20Windows%20Phone_upgrade_to_1_8_0_from_1_7_0"> - Upgrade to 1.8.0 from 1.7.0</option>
<option value="Upgrading%20Cordova%20Windows%20Phone_upgrade_to_1_7_0_from_1_6_0"> - Upgrade to 1.7.0 from 1.6.0</option>
<option value="Upgrading%20Cordova%20Windows%20Phone_upgrade_to_1_6_1_from_1_6_0"> - Upgrade to 1.6.1 from 1.6.0</option>
<option value="Upgrading%20Cordova%20Windows%20Phone_upgrade_to_1_6_0_from_1_5_0"> - Upgrade to 1.6.0 from 1.5.0</option>
<option value="Upgrading%20Cordova%20Windows%20Phone_upgrade_to_1_5_0_from_1_4_0"> - Upgrade to 1.5.0 from 1.4.0</option>
<option value="Upgrading%20Cordova%20Windows%20Phone_upgrade_to_1_4_0_from_1_3_0"> - Upgrade to 1.4.0 from 1.3.0</option>
<option value="Upgrading%20Cordova%20Windows%20Phone_upgrade_to_1_3_0_from_1_2_0"> - Upgrade to 1.3.0 from 1.2.0</option>
<option value="Upgrading%20Cordova%20Windows%20Phone_upgrade_to_1_2_0_from_1_1_0"> - Upgrade to 1.2.0 from 1.1.0</option>
<option value="Upgrading%20Cordova%20Windows%20Phone_upgrade_to_1_1_0_from_1_0_0"> - Upgrade to 1.1.0 from 1.0.0</option></select></small>
</div>
<div id="sidebar">
<div class="vertical_divider"></div>
<h1>API Reference</h1>
<ul>
<li><a href="cordova_accelerometer_accelerometer.md.html#Accelerometer">Accelerometer</a></li>
<li><a href="cordova_camera_camera.md.html#Camera">Camera</a></li>
<li><a href="cordova_media_capture_capture.md.html#Capture">Capture</a></li>
<li><a href="cordova_compass_compass.md.html#Compass">Compass</a></li>
<li><a href="cordova_connection_connection.md.html#Connection">Connection</a></li>
<li><a href="cordova_contacts_contacts.md.html#Contacts">Contacts</a></li>
<li><a href="cordova_device_device.md.html#Device">Device</a></li>
<li><a href="cordova_events_events.md.html#Events">Events</a></li>
<li><a href="cordova_file_file.md.html#File">File</a></li>
<li><a href="cordova_geolocation_geolocation.md.html#Geolocation">Geolocation</a></li>
<li><a href="cordova_globalization_globalization.md.html#Globalization">Globalization</a></li>
<li><a href="cordova_inappbrowser_inappbrowser.md.html#InAppBrowser">InAppBrowser</a></li>
<li><a href="cordova_media_media.md.html#Media">Media</a></li>
<li><a href="cordova_notification_notification.md.html#Notification">Notification</a></li>
<li><a href="cordova_splashscreen_splashscreen.md.html#Splashscreen">Splashscreen</a></li>
<li><a href="cordova_storage_storage.md.html#Storage">Storage</a></li>
</ul>
<h1>Guides</h1>
<ul>
<li><a href="guide_getting-started_index.md.html#Getting%20Started%20Guides">Getting Started Guides</a></li>
<li><a href="guide_command-line_index.md.html#Command-Line%20Usage">Command-Line Usage</a></li>
<li><a href="guide_privacy_index.md.html#Privacy%20Guide">Privacy Guide</a></li>
<li><a href="guide_upgrading_index.md.html#Upgrading%20Guides">Upgrading Guides</a></li>
<li><a href="guide_project-settings_index.md.html#Project%20Settings">Project Settings</a></li>
<li><a href="guide_plugin-development_index.md.html#Plugin%20Development%20Guide">Plugin Development Guide</a></li>
<li><a href="guide_whitelist_index.md.html#Domain%20Whitelist%20Guide">Domain Whitelist Guide</a></li>
<li><a href="guide_cordova-webview_index.md.html#Embedding%20WebView">Embedding WebView</a></li>
<li><a href="_index.html">Keyword Index</a></li>
</ul>
</div>
<div id="scrollable">
<div id="content">
<h1><a name="Upgrading%20Cordova%20Windows%20Phone">Upgrading Cordova Windows Phone</a></h1>
<p>This document is for people who need to upgrade their Cordova versions from an older version to a current version of Cordova. This applies to both WP7 and WP8.</p>
<h2>
<a name="Upgrading%20Cordova%20Windows%20Phone_upgrade_to_2_8_0_from_2_9_0">Upgrade to 2.8.0 from 2.9.0</a>
</h2>
<h3>In Visual Studio's Solution Explorer window:</h3>
<ol>
<li>Create a new Apache Cordova WP7 or WP8 2.9.0 Project</li>
<li>Copy the contents of your 'www' folder to the new project, and be sure these items are added to the VS project.</li>
<li>Update the name of cordova.js in the HTML tag if it's still using cordova-VERSION.js (should be just cordova.js).</li>
<li>Copy and overwrite any splash screen, or icon images.</li>
<li>Copy over any plugins from the plugins folder to the new project and ensure that they are also added to the .csproj file.</li>
<li>Build and test.</li>
</ol>
<h2>
<a name="Upgrading%20Cordova%20Windows%20Phone_upgrade_to_2_8_0_from_2_7_0">Upgrade to 2.8.0 from 2.7.0</a>
</h2>
<h3>In Visual Studio's Solution Explorer window:</h3>
<ol>
<li>Create a new Apache Cordova WP7 or WP8 2.8.0 Project</li>
<li>Copy the contents of your 'www' folder to the new project, and be sure these items are added to the VS project.</li>
<li>Update your HTML to use the new cordova.js file. ( note that there is no longer a version number in the name )</li>
<li>Copy and overwrite any splash screen, or icon images.</li>
<li>Copy over any plugins from the plugins folder to the new project and ensure that they are also added to the VS project.</li>
<li>Build and test.</li>
</ol>
<h2>
<a name="Upgrading%20Cordova%20Windows%20Phone_upgrade_to_2_7_0_from_2_6_0">Upgrade to 2.7.0 from 2.6.0</a>
</h2>
<h3>In Visual Studio's Solution Explorer window:</h3>
<ol>
<li>Create a new Apache Cordova WP7 or WP8 2.7.0 Project</li>
<li>Copy the contents of your 'www' folder to the new project, and be sure these items are added to the VS project.</li>
<li>Update your HTML to use the new cordova-2.7.0.js file.</li>
<li>Copy and overwrite any splash screen, or icon images.</li>
<li>Copy over any plugins from the plugins folder to the new project and ensure that they are also added to the VS project.</li>
<li>Build and test.</li>
</ol>
<h2>
<a name="Upgrading%20Cordova%20Windows%20Phone_upgrade_to_2_6_0_from_2_5_0">Upgrade to 2.6.0 from 2.5.0</a>
</h2>
<h3>In Visual Studio's Solution Explorer window:</h3>
<ol>
<li>Create a new Apache Cordova WP7 or WP8 2.6.0 Project</li>
<li>Copy the contents of your 'www' folder to the new project, and be sure these items are added to the VS project.</li>
<li>Update your HTML to use the new cordova-2.6.0.js file.</li>
<li>Copy and overwrite any splash screen, or icon images.</li>
<li>Copy over any plugins from the plugins folder to the new project and ensure that they are also added to the VS project.</li>
<li>Build and test.</li>
</ol>
<h2>
<a name="Upgrading%20Cordova%20Windows%20Phone_upgrade_to_2_5_0_from_2_4_0">Upgrade to 2.5.0 from 2.4.0</a>
</h2>
<h3>In Visual Studio's Solution Explorer window:</h3>
<ol>
<li>Create a new Apache Cordova WP7 or WP8 2.5.0 Project</li>
<li>Copy the contents of your 'www' folder to the new project, and be sure these items are added to the VS project.</li>
<li>Update your HTML to use the new cordova-2.5.0.js file.</li>
<li>Copy and overwrite any splash screen, or icon images.</li>
<li>Copy over any plugins from the plugins folder to the new project and ensure that they are also added to the VS project.</li>
<li>Build and test.</li>
</ol>
<h2>
<a name="Upgrading%20Cordova%20Windows%20Phone_upgrade_to_2_4_0_from_2_3_0">Upgrade to 2.4.0 from 2.3.0</a>
</h2>
<h3>In Visual Studio's Solution Explorer window:</h3>
<ol>
<li>Create a new Apache Cordova WP7 or WP8 2.4.0 Project</li>
<li>Copy the contents of your 'www' folder to the new project, and be sure these items are added to the VS project.</li>
<li>Update your HTML to use the new cordova-2.4.0.js file.</li>
<li>Copy and overwrite any splash screen, or icon images.</li>
<li>Copy over any plugins from the plugins folder to the new project and ensure that they are also added to the VS project.</li>
<li>Build and test.</li>
</ol>
<h2>
<a name="Upgrading%20Cordova%20Windows%20Phone_upgrade_to_2_3_0_from_2_2_0">Upgrade to 2.3.0 from 2.2.0</a>
</h2>
<h3>In Visual Studio's Solution Explorer window:</h3>
<ol>
<li>Create a new Apache Cordova WP7 2.3.0 Project</li>
<li>Copy the contents of your 'www' folder to the new project, and be sure these items are added to the VS project.</li>
<li>Update your HTML to use the new cordova-2.3.0.js file.</li>
<li>Copy and overwrite any splash screen, or icon images.</li>
<li>Copy over any plugins from the plugins folder to the new project and ensure that they are also added to the VS project.</li>
<li>Build and test.</li>
</ol>
<h2>
<a name="Upgrading%20Cordova%20Windows%20Phone_upgrade_to_2_2_0_from_2_1_0">Upgrade to 2.2.0 from 2.1.0</a>
</h2>
<h3>In Visual Studio's Solution Explorer window:</h3>
<ol>
<li>Create a new Apache Cordova WP7 2.2.0 Project</li>
<li>Copy the contents of your 'www' folder to the new project, and be sure these items are added to the VS project.</li>
<li>Update your HTML to use the new cordova-2.2.0.js file.</li>
<li>Copy and overwrite any splash screen, or icon images.</li>
<li>Copy over any plugins from the plugins folder to the new project and ensure that they are also added to the VS project.</li>
<li>Build and test.</li>
</ol>
<h2>
<a name="Upgrading%20Cordova%20Windows%20Phone_upgrade_to_2_1_0_from_2_0_0">Upgrade to 2.1.0 from 2.0.0</a>
</h2>
<h3>In Visual Studio's Solution Explorer window:</h3>
<ol>
<li>Create a new Apache Cordova WP7 2.1.0 Project</li>
<li>Copy the contents of your 'www' folder to the new project, and be sure these items are added to the VS project.</li>
<li>Update your HTML to use the new cordova-2.1.0.js file.</li>
<li>Copy and overwrite any splash screen, or icon images.</li>
<li>Copy over any plugins from the plugins folder to the new project and ensure that they are also added to the VS project.</li>
<li>Build and test.</li>
</ol>
<h2>
<a name="Upgrading%20Cordova%20Windows%20Phone_upgrade_to_2_0_0_from_1_9_0">Upgrade to 2.0.0 from 1.9.0</a>
</h2>
<p>There have been considerable changes to the WP7 project structure in Apache Cordova 2.0.0 which make this upgrade a little more involved that the others. Essentially this is not an upgrade but creation of a new project and copy over of existing source files.</p>
<h3>In Visual Studio's Solution Explorer window:</h3>
<ol>
<li>Create a new Apache Cordova WP7 2.0 Project</li>
<li>Copy the contents of your 'www' folder to the new project, and be sure these items are added to the VS project.</li>
<li>Update your HTML to use the new cordova-2.0.0.js file.</li>
<li>Copy and overwrite any splash screen, or icon images.</li>
<li>Copy over any plugins from the plugins folder to the new project and ensure that they are also added to the VS project.</li>
<li>Build and test.</li>
</ol>
<h2>
<a name="Upgrading%20Cordova%20Windows%20Phone_upgrade_to_1_9_0_from_1_8_0">Upgrade to 1.9.0 from 1.8.0</a>
</h2>
<h3>In Visual Studio's Solution Explorer window:</h3>
<ol>
<li>Delete the file GapLib/WP7CordovaClassLib.dll from your project.</li>
<li>Remove the reference to WP7CordovaClassLib in the References folder.</li>
<li>Right-Click on References and Select 'Add Reference'</li>
<li>Navigate to the new distribution and add the file 'WP7CordovaClassLib.dll'
<ul>
<li>note: you can view the version of the DLL by right-clicking on the reference, and selecting Properties.</li>
</ul>
</li>
<li>Copy the new cordova-1.9.0.js into your project ( be sure it is marked as Content )</li>
<li>Update your HTML to use the new cordova-1.9.0.js file.</li>
</ol>
<h2>
<a name="Upgrading%20Cordova%20Windows%20Phone_upgrade_to_1_8_0_from_1_7_0">Upgrade to 1.8.0 from 1.7.0</a>
</h2>
<h3>In Visual Studio's Solution Explorer window:</h3>
<ol>
<li>Delete the file GapLib/WP7CordovaClassLib.dll from your project.</li>
<li>Remove the reference to WP7CordovaClassLib in the References folder.</li>
<li>Right-Click on References and Select 'Add Reference'</li>
<li>Navigate to the new distribution and add the file 'WP7CordovaClassLib.dll'
<ul>
<li>note: you can view the version of the DLL by right-clicking on the reference, and selecting Properties.</li>
</ul>
</li>
<li>Copy the new cordova-1.8.0.js into your project ( be sure it is marked as Content )</li>
<li>Update your HTML to use the new cordova-1.8.0.js file.</li>
</ol>
<h2>
<a name="Upgrading%20Cordova%20Windows%20Phone_upgrade_to_1_7_0_from_1_6_0">Upgrade to 1.7.0 from 1.6.0</a>
</h2>
<h3>In Visual Studio's Solution Explorer window:</h3>
<ol>
<li>Delete the file GapLib/WP7CordovaClassLib.dll from your project.</li>
<li>Remove the reference to WP7CordovaClassLib in the References folder.</li>
<li>Right-Click on References and Select 'Add Reference'</li>
<li>Navigate to the new distribution and add the file 'WP7CordovaClassLib.dll'
<ul>
<li>note: you can view the version of the DLL by right-clicking on the reference, and selecting Properties.</li>
</ul>
</li>
<li>Copy the new cordova-1.7.0.js into your project ( be sure it is marked as Content )</li>
<li>Update your HTML to use the new cordova-1.7.0.js file.</li>
</ol>
<h2>
<a name="Upgrading%20Cordova%20Windows%20Phone_upgrade_to_1_6_1_from_1_6_0">Upgrade to 1.6.1 from 1.6.0</a>
</h2>
<h3>In Visual Studio's Solution Explorer window:</h3>
<ol>
<li>Delete the file GapLib/WP7CordovaClassLib.dll from your project.</li>
<li>Remove the reference to WP7CordovaClassLib in the References folder.</li>
<li>Right-Click on References and Select 'Add Reference'</li>
<li>Navigate to the new distribution and add the file 'WP7CordovaClassLib.dll'
<ul>
<li>note: you can view the version of the DLL by right-clicking on the reference, and selecting Properties.</li>
</ul>
</li>
<li>Copy the new cordova-1.6.1.js into your project ( be sure it is marked as Content )</li>
<li>Update your HTML to use the new cordova-1.6.1.js file.</li>
</ol>
<h2>
<a name="Upgrading%20Cordova%20Windows%20Phone_upgrade_to_1_6_0_from_1_5_0">Upgrade to 1.6.0 from 1.5.0</a>
</h2>
<h3>In Visual Studio's Solution Explorer window:</h3>
<ol>
<li>Delete the file GapLib/WP7CordovaClassLib.dll from your project.</li>
<li>Remove the reference to WP7CordovaClassLib in the References folder.</li>
<li>Right-Click on References and Select 'Add Reference'</li>
<li>Navigate to the new distribution and add the file 'WP7CordovaClassLib.dll'
<ul>
<li>note: you can view the version of the DLL by right-clicking on the reference, and selecting Properties.</li>
</ul>
</li>
<li>Copy the new cordova-1.6.0.js into your project ( be sure it is marked as Content )</li>
<li>Update your HTML to use the new cordova-1.6.0.js file.</li>
</ol>
<h2>
<a name="Upgrading%20Cordova%20Windows%20Phone_upgrade_to_1_5_0_from_1_4_0">Upgrade to 1.5.0 from 1.4.0</a>
</h2>
<h3>In Visual Studio's Solution Explorer window:</h3>
<ol>
<li>Delete the file GapLib/WP7CordovaClassLib.dll from your project.</li>
<li>Remove the reference to WP7CordovaClassLib in the References folder.</li>
<li>Right-Click on References and Select 'Add Reference'</li>
<li>Navigate to the new distribution and add the file 'WP7CordovaClassLib.dll'
<ul>
<li>note: you can view the version of the DLL by right-clicking on the reference, and selecting Properties.</li>
</ul>
</li>
<li>Copy the new cordova-1.5.0.js into your project ( be sure it is marked as Content )</li>
<li>Update your HTML to use the new cordova-1.5.0.js file.</li>
</ol>
<h2>
<a name="Upgrading%20Cordova%20Windows%20Phone_upgrade_to_1_4_0_from_1_3_0">Upgrade to 1.4.0 from 1.3.0</a>
</h2>
<h3>In Visual Studio's Solution Explorer window:</h3>
<ol>
<li>Delete the file GapLib/WP7CordovaClassLib.dll from your project.</li>
<li>Remove the reference to WP7CordovaClassLib in the References folder.</li>
<li>Right-Click on References and Select 'Add Reference'</li>
<li>Navigate to the new distribution and add the file 'WP7CordovaClassLib.dll'
<ul>
<li>note: you can view the version of the DLL by right-clicking on the reference, and selecting Properties.</li>
</ul>
</li>
<li>Copy the new cordova-1.4.0.js into your project ( be sure it is marked as Content )</li>
<li>Update your HTML to use the new cordova-1.4.0.js file.</li>
</ol>
<h2>
<a name="Upgrading%20Cordova%20Windows%20Phone_upgrade_to_1_3_0_from_1_2_0">Upgrade to 1.3.0 from 1.2.0</a>
</h2>
<h3>In Visual Studio's Solution Explorer window:</h3>
<ol>
<li>Delete the file GapLib/WP7CordovaClassLib.dll from your project.</li>
<li>Remove the reference to WP7CordovaClassLib in the References folder.</li>
<li>Right-Click on References and Select 'Add Reference'</li>
<li>Navigate to the new distribution and add the file 'WP7CordovaClassLib.dll'
<ul>
<li>note: you can view the version of the DLL by right-clicking on the reference, and selecting Properties.</li>
</ul>
</li>
<li>Copy the new cordova-1.3.0.js into your project ( be sure it is marked as Content )</li>
<li>Update your HTML to use the new cordova-1.3.0.js file.</li>
</ol>
<h2>
<a name="Upgrading%20Cordova%20Windows%20Phone_upgrade_to_1_2_0_from_1_1_0">Upgrade to 1.2.0 from 1.1.0</a>
</h2>
<h3>In Visual Studio's Solution Explorer window:</h3>
<ol>
<li>Delete the file GapLib/WP7CordovaClassLib.dll from your project.</li>
<li>Remove the reference to WP7CordovaClassLib in the References folder.</li>
<li>Right-Click on References and Select 'Add Reference'</li>
<li>Navigate to the new distribution and add the file 'WP7CordovaClassLib.dll'
<ul>
<li>note: you can view the version of the DLL by right-clicking on the reference, and selecting Properties.</li>
</ul>
</li>
<li>Copy the new cordova-1.2.0.js into your project ( be sure it is marked as Content )</li>
<li>Update your HTML to use the new cordova-1.2.0.js file.</li>
</ol>
<h2>
<a name="Upgrading%20Cordova%20Windows%20Phone_upgrade_to_1_1_0_from_1_0_0">Upgrade to 1.1.0 from 1.0.0</a>
</h2>
<h3>In Visual Studio's Solution Explorer window:</h3>
<ol>
<li>Delete the file GapLib/WP7CordovaClassLib.dll from your project.</li>
<li>Remove the reference to WP7CordovaClassLib in the References folder.</li>
<li>Right-Click on References and Select 'Add Reference'</li>
<li>Navigate to the new distribution and add the file 'WP7CordovaClassLib.dll'
<ul>
<li>note: you can view the version of the DLL by right-clicking on the reference, and selecting Properties.</li>
</ul>
</li>
<li>Copy the new cordova-1.1.0.js into your project ( be sure it is marked as Content )</li>
<li>Update your HTML to use the new cordova-1.1.0.js file.</li>
</ol>
</div>
</div>
<!-- Functionality and Syntax Highlighting -->
<script type="text/javascript" src="index.js"></script><script type="text/javascript" src="prettify/prettify.js"></script>
</body>
</html>
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.