path stringlengths 5 312 | repo_name stringlengths 5 116 | content stringlengths 2 1.04M |
|---|---|---|
oodt/tomcat/webapps/tomcat-docs/servletapi/javax/servlet/UnavailableException.html | harshs08/solroodt | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.4.2_12) on Mon Mar 05 08:25:23 MST 2007 -->
<TITLE>
UnavailableException (Servlet API Documentation)
</TITLE>
<META NAME="keywords" CONTENT="javax.servlet.UnavailableException class">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
parent.document.title="UnavailableException (Servlet API Documentation)";
}
</SCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/UnavailableException.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="../../javax/servlet/ServletException.html" title="class in javax.servlet"><B>PREV CLASS</B></A>
NEXT CLASS</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../index.html" target="_top"><B>FRAMES</B></A>
<A HREF="UnavailableException.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">
javax.servlet</FONT>
<BR>
Class UnavailableException</H2>
<PRE>
java.lang.Object
<IMG SRC="../../resources/inherit.gif" ALT="extended by">java.lang.Throwable
<IMG SRC="../../resources/inherit.gif" ALT="extended by">java.lang.Exception
<IMG SRC="../../resources/inherit.gif" ALT="extended by"><A HREF="../../javax/servlet/ServletException.html" title="class in javax.servlet">javax.servlet.ServletException</A>
<IMG SRC="../../resources/inherit.gif" ALT="extended by"><B>javax.servlet.UnavailableException</B>
</PRE>
<DL>
<DT><B>All Implemented Interfaces:</B> <DD>java.io.Serializable</DD>
</DL>
<HR>
<DL>
<DT>public class <B>UnavailableException</B><DT>extends <A HREF="../../javax/servlet/ServletException.html" title="class in javax.servlet">ServletException</A></DL>
<P>
Defines an exception that a servlet or filter throws to indicate
that it is permanently or temporarily unavailable.
<p>When a servlet or filter is permanently unavailable, something is wrong
with it, and it cannot handle
requests until some action is taken. For example, a servlet
might be configured incorrectly, or a filter's state may be corrupted.
The component should log both the error and the corrective action
that is needed.
<p>A servlet or filter is temporarily unavailable if it cannot handle
requests momentarily due to some system-wide problem. For example,
a third-tier server might not be accessible, or there may be
insufficient memory or disk storage to handle requests. A system
administrator may need to take corrective action.
<p>Servlet containers can safely treat both types of unavailable
exceptions in the same way. However, treating temporary unavailability
effectively makes the servlet container more robust. Specifically,
the servlet container might block requests to the servlet or filter for a period
of time suggested by the exception, rather than rejecting them until
the servlet container restarts.
<P>
<P>
<DL>
<DT><B>Version:</B></DT>
<DD>$Version$</DD>
<DT><B>Author:</B></DT>
<DD>Various</DD>
<DT><B>See Also:</B><DD><A HREF="../../serialized-form.html#javax.servlet.UnavailableException">Serialized Form</A></DL>
<HR>
<P>
<!-- ======== NESTED CLASS SUMMARY ======== -->
<!-- =========== FIELD SUMMARY =========== -->
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<A NAME="constructor_summary"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TD COLSPAN=2><FONT SIZE="+2">
<B>Constructor Summary</B></FONT></TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><B><A HREF="../../javax/servlet/UnavailableException.html#UnavailableException(int, javax.servlet.Servlet, java.lang.String)">UnavailableException</A></B>(int seconds,
<A HREF="../../javax/servlet/Servlet.html" title="interface in javax.servlet">Servlet</A> servlet,
java.lang.String msg)</CODE>
<BR>
<B>Deprecated.</B> <I>As of Java Servlet API 2.2, use <A HREF="../../javax/servlet/UnavailableException.html#UnavailableException(java.lang.String, int)"><CODE>UnavailableException(String, int)</CODE></A> instead.</I></TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><B><A HREF="../../javax/servlet/UnavailableException.html#UnavailableException(javax.servlet.Servlet, java.lang.String)">UnavailableException</A></B>(<A HREF="../../javax/servlet/Servlet.html" title="interface in javax.servlet">Servlet</A> servlet,
java.lang.String msg)</CODE>
<BR>
<B>Deprecated.</B> <I>As of Java Servlet API 2.2, use <A HREF="../../javax/servlet/UnavailableException.html#UnavailableException(java.lang.String)"><CODE>UnavailableException(String)</CODE></A> instead.</I></TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><B><A HREF="../../javax/servlet/UnavailableException.html#UnavailableException(java.lang.String)">UnavailableException</A></B>(java.lang.String msg)</CODE>
<BR>
Constructs a new exception with a descriptive
message indicating that the servlet is permanently
unavailable.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><B><A HREF="../../javax/servlet/UnavailableException.html#UnavailableException(java.lang.String, int)">UnavailableException</A></B>(java.lang.String msg,
int seconds)</CODE>
<BR>
Constructs a new exception with a descriptive message
indicating that the servlet is temporarily unavailable
and giving an estimate of how long it will be unavailable.</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">
<TD COLSPAN=2><FONT SIZE="+2">
<B>Method Summary</B></FONT></TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../javax/servlet/Servlet.html" title="interface in javax.servlet">Servlet</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../javax/servlet/UnavailableException.html#getServlet()">getServlet</A></B>()</CODE>
<BR>
<B>Deprecated.</B> <I>As of Java Servlet API 2.2, with no replacement.
Returns the servlet that is reporting its unavailability.</I></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="../../javax/servlet/UnavailableException.html#getUnavailableSeconds()">getUnavailableSeconds</A></B>()</CODE>
<BR>
Returns the number of seconds the servlet expects to
be temporarily unavailable.</TD>
</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="../../javax/servlet/UnavailableException.html#isPermanent()">isPermanent</A></B>()</CODE>
<BR>
Returns a <code>boolean</code> indicating
whether the servlet is permanently unavailable.</TD>
</TR>
</TABLE>
<A NAME="methods_inherited_from_class_javax.servlet.ServletException"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TD><B>Methods inherited from class javax.servlet.<A HREF="../../javax/servlet/ServletException.html" title="class in javax.servlet">ServletException</A></B></TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><A HREF="../../javax/servlet/ServletException.html#getRootCause()">getRootCause</A></CODE></TD>
</TR>
</TABLE>
<A NAME="methods_inherited_from_class_java.lang.Throwable"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TD><B>Methods inherited from class java.lang.Throwable</B></TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE>fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString</CODE></TD>
</TR>
</TABLE>
<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TD><B>Methods inherited from class java.lang.Object</B></TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE>clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait</CODE></TD>
</TR>
</TABLE>
<P>
<!-- ============ FIELD DETAIL =========== -->
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<A NAME="constructor_detail"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TD COLSPAN=1><FONT SIZE="+2">
<B>Constructor Detail</B></FONT></TD>
</TR>
</TABLE>
<A NAME="UnavailableException(javax.servlet.Servlet, java.lang.String)"><!-- --></A><H3>
UnavailableException</H3>
<PRE>
public <B>UnavailableException</B>(<A HREF="../../javax/servlet/Servlet.html" title="interface in javax.servlet">Servlet</A> servlet,
java.lang.String msg)</PRE>
<DL>
<DD><B>Deprecated.</B> <I>As of Java Servlet API 2.2, use <A HREF="../../javax/servlet/UnavailableException.html#UnavailableException(java.lang.String)"><CODE>UnavailableException(String)</CODE></A> instead.</I>
<P>
<DT><B>Parameters:</B><DD><CODE>servlet</CODE> - the <code>Servlet</code> instance that is
unavailable<DD><CODE>msg</CODE> - a <code>String</code> specifying the
descriptive message</DL>
<HR>
<A NAME="UnavailableException(int, javax.servlet.Servlet, java.lang.String)"><!-- --></A><H3>
UnavailableException</H3>
<PRE>
public <B>UnavailableException</B>(int seconds,
<A HREF="../../javax/servlet/Servlet.html" title="interface in javax.servlet">Servlet</A> servlet,
java.lang.String msg)</PRE>
<DL>
<DD><B>Deprecated.</B> <I>As of Java Servlet API 2.2, use <A HREF="../../javax/servlet/UnavailableException.html#UnavailableException(java.lang.String, int)"><CODE>UnavailableException(String, int)</CODE></A> instead.</I>
<P>
<DT><B>Parameters:</B><DD><CODE>seconds</CODE> - an integer specifying the number of seconds
the servlet expects to be unavailable; if
zero or negative, indicates that the servlet
can't make an estimate<DD><CODE>servlet</CODE> - the <code>Servlet</code> that is unavailable<DD><CODE>msg</CODE> - a <code>String</code> specifying the descriptive
message, which can be written to a log file or
displayed for the user.</DL>
<HR>
<A NAME="UnavailableException(java.lang.String)"><!-- --></A><H3>
UnavailableException</H3>
<PRE>
public <B>UnavailableException</B>(java.lang.String msg)</PRE>
<DL>
<DD>Constructs a new exception with a descriptive
message indicating that the servlet is permanently
unavailable.
<P>
<DT><B>Parameters:</B><DD><CODE>msg</CODE> - a <code>String</code> specifying the
descriptive message</DL>
<HR>
<A NAME="UnavailableException(java.lang.String, int)"><!-- --></A><H3>
UnavailableException</H3>
<PRE>
public <B>UnavailableException</B>(java.lang.String msg,
int seconds)</PRE>
<DL>
<DD>Constructs a new exception with a descriptive message
indicating that the servlet is temporarily unavailable
and giving an estimate of how long it will be unavailable.
<p>In some cases, the servlet cannot make an estimate. For
example, the servlet might know that a server it needs is
not running, but not be able to report how long it will take
to be restored to functionality. This can be indicated with
a negative or zero value for the <code>seconds</code> argument.
<P>
<DT><B>Parameters:</B><DD><CODE>msg</CODE> - a <code>String</code> specifying the
descriptive message, which can be written
to a log file or displayed for the user.<DD><CODE>seconds</CODE> - an integer specifying the number of seconds
the servlet expects to be unavailable; if
zero or negative, indicates that the servlet
can't make an estimate</DL>
<!-- ============ METHOD DETAIL ========== -->
<A NAME="method_detail"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TD COLSPAN=1><FONT SIZE="+2">
<B>Method Detail</B></FONT></TD>
</TR>
</TABLE>
<A NAME="isPermanent()"><!-- --></A><H3>
isPermanent</H3>
<PRE>
public boolean <B>isPermanent</B>()</PRE>
<DL>
<DD>Returns a <code>boolean</code> indicating
whether the servlet is permanently unavailable.
If so, something is wrong with the servlet, and the
system administrator must take some corrective action.
<P>
<DD><DL>
<DT><B>Returns:</B><DD><code>true</code> if the servlet is
permanently unavailable; <code>false</code>
if the servlet is available or temporarily
unavailable</DL>
</DD>
</DL>
<HR>
<A NAME="getServlet()"><!-- --></A><H3>
getServlet</H3>
<PRE>
public <A HREF="../../javax/servlet/Servlet.html" title="interface in javax.servlet">Servlet</A> <B>getServlet</B>()</PRE>
<DL>
<DD><B>Deprecated.</B> <I>As of Java Servlet API 2.2, with no replacement.
Returns the servlet that is reporting its unavailability.</I>
<P>
<DD><DL>
<DT><B>Returns:</B><DD>the <code>Servlet</code> object that is
throwing the <code>UnavailableException</code></DL>
</DD>
</DL>
<HR>
<A NAME="getUnavailableSeconds()"><!-- --></A><H3>
getUnavailableSeconds</H3>
<PRE>
public int <B>getUnavailableSeconds</B>()</PRE>
<DL>
<DD>Returns the number of seconds the servlet expects to
be temporarily unavailable.
<p>If this method returns a negative number, the servlet
is permanently unavailable or cannot provide an estimate of
how long it will be unavailable. No effort is
made to correct for the time elapsed since the exception was
first reported.
<P>
<DD><DL>
<DT><B>Returns:</B><DD>an integer specifying the number of seconds
the servlet will be temporarily unavailable,
or a negative number if the servlet is permanently
unavailable or cannot make an estimate</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=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/UnavailableException.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="../../javax/servlet/ServletException.html" title="class in javax.servlet"><B>PREV CLASS</B></A>
NEXT CLASS</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../index.html" target="_top"><B>FRAMES</B></A>
<A HREF="UnavailableException.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>
Copyright © 1999-2002 The Apache Software Foundation. All Rights Reserved.
</BODY>
</HTML>
|
Baocms/Tpl/user/integral.html | ksyydream/api_llx | <div class="listBox clfx">
<div class="menuManage">
<form target="baocms_frm" action="<{:U('user/integral',array('user_id'=>$user_id))}>" 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">
<input name="integral" type="text" class="scAddTextName w150" />
<code>减少秀币输入负数</code>
</td>
</tr>
<tr >
<td class="lfTdBt">原由:</td>
<td class="rgTdBt">
<textarea name="intro" cols="50" rows="6"></textarea>
</td>
</tr>
</table>
</div>
<div class="smtQr"><input type="submit" value="确定保存" class="smtQrIpt" /></div>
</div>
</form>
</div>
</div>
|
dist/elements/fow-deck/fow-deck.html | NikZar/forceofwill | <link rel="import" href="../../bower_components/polymer/polymer.html">
<link rel="import" href="../../elements/elements.html">
<polymer-element name="fow-deck" attributes="deck fowId token">
<template>
<style>
:host {
display: block;
}
</style>
<fow-rest-service type="decks/{{fowId}}" items="{{deck}}" auto="true" token="{{token}}">
</fow-rest-service>
</template>
<script>
(function () {
Polymer({
// define element prototype here
});
})();
</script>
</polymer-element>
|
css/plugins/img/toolbar.html | blomersi/taller | <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>404 Not Found</title>
</head><body>
<h1>Not Found</h1>
<p>The requested URL /sangoma/css/plugins/img/toolbar.png was not found on this server.</p>
</body></html>
|
_site/docs/nightly/index.html | martinjbaker/ionic-site | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Ionic makes it incredibly easy to build beautiful and interactive mobile apps using HTML5 and AngularJS.">
<meta name="keywords" content="html5,javascript,mobile,drifty,ionic,hybrid,phonegap,cordova,native,ios,android,angularjs">
<meta name="author" content="Drifty">
<meta property="og:image" content="http://ionicframework.com/img/ionic-logo-blog.png"/>
<!-- version /docs/nightly should not be indexed -->
<meta name="robots" content="noindex">
<title>Javascript - Extend Ionic even further with the power of AngularJS - Ionic Framework</title>
<link href="/css/site.css?12" rel="stylesheet">
<!--<script src="//cdn.optimizely.com/js/595530035.js"></script>-->
<script type="text/javascript">var _sf_startpt=(new Date()).getTime()</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-44023830-1', 'ionicframework.com');
ga('send', 'pageview');
</script>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
</head>
<body class="docs docs-page docs-api">
<nav class="navbar navbar-default horizontal-gradient" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle button ionic" data-toggle="collapse" data-target=".navbar-ex1-collapse">
<i class="icon ion-navicon"></i>
</button>
<a class="navbar-brand" href="/">
<img src="/img/ionic-logo-white.svg" width="123" height="43" alt="Ionic Framework">
</a>
<a href="http://blog.ionic.io/announcing-ionic-1-0/" target="_blank">
<img src="/img/ionic1-tag.png" alt="Ionic 1.0 is out!" width="28" height="32" style="margin-left: 140px; margin-top:22px; display:block">
</a>
</div>
<div class="collapse navbar-collapse navbar-ex1-collapse">
<ul class="nav navbar-nav navbar-right">
<li><a class="getting-started-nav nav-link" href="/getting-started/">Getting Started</a></li>
<li><a class="docs-nav nav-link" href="/docs/">Docs</a></li>
<li><a class="nav-link" href="http://ionic.io/support">Support</a></li>
<li><a class="blog-nav nav-link" href="http://blog.ionic.io/">Blog <span id="blog-badge">1</span></a></li>
<li><a class="nav-link" href="http://forum.ionicframework.com/">Forum</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false">More <span class="caret"></span></a>
<ul class="dropdown-menu" role="menu">
<div class="arrow-up"></div>
<li><a class="products-nav nav-link" href="http://ionic.io/">Ionic.io</a></li>
<li><a class="examples-nav nav-link" href="http://showcase.ionicframework.com/">Showcase</a></li>
<li><a class="nav-link" href="http://jobs.ionic.io/">Job Board</a></li>
<li><a class="nav-link" href="http://market.ionic.io/">Market</a></li>
<li><a class="nav-link" href="http://ionicworldwide.herokuapp.com/">Ionic Worldwide</a></li>
<li><a class="nav-link" href="http://play.ionic.io/">Playground</a></li>
<li><a class="nav-link" href="http://creator.ionic.io/">Creator</a></li>
<li><a class="nav-link" href="http://shop.ionic.io/">Shop</a></li>
<!--<li><a class="nav-link" href="http://ngcordova.com/">ngCordova</a></li>-->
</ul>
</li>
</ul>
</div>
</div>
</nav>
<div class="header horizontal-gradient">
<div class="container">
<h3>Javascript</h3>
<h4>Extend Ionic even further with the power of AngularJS</h4>
</div>
<div class="news">
<div class="container">
<div class="row">
<div class="col-sm-8 news-col">
<div class="picker">
<select onchange="window.location.href=this.options[this.selectedIndex].value">
<option
value="/docs/nightly/api/"
selected>
nightly
</option>
<option
value="/docs/api/"
>
1.1.0 (latest)
</option>
<option
value="/docs/1.0.1/api/"
>
1.0.1
</option>
<option
value="/docs/1.0.0/api/"
>
1.0.0
</option>
<option
value="/docs/1.0.0-rc.5/api/"
>
1.0.0-rc.5
</option>
<option
value="/docs/1.0.0-rc.4/api/"
>
1.0.0-rc.4
</option>
<option
value="/docs/1.0.0-rc.3/api/"
>
1.0.0-rc.3
</option>
<option
value="/docs/1.0.0-rc.2/api/"
>
1.0.0-rc.2
</option>
<option
value="/docs/1.0.0-rc.1/api/"
>
1.0.0-rc.1
</option>
<option
value="/docs/1.0.0-rc.0/api/"
>
1.0.0-rc.0
</option>
<option
value="/docs/1.0.0-beta.14/api/"
>
1.0.0-beta.14
</option>
<option
value="/docs/1.0.0-beta.13/api/"
>
1.0.0-beta.13
</option>
<option
value="/docs/1.0.0-beta.12/api/"
>
1.0.0-beta.12
</option>
<option
value="/docs/1.0.0-beta.11/api/"
>
1.0.0-beta.11
</option>
<option
value="/docs/1.0.0-beta.10/api/"
>
1.0.0-beta.10
</option>
</select>
</div>
</div>
<div class="col-sm-4 search-col">
<div class="search-bar">
<span class="search-icon ionic"><i class="ion-ios7-search-strong"></i></span>
<input type="search" id="search-input" value="Search">
</div>
</div>
</div>
</div>
</div>
</div>
<div id="search-results" class="search-results" style="display:none">
<div class="container">
<div class="search-section search-api">
<h4>JavaScript</h4>
<ul id="results-api"></ul>
</div>
<div class="search-section search-css">
<h4>CSS</h4>
<ul id="results-css"></ul>
</div>
<div class="search-section search-content">
<h4>Resources</h4>
<ul id="results-content"></ul>
</div>
</div>
</div>
<div class="container content-container">
<div class="row">
<div class="col-md-2 col-sm-3 aside-menu">
<div>
<ul class="nav left-menu">
<li class="menu-title">
<a href="/docs/overview/">Overview</a>
</li>
</ul>
<ul class="nav left-menu">
<li class="menu-title">
<a href="/docs/components/">CSS</a>
</li>
</ul>
<!-- Docs: JavaScript -->
<ul class="nav left-menu active-menu">
<li class="menu-title">
<a href="/docs/nightly/api/">
JavaScript
</a>
</li>
<!-- Action Sheet -->
<li class="menu-section">
<a href="/docs/nightly/api/service/$ionicActionSheet/" class="api-section">
Action Sheet
</a>
<ul>
<li>
<a href="/docs/nightly/api/service/$ionicActionSheet/">
$ionicActionSheet
</a>
</li>
</ul>
</li>
<!-- Backdrop -->
<li class="menu-section">
<a href="/docs/nightly/api/service/$ionicBackdrop/" class="api-section">
Backdrop
</a>
<ul>
<li>
<a href="/docs/nightly/api/service/$ionicBackdrop/">
$ionicBackdrop
</a>
</li>
</ul>
</li>
<!-- Content -->
<li class="menu-section">
<a href="/docs/nightly/api/directive/ionContent/" class="api-section">
Content
</a>
<ul>
<li>
<a href="/docs/nightly/api/directive/ionContent/">
ion-content
</a>
</li>
<li>
<a href="/docs/nightly/api/directive/ionRefresher/">
ion-refresher
</a>
</li>
<li>
<a href="/docs/nightly/api/directive/ionPane/">
ion-pane
</a>
</li>
</ul>
</li>
<!-- Form Inputs -->
<li class="menu-section">
<a href="/docs/nightly/api/directive/ionCheckbox/" class="api-section">
Form Inputs
</a>
<ul>
<li>
<a href="/docs/nightly/api/directive/ionCheckbox/">
ion-checkbox
</a>
</li>
<li>
<a href="/docs/nightly/api/directive/ionRadio/">
ion-radio
</a>
</li>
<li>
<a href="/docs/nightly/api/directive/ionToggle/">
ion-toggle
</a>
</li>
</ul>
</li>
<!-- Gesture and Events -->
<li class="menu-section">
<a href="/docs/nightly/api/directive/onHold/" class="api-section">
Gestures and Events
</a>
<ul>
<li>
<a href="/docs/nightly/api/directive/onHold/">
on-hold
</a>
</li>
<li>
<a href="/docs/nightly/api/directive/onTap/">
on-tap
</a>
</li>
<li>
<a href="/docs/nightly/api/directive/onDoubleTap/">
on-double-tap
</a>
</li>
<li>
<a href="/docs/nightly/api/directive/onTouch/">
on-touch
</a>
</li>
<li>
<a href="/docs/nightly/api/directive/onRelease/">
on-release
</a>
</li>
<li>
<a href="/docs/nightly/api/directive/onDrag/">
on-drag
</a>
</li>
<li>
<a href="/docs/nightly/api/directive/onDragUp/">
on-drag-up
</a>
</li>
<li>
<a href="/docs/nightly/api/directive/onDragRight/">
on-drag-right
</a>
</li>
<li>
<a href="/docs/nightly/api/directive/onDragDown/">
on-drag-down
</a>
</li>
<li>
<a href="/docs/nightly/api/directive/onDragLeft/">
on-drag-left
</a>
</li>
<li>
<a href="/docs/nightly/api/directive/onSwipe/">
on-swipe
</a>
</li>
<li>
<a href="/docs/nightly/api/directive/onSwipeUp/">
on-swipe-up
</a>
</li>
<li>
<a href="/docs/nightly/api/directive/onSwipeRight/">
on-swipe-right
</a>
</li>
<li>
<a href="/docs/nightly/api/directive/onSwipeDown/">
on-swipe-down
</a>
</li>
<li>
<a href="/docs/nightly/api/directive/onSwipeLeft/">
on-swipe-left
</a>
</li>
<li>
<a href="/docs/nightly/api/service/$ionicGesture/">
$ionicGesture
</a>
</li>
</ul>
</li>
<!-- Headers/Footers -->
<li class="menu-section">
<a href="/docs/nightly/api/directive/ionHeaderBar/" class="api-section">
Headers/Footers
</a>
<ul>
<li>
<a href="/docs/nightly/api/directive/ionHeaderBar/">
ion-header-bar
</a>
</li>
<li>
<a href="/docs/nightly/api/directive/ionFooterBar/">
ion-footer-bar
</a>
</li>
</ul>
</li>
<!-- Keyboard -->
<li class="menu-section">
<a href="/docs/nightly/api/page/keyboard/" class="api-section">
Keyboard
</a>
<ul>
<li>
<a href="/docs/nightly/api/page/keyboard/">
Keyboard
</a>
</li>
<li>
<a href="/docs/nightly/api/directive/keyboardAttach/">
keyboard-attach
</a>
</li>
</ul>
</li>
<!-- Lists -->
<li class="menu-section">
<a href="/docs/nightly/api/directive/ionList/" class="api-section">
Lists
</a>
<ul>
<li>
<a href="/docs/nightly/api/directive/ionList/">
ion-list
</a>
</li>
<li>
<a href="/docs/nightly/api/directive/ionItem/">
ion-item
</a>
</li>
<li>
<a href="/docs/nightly/api/directive/ionDeleteButton/">
ion-delete-button
</a>
</li>
<li>
<a href="/docs/nightly/api/directive/ionReorderButton/">
ion-reorder-button
</a>
</li>
<li>
<a href="/docs/nightly/api/directive/ionOptionButton/">
ion-option-button
</a>
</li>
<li>
<a href="/docs/nightly/api/directive/collectionRepeat/">
collection-repeat
</a>
</li>
<li>
<a href="/docs/nightly/api/service/$ionicListDelegate/">
$ionicListDelegate
</a>
</li>
</ul>
</li>
<!-- Loading -->
<li class="menu-section">
<a href="/docs/nightly/api/service/$ionicLoading/" class="api-section">
Loading
</a>
<ul>
<li>
<a href="/docs/nightly/api/service/$ionicLoading/">
$ionicLoading
</a>
</li>
</ul>
<ul>
<li>
<a href="/docs/nightly/api/object/$ionicLoadingConfig/">
$ionicLoadingConfig
</a>
</li>
</ul>
</li>
<!-- Modal -->
<li class="menu-section">
<a href="/docs/nightly/api/service/$ionicModal/" class="api-section">
Modal
</a>
<ul>
<li>
<a href="/docs/nightly/api/service/$ionicModal/">
$ionicModal
</a>
</li>
<li>
<a href="/docs/nightly/api/controller/ionicModal/">
ionicModal
</a>
</li>
</ul>
</li>
<!-- Navigation -->
<li class="menu-section">
<a href="/docs/nightly/api/directive/ionNavView/" class="api-section">
Navigation
</a>
<ul>
<li>
<a href="/docs/nightly/api/directive/ionNavView/">
ion-nav-view
</a>
</li>
<li>
<a href="/docs/nightly/api/directive/ionView/">
ion-view
</a>
</li>
<li>
<a href="/docs/nightly/api/directive/ionNavBar/">
ion-nav-bar
</a>
</li>
<li>
<a href="/docs/nightly/api/directive/ionNavBackButton/">
ion-nav-back-button
</a>
</li>
<li>
<a href="/docs/nightly/api/directive/ionNavButtons/">
ion-nav-buttons
</a>
</li>
<li>
<a href="/docs/nightly/api/directive/ionNavTitle/">
ion-nav-title
</a>
</li>
<li>
<a href="/docs/nightly/api/directive/navTransition/">
nav-transition
</a>
</li>
<li>
<a href="/docs/nightly/api/directive/navDirection/">
nav-direction
</a>
</li>
<li>
<a href="/docs/nightly/api/service/$ionicNavBarDelegate/">
$ionicNavBarDelegate
</a>
</li>
<li>
<a href="/docs/nightly/api/service/$ionicHistory/">
$ionicHistory
</a>
</li>
</ul>
</li>
<!-- Platform -->
<li class="menu-section">
<a href="/docs/nightly/api/service/$ionicPlatform/" class="api-section">
Platform
</a>
<ul>
<li>
<a href="/docs/nightly/api/service/$ionicPlatform/">
$ionicPlatform
</a>
</li>
</ul>
</li>
<!-- Popover -->
<li class="menu-section">
<a href="/docs/nightly/api/service/$ionicPopover/" class="api-section">
Popover
</a>
<ul>
<li>
<a href="/docs/nightly/api/service/$ionicPopover/">
$ionicPopover
</a>
</li>
<li>
<a href="/docs/nightly/api/controller/ionicPopover/">
ionicPopover
</a>
</li>
</ul>
</li>
<!-- Popup -->
<li class="menu-section">
<a href="/docs/nightly/api/service/$ionicPopup/" class="api-section">
Popup
</a>
<ul>
<li>
<a href="/docs/nightly/api/service/$ionicPopup/">
$ionicPopup
</a>
</li>
</ul>
</li>
<!-- Scroll -->
<li class="menu-section">
<a href="/docs/nightly/api/directive/ionScroll/" class="api-section">
Scroll
</a>
<ul>
<li>
<a href="/docs/nightly/api/directive/ionScroll/">
ion-scroll
</a>
</li>
<li>
<a href="/docs/nightly/api/directive/ionInfiniteScroll/">
ion-infinite-scroll
</a>
</li>
<li>
<a href="/docs/nightly/api/service/$ionicScrollDelegate/">
$ionicScrollDelegate
</a>
</li>
</ul>
</li>
<!-- Side Menus -->
<li class="menu-section">
<a href="/docs/nightly/api/directive/ionSideMenus/" class="api-section">
Side Menus
</a>
<ul>
<li>
<a href="/docs/nightly/api/directive/ionSideMenus/">
ion-side-menus
</a>
</li>
<li>
<a href="/docs/nightly/api/directive/ionSideMenuContent/">
ion-side-menu-content
</a>
</li>
<li>
<a href="/docs/nightly/api/directive/ionSideMenu/">
ion-side-menu
</a>
</li>
<li>
<a href="/docs/nightly/api/directive/exposeAsideWhen/">
expose-aside-when
</a>
</li>
<li>
<a href="/docs/nightly/api/directive/menuToggle/">
menu-toggle
</a>
</li>
<li>
<a href="/docs/nightly/api/directive/menuClose/">
menu-close
</a>
</li>
<li>
<a href="/docs/nightly/api/service/$ionicSideMenuDelegate/">
$ionicSideMenuDelegate
</a>
</li>
</ul>
</li>
<!-- Slide Box -->
<li class="menu-section">
<a href="/docs/nightly/api/directive/ionSlideBox/" class="api-section">
Slide Box
</a>
<ul>
<li>
<a href="/docs/nightly/api/directive/ionSlideBox/">
ion-slide-box
</a>
</li>
<li>
<a href="/docs/nightly/api/directive/ionSlidePager/">
ion-slide-pager
</a>
</li>
<li>
<a href="/docs/nightly/api/directive/ionSlide/">
ion-slide
</a>
</li>
<li>
<a href="/docs/nightly/api/service/$ionicSlideBoxDelegate/">
$ionicSlideBoxDelegate
</a>
</li>
</ul>
</li>
<!-- Spinner -->
<li class="menu-section">
<a href="/docs/nightly/api/directive/ionSpinner/" class="api-section">
Spinner
</a>
<ul>
<li>
<a href="/docs/nightly/api/directive/ionSpinner/">
ion-spinner
</a>
</li>
</ul>
</li>
<!-- Tabs -->
<li class="menu-section">
<a href="/docs/nightly/api/directive/ionTabs/" class="api-section">
Tabs
</a>
<ul>
<li>
<a href="/docs/nightly/api/directive/ionTabs/">
ion-tabs
</a>
</li>
<li>
<a href="/docs/nightly/api/directive/ionTab/">
ion-tab
</a>
</li>
<li>
<a href="/docs/nightly/api/service/$ionicTabsDelegate/">
$ionicTabsDelegate
</a>
</li>
</ul>
</li>
<!-- Tap -->
<li class="menu-section">
<a href="/docs/nightly/api/page/tap/" class="api-section">
Tap & Click
</a>
</li>
<!-- Utility -->
<li class="menu-section">
<a href="#" class="api-section">
Utility
</a>
<ul>
<li>
<a href="/docs/nightly/api/provider/$ionicConfigProvider/">
$ionicConfigProvider
</a>
</li>
<li>
<a href="/docs/nightly/api/utility/ionic.Platform/">
ionic.Platform
</a>
</li>
<li>
<a href="/docs/nightly/api/utility/ionic.DomUtil/">
ionic.DomUtil
</a>
</li>
<li>
<a href="/docs/nightly/api/utility/ionic.EventController/">
ionic.EventController
</a>
</li>
<li>
<a href="/docs/nightly/api/service/$ionicPosition/">
$ionicPosition
</a>
</li>
</ul>
</li>
</ul>
<ul class="nav left-menu">
<li class="menu-title">
<a href="/docs/cli/">CLI</a>
</li>
</ul>
<ul class="nav left-menu">
<li class="menu-title">
<a href="http://learn.ionicframework.com/">Learn Ionic</a>
</li>
</ul>
<ul class="nav left-menu">
<li class="menu-title">
<a href="/docs/guide/">Guide</a>
</li>
</ul>
<ul class="nav left-menu">
<li class="menu-title">
<a href="/docs/ionic-cli-faq/">FAQ</a>
</li>
</ul>
<ul class="nav left-menu">
<li class="menu-title">
<a href="/docs/getting-help/">Getting Help</a>
</li>
</ul>
<ul class="nav left-menu">
<li class="menu-title">
<a href="/docs/concepts/">Ionic Concepts</a>
</li>
</ul>
</div>
</div>
<div class="col-md-10 col-sm-9 main-content">
<h1>AngularJS Extensions</h1>
<p>Ionic is both a CSS framework and a Javascript UI library. Many components need Javascript in order to produce magic, though often components
can easily be used without coding through framework extensions such as our AngularIonic extensions.</p>
<p>Ionic follows the View Controller pattern popularized in such frameworks as Cocoa Touch. In the View Controller pattern, we treat different sections of the interface as child Views or even child View Controllers that contain other views. View Controllers then "power" the Views inside of them to provide interaction and UI functionality. A great example is the Tab Bar View Controller which processes taps on a Tab Bar to switch between a set of viewable panes.</p>
<p>Explore our API docs for detailed information on the View Controllers and Javascript utilities available in Ionic.</p>
</div>
</div>
</div>
<div class="pre-footer">
<div class="row ionic">
<div class="col-sm-6 col-a">
<h4>
<a href="/getting-started/">Getting started <span class="icon ion-arrow-right-c"></span></a>
</h4>
<p>
Learn more about how Ionic was built, why you should use it, and what's included. We'll cover
the basics and help you get started from the ground up.
</p>
</div>
<div class="col-sm-6 col-b">
<h4>
<a href="/docs/">Documentation <span class="icon ion-arrow-right-c"></span></a>
</h4>
<p>
What are you waiting for? Take a look and get coding! Our documentation covers all you need to know
to get an app up and running in minutes.
</p>
</div>
</div>
</div>
<footer class="footer">
<nav class="base-links">
<dl>
<dt>Docs</dt>
<dd><a href="http://ionicframework.com/docs/">Documentation</a></dd>
<dd><a href="http://ionicframework.com/getting-started/">Getting Started</a></dd>
<dd><a href="http://ionicframework.com/docs/overview/">Overview</a></dd>
<dd><a href="http://ionicframework.com/docs/components/">Components</a></dd>
<dd><a href="http://ionicframework.com/docs/api/">JavaScript</a></dd>
<dd><a href="http://ionicframework.com/submit-issue/">Submit Issue</a></dd>
</dl>
<dl>
<dt>Resources</dt>
<dd><a href="http://learn.ionicframework.com/">Learn Ionic</a></dd>
<dd><a href="http://ngcordova.com/">ngCordova</a></dd>
<dd><a href="http://ionicons.com/">Ionicons</a></dd>
<dd><a href="http://creator.ionic.io/">Creator</a></dd>
<dd><a href="http://showcase.ionicframework.com/">Showcase</a></dd>
<dd><a href="http://manning.com/wilken/?a_aid=ionicinactionben&a_bid=1f0a0e1d">The Ionic Book</a></dd>
</dl>
<dl>
<dt>Contribute</dt>
<dd><a href="http://forum.ionicframework.com/">Community Forum</a></dd>
<dd><a href="http://webchat.freenode.net/?randomnick=1&channels=%23ionic&uio=d4">Ionic IRC</a></dd>
<dd><a href="http://ionicframework.com/present-ionic/">Present Ionic</a></dd>
<dd><a href="http://ionicframework.com/contribute/">Contribute</a></dd>
<dd><a href="https://github.com/driftyco/ionic-learn/issues/new">Write for us</a></dd>
<dd><a href="http://shop.ionic.io/">Ionic Shop</a></dd>
</dl>
<dl class="small-break">
<dt>About</dt>
<dd><a href="http://blog.ionic.io/">Blog</a></dd>
<dd><a href="http://ionic.io">Services</a></dd>
<dd><a href="http://drifty.com">Company</a></dd>
<dd><a href="https://s3.amazonaws.com/ionicframework.com/logo-pack.zip">Logo Pack</a></dd>
<dd><a href="mailto:hi@ionicframework.com">Contact</a></dd>
<dd><a href="http://ionicframework.com/jobs/">Jobs</a></dd>
</dl>
<dl>
<dt>Connect</dt>
<dd><a href="https://twitter.com/IonicFramework">Twitter</a></dd>
<dd><a href="https://github.com/driftyco/ionic">GitHub</a></dd>
<dd><a href="https://www.facebook.com/ionicframework">Facebook</a></dd>
<dd><a href="https://plus.google.com/b/112280728135675018538/+Ionicframework/posts">Google+</a></dd>
<dd><a href="https://www.youtube.com/channel/UChYheBnVeCfhCmqZfCUdJQw">YouTube</a></dd>
<dd><a href="https://twitter.com/ionitron">Ionitron</a></dd>
</dl>
</nav>
<div class="newsletter row">
<div class="newsletter-container">
<div class="col-sm-7">
<div class="newsletter-text">Stay in the loop</div>
<div class="sign-up">Sign up to receive emails for the latest updates, features, and news on the framework.</div>
</div>
<form action="http://codiqa.createsend.com/t/t/s/jytylh/" method="post" class="input-group col-sm-5">
<input id="fieldEmail" name="cm-jytylh-jytylh" class="form-control" type="email" placeholder="Email" required />
<span class="input-group-btn">
<button class="btn btn-default" type="submit">Subscribe</button>
</span>
</form>
</div>
</div>
<div class="copy">
<div class="copy-container">
<p class="authors">
Code licensed under <a href="/docs/#license">MIT</a>.
Docs under <a href="https://tldrlegal.com/license/apache-license-2.0-(apache-2.0)">Apache 2</a>
<span>|</span>
© 2013-2015 <a href="http://drifty.com/">Drifty Co</a>
</p>
</div>
</div>
</footer>
<script type="text/javascript">
var _sf_async_config = { uid: 54141, domain: 'ionicframework.com', useCanonical: true };
(function() {
function loadChartbeat() {
window._sf_endpt = (new Date()).getTime();
var e = document.createElement('script');
e.setAttribute('language', 'javascript');
e.setAttribute('type', 'text/javascript');
e.setAttribute('src','//static.chartbeat.com/js/chartbeat.js');
document.body.appendChild(e);
};
var oldonload = window.onload;
window.onload = (typeof window.onload != 'function') ?
loadChartbeat : function() { oldonload(); loadChartbeat(); };
})();
</script>
<script src="//netdna.bootstrapcdn.com/bootstrap/3.0.2/js/bootstrap.min.js"></script>
<script src="/js/site.js?1"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/Cookies.js/0.4.0/cookies.min.js"></script>
<script>
$('.navbar .dropdown').on('show.bs.dropdown', function(e){
//$(this).find('.dropdown-menu').addClass('animated fadeInDown');
});
// ADD SLIDEUP ANIMATION TO DROPDOWN //
$('.navbar .dropdown').on('hide.bs.dropdown', function(e){
//$(this).find('.dropdown-menu').first().stop(true, true).slideUp(200);
//$(this).find('.dropdown-menu').removeClass('animated fadeInDown');
});
try {
var d = new Date('2015-03-20 05:00:00 +0000');
var ts = d.getTime();
var cd = Cookies.get('_iondj');
if(cd) {
cd = JSON.parse(atob(cd));
if(parseInt(cd.lp) < ts) {
var bt = document.getElementById('blog-badge');
bt.style.display = 'block';
}
cd.lp = ts;
} else {
var bt = document.getElementById('blog-badge');
bt.style.display = 'block';
cd = {
lp: ts
}
}
Cookies.set('_iondj', btoa(JSON.stringify(cd)));
} catch(e) {
}
</script>
<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/all.js#xfbml=1";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
</body>
</html>
|
squidlib/dist/javadoc/squidpony/squidgrid/gui/animation/Animation.html | devilbuddy/SquidLib | <!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_25) on Sat Sep 05 21:45:45 PDT 2015 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Animation (SquidLib 2.9.1)</title>
<meta name="date" content="2015-09-05">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Animation (SquidLib 2.9.1)";
}
}
catch(err) {
}
//-->
var methods = {"i0":6,"i1":6,"i2":6,"i3":6,"i4":6};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract 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="class-use/Animation.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../squidpony/squidgrid/gui/animation/AbstractAnimation.html" title="class in squidpony.squidgrid.gui.animation"><span class="typeNameLink">Prev Class</span></a></li>
<li><a href="../../../../squidpony/squidgrid/gui/animation/AnimationManager.html" title="class in squidpony.squidgrid.gui.animation"><span class="typeNameLink">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?squidpony/squidgrid/gui/animation/Animation.html" target="_top">Frames</a></li>
<li><a href="Animation.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li>Field | </li>
<li>Constr | </li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li>Constr | </li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">squidpony.squidgrid.gui.animation</div>
<h2 title="Interface Animation" class="title">Interface Animation</h2>
</div>
<div class="contentContainer">
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Superinterfaces:</dt>
<dd><a href="http://docs.oracle.com/javase/8/docs/api/java/awt/event/ActionListener.html?is-external=true" title="class or interface in java.awt.event">ActionListener</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/util/EventListener.html?is-external=true" title="class or interface in java.util">EventListener</a></dd>
</dl>
<dl>
<dt>All Known Implementing Classes:</dt>
<dd><a href="../../../../squidpony/squidgrid/gui/animation/AbstractAnimation.html" title="class in squidpony.squidgrid.gui.animation">AbstractAnimation</a>, <a href="../../../../squidpony/squidgrid/gui/animation/BumpAnimation.html" title="class in squidpony.squidgrid.gui.animation">BumpAnimation</a>, <a href="../../../../squidpony/squidgrid/gui/animation/SlideAnimation.html" title="class in squidpony.squidgrid.gui.animation">SlideAnimation</a>, <a href="../../../../squidpony/squidgrid/gui/animation/WiggleAnimation.html" title="class in squidpony.squidgrid.gui.animation">WiggleAnimation</a></dd>
</dl>
<hr>
<br>
<pre>public interface <a href="../../../../src-html/squidpony/squidgrid/gui/animation/Animation.html#line.18">Animation</a>
extends <a href="http://docs.oracle.com/javase/8/docs/api/java/awt/event/ActionListener.html?is-external=true" title="class or interface in java.awt.event">ActionListener</a></pre>
<div class="block">Controls animations of images. Intended to be used with a Timer to activate
the animation frames.
The component for the animation must be set before the animation will
function properly. All coordinates will be relative to the coordinate plane
of the provided component.</div>
<dl>
<dt><span class="simpleTagLabel">Author:</span></dt>
<dd>Eben Howard - http://squidpony.com - howard@squidpony.com</dd>
</dl>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method.summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="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="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract 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><a href="http://docs.oracle.com/javase/8/docs/api/java/awt/image/BufferedImage.html?is-external=true" title="class or interface in java.awt.image">BufferedImage</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../squidpony/squidgrid/gui/animation/Animation.html#getImage--">getImage</a></span>()</code>
<div class="block">Returns the static image associated with this animation.</div>
</td>
</tr>
<tr id="i1" class="rowColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/8/docs/api/java/awt/Point.html?is-external=true" title="class or interface in java.awt">Point</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../squidpony/squidgrid/gui/animation/Animation.html#getLocation--">getLocation</a></span>()</code>
<div class="block">Returns the coordinate of the top left corner of the animation.</div>
</td>
</tr>
<tr id="i2" class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../squidpony/squidgrid/gui/animation/Animation.html#isActive--">isActive</a></span>()</code>
<div class="block">Returns true if the component should continue to be allowed to animate.</div>
</td>
</tr>
<tr id="i3" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../squidpony/squidgrid/gui/animation/Animation.html#remove--">remove</a></span>()</code>
<div class="block">Removes this animation from the component it's in.</div>
</td>
</tr>
<tr id="i4" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../squidpony/squidgrid/gui/animation/Animation.html#setComponent-javax.swing.JComponent-">setComponent</a></span>(<a href="http://docs.oracle.com/javase/8/docs/api/javax/swing/JComponent.html?is-external=true" title="class or interface in javax.swing">JComponent</a> component)</code>
<div class="block">Sets the Component in which this animation will take place.</div>
</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.java.awt.event.ActionListener">
<!-- -->
</a>
<h3>Methods inherited from interface java.awt.event.<a href="http://docs.oracle.com/javase/8/docs/api/java/awt/event/ActionListener.html?is-external=true" title="class or interface in java.awt.event">ActionListener</a></h3>
<code><a href="http://docs.oracle.com/javase/8/docs/api/java/awt/event/ActionListener.html?is-external=true#actionPerformed-java.awt.event.ActionEvent-" title="class or interface in java.awt.event">actionPerformed</a></code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method.detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="isActive--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>isActive</h4>
<pre>boolean <a href="../../../../src-html/squidpony/squidgrid/gui/animation/Animation.html#line.27">isActive</a>()</pre>
<div class="block">Returns true if the component should continue to be allowed to animate.
Animations on a loop will always return true so some outside mechanism
must decide when to terminate them.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>true if the animation is still in action</dd>
</dl>
</li>
</ul>
<a name="getImage--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getImage</h4>
<pre><a href="http://docs.oracle.com/javase/8/docs/api/java/awt/image/BufferedImage.html?is-external=true" title="class or interface in java.awt.image">BufferedImage</a> <a href="../../../../src-html/squidpony/squidgrid/gui/animation/Animation.html#line.39">getImage</a>()</pre>
<div class="block">Returns the static image associated with this animation. Will typically
be the ending image, but this may vary based on the animation style.
This method is intended to be called when converting an animation into a
static image.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the image of the animation's final state</dd>
</dl>
</li>
</ul>
<a name="setComponent-javax.swing.JComponent-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setComponent</h4>
<pre>void <a href="../../../../src-html/squidpony/squidgrid/gui/animation/Animation.html#line.47">setComponent</a>(<a href="http://docs.oracle.com/javase/8/docs/api/javax/swing/JComponent.html?is-external=true" title="class or interface in javax.swing">JComponent</a> component)</pre>
<div class="block">Sets the Component in which this animation will take place. This must be
set for the animation to function.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>component</code> - the GUI element to display in</dd>
</dl>
</li>
</ul>
<a name="remove--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>remove</h4>
<pre>void <a href="../../../../src-html/squidpony/squidgrid/gui/animation/Animation.html#line.52">remove</a>()</pre>
<div class="block">Removes this animation from the component it's in.</div>
</li>
</ul>
<a name="getLocation--">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>getLocation</h4>
<pre><a href="http://docs.oracle.com/javase/8/docs/api/java/awt/Point.html?is-external=true" title="class or interface in java.awt">Point</a> <a href="../../../../src-html/squidpony/squidgrid/gui/animation/Animation.html#line.59">getLocation</a>()</pre>
<div class="block">Returns the coordinate of the top left corner of the animation.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the location coordinate</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="class-use/Animation.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../squidpony/squidgrid/gui/animation/AbstractAnimation.html" title="class in squidpony.squidgrid.gui.animation"><span class="typeNameLink">Prev Class</span></a></li>
<li><a href="../../../../squidpony/squidgrid/gui/animation/AnimationManager.html" title="class in squidpony.squidgrid.gui.animation"><span class="typeNameLink">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?squidpony/squidgrid/gui/animation/Animation.html" target="_top">Frames</a></li>
<li><a href="Animation.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li>Field | </li>
<li>Constr | </li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li>Constr | </li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright © 2012–2015. All rights reserved.</small></p>
</body>
</html>
|
_includes/portfolio_grid.html | Impensa/VolkerStepholt | <!-- Portfolio Grid Section -->
<section id="portfolio" class="bg-light-gray">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">Refrenzen</h2>
<h3 class="section-subheading text-muted">Was wir in vergangenheit gemacht habe.</h3>
</div>
</div>
<div class="row">
{% for post in site.posts %}
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="#portfolioModal{{ post.modal-id }}" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/{{ post.thumbnail }}" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>{{ post.title }}</h4>
<p class="text-muted">{{ post.subtitle }}</p>
</div>
</div>
{% endfor %}
</div>
</div>
</section> |
share/doc/hadoop/api/org/apache/hadoop/metrics2/class-use/MetricsRecord.html | jimmypw/hadoop | <!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_45) on Fri Sep 05 23:33:04 UTC 2014 -->
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<TITLE>
Uses of Interface org.apache.hadoop.metrics2.MetricsRecord (Apache Hadoop Main 2.5.1 API)
</TITLE>
<META NAME="date" CONTENT="2014-09-05">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Interface org.apache.hadoop.metrics2.MetricsRecord (Apache Hadoop Main 2.5.1 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/hadoop/metrics2/MetricsRecord.html" title="interface in org.apache.hadoop.metrics2"><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/hadoop/metrics2//class-useMetricsRecord.html" target="_top"><B>FRAMES</B></A>
<A HREF="MetricsRecord.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 Interface<br>org.apache.hadoop.metrics2.MetricsRecord</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/hadoop/metrics2/MetricsRecord.html" title="interface in org.apache.hadoop.metrics2">MetricsRecord</A></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="#org.apache.hadoop.metrics2"><B>org.apache.hadoop.metrics2</B></A></TD>
<TD>Metrics 2.0 </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="#org.apache.hadoop.metrics2.sink"><B>org.apache.hadoop.metrics2.sink</B></A></TD>
<TD>Builtin metrics sinks </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="#org.apache.hadoop.metrics2.util"><B>org.apache.hadoop.metrics2.util</B></A></TD>
<TD>General helpers for implementing source and sinks </TD>
</TR>
</TABLE>
<P>
<A NAME="org.apache.hadoop.metrics2"><!-- --></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/hadoop/metrics2/MetricsRecord.html" title="interface in org.apache.hadoop.metrics2">MetricsRecord</A> in <A HREF="../../../../../org/apache/hadoop/metrics2/package-summary.html">org.apache.hadoop.metrics2</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/hadoop/metrics2/package-summary.html">org.apache.hadoop.metrics2</A> with parameters of type <A HREF="../../../../../org/apache/hadoop/metrics2/MetricsRecord.html" title="interface in org.apache.hadoop.metrics2">MetricsRecord</A></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>MetricsFilter.</B><B><A HREF="../../../../../org/apache/hadoop/metrics2/MetricsFilter.html#accepts(org.apache.hadoop.metrics2.MetricsRecord)">accepts</A></B>(<A HREF="../../../../../org/apache/hadoop/metrics2/MetricsRecord.html" title="interface in org.apache.hadoop.metrics2">MetricsRecord</A> record)</CODE>
<BR>
Whether to accept the record</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>MetricsSink.</B><B><A HREF="../../../../../org/apache/hadoop/metrics2/MetricsSink.html#putMetrics(org.apache.hadoop.metrics2.MetricsRecord)">putMetrics</A></B>(<A HREF="../../../../../org/apache/hadoop/metrics2/MetricsRecord.html" title="interface in org.apache.hadoop.metrics2">MetricsRecord</A> record)</CODE>
<BR>
Put a metrics record in the sink</TD>
</TR>
</TABLE>
<P>
<A NAME="org.apache.hadoop.metrics2.sink"><!-- --></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/hadoop/metrics2/MetricsRecord.html" title="interface in org.apache.hadoop.metrics2">MetricsRecord</A> in <A HREF="../../../../../org/apache/hadoop/metrics2/sink/package-summary.html">org.apache.hadoop.metrics2.sink</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/hadoop/metrics2/sink/package-summary.html">org.apache.hadoop.metrics2.sink</A> with parameters of type <A HREF="../../../../../org/apache/hadoop/metrics2/MetricsRecord.html" title="interface in org.apache.hadoop.metrics2">MetricsRecord</A></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>GraphiteSink.</B><B><A HREF="../../../../../org/apache/hadoop/metrics2/sink/GraphiteSink.html#putMetrics(org.apache.hadoop.metrics2.MetricsRecord)">putMetrics</A></B>(<A HREF="../../../../../org/apache/hadoop/metrics2/MetricsRecord.html" title="interface in org.apache.hadoop.metrics2">MetricsRecord</A> record)</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>FileSink.</B><B><A HREF="../../../../../org/apache/hadoop/metrics2/sink/FileSink.html#putMetrics(org.apache.hadoop.metrics2.MetricsRecord)">putMetrics</A></B>(<A HREF="../../../../../org/apache/hadoop/metrics2/MetricsRecord.html" title="interface in org.apache.hadoop.metrics2">MetricsRecord</A> record)</CODE>
<BR>
</TD>
</TR>
</TABLE>
<P>
<A NAME="org.apache.hadoop.metrics2.util"><!-- --></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/hadoop/metrics2/MetricsRecord.html" title="interface in org.apache.hadoop.metrics2">MetricsRecord</A> in <A HREF="../../../../../org/apache/hadoop/metrics2/util/package-summary.html">org.apache.hadoop.metrics2.util</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/hadoop/metrics2/util/package-summary.html">org.apache.hadoop.metrics2.util</A> with parameters of type <A HREF="../../../../../org/apache/hadoop/metrics2/MetricsRecord.html" title="interface in org.apache.hadoop.metrics2">MetricsRecord</A></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> org.apache.hadoop.metrics2.util.MetricsCache.Record</CODE></FONT></TD>
<TD><CODE><B>MetricsCache.</B><B><A HREF="../../../../../org/apache/hadoop/metrics2/util/MetricsCache.html#update(org.apache.hadoop.metrics2.MetricsRecord)">update</A></B>(<A HREF="../../../../../org/apache/hadoop/metrics2/MetricsRecord.html" title="interface in org.apache.hadoop.metrics2">MetricsRecord</A> mr)</CODE>
<BR>
Update the cache and return the current cache record</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> org.apache.hadoop.metrics2.util.MetricsCache.Record</CODE></FONT></TD>
<TD><CODE><B>MetricsCache.</B><B><A HREF="../../../../../org/apache/hadoop/metrics2/util/MetricsCache.html#update(org.apache.hadoop.metrics2.MetricsRecord, boolean)">update</A></B>(<A HREF="../../../../../org/apache/hadoop/metrics2/MetricsRecord.html" title="interface in org.apache.hadoop.metrics2">MetricsRecord</A> mr,
boolean includingTags)</CODE>
<BR>
Update the cache and return the current cached record</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/hadoop/metrics2/MetricsRecord.html" title="interface in org.apache.hadoop.metrics2"><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/hadoop/metrics2//class-useMetricsRecord.html" target="_top"><B>FRAMES</B></A>
<A HREF="MetricsRecord.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 © 2014 <a href="http://www.apache.org">Apache Software Foundation</a>. All Rights Reserved.
</BODY>
</HTML>
|
share/doc/hadoop/hadoop-hdfs-httpfs/apidocs/org/apache/hadoop/lib/service/hadoop/package-use.html | devansh2015/hadoop-2.4.1 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_26) on Sat Jun 21 06:31:59 UTC 2014 -->
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<TITLE>
Uses of Package org.apache.hadoop.lib.service.hadoop (Apache Hadoop HttpFS 2.4.1 API)
</TITLE>
<META NAME="date" CONTENT="2014-06-21">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Package org.apache.hadoop.lib.service.hadoop (Apache Hadoop HttpFS 2.4.1 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"> <FONT CLASS="NavBarFont1">Class</FONT> </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/hadoop/lib/service/hadoop/package-use.html" target="_top"><B>FRAMES</B></A>
<A HREF="package-use.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 Package<br>org.apache.hadoop.lib.service.hadoop</B></H2>
</CENTER>
No usage of org.apache.hadoop.lib.service.hadoop
<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"> <FONT CLASS="NavBarFont1">Class</FONT> </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/hadoop/lib/service/hadoop/package-use.html" target="_top"><B>FRAMES</B></A>
<A HREF="package-use.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 © 2014 <a href="http://www.apache.org">Apache Software Foundation</a>. All Rights Reserved.
</BODY>
</HTML>
|
www/sayfalar/1162.html | relmas/velaye | <html><head><META http-equiv="content-type" content="text/html;charset=iso-8859-9"/><meta name="viewport" content="width=device-width, initial-scale=1"><title>ac</title> <link rel="stylesheet" href="css/jquery.mobile-1.2.0.css" /><style type="text/css">.content-primary {text-align: left;}#header h3 {text-align: left;}</style><script src="js/jquery.js"></script><script src="js/jquery.mobile-1.2.0.js"></script></head><body><div id="page1" data-role="page"><div id="header" data-position="fixed" data-role="header" data-theme="e"><h3><strong>SA'DÜDDÝN ÝSMAÝL EFENDÝ
</strong></h3><a class="ui-btn-right" href="../index.html" data-role="button" data-icon="home">Geri</a></div><div data-role="content" align = "center"><div class="content-primary">Ýstanbul Þehremini'de Davutpaþa Camii yakýnlarýnda Hekimoðlu Ali Paþa tarafýndan
yaptýrýlan Abdal Yakub Dede Tekkesinin son þeyhi. 1825 yýlýnda doðdu. Babasý, Sünbül
Sinan Efendi türbedarý
Þeyh Hamdullah Efendidir. Hocasý ve Kayýnpederi olan Þeyh
Mehmed Nasreddin el-Kadiri'nin vefatýndan sonra 1855 yýlýnda Abdal Yakub Dede
tekkesinin meþihatýna tayin edildi. Vefat ettiði 1910 yýlýna kadar bu görevi sürdürdü. Kabri
Hekimoðlu Ali Paþa Camii bahçesinde set üzerindedir.
<br></div></body></html>
|
reference/Infectious-disease-13.html | sachsmc/sachsmc.github.io | <!-- Generated by pkgdown: do not edit by hand -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>A cluster randomised controlled trial of two rounds of mass drug administration in Zanzibar, a malaria pre-elimination setting-high coverage and safety, but no significant impact on transmission (2018) <em>BMC medicine</em> — Infectious-disease-13 • sachsmc</title>
<!-- favicons -->
<link rel="icon" type="image/png" sizes="16x16" href="../favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="../favicon-32x32.png">
<link rel="apple-touch-icon" type="image/png" sizes="180x180" href="../apple-touch-icon.png" />
<link rel="apple-touch-icon" type="image/png" sizes="120x120" href="../apple-touch-icon-120x120.png" />
<link rel="apple-touch-icon" type="image/png" sizes="76x76" href="../apple-touch-icon-76x76.png" />
<link rel="apple-touch-icon" type="image/png" sizes="60x60" href="../apple-touch-icon-60x60.png" />
<!-- jquery -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script>
<!-- Bootstrap -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/bootswatch/3.3.7/sandstone/bootstrap.min.css" rel="stylesheet" crossorigin="anonymous" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha256-U5ZEeKfGNOja007MMD3YBI0A3OSZOQbeG6z2f2Y0hu8=" crossorigin="anonymous"></script>
<!-- Font Awesome icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" integrity="sha256-eZrrJcwDc/3uDhsdt61sL2oOBY362qM3lon1gyExkL0=" crossorigin="anonymous" />
<!-- clipboard.js -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/clipboard.js/2.0.4/clipboard.min.js" integrity="sha256-FiZwavyI2V6+EXO1U+xzLG3IKldpiTFf3153ea9zikQ=" crossorigin="anonymous"></script>
<!-- sticky kit -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/sticky-kit/1.1.3/sticky-kit.min.js" integrity="sha256-c4Rlo1ZozqTPE2RLuvbusY3+SU1pQaJC0TjuhygMipw=" crossorigin="anonymous"></script>
<!-- pkgdown -->
<link href="../pkgdown.css" rel="stylesheet">
<script src="../pkgdown.js"></script>
<meta property="og:title" content="A cluster randomised controlled trial of two rounds of mass drug administration in Zanzibar, a malaria pre-elimination setting-high coverage and safety, but no significant impact on transmission (2018) <em>BMC medicine</em> — Infectious-disease-13" />
<meta property="og:description" content="Morris, U; Msellem, MI; Mkali, H; Islam, A; Aydin-Schmidt, B; Jovel, I; Shija, SJ; Khamis, M; Ali, SM; Hodzic, L; Magnusson, E; Poirot, E; Bennett, A; Sachs, MC; Tarning, J; Mårtensson, A; Ali, AS; Björkman, A" />
<meta property="og:image" content="/logo.png" />
<meta name="twitter:card" content="summary" />
<!-- mathjax -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/MathJax.js" integrity="sha256-nvJJv9wWKEm88qvoQl9ekL2J+k/RWIsaSScxxlsrv8k=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/config/TeX-AMS-MML_HTMLorMML.js" integrity="sha256-84DKXVJXs0/F8OTMzX4UR909+jtl4G7SPypPavF+GfA=" crossorigin="anonymous"></script>
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container template-reference-topic">
<header>
<div class="navbar navbar-default navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<span class="navbar-brand">
<a class="navbar-link" href="../index.html">sachsmc</a>
<span class="version label label-default" data-toggle="tooltip" data-placement="bottom" title="Released version">1983.9.7</span>
</span>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li>
<a href="../index.html">
<span class="fa fa-home fa-lg"></span>
</a>
</li>
<li>
<a href="../reference/index.html">Publications</a>
</li>
<li>
<a href="../articles/software.html">Software</a>
</li>
<li>
<a href="../articles/talks.html">Talks</a>
</li>
<li>
<a href="../articles/index.html">Blog</a>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false">
Articles
<span class="caret"></span>
</a>
<ul class="dropdown-menu" role="menu">
<li>
<a href="../articles/git.html">git and github</a>
</li>
<li>
<a href="../articles/knit.html">Introduction to `knitr`</a>
</li>
<li>
<a href="../articles/research.html">Organizing your approach to a research study</a>
</li>
<li>
<a href="../articles/software.html">Open Source Software</a>
</li>
</ul>
</li>
</ul>
<ul class="nav navbar-nav navbar-right">
</ul>
</div><!--/.nav-collapse -->
</div><!--/.container -->
</div><!--/.navbar -->
</header>
<div class="row">
<div class="col-md-9 contents">
<div class="page-header">
<h1>A cluster randomised controlled trial of two rounds of mass drug administration in Zanzibar, a malaria pre-elimination setting-high coverage and safety, but no significant impact on transmission (2018) <em>BMC medicine</em></h1>
<div class="hidden name"><code>Infectious-disease-13.Rd</code></div>
</div>
<div class="ref-description">
<p>Morris, U; Msellem, MI; Mkali, H; Islam, A; Aydin-Schmidt, B; Jovel, I; Shija, SJ; Khamis, M; Ali, SM; Hodzic, L; Magnusson, E; Poirot, E; Bennett, A; Sachs, MC; Tarning, J; Mårtensson, A; Ali, AS; Björkman, A</p>
</div>
<h2 class="hasAnchor" id="details"><a class="anchor" href="#details"></a>Details</h2>
<p>BMC medicine (2018). 215:16. <a href='https://doi.org/10.1186/s12916-018-1202-8'>https://doi.org/10.1186/s12916-018-1202-8</a></p>
</div>
<div class="col-md-3 hidden-xs hidden-sm" id="sidebar">
<h2>Contents</h2>
<ul class="nav nav-pills nav-stacked">
<li><a href="#details">Details</a></li>
</ul>
</div>
</div>
<footer>
<div class="copyright">
<p>Developed by Michael Sachs.</p>
</div>
<div class="pkgdown">
<p>Site built with <a href="https://pkgdown.r-lib.org/">pkgdown</a> 1.3.0.</p>
</div>
</footer>
</div>
</body>
</html>
|
doc/core/Lucene.Net.Index.Compression.html | Mpdreamz/lucene.net | <html dir="LTR">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=Windows-1252" />
<meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5" />
<title>Lucene.Net.Index.Compression</title>
<xml>
</xml>
<link rel="stylesheet" type="text/css" href="MSDN.css" />
</head>
<body id="bodyID" class="dtBODY">
<div id="nsbanner">
<div id="bannerrow1">
<table class="bannerparthead" cellspacing="0">
<tr id="hdr">
<td class="runninghead">Apache Lucene.Net 2.4.0 Class Library API</td>
<td class="product">
</td>
</tr>
</table>
</div>
<div id="TitleRow">
<h1 class="dtH1">Lucene.Net.Index.Compression Namespace</h1>
</div>
</div>
<div id="nstext">
<p>
<a href="Lucene.Net.Index.CompressionHierarchy.html">Namespace hierarchy</a>
</p>
<h3 class="dtH3">Classes</h3>
<div class="tablediv">
<table class="dtTABLE" cellspacing="0">
<tr valign="top">
<th width="50%">Class</th>
<th width="50%">Description</th>
</tr>
<tr valign="top">
<td width="50%">
<a href="Lucene.Net.Index.Compression.SharpZipLibAdapter.html">SharpZipLibAdapter</a>
</td>
<td width="50%"> </td>
</tr>
</table>
</div>
</div>
</body>
</html> |
docs/dev/xref/dollar/api/VarKey.html | neilellis/dollar | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head><meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<title>VarKey xref</title>
<link type="text/css" rel="stylesheet" href="../../stylesheet.css" />
</head>
<body>
<pre>
<a class="jxr_linenumber" name="L1" href="#L1">1</a> <em class="jxr_comment">/*</em>
<a class="jxr_linenumber" name="L2" href="#L2">2</a> <em class="jxr_comment"> * Copyright (c) 2014-2017 Neil Ellis</em>
<a class="jxr_linenumber" name="L3" href="#L3">3</a> <em class="jxr_comment"> *</em>
<a class="jxr_linenumber" name="L4" href="#L4">4</a> <em class="jxr_comment"> * Licensed under the Apache License, Version 2.0 (the "License");</em>
<a class="jxr_linenumber" name="L5" href="#L5">5</a> <em class="jxr_comment"> * you may not use this file except in compliance with the License.</em>
<a class="jxr_linenumber" name="L6" href="#L6">6</a> <em class="jxr_comment"> * You may obtain a copy of the License at</em>
<a class="jxr_linenumber" name="L7" href="#L7">7</a> <em class="jxr_comment"> *</em>
<a class="jxr_linenumber" name="L8" href="#L8">8</a> <em class="jxr_comment"> * <a href="http://www.apache.org/licenses/LICENSE-2." target="alexandria_uri">http://www.apache.org/licenses/LICENSE-2.</a>0</em>
<a class="jxr_linenumber" name="L9" href="#L9">9</a> <em class="jxr_comment"> *</em>
<a class="jxr_linenumber" name="L10" href="#L10">10</a> <em class="jxr_comment"> * Unless required by applicable law or agreed to in writing, software</em>
<a class="jxr_linenumber" name="L11" href="#L11">11</a> <em class="jxr_comment"> * distributed under the License is distributed on an "AS IS" BASIS,</em>
<a class="jxr_linenumber" name="L12" href="#L12">12</a> <em class="jxr_comment"> * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.</em>
<a class="jxr_linenumber" name="L13" href="#L13">13</a> <em class="jxr_comment"> * See the License for the specific language governing permissions and</em>
<a class="jxr_linenumber" name="L14" href="#L14">14</a> <em class="jxr_comment"> * limitations under the License.</em>
<a class="jxr_linenumber" name="L15" href="#L15">15</a> <em class="jxr_comment"> */</em>
<a class="jxr_linenumber" name="L16" href="#L16">16</a>
<a class="jxr_linenumber" name="L17" href="#L17">17</a> <strong class="jxr_keyword">package</strong> dollar.api;
<a class="jxr_linenumber" name="L18" href="#L18">18</a>
<a class="jxr_linenumber" name="L19" href="#L19">19</a> <strong class="jxr_keyword">import</strong> com.google.common.base.Objects;
<a class="jxr_linenumber" name="L20" href="#L20">20</a> <strong class="jxr_keyword">import</strong> org.jetbrains.annotations.NotNull;
<a class="jxr_linenumber" name="L21" href="#L21">21</a>
<a class="jxr_linenumber" name="L22" href="#L22">22</a> <strong class="jxr_keyword">import</strong> java.util.UUID;
<a class="jxr_linenumber" name="L23" href="#L23">23</a>
<a class="jxr_linenumber" name="L24" href="#L24">24</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">class</strong> <a href="../../dollar/api/VarKey.html">VarKey</a> {
<a class="jxr_linenumber" name="L25" href="#L25">25</a>
<a class="jxr_linenumber" name="L26" href="#L26">26</a> @NotNull
<a class="jxr_linenumber" name="L27" href="#L27">27</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> <a href="../../dollar/api/VarKey.html">VarKey</a> COLLECTED = of(<span class="jxr_string">"collected"</span>);
<a class="jxr_linenumber" name="L28" href="#L28">28</a> @NotNull
<a class="jxr_linenumber" name="L29" href="#L29">29</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> <a href="../../dollar/api/VarKey.html">VarKey</a> COUNT = of(<span class="jxr_string">"count"</span>);
<a class="jxr_linenumber" name="L30" href="#L30">30</a> @NotNull
<a class="jxr_linenumber" name="L31" href="#L31">31</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> <a href="../../dollar/api/VarKey.html">VarKey</a> IT = of(<span class="jxr_string">"it"</span>);
<a class="jxr_linenumber" name="L32" href="#L32">32</a> @NotNull
<a class="jxr_linenumber" name="L33" href="#L33">33</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> <a href="../../dollar/api/VarKey.html">VarKey</a> ONE = of(1);
<a class="jxr_linenumber" name="L34" href="#L34">34</a> @NotNull
<a class="jxr_linenumber" name="L35" href="#L35">35</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> <a href="../../dollar/api/VarKey.html">VarKey</a> PREVIOUS = of(<span class="jxr_string">"previous"</span>);
<a class="jxr_linenumber" name="L36" href="#L36">36</a> @NotNull
<a class="jxr_linenumber" name="L37" href="#L37">37</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> <a href="../../dollar/api/VarKey.html">VarKey</a> STAR = of(<span class="jxr_string">"*"</span>);
<a class="jxr_linenumber" name="L38" href="#L38">38</a> @NotNull
<a class="jxr_linenumber" name="L39" href="#L39">39</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> <a href="../../dollar/api/VarKey.html">VarKey</a> THIS = of(<span class="jxr_string">"this"</span>);
<a class="jxr_linenumber" name="L40" href="#L40">40</a>
<a class="jxr_linenumber" name="L41" href="#L41">41</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> <a href="../../dollar/api/VarKey.html">VarKey</a> TYPE = of(<span class="jxr_string">"errorClass"</span>);
<a class="jxr_linenumber" name="L42" href="#L42">42</a>
<a class="jxr_linenumber" name="L43" href="#L43">43</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> <a href="../../dollar/api/VarKey.html">VarKey</a> MSG = of(<span class="jxr_string">"msg"</span>);
<a class="jxr_linenumber" name="L44" href="#L44">44</a> @NotNull
<a class="jxr_linenumber" name="L45" href="#L45">45</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> <a href="../../dollar/api/VarKey.html">VarKey</a> THREE = of(3);
<a class="jxr_linenumber" name="L46" href="#L46">46</a> @NotNull
<a class="jxr_linenumber" name="L47" href="#L47">47</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> <a href="../../dollar/api/VarKey.html">VarKey</a> TWO = of(2);
<a class="jxr_linenumber" name="L48" href="#L48">48</a> @NotNull
<a class="jxr_linenumber" name="L49" href="#L49">49</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">final</strong> String key;
<a class="jxr_linenumber" name="L50" href="#L50">50</a>
<a class="jxr_linenumber" name="L51" href="#L51">51</a>
<a class="jxr_linenumber" name="L52" href="#L52">52</a> <strong class="jxr_keyword">private</strong> <a href="../../dollar/api/VarKey.html">VarKey</a>(@NotNull String key) {
<a class="jxr_linenumber" name="L53" href="#L53">53</a> <strong class="jxr_keyword">this</strong>.key = removePrefix(key);
<a class="jxr_linenumber" name="L54" href="#L54">54</a> }
<a class="jxr_linenumber" name="L55" href="#L55">55</a>
<a class="jxr_linenumber" name="L56" href="#L56">56</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">static</strong> <a href="../../dollar/api/VarKey.html">VarKey</a> of(@NotNull String key) {
<a class="jxr_linenumber" name="L57" href="#L57">57</a> <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">new</strong> <a href="../../dollar/api/VarKey.html">VarKey</a>(key);
<a class="jxr_linenumber" name="L58" href="#L58">58</a> }
<a class="jxr_linenumber" name="L59" href="#L59">59</a>
<a class="jxr_linenumber" name="L60" href="#L60">60</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">static</strong> <a href="../../dollar/api/VarKey.html">VarKey</a> of(<strong class="jxr_keyword">int</strong> i) {
<a class="jxr_linenumber" name="L61" href="#L61">61</a> <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">new</strong> <a href="../../dollar/api/VarKey.html">VarKey</a>(String.valueOf(i));
<a class="jxr_linenumber" name="L62" href="#L62">62</a> }
<a class="jxr_linenumber" name="L63" href="#L63">63</a>
<a class="jxr_linenumber" name="L64" href="#L64">64</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">static</strong> <a href="../../dollar/api/VarKey.html">VarKey</a> of(@NotNull <a href="../../dollar/api/Value.html">Value</a> variableName) {
<a class="jxr_linenumber" name="L65" href="#L65">65</a> <strong class="jxr_keyword">return</strong> VarKey.of(variableName.toString());
<a class="jxr_linenumber" name="L66" href="#L66">66</a> }
<a class="jxr_linenumber" name="L67" href="#L67">67</a>
<a class="jxr_linenumber" name="L68" href="#L68">68</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">static</strong> <a href="../../dollar/api/VarKey.html">VarKey</a> random() {
<a class="jxr_linenumber" name="L69" href="#L69">69</a> <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">new</strong> <a href="../../dollar/api/VarKey.html">VarKey</a>(UUID.randomUUID().toString());
<a class="jxr_linenumber" name="L70" href="#L70">70</a> }
<a class="jxr_linenumber" name="L71" href="#L71">71</a>
<a class="jxr_linenumber" name="L72" href="#L72">72</a> @NotNull
<a class="jxr_linenumber" name="L73" href="#L73">73</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">static</strong> String removePrefix(@NotNull String key) {
<a class="jxr_linenumber" name="L74" href="#L74">74</a> <strong class="jxr_keyword">if</strong> (key.startsWith(<span class="jxr_string">"_"</span>)) {
<a class="jxr_linenumber" name="L75" href="#L75">75</a> <strong class="jxr_keyword">return</strong> key.substring(1);
<a class="jxr_linenumber" name="L76" href="#L76">76</a> } <strong class="jxr_keyword">else</strong> {
<a class="jxr_linenumber" name="L77" href="#L77">77</a> <strong class="jxr_keyword">return</strong> key;
<a class="jxr_linenumber" name="L78" href="#L78">78</a> }
<a class="jxr_linenumber" name="L79" href="#L79">79</a> }
<a class="jxr_linenumber" name="L80" href="#L80">80</a>
<a class="jxr_linenumber" name="L81" href="#L81">81</a> @NotNull
<a class="jxr_linenumber" name="L82" href="#L82">82</a> <strong class="jxr_keyword">public</strong> String asString() {
<a class="jxr_linenumber" name="L83" href="#L83">83</a> <strong class="jxr_keyword">return</strong> key;
<a class="jxr_linenumber" name="L84" href="#L84">84</a> }
<a class="jxr_linenumber" name="L85" href="#L85">85</a>
<a class="jxr_linenumber" name="L86" href="#L86">86</a> @Override
<a class="jxr_linenumber" name="L87" href="#L87">87</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">int</strong> hashCode() {
<a class="jxr_linenumber" name="L88" href="#L88">88</a> <strong class="jxr_keyword">return</strong> Objects.hashCode(key);
<a class="jxr_linenumber" name="L89" href="#L89">89</a> }
<a class="jxr_linenumber" name="L90" href="#L90">90</a>
<a class="jxr_linenumber" name="L91" href="#L91">91</a> @Override
<a class="jxr_linenumber" name="L92" href="#L92">92</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">boolean</strong> equals(Object o) {
<a class="jxr_linenumber" name="L93" href="#L93">93</a> <strong class="jxr_keyword">if</strong> (<strong class="jxr_keyword">this</strong> == o) <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">true</strong>;
<a class="jxr_linenumber" name="L94" href="#L94">94</a> <strong class="jxr_keyword">if</strong> (o == <strong class="jxr_keyword">null</strong> || getClass() != o.getClass()) <strong class="jxr_keyword">return</strong> false;
<a class="jxr_linenumber" name="L95" href="#L95">95</a> <a href="../../dollar/api/VarKey.html">VarKey</a> varKey = (VarKey) o;
<a class="jxr_linenumber" name="L96" href="#L96">96</a> <strong class="jxr_keyword">return</strong> Objects.equal(key, varKey.key);
<a class="jxr_linenumber" name="L97" href="#L97">97</a> }
<a class="jxr_linenumber" name="L98" href="#L98">98</a>
<a class="jxr_linenumber" name="L99" href="#L99">99</a> @NotNull
<a class="jxr_linenumber" name="L100" href="#L100">100</a> <strong class="jxr_keyword">public</strong> String toString() {
<a class="jxr_linenumber" name="L101" href="#L101">101</a> <strong class="jxr_keyword">return</strong> key;
<a class="jxr_linenumber" name="L102" href="#L102">102</a> }
<a class="jxr_linenumber" name="L103" href="#L103">103</a>
<a class="jxr_linenumber" name="L104" href="#L104">104</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">boolean</strong> isAlphaNumeric() {
<a class="jxr_linenumber" name="L105" href="#L105">105</a> <strong class="jxr_keyword">return</strong> key.matches(<span class="jxr_string">"[a-zA-Z0-9]+"</span>);
<a class="jxr_linenumber" name="L106" href="#L106">106</a> }
<a class="jxr_linenumber" name="L107" href="#L107">107</a>
<a class="jxr_linenumber" name="L108" href="#L108">108</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">boolean</strong> isNumeric() {
<a class="jxr_linenumber" name="L109" href="#L109">109</a> <strong class="jxr_keyword">return</strong> key.matches(<span class="jxr_string">"[0-9]+"</span>);
<a class="jxr_linenumber" name="L110" href="#L110">110</a> }
<a class="jxr_linenumber" name="L111" href="#L111">111</a>
<a class="jxr_linenumber" name="L112" href="#L112">112</a>
<a class="jxr_linenumber" name="L113" href="#L113">113</a> }
</pre>
<hr/>
<div id="footer">Copyright © 2017. All rights reserved.</div>
</body>
</html>
|
plugins/testcasegenerator-plugin/src/test/resources/testdata/Paragraphs/043 remove-add formatted Text start_variant_1/expected_old.html | crawljax/crawljax | <html><head><link rel="stylesheet" type="text/css" href="https://cdn.rawgit.com/saltlab/art/master/plugins/testcasegenerator-plugin/core/src/main/resources/daisydiff/css/diff.css"></link></head>
<p><u changeType="diff-removed-tag-overlay" class="diff-removed-tag" overlayId="1"><daisydiff class="diff-html-removed" id="removed-diff-0" previous="first-diff" changeId="removed-diff-0" next="last-diff">This</daisydiff></u><daisydiff class="diff-html-removed" previous="first-diff" changeId="removed-diff-0" next="last-diff"> </daisydiff>is a sample paragraph that will be used for tests.</p>
</html> |
external-modules/springtester/app/views/errors/500.html | play1-maven-plugin/play1-maven-test-projects | <!DOCTYPE html>
<html>
<head>
<title>Application error</title>
<meta http-equiv="Content-Type" content="text/html; charset=${_response_encoding}"/>
</head>
<body>
#{if play.mode.name() == 'DEV'}
#{500 exception /}
#{/if}
#{else}
<h1>Oops, an error occured</h1>
#{if exception instanceof play.exceptions.PlayException}
<p>
This exception has been logged with id <strong>${exception.id}</strong>.
</p>
#{/if}
#{/else}
</body>
</html>
|
_includes/aside.html | panda-team/panda-team.github.io | <aside class="bg-dark">
<div class="container text-center">
<div class="call-to-action">
<h2>Quer saber mais?</h2>
<a href="#contact" class="btn btn-default btn-xl wow tada">Entre em contato</a>
</div>
</div>
</aside>
|
node-angular-express-mysql/public/index.html | k2lab/node-demo | <!doctype html>
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.3.14/angular.min.js"></script>
</head>
<body>
<div id="container" ng-app="app" ng-controller="controller">
<h4>AngularJS with NodeJs connecting to MySql.</h4><hr>
<table>
<tr ng-repeat="row in profile_pictures">
<td>{{row.profile_picture }}</td>
</tr>
</table>
</div>
<script src="core.js"></script>
</body>
</html>
|
static/dashs/www.appudo.com/d/pub/api/docs_1.3.1/docsets/Appudo.docset/Contents/Resources/Documents/Classes/Async.html | Appudo/Appudo.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<title>Async Class Reference</title>
<link rel="stylesheet" type="text/css" href="../../css/jazzy.css" />
<link rel="stylesheet" type="text/css" href="../../css/highlight.css" />
<meta charset='utf-8'>
<script src="../../js/jquery.min.js" defer></script>
<script src="../../js/jazzy.js" defer></script>
</head>
<body>
<a name="//apple_ref/swift/Class/Async" class="dashAnchor"></a>
<a title="Async Class Reference"></a>
<header>
<div class="content-wrapper">
<p><a href="../index.html">Appudo Docs</a></p>
<p class="header-right"><a href="https://www.github.com/Appudo"><img src="../../img/gh.png"/>View on GitHub</a></p>
</div>
</header>
<div class="content-wrapper">
<p id="breadcrumbs">
<a href="../index.html">Appudo Reference</a>
<img id="carat" src="../../img/carat.png" />
Async Class Reference
</p>
</div>
<div class="content-wrapper">
<nav class="sidebar">
<ul class="nav-groups">
<li class="nav-group-name">
<a href="../Classes.html">Classes</a>
<ul class="nav-group-tasks">
<li class="nav-group-task">
<a href="../Classes/Async.html">Async</a>
</li>
<li class="nav-group-task">
<a href="../Classes/FileItemList.html">FileItemList</a>
</li>
<li class="nav-group-task">
<a href="../Classes/HTTPClient.html">HTTPClient</a>
</li>
<li class="nav-group-task">
<a href="../Classes/HTTPClient/HTTPVersion.html">– HTTPVersion</a>
</li>
<li class="nav-group-task">
<a href="../Classes/ManagedCharBuffer.html">ManagedCharBuffer</a>
</li>
<li class="nav-group-task">
<a href="../Classes/SQLQry.html">SQLQry</a>
</li>
<li class="nav-group-task">
<a href="../Classes/TimedArray.html">TimedArray</a>
</li>
<li class="nav-group-task">
<a href="../Classes/TimedArray/TimedArrayError.html">– TimedArrayError</a>
</li>
<li class="nav-group-task">
<a href="../Classes/UserAsync.html">UserAsync</a>
</li>
<li class="nav-group-task">
<a href="../Classes/UserList.html">UserList</a>
</li>
</ul>
</li>
<li class="nav-group-name">
<a href="../Enums.html">Enumerations</a>
<ul class="nav-group-tasks">
<li class="nav-group-task">
<a href="../Enums/ControlResult.html">ControlResult</a>
</li>
<li class="nav-group-task">
<a href="../Enums.html#/s:9libappudo14ErrorEventTypeO">ErrorEventType</a>
</li>
<li class="nav-group-task">
<a href="../Enums.html#/s:9libappudo15HTTPRequestTypeO">HTTPRequestType</a>
</li>
<li class="nav-group-task">
<a href="../Enums/InetAddr.html">InetAddr</a>
</li>
<li class="nav-group-task">
<a href="../Enums.html#/s:9libappudo12InetAddrTypeO">InetAddrType</a>
</li>
<li class="nav-group-task">
<a href="../Enums.html#/s:9libappudo19InternalAppudoErrorO">InternalAppudoError</a>
</li>
<li class="nav-group-task">
<a href="../Enums.html#/s:9libappudo25InternalHTTPRequestStatusO">InternalHTTPRequestStatus</a>
</li>
<li class="nav-group-task">
<a href="../Enums.html#/s:9libappudo4LangO">Lang</a>
</li>
<li class="nav-group-task">
<a href="../Enums.html#/s:9libappudo8LinkTypeO">LinkType</a>
</li>
<li class="nav-group-task">
<a href="../Enums/UploadResult.html">UploadResult</a>
</li>
</ul>
</li>
<li class="nav-group-name">
<a href="../Extensions.html">Extensions</a>
<ul class="nav-group-tasks">
<li class="nav-group-task">
<a href="../Extensions/Date.html">Date</a>
</li>
</ul>
</li>
<li class="nav-group-name">
<a href="../Functions.html">Functions</a>
<ul class="nav-group-tasks">
<li class="nav-group-task">
<a href="../Functions.html#/s:9libappudo2lnopxSgAA10AsyncValueVyACGlF"><!(_:)</a>
</li>
<li class="nav-group-task">
<a href="../Functions.html#/s:9libappudo2lnoixSgAA10AsyncErrorVz_AA0C5ValueVyACGtlF"><!(_:_:)</a>
</li>
<li class="nav-group-task">
<a href="../Functions.html#/s:9libappudo2lqopSbyycF"><?(_:)</a>
</li>
<li class="nav-group-task">
<a href="../Functions.html#/s:9libappudo2qgoiSbAA10AsyncValueVyxGz_yAA0C0CctAA0C7ReverseRzlF">?>(_:_:)</a>
</li>
<li class="nav-group-task">
<a href="../Functions.html#/s:9libappudo2qgoiSbAA10AsyncValueVyxGz_yyctAA0C7ReverseRzlF">?>(_:_:)</a>
</li>
<li class="nav-group-task">
<a href="../Functions.html#/s:9libappudo12AlphasortASCs5Int32VAA13_UserListItemV1a_AF1btF">AlphasortASC(a:b:)</a>
</li>
<li class="nav-group-task">
<a href="../Functions.html#/s:9libappudo12AlphasortASCs5Int32VAA8FileItemV1a_AF1btF">AlphasortASC(a:b:)</a>
</li>
<li class="nav-group-task">
<a href="../Functions.html#/s:9libappudo12AlphasortDSCs5Int32VAA13_UserListItemV1a_AF1btF">AlphasortDSC(a:b:)</a>
</li>
<li class="nav-group-task">
<a href="../Functions.html#/s:9libappudo12AlphasortDSCs5Int32VAA8FileItemV1a_AF1btF">AlphasortDSC(a:b:)</a>
</li>
<li class="nav-group-task">
<a href="../Functions.html#/s:9libappudo13appudo_assertySbyXK_SSyXKs12StaticStringVSutF">appudo_assert(_:_:_:_:)</a>
</li>
<li class="nav-group-task">
<a href="../Functions.html#/s:9libappudo4sendyypd_tF">send(_:)</a>
</li>
</ul>
</li>
<li class="nav-group-name">
<a href="../Protocols.html">Protocols</a>
<ul class="nav-group-tasks">
<li class="nav-group-task">
<a href="../Protocols.html#/s:9libappudo15DataWriteSourceP">DataWriteSource</a>
</li>
<li class="nav-group-task">
<a href="../Protocols/FastCodable.html">FastCodable</a>
</li>
<li class="nav-group-task">
<a href="../Protocols/FileLockable.html">FileLockable</a>
</li>
<li class="nav-group-task">
<a href="../Protocols/FileSeekable.html">FileSeekable</a>
</li>
<li class="nav-group-task">
<a href="../Protocols/FileSendSource.html">FileSendSource</a>
</li>
</ul>
</li>
<li class="nav-group-name">
<a href="../Structs.html">Structures</a>
<ul class="nav-group-tasks">
<li class="nav-group-task">
<a href="../Structs/ACME.html">ACME</a>
</li>
<li class="nav-group-task">
<a href="../Structs/ACME/RequestFlags.html">– RequestFlags</a>
</li>
<li class="nav-group-task">
<a href="../Structs/AccountID.html">AccountID</a>
</li>
<li class="nav-group-task">
<a href="../Structs/AppudoError.html">AppudoError</a>
</li>
<li class="nav-group-task">
<a href="../Structs/AsyncError.html">AsyncError</a>
</li>
<li class="nav-group-task">
<a href="../Structs.html#/s:9libappudo10AsyncTimerV">AsyncTimer</a>
</li>
<li class="nav-group-task">
<a href="../Structs/AsyncValue.html">AsyncValue</a>
</li>
<li class="nav-group-task">
<a href="../Structs/Base64.html">Base64</a>
</li>
<li class="nav-group-task">
<a href="../Structs/BaseMenuItem.html">BaseMenuItem</a>
</li>
<li class="nav-group-task">
<a href="../Structs/CHASH.html">CHASH</a>
</li>
<li class="nav-group-task">
<a href="../Structs/CHASH/DigestFlags.html">– DigestFlags</a>
</li>
<li class="nav-group-task">
<a href="../Structs/CHASH/Item.html">– Item</a>
</li>
<li class="nav-group-task">
<a href="../Structs/Cert.html">Cert</a>
</li>
<li class="nav-group-task">
<a href="../Structs/Cert/CertFlags.html">– CertFlags</a>
</li>
<li class="nav-group-task">
<a href="../Structs/CertID.html">CertID</a>
</li>
<li class="nav-group-task">
<a href="../Structs/CharBufferData.html">CharBufferData</a>
</li>
<li class="nav-group-task">
<a href="../Structs/ControlData.html">ControlData</a>
</li>
<li class="nav-group-task">
<a href="../Structs/ControlInfo.html">ControlInfo</a>
</li>
<li class="nav-group-task">
<a href="../Structs.html#/s:9libappudo3DirV">Dir</a>
</li>
<li class="nav-group-task">
<a href="../Structs/Disk.html">Disk</a>
</li>
<li class="nav-group-task">
<a href="../Structs.html#/s:9libappudo8DiskStatV">DiskStat</a>
</li>
<li class="nav-group-task">
<a href="../Structs.html#/s:9libappudo6DomainV">Domain</a>
</li>
<li class="nav-group-task">
<a href="../Structs/ErrorEvent.html">ErrorEvent</a>
</li>
<li class="nav-group-task">
<a href="../Structs.html#/s:9libappudo5EventV">Event</a>
</li>
<li class="nav-group-task">
<a href="../Structs/FileItem.html">FileItem</a>
</li>
<li class="nav-group-task">
<a href="../Structs/FileItem/Flag.html">– Flag</a>
</li>
<li class="nav-group-task">
<a href="../Structs/FileItem/RenameFlags.html">– RenameFlags</a>
</li>
<li class="nav-group-task">
<a href="../Structs/FileItem/MKPathFlags.html">– MKPathFlags</a>
</li>
<li class="nav-group-task">
<a href="../Structs/FileItem/Mode.html">– Mode</a>
</li>
<li class="nav-group-task">
<a href="../Structs/FileItem/AccessMode.html">– AccessMode</a>
</li>
<li class="nav-group-task">
<a href="../Structs/FileSeekFlag.html">FileSeekFlag</a>
</li>
<li class="nav-group-task">
<a href="../Structs/FileStat.html">FileStat</a>
</li>
<li class="nav-group-task">
<a href="../Structs.html#/s:9libappudo8FileViewV">FileView</a>
</li>
<li class="nav-group-task">
<a href="../Structs/Group.html">Group</a>
</li>
<li class="nav-group-task">
<a href="../Structs/GroupID.html">GroupID</a>
</li>
<li class="nav-group-task">
<a href="../Structs.html#/s:9libappudo9GroupInfoV">GroupInfo</a>
</li>
<li class="nav-group-task">
<a href="../Structs/HMAC.html">HMAC</a>
</li>
<li class="nav-group-task">
<a href="../Structs/HMAC/DigestFlags.html">– DigestFlags</a>
</li>
<li class="nav-group-task">
<a href="../Structs/HMAC/Item.html">– Item</a>
</li>
<li class="nav-group-task">
<a href="../Structs/HTTPRequestStatus.html">HTTPRequestStatus</a>
</li>
<li class="nav-group-task">
<a href="../Structs/Hex.html">Hex</a>
</li>
<li class="nav-group-task">
<a href="../Structs/Link.html">Link</a>
</li>
<li class="nav-group-task">
<a href="../Structs/Mail.html">Mail</a>
</li>
<li class="nav-group-task">
<a href="../Structs/Mail.html#/s:9libappudo4MailV8AuthTypeO">– AuthType</a>
</li>
<li class="nav-group-task">
<a href="../Structs.html#/s:9libappudo6MemVarV">MemVar</a>
</li>
<li class="nav-group-task">
<a href="../Structs/Memory.html">Memory</a>
</li>
<li class="nav-group-task">
<a href="../Structs/PDF.html">PDF</a>
</li>
<li class="nav-group-task">
<a href="../Structs/PDF/PDFCreateFlags.html">– PDFCreateFlags</a>
</li>
<li class="nav-group-task">
<a href="../Structs/PDF.html#/s:9libappudo3PDFV13PDFSignDigestO">– PDFSignDigest</a>
</li>
<li class="nav-group-task">
<a href="../Structs/PDF/PDFSignFlags.html">– PDFSignFlags</a>
</li>
<li class="nav-group-task">
<a href="../Structs.html#/s:9libappudo4PageV">Page</a>
</li>
<li class="nav-group-task">
<a href="../Structs/Proc.html">Proc</a>
</li>
<li class="nav-group-task">
<a href="../Structs/Rand.html">Rand</a>
</li>
<li class="nav-group-task">
<a href="../Structs.html#/s:9libappudo4RoleV">Role</a>
</li>
<li class="nav-group-task">
<a href="../Structs/Run.html">Run</a>
</li>
<li class="nav-group-task">
<a href="../Structs/RunID.html">RunID</a>
</li>
<li class="nav-group-task">
<a href="../Structs/SQLQryErrCode.html">SQLQryErrCode</a>
</li>
<li class="nav-group-task">
<a href="../Structs/SQLQryValue.html">SQLQryValue</a>
</li>
<li class="nav-group-task">
<a href="../Structs.html#/s:9libappudo7SettingV">Setting</a>
</li>
<li class="nav-group-task">
<a href="../Structs/SettingVar.html">SettingVar</a>
</li>
<li class="nav-group-task">
<a href="../Structs/Socket.html">Socket</a>
</li>
<li class="nav-group-task">
<a href="../Structs/StaticDomain.html">StaticDomain</a>
</li>
<li class="nav-group-task">
<a href="../Structs/System.html">System</a>
</li>
<li class="nav-group-task">
<a href="../Structs/Timer.html">Timer</a>
</li>
<li class="nav-group-task">
<a href="../Structs/URL.html">URL</a>
</li>
<li class="nav-group-task">
<a href="../Structs/User.html">User</a>
</li>
<li class="nav-group-task">
<a href="../Structs/UserID.html">UserID</a>
</li>
<li class="nav-group-task">
<a href="../Structs.html#/s:9libappudo8UserInfoV">UserInfo</a>
</li>
<li class="nav-group-task">
<a href="../Structs/UserListItem.html">UserListItem</a>
</li>
<li class="nav-group-task">
<a href="../Structs/WatchEvent.html">WatchEvent</a>
</li>
<li class="nav-group-task">
<a href="../Structs/WatchFlag.html">WatchFlag</a>
</li>
<li class="nav-group-task">
<a href="../Structs/zBase32.html">zBase32</a>
</li>
</ul>
</li>
</ul>
</nav>
<article class="main-content">
<section>
<section class="section">
<h1>Async</h1>
<div class="declaration">
<div class="language">
<pre class="highlight swift"><code><span class="kd">public</span> <span class="kd">class</span> <span class="kt">Async</span> <span class="p">:</span> <span class="kt">AsyncBase</span></code></pre>
</div>
</div>
<p>Most of the APIs of Appudo are async. There are multiple data structures for the async handling.
AsyncValue is the common struct value stored on the stack.
The function returning the AsyncValue can return this value as pseudo async or append a heap based real async instance.</p>
<div class="aside aside-see-also">
<p class="aside-title">See also</p>
<!(_:)
</div>
<div class="aside aside-see-also">
<p class="aside-title">See also</p>
<?(_:)
</div>
<div class="aside aside-see-also">
<p class="aside-title">See also</p>
?>(<em>:</em>:)
</div>
</section>
<section class="section task-group-section">
<div class="task-group">
<ul>
<li class="item">
<div>
<code>
<a name="/s:9libappudo5AsyncC3anyACSgyFZ"></a>
<a name="//apple_ref/swift/Method/any()" class="dashAnchor"></a>
<a class="token" href="#/s:9libappudo5AsyncC3anyACSgyFZ">any()</a>
</code>
</div>
<div class="height-container">
<div class="pointer-container"></div>
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Block until any or all asyncs have finished and return one if any.</p>
</div>
<div class="declaration">
<h4>Declaration</h4>
<div class="language">
<p class="aside-title">Swift</p>
<pre class="highlight swift"><code><span class="kd">public</span> <span class="kd">static</span> <span class="kd">func</span> <span class="nf">any</span><span class="p">()</span> <span class="o">-></span> <span class="kt">Async</span><span class="p">?</span></code></pre>
</div>
</div>
</section>
</div>
</li>
<li class="item">
<div>
<code>
<a name="/s:9libappudo5AsyncC3allyyFZ"></a>
<a name="//apple_ref/swift/Method/all()" class="dashAnchor"></a>
<a class="token" href="#/s:9libappudo5AsyncC3allyyFZ">all()</a>
</code>
</div>
<div class="height-container">
<div class="pointer-container"></div>
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Block until all asyncs have finished.</p>
</div>
<div class="declaration">
<h4>Declaration</h4>
<div class="language">
<p class="aside-title">Swift</p>
<pre class="highlight swift"><code><span class="kd">public</span> <span class="kd">static</span> <span class="kd">func</span> <span class="nf">all</span><span class="p">()</span></code></pre>
</div>
</div>
</section>
</div>
</li>
<li class="item">
<div>
<code>
<a name="/s:9libappudo5AsyncC5lateryyFZ"></a>
<a name="//apple_ref/swift/Method/later()" class="dashAnchor"></a>
<a class="token" href="#/s:9libappudo5AsyncC5lateryyFZ">later()</a>
</code>
</div>
<div class="height-container">
<div class="pointer-container"></div>
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Run all functions to call later that do not depend on an async.</p>
</div>
<div class="declaration">
<h4>Declaration</h4>
<div class="language">
<p class="aside-title">Swift</p>
<pre class="highlight swift"><code><span class="kd">public</span> <span class="kd">static</span> <span class="kd">func</span> <span class="nf">later</span><span class="p">()</span></code></pre>
</div>
</div>
</section>
</div>
</li>
</ul>
</div>
</section>
</section>
<section id="footer">
<p>© 2018 <a class="link" href="" target="_blank" rel="external">source@appudo.com</a>. All rights reserved. (Last updated: 2018-07-02)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.3</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
</section>
</article>
</div>
</body>
</div>
</html>
|
java/java-impl/src/fileTemplates/code/JavaDoc Method.java.html | jwren/intellij-community | <html>
<body>
<table width="100%" border="0" cellpadding="5" cellspacing="0" style="border-collapse: collapse">
<tr>
<td><font face="verdana" size="-1">
Defines template which used to generate JavaDoc for the methods, e.g.
when <i>Add Javadoc</i> intention action is applied.<br><br>
Along with Java expressions and comments, you can also use the predefined variables
that will then be expanded like macros into corresponding values.<br><br>
By using the <i>#parse</i> directive, you can include templates from the <b>Includes</b> tab. To include a template,
specify the full name of the template as a parameter in quotation marks (for example, <i>#parse("File Header.java")</i>.
</font></td>
</tr>
</table>
<table width="100%" border="0" cellpadding="5" cellspacing="0" style="border-collapse: collapse">
<tr>
<td colspan="3"><font face="verdana" size="-1">Predefined variables take the following values:</font></td>
</tr>
<tr>
<td valign="top"><nobr><font face="verdana" size="-2"><b>${PARAMS}</b></font></nobr></td>
<td width="10"> </td>
<td width="100%" valign="top"><font face="verdana" size="-1">List of the parameter names</font></td>
</tr>
<tr>
<td valign="top"><nobr><font face="verdana" size="-2"><b>${TYPE_PARAMS}</b></font></nobr></td>
<td width="10"> </td>
<td width="100%" valign="top"><font face="verdana" size="-1">List of the type parameter names</font></td>
</tr>
<tr>
<td valign="top"><nobr><font face="verdana" size="-2"><b>${THROWS}</b></font></nobr></td>
<td width="10"> </td>
<td width="100%" valign="top"><font face="verdana" size="-1">List of the thrown exceptions</font></td>
</tr>
<tr>
<td valign="top"><nobr><font face="verdana" size="-2"><b>${RETURN_TYPE}</b></font></nobr></td>
<td width="10"> </td>
<td width="100%" valign="top"><font face="verdana" size="-1">Type returned by the method</font></td>
</tr>
<tr>
<td valign="top"><nobr><font face="verdana" size="-2"><b>${ELEMENT_NAME}</b></font></nobr></td>
<td width="10"> </td>
<td width="100%" valign="top"><font face="verdana" size="-1">Name of the class member which is owner for the generated JavaDoc</font></td>
</tr>
<tr>
<td valign="top"><nobr><font face="verdana" size="-2"><b>${CONTAINING_CLASS}</b></font></nobr></td>
<td width="10"> </td>
<td width="100%" valign="top"><font face="verdana" size="-1">Name of the parent class</font></td>
</tr>
<!--Copied from file-->
<tr>
<td valign="top"><nobr><font face="verdana" size="-2"><b>${PACKAGE_NAME}</b></font></nobr></td>
<td width="10"> </td>
<td width="100%" valign="top"><font face="verdana" size="-1">Name of the package in which a new enum is created</font></td>
</tr>
<tr>
<td valign="top"><nobr><font face="verdana" size="-2"><b>${NAME}</b></font></nobr></td>
<td width="10"> </td>
<td width="100%" valign="top"><font face="verdana" size="-1">Name of the new enum specified by you in the <b>Create New Class</b> dialog</font></td>
</tr>
<tr>
<td valign="top"><nobr><font face="verdana" size="-2"><b>${USER}</b></font></nobr></td>
<td width="10"> </td>
<td width="100%" valign="top"><font face="verdana" size="-1">System login name of the current user</font></td>
</tr>
<tr>
<td valign="top"><nobr><font face="verdana" size="-2"><b>${DATE}</b></font></nobr></td>
<td width="10"> </td>
<td width="100%" valign="top"><font face="verdana" size="-1">Current system date</font></td>
</tr>
<tr>
<td valign="top"><nobr><font face="verdana" size="-2"><b>${TIME}</b></font></nobr></td>
<td width="10"> </td>
<td width="100%" valign="top"><font face="verdana" size="-1">Current system time</font></td>
</tr>
<tr>
<td valign="top"><nobr><font face="verdana" size="-2"><b>${YEAR}</b></font></nobr></td>
<td width="10"> </td>
<td width="100%" valign="top"><font face="verdana" size="-1">Current year</font></td>
</tr>
<tr>
<td valign="top"><nobr><font face="verdana" size="-2"><b>${MONTH}</b></font></nobr></td>
<td width="10"> </td>
<td width="100%" valign="top"><font face="verdana" size="-1">Current month</font></td>
</tr>
<tr>
<td valign="top"><nobr><font face="verdana" size="-2"><b>${MONTH_NAME_SHORT}</b></font></nobr></td>
<td width="10"> </td>
<td width="100%" valign="top"><font face="verdana" size="-1">First 3 letters of the current month name (Jan, Feb, and so on)</font></td>
</tr>
<tr>
<td valign="top"><nobr><font face="verdana" size="-2"><b>${MONTH_NAME_FULL}</b></font></nobr></td>
<td width="10"> </td>
<td width="100%" valign="top"><font face="verdana" size="-1">Full name of the current month (January, February, and so on)</font></td>
</tr>
<tr>
<td valign="top"><nobr><font face="verdana" size="-2"><b>${DAY}</b></font></nobr></td>
<td width="10"> </td>
<td width="100%" valign="top"><font face="verdana" size="-1">Current day of the month</font></td>
</tr>
<tr>
<td valign="top"><nobr><font face="verdana" size="-2"><b>${HOUR}</b></font></nobr></td>
<td width="10"> </td>
<td width="100%" valign="top"><font face="verdana" size="-1">Current hour</font></td>
</tr>
<tr>
<td valign="top"><nobr><font face="verdana" size="-2"><b>${MINUTE}</b></font></nobr></td>
<td width="10"> </td>
<td width="100%" valign="top"><font face="verdana" size="-1">Current minute</font></td>
</tr>
<tr>
<td valign="top"><nobr><font face="verdana" size="-2"><b>${PROJECT_NAME}</b></font></nobr></td>
<td width="10"> </td>
<td width="100%" valign="top"><font face="verdana" size="-1">Name of the current project</font></td>
</tr>
</table>
</body>
</html> |
generators/client/templates/angular/src/main/webapp/app/admin/metrics/_metrics.component.html | baskeboler/generator-jhipster | <div>
<h2>
<span jhiTranslate="metrics.title">Application Metrics</span>
<button class="btn btn-primary float-xs-right" (click)="refresh()">
<span class="fa fa-refresh"></span> <span jhiTranslate="metrics.refresh.button">Refresh</span>
</button>
</h2>
<h3 jhiTranslate="metrics.jvm.title">JVM Metrics</h3>
<div class="row" *ngIf="!updatingMetrics">
<div class="col-md-4">
<b jhiTranslate="metrics.jvm.memory.title">Memory</b>
<p><span jhiTranslate="metrics.jvm.memory.total">Total Memory</span> ({{metrics.gauges['jvm.memory.total.used'].value / 1000000 | number:'1.0-0'}}M / {{metrics.gauges['jvm.memory.total.max'].value / 1000000 | number:'1.0-0'}}M)</p>
<ngb-progressbar type="success" [max]="metrics.gauges['jvm.memory.total.max'].value" [value]="metrics.gauges['jvm.memory.total.used'].value" [striped]="true" [animated]="true">
<span>{{metrics.gauges['jvm.memory.total.used'].value * 100 / metrics.gauges['jvm.memory.total.max'].value | number:'1.0-0'}}%</span>
</ngb-progressbar>
<p><span jhiTranslate="metrics.jvm.memory.heap">Heap Memory</span> ({{metrics.gauges['jvm.memory.heap.used'].value / 1000000 | number:'1.0-0'}}M / {{metrics.gauges['jvm.memory.heap.max'].value / 1000000 | number:'1.0-0'}}M)</p>
<ngb-progressbar [max]="metrics.gauges['jvm.memory.heap.max'].value" [value]="metrics.gauges['jvm.memory.heap.used'].value" [striped]="true" [animated]="true" type="success">
<span>{{metrics.gauges['jvm.memory.heap.used'].value * 100 / metrics.gauges['jvm.memory.heap.max'].value | number:'1.0-0'}}%</span>
</ngb-progressbar>
<p><span jhiTranslate="metrics.jvm.memory.nonheap">Non-Heap Memory</span> ({{metrics.gauges['jvm.memory.non-heap.used'].value / 1000000 | number:'1.0-0'}}M / {{metrics.gauges['jvm.memory.non-heap.committed'].value / 1000000 | number:'1.0-0'}}M)</p>
<ngb-progressbar [max]="metrics.gauges['jvm.memory.non-heap.committed'].value" [value]="metrics.gauges['jvm.memory.non-heap.used'].value" [striped]="true" [animated]="true" type="success">
<span>{{metrics.gauges['jvm.memory.non-heap.used'].value * 100 / metrics.gauges['jvm.memory.non-heap.committed'].value | number:'1.0-0'}}%</span>
</ngb-progressbar>
</div>
<div class="col-md-4">
<b jhiTranslate="metrics.jvm.threads.title">Threads</b> (Total: {{metrics.gauges['jvm.threads.count'].value}}) <a class="hand" (click)="refreshThreadDumpData()" data-toggle="modal" data-target="#threadDump"><i class="fa fa-eye"></i></a>
<p><span jhiTranslate="metrics.jvm.threads.runnable">Runnable</span> {{metrics.gauges['jvm.threads.runnable.count'].value}}</p>
<ngb-progressbar [value]="metrics.gauges['jvm.threads.runnable.count'].value" [max]="metrics.gauges['jvm.threads.count'].value" [striped]="true" [animated]="true" type="success">
<span>{{metrics.gauges['jvm.threads.runnable.count'].value * 100 / metrics.gauges['jvm.threads.count'].value | number:'1.0-0'}}%</span>
</ngb-progressbar>
<p><span jhiTranslate="metrics.jvm.threads.timedwaiting">Timed Waiting</span> ({{metrics.gauges['jvm.threads.timed_waiting.count'].value}})</p>
<ngb-progressbar [value]="metrics.gauges['jvm.threads.timed_waiting.count'].value" [max]="metrics.gauges['jvm.threads.count'].value" [striped]="true" [animated]="true" type="warning">
<span>{{metrics.gauges['jvm.threads.timed_waiting.count'].value * 100 / metrics.gauges['jvm.threads.count'].value | number:'1.0-0'}}%</span>
</ngb-progressbar>
<p><span jhiTranslate="metrics.jvm.threads.waiting">Waiting</span> ({{metrics.gauges['jvm.threads.waiting.count'].value}})</p>
<ngb-progressbar [value]="metrics.gauges['jvm.threads.waiting.count'].value" [max]="metrics.gauges['jvm.threads.count'].value" [striped]="true" [animated]="true" type="warning">
<span>{{metrics.gauges['jvm.threads.waiting.count'].value * 100 / metrics.gauges['jvm.threads.count'].value | number:'1.0-0'}}%</span>
</ngb-progressbar>
<p><span jhiTranslate="metrics.jvm.threads.blocked">Blocked</span> ({{metrics.gauges['jvm.threads.blocked.count'].value}})</p>
<ngb-progressbar [value]="metrics.gauges['jvm.threads.blocked.count'].value" [max]="metrics.gauges['jvm.threads.count'].value" [striped]="true" [animated]="true" type="success">
<span>{{metrics.gauges['jvm.threads.blocked.count'].value * 100 / metrics.gauges['jvm.threads.count'].value | number:'1.0-0'}}%</span>
</ngb-progressbar>
</div>
<div class="col-md-4">
<b jhiTranslate="metrics.jvm.gc.title">Garbage collections</b>
<div class="row">
<div class="col-md-9" jhiTranslate="metrics.jvm.gc.marksweepcount">Mark Sweep count</div>
<div class="col-md-3 text-xs-right">{{metrics.gauges['jvm.garbage.PS-MarkSweep.count'].value}}</div>
</div>
<div class="row">
<div class="col-md-9" jhiTranslate="metrics.jvm.gc.marksweeptime">Mark Sweep time</div>
<div class="col-md-3 text-xs-right">{{metrics.gauges['jvm.garbage.PS-MarkSweep.time'].value}}ms</div>
</div>
<div class="row">
<div class="col-md-9" jhiTranslate="metrics.jvm.gc.scavengecount">Scavenge count</div>
<div class="col-md-3 text-xs-right">{{metrics.gauges['jvm.garbage.PS-Scavenge.count'].value}}</div>
</div>
<div class="row">
<div class="col-md-9" jhiTranslate="metrics.jvm.gc.scavengetime">Scavenge time</div>
<div class="col-md-3 text-xs-right">{{metrics.gauges['jvm.garbage.PS-Scavenge.time'].value}}ms</div>
</div>
</div>
</div>
<div class="well well-lg" *ngIf="updatingMetrics" jhiTranslate="metrics.updating">Updating...</div>
<h3 jhiTranslate="metrics.jvm.http.title">HTTP requests (events per second)</h3>
<p *ngIf="metrics.counters">
<span jhiTranslate="metrics.jvm.http.active">Active requests</span> <b>{{metrics.counters['com.codahale.metrics.servlet.InstrumentedFilter.activeRequests'].count | number:'1.0-0'}}</b> - <span jhiTranslate="metrics.jvm.http.total">Total requests</span> <b>{{metrics.timers['com.codahale.metrics.servlet.InstrumentedFilter.requests'].count | number:'1.0-0'}}</b>
</p>
<div class="table-responsive" *ngIf="!updatingMetrics">
<table class="table table-striped">
<thead>
<tr>
<th jhiTranslate="metrics.jvm.http.table.code">Code</th>
<th jhiTranslate="metrics.jvm.http.table.count">Count</th>
<th class="text-xs-right" jhiTranslate="metrics.jvm.http.table.mean">Mean</th>
<th class="text-xs-right"><span jhiTranslate="metrics.jvm.http.table.average">Average</span> (1 min)</th>
<th class="text-xs-right"><span jhiTranslate="metrics.jvm.http.table.average">Average</span> (5 min)</th>
<th class="text-xs-right"><span jhiTranslate="metrics.jvm.http.table.average">Average</span> (15 min)</th>
</tr>
</thead>
<tbody>
<tr>
<td jhiTranslate="metrics.jvm.http.code.ok">OK</td>
<td>
<ngb-progressbar [max]="metrics.timers['com.codahale.metrics.servlet.InstrumentedFilter.requests'].count" [value]="metrics.meters['com.codahale.metrics.servlet.InstrumentedFilter.responseCodes.ok'].count" [striped]="true" [animated]="true" type="success">
<span>{{metrics.meters['com.codahale.metrics.servlet.InstrumentedFilter.responseCodes.ok'].count}}</span>
</ngb-progressbar>
</td>
<td class="text-xs-right">
{{metrics.meters['com.codahale.metrics.servlet.InstrumentedFilter.responseCodes.ok'].mean_rate | number:'1.0-2'}}
</td>
<td class="text-xs-right">{{metrics.meters['com.codahale.metrics.servlet.InstrumentedFilter.responseCodes.ok'].m1_rate | number:'1.0-2'}}
</td>
<td class="text-xs-right">{{metrics.meters['com.codahale.metrics.servlet.InstrumentedFilter.responseCodes.ok'].m5_rate | number:'1.0-2'}}
</td>
<td class="text-xs-right">
{{metrics.meters['com.codahale.metrics.servlet.InstrumentedFilter.responseCodes.ok'].m15_rate | number:'1.0-2'}}
</td>
</tr>
<tr>
<td jhiTranslate="metrics.jvm.http.code.notfound">Not Found</td>
<td>
<ngb-progressbar [max]="metrics.timers['com.codahale.metrics.servlet.InstrumentedFilter.requests'].count" [value]="metrics.meters['com.codahale.metrics.servlet.InstrumentedFilter.responseCodes.notFound'].count" [striped]="true" [animated]="true" type="success">
<span>{{metrics.meters['com.codahale.metrics.servlet.InstrumentedFilter.responseCodes.notFound'].count}}</span>
</ngb-progressbar>
</td>
<td class="text-xs-right">
{{metrics.meters['com.codahale.metrics.servlet.InstrumentedFilter.responseCodes.notFound'].mean_rate | number:'1.0-2'}}
</td>
<td class="text-xs-right">
{{metrics.meters['com.codahale.metrics.servlet.InstrumentedFilter.responseCodes.notFound'].m1_rate | number:'1.0-2'}}
</td>
<td class="text-xs-right">
{{metrics.meters['com.codahale.metrics.servlet.InstrumentedFilter.responseCodes.notFound'].m5_rate | number:'1.0-2'}}
</td>
<td class="text-xs-right">
{{metrics.meters['com.codahale.metrics.servlet.InstrumentedFilter.responseCodes.notFound'].m15_rate | number:'1.0-2'}}
</td>
</tr>
<tr>
<td jhiTranslate="metrics.jvm.http.code.servererror">Server error</td>
<td>
<ngb-progressbar [max]="metrics.timers['com.codahale.metrics.servlet.InstrumentedFilter.requests'].count" [value]="metrics.meters['com.codahale.metrics.servlet.InstrumentedFilter.responseCodes.serverError'].count" [striped]="true" [animated]="true" type="success">
<span>{{metrics.meters['com.codahale.metrics.servlet.InstrumentedFilter.responseCodes.serverError'].count}}</span>
</ngb-progressbar>
</td>
<td class="text-xs-right">
{{metrics.meters['com.codahale.metrics.servlet.InstrumentedFilter.responseCodes.serverError'].mean_rate | number:'1.0-2'}}
</td>
<td class="text-xs-right">
{{metrics.meters['com.codahale.metrics.servlet.InstrumentedFilter.responseCodes.serverError'].m1_rate | number:'1.0-2'}}
</td>
<td class="text-xs-right">
{{metrics.meters['com.codahale.metrics.servlet.InstrumentedFilter.responseCodes.serverError'].m5_rate | number:'1.0-2'}}
</td>
<td class="text-xs-right">
{{metrics.meters['com.codahale.metrics.servlet.InstrumentedFilter.responseCodes.serverError'].m15_rate | number:'1.0-2'}}
</td>
</tr>
</tbody>
</table>
</div>
<h3 jhiTranslate="metrics.servicesstats.title">Services statistics (time in millisecond)</h3>
<div class="table-responsive" *ngIf="!updatingMetrics">
<table class="table table-striped">
<thead>
<tr>
<th jhiTranslate="metrics.servicesstats.table.name">Service name</th>
<th class="text-xs-right" jhiTranslate="metrics.servicesstats.table.count">Count</th>
<th class="text-xs-right" jhiTranslate="metrics.servicesstats.table.mean">Mean</th>
<th class="text-xs-right" jhiTranslate="metrics.servicesstats.table.min">Min</th>
<th class="text-xs-right" jhiTranslate="metrics.servicesstats.table.p50">p50</th>
<th class="text-xs-right" jhiTranslate="metrics.servicesstats.table.p75">p75</th>
<th class="text-xs-right" jhiTranslate="metrics.servicesstats.table.p95">p95</th>
<th class="text-xs-right" jhiTranslate="metrics.servicesstats.table.p99">p99</th>
<th class="text-xs-right" jhiTranslate="metrics.servicesstats.table.max">Max</th>
</tr>
</thead>
<tbody>
<tr *ngFor="let entry of servicesStats | keys">
<td>{{entry.key}}</td>
<td class="text-xs-right">{{entry.value.count}}</td>
<td class="text-xs-right">{{entry.value.mean * 1000 | number:'1.0-0'}}</td>
<td class="text-xs-right">{{entry.value.min * 1000 | number:'1.0-0'}}</td>
<td class="text-xs-right">{{entry.value.p50 * 1000 | number:'1.0-0'}}</td>
<td class="text-xs-right">{{entry.value.p75 * 1000 | number:'1.0-0'}}</td>
<td class="text-xs-right">{{entry.value.p95 * 1000 | number:'1.0-0'}}</td>
<td class="text-xs-right">{{entry.value.p99 * 1000 | number:'1.0-0'}}</td>
<td class="text-xs-right">{{entry.value.max * 1000 | number:'1.0-0'}}</td>
</tr>
</tbody>
</table>
</div>
<% if (hibernateCache == 'ehcache') { %>
<h3 jhiTranslate="metrics.cache.title">Cache statistics</h3>
<div class="table-responsive" *ngIf="!updatingMetrics">
<table class="table table-striped">
<thead>
<tr>
<th jhiTranslate="metrics.cache.cachename">Cache name</th>
<th class="text-xs-right" data-translate="metrics.cache.hits">Cache Hits</th>
<th class="text-xs-right" data-translate="metrics.cache.misses">Cache Misses</th>
<th class="text-xs-right" data-translate="metrics.cache.gets">Cache Gets</th>
<th class="text-xs-right" data-translate="metrics.cache.puts">Cache Puts</th>
<th class="text-xs-right" data-translate="metrics.cache.removals">Cache Removals</th>
<th class="text-xs-right" data-translate="metrics.cache.evictions">Cache Evictions</th>
<th class="text-xs-right" data-translate="metrics.cache.hitPercent">Cache Hit %</th>
<th class="text-xs-right" data-translate="metrics.cache.missPercent">Cache Miss %</th>
<th class="text-xs-right" data-translate="metrics.cache.averageGetTime">Average get time (µs)</th>
<th class="text-xs-right" data-translate="metrics.cache.averagePutTime">Average put time (µs)</th>
<th class="text-xs-right" data-translate="metrics.cache.averageRemoveTime">Average remove time (µs)</th>
</tr>
</thead>
<tbody>
<tr *ngFor="let entry of cachesStats | keys">
<td>{{entry.key}}</td>
<td class="text-xs-right">{{metrics.gauges[entry.key + '.cache-hits'].value}}</td>
<td class="text-xs-right">{{metrics.gauges[entry.key + '.cache-misses'].value}}</td>
<td class="text-xs-right">{{metrics.gauges[entry.key + '.cache-gets'].value}}</td>
<td class="text-xs-right">{{metrics.gauges[entry.key + '.cache-puts'].value}}</td>
<td class="text-xs-right">{{metrics.gauges[entry.key + '.cache-removals'].value}}</td>
<td class="text-xs-right">{{metrics.gauges[entry.key + '.cache-evictions'].value}}</td>
<td class="text-xs-right">{{metrics.gauges[entry.key + '.cache-hit-percentage'].value}}</td>
<td class="text-xs-right">{{metrics.gauges[entry.key + '.cache-miss-percentage'].value }}</td>
<td class="text-xs-right">{{metrics.gauges[entry.key + '.average-get-time'].value | number : '1.2-2' }}</td>
<td class="text-xs-right">{{metrics.gauges[entry.key + '.average-put-time'].value | number : '1.2-2'}}</td>
<td class="text-xs-right">{{metrics.gauges[entry.key + '.average-remove-time'].value | number : '1.2-2' }}</td>
</tr>
</tbody>
</table>
</div>
<% } %>
<h3 jhiTranslate="metrics.datasource.title" *ngIf="metrics.gauges && metrics.gauges['HikariPool-1.pool.TotalConnections'] && metrics.gauges['HikariPool-1.pool.TotalConnections'].value > 0">DataSource statistics (time in millisecond)</h3>
<div class="table-responsive" *ngIf="!updatingMetrics && metrics.gauges && metrics.gauges['HikariPool-1.pool.TotalConnections'] && metrics.gauges['HikariPool-1.pool.TotalConnections'].value > 0">
<table class="table table-striped">
<thead>
<tr>
<th><span jhiTranslate="metrics.datasource.usage">Usage</span> ({{metrics.gauges['HikariPool-1.pool.ActiveConnections'].value}} / {{metrics.gauges['HikariPool-1.pool.TotalConnections'].value}})</th>
<th class="text-xs-right" jhiTranslate="metrics.datasource.count">Count</th>
<th class="text-xs-right" jhiTranslate="metrics.datasource.mean">Mean</th>
<th class="text-xs-right" jhiTranslate="metrics.datasource.min">Min</th>
<th class="text-xs-right" jhiTranslate="metrics.datasource.p50">p50</th>
<th class="text-xs-right" jhiTranslate="metrics.datasource.p75">p75</th>
<th class="text-xs-right" jhiTranslate="metrics.datasource.p95">p95</th>
<th class="text-xs-right" jhiTranslate="metrics.datasource.p99">p99</th>
<th class="text-xs-right" jhiTranslate="metrics.datasource.max">Max</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<div class="progress progress-striped">
<ngb-progressbar [max]="metrics.gauges['HikariPool-1.pool.TotalConnections'].value" [value]="metrics.gauges['HikariPool-1.pool.ActiveConnections'].value" [striped]="true" [animated]="true" type="success">
<span>{{metrics.gauges['HikariPool-1.pool.ActiveConnections'].value * 100 / metrics.gauges['HikariPool-1.pool.TotalConnections'].value | number:'1.0-0'}}%</span>
</ngb-progressbar>
</div>
</td>
<td class="text-xs-right">{{metrics.histograms['HikariPool-1.pool.Usage'].count}}</td>
<td class="text-xs-right">{{metrics.histograms['HikariPool-1.pool.Usage'].mean | number:'1.0-2'}}</td>
<td class="text-xs-right">{{metrics.histograms['HikariPool-1.pool.Usage'].min | number:'1.0-2'}}</td>
<td class="text-xs-right">{{metrics.histograms['HikariPool-1.pool.Usage'].p50 | number:'1.0-2'}}</td>
<td class="text-xs-right">{{metrics.histograms['HikariPool-1.pool.Usage'].p75 | number:'1.0-2'}}</td>
<td class="text-xs-right">{{metrics.histograms['HikariPool-1.pool.Usage'].p95 | number:'1.0-2'}}</td>
<td class="text-xs-right">{{metrics.histograms['HikariPool-1.pool.Usage'].p99 | number:'1.0-2'}}</td>
<td class="text-xs-right">{{metrics.histograms['HikariPool-1.pool.Usage'].max | number:'1.0-2'}}</td>
</tr>
</tbody>
</table>
</div>
</div>
|
core/testdata/format/linkWithStarProjection.html | google/dokka | <HTML>
<HEAD>
<meta charset="UTF-8">
<title>KClassLoader - test</title>
</HEAD>
<BODY>
<a href="../index.html">test</a> / <a href="./index.html">KClassLoader</a><br/>
<br/>
<h1>KClassLoader</h1>
<code><span class="keyword">object </span><span class="identifier">KClassLoader</span></code>
<h3>Functions</h3>
<table>
<tbody>
<tr>
<td>
<p><a href="foo.html">foo</a></p>
</td>
<td>
<code><span class="keyword">fun </span><span class="identifier">foo</span><span class="symbol">(</span><span class="identifier" id="KClassLoader$foo(kotlin.Enum(()))/c">c</span><span class="symbol">:</span> <span class="identifier">Enum</span><span class="symbol"><</span><span class="identifier">*</span><span class="symbol">></span><span class="symbol">)</span><span class="symbol">: </span><span class="identifier">Unit</span></code></td>
</tr>
</tbody>
</table>
</BODY>
</HTML>
|
recursos/JMeter/apache-jmeter-2.13/printable_docs/building.html | joseluisillana/proxy_sparkjava_kafka | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--
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.
-->
<!-- start the processing -->
<html>
<head>
<link rel="stylesheet" type="text/css" href="./../docs/css/style.css"/>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
<title>Apache JMeter - Building JMeter and Add-Ons</title>
</head>
<body bgcolor="#ffffff" text="#000000" link="#525D76">
<table border="0" cellspacing="0">
<tr>
<td align="left">
<a href="http://www.apache.org"><img title="Apache Software Foundation" width="387" height="100" src="./../docs/images/asf-logo.gif" border="0"/></a>
</td>
<td align="right">
<a href="http://jmeter.apache.org/"><img width="182" height="88" src="./../docs/images/logo.jpg" alt="Apache JMeter" title="Apache JMeter" border="0"/></a>
</td>
</tr>
</table>
<table border="0" cellspacing="4">
<tr><td>
<hr noshade size="1"/>
</td></tr>
<tr>
<td align="left" valign="top">
<br>
<table border="0" cellspacing="0" cellpadding="2" width="100%">
<tr><td bgcolor="#525D76">
<font color="#ffffff" face="arial,helvetica,sanserif">
<strong>Building JMeter and Add-Ons</strong></font>
</td></tr>
<tr><td>
<blockquote>
<font color="red">
<strong>
Note to developers:
This is a very brief overview.
There is more infomation on the JMeter Wiki or in eclipse.readme in root folder of sources.
</strong>
</font>
<h2>
Building Add-Ons
</h2>
<p>
There is no need to build JMeter if you just want to build an add-on.
Just download the binary archive and add the jars to the classpath or use Maven artifacts to build your add-ons.
You may want to also download the source so it can be used by the IDE.
</p>
<p>
See the extras/addons* files in the source tree for some suggestions
</p>
<h2>
Building JMeter
</h2>
<h3>
Acquiring the source
</h3>
<p>
The full source is distributed alongside the binary, it can also be downloaded from SVN or found on
<a target="_blank" href="https://github.com/apache/jmeter">
Apache JMeter Github Mirror
</a>
.
</p>
<p>
The source archive and SVN do not contain any of the required library files.
These need to be downloaded by running the Ant command:
<pre>
ant download_jars
</pre>
</p>
<p>
Or you can download the binary distribution archive for a release and unpack it into the same directory structure as the source.
This will ensure that the lib/ directory contains the jar files needed for running JMeter.
There are a few additional jars that are needed to build JMeter, download these using:
<pre>
ant download_jars
</pre>
This will retrieve any missing jars.
</p>
<h3>
Compiling and packaging JMeter using Ant
</h3>
<p>
JMeter can be built entirely using Ant.
The basic command is:
<pre>
ant [install]
</pre>
See build.xml for the other targets that can be used.
</p>
<h3>
Compiling and packaging JMeter using Eclipse
</h3>
<p>
Once you have downloaded the source from SVN or the release archives and run the ant download_jars target to
install the dependent jars, you can configure Eclipse. The easiest way to do this is to replace the Eclipse .classpath
file with the eclipse.classpath file provided with JMeter. This will set up the source-paths and most of the libraries.
<p>
Ensure your read eclipse.readme for project configuration.
</p>
</p>
</blockquote>
</p>
</td></tr>
<tr><td><br></td></tr>
</table>
<br>
</td>
</tr>
<tr><td>
<hr noshade size="1"/>
</td></tr>
<tr>
<td>
<table width=100%>
<tr>
<td align="center">
<font color="#525D76" size="-1"><em>
Copyright © 1999-2015, Apache Software Foundation
</em></font>
</td>
</tr>
<tr><td colspan="2">
<div align="center"><font color="#525D76" size="-1">
Apache, Apache JMeter, JMeter, the Apache feather, and the Apache JMeter logo are
trademarks of the Apache Software Foundation.
</font>
</div>
</td></tr>
</table>
</td>
</tr>
</table>
</body>
</html>
<!-- end the processing -->
|
javadoc/org/myrobotlab/cmdline/package-summary.html | lanchun/myrobotlab | <!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 -->
<title>org.myrobotlab.cmdline</title>
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="org.myrobotlab.cmdline";
}
}
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-files/index-1.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../org/myrobotlab/client/package-summary.html">Prev Package</a></li>
<li><a href="../../../org/myrobotlab/codec/package-summary.html">Next Package</a></li>
</ul>
<ul class="navList">
<li><a href="../../../index.html?org/myrobotlab/cmdline/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 org.myrobotlab.cmdline</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="../../../org/myrobotlab/cmdline/CcmdParam.html" title="class in org.myrobotlab.cmdline">CcmdParam</a></td>
<td class="colLast"> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../../org/myrobotlab/cmdline/CMDLine.html" title="class in org.myrobotlab.cmdline">CMDLine</a></td>
<td class="colLast"> </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-files/index-1.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../org/myrobotlab/client/package-summary.html">Prev Package</a></li>
<li><a href="../../../org/myrobotlab/codec/package-summary.html">Next Package</a></li>
</ul>
<ul class="navList">
<li><a href="../../../index.html?org/myrobotlab/cmdline/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 ======= -->
</body>
</html>
|
docs/api/org/apache/hadoop/util/hash/class-use/MurmurHash.html | zxqt223/hadoop-ha.1.0.3 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_26) on Tue May 08 20:32:58 UTC 2012 -->
<TITLE>
Uses of Class org.apache.hadoop.util.hash.MurmurHash (Hadoop 1.0.3 API)
</TITLE>
<META NAME="date" CONTENT="2012-05-08">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class org.apache.hadoop.util.hash.MurmurHash (Hadoop 1.0.3 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/hadoop/util/hash/MurmurHash.html" title="class in org.apache.hadoop.util.hash"><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/hadoop/util/hash//class-useMurmurHash.html" target="_top"><B>FRAMES</B></A>
<A HREF="MurmurHash.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.hadoop.util.hash.MurmurHash</B></H2>
</CENTER>
No usage of org.apache.hadoop.util.hash.MurmurHash
<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/hadoop/util/hash/MurmurHash.html" title="class in org.apache.hadoop.util.hash"><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/hadoop/util/hash//class-useMurmurHash.html" target="_top"><B>FRAMES</B></A>
<A HREF="MurmurHash.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 © 2009 The Apache Software Foundation
</BODY>
</HTML>
|
pmd/pmd-doc-5.5.1/xref/net/sourceforge/pmd/util/NumericConstants.html | jasonwee/videoOnCloud | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head><meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<title>NumericConstants xref</title>
<link type="text/css" rel="stylesheet" href="../../../../stylesheet.css" />
</head>
<body>
<div id="overview"><a href="../../../../../apidocs/net/sourceforge/pmd/util/NumericConstants.html">View Javadoc</a></div><pre>
<a class="jxr_linenumber" name="L1" href="#L1">1</a> <em class="jxr_javadoccomment">/**</em>
<a class="jxr_linenumber" name="L2" href="#L2">2</a> <em class="jxr_javadoccomment"> * BSD-style license; for more info see <a href="http://pmd.sourceforge.net/license.htm" target="alexandria_uri">http://pmd.sourceforge.net/license.htm</a>l</em>
<a class="jxr_linenumber" name="L3" href="#L3">3</a> <em class="jxr_javadoccomment"> */</em>
<a class="jxr_linenumber" name="L4" href="#L4">4</a> <strong class="jxr_keyword">package</strong> net.sourceforge.pmd.util;
<a class="jxr_linenumber" name="L5" href="#L5">5</a>
<a class="jxr_linenumber" name="L6" href="#L6">6</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../net/sourceforge/pmd/util/NumericConstants.html">NumericConstants</a> {
<a class="jxr_linenumber" name="L7" href="#L7">7</a>
<a class="jxr_linenumber" name="L8" href="#L8">8</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> Integer ZERO = 0;
<a class="jxr_linenumber" name="L9" href="#L9">9</a>
<a class="jxr_linenumber" name="L10" href="#L10">10</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> Integer ONE = 1;
<a class="jxr_linenumber" name="L11" href="#L11">11</a>
<a class="jxr_linenumber" name="L12" href="#L12">12</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> Float FLOAT_ZERO = <strong class="jxr_keyword">new</strong> Float(0.0f);
<a class="jxr_linenumber" name="L13" href="#L13">13</a>
<a class="jxr_linenumber" name="L14" href="#L14">14</a> }
</pre>
<hr/>
<div id="footer">Copyright © 2002–2016 <a href="http://pmd.sourceforge.net/">InfoEther</a>. All rights reserved.</div>
</body>
</html>
|
Public/Home/css/default.css | gaowanyao/trading | /* common */
.ke-inline-block {
display: -moz-inline-stack;
display: inline-block;
vertical-align: middle;
zoom: 1;
*display: inline;
}
.ke-clearfix {
zoom: 1;
}
.ke-clearfix:after {
content: ".";
display: block;
clear: both;
font-size: 0;
height: 0;
line-height: 0;
visibility: hidden;
}
.ke-shadow {
box-shadow: 1px 1px 3px #A0A0A0;
-moz-box-shadow: 1px 1px 3px #A0A0A0;
-webkit-box-shadow: 1px 1px 3px #A0A0A0;
filter: progid:DXImageTransform.Microsoft.Shadow(color='#A0A0A0', Direction=135, Strength=3);
background-color: #F0F0EE;
}
.ke-menu a,
.ke-menu a:hover,
.ke-dialog a,
.ke-dialog a:hover {
color: #337FE5;
text-decoration: none;
}
/* icons */
.ke-icon-source {
background-position: 0px 0px;
width: 16px;
height: 16px;
}
.ke-icon-preview {
background-position: 0px -16px;
width: 16px;
height: 16px;
}
.ke-icon-print {
background-position: 0px -32px;
width: 16px;
height: 16px;
}
.ke-icon-undo {
background-position: 0px -48px;
width: 16px;
height: 16px;
}
.ke-icon-redo {
background-position: 0px -64px;
width: 16px;
height: 16px;
}
.ke-icon-cut {
background-position: 0px -80px;
width: 16px;
height: 16px;
}
.ke-icon-copy {
background-position: 0px -96px;
width: 16px;
height: 16px;
}
.ke-icon-paste {
background-position: 0px -112px;
width: 16px;
height: 16px;
}
.ke-icon-selectall {
background-position: 0px -128px;
width: 16px;
height: 16px;
}
.ke-icon-justifyleft {
background-position: 0px -144px;
width: 16px;
height: 16px;
}
.ke-icon-justifycenter {
background-position: 0px -160px;
width: 16px;
height: 16px;
}
.ke-icon-justifyright {
background-position: 0px -176px;
width: 16px;
height: 16px;
}
.ke-icon-justifyfull {
background-position: 0px -192px;
width: 16px;
height: 16px;
}
.ke-icon-insertorderedlist {
background-position: 0px -208px;
width: 16px;
height: 16px;
}
.ke-icon-insertunorderedlist {
background-position: 0px -224px;
width: 16px;
height: 16px;
}
.ke-icon-indent {
background-position: 0px -240px;
width: 16px;
height: 16px;
}
.ke-icon-outdent {
background-position: 0px -256px;
width: 16px;
height: 16px;
}
.ke-icon-subscript {
background-position: 0px -272px;
width: 16px;
height: 16px;
}
.ke-icon-superscript {
background-position: 0px -288px;
width: 16px;
height: 16px;
}
.ke-icon-date {
background-position: 0px -304px;
width: 25px;
height: 16px;
}
.ke-icon-time {
background-position: 0px -320px;
width: 25px;
height: 16px;
}
.ke-icon-formatblock {
background-position: 0px -336px;
width: 25px;
height: 16px;
}
.ke-icon-fontname {
background-position: 0px -352px;
width: 21px;
height: 16px;
}
.ke-icon-fontsize {
background-position: 0px -368px;
width: 23px;
height: 16px;
}
.ke-icon-forecolor {
background-position: 0px -384px;
width: 20px;
height: 16px;
}
.ke-icon-hilitecolor {
background-position: 0px -400px;
width: 23px;
height: 16px;
}
.ke-icon-bold {
background-position: 0px -416px;
width: 16px;
height: 16px;
}
.ke-icon-italic {
background-position: 0px -432px;
width: 16px;
height: 16px;
}
.ke-icon-underline {
background-position: 0px -448px;
width: 16px;
height: 16px;
}
.ke-icon-strikethrough {
background-position: 0px -464px;
width: 16px;
height: 16px;
}
.ke-icon-removeformat {
background-position: 0px -480px;
width: 16px;
height: 16px;
}
.ke-icon-image {
background-position: 0px -496px;
width: 16px;
height: 16px;
}
.ke-icon-flash {
background-position: 0px -512px;
width: 16px;
height: 16px;
}
.ke-icon-media {
background-position: 0px -528px;
width: 16px;
height: 16px;
}
.ke-icon-div {
background-position: 0px -544px;
width: 16px;
height: 16px;
}
.ke-icon-formula {
background-position: 0px -576px;
width: 16px;
height: 16px;
}
.ke-icon-hr {
background-position: 0px -592px;
width: 16px;
height: 16px;
}
.ke-icon-emoticons {
background-position: 0px -608px;
width: 16px;
height: 16px;
}
.ke-icon-link {
background-position: 0px -624px;
width: 16px;
height: 16px;
}
.ke-icon-unlink {
background-position: 0px -640px;
width: 16px;
height: 16px;
}
.ke-icon-fullscreen {
background-position: 0px -656px;
width: 16px;
height: 16px;
}
.ke-icon-about {
background-position: 0px -672px;
width: 16px;
height: 16px;
}
.ke-icon-plainpaste {
background-position: 0px -704px;
width: 16px;
height: 16px;
}
.ke-icon-wordpaste {
background-position: 0px -720px;
width: 16px;
height: 16px;
}
.ke-icon-table {
background-position: 0px -784px;
width: 16px;
height: 16px;
}
.ke-icon-tablemenu {
background-position: 0px -768px;
width: 16px;
height: 16px;
}
.ke-icon-tableinsert {
background-position: 0px -784px;
width: 16px;
height: 16px;
}
.ke-icon-tabledelete {
background-position: 0px -800px;
width: 16px;
height: 16px;
}
.ke-icon-tablecolinsertleft {
background-position: 0px -816px;
width: 16px;
height: 16px;
}
.ke-icon-tablecolinsertright {
background-position: 0px -832px;
width: 16px;
height: 16px;
}
.ke-icon-tablerowinsertabove {
background-position: 0px -848px;
width: 16px;
height: 16px;
}
.ke-icon-tablerowinsertbelow {
background-position: 0px -864px;
width: 16px;
height: 16px;
}
.ke-icon-tablecoldelete {
background-position: 0px -880px;
width: 16px;
height: 16px;
}
.ke-icon-tablerowdelete {
background-position: 0px -896px;
width: 16px;
height: 16px;
}
.ke-icon-tablecellprop {
background-position: 0px -912px;
width: 16px;
height: 16px;
}
.ke-icon-tableprop {
background-position: 0px -928px;
width: 16px;
height: 16px;
}
.ke-icon-checked {
background-position: 0px -944px;
width: 16px;
height: 16px;
}
.ke-icon-code {
background-position: 0px -960px;
width: 16px;
height: 16px;
}
.ke-icon-map {
background-position: 0px -976px;
width: 16px;
height: 16px;
}
.ke-icon-baidumap {
background-position: 0px -976px;
width: 16px;
height: 16px;
}
.ke-icon-lineheight {
background-position: 0px -992px;
width: 16px;
height: 16px;
}
.ke-icon-clearhtml {
background-position: 0px -1008px;
width: 16px;
height: 16px;
}
.ke-icon-pagebreak {
background-position: 0px -1024px;
width: 16px;
height: 16px;
}
.ke-icon-insertfile {
background-position: 0px -1040px;
width: 16px;
height: 16px;
}
.ke-icon-quickformat {
background-position: 0px -1056px;
width: 16px;
height: 16px;
}
.ke-icon-template {
background-position: 0px -1072px;
width: 16px;
height: 16px;
}
.ke-icon-tablecellsplit {
background-position: 0px -1088px;
width: 16px;
height: 16px;
}
.ke-icon-tablerowmerge {
background-position: 0px -1104px;
width: 16px;
height: 16px;
}
.ke-icon-tablerowsplit {
background-position: 0px -1120px;
width: 16px;
height: 16px;
}
.ke-icon-tablecolmerge {
background-position: 0px -1136px;
width: 16px;
height: 16px;
}
.ke-icon-tablecolsplit {
background-position: 0px -1152px;
width: 16px;
height: 16px;
}
.ke-icon-anchor {
background-position: 0px -1168px;
width: 16px;
height: 16px;
}
.ke-icon-search {
background-position: 0px -1184px;
width: 16px;
height: 16px;
}
.ke-icon-new {
background-position: 0px -1200px;
width: 16px;
height: 16px;
}
.ke-icon-specialchar {
background-position: 0px -1216px;
width: 16px;
height: 16px;
}
.ke-icon-multiimage {
background-position: 0px -1232px;
width: 16px;
height: 16px;
}
/* container */
.ke-container {
display: block;
border: 1px solid #CCCCCC;
background-color: #FFF;
overflow: hidden;
margin: 0;
padding: 0;
}
/* toolbar */
.ke-toolbar {
border-bottom: 1px solid #CCC;
background-color: #F0F0EE;
padding: 2px 5px;
text-align: left;
overflow: hidden;
zoom: 1;
}
.ke-toolbar-icon {
background-repeat: no-repeat;
font-size: 0;
line-height: 0;
overflow: hidden;
display: block;
}
.ke-toolbar-icon-url {
background-image: url(../images/default.png);
}
.ke-toolbar .ke-outline {
border: 1px solid #F0F0EE;
margin: 1px;
padding: 1px 2px;
font-size: 0;
line-height: 0;
overflow: hidden;
cursor: pointer;
display: block;
float: left;
}
.ke-toolbar .ke-on {
border: 1px solid #5690D2;
}
.ke-toolbar .ke-selected {
border: 1px solid #5690D2;
background-color: #E9EFF6;
}
.ke-toolbar .ke-disabled {
cursor: default;
}
.ke-toolbar .ke-separator {
height: 16px;
margin: 2px 3px;
border-left: 1px solid #A0A0A0;
border-right: 1px solid #FFFFFF;
border-top:0;
border-bottom:0;
width: 0;
font-size: 0;
line-height: 0;
overflow: hidden;
display: block;
float: left;
}
.ke-toolbar .ke-hr {
overflow: hidden;
height: 1px;
clear: both;
}
/* edit */
.ke-edit {
padding: 0;
}
.ke-edit-iframe,
.ke-edit-textarea {
border: 0;
margin: 0;
padding: 0;
overflow: auto;
}
.ke-edit-textarea {
font: 12px/1.5 "Consolas", "Monaco", "Bitstream Vera Sans Mono", "Courier New", Courier, monospace;
color: #000;
overflow: auto;
resize: none;
}
.ke-edit-textarea:focus {
outline: none;
}
/* statusbar */
.ke-statusbar {
position: relative;
background-color: #F0F0EE;
border-top: 1px solid #CCCCCC;
font-size: 0;
line-height: 0;
*height: 12px;
overflow: hidden;
text-align: center;
cursor: s-resize;
}
.ke-statusbar-center-icon {
background-position: -0px -754px;
width: 15px;
height: 11px;
background-image: url(../images/default.png);
}
.ke-statusbar-right-icon {
position: absolute;
right: 0;
bottom: 0;
cursor: se-resize;
background-position: -5px -741px;
width: 11px;
height: 11px;
background-image: url(default.png);
}
/* menu */
.ke-menu {
border: 1px solid #A0A0A0;
background-color: #F1F1F1;
color: #222222;
padding: 2px;
font-family: "sans serif",tahoma,verdana,helvetica;
font-size: 12px;
text-align: left;
overflow: hidden;
}
.ke-menu-item {
border: 1px solid #F1F1F1;
background-color: #F1F1F1;
color: #222222;
height: 24px;
overflow: hidden;
cursor: pointer;
}
.ke-menu-item-on {
border: 1px solid #5690D2;
background-color: #E9EFF6;
}
.ke-menu-item-left {
width: 27px;
text-align: center;
overflow: hidden;
}
.ke-menu-item-center {
width: 0;
height: 24px;
border-left: 1px solid #E3E3E3;
border-right: 1px solid #FFFFFF;
border-top: 0;
border-bottom: 0;
}
.ke-menu-item-center-on {
border-left: 1px solid #E9EFF6;
border-right: 1px solid #E9EFF6;
}
.ke-menu-item-right {
border: 0;
padding: 0 0 0 5px;
line-height: 24px;
text-align: left;
overflow: hidden;
}
.ke-menu-separator {
margin: 2px 0;
height: 0;
overflow: hidden;
border-top: 1px solid #CCCCCC;
border-bottom: 1px solid #FFFFFF;
border-left: 0;
border-right: 0;
}
/* colorpicker */
.ke-colorpicker {
border: 1px solid #A0A0A0;
background-color: #F1F1F1;
color: #222222;
padding: 2px;
}
.ke-colorpicker-table {
border:0;
margin:0;
padding:0;
border-collapse: separate;
}
.ke-colorpicker-cell {
font-size: 0;
line-height: 0;
border: 1px solid #F0F0EE;
cursor: pointer;
margin:3px;
padding:0;
}
.ke-colorpicker-cell-top {
font-family: "sans serif",tahoma,verdana,helvetica;
font-size: 12px;
line-height: 24px;
border: 1px solid #F0F0EE;
cursor: pointer;
margin:0;
padding:0;
text-align: center;
}
.ke-colorpicker-cell-on {
border: 1px solid #5690D2;
}
.ke-colorpicker-cell-selected {
border: 1px solid #2446AB;
}
.ke-colorpicker-cell-color {
width: 14px;
height: 14px;
margin: 3px;
padding: 0;
border: 0;
}
/* dialog */
.ke-dialog {
position: absolute;
margin: 0;
padding: 0;
}
.ke-dialog .ke-header {
width: 100%;
margin-bottom: 10px;
}
.ke-dialog .ke-header .ke-left {
float: left;
}
.ke-dialog .ke-header .ke-right {
float: right;
}
.ke-dialog .ke-header label {
margin-right: 0;
cursor: pointer;
font-weight: normal;
display: inline;
vertical-align: top;
}
.ke-dialog-content {
background-color: #FFF;
width: 100%;
height: 100%;
color: #333;
border: 1px solid #A0A0A0;
}
.ke-dialog-shadow {
position: absolute;
z-index: -1;
top: 0;
left: 0;
width: 100%;
height: 100%;
box-shadow: 3px 3px 7px #999;
-moz-box-shadow: 3px 3px 7px #999;
-webkit-box-shadow: 3px 3px 7px #999;
filter: progid:DXImageTransform.Microsoft.Blur(PixelRadius='3', MakeShadow='true', ShadowOpacity='0.4');
background-color: #F0F0EE;
}
.ke-dialog-header {
border:0;
margin:0;
padding: 0 10px;
background: url(background.png) repeat scroll 0 0 #F0F0EE;
border-bottom: 1px solid #CFCFCF;
height: 24px;
font: 12px/24px "sans serif",tahoma,verdana,helvetica;
text-align: left;
color: #222;
cursor: move;
}
.ke-dialog-icon-close {
display: block;
background: url(default.png) no-repeat scroll 0px -688px;
width: 16px;
height: 16px;
position: absolute;
right: 6px;
top: 6px;
cursor: pointer;
}
.ke-dialog-body {
font: 12px/1.5 "sans serif",tahoma,verdana,helvetica;
text-align: left;
overflow: hidden;
width: 100%;
}
.ke-dialog-body textarea {
display: block;
overflow: auto;
padding: 0;
resize: none;
}
.ke-dialog-body textarea:focus,
.ke-dialog-body input:focus,
.ke-dialog-body select:focus {
outline: none;
}
.ke-dialog-body label {
margin-right: 10px;
cursor: pointer;
display: -moz-inline-stack;
display: inline-block;
vertical-align: middle;
zoom: 1;
*display: inline;
}
.ke-dialog-body img {
display: -moz-inline-stack;
display: inline-block;
vertical-align: middle;
zoom: 1;
*display: inline;
}
.ke-dialog-body select {
display: -moz-inline-stack;
display: inline-block;
vertical-align: middle;
zoom: 1;
*display: inline;
width: auto;
}
.ke-dialog-body .ke-textarea {
display: block;
width: 408px;
height: 260px;
font-family: "sans serif",tahoma,verdana,helvetica;
font-size: 12px;
border-color: #848484 #E0E0E0 #E0E0E0 #848484;
border-style: solid;
border-width: 1px;
}
.ke-dialog-body .ke-form {
margin: 0;
padding: 0;
}
.ke-dialog-loading {
position: absolute;
top: 0;
left: 1px;
z-index: 1;
text-align: center;
}
.ke-dialog-loading-content {
background: url("../common/loading.gif") no-repeat;
color: #666;
font-size: 14px;
font-weight: bold;
height: 31px;
line-height: 31px;
padding-left: 36px;
}
.ke-dialog-row {
margin-bottom: 10px;
}
.ke-dialog-footer {
font: 12px/1 "sans serif",tahoma,verdana,helvetica;
text-align: right;
padding:0 0 5px 0;
background-color: #FFF;
width: 100%;
}
.ke-dialog-preview,
.ke-dialog-yes {
margin: 5px;
}
.ke-dialog-no {
margin: 5px 10px 5px 5px;
}
.ke-dialog-mask {
background-color:#FFF;
filter:alpha(opacity=50);
opacity:0.5;
}
.ke-button-common {
background: url(background.png) no-repeat scroll 0 -25px transparent;
cursor: pointer;
height: 23px;
line-height: 23px;
overflow: visible;
display: inline-block;
vertical-align: top;
cursor: pointer;
}
.ke-button-outer {
background-position: 0 -25px;
padding: 0;
position: relative;
display: -moz-inline-stack;
display: inline-block;
vertical-align: middle;
zoom: 1;
*display: inline;
}
.ke-button {
background-position: right -25px;
padding: 0 12px;
margin: 0;
font-family: "sans serif",tahoma,verdana,helvetica;
border: 0 none;
color: #333;
font-size: 12px;
left: 2px;
text-decoration: none;
}
/* inputbox */
.ke-input-text {
background-color:#FFFFFF;
font-family: "sans serif",tahoma,verdana,helvetica;
font-size: 12px;
line-height: 17px;
height: 17px;
padding: 2px 4px;
border-color: #848484 #E0E0E0 #E0E0E0 #848484;
border-style: solid;
border-width: 1px;
display: -moz-inline-stack;
display: inline-block;
vertical-align: middle;
zoom: 1;
*display: inline;
}
.ke-input-number {
width: 50px;
}
.ke-input-color {
border: 1px solid #A0A0A0;
background-color: #FFFFFF;
font-size: 12px;
width: 60px;
height: 20px;
line-height: 20px;
padding-left: 5px;
overflow: hidden;
cursor: pointer;
display: -moz-inline-stack;
display: inline-block;
vertical-align: middle;
zoom: 1;
*display: inline;
}
.ke-upload-button {
position: relative;
}
.ke-upload-area {
position: relative;
overflow: hidden;
margin: 0;
padding: 0;
*height: 25px;
}
.ke-upload-area .ke-upload-file {
position: absolute;
font-size: 60px;
top: 0;
right: 0;
padding: 0;
margin: 0;
z-index: 811212;
border: 0 none;
opacity: 0;
filter: alpha(opacity=0);
}
/* tabs */
.ke-tabs {
font: 12px/1 "sans serif",tahoma,verdana,helvetica;
border-bottom:1px solid #A0A0A0;
padding-left:5px;
margin-bottom:20px;
}
.ke-tabs-ul {
list-style-image:none;
list-style-position:outside;
list-style-type:none;
margin:0;
padding:0;
}
.ke-tabs-li {
position: relative;
border: 1px solid #A0A0A0;
background-color: #F0F0EE;
margin: 0 2px -1px 0;
padding: 0 20px;
float: left;
line-height: 25px;
text-align: center;
color: #555555;
cursor: pointer;
}
.ke-tabs-li-selected {
background-color: #FFF;
border-bottom: 1px solid #FFF;
color: #000;
cursor: default;
}
.ke-tabs-li-on {
background-color: #FFF;
color: #000;
}
/* progressbar */
.ke-progressbar {
position: relative;
margin: 0;
padding: 0;
}
.ke-progressbar-bar {
border: 1px solid #6FA5DB;
width: 80px;
height: 5px;
margin: 10px 10px 0 10px;
padding: 0;
}
.ke-progressbar-bar-inner {
width: 0;
height: 5px;
background-color: #6FA5DB;
overflow: hidden;
margin: 0;
padding: 0;
}
.ke-progressbar-percent {
position: absolute;
top: 0;
left: 40%;
display: none;
}
/* swfupload */
.ke-swfupload-top {
position: relative;
margin-bottom: 10px;
_width: 608px;
}
.ke-swfupload-button {
height: 23px;
line-height: 23px;
}
.ke-swfupload-desc {
padding: 0 10px;
height: 23px;
line-height: 23px;
}
.ke-swfupload-startupload {
position: absolute;
top: 0;
right: 0;
}
.ke-swfupload-body {
overflow: scroll;
background-color:#FFFFFF;
border-color: #848484 #E0E0E0 #E0E0E0 #848484;
border-style: solid;
border-width: 1px;
width: auto;
height: 370px;
padding: 5px;
}
.ke-swfupload-body .ke-item {
width: 100px;
margin: 5px;
}
.ke-swfupload-body .ke-photo {
position: relative;
border: 1px solid #DDDDDD;
background-color:#FFFFFF;
padding: 10px;
}
.ke-swfupload-body .ke-delete {
display: block;
background: url(default.png) no-repeat scroll 0px -688px;
width: 16px;
height: 16px;
position: absolute;
right: 0;
top: 0;
cursor: pointer;
}
.ke-swfupload-body .ke-status {
position: absolute;
left: 0;
bottom: 5px;
width: 100px;
height: 17px;
}
.ke-swfupload-body .ke-message {
width: 100px;
text-align: center;
overflow: hidden;
height:17px;
}
.ke-swfupload-body .ke-error {
color: red;
}
.ke-swfupload-body .ke-name {
width: 100px;
text-align: center;
overflow: hidden;
height:16px;
}
.ke-swfupload-body .ke-on {
border: 1px solid #5690D2;
background-color: #E9EFF6;
}
/* emoticons */
.ke-plugin-emoticons {
position: relative;
}
.ke-plugin-emoticons .ke-preview {
position: absolute;
text-align: center;
margin: 2px;
padding: 10px;
top: 0;
border: 1px solid #A0A0A0;
background-color: #FFFFFF;
display: none;
}
.ke-plugin-emoticons .ke-preview-img {
border:0;
margin:0;
padding:0;
}
.ke-plugin-emoticons .ke-table {
border:0;
margin:0;
padding:0;
border-collapse:separate;
}
.ke-plugin-emoticons .ke-cell {
margin:0;
padding:1px;
border:1px solid #F0F0EE;
cursor:pointer;
}
.ke-plugin-emoticons .ke-on {
border: 1px solid #5690D2;
background-color: #E9EFF6;
}
.ke-plugin-emoticons .ke-img {
display:block;
background-repeat:no-repeat;
overflow:hidden;
margin:2px;
width:24px;
height:24px;
margin: 0;
padding: 0;
border: 0;
}
.ke-plugin-emoticons .ke-page {
text-align: right;
margin: 5px;
padding: 0;
border: 0;
font: 12px/1 "sans serif",tahoma,verdana,helvetica;
color: #333;
text-decoration: none;
}
.ke-plugin-plainpaste-textarea,
.ke-plugin-wordpaste-iframe {
display: block;
width: 408px;
height: 260px;
font-family: "sans serif",tahoma,verdana,helvetica;
font-size: 12px;
border-color: #848484 #E0E0E0 #E0E0E0 #848484;
border-style: solid;
border-width: 1px;
}
/* filemanager */
.ke-plugin-filemanager-header {
width: 100%;
margin-bottom: 10px;
}
.ke-plugin-filemanager-header .ke-left {
float: left;
}
.ke-plugin-filemanager-header .ke-right {
float: right;
}
.ke-plugin-filemanager-body {
overflow: scroll;
background-color:#FFFFFF;
border-color: #848484 #E0E0E0 #E0E0E0 #848484;
border-style: solid;
border-width: 1px;
width: auto;
height: 370px;
padding: 5px;
}
.ke-plugin-filemanager-body .ke-item {
width: 100px;
margin: 5px;
}
.ke-plugin-filemanager-body .ke-photo {
border: 1px solid #DDDDDD;
background-color:#FFFFFF;
padding: 10px;
}
.ke-plugin-filemanager-body .ke-name {
width: 100px;
text-align: center;
overflow: hidden;
height:16px;
}
.ke-plugin-filemanager-body .ke-on {
border: 1px solid #5690D2;
background-color: #E9EFF6;
}
.ke-plugin-filemanager-body .ke-table {
width: 95%;
border: 0;
margin: 0;
padding: 0;
border-collapse: separate;
}
.ke-plugin-filemanager-body .ke-table .ke-cell {
margin: 0;
padding: 0;
border: 0;
}
.ke-plugin-filemanager-body .ke-table .ke-name {
width: 55%;
text-align: left;
}
.ke-plugin-filemanager-body .ke-table .ke-size {
width: 15%;
text-align: left;
}
.ke-plugin-filemanager-body .ke-table .ke-datetime {
width: 30%;
text-align: center;
}
|
B2G/gecko/editor/reftests/338427-1.html | sergecodd/FireFox-OS | <!DOCTYPE html>
<html>
<body>
<textarea lang="testing-XX">strangeimpossibleword</textarea>
</body>
</html>
|
css/info.css | ybpinto/nuworldcup-bootstrap | #sidebar {
position: fixed;
top: 60px;
right: 30px;
text-align: right;
}
#winnercup {
width: 50%;
display: inline-block;
}
ul {
padding-left: 0;
list-style-type: none;
display: none;
}
ul.nav {
display: list-item;
}
.main-ul {
display: list-item;
}
.main-li {
font-size: 24px;
font-weight: bold;
}
.li-2 {
font-size: 16px;
font-weight: bold;
}
.ul-3 {
font-size: 16px;
}
.lead {
text-align: center;
}
.table-head {
font-weight: 700;
}
a {
color: black;
}
a:hover, a:visited, a:active, a:link {
text-decoration: none;
}
.table-body {
font-weight: 300;
}
.points-head {
text-align: right;
}
.points {
text-align: right;
}
.fixture-row {
font-size: 20px;
margin-bottom: 30px;
text-align: center;
font-weight: 300;
}
.fixture-group-title {
margin-bottom: 10px;
}
.score {
font-weight: bold;
font-size: 26px;
}
.game-identifier {
font-size: 16px;
text-align: left;
/* margin: 0 auto;
*/}
.final {
text-align: center;
font-size: 16px;
font-weight: bold;
}
.fixture-team {
font-size: 25px;
text-transform: uppercase;
}
.flag-left {
float: left;
}
.flag-right {
float: right;
}
@media screen and (max-width: 1000px) {
#sidebar {
right: 20px;
}
.main-li {
font-size: 20px;
font-weight: bold;
}
.li-2 {
font-size: 12px;
font-weight: bold;
}
.ul-3 {
font-size: 12px;
}
.game-identifier {
font-size: 12px;
}
.fixture-team {
font-size: 18px;
}
}
@media screen and (max-width: 750px) {
#sidebar {
display: none;
}
.game-identifier {
font-size: 10px;
}
.fixture-team {
font-size: 12px;
}
.fixture-score {
font-size: 14px;
}
} |
mago3d-admin/src/main/resources/templates/upload-data/spinner-dialog.html | Gaia3D/mago3d | <!DOCTYPE html>
<html th:lang="${accessibility}" xmlns:th="http://www.thymeleaf.org">
<body>
<div th:fragment="dialogMenuTemplate" id="fileUploadDialog" class="spinner-dialog" title="파업 업로드 중입니다." style="width:200px;text-align: center">
<div id="fileUploadSpinner" class="loader" style="margin-top:20px; width:100px; height:100px; text-align: center;">
</div>
</div>
</body>
</html> |
partials/node-details.html | bowlofstew/changes | <section class="section">
<div class="page-header">
<a class="pull-right btn btn-default" ng-click="toggle_offline()" ng-if="offline !== undefined">
<span ng-if="!offline">Mark this node temporarily offline</span>
<span ng-if="offline">Bring this node back online</span>
</a>
<h2>{{node.name}}</h2>
</div>
<dl class="flat">
<dt ng-show="node.clusters">Clusters:</dt>
<dd ng-show="node.clusters"><a ui-sref="cluster_details({cluster_id: cluster.id})"
ng-repeat="cluster in node.clusters">{{cluster.name}}</a>
</dd>
<dt>First Seen:</dt>
<dd><span time-since="node.dateCreated"></span></dd>
</dl>
</section>
<section class="section">
<div class="page-header">
<h3>Jobs</h3>
</div>
<table class="build-list">
<tr class="build-list-header">
<th class="name">Job</th>
<th class="duration">Duration</th>
<th class="date">When</th>
</tr>
<tr class="status-{{job.status.id}} result-{{job.result.id}}"
ng-repeat="job in jobList">
<td class="name">
<a ui-sref="job_details({project_id: job.project.slug, build_id: job.build.id, job_id: job.id})" class="indicator" bind-once>#{{job.build.number}}.{{job.number}}</a>
<h5 bind-once><a ui-sref="job_details({project_id: job.project.slug, build_id: job.build.id, job_id: job.id})">{{job.build.name}}</a></h5>
<div class="info" bind-once>
<a ui-sref="project_builds({project_id: job.project.slug})">{{job.project.name}}</a> —
{{job.build.target}}
</div>
</td>
<td class="duration">
<span ng-if="job.duration && job.dateFinished" duration="job.duration"></span>
<span ng-if="!job.dateFinished"
type="{{job.result.id}}"
value="job|buildEstimatedProgress"
progressbar> </span>
</td>
<td class="date"><span time-since="job.dateCreated"></span></td>
</tr>
</table>
<ul class="pager">
<li class="previous" ng-class="jobPaginator.previousPage === null ? 'disabled' : ''">
<a ng-click="jobPaginator.loadPreviousPage()">← Previous</a>
</li>
<li class="next" ng-class="jobPaginator.nextPage === null ? 'disabled' : ''">
<a ng-click="jobPaginator.loadNextPage()">Next →</a>
</li>
</ul>
</section>
|
docs/api/java/org/apache/sysds/runtime/io/class-use/FrameWriterJSONLParallel.html | apache/incubator-systemml | <!DOCTYPE HTML>
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc -->
<title>Uses of Class org.apache.sysds.runtime.io.FrameWriterJSONLParallel (Apache SystemDS 2.3.0-SNAPSHOT API)</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
<link rel="stylesheet" type="text/css" href="../../../../../../jquery/jquery-ui.css" title="Style">
<script type="text/javascript" src="../../../../../../script.js"></script>
<script type="text/javascript" src="../../../../../../jquery/jszip/dist/jszip.min.js"></script>
<script type="text/javascript" src="../../../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
<!--[if IE]>
<script type="text/javascript" src="../../../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
<![endif]-->
<script type="text/javascript" src="../../../../../../jquery/jquery-3.5.1.js"></script>
<script type="text/javascript" src="../../../../../../jquery/jquery-ui.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class org.apache.sysds.runtime.io.FrameWriterJSONLParallel (Apache SystemDS 2.3.0-SNAPSHOT API)";
}
}
catch(err) {
}
//-->
var pathtoroot = "../../../../../../";
var useModuleDirectories = true;
loadScripts(document, 'script');</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<header role="banner">
<nav role="navigation">
<div class="fixedNav">
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a id="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a id="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../index.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../FrameWriterJSONLParallel.html" title="class in org.apache.sysds.runtime.io">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" id="allclasses_navbar_top">
<li><a href="../../../../../../allclasses.html">All Classes</a></li>
</ul>
<ul class="navListSearch">
<li><label for="search">SEARCH:</label>
<input type="text" id="search" value="search" disabled="disabled">
<input type="reset" id="reset" value="reset" disabled="disabled">
</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>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
</div>
<a id="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
</div>
<div class="navPadding"> </div>
<script type="text/javascript"><!--
$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
//-->
</script>
</nav>
</header>
<main role="main">
<div class="header">
<h2 title="Uses of Class org.apache.sysds.runtime.io.FrameWriterJSONLParallel" class="title">Uses of Class<br>org.apache.sysds.runtime.io.FrameWriterJSONLParallel</h2>
</div>
<div class="classUseContainer">No usage of org.apache.sysds.runtime.io.FrameWriterJSONLParallel</div>
</main>
<footer role="contentinfo">
<nav role="navigation">
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a id="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a id="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../index.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../FrameWriterJSONLParallel.html" title="class in org.apache.sysds.runtime.io">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" id="allclasses_navbar_bottom">
<li><a href="../../../../../../allclasses.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>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
</div>
<a id="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</nav>
<p class="legalCopy"><small>Copyright © 2021 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</small></p>
</footer>
</body>
</html>
|
doc/html/namespaceodf_1_1attrconverters.html | bossvn/odfpy | <!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.7"/>
<title>ODFPY: odf.attrconverters Namespace Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="navtree.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="resize.js"></script>
<script type="text/javascript" src="navtree.js"></script>
<script type="text/javascript">
$(document).ready(initResizable);
$(window).load(resizeHeight);
</script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/search.js"></script>
<script type="text/javascript">
$(document).ready(function() { searchBox.OnSelectItem(0); });
</script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td style="padding-left: 0.5em;">
<div id="projectname">ODFPY
 <span id="projectnumber">1.2.0</span>
</div>
</td>
<td> <div id="MSearchBox" class="MSearchBoxInactive">
<span class="left">
<img id="MSearchSelect" src="search/mag_sel.png"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
<input type="text" id="MSearchField" value="Search" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
</span><span class="right">
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
</span>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.7 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "search",false,'Search');
</script>
</div><!-- top -->
<div id="side-nav" class="ui-resizable side-nav-resizable">
<div id="nav-tree">
<div id="nav-tree-contents">
<div id="nav-sync" class="sync"></div>
</div>
</div>
<div id="splitbar" style="-moz-user-select:none;"
class="ui-resizable-handle">
</div>
</div>
<script type="text/javascript">
$(document).ready(function(){initNavTree('namespaceodf_1_1attrconverters.html','');});
</script>
<div id="doc-content">
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
<a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark"> </span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark"> </span>Classes</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark"> </span>Namespaces</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(3)"><span class="SelectionMark"> </span>Files</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(4)"><span class="SelectionMark"> </span>Functions</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(5)"><span class="SelectionMark"> </span>Variables</a></div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div class="header">
<div class="summary">
<a href="#nested-classes">Classes</a> |
<a href="#func-members">Functions</a> |
<a href="#var-members">Variables</a> </div>
<div class="headertitle">
<div class="title">odf.attrconverters Namespace Reference</div> </div>
</div><!--header-->
<div class="contents">
<table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="nested-classes"></a>
Classes</h2></td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="classodf_1_1attrconverters_1_1AttrConverters.html">AttrConverters</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="func-members"></a>
Functions</h2></td></tr>
<tr class="memitem:a6755b6a5aedaf9689050ad84c4ede320"><td class="memItemLeft" align="right" valign="top">def </td><td class="memItemRight" valign="bottom"><a class="el" href="namespaceodf_1_1attrconverters.html#a6755b6a5aedaf9689050ad84c4ede320">make_NCName</a></td></tr>
<tr class="separator:a6755b6a5aedaf9689050ad84c4ede320"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9095129a551bea37c562ca4755046cd5"><td class="memItemLeft" align="right" valign="top">def </td><td class="memItemRight" valign="bottom"><a class="el" href="namespaceodf_1_1attrconverters.html#a9095129a551bea37c562ca4755046cd5">cnv_angle</a></td></tr>
<tr class="separator:a9095129a551bea37c562ca4755046cd5"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a82c1b6c29808feb95b772592f02d72b7"><td class="memItemLeft" align="right" valign="top">def </td><td class="memItemRight" valign="bottom"><a class="el" href="namespaceodf_1_1attrconverters.html#a82c1b6c29808feb95b772592f02d72b7">cnv_anyURI</a></td></tr>
<tr class="separator:a82c1b6c29808feb95b772592f02d72b7"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad67560fa69c22fbde091692366afcaa2"><td class="memItemLeft" align="right" valign="top">def </td><td class="memItemRight" valign="bottom"><a class="el" href="namespaceodf_1_1attrconverters.html#ad67560fa69c22fbde091692366afcaa2">cnv_boolean</a></td></tr>
<tr class="memdesc:ad67560fa69c22fbde091692366afcaa2"><td class="mdescLeft"> </td><td class="mdescRight">XML Schema Part 2: Datatypes Second Edition An instance of a datatype that is defined as boolean can have the following legal literals {true, false, 1, 0}. <a href="#ad67560fa69c22fbde091692366afcaa2">More...</a><br /></td></tr>
<tr class="separator:ad67560fa69c22fbde091692366afcaa2"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad58e91696a8ed07acfe0a96081b572cc"><td class="memItemLeft" align="right" valign="top">def </td><td class="memItemRight" valign="bottom"><a class="el" href="namespaceodf_1_1attrconverters.html#ad58e91696a8ed07acfe0a96081b572cc">cnv_color</a></td></tr>
<tr class="memdesc:ad58e91696a8ed07acfe0a96081b572cc"><td class="mdescLeft"> </td><td class="mdescRight">A RGB color in conformance with §5.9.11 of [XSL], that is a RGB color in notation “::rrggbb”, where rr, gg and bb are 8-bit hexadecimal digits. <a href="#ad58e91696a8ed07acfe0a96081b572cc">More...</a><br /></td></tr>
<tr class="separator:ad58e91696a8ed07acfe0a96081b572cc"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:abce4fd4f50aa58e972ab29849a77ff26"><td class="memItemLeft" align="right" valign="top">def </td><td class="memItemRight" valign="bottom"><a class="el" href="namespaceodf_1_1attrconverters.html#abce4fd4f50aa58e972ab29849a77ff26">cnv_configtype</a></td></tr>
<tr class="separator:abce4fd4f50aa58e972ab29849a77ff26"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1b21b2273d9d564bd72b12b74ff33239"><td class="memItemLeft" align="right" valign="top">def </td><td class="memItemRight" valign="bottom"><a class="el" href="namespaceodf_1_1attrconverters.html#a1b21b2273d9d564bd72b12b74ff33239">cnv_data_source_has_labels</a></td></tr>
<tr class="separator:a1b21b2273d9d564bd72b12b74ff33239"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:afae5bcb78db7d677b7a335bc9f14da10"><td class="memItemLeft" align="right" valign="top">def </td><td class="memItemRight" valign="bottom"><a class="el" href="namespaceodf_1_1attrconverters.html#afae5bcb78db7d677b7a335bc9f14da10">cnv_date</a></td></tr>
<tr class="memdesc:afae5bcb78db7d677b7a335bc9f14da10"><td class="mdescLeft"> </td><td class="mdescRight">A dateOrDateTime value is either an [xmlschema-2] date value or an [xmlschema-2] dateTime value. <a href="#afae5bcb78db7d677b7a335bc9f14da10">More...</a><br /></td></tr>
<tr class="separator:afae5bcb78db7d677b7a335bc9f14da10"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a40fcc8faf27993063f39d01dd5033955"><td class="memItemLeft" align="right" valign="top">def </td><td class="memItemRight" valign="bottom"><a class="el" href="namespaceodf_1_1attrconverters.html#a40fcc8faf27993063f39d01dd5033955">cnv_dateTime</a></td></tr>
<tr class="memdesc:a40fcc8faf27993063f39d01dd5033955"><td class="mdescLeft"> </td><td class="mdescRight">A dateOrDateTime value is either an [xmlschema-2] date value or an [xmlschema-2] dateTime value. <a href="#a40fcc8faf27993063f39d01dd5033955">More...</a><br /></td></tr>
<tr class="separator:a40fcc8faf27993063f39d01dd5033955"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a44f79a4789d779673035256dd4deb261"><td class="memItemLeft" align="right" valign="top">def </td><td class="memItemRight" valign="bottom"><a class="el" href="namespaceodf_1_1attrconverters.html#a44f79a4789d779673035256dd4deb261">cnv_double</a></td></tr>
<tr class="separator:a44f79a4789d779673035256dd4deb261"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3c0258736ed5a7bb04f1f51ff38546d6"><td class="memItemLeft" align="right" valign="top">def </td><td class="memItemRight" valign="bottom"><a class="el" href="namespaceodf_1_1attrconverters.html#a3c0258736ed5a7bb04f1f51ff38546d6">cnv_draw_aspect</a></td></tr>
<tr class="separator:a3c0258736ed5a7bb04f1f51ff38546d6"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae8072f5285a3c17644fd7935f2266064"><td class="memItemLeft" align="right" valign="top">def </td><td class="memItemRight" valign="bottom"><a class="el" href="namespaceodf_1_1attrconverters.html#ae8072f5285a3c17644fd7935f2266064">cnv_duration</a></td></tr>
<tr class="separator:ae8072f5285a3c17644fd7935f2266064"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa936da0d71919237fa09837e87294eb6"><td class="memItemLeft" align="right" valign="top">def </td><td class="memItemRight" valign="bottom"><a class="el" href="namespaceodf_1_1attrconverters.html#aa936da0d71919237fa09837e87294eb6">cnv_family</a></td></tr>
<tr class="memdesc:aa936da0d71919237fa09837e87294eb6"><td class="mdescLeft"> </td><td class="mdescRight">A style family. <a href="#aa936da0d71919237fa09837e87294eb6">More...</a><br /></td></tr>
<tr class="separator:aa936da0d71919237fa09837e87294eb6"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a00d69f28dc9d13f042e8d620da46cfcf"><td class="memItemLeft" align="right" valign="top">def </td><td class="memItemRight" valign="bottom"><a class="el" href="namespaceodf_1_1attrconverters.html#a00d69f28dc9d13f042e8d620da46cfcf">cnv_formula</a></td></tr>
<tr class="memdesc:a00d69f28dc9d13f042e8d620da46cfcf"><td class="mdescLeft"> </td><td class="mdescRight">A string containing a formula. <a href="#a00d69f28dc9d13f042e8d620da46cfcf">More...</a><br /></td></tr>
<tr class="separator:a00d69f28dc9d13f042e8d620da46cfcf"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a38cada2f52ab78cf1424512f5183a76d"><td class="memItemLeft" align="right" valign="top">def </td><td class="memItemRight" valign="bottom"><a class="el" href="namespaceodf_1_1attrconverters.html#a38cada2f52ab78cf1424512f5183a76d">cnv_ID</a></td></tr>
<tr class="separator:a38cada2f52ab78cf1424512f5183a76d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aff0bfee5a6072a874d69feab04c518b2"><td class="memItemLeft" align="right" valign="top">def </td><td class="memItemRight" valign="bottom"><a class="el" href="namespaceodf_1_1attrconverters.html#aff0bfee5a6072a874d69feab04c518b2">cnv_IDREF</a></td></tr>
<tr class="separator:aff0bfee5a6072a874d69feab04c518b2"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa7f14422addfe6d389fb4be4a8390de2"><td class="memItemLeft" align="right" valign="top">def </td><td class="memItemRight" valign="bottom"><a class="el" href="namespaceodf_1_1attrconverters.html#aa7f14422addfe6d389fb4be4a8390de2">cnv_integer</a></td></tr>
<tr class="separator:aa7f14422addfe6d389fb4be4a8390de2"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9954094e0e42fe13c1b9a6dcfccc35d2"><td class="memItemLeft" align="right" valign="top">def </td><td class="memItemRight" valign="bottom"><a class="el" href="namespaceodf_1_1attrconverters.html#a9954094e0e42fe13c1b9a6dcfccc35d2">cnv_language</a></td></tr>
<tr class="separator:a9954094e0e42fe13c1b9a6dcfccc35d2"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5b803af5f991ad48f57c0a85c61e018e"><td class="memItemLeft" align="right" valign="top">def </td><td class="memItemRight" valign="bottom"><a class="el" href="namespaceodf_1_1attrconverters.html#a5b803af5f991ad48f57c0a85c61e018e">cnv_legend_position</a></td></tr>
<tr class="separator:a5b803af5f991ad48f57c0a85c61e018e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4fde729e3a01d33ab946fb3ca8e1b1f1"><td class="memItemLeft" align="right" valign="top">def </td><td class="memItemRight" valign="bottom"><a class="el" href="namespaceodf_1_1attrconverters.html#a4fde729e3a01d33ab946fb3ca8e1b1f1">cnv_length</a></td></tr>
<tr class="memdesc:a4fde729e3a01d33ab946fb3ca8e1b1f1"><td class="mdescLeft"> </td><td class="mdescRight">A (positive or negative) physical length, consisting of magnitude and unit, in conformance with the Units of Measure defined in §5.9.13 of [XSL]. <a href="#a4fde729e3a01d33ab946fb3ca8e1b1f1">More...</a><br /></td></tr>
<tr class="separator:a4fde729e3a01d33ab946fb3ca8e1b1f1"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:adacce981267c9e1805396813a193b5db"><td class="memItemLeft" align="right" valign="top">def </td><td class="memItemRight" valign="bottom"><a class="el" href="namespaceodf_1_1attrconverters.html#adacce981267c9e1805396813a193b5db">cnv_lengthorpercent</a></td></tr>
<tr class="separator:adacce981267c9e1805396813a193b5db"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a14106eb750692910238b08052b753f99"><td class="memItemLeft" align="right" valign="top">def </td><td class="memItemRight" valign="bottom"><a class="el" href="namespaceodf_1_1attrconverters.html#a14106eb750692910238b08052b753f99">cnv_list_linkage_type</a></td></tr>
<tr class="separator:a14106eb750692910238b08052b753f99"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4a9a41ce0c33aa08db57e3f68077cfba"><td class="memItemLeft" align="right" valign="top">def </td><td class="memItemRight" valign="bottom"><a class="el" href="namespaceodf_1_1attrconverters.html#a4a9a41ce0c33aa08db57e3f68077cfba">cnv_metavaluetype</a></td></tr>
<tr class="separator:a4a9a41ce0c33aa08db57e3f68077cfba"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1e3f571e483f75017987c0dfb501acf0"><td class="memItemLeft" align="right" valign="top">def </td><td class="memItemRight" valign="bottom"><a class="el" href="namespaceodf_1_1attrconverters.html#a1e3f571e483f75017987c0dfb501acf0">cnv_major_minor</a></td></tr>
<tr class="separator:a1e3f571e483f75017987c0dfb501acf0"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5e054049f615c37c24134589160af0e3"><td class="memItemLeft" align="right" valign="top">def </td><td class="memItemRight" valign="bottom"><a class="el" href="namespaceodf_1_1attrconverters.html#a5e054049f615c37c24134589160af0e3">cnv_namespacedToken</a></td></tr>
<tr class="separator:a5e054049f615c37c24134589160af0e3"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a62253f3e9de2349089df28cc66b27a07"><td class="memItemLeft" align="right" valign="top">def </td><td class="memItemRight" valign="bottom"><a class="el" href="namespaceodf_1_1attrconverters.html#a62253f3e9de2349089df28cc66b27a07">cnv_NCName</a></td></tr>
<tr class="memdesc:a62253f3e9de2349089df28cc66b27a07"><td class="mdescLeft"> </td><td class="mdescRight">NCName is defined in <a href="http://www.w3.org/TR/REC-xml-names/#NT-NCName">http://www.w3.org/TR/REC-xml-names/#NT-NCName</a> Essentially an XML name minus ':'. <a href="#a62253f3e9de2349089df28cc66b27a07">More...</a><br /></td></tr>
<tr class="separator:a62253f3e9de2349089df28cc66b27a07"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a20017beeb1514762702703c37e09c2da"><td class="memItemLeft" align="right" valign="top">def </td><td class="memItemRight" valign="bottom"><a class="el" href="namespaceodf_1_1attrconverters.html#a20017beeb1514762702703c37e09c2da">cnv_StyleNameRef</a></td></tr>
<tr class="separator:a20017beeb1514762702703c37e09c2da"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1ccd5fffcfde11b257c3c9300adc31ce"><td class="memItemLeft" align="right" valign="top">def </td><td class="memItemRight" valign="bottom"><a class="el" href="namespaceodf_1_1attrconverters.html#a1ccd5fffcfde11b257c3c9300adc31ce">cnv_DrawNameRef</a></td></tr>
<tr class="separator:a1ccd5fffcfde11b257c3c9300adc31ce"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8559714891f5698310fe98661760c560"><td class="memItemLeft" align="right" valign="top">def </td><td class="memItemRight" valign="bottom"><a class="el" href="namespaceodf_1_1attrconverters.html#a8559714891f5698310fe98661760c560">cnv_NCNames</a></td></tr>
<tr class="separator:a8559714891f5698310fe98661760c560"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6de0ebe883bd91d8328150e29b6d1883"><td class="memItemLeft" align="right" valign="top">def </td><td class="memItemRight" valign="bottom"><a class="el" href="namespaceodf_1_1attrconverters.html#a6de0ebe883bd91d8328150e29b6d1883">cnv_nonNegativeInteger</a></td></tr>
<tr class="separator:a6de0ebe883bd91d8328150e29b6d1883"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aac11979c1416aabac74a65e5ba0725a0"><td class="memItemLeft" align="right" valign="top">def </td><td class="memItemRight" valign="bottom"><a class="el" href="namespaceodf_1_1attrconverters.html#aac11979c1416aabac74a65e5ba0725a0">cnv_percent</a></td></tr>
<tr class="separator:aac11979c1416aabac74a65e5ba0725a0"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a27d9ea13a2e1a5add722743f1fa756f5"><td class="memItemLeft" align="right" valign="top">def </td><td class="memItemRight" valign="bottom"><a class="el" href="namespaceodf_1_1attrconverters.html#a27d9ea13a2e1a5add722743f1fa756f5">cnv_points</a></td></tr>
<tr class="separator:a27d9ea13a2e1a5add722743f1fa756f5"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a29b8e7d897025f975c135179d5cf7321"><td class="memItemLeft" align="right" valign="top">def </td><td class="memItemRight" valign="bottom"><a class="el" href="namespaceodf_1_1attrconverters.html#a29b8e7d897025f975c135179d5cf7321">cnv_positiveInteger</a></td></tr>
<tr class="separator:a29b8e7d897025f975c135179d5cf7321"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aea7dfa16c558fceaa163879ee587cce8"><td class="memItemLeft" align="right" valign="top">def </td><td class="memItemRight" valign="bottom"><a class="el" href="namespaceodf_1_1attrconverters.html#aea7dfa16c558fceaa163879ee587cce8">cnv_rowOrCol</a></td></tr>
<tr class="separator:aea7dfa16c558fceaa163879ee587cce8"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a072f568e8950c53f5a4a6912a5ca175c"><td class="memItemLeft" align="right" valign="top">def </td><td class="memItemRight" valign="bottom"><a class="el" href="namespaceodf_1_1attrconverters.html#a072f568e8950c53f5a4a6912a5ca175c">cnv_string</a></td></tr>
<tr class="separator:a072f568e8950c53f5a4a6912a5ca175c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9e734cce61f54f6cf18a9e14b485cbd1"><td class="memItemLeft" align="right" valign="top">def </td><td class="memItemRight" valign="bottom"><a class="el" href="namespaceodf_1_1attrconverters.html#a9e734cce61f54f6cf18a9e14b485cbd1">cnv_stroke_linecap</a></td></tr>
<tr class="separator:a9e734cce61f54f6cf18a9e14b485cbd1"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a332c61e3ebc751ae0d2204fe011d687b"><td class="memItemLeft" align="right" valign="top">def </td><td class="memItemRight" valign="bottom"><a class="el" href="namespaceodf_1_1attrconverters.html#a332c61e3ebc751ae0d2204fe011d687b">cnv_textnoteclass</a></td></tr>
<tr class="separator:a332c61e3ebc751ae0d2204fe011d687b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab7ae6299ddbe0d3f140c1d614e14d3d3"><td class="memItemLeft" align="right" valign="top">def </td><td class="memItemRight" valign="bottom"><a class="el" href="namespaceodf_1_1attrconverters.html#ab7ae6299ddbe0d3f140c1d614e14d3d3">cnv_time</a></td></tr>
<tr class="separator:ab7ae6299ddbe0d3f140c1d614e14d3d3"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aba85383db54b917bfa67ff161d606c92"><td class="memItemLeft" align="right" valign="top">def </td><td class="memItemRight" valign="bottom"><a class="el" href="namespaceodf_1_1attrconverters.html#aba85383db54b917bfa67ff161d606c92">cnv_token</a></td></tr>
<tr class="separator:aba85383db54b917bfa67ff161d606c92"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad3126045f15c7f1eb1d1fa42428bd9bf"><td class="memItemLeft" align="right" valign="top">def </td><td class="memItemRight" valign="bottom"><a class="el" href="namespaceodf_1_1attrconverters.html#ad3126045f15c7f1eb1d1fa42428bd9bf">cnv_viewbox</a></td></tr>
<tr class="separator:ad3126045f15c7f1eb1d1fa42428bd9bf"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2102b975dd86f365f5776756fa73c992"><td class="memItemLeft" align="right" valign="top">def </td><td class="memItemRight" valign="bottom"><a class="el" href="namespaceodf_1_1attrconverters.html#a2102b975dd86f365f5776756fa73c992">cnv_xlinkshow</a></td></tr>
<tr class="separator:a2102b975dd86f365f5776756fa73c992"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2cb861fbdd6bd0094fe5042b4355d918"><td class="memItemLeft" align="right" valign="top">def </td><td class="memItemRight" valign="bottom"><a class="el" href="namespaceodf_1_1attrconverters.html#a2cb861fbdd6bd0094fe5042b4355d918">cnv_xlinktype</a></td></tr>
<tr class="separator:a2cb861fbdd6bd0094fe5042b4355d918"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="var-members"></a>
Variables</h2></td></tr>
<tr class="memitem:a942ee7e8270b6cb9f232b85d91f167cc"><td class="memItemLeft" align="right" valign="top">tuple </td><td class="memItemRight" valign="bottom"><a class="el" href="namespaceodf_1_1attrconverters.html#a942ee7e8270b6cb9f232b85d91f167cc">pattern_color</a> = re.compile(r'#[0-9a-fA-F]{6}')</td></tr>
<tr class="separator:a942ee7e8270b6cb9f232b85d91f167cc"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:adcdf5feb55fad2176b65fc447fae6957"><td class="memItemLeft" align="right" valign="top">tuple </td><td class="memItemRight" valign="bottom"><a class="el" href="namespaceodf_1_1attrconverters.html#adcdf5feb55fad2176b65fc447fae6957">pattern_vector3D</a> = re.compile(r'\([ ]*-?([0-9]+(\.[0-9]*)?|\.[0-9]+)([ ]+-?([0-9]+(\.[0-9]*)?|\.[0-9]+)){2}[ ]*\)')</td></tr>
<tr class="separator:adcdf5feb55fad2176b65fc447fae6957"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad9906afdc77dcf5ec8024ddea8af2cd3"><td class="memItemLeft" align="right" valign="top">tuple </td><td class="memItemRight" valign="bottom"><a class="el" href="namespaceodf_1_1attrconverters.html#ad9906afdc77dcf5ec8024ddea8af2cd3">pattern_language</a> = re.compile(r'[a-zA-Z]{1,8}(-[a-zA-Z0-9]{1,8})*')</td></tr>
<tr class="separator:ad9906afdc77dcf5ec8024ddea8af2cd3"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa90a2e19771f728a7a760efaeb548853"><td class="memItemLeft" align="right" valign="top">tuple </td><td class="memItemRight" valign="bottom"><a class="el" href="namespaceodf_1_1attrconverters.html#aa90a2e19771f728a7a760efaeb548853">pattern_length</a> = re.compile(r'-?([0-9]+(\.[0-9]*)?|\.[0-9]+)((cm)|(mm)|(in)|(pt)|(pc)|(px))')</td></tr>
<tr class="separator:aa90a2e19771f728a7a760efaeb548853"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8b1acec5f51ab504076429de4a44e126"><td class="memItemLeft" align="right" valign="top">tuple </td><td class="memItemRight" valign="bottom"><a class="el" href="namespaceodf_1_1attrconverters.html#a8b1acec5f51ab504076429de4a44e126">pattern_namespacedToken</a> = re.compile(r'[0-9a-zA-Z_]+:[0-9a-zA-Z._\-]+')</td></tr>
<tr class="separator:a8b1acec5f51ab504076429de4a44e126"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a579361611ccfad779029c701add3beac"><td class="memItemLeft" align="right" valign="top">tuple </td><td class="memItemRight" valign="bottom"><a class="el" href="namespaceodf_1_1attrconverters.html#a579361611ccfad779029c701add3beac">pattern_percent</a> = re.compile(r'-?([0-9]+(\.[0-9]*)?|\.[0-9]+)%')</td></tr>
<tr class="separator:a579361611ccfad779029c701add3beac"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aba1cc76213c8ca3e229a93e09ac6f4ee"><td class="memItemLeft" align="right" valign="top">tuple </td><td class="memItemRight" valign="bottom"><a class="el" href="namespaceodf_1_1attrconverters.html#aba1cc76213c8ca3e229a93e09ac6f4ee">pattern_points</a> = re.compile(r'-?[0-9]+,-?[0-9]+([ ]+-?[0-9]+,-?[0-9]+)*')</td></tr>
<tr class="separator:aba1cc76213c8ca3e229a93e09ac6f4ee"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3df24b76956ae1cb73bf3fd649d558a3"><td class="memItemLeft" align="right" valign="top">tuple </td><td class="memItemRight" valign="bottom"><a class="el" href="namespaceodf_1_1attrconverters.html#a3df24b76956ae1cb73bf3fd649d558a3">pattern_viewbox</a> = re.compile(r'-?[0-9]+([ ]+-?[0-9]+){3}$')</td></tr>
<tr class="separator:a3df24b76956ae1cb73bf3fd649d558a3"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa546908cd138bdd3bd7fd61e75ebc87f"><td class="memItemLeft" align="right" valign="top">dictionary </td><td class="memItemRight" valign="bottom"><a class="el" href="namespaceodf_1_1attrconverters.html#aa546908cd138bdd3bd7fd61e75ebc87f">attrconverters</a></td></tr>
<tr class="separator:aa546908cd138bdd3bd7fd61e75ebc87f"><td class="memSeparator" colspan="2"> </td></tr>
</table>
<h2 class="groupheader">Function Documentation</h2>
<a class="anchor" id="a9095129a551bea37c562ca4755046cd5"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">def odf.attrconverters.cnv_angle </td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname"><em>attribute</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>arg</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>element</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Definition at line <a class="el" href="attrconverters_8py_source.html#l00034">34</a> of file <a class="el" href="attrconverters_8py_source.html">attrconverters.py</a>.</p>
</div>
</div>
<a class="anchor" id="a82c1b6c29808feb95b772592f02d72b7"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">def odf.attrconverters.cnv_anyURI </td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname"><em>attribute</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>arg</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>element</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Definition at line <a class="el" href="attrconverters_8py_source.html#l00040">40</a> of file <a class="el" href="attrconverters_8py_source.html">attrconverters.py</a>.</p>
</div>
</div>
<a class="anchor" id="ad67560fa69c22fbde091692366afcaa2"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">def odf.attrconverters.cnv_boolean </td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname"><em>attribute</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>arg</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>element</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>XML Schema Part 2: Datatypes Second Edition An instance of a datatype that is defined as boolean can have the following legal literals {true, false, 1, 0}. </p>
<p>Definition at line <a class="el" href="attrconverters_8py_source.html#l00048">48</a> of file <a class="el" href="attrconverters_8py_source.html">attrconverters.py</a>.</p>
</div>
</div>
<a class="anchor" id="ad58e91696a8ed07acfe0a96081b572cc"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">def odf.attrconverters.cnv_color </td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname"><em>attribute</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>arg</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>element</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>A RGB color in conformance with §5.9.11 of [XSL], that is a RGB color in notation “::rrggbb”, where rr, gg and bb are 8-bit hexadecimal digits. </p>
<p>Definition at line <a class="el" href="attrconverters_8py_source.html#l00060">60</a> of file <a class="el" href="attrconverters_8py_source.html">attrconverters.py</a>.</p>
</div>
</div>
<a class="anchor" id="abce4fd4f50aa58e972ab29849a77ff26"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">def odf.attrconverters.cnv_configtype </td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname"><em>attribute</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>arg</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>element</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Definition at line <a class="el" href="attrconverters_8py_source.html#l00063">63</a> of file <a class="el" href="attrconverters_8py_source.html">attrconverters.py</a>.</p>
</div>
</div>
<a class="anchor" id="a1b21b2273d9d564bd72b12b74ff33239"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">def odf.attrconverters.cnv_data_source_has_labels </td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname"><em>attribute</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>arg</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>element</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Definition at line <a class="el" href="attrconverters_8py_source.html#l00069">69</a> of file <a class="el" href="attrconverters_8py_source.html">attrconverters.py</a>.</p>
</div>
</div>
<a class="anchor" id="afae5bcb78db7d677b7a335bc9f14da10"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">def odf.attrconverters.cnv_date </td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname"><em>attribute</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>arg</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>element</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>A dateOrDateTime value is either an [xmlschema-2] date value or an [xmlschema-2] dateTime value. </p>
<p>Definition at line <a class="el" href="attrconverters_8py_source.html#l00079">79</a> of file <a class="el" href="attrconverters_8py_source.html">attrconverters.py</a>.</p>
</div>
</div>
<a class="anchor" id="a40fcc8faf27993063f39d01dd5033955"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">def odf.attrconverters.cnv_dateTime </td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname"><em>attribute</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>arg</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>element</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>A dateOrDateTime value is either an [xmlschema-2] date value or an [xmlschema-2] dateTime value. </p>
<p>Definition at line <a class="el" href="attrconverters_8py_source.html#l00086">86</a> of file <a class="el" href="attrconverters_8py_source.html">attrconverters.py</a>.</p>
</div>
</div>
<a class="anchor" id="a44f79a4789d779673035256dd4deb261"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">def odf.attrconverters.cnv_double </td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname"><em>attribute</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>arg</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>element</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Definition at line <a class="el" href="attrconverters_8py_source.html#l00089">89</a> of file <a class="el" href="attrconverters_8py_source.html">attrconverters.py</a>.</p>
</div>
</div>
<a class="anchor" id="a3c0258736ed5a7bb04f1f51ff38546d6"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">def odf.attrconverters.cnv_draw_aspect </td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname"><em>attribute</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>arg</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>element</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Definition at line <a class="el" href="attrconverters_8py_source.html#l00092">92</a> of file <a class="el" href="attrconverters_8py_source.html">attrconverters.py</a>.</p>
</div>
</div>
<a class="anchor" id="a1ccd5fffcfde11b257c3c9300adc31ce"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">def odf.attrconverters.cnv_DrawNameRef </td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname"><em>attribute</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>arg</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>element</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Definition at line <a class="el" href="attrconverters_8py_source.html#l00220">220</a> of file <a class="el" href="attrconverters_8py_source.html">attrconverters.py</a>.</p>
</div>
</div>
<a class="anchor" id="ae8072f5285a3c17644fd7935f2266064"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">def odf.attrconverters.cnv_duration </td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname"><em>attribute</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>arg</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>element</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Definition at line <a class="el" href="attrconverters_8py_source.html#l00097">97</a> of file <a class="el" href="attrconverters_8py_source.html">attrconverters.py</a>.</p>
</div>
</div>
<a class="anchor" id="aa936da0d71919237fa09837e87294eb6"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">def odf.attrconverters.cnv_family </td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname"><em>attribute</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>arg</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>element</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>A style family. </p>
<p>Definition at line <a class="el" href="attrconverters_8py_source.html#l00102">102</a> of file <a class="el" href="attrconverters_8py_source.html">attrconverters.py</a>.</p>
</div>
</div>
<a class="anchor" id="a00d69f28dc9d13f042e8d620da46cfcf"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">def odf.attrconverters.cnv_formula </td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname"><em>attribute</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>arg</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>element</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>A string containing a formula. </p>
<p>Formulas do not have a predefined syntax, but the string should begin with a namespace prefix, followed by a “:” (COLON, U+003A) separator, followed by the text of the formula. The namespace bound to the prefix determines the syntax and semantics of the formula. </p>
<p>Definition at line <a class="el" href="attrconverters_8py_source.html#l00125">125</a> of file <a class="el" href="attrconverters_8py_source.html">attrconverters.py</a>.</p>
</div>
</div>
<a class="anchor" id="a38cada2f52ab78cf1424512f5183a76d"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">def odf.attrconverters.cnv_ID </td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname"><em>attribute</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>arg</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>element</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Definition at line <a class="el" href="attrconverters_8py_source.html#l00128">128</a> of file <a class="el" href="attrconverters_8py_source.html">attrconverters.py</a>.</p>
</div>
</div>
<a class="anchor" id="aff0bfee5a6072a874d69feab04c518b2"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">def odf.attrconverters.cnv_IDREF </td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname"><em>attribute</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>arg</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>element</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Definition at line <a class="el" href="attrconverters_8py_source.html#l00131">131</a> of file <a class="el" href="attrconverters_8py_source.html">attrconverters.py</a>.</p>
</div>
</div>
<a class="anchor" id="aa7f14422addfe6d389fb4be4a8390de2"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">def odf.attrconverters.cnv_integer </td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname"><em>attribute</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>arg</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>element</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Definition at line <a class="el" href="attrconverters_8py_source.html#l00134">134</a> of file <a class="el" href="attrconverters_8py_source.html">attrconverters.py</a>.</p>
</div>
</div>
<a class="anchor" id="a9954094e0e42fe13c1b9a6dcfccc35d2"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">def odf.attrconverters.cnv_language </td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname"><em>attribute</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>arg</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>element</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Definition at line <a class="el" href="attrconverters_8py_source.html#l00139">139</a> of file <a class="el" href="attrconverters_8py_source.html">attrconverters.py</a>.</p>
</div>
</div>
<a class="anchor" id="a5b803af5f991ad48f57c0a85c61e018e"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">def odf.attrconverters.cnv_legend_position </td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname"><em>attribute</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>arg</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>element</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Definition at line <a class="el" href="attrconverters_8py_source.html#l00145">145</a> of file <a class="el" href="attrconverters_8py_source.html">attrconverters.py</a>.</p>
</div>
</div>
<a class="anchor" id="a4fde729e3a01d33ab946fb3ca8e1b1f1"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">def odf.attrconverters.cnv_length </td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname"><em>attribute</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>arg</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>element</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>A (positive or negative) physical length, consisting of magnitude and unit, in conformance with the Units of Measure defined in §5.9.13 of [XSL]. </p>
<p>Definition at line <a class="el" href="attrconverters_8py_source.html#l00156">156</a> of file <a class="el" href="attrconverters_8py_source.html">attrconverters.py</a>.</p>
<p><div class="dynheader">
Here is the caller graph for this function:</div>
<div class="dyncontent">
<div class="center"><img src="namespaceodf_1_1attrconverters_a4fde729e3a01d33ab946fb3ca8e1b1f1_icgraph.png" border="0" usemap="#namespaceodf_1_1attrconverters_a4fde729e3a01d33ab946fb3ca8e1b1f1_icgraph" alt=""/></div>
<map name="namespaceodf_1_1attrconverters_a4fde729e3a01d33ab946fb3ca8e1b1f1_icgraph" id="namespaceodf_1_1attrconverters_a4fde729e3a01d33ab946fb3ca8e1b1f1_icgraph">
<area shape="rect" id="node3" href="namespaceodf_1_1attrconverters.html#adacce981267c9e1805396813a193b5db" title="odf.attrconverters.cnv\l_lengthorpercent" alt="" coords="200,5,347,49"/></map>
</div>
</p>
</div>
</div>
<a class="anchor" id="adacce981267c9e1805396813a193b5db"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">def odf.attrconverters.cnv_lengthorpercent </td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname"><em>attribute</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>arg</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>element</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Definition at line <a class="el" href="attrconverters_8py_source.html#l00162">162</a> of file <a class="el" href="attrconverters_8py_source.html">attrconverters.py</a>.</p>
<p><div class="dynheader">
Here is the call graph for this function:</div>
<div class="dyncontent">
<div class="center"><img src="namespaceodf_1_1attrconverters_adacce981267c9e1805396813a193b5db_cgraph.png" border="0" usemap="#namespaceodf_1_1attrconverters_adacce981267c9e1805396813a193b5db_cgraph" alt=""/></div>
<map name="namespaceodf_1_1attrconverters_adacce981267c9e1805396813a193b5db_cgraph" id="namespaceodf_1_1attrconverters_adacce981267c9e1805396813a193b5db_cgraph">
<area shape="rect" id="node3" href="namespaceodf_1_1attrconverters.html#a4fde729e3a01d33ab946fb3ca8e1b1f1" title="A (positive or negative) physical length, consisting of magnitude and unit, in conformance with the U..." alt="" coords="200,5,347,49"/><area shape="rect" id="node5" href="namespaceodf_1_1attrconverters.html#aac11979c1416aabac74a65e5ba0725a0" title="odf.attrconverters.cnv\l_percent" alt="" coords="200,71,347,115"/></map>
</div>
</p>
</div>
</div>
<a class="anchor" id="a14106eb750692910238b08052b753f99"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">def odf.attrconverters.cnv_list_linkage_type </td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname"><em>attribute</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>arg</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>element</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Definition at line <a class="el" href="attrconverters_8py_source.html#l00172">172</a> of file <a class="el" href="attrconverters_8py_source.html">attrconverters.py</a>.</p>
</div>
</div>
<a class="anchor" id="a1e3f571e483f75017987c0dfb501acf0"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">def odf.attrconverters.cnv_major_minor </td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname"><em>attribute</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>arg</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>element</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Definition at line <a class="el" href="attrconverters_8py_source.html#l00182">182</a> of file <a class="el" href="attrconverters_8py_source.html">attrconverters.py</a>.</p>
</div>
</div>
<a class="anchor" id="a4a9a41ce0c33aa08db57e3f68077cfba"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">def odf.attrconverters.cnv_metavaluetype </td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname"><em>attribute</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>arg</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>element</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Definition at line <a class="el" href="attrconverters_8py_source.html#l00177">177</a> of file <a class="el" href="attrconverters_8py_source.html">attrconverters.py</a>.</p>
</div>
</div>
<a class="anchor" id="a5e054049f615c37c24134589160af0e3"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">def odf.attrconverters.cnv_namespacedToken </td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname"><em>attribute</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>arg</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>element</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Definition at line <a class="el" href="attrconverters_8py_source.html#l00189">189</a> of file <a class="el" href="attrconverters_8py_source.html">attrconverters.py</a>.</p>
</div>
</div>
<a class="anchor" id="a62253f3e9de2349089df28cc66b27a07"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">def odf.attrconverters.cnv_NCName </td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname"><em>attribute</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>arg</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>element</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>NCName is defined in <a href="http://www.w3.org/TR/REC-xml-names/#NT-NCName">http://www.w3.org/TR/REC-xml-names/#NT-NCName</a> Essentially an XML name minus ':'. </p>
<p>Definition at line <a class="el" href="attrconverters_8py_source.html#l00200">200</a> of file <a class="el" href="attrconverters_8py_source.html">attrconverters.py</a>.</p>
<p><div class="dynheader">
Here is the call graph for this function:</div>
<div class="dyncontent">
<div class="center"><img src="namespaceodf_1_1attrconverters_a62253f3e9de2349089df28cc66b27a07_cgraph.png" border="0" usemap="#namespaceodf_1_1attrconverters_a62253f3e9de2349089df28cc66b27a07_cgraph" alt=""/></div>
<map name="namespaceodf_1_1attrconverters_a62253f3e9de2349089df28cc66b27a07_cgraph" id="namespaceodf_1_1attrconverters_a62253f3e9de2349089df28cc66b27a07_cgraph">
<area shape="rect" id="node3" href="namespaceodf_1_1attrconverters.html#a6755b6a5aedaf9689050ad84c4ede320" title="odf.attrconverters.make\l_NCName" alt="" coords="201,5,359,49"/></map>
</div>
</p>
</div>
</div>
<a class="anchor" id="a8559714891f5698310fe98661760c560"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">def odf.attrconverters.cnv_NCNames </td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname"><em>attribute</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>arg</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>element</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Definition at line <a class="el" href="attrconverters_8py_source.html#l00227">227</a> of file <a class="el" href="attrconverters_8py_source.html">attrconverters.py</a>.</p>
</div>
</div>
<a class="anchor" id="a6de0ebe883bd91d8328150e29b6d1883"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">def odf.attrconverters.cnv_nonNegativeInteger </td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname"><em>attribute</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>arg</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>element</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Definition at line <a class="el" href="attrconverters_8py_source.html#l00230">230</a> of file <a class="el" href="attrconverters_8py_source.html">attrconverters.py</a>.</p>
</div>
</div>
<a class="anchor" id="aac11979c1416aabac74a65e5ba0725a0"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">def odf.attrconverters.cnv_percent </td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname"><em>attribute</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>arg</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>element</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Definition at line <a class="el" href="attrconverters_8py_source.html#l00235">235</a> of file <a class="el" href="attrconverters_8py_source.html">attrconverters.py</a>.</p>
<p><div class="dynheader">
Here is the caller graph for this function:</div>
<div class="dyncontent">
<div class="center"><img src="namespaceodf_1_1attrconverters_aac11979c1416aabac74a65e5ba0725a0_icgraph.png" border="0" usemap="#namespaceodf_1_1attrconverters_aac11979c1416aabac74a65e5ba0725a0_icgraph" alt=""/></div>
<map name="namespaceodf_1_1attrconverters_aac11979c1416aabac74a65e5ba0725a0_icgraph" id="namespaceodf_1_1attrconverters_aac11979c1416aabac74a65e5ba0725a0_icgraph">
<area shape="rect" id="node3" href="namespaceodf_1_1attrconverters.html#adacce981267c9e1805396813a193b5db" title="odf.attrconverters.cnv\l_lengthorpercent" alt="" coords="200,5,347,49"/></map>
</div>
</p>
</div>
</div>
<a class="anchor" id="a27d9ea13a2e1a5add722743f1fa756f5"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">def odf.attrconverters.cnv_points </td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname"><em>attribute</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>arg</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>element</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Definition at line <a class="el" href="attrconverters_8py_source.html#l00244">244</a> of file <a class="el" href="attrconverters_8py_source.html">attrconverters.py</a>.</p>
</div>
</div>
<a class="anchor" id="a29b8e7d897025f975c135179d5cf7321"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">def odf.attrconverters.cnv_positiveInteger </td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname"><em>attribute</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>arg</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>element</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Definition at line <a class="el" href="attrconverters_8py_source.html#l00257">257</a> of file <a class="el" href="attrconverters_8py_source.html">attrconverters.py</a>.</p>
</div>
</div>
<a class="anchor" id="aea7dfa16c558fceaa163879ee587cce8"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">def odf.attrconverters.cnv_rowOrCol </td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname"><em>attribute</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>arg</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>element</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Definition at line <a class="el" href="attrconverters_8py_source.html#l00260">260</a> of file <a class="el" href="attrconverters_8py_source.html">attrconverters.py</a>.</p>
</div>
</div>
<a class="anchor" id="a072f568e8950c53f5a4a6912a5ca175c"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">def odf.attrconverters.cnv_string </td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname"><em>attribute</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>arg</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>element</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Definition at line <a class="el" href="attrconverters_8py_source.html#l00265">265</a> of file <a class="el" href="attrconverters_8py_source.html">attrconverters.py</a>.</p>
</div>
</div>
<a class="anchor" id="a9e734cce61f54f6cf18a9e14b485cbd1"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">def odf.attrconverters.cnv_stroke_linecap </td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname"><em>attribute</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>arg</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>element</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Definition at line <a class="el" href="attrconverters_8py_source.html#l00271">271</a> of file <a class="el" href="attrconverters_8py_source.html">attrconverters.py</a>.</p>
</div>
</div>
<a class="anchor" id="a20017beeb1514762702703c37e09c2da"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">def odf.attrconverters.cnv_StyleNameRef </td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname"><em>attribute</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>arg</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>element</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Definition at line <a class="el" href="attrconverters_8py_source.html#l00210">210</a> of file <a class="el" href="attrconverters_8py_source.html">attrconverters.py</a>.</p>
</div>
</div>
<a class="anchor" id="a332c61e3ebc751ae0d2204fe011d687b"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">def odf.attrconverters.cnv_textnoteclass </td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname"><em>attribute</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>arg</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>element</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Definition at line <a class="el" href="attrconverters_8py_source.html#l00276">276</a> of file <a class="el" href="attrconverters_8py_source.html">attrconverters.py</a>.</p>
</div>
</div>
<a class="anchor" id="ab7ae6299ddbe0d3f140c1d614e14d3d3"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">def odf.attrconverters.cnv_time </td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname"><em>attribute</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>arg</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>element</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Definition at line <a class="el" href="attrconverters_8py_source.html#l00282">282</a> of file <a class="el" href="attrconverters_8py_source.html">attrconverters.py</a>.</p>
</div>
</div>
<a class="anchor" id="aba85383db54b917bfa67ff161d606c92"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">def odf.attrconverters.cnv_token </td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname"><em>attribute</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>arg</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>element</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Definition at line <a class="el" href="attrconverters_8py_source.html#l00285">285</a> of file <a class="el" href="attrconverters_8py_source.html">attrconverters.py</a>.</p>
</div>
</div>
<a class="anchor" id="ad3126045f15c7f1eb1d1fa42428bd9bf"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">def odf.attrconverters.cnv_viewbox </td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname"><em>attribute</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>arg</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>element</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Definition at line <a class="el" href="attrconverters_8py_source.html#l00290">290</a> of file <a class="el" href="attrconverters_8py_source.html">attrconverters.py</a>.</p>
</div>
</div>
<a class="anchor" id="a2102b975dd86f365f5776756fa73c992"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">def odf.attrconverters.cnv_xlinkshow </td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname"><em>attribute</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>arg</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>element</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Definition at line <a class="el" href="attrconverters_8py_source.html#l00296">296</a> of file <a class="el" href="attrconverters_8py_source.html">attrconverters.py</a>.</p>
</div>
</div>
<a class="anchor" id="a2cb861fbdd6bd0094fe5042b4355d918"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">def odf.attrconverters.cnv_xlinktype </td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname"><em>attribute</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>arg</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname"><em>element</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Definition at line <a class="el" href="attrconverters_8py_source.html#l00301">301</a> of file <a class="el" href="attrconverters_8py_source.html">attrconverters.py</a>.</p>
</div>
</div>
<a class="anchor" id="a6755b6a5aedaf9689050ad84c4ede320"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">def odf.attrconverters.make_NCName </td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname"><em>arg</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Definition at line <a class="el" href="attrconverters_8py_source.html#l00029">29</a> of file <a class="el" href="attrconverters_8py_source.html">attrconverters.py</a>.</p>
<p><div class="dynheader">
Here is the caller graph for this function:</div>
<div class="dyncontent">
<div class="center"><img src="namespaceodf_1_1attrconverters_a6755b6a5aedaf9689050ad84c4ede320_icgraph.png" border="0" usemap="#namespaceodf_1_1attrconverters_a6755b6a5aedaf9689050ad84c4ede320_icgraph" alt=""/></div>
<map name="namespaceodf_1_1attrconverters_a6755b6a5aedaf9689050ad84c4ede320_icgraph" id="namespaceodf_1_1attrconverters_a6755b6a5aedaf9689050ad84c4ede320_icgraph">
<area shape="rect" id="node3" href="namespaceodf_1_1attrconverters.html#a62253f3e9de2349089df28cc66b27a07" title="NCName is defined in http://www.w3.org/TR/REC-xml-names/#NT-NCName Essentially an XML name minus ':'..." alt="" coords="261,5,408,49"/><area shape="rect" id="node5" href="classodf_1_1opendocument_1_1OpenDocument.html#ac499f824523aa0bfec3dd6f5f6ae302f" title="Finds a style object based on the name. " alt="" coords="213,71,456,115"/></map>
</div>
</p>
</div>
</div>
<h2 class="groupheader">Variable Documentation</h2>
<a class="anchor" id="aa546908cd138bdd3bd7fd61e75ebc87f"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">dictionary odf.attrconverters.attrconverters</td>
</tr>
</table>
</div><div class="memdoc">
<p>Definition at line <a class="el" href="attrconverters_8py_source.html#l00307">307</a> of file <a class="el" href="attrconverters_8py_source.html">attrconverters.py</a>.</p>
</div>
</div>
<a class="anchor" id="a942ee7e8270b6cb9f232b85d91f167cc"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">tuple odf.attrconverters.pattern_color = re.compile(r'#[0-9a-fA-F]{6}')</td>
</tr>
</table>
</div><div class="memdoc">
<p>Definition at line <a class="el" href="attrconverters_8py_source.html#l00026">26</a> of file <a class="el" href="attrconverters_8py_source.html">attrconverters.py</a>.</p>
</div>
</div>
<a class="anchor" id="ad9906afdc77dcf5ec8024ddea8af2cd3"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">tuple odf.attrconverters.pattern_language = re.compile(r'[a-zA-Z]{1,8}(-[a-zA-Z0-9]{1,8})*')</td>
</tr>
</table>
</div><div class="memdoc">
<p>Definition at line <a class="el" href="attrconverters_8py_source.html#l00137">137</a> of file <a class="el" href="attrconverters_8py_source.html">attrconverters.py</a>.</p>
</div>
</div>
<a class="anchor" id="aa90a2e19771f728a7a760efaeb548853"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">tuple odf.attrconverters.pattern_length = re.compile(r'-?([0-9]+(\.[0-9]*)?|\.[0-9]+)((cm)|(mm)|(in)|(pt)|(pc)|(px))')</td>
</tr>
</table>
</div><div class="memdoc">
<p>Definition at line <a class="el" href="attrconverters_8py_source.html#l00150">150</a> of file <a class="el" href="attrconverters_8py_source.html">attrconverters.py</a>.</p>
</div>
</div>
<a class="anchor" id="a8b1acec5f51ab504076429de4a44e126"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">tuple odf.attrconverters.pattern_namespacedToken = re.compile(r'[0-9a-zA-Z_]+:[0-9a-zA-Z._\-]+')</td>
</tr>
</table>
</div><div class="memdoc">
<p>Definition at line <a class="el" href="attrconverters_8py_source.html#l00187">187</a> of file <a class="el" href="attrconverters_8py_source.html">attrconverters.py</a>.</p>
</div>
</div>
<a class="anchor" id="a579361611ccfad779029c701add3beac"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">tuple odf.attrconverters.pattern_percent = re.compile(r'-?([0-9]+(\.[0-9]*)?|\.[0-9]+)%')</td>
</tr>
</table>
</div><div class="memdoc">
<p>Definition at line <a class="el" href="attrconverters_8py_source.html#l00233">233</a> of file <a class="el" href="attrconverters_8py_source.html">attrconverters.py</a>.</p>
</div>
</div>
<a class="anchor" id="aba1cc76213c8ca3e229a93e09ac6f4ee"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">tuple odf.attrconverters.pattern_points = re.compile(r'-?[0-9]+,-?[0-9]+([ ]+-?[0-9]+,-?[0-9]+)*')</td>
</tr>
</table>
</div><div class="memdoc">
<p>Definition at line <a class="el" href="attrconverters_8py_source.html#l00242">242</a> of file <a class="el" href="attrconverters_8py_source.html">attrconverters.py</a>.</p>
</div>
</div>
<a class="anchor" id="adcdf5feb55fad2176b65fc447fae6957"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">tuple odf.attrconverters.pattern_vector3D = re.compile(r'\([ ]*-?([0-9]+(\.[0-9]*)?|\.[0-9]+)([ ]+-?([0-9]+(\.[0-9]*)?|\.[0-9]+)){2}[ ]*\)')</td>
</tr>
</table>
</div><div class="memdoc">
<p>Definition at line <a class="el" href="attrconverters_8py_source.html#l00027">27</a> of file <a class="el" href="attrconverters_8py_source.html">attrconverters.py</a>.</p>
</div>
</div>
<a class="anchor" id="a3df24b76956ae1cb73bf3fd649d558a3"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">tuple odf.attrconverters.pattern_viewbox = re.compile(r'-?[0-9]+([ ]+-?[0-9]+){3}$')</td>
</tr>
</table>
</div><div class="memdoc">
<p>Definition at line <a class="el" href="attrconverters_8py_source.html#l00288">288</a> of file <a class="el" href="attrconverters_8py_source.html">attrconverters.py</a>.</p>
</div>
</div>
</div><!-- contents -->
</div><!-- doc-content -->
<!-- start footer part -->
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
<ul>
<li class="navelem"><a class="el" href="namespaceodf.html">odf</a></li><li class="navelem"><a class="el" href="namespaceodf_1_1attrconverters.html">attrconverters</a></li>
<li class="footer">Generated on Tue Oct 28 2014 13:47:24 for ODFPY by
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.7 </li>
</ul>
</div>
</body>
</html>
|
web-src/app/index.html | oneils/html4email-kotlin | <!DOCTYPE html>
<html lang="ru" ng-app="digestApp">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<!--Let browser know website is optimized for mobile-->
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Digests</title>
<!--Import Google Icon Font-->
<link href="http://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!-- Bootstrap -->
<!-- build:css styles/main.css -->
<link href="../bower_components/materialize/dist/css/materialize.min.css" rel="stylesheet" media="screen,projection">
<link href="stylesheets/mystyles.css" rel="stylesheet">
<!-- endbuild -->
<link href='https://fonts.googleapis.com/css?family=PT+Sans&subset=latin,cyrillic-ext,cyrillic,latin-ext' rel='stylesheet' type='text/css'>
<base href="/"/>
</head>
<body style="background-color: #fcfcfc;">
<div class="container" >
<div ng-controller="AuthCtrl">
<div class="row text-danger" ng-show="AuthCtrl.error">
There was an error (bad credentials).
</div>
<div class="col s12">
<nav>
<div class="nav-wrapper green lighten-3">
<ul id="nav-mobile" class="left hide-on-med-and-down">
<li><a href="/#/">Home</a></li>
<li ng-show="isDisplayed"><a href="/#/article-list">Articles</a></li>
<li ng-show="isDisplayed"><a href="/#/save-digest">Save Digest</a></li>
<li ng-show="isDisplayed"><a href="/#/import-digest">Generate preview</a></li>
</ul>
<ul class="right hide-on-med-and-down">
<li ng-show="authenticated"><a href="#" ng-click="logout()">Logout</a></li>
</ul>
</div>
</nav>
</div>
</div>
<div data-ng-view></div>
</div>
<!-- build:js({.,app}) scripts/vendor.js -->
<!-- bower:js -->
<!-- <script src="../bower_components/es5-shim/es5-shim.js"></script> -->
<script src="../bower_components/angular/angular.js"></script>
<script src="../bower_components/angular-route/angular-route.js"></script>
<script src="../bower_components/angular-resource/angular-resource.js"></script>
<script src="../bower_components/angular-sanitize/angular-sanitize.js"></script>
<script src="../bower_components/angular-animate/angular-animate.js"></script>
<script src="../bower_components/angular-messages/angular-messages.js"></script>
<script src="../bower_components/jquery/dist/jquery.min.js"></script>
<!-- endbower -->
<script src="../bower_components/angular-i18n/angular-locale_ru.js"></script>
<!-- endbuild -->
<!-- build:js({.tmp,app}) scripts/scripts.js -->
<!-- app -->
<!-- app -->
<script src="modules/app.js"></script>
<script src="modules/controllers.js"></script>
<script src="modules/digest/digest-controller.js"></script>
<script src="modules/save-digest/save-digest-controller.js"></script>
<script src="modules/archive/archive-controller.js"></script>
<script src="modules/articles/articles-list-controller.js"></script>
<!-- <script src="js/filters.js"></script> -->
<script src="modules/services.js"></script>
<script src="../bower_components/materialize/dist/js/materialize.min.js"></script>
<!-- endbuild -->
<!-- Analythincs -->
<!--<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-81092807-1', 'auto');-->
<!--ga('send', 'pageview');-->
<!--</script>-->
</body>
</html>
|
lib/third_party/node/docs/symbols/src/node_wrappers_node.stream.Stream.js.html | gatapia/nclosure | <!DOCTYPE html>
<html>
<head>
<title>node_wrappers_node.stream.Stream.js</title>
<link rel="stylesheet" href="../../css/prettify_wynn.css" media="all"></link>
<link rel="stylesheet" href="../../css/all.css" media="all"></link>
<script src="../../javascript/all.js"></script>
<script src="../../javascript/prettify.js"></script>
</head><body onload="prePrettyPrint();"><pre>
goog.provide("node.stream.Stream");
/**
* @constructor
*/
node.stream.Stream = function() {};
/**
* @private
* @type {*}
*/
node.stream.Stream.core_ = require("stream").Stream;</pre></body></html> |
css/style.css | zihuayuan/world | body {
color: #00bfff;
font-family: Arial, sans-serif;
font-size: 14px;
}
h1 {
font-size: 2em;
font-weight: normal;
margin-bottom: 0;
color:white;
}
h2 {
font-size: 1.5em;
font-weight: normal;
margin-bottom: 0;
}
figure{
padding:2px;
color: #4d0000;
}
.container{
text-align: center;
padding-left:1%;
padding-right:1%;
background-color: #936c6c;
}
|
old/torrent/torrent.tpl.html | colthreepv/alldebrid | <div>
<div class="row">
<div class="col-xs-12">
<form class="form-inline">
<div class="row">
<div class="btn-group btn-group-justified" role="group" aria-label="...">
<div class="btn-group">
<button class="btn btn-md btn-danger" ng-disabled="!torrent.checked.length || torrent.removing" ng-click="torrent.removeChecked()">
remove <span class="glyphicon glyphicon-refresh glyphicon-spin" ng-show="torrent.removing"></span>
</button>
</div>
<div class="btn-group">
<button class="btn btn-md btn-info" ng-disabled="!torrent.checked.length" ng-click="torrent.generateLinks()">get links</button>
</div>
<div class="btn-group">
<button class="btn btn-md btn-default" ng-disabled="!torrent.checked.length" ng-click="torrent.deselect()">deselect</button>
</div>
<div class="btn-group">
<a class="btn btn-md btn-link disabled" ng-show="torrent.db.length">{{ torrent.db.length }} torrents</a>
</div>
</div>
</div>
</form>
</div>
</div>
<div class="row" ng-show="torrent.db.length">
<table class="table torrents">
<thead>
<tr>
<th class="select"><input type="checkbox" ng-click="torrent.select()" ng-model="torrent.selectAll"></th>
<th class="id">
<a class="pointer"
ng-class="{ 'ordered': torrent.orderByField === 'id'}" ng-click="torrent.orderBy('id')">
ID <span class="glyphicon"
ng-class="{ 'glyphicon-chevron-down': torrent.orderReversed, 'glyphicon-chevron-up': !torrent.orderReversed }"
ng-show="torrent.orderByField === 'id'"></span>
</a>
</th>
<th class="server">
<a class="pointer"
ng-class="{ 'ordered': torrent.orderByField === 'server'}" ng-click="torrent.orderBy('server')">
server <span class="glyphicon"
ng-class="{ 'glyphicon-chevron-down': torrent.orderReversed, 'glyphicon-chevron-up': !torrent.orderReversed }"
ng-show="torrent.orderByField === 'server'"></span>
</a>
</th>
<th class="name">
<a class="pointer"
ng-class="{ 'ordered': torrent.orderByField === 'name'}" ng-click="torrent.orderBy('name')">
Filename <span class="glyphicon"
ng-class="{ 'glyphicon-chevron-down': torrent.orderReversed, 'glyphicon-chevron-up': !torrent.orderReversed }"
ng-show="torrent.orderByField === 'name'"></span>
</a>
</th>
<th class="status">
<a class="pointer"
ng-class="{ 'ordered': torrent.orderByField === 'status'}" ng-click="torrent.orderBy('status')">
status <span class="glyphicon"
ng-class="{ 'glyphicon-chevron-down': torrent.orderReversed, 'glyphicon-chevron-up': !torrent.orderReversed }"
ng-show="torrent.orderByField === 'status'"></span>
</a>
</th>
<th class="size">
<a class="pointer"
ng-class="{ 'ordered': torrent.orderByField === 'size'}" ng-click="torrent.orderBy('size')">
size <span class="glyphicon"
ng-class="{ 'glyphicon-chevron-down': torrent.orderReversed, 'glyphicon-chevron-up': !torrent.orderReversed }"
ng-show="torrent.orderByField === 'size'"></span>
</a>
</th>
<th class="seeders">
<a class="pointer"
ng-class="{ 'ordered': torrent.orderByField === 'seeders'}" ng-click="torrent.orderBy('seeders')">
seeders <span class="glyphicon"
ng-class="{ 'glyphicon-chevron-down': torrent.orderReversed, 'glyphicon-chevron-up': !torrent.orderReversed }"
ng-show="torrent.orderByField === 'seeders'"></span>
</a>
</th>
<th class="speed">
<a class="pointer"
ng-class="{ 'ordered': torrent.orderByField === 'speed'}" ng-click="torrent.orderBy('speed')">
speed <span class="glyphicon"
ng-class="{ 'glyphicon-chevron-down': torrent.orderReversed, 'glyphicon-chevron-up': !torrent.orderReversed }"
ng-show="torrent.orderByField === 'speed'"></span>
</a>
</th>
<th class="added_date">
<a class="pointer"
ng-class="{ 'ordered': torrent.orderByField === 'added_date'}" ng-click="torrent.orderBy('added_date')">
date <span class="glyphicon"
ng-class="{ 'glyphicon-chevron-down': torrent.orderReversed, 'glyphicon-chevron-up': !torrent.orderReversed }"
ng-show="torrent.orderByField === 'added_date'"></span>
</a>
</th>
</tr>
</thead>
<tbody>
<tr class="pointer" ng-repeat="t in torrent.db | orderBy:torrent.orderByField:torrent.orderReversed" ng-class="{ 'warning': t.checked }" ng-click="torrent.check(t)">
<td class="select"><input type="checkbox" ng-model="t.checked"></td>
<td class="id">{{ t.id }}</td>
<td class="server">{{ t.server }}</td>
<td class="name">{{ t.name }}</td>
<td class="status">{{ t.status }}</td>
<td class="size">{{ t.size | bytes:2 }}</td>
<td class="seeders">{{ t.seeder }}</td>
<td class="speed">{{ t.speed }}</td>
<td class="added_date">{{ t.added_date | date:'dd/MM hh:mm' }}</td>
</tr>
</tbody>
</table>
</div>
<div class="row" ng-show="!torrent.db.length">
<div class="col-md-12 well-sm">
<div class="jumbotron">
<h1>No torrents detected</h1>
<p>add your first one from the navbar</p>
<p><a class="btn btn-primary btn-lg disabled" ng-disabled="!paid">Look up!</a></p>
</div>
</div>
</div>
</div>
|
examples/62_ProjTransform.html | CindyJS/CindyJS | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Cindy JS</title>
<link rel="stylesheet" href="../css/cindy.css" />
<script type="text/javascript" src="../build/js/Cindy.js"></script>
<script type="text/javascript">
var gslp = [
{ name: "A1", type: "Free", pos: [0, 0], color: [255, 0, 0] },
{ name: "A2", type: "Free", pos: [1, 0], color: [255, 0, 0] },
{ name: "A3", type: "Free", pos: [1, 1], color: [255, 0, 0] },
{ name: "A4", type: "Free", pos: [0, 1], color: [255, 0, 0] },
{ name: "B1", type: "Free", pos: [2, 0], color: [0, 128, 0] },
{ name: "B2", type: "Free", pos: [3, 0], color: [0, 128, 0] },
{ name: "B3", type: "Free", pos: [3, 1], color: [0, 128, 0] },
{ name: "B4", type: "Free", pos: [2, 1], color: [0, 128, 0] },
{ name: "Tr0", type: "TrProjection", args: ["A1", "B1", "A2", "B2", "A3", "B3", "A4", "B4"] },
{ name: "P", type: "Free", pos: [0.5, 0.5], color: [255, 0, 255] },
{ name: "Q", type: "TransformP", args: ["Tr0", "P"], color: [0, 255, 255] },
{ name: "S1", type: "Segment", args: ["A1", "A2"], color: [0, 0, 1] },
{ name: "S2", type: "Segment", args: ["A2", "A3"], color: [0, 0, 1] },
{ name: "S3", type: "Segment", args: ["A3", "A4"], color: [0, 0, 1] },
{ name: "S4", type: "Segment", args: ["A4", "A1"], color: [0, 0, 1] },
];
var n = 10;
for (var i = 0; i <= n; ++i) {
gslp.push(
{ name: "X1_" + i, type: "PointOnSegment", args: ["S1"], pos: [i / n, 0], visible: false },
{ name: "X2_" + i, type: "PointOnSegment", args: ["S3"], pos: [i / n, 1], visible: false },
{ name: "Y1_" + i, type: "PointOnSegment", args: ["S4"], pos: [0, i / n], visible: false },
{ name: "Y2_" + i, type: "PointOnSegment", args: ["S2"], pos: [1, i / n], visible: false },
{ name: "X_" + i, type: "Segment", args: ["X1_" + i, "X2_" + i] },
{ name: "Y_" + i, type: "Segment", args: ["Y1_" + i, "Y2_" + i] },
{ name: "tX_" + i, type: "TransformSegment", args: ["Tr0", "X_" + i] },
{ name: "tY_" + i, type: "TransformSegment", args: ["Tr0", "Y_" + i] }
);
}
gslp.push({
name: "Z",
type: "PointOnSegment",
args: ["tY_" + (n >> 1)],
pos: [2.75, 0.5],
color: [1, 1, 0],
});
CindyJS({
canvasname: "CSCanvas",
scripts: "cs*",
geometry: gslp,
transform: [{ scale: 3 }, { translate: [-1.5, -0.5] }],
});
</script>
</head>
<body>
<div id="CSCanvas" style="width: 500px; height: 500px; border: 2px solid black"></div>
</body>
</html>
|
lib/slf4j-1.7.10/site/testapidocs/org/slf4j/dummyExt/class-use/XLoggerTest.html | PRECISE/ROSLab | <!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_17) on Tue Jan 06 21:12:48 CET 2015 -->
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
<title>Uses of Class org.slf4j.dummyExt.XLoggerTest (SLF4J 1.7.10 Test API)</title>
<meta name="date" content="2015-01-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="Uses of Class org.slf4j.dummyExt.XLoggerTest (SLF4J 1.7.10 Test 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/slf4j/dummyExt/XLoggerTest.html" title="class in org.slf4j.dummyExt">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/slf4j/dummyExt/class-use/XLoggerTest.html" target="_top">Frames</a></li>
<li><a href="XLoggerTest.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.slf4j.dummyExt.XLoggerTest" class="title">Uses of Class<br>org.slf4j.dummyExt.XLoggerTest</h2>
</div>
<div class="classUseContainer">No usage of org.slf4j.dummyExt.XLoggerTest</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/slf4j/dummyExt/XLoggerTest.html" title="class in org.slf4j.dummyExt">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/slf4j/dummyExt/class-use/XLoggerTest.html" target="_top">Frames</a></li>
<li><a href="XLoggerTest.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 © 2005–2015 <a href="http://www.qos.ch">QOS.ch</a>. All rights reserved.</small></p>
</body>
</html>
|
nexusdash2/dashboardperdevice/templates/dashboardperdevice/osinfo.table.html | fmichalo/n9k-programmability | <tr>
<td style="width: 20%;">
<div class="general-info-item"><span class="general-title">Platform</span></div>
</td>
<td>{{ osplatform }}</td>
</tr>
<tr>
<td>
<div class="general-info-item"><span class="general-title">Uptime</span></div>
</td>
<td>{{ osuptime }}</td>
</tr>
<tr>
<td>
<div class="general-info-item"><span class="general-title">Server Time</span></div>
</td>
<td>{{ ostime }}</td>
</tr>
<tr>
<td>
<div class="general-info-item"><span class="general-title">Hostname</span></div>
</td>
<td>{{ osdevicename }}</td>
</tr> |
public_html/public/app/components/impress.js/index.html | sergioserr/fullslider | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="apple-mobile-web-app-capable" content="yes" />
<title></title>
<link href="http://fonts.googleapis.com/css?family=Open+Sans:regular,semibold,italic,italicsemibold|PT+Sans:400,700,400italic,700italic|PT+Serif:400,700,400italic,700italic" rel="stylesheet" />
<link href="css/impress-demo.css" rel="stylesheet" />
<link href="../../css/style.css" rel="stylesheet" type="text/css" />
<link href="../../css/fonts.css" rel="stylesheet" type="text/css" />
<link rel="shortcut icon" href="favicon.png" />
<link rel="apple-touch-icon" href="apple-touch-icon.png" />
</head>
<body class="impress-not-supported">
<!--
For example this fallback message is only visible when there is `impress-not-supported` class on body.
-->
<div class="fallback-message">
<p>Your browser <b>doesn't support the features required</b> by impress.js, so you are presented with a simplified version of this presentation.</p>
<p>For the best experience please use the latest <b>Chrome</b>, <b>Safari</b> or <b>Firefox</b> browser.</p>
</div>
<div id="impress">
</div>
<div class="hint">
<p>Use a spacebar or arrow keys to navigate</p>
</div>
<script>
if ("ontouchstart" in document.documentElement) {
document.querySelector(".hint").innerHTML = "<p>Tap on the left or right to navigate</p>";
}
</script>
<script src="../jquery/jquery-1.11.3.js" type="text/javascript"></script>
<script src="../../js/scripts.js" type="text/javascript"></script>
<script src="js/load.js"></script>
<script src="js/impress.js"></script>
<script>impress().init();</script>
</body>
</html>
|
any23-core/src/test/resources/microformats/xfn/simple-friend.html | venukb/any23 | <html>
<head>
<title>Hello World!</title>
</head>
<body>
<h1>Hello World!</h1>
<p>I'm Bob and I'm a friend of <a href="http://alice.example.com/" rel="friend">Alice</a>.</p>
</body>
</html> |
_includes/javascripts.html | opengood-io/opengood-io.github.io | <script src="{{ site.baseurl }}/js/jquery-3.3.1.min.js"></script>
<script src="{{ site.baseurl }}/js/simple-jekyll-search.min.js"></script>
<script>
SimpleJekyllSearch({
searchInput: document.getElementById("js-search-input"),
resultsContainer: document.getElementById("js-results-container"),
json: "{{site.baseurl}}/search.json",
searchResultTemplate:
'<li class="search-item"><a class="search-link" href="{url}">{title}</a></li>',
noResultsText: '<li class="search-no-item">No results found</li>'
});
</script>
<script src="{{ site.baseurl }}/js/instafeed.min.js"></script>
<script src="{{ site.baseurl }}/js/jquery.waitforimages.min.js"></script>
<script src="{{ site.baseurl }}/js/jquery.fitvids.js"></script>
<script src="{{ site.baseurl }}/js/common.js"></script>
|
target/classes/org/olat/course/archiver/_content/start_courselogs.html | srinivasiyerb/Scholst | <h4>$r.translate("course.logs.title")</h4>
#if ($hasLogArchiveAccess)
$r.render("logfilechooserform")
#if ($hascourselogarchive)
<hr class="b_form_spacer"/>
<p>
$body
</p>
<p>
$r.render("showfile")
</p>
#end
#else
<p>
$r.translate("course.logs.noaccess")
</p>
#end |
marketplaces/templates/admin/shop_revenue_report.html | StephenPower/CollectorCity-Market-Place | {% extends 'admin/reports_base.html' %}
{% load i18n adminmedia %}
{% block breadcrumbs %}
<div class="breadcrumbs">
<a href="/admin/">{% trans "Home" %}</a> >
<a href="{% url admin_reports %}">Reports</a> >
<a href="">Shop Revenue By Type</a>
</div>
{% endblock %}
{% block report %}
<h1>Shop Revenue By Type</h1>
{% endblock %} |
doc/0.9.10-incubating/guacamole-common/overview-frame.html | mike-jumper/incubator-guacamole-website | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_111) on Mon Oct 31 20:20:38 PDT 2016 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Overview List (guacamole-common 0.9.10-incubating API)</title>
<meta name="date" content="2016-10-31">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
<script type="text/javascript" src="script.js"></script>
</head>
<body>
<div class="indexHeader"><span><a href="allclasses-frame.html" target="packageFrame">All Classes</a></span></div>
<div class="indexContainer">
<h2 title="Packages">Packages</h2>
<ul title="Packages">
<li><a href="org/apache/guacamole/package-frame.html" target="packageFrame">org.apache.guacamole</a></li>
<li><a href="org/apache/guacamole/io/package-frame.html" target="packageFrame">org.apache.guacamole.io</a></li>
<li><a href="org/apache/guacamole/net/package-frame.html" target="packageFrame">org.apache.guacamole.net</a></li>
<li><a href="org/apache/guacamole/protocol/package-frame.html" target="packageFrame">org.apache.guacamole.protocol</a></li>
<li><a href="org/apache/guacamole/servlet/package-frame.html" target="packageFrame">org.apache.guacamole.servlet</a></li>
<li><a href="org/apache/guacamole/websocket/package-frame.html" target="packageFrame">org.apache.guacamole.websocket</a></li>
</ul>
</div>
<p> </p>
</body>
</html>
|
test/browser/index-require.html | edewit/fh-js-sdk | <html>
<head>
<meta charset="utf-8"/>
<title>FH JS SDK Test With RequireJS</title>
<link rel="stylesheet" href="libs/mocha/mocha.css"/>
</head>
<body>
<div id="mocha"></div>
<script data-main="requirejs/SpecRunner.js" src="requirejs/require.js"></script>
</body>
</html> |
publish/reports/javadoc/src-html/org/jsimpledb/parse/expr/BinaryExprParser.html | mmayorivera/jsimpledb | <!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>/*<a name="line.2"></a>
<span class="sourceLineNo">003</span> * Copyright (C) 2014 Archie L. Cobbs. All rights reserved.<a name="line.3"></a>
<span class="sourceLineNo">004</span> *<a name="line.4"></a>
<span class="sourceLineNo">005</span> * $Id$<a name="line.5"></a>
<span class="sourceLineNo">006</span> */<a name="line.6"></a>
<span class="sourceLineNo">007</span><a name="line.7"></a>
<span class="sourceLineNo">008</span>package org.jsimpledb.parse.expr;<a name="line.8"></a>
<span class="sourceLineNo">009</span><a name="line.9"></a>
<span class="sourceLineNo">010</span>import java.util.ArrayList;<a name="line.10"></a>
<span class="sourceLineNo">011</span>import java.util.Arrays;<a name="line.11"></a>
<span class="sourceLineNo">012</span>import java.util.List;<a name="line.12"></a>
<span class="sourceLineNo">013</span><a name="line.13"></a>
<span class="sourceLineNo">014</span>import org.jsimpledb.parse.ParseContext;<a name="line.14"></a>
<span class="sourceLineNo">015</span>import org.jsimpledb.parse.ParseException;<a name="line.15"></a>
<span class="sourceLineNo">016</span>import org.jsimpledb.parse.ParseSession;<a name="line.16"></a>
<span class="sourceLineNo">017</span>import org.jsimpledb.parse.Parser;<a name="line.17"></a>
<span class="sourceLineNo">018</span>import org.jsimpledb.parse.SpaceParser;<a name="line.18"></a>
<span class="sourceLineNo">019</span><a name="line.19"></a>
<span class="sourceLineNo">020</span>/**<a name="line.20"></a>
<span class="sourceLineNo">021</span> * Support superclass for tail-recursive binary expression parsers for expressions of the form {@code ARG1 OP ARG2}.<a name="line.21"></a>
<span class="sourceLineNo">022</span> *<a name="line.22"></a>
<span class="sourceLineNo">023</span> * @see <a href="http://en.wikipedia.org/wiki/Tail_recursive_parser">Tail Recursive Parser</a><a name="line.23"></a>
<span class="sourceLineNo">024</span> */<a name="line.24"></a>
<span class="sourceLineNo">025</span>public abstract class BinaryExprParser implements Parser<Node> {<a name="line.25"></a>
<span class="sourceLineNo">026</span><a name="line.26"></a>
<span class="sourceLineNo">027</span> private final SpaceParser spaceParser = new SpaceParser();<a name="line.27"></a>
<span class="sourceLineNo">028</span> private final Parser<? extends Node> lowerLevel;<a name="line.28"></a>
<span class="sourceLineNo">029</span> private final boolean leftAssociative;<a name="line.29"></a>
<span class="sourceLineNo">030</span> private final List<Op> ops;<a name="line.30"></a>
<span class="sourceLineNo">031</span><a name="line.31"></a>
<span class="sourceLineNo">032</span> /**<a name="line.32"></a>
<span class="sourceLineNo">033</span> * Primary constructor.<a name="line.33"></a>
<span class="sourceLineNo">034</span> *<a name="line.34"></a>
<span class="sourceLineNo">035</span> * @param lowerLevel next lower parse level<a name="line.35"></a>
<span class="sourceLineNo">036</span> * @param leftAssociative true for left-to-right association, false for right-to-left<a name="line.36"></a>
<span class="sourceLineNo">037</span> * @param ops operations, with operations that have other operations as prefixes listed first<a name="line.37"></a>
<span class="sourceLineNo">038</span> */<a name="line.38"></a>
<span class="sourceLineNo">039</span> protected BinaryExprParser(Parser<? extends Node> lowerLevel, boolean leftAssociative, Op... ops) {<a name="line.39"></a>
<span class="sourceLineNo">040</span> if (lowerLevel == null)<a name="line.40"></a>
<span class="sourceLineNo">041</span> throw new IllegalArgumentException("null lowerLevel");<a name="line.41"></a>
<span class="sourceLineNo">042</span> if (ops == null || ops.length == 0)<a name="line.42"></a>
<span class="sourceLineNo">043</span> throw new IllegalArgumentException("null/empty ops");<a name="line.43"></a>
<span class="sourceLineNo">044</span> this.lowerLevel = lowerLevel;<a name="line.44"></a>
<span class="sourceLineNo">045</span> this.leftAssociative = leftAssociative;<a name="line.45"></a>
<span class="sourceLineNo">046</span> this.ops = Arrays.asList(ops);<a name="line.46"></a>
<span class="sourceLineNo">047</span> }<a name="line.47"></a>
<span class="sourceLineNo">048</span><a name="line.48"></a>
<span class="sourceLineNo">049</span> /**<a name="line.49"></a>
<span class="sourceLineNo">050</span> * Convenience constructor for left-associative operators.<a name="line.50"></a>
<span class="sourceLineNo">051</span> *<a name="line.51"></a>
<span class="sourceLineNo">052</span> * @param lowerLevel next lower parse level<a name="line.52"></a>
<span class="sourceLineNo">053</span> * @param ops operations, with operations that have other operations as prefixes listed first<a name="line.53"></a>
<span class="sourceLineNo">054</span> */<a name="line.54"></a>
<span class="sourceLineNo">055</span> protected BinaryExprParser(Parser<? extends Node> lowerLevel, Op... ops) {<a name="line.55"></a>
<span class="sourceLineNo">056</span> this(lowerLevel, true, ops);<a name="line.56"></a>
<span class="sourceLineNo">057</span> }<a name="line.57"></a>
<span class="sourceLineNo">058</span><a name="line.58"></a>
<span class="sourceLineNo">059</span> @Override<a name="line.59"></a>
<span class="sourceLineNo">060</span> public Node parse(ParseSession session, ParseContext ctx, boolean complete) {<a name="line.60"></a>
<span class="sourceLineNo">061</span><a name="line.61"></a>
<span class="sourceLineNo">062</span> // Gather sub-nodes and intervening operators<a name="line.62"></a>
<span class="sourceLineNo">063</span> final ArrayList<Node> nodeList = new ArrayList<>(2);<a name="line.63"></a>
<span class="sourceLineNo">064</span> final ArrayList<Op> opList = new ArrayList<>(1);<a name="line.64"></a>
<span class="sourceLineNo">065</span> nodeList.add(this.lowerLevel.parse(session, ctx, complete));<a name="line.65"></a>
<span class="sourceLineNo">066</span> while (true) {<a name="line.66"></a>
<span class="sourceLineNo">067</span> this.spaceParser.parse(ctx, complete);<a name="line.67"></a>
<span class="sourceLineNo">068</span> final int mark = ctx.getIndex();<a name="line.68"></a>
<span class="sourceLineNo">069</span> Op op = null;<a name="line.69"></a>
<span class="sourceLineNo">070</span> candidateLoop:<a name="line.70"></a>
<span class="sourceLineNo">071</span> for (Op candidate : this.ops) {<a name="line.71"></a>
<span class="sourceLineNo">072</span> if (ctx.tryLiteral(candidate.getSymbol())) {<a name="line.72"></a>
<span class="sourceLineNo">073</span> op = candidate;<a name="line.73"></a>
<span class="sourceLineNo">074</span> break;<a name="line.74"></a>
<span class="sourceLineNo">075</span> }<a name="line.75"></a>
<span class="sourceLineNo">076</span> }<a name="line.76"></a>
<span class="sourceLineNo">077</span> if (op == null)<a name="line.77"></a>
<span class="sourceLineNo">078</span> break;<a name="line.78"></a>
<span class="sourceLineNo">079</span> this.spaceParser.parse(ctx, complete);<a name="line.79"></a>
<span class="sourceLineNo">080</span> final Node rhs;<a name="line.80"></a>
<span class="sourceLineNo">081</span> try {<a name="line.81"></a>
<span class="sourceLineNo">082</span> rhs = this.lowerLevel.parse(session, ctx, complete);<a name="line.82"></a>
<span class="sourceLineNo">083</span> } catch (ParseException e) {<a name="line.83"></a>
<span class="sourceLineNo">084</span> if (complete && !e.getCompletions().isEmpty())<a name="line.84"></a>
<span class="sourceLineNo">085</span> throw e;<a name="line.85"></a>
<span class="sourceLineNo">086</span> ctx.setIndex(mark); // backtrack<a name="line.86"></a>
<span class="sourceLineNo">087</span> break;<a name="line.87"></a>
<span class="sourceLineNo">088</span> }<a name="line.88"></a>
<span class="sourceLineNo">089</span> nodeList.add(rhs);<a name="line.89"></a>
<span class="sourceLineNo">090</span> opList.add(op);<a name="line.90"></a>
<span class="sourceLineNo">091</span> }<a name="line.91"></a>
<span class="sourceLineNo">092</span> if (nodeList.size() == 1)<a name="line.92"></a>
<span class="sourceLineNo">093</span> return nodeList.get(0);<a name="line.93"></a>
<span class="sourceLineNo">094</span><a name="line.94"></a>
<span class="sourceLineNo">095</span> // Build AST<a name="line.95"></a>
<span class="sourceLineNo">096</span> Node node;<a name="line.96"></a>
<span class="sourceLineNo">097</span> if (this.leftAssociative) {<a name="line.97"></a>
<span class="sourceLineNo">098</span> node = this.createNode(opList.get(0), nodeList.get(0), nodeList.get(1));<a name="line.98"></a>
<span class="sourceLineNo">099</span> for (int i = 1; i < nodeList.size() - 1; i++)<a name="line.99"></a>
<span class="sourceLineNo">100</span> node = this.createNode(opList.get(i), node, nodeList.get(i + 1));<a name="line.100"></a>
<span class="sourceLineNo">101</span> } else {<a name="line.101"></a>
<span class="sourceLineNo">102</span> final int max = nodeList.size();<a name="line.102"></a>
<span class="sourceLineNo">103</span> node = this.createNode(opList.get(max - 2), nodeList.get(max - 2), nodeList.get(max - 1));<a name="line.103"></a>
<span class="sourceLineNo">104</span> for (int i = max - 3; i >= 0; i--)<a name="line.104"></a>
<span class="sourceLineNo">105</span> node = this.createNode(opList.get(i), nodeList.get(i + 1), node);<a name="line.105"></a>
<span class="sourceLineNo">106</span> }<a name="line.106"></a>
<span class="sourceLineNo">107</span><a name="line.107"></a>
<span class="sourceLineNo">108</span> // Done<a name="line.108"></a>
<span class="sourceLineNo">109</span> return node;<a name="line.109"></a>
<span class="sourceLineNo">110</span> }<a name="line.110"></a>
<span class="sourceLineNo">111</span><a name="line.111"></a>
<span class="sourceLineNo">112</span> protected Node createNode(final Op op, final Node lhs, final Node rhs) {<a name="line.112"></a>
<span class="sourceLineNo">113</span> return new Node() {<a name="line.113"></a>
<span class="sourceLineNo">114</span> @Override<a name="line.114"></a>
<span class="sourceLineNo">115</span> public Value evaluate(ParseSession session) {<a name="line.115"></a>
<span class="sourceLineNo">116</span> return op.apply(session, lhs.evaluate(session), rhs.evaluate(session));<a name="line.116"></a>
<span class="sourceLineNo">117</span> }<a name="line.117"></a>
<span class="sourceLineNo">118</span> };<a name="line.118"></a>
<span class="sourceLineNo">119</span> }<a name="line.119"></a>
<span class="sourceLineNo">120</span>}<a name="line.120"></a>
<span class="sourceLineNo">121</span><a name="line.121"></a>
</pre>
</div>
</body>
</html>
|
manpages-zh.docset/Contents/Resources/Documents/html/drop_rule.7.html | magicsky/dash-manpages-zh |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML><HEAD><meta charset="UTF-8"><TITLE>Man page of DROP RULE</TITLE>
</HEAD><BODY>
<H1>DROP RULE</H1>
Section: SQL Commands (7)<BR>Updated: 2003-11-02<BR><A HREF="#index">Index</A>
<A HREF="/cgi-bin/man/man2html">Return to Main Contents</A><HR>
<A NAME="lbAB"> </A>
<H2>NAME</H2>
DROP RULE - 删除一个重写规则
<P>
<A NAME="lbAC"> </A>
<H2>SYNOPSIS</H2>
<P>
<PRE>
DROP RULE <I>name</I> ON <I>relation</I> [ CASCADE | RESTRICT ]
</PRE>
<A NAME="lbAD"> </A>
<H2>DESCRIPTION 描述</H2>
<P>
<B>DROP RULE</B> 删除一个规则。
<A NAME="lbAE"> </A>
<H2>PARAMETERS 参数</H2>
<DL COMPACT>
<DT><B></B><I>name</I><B></B><DD>
<BR> 要删除的现存的规则。
<DT><B></B><I>relation</I><B></B><DD>
<BR> 该规则应用的关系名字(可以有模式修饰)。
<DT><B>CASCADE</B><DD>
<BR> 自动删除依赖于此规则的对象。
<DT><B>RESTRICT</B><DD>
<BR> 如果有任何依赖对象,则拒绝删除此规则。这个是缺省。
</DL>
<A NAME="lbAF"> </A>
<H2>EXAMPLES 例子</H2>
<P>
<BR> 删除重写规则 newrule:
<P>
<PRE>
DROP RULE newrule ON mytable;
</PRE>
<A NAME="lbAG"> </A>
<H2>COMPATIBILITY 兼容性</H2>
<P>
<BR> 在 SQL 标准中没有DROP RULE。
<A NAME="lbAH"> </A>
<H2>SEE ALSO 参见</H2>
CREATE RULE [<B><A HREF="/cgi-bin/man/man2html?7+create_rule">create_rule</A></B>(7)]
<P>
<A NAME="lbAI"> </A>
<H2>译者</H2>
<B>Postgresql 中文网站</B>
<B>何伟平 <<A HREF="mailto:laser@pgsqldb.org">laser@pgsqldb.org</A>></B>
<P>
<HR>
<A NAME="index"> </A><H2>Index</H2>
<DL>
<DT><A HREF="#lbAB">NAME</A><DD>
<DT><A HREF="#lbAC">SYNOPSIS</A><DD>
<DT><A HREF="#lbAD">DESCRIPTION 描述</A><DD>
<DT><A HREF="#lbAE">PARAMETERS 参数</A><DD>
<DT><A HREF="#lbAF">EXAMPLES 例子</A><DD>
<DT><A HREF="#lbAG">COMPATIBILITY 兼容性</A><DD>
<DT><A HREF="#lbAH">SEE ALSO 参见</A><DD>
<DT><A HREF="#lbAI">译者</A><DD>
</DL>
<HR>
This document was created by
<A HREF="/cgi-bin/man/man2html">man2html</A>,
using the manual pages.<BR>
Time: 13:01:20 GMT, January 29, 2015
</BODY>
</HTML>
|
public/src/docs/classes/PlacedSymbol.html | gitpan/stylehouse | <!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>PlacedSymbol</title>
<base target="class-frame">
<link href="../assets/css/docs.css" rel="stylesheet" type="text/css">
<script src="../assets/js/paper.js"></script>
<script src="../assets/js/jquery.js"></script>
<script src="../assets/js/codemirror.js"></script>
<script src="../assets/js/docs.js"></script>
</head>
<body class="reference">
<div class="reference-class">
<h1>PlacedSymbol</h1>
<p> Extends <b><a href="../classes/Item.html"><tt>Item</tt></a></b></p>
<p>A PlacedSymbol represents an instance of a symbol which has been
placed in a Paper.js project.</p>
</div>
<!-- ============================== constructors ========================= -->
<div class="reference-members"><h2>Constructors</h2>
<div id="placedsymbol-symbol" class="member">
<div class="member-link">
<a name="placedsymbol-symbol" href="#placedsymbol-symbol"><tt><b>PlacedSymbol</b>(symbol[, point])</tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>Creates a new PlacedSymbol Item.</p>
<ul><b>Parameters:</b>
<li>
<tt>symbol:</tt>
<a href="../classes/Symbol.html"><tt>Symbol</tt></a>
— the symbol to place
</li>
<li>
<tt>point:</tt>
<a href="../classes/Point.html"><tt>Point</tt></a>
— the center point of the placed symbol
— optional
</li>
</ul>
<p>
<b>Example</b> — Placing 100 instances of a symbol: Create a star shaped path at {x: 0, y: 0}:
</p>
<div class="paperscript split">
<div class="buttons">
<div class="button run">Run</div>
</div>
<script type="text/paperscript" canvas="canvas-0">
var path = new Path.Star({
center: new Point(0, 0),
points: 6,
radius1: 5,
radius2: 13,
fillColor: 'white',
strokeColor: 'black'
});
// Create a symbol from the path:
var symbol = new Symbol(path);
// Remove the path:
path.remove();
// Place 100 instances of the symbol:
for (var i = 0; i < 100; i++) {
// Place an instance of the symbol in the project:
var instance = new PlacedSymbol(symbol);
// Move the instance to a random position within the view:
instance.position = Point.random() * view.size;
// Rotate the instance by a random amount between
// 0 and 360 degrees:
instance.rotate(Math.random() * 360);
// Scale the instance between 0.25 and 1:
instance.scale(0.25 + Math.random() * 0.75);
}
</script>
<div class="canvas"><canvas width="516" height="240" id="canvas-0"></canvas></div>
</div>
</div>
</div>
</div>
</div>
<div class="reference-members"><h2>Properties</h2>
<div id="symbol" class="member">
<div class="member-link">
<a name="symbol" href="#symbol"><tt><b>symbol</b></tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>The symbol that the placed symbol refers to.</p>
<ul><b>Type:</b>
<li>
<a href="../classes/Symbol.html"><tt>Symbol</tt></a>
</li>
</ul>
</div>
</div>
</div>
</div>
<!-- =========================== inherited properties ====================== -->
<div class="reference-members"><h2>Properties inherited from <a href="../classes/Item.html"><tt>Item</tt></a></h2>
<div id="id" class="member">
<div class="member-link">
<a name="id" href="#id"><tt><b>id</b></tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>The unique id of the item.</p>
<p>Read only.</p>
<ul><b>Type:</b>
<li>
<tt>Number</tt>
</li>
</ul>
</div>
</div>
</div>
<div id="classname" class="member">
<div class="member-link">
<a name="classname" href="#classname"><tt><b>className</b></tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>The class name of the item as a string.</p>
<p>Read only.</p>
<ul><b>Type:</b>
<li>
<tt>String('Group', 'Layer', 'Path', 'CompoundPath', 'Shape',
'Raster', 'PlacedSymbol', 'PointText')</tt>
</li>
</ul>
</div>
</div>
</div>
<div id="name" class="member">
<div class="member-link">
<a name="name" href="#name"><tt><b>name</b></tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>The name of the item. If the item has a name, it can be accessed by name
through its parent's children list.</p>
<ul><b>Type:</b>
<li>
<tt>String</tt>
</li>
</ul>
<p>
<b>Example</b>
</p>
<div class="paperscript split">
<div class="buttons">
<div class="button run">Run</div>
</div>
<script type="text/paperscript" canvas="canvas-1">
var path = new Path.Circle({
center: [80, 50],
radius: 35
});
// Set the name of the path:
path.name = 'example';
// Create a group and add path to it as a child:
var group = new Group();
group.addChild(path);
// The path can be accessed by name:
group.children['example'].fillColor = 'red';
</script>
<div class="canvas"><canvas width="516" height="100" id="canvas-1"></canvas></div>
</div>
</div>
</div>
</div>
<div id="style" class="member">
<div class="member-link">
<a name="style" href="#style"><tt><b>style</b></tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>The path style of the item.</p>
<ul><b>Type:</b>
<li>
<a href="../classes/Style.html"><tt>Style</tt></a>
</li>
</ul>
<p>
<b>Example</b> — Applying several styles to an item in one go, by passing an object to its style property:
</p>
<div class="paperscript split">
<div class="buttons">
<div class="button run">Run</div>
</div>
<script type="text/paperscript" canvas="canvas-2">
var circle = new Path.Circle({
center: [80, 50],
radius: 30
});
circle.style = {
fillColor: 'blue',
strokeColor: 'red',
strokeWidth: 5
};
</script>
<div class="canvas"><canvas width="516" height="100" id="canvas-2"></canvas></div>
</div>
<p>
<b>Example</b> — Copying the style of another item:
</p>
<div class="paperscript split">
<div class="buttons">
<div class="button run">Run</div>
</div>
<script type="text/paperscript" canvas="canvas-3">
var path = new Path.Circle({
center: [50, 50],
radius: 30,
fillColor: 'red'
});
var path2 = new Path.Circle({
center: new Point(180, 50),
radius: 20
});
// Copy the path style of path:
path2.style = path.style;
</script>
<div class="canvas"><canvas width="516" height="100" id="canvas-3"></canvas></div>
</div>
<p>
<b>Example</b> — Applying the same style object to multiple items:
</p>
<div class="paperscript split">
<div class="buttons">
<div class="button run">Run</div>
</div>
<script type="text/paperscript" canvas="canvas-4">
var myStyle = {
fillColor: 'red',
strokeColor: 'blue',
strokeWidth: 4
};
var path = new Path.Circle({
center: [50, 50],
radius: 30
});
path.style = myStyle;
var path2 = new Path.Circle({
center: new Point(150, 50),
radius: 20
});
path2.style = myStyle;
</script>
<div class="canvas"><canvas width="516" height="100" id="canvas-4"></canvas></div>
</div>
</div>
</div>
</div>
<div id="visible" class="member">
<div class="member-link">
<a name="visible" href="#visible"><tt><b>visible</b></tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>Specifies whether the item is visible. When set to <tt>false</tt>, the
item won't be drawn.</p>
<ul><b>Default:</b>
<li>
<tt>true</tt>
</li>
</ul>
<ul><b>Type:</b>
<li>
<tt>Boolean</tt>
</li>
</ul>
<p>
<b>Example</b> — Hiding an item:
</p>
<div class="paperscript split">
<div class="buttons">
<div class="button run">Run</div>
</div>
<script type="text/paperscript" canvas="canvas-5">
var path = new Path.Circle({
center: [50, 50],
radius: 20,
fillColor: 'red'
});
// Hide the path:
path.visible = false;
</script>
<div class="canvas"><canvas width="516" height="100" id="canvas-5"></canvas></div>
</div>
</div>
</div>
</div>
<div id="blendmode" class="member">
<div class="member-link">
<a name="blendmode" href="#blendmode"><tt><b>blendMode</b></tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>The blend mode with which the item is composited onto the canvas. Both
the standard canvas compositing modes, as well as the new CSS blend modes
are supported. If blend-modes cannot be rendered natively, they are
emulated. Be aware that emulation can have an impact on performance.</p>
<ul><b>Default:</b>
<li>
<tt>'normal'</tt>
</li>
</ul>
<ul><b>Type:</b>
<li>
<tt>String('normal', 'multiply', 'screen', 'overlay', 'soft-light',
'hard-light', 'color-dodge', 'color-burn', 'darken', 'lighten',
'difference', 'exclusion', 'hue', 'saturation', 'luminosity', 'color',
'add', 'subtract', 'average', 'pin-light', 'negation', 'source-over',
'source-in', 'source-out', 'source-atop', 'destination-over',
'destination-in', 'destination-out', 'destination-atop', 'lighter',
'darker', 'copy', 'xor')</tt>
</li>
</ul>
<p>
<b>Example</b> — Setting an item's blend mode:
</p>
<div class="paperscript split">
<div class="buttons">
<div class="button run">Run</div>
</div>
<script type="text/paperscript" canvas="canvas-6">
// Create a white rectangle in the background
// with the same dimensions as the view:
var background = new Path.Rectangle(view.bounds);
background.fillColor = 'white';
var circle = new Path.Circle({
center: [80, 50],
radius: 35,
fillColor: 'red'
});
var circle2 = new Path.Circle({
center: new Point(120, 50),
radius: 35,
fillColor: 'blue'
});
// Set the blend mode of circle2:
circle2.blendMode = 'multiply';
</script>
<div class="canvas"><canvas width="516" height="100" id="canvas-6"></canvas></div>
</div>
</div>
</div>
</div>
<div id="opacity" class="member">
<div class="member-link">
<a name="opacity" href="#opacity"><tt><b>opacity</b></tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>The opacity of the item as a value between <tt>0</tt> and <tt>1</tt>.</p>
<ul><b>Default:</b>
<li>
<tt>1</tt>
</li>
</ul>
<ul><b>Type:</b>
<li>
<tt>Number</tt>
</li>
</ul>
<p>
<b>Example</b> — Making an item 50% transparent:
</p>
<div class="paperscript split">
<div class="buttons">
<div class="button run">Run</div>
</div>
<script type="text/paperscript" canvas="canvas-7">
var circle = new Path.Circle({
center: [80, 50],
radius: 35,
fillColor: 'red'
});
var circle2 = new Path.Circle({
center: new Point(120, 50),
radius: 35,
fillColor: 'blue',
strokeColor: 'green',
strokeWidth: 10
});
// Make circle2 50% transparent:
circle2.opacity = 0.5;
</script>
<div class="canvas"><canvas width="516" height="100" id="canvas-7"></canvas></div>
</div>
</div>
</div>
</div>
<div id="selected" class="member">
<div class="member-link">
<a name="selected" href="#selected"><tt><b>selected</b></tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>Specifies whether the item is selected. This will also return
<tt>true</tt> for <a href="../classes/Group.html"><tt>Group</tt></a> items if they are partially selected, e.g.</p>
<p>groups containing selected or partially selected paths.</p>
<p>Paper.js draws the visual outlines of selected items on top of your
project. This can be useful for debugging, as it allows you to see the
construction of paths, position of path curves, individual segment points
and bounding boxes of symbol and raster items.</p>
<ul><b>Type:</b>
<li>
<tt>Boolean</tt>
</li>
</ul>
<p><b>See also:</b>
<tt><a href="../classes/Project.html#selecteditems"><tt>project.selectedItems</tt></a></tt>, <tt><a href="../classes/Segment.html#selected"><tt>segment.selected</tt></a></tt>, <tt><a href="../classes/Curve.html#selected"><tt>curve.selected</tt></a></tt>, <tt><a href="../classes/Point.html#selected"><tt>point.selected</tt></a></tt>
</p>
<p>
<b>Example</b> — Selecting an item:
</p>
<div class="paperscript split">
<div class="buttons">
<div class="button run">Run</div>
</div>
<script type="text/paperscript" canvas="canvas-8">
var path = new Path.Circle({
center: [80, 50],
radius: 35
});
path.selected = true; // Select the path
</script>
<div class="canvas"><canvas width="516" height="100" id="canvas-8"></canvas></div>
</div>
</div>
</div>
</div>
<div id="clipmask" class="member">
<div class="member-link">
<a name="clipmask" href="#clipmask"><tt><b>clipMask</b></tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>Specifies whether the item defines a clip mask. This can only be set on
paths, compound paths, and text frame objects, and only if the item is
already contained within a clipping group.</p>
<ul><b>Type:</b>
<li>
<tt>Boolean</tt>
</li>
</ul>
</div>
</div>
</div>
<div id="data" class="member">
<div class="member-link">
<a name="data" href="#data"><tt><b>data</b></tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>A plain javascript object which can be used to store
arbitrary data on the item.</p>
<ul><b>Type:</b>
<li>
<tt>Object</tt>
</li>
</ul>
<p>
<b>Example</b>
</p>
<pre class="code">var path = new Path();
path.data.remember = 'milk';</pre>
<p>
<b>Example</b>
</p>
<pre class="code">var path = new Path();
path.data.malcolm = new Point(20, 30);
console.log(path.data.malcolm.x); // 20</pre>
<p>
<b>Example</b>
</p>
<pre class="code">var path = new Path();
path.data = {
home: 'Omicron Theta',
found: 2338,
pets: ['Spot']
};
console.log(path.data.pets.length); // 1</pre>
<p>
<b>Example</b>
</p>
<pre class="code">var path = new Path({
data: {
home: 'Omicron Theta',
found: 2338,
pets: ['Spot']
}
});
console.log(path.data.pets.length); // 1</pre>
</div>
</div>
</div>
<h3>Position and Bounding Boxes</h3>
<div id="position-_dontLink" class="member">
<div class="member-link">
<a name="position-_dontLink" href="#position-_dontLink"><tt><b>position</b></tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>The item's position within the parent item's coordinate system. By
default, this is the <a href="../classes/Rectangle.html#center"><tt>rectangle.center</tt></a> of the item's
<a href="../classes/Item.html#bounds" onclick="return toggleMember('bounds', true);"><tt>bounds</tt></a> rectangle.</p>
<ul><b>Type:</b>
<li>
<a href="../classes/Point.html"><tt>Point</tt></a>
</li>
</ul>
<p>
<b>Example</b> — Changing the position of a path:
</p>
<div class="paperscript split">
<div class="buttons">
<div class="button run">Run</div>
</div>
<script type="text/paperscript" canvas="canvas-9">
// Create a circle at position { x: 10, y: 10 }
var circle = new Path.Circle({
center: new Point(10, 10),
radius: 10,
fillColor: 'red'
});
// Move the circle to { x: 20, y: 20 }
circle.position = new Point(20, 20);
// Move the circle 100 points to the right and 50 points down
circle.position += new Point(100, 50);
</script>
<div class="canvas"><canvas width="516" height="100" id="canvas-9"></canvas></div>
</div>
<p>
<b>Example</b> — Changing the x coordinate of an item's position:
</p>
<div class="paperscript split">
<div class="buttons">
<div class="button run">Run</div>
</div>
<script type="text/paperscript" canvas="canvas-10">
// Create a circle at position { x: 20, y: 20 }
var circle = new Path.Circle({
center: new Point(20, 20),
radius: 10,
fillColor: 'red'
});
// Move the circle 100 points to the right
circle.position.x += 100;
</script>
<div class="canvas"><canvas width="516" height="100" id="canvas-10"></canvas></div>
</div>
</div>
</div>
</div>
<div id="pivot-_dontLink" class="member">
<div class="member-link">
<a name="pivot-_dontLink" href="#pivot-_dontLink"><tt><b>pivot</b></tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>The item's pivot point specified in the item coordinate system, defining
the point around which all transformations are hinging. This is also the
reference point for <a href="../classes/Item.html#position" onclick="return toggleMember('position', true);"><tt>position</tt></a>. By default, it is set to
<tt>null</tt>, meaning the <a href="../classes/Rectangle.html#center"><tt>rectangle.center</tt></a> of the item's
<a href="../classes/Item.html#bounds" onclick="return toggleMember('bounds', true);"><tt>bounds</tt></a> rectangle is used as pivot.</p>
<ul><b>Type:</b>
<li>
<a href="../classes/Point.html"><tt>Point</tt></a>
</li>
</ul>
</div>
</div>
</div>
<div id="bounds" class="member">
<div class="member-link">
<a name="bounds" href="#bounds"><tt><b>bounds</b></tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>The bounding rectangle of the item excluding stroke width.</p>
<p>Read only.</p>
<ul><b>Type:</b>
<li>
<a href="../classes/Rectangle.html"><tt>Rectangle</tt></a>
</li>
</ul>
</div>
</div>
</div>
<div id="strokebounds" class="member">
<div class="member-link">
<a name="strokebounds" href="#strokebounds"><tt><b>strokeBounds</b></tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>The bounding rectangle of the item including stroke width.</p>
<p>Read only.</p>
<ul><b>Type:</b>
<li>
<a href="../classes/Rectangle.html"><tt>Rectangle</tt></a>
</li>
</ul>
</div>
</div>
</div>
<div id="handlebounds" class="member">
<div class="member-link">
<a name="handlebounds" href="#handlebounds"><tt><b>handleBounds</b></tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>The bounding rectangle of the item including handles.</p>
<p>Read only.</p>
<ul><b>Type:</b>
<li>
<a href="../classes/Rectangle.html"><tt>Rectangle</tt></a>
</li>
</ul>
</div>
</div>
</div>
<div id="rotation" class="member">
<div class="member-link">
<a name="rotation" href="#rotation"><tt><b>rotation</b></tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>The current rotation angle of the item, as described by its
<a href="../classes/Item.html#matrix" onclick="return toggleMember('matrix', true);"><tt>matrix</tt></a>.</p>
<ul><b>Type:</b>
<li>
<tt>Number</tt>
</li>
</ul>
</div>
</div>
</div>
<div id="scaling" class="member">
<div class="member-link">
<a name="scaling" href="#scaling"><tt><b>scaling</b></tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>The current scale factor of the item, as described by its
<a href="../classes/Item.html#matrix" onclick="return toggleMember('matrix', true);"><tt>matrix</tt></a>.</p>
<ul><b>Type:</b>
<li>
<a href="../classes/Point.html"><tt>Point</tt></a>
</li>
</ul>
</div>
</div>
</div>
<div id="matrix" class="member">
<div class="member-link">
<a name="matrix" href="#matrix"><tt><b>matrix</b></tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>The item's transformation matrix, defining position and dimensions in
relation to its parent item in which it is contained.</p>
<ul><b>Type:</b>
<li>
<a href="../classes/Matrix.html"><tt>Matrix</tt></a>
</li>
</ul>
</div>
</div>
</div>
<div id="globalmatrix-_internal" class="member">
<div class="member-link">
<a name="globalmatrix-_internal" href="#globalmatrix-_internal"><tt><b>globalMatrix</b></tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>The item's global transformation matrix in relation to the global project
coordinate space. Note that the view's transformations resulting from
zooming and panning are not factored in.</p>
<p>Read only.</p>
<ul><b>Type:</b>
<li>
<a href="../classes/Matrix.html"><tt>Matrix</tt></a>
</li>
</ul>
</div>
</div>
</div>
<div id="applymatrix" class="member">
<div class="member-link">
<a name="applymatrix" href="#applymatrix"><tt><b>applyMatrix</b></tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>Specifies whether the group applies transformations directly to its
children, or whether they are to be stored in its <a href="../classes/Item.html#matrix" onclick="return toggleMember('matrix', true);"><tt>matrix</tt></a></p>
<ul><b>Type:</b>
<li>
<tt>Boolean</tt>
</li>
</ul>
</div>
</div>
</div>
<div id="transformcontent" class="member">
<div class="member-link">
<a name="transformcontent" href="#transformcontent"><tt><b>transformContent</b></tt></a>
</div>
<div class="member-description hidden">
</div>
</div>
<h3>Project Hierarchy</h3>
<div id="project" class="member">
<div class="member-link">
<a name="project" href="#project"><tt><b>project</b></tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>The project that this item belongs to.</p>
<p>Read only.</p>
<ul><b>Type:</b>
<li>
<a href="../classes/Project.html"><tt>Project</tt></a>
</li>
</ul>
</div>
</div>
</div>
<div id="view" class="member">
<div class="member-link">
<a name="view" href="#view"><tt><b>view</b></tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>The view that this item belongs to.</p>
<p>Read only.</p>
<ul><b>Type:</b>
<li>
<a href="../classes/View.html"><tt>View</tt></a>
</li>
</ul>
</div>
</div>
</div>
<div id="layer" class="member">
<div class="member-link">
<a name="layer" href="#layer"><tt><b>layer</b></tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>The layer that this item is contained within.</p>
<p>Read only.</p>
<ul><b>Type:</b>
<li>
<a href="../classes/Layer.html"><tt>Layer</tt></a>
</li>
</ul>
</div>
</div>
</div>
<div id="parent" class="member">
<div class="member-link">
<a name="parent" href="#parent"><tt><b>parent</b></tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>The item that this item is contained within.</p>
<ul><b>Type:</b>
<li>
<a href="../classes/Item.html"><tt>Item</tt></a>
</li>
</ul>
<p>
<b>Example</b>
</p>
<pre class="code">var path = new Path();
// New items are placed in the active layer:
console.log(path.parent == project.activeLayer); // true
var group = new Group();
group.addChild(path);
// Now the parent of the path has become the group:
console.log(path.parent == group); // true</pre>
<p>
<b>Example</b> — Setting the parent of the item to another item
</p>
<pre class="code">var path = new Path();
// New items are placed in the active layer:
console.log(path.parent == project.activeLayer); // true
var group = new Group();
group.parent = path;
// Now the parent of the path has become the group:
console.log(path.parent == group); // true
// The path is now contained in the children list of group:
console.log(group.children[0] == path); // true</pre>
<p>
<b>Example</b> — Setting the parent of an item in the constructor
</p>
<pre class="code">var group = new Group();
var path = new Path({
parent: group
});
// The parent of the path is the group:
console.log(path.parent == group); // true
// The path is contained in the children list of group:
console.log(group.children[0] == path); // true</pre>
</div>
</div>
</div>
<div id="children" class="member">
<div class="member-link">
<a name="children" href="#children"><tt><b>children</b></tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>The children items contained within this item. Items that define a
<a href="../classes/Item.html#name" onclick="return toggleMember('name', true);"><tt>name</tt></a> can also be accessed by name.</p>
<p><b>Please note:</b> The children array should not be modified directly
using array functions. To remove single items from the children list, use
<a href="../classes/Item.html#remove"><tt>item.remove</tt></a>(), to remove all items from the children list, use
<a href="../classes/Item.html#removechildren"><tt>item.removeChildren</tt></a>(). To add items to the children list, use
<a href="../classes/Item.html#addchild-item"><tt>item.addChild(item)</tt></a> or <a href="../classes/Item.html#insertchild-index-item"><tt>item.insertChild(index, item)</tt></a>.</p>
<ul><b>Type:</b>
<li>
Array of <a href="../classes/Item.html"><tt>Item</tt></a> objects
</li>
</ul>
<p>
<b>Example</b> — Accessing items in the children array:
</p>
<div class="paperscript split">
<div class="buttons">
<div class="button run">Run</div>
</div>
<script type="text/paperscript" canvas="canvas-11">
var path = new Path.Circle({
center: [80, 50],
radius: 35
});
// Create a group and move the path into it:
var group = new Group();
group.addChild(path);
// Access the path through the group's children array:
group.children[0].fillColor = 'red';
</script>
<div class="canvas"><canvas width="516" height="100" id="canvas-11"></canvas></div>
</div>
<p>
<b>Example</b> — Accessing children by name:
</p>
<div class="paperscript split">
<div class="buttons">
<div class="button run">Run</div>
</div>
<script type="text/paperscript" canvas="canvas-12">
var path = new Path.Circle({
center: [80, 50],
radius: 35
});
// Set the name of the path:
path.name = 'example';
// Create a group and move the path into it:
var group = new Group();
group.addChild(path);
// The path can be accessed by name:
group.children['example'].fillColor = 'orange';
</script>
<div class="canvas"><canvas width="516" height="100" id="canvas-12"></canvas></div>
</div>
<p>
<b>Example</b> — Passing an array of items to item.children:
</p>
<div class="paperscript split">
<div class="buttons">
<div class="button run">Run</div>
</div>
<script type="text/paperscript" canvas="canvas-13">
var path = new Path.Circle({
center: [80, 50],
radius: 35
});
var group = new Group();
group.children = [path];
// The path is the first child of the group:
group.firstChild.fillColor = 'green';
</script>
<div class="canvas"><canvas width="516" height="100" id="canvas-13"></canvas></div>
</div>
</div>
</div>
</div>
<div id="firstchild" class="member">
<div class="member-link">
<a name="firstchild" href="#firstchild"><tt><b>firstChild</b></tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>The first item contained within this item. This is a shortcut for
accessing <tt>item.children[0]</tt>.</p>
<p>Read only.</p>
<ul><b>Type:</b>
<li>
<a href="../classes/Item.html"><tt>Item</tt></a>
</li>
</ul>
</div>
</div>
</div>
<div id="lastchild" class="member">
<div class="member-link">
<a name="lastchild" href="#lastchild"><tt><b>lastChild</b></tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>The last item contained within this item.This is a shortcut for
accessing <tt>item.children[item.children.length - 1]</tt>.</p>
<p>Read only.</p>
<ul><b>Type:</b>
<li>
<a href="../classes/Item.html"><tt>Item</tt></a>
</li>
</ul>
</div>
</div>
</div>
<div id="nextsibling" class="member">
<div class="member-link">
<a name="nextsibling" href="#nextsibling"><tt><b>nextSibling</b></tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>The next item on the same level as this item.</p>
<p>Read only.</p>
<ul><b>Type:</b>
<li>
<a href="../classes/Item.html"><tt>Item</tt></a>
</li>
</ul>
</div>
</div>
</div>
<div id="previoussibling" class="member">
<div class="member-link">
<a name="previoussibling" href="#previoussibling"><tt><b>previousSibling</b></tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>The previous item on the same level as this item.</p>
<p>Read only.</p>
<ul><b>Type:</b>
<li>
<a href="../classes/Item.html"><tt>Item</tt></a>
</li>
</ul>
</div>
</div>
</div>
<div id="index" class="member">
<div class="member-link">
<a name="index" href="#index"><tt><b>index</b></tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>The index of this item within the list of its parent's children.</p>
<p>Read only.</p>
<ul><b>Type:</b>
<li>
<tt>Number</tt>
</li>
</ul>
</div>
</div>
</div>
<h3>Stroke Style</h3>
<div id="strokecolor" class="member">
<div class="member-link">
<a name="strokecolor" href="#strokecolor"><tt><b>strokeColor</b></tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>The color of the stroke.</p>
<ul><b>Type:</b>
<li>
<a href="../classes/Color.html"><tt>Color</tt></a>
</li>
</ul>
<p>
<b>Example</b> — Setting the stroke color of a path:
</p>
<div class="paperscript split">
<div class="buttons">
<div class="button run">Run</div>
</div>
<script type="text/paperscript" canvas="canvas-14">
// Create a circle shaped path at { x: 80, y: 50 }
// with a radius of 35:
var circle = new Path.Circle({
center: [80, 50],
radius: 35
});
// Set its stroke color to RGB red:
circle.strokeColor = new Color(1, 0, 0);
</script>
<div class="canvas"><canvas width="516" height="100" id="canvas-14"></canvas></div>
</div>
</div>
</div>
</div>
<div id="strokewidth" class="member">
<div class="member-link">
<a name="strokewidth" href="#strokewidth"><tt><b>strokeWidth</b></tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>The width of the stroke.</p>
<ul><b>Type:</b>
<li>
<tt>Number</tt>
</li>
</ul>
<p>
<b>Example</b> — Setting an item's stroke width:
</p>
<div class="paperscript split">
<div class="buttons">
<div class="button run">Run</div>
</div>
<script type="text/paperscript" canvas="canvas-15">
// Create a circle shaped path at { x: 80, y: 50 }
// with a radius of 35:
var circle = new Path.Circle({
center: [80, 50],
radius: 35,
strokeColor: 'red'
});
// Set its stroke width to 10:
circle.strokeWidth = 10;
</script>
<div class="canvas"><canvas width="516" height="100" id="canvas-15"></canvas></div>
</div>
</div>
</div>
</div>
<div id="strokecap" class="member">
<div class="member-link">
<a name="strokecap" href="#strokecap"><tt><b>strokeCap</b></tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>The shape to be used at the end of open <a href="../classes/Path.html"><tt>Path</tt></a> items, when they
have a stroke.</p>
<ul><b>Default:</b>
<li>
<tt>'butt'</tt>
</li>
</ul>
<ul><b>Type:</b>
<li>
<tt>String('round', 'square', 'butt')</tt>
</li>
</ul>
<p>
<b>Example</b> — A look at the different stroke caps:
</p>
<div class="paperscript split">
<div class="buttons">
<div class="button run">Run</div>
</div>
<script type="text/paperscript" canvas="canvas-16">
var line = new Path({
segments: [[80, 50], [420, 50]],
strokeColor: 'black',
strokeWidth: 20,
selected: true
});
// Set the stroke cap of the line to be round:
line.strokeCap = 'round';
// Copy the path and set its stroke cap to be square:
var line2 = line.clone();
line2.position.y += 50;
line2.strokeCap = 'square';
// Make another copy and set its stroke cap to be butt:
var line2 = line.clone();
line2.position.y += 100;
line2.strokeCap = 'butt';
</script>
<div class="canvas"><canvas width="516" height="200" id="canvas-16"></canvas></div>
</div>
</div>
</div>
</div>
<div id="strokejoin" class="member">
<div class="member-link">
<a name="strokejoin" href="#strokejoin"><tt><b>strokeJoin</b></tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>The shape to be used at the corners of paths when they have a stroke.</p>
<ul><b>Default:</b>
<li>
<tt>'miter'</tt>
</li>
</ul>
<ul><b>Type:</b>
<li>
<tt>String('miter', 'round', 'bevel')</tt>
</li>
</ul>
<p>
<b>Example</b> — A look at the different stroke joins:
</p>
<div class="paperscript split">
<div class="buttons">
<div class="button run">Run</div>
</div>
<script type="text/paperscript" canvas="canvas-17">
var path = new Path({
segments: [[80, 100], [120, 40], [160, 100]],
strokeColor: 'black',
strokeWidth: 20,
// Select the path, in order to see where the stroke is formed:
selected: true
});
var path2 = path.clone();
path2.position.x += path2.bounds.width * 1.5;
path2.strokeJoin = 'round';
var path3 = path2.clone();
path3.position.x += path3.bounds.width * 1.5;
path3.strokeJoin = 'bevel';
</script>
<div class="canvas"><canvas width="516" height="120" id="canvas-17"></canvas></div>
</div>
</div>
</div>
</div>
<div id="dashoffset" class="member">
<div class="member-link">
<a name="dashoffset" href="#dashoffset"><tt><b>dashOffset</b></tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>The dash offset of the stroke.</p>
<ul><b>Default:</b>
<li>
<tt>0</tt>
</li>
</ul>
<ul><b>Type:</b>
<li>
<tt>Number</tt>
</li>
</ul>
</div>
</div>
</div>
<div id="dasharray" class="member">
<div class="member-link">
<a name="dasharray" href="#dasharray"><tt><b>dashArray</b></tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>Specifies an array containing the dash and gap lengths of the stroke.</p>
<ul><b>Default:</b>
<li>
<tt>[]</tt>
</li>
</ul>
<ul><b>Type:</b>
<li>
<tt>Array</tt>
</li>
</ul>
<p>
<b>Example</b>
</p>
<div class="paperscript split">
<div class="buttons">
<div class="button run">Run</div>
</div>
<script type="text/paperscript" canvas="canvas-18">
var path = new Path.Circle({
center: [80, 50],
radius: 40,
strokeWidth: 2,
strokeColor: 'black'
});
// Set the dashed stroke to [10pt dash, 4pt gap]:
path.dashArray = [10, 4];
</script>
<div class="canvas"><canvas width="516" height="100" id="canvas-18"></canvas></div>
</div>
</div>
</div>
</div>
<div id="miterlimit" class="member">
<div class="member-link">
<a name="miterlimit" href="#miterlimit"><tt><b>miterLimit</b></tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>The miter limit of the stroke.</p>
<p>When two line segments meet at a sharp angle and miter joins have been
specified for <a href="../classes/Item.html#strokejoin"><tt>item.strokeJoin</tt></a>, it is possible for the miter to
extend far beyond the <a href="../classes/Item.html#strokewidth"><tt>item.strokeWidth</tt></a> of the path. The
miterLimit imposes a limit on the ratio of the miter length to the
<a href="../classes/Item.html#strokewidth"><tt>item.strokeWidth</tt></a>.</p>
<ul><b>Default:</b>
<li>
<tt>10</tt>
</li>
</ul>
<ul><b>Type:</b>
<li>
<tt>Number</tt>
</li>
</ul>
</div>
</div>
</div>
<div id="windingrule" class="member">
<div class="member-link">
<a name="windingrule" href="#windingrule"><tt><b>windingRule</b></tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>The winding-rule with which the shape gets filled. Please note that only
modern browsers support winding-rules other than <tt>'nonzero'</tt>.</p>
<ul><b>Default:</b>
<li>
<tt>'nonzero'</tt>
</li>
</ul>
<ul><b>Type:</b>
<li>
<tt>String('nonzero', 'evenodd')</tt>
</li>
</ul>
</div>
</div>
</div>
<h3>Fill Style</h3>
<div id="fillcolor" class="member">
<div class="member-link">
<a name="fillcolor" href="#fillcolor"><tt><b>fillColor</b></tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>The fill color of the item.</p>
<ul><b>Type:</b>
<li>
<a href="../classes/Color.html"><tt>Color</tt></a>
</li>
</ul>
<p>
<b>Example</b> — Setting the fill color of a path to red:
</p>
<div class="paperscript split">
<div class="buttons">
<div class="button run">Run</div>
</div>
<script type="text/paperscript" canvas="canvas-19">
// Create a circle shaped path at { x: 80, y: 50 }
// with a radius of 35:
var circle = new Path.Circle({
center: [80, 50],
radius: 35
});
// Set the fill color of the circle to RGB red:
circle.fillColor = new Color(1, 0, 0);
</script>
<div class="canvas"><canvas width="516" height="100" id="canvas-19"></canvas></div>
</div>
</div>
</div>
</div>
<h3>Selection Style</h3>
<div id="selectedcolor" class="member">
<div class="member-link">
<a name="selectedcolor" href="#selectedcolor"><tt><b>selectedColor</b></tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>The color the item is highlighted with when selected. If the item does
not specify its own color, the color defined by its layer is used instead.</p>
<ul><b>Type:</b>
<li>
<a href="../classes/Color.html"><tt>Color</tt></a>
</li>
</ul>
</div>
</div>
</div>
<h3>Event Handlers</h3>
<div id="onframe" class="member">
<div class="member-link">
<a name="onframe" href="#onframe"><tt><b>onFrame</b></tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>Item level handler function to be called on each frame of an animation.</p>
<p>The function receives an event object which contains information about
the frame event:</p>
<p><b><tt>event.count</tt></b>: the number of times the frame event was
fired.</p>
<p><b><tt>event.time</tt></b>: the total amount of time passed since the
first frame event in seconds.</p>
<p><b><tt>event.delta</tt></b>: the time passed in seconds since the last
frame event.</p>
<ul><b>Type:</b>
<li>
<tt>Function</tt>
</li>
</ul>
<p><b>See also:</b>
<tt><a href="../classes/View.html#onframe"><tt>view.onFrame</tt></a></tt>
</p>
<p>
<b>Example</b> — Creating an animation:
</p>
<div class="paperscript split">
<div class="buttons">
<div class="button run">Run</div>
</div>
<script type="text/paperscript" canvas="canvas-20">
// Create a rectangle shaped path with its top left point at:
// {x: 50, y: 25} and a size of {width: 50, height: 50}
var path = new Path.Rectangle(new Point(50, 25), new Size(50, 50));
path.fillColor = 'black';
path.onFrame = function(event) {
// Every frame, rotate the path by 3 degrees:
this.rotate(3);
}
</script>
<div class="canvas"><canvas width="516" height="100" id="canvas-20"></canvas></div>
</div>
</div>
</div>
</div>
<div id="onmousedown" class="member">
<div class="member-link">
<a name="onmousedown" href="#onmousedown"><tt><b>onMouseDown</b></tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>The function to be called when the mouse button is pushed down on the
item. The function receives a <a href="../classes/MouseEvent.html"><tt>MouseEvent</tt></a> object which contains
information about the mouse event.</p>
<ul><b>Type:</b>
<li>
<tt>Function</tt>
</li>
</ul>
<p>
<b>Example</b> — Press the mouse button down on the circle shaped path, to make it red:
</p>
<div class="paperscript split">
<div class="buttons">
<div class="button run">Run</div>
</div>
<script type="text/paperscript" canvas="canvas-21">
// Create a circle shaped path at the center of the view:
var path = new Path.Circle({
center: view.center,
radius: 25,
fillColor: 'black'
});
// When the mouse is pressed on the item,
// set its fill color to red:
path.onMouseDown = function(event) {
this.fillColor = 'red';
}
</script>
<div class="canvas"><canvas width="516" height="100" id="canvas-21"></canvas></div>
</div>
<p>
<b>Example</b> — Press the mouse on the circle shaped paths to remove them:
</p>
<div class="paperscript split">
<div class="buttons">
<div class="button run">Run</div>
</div>
<script type="text/paperscript" canvas="canvas-22">
// Loop 30 times:
for (var i = 0; i < 30; i++) {
// Create a circle shaped path at a random position
// in the view:
var path = new Path.Circle({
center: Point.random() * view.size,
radius: 25,
fillColor: 'black',
strokeColor: 'white'
});
// When the mouse is pressed on the item, remove it:
path.onMouseDown = function(event) {
this.remove();
}
}
</script>
<div class="canvas"><canvas width="516" height="100" id="canvas-22"></canvas></div>
</div>
</div>
</div>
</div>
<div id="onmouseup" class="member">
<div class="member-link">
<a name="onmouseup" href="#onmouseup"><tt><b>onMouseUp</b></tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>The function to be called when the mouse button is released over the item.</p>
<p>The function receives a <a href="../classes/MouseEvent.html"><tt>MouseEvent</tt></a> object which contains
information about the mouse event.</p>
<ul><b>Type:</b>
<li>
<tt>Function</tt>
</li>
</ul>
<p>
<b>Example</b> — Release the mouse button over the circle shaped path, to make it red:
</p>
<div class="paperscript split">
<div class="buttons">
<div class="button run">Run</div>
</div>
<script type="text/paperscript" canvas="canvas-23">
// Create a circle shaped path at the center of the view:
var path = new Path.Circle({
center: view.center,
radius: 25,
fillColor: 'black'
});
// When the mouse is released over the item,
// set its fill color to red:
path.onMouseUp = function(event) {
this.fillColor = 'red';
}
</script>
<div class="canvas"><canvas width="516" height="100" id="canvas-23"></canvas></div>
</div>
</div>
</div>
</div>
<div id="onclick" class="member">
<div class="member-link">
<a name="onclick" href="#onclick"><tt><b>onClick</b></tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>The function to be called when the mouse clicks on the item. The function
receives a <a href="../classes/MouseEvent.html"><tt>MouseEvent</tt></a> object which contains information about the
mouse event.</p>
<ul><b>Type:</b>
<li>
<tt>Function</tt>
</li>
</ul>
<p>
<b>Example</b> — Click on the circle shaped path, to make it red:
</p>
<div class="paperscript split">
<div class="buttons">
<div class="button run">Run</div>
</div>
<script type="text/paperscript" canvas="canvas-24">
// Create a circle shaped path at the center of the view:
var path = new Path.Circle({
center: view.center,
radius: 25,
fillColor: 'black'
});
// When the mouse is clicked on the item,
// set its fill color to red:
path.onClick = function(event) {
this.fillColor = 'red';
}
</script>
<div class="canvas"><canvas width="516" height="100" id="canvas-24"></canvas></div>
</div>
<p>
<b>Example</b> — Click on the circle shaped paths to remove them:
</p>
<div class="paperscript split">
<div class="buttons">
<div class="button run">Run</div>
</div>
<script type="text/paperscript" canvas="canvas-25">
// Loop 30 times:
for (var i = 0; i < 30; i++) {
// Create a circle shaped path at a random position
// in the view:
var path = new Path.Circle({
center: Point.random() * view.size,
radius: 25,
fillColor: 'black',
strokeColor: 'white'
});
// When the mouse clicks on the item, remove it:
path.onClick = function(event) {
this.remove();
}
}
</script>
<div class="canvas"><canvas width="516" height="100" id="canvas-25"></canvas></div>
</div>
</div>
</div>
</div>
<div id="ondoubleclick" class="member">
<div class="member-link">
<a name="ondoubleclick" href="#ondoubleclick"><tt><b>onDoubleClick</b></tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>The function to be called when the mouse double clicks on the item. The
function receives a <a href="../classes/MouseEvent.html"><tt>MouseEvent</tt></a> object which contains information
about the mouse event.</p>
<ul><b>Type:</b>
<li>
<tt>Function</tt>
</li>
</ul>
<p>
<b>Example</b> — Double click on the circle shaped path, to make it red:
</p>
<div class="paperscript split">
<div class="buttons">
<div class="button run">Run</div>
</div>
<script type="text/paperscript" canvas="canvas-26">
// Create a circle shaped path at the center of the view:
var path = new Path.Circle({
center: view.center,
radius: 25,
fillColor: 'black'
});
// When the mouse is double clicked on the item,
// set its fill color to red:
path.onDoubleClick = function(event) {
this.fillColor = 'red';
}
</script>
<div class="canvas"><canvas width="516" height="100" id="canvas-26"></canvas></div>
</div>
<p>
<b>Example</b> — Double click on the circle shaped paths to remove them:
</p>
<div class="paperscript split">
<div class="buttons">
<div class="button run">Run</div>
</div>
<script type="text/paperscript" canvas="canvas-27">
// Loop 30 times:
for (var i = 0; i < 30; i++) {
// Create a circle shaped path at a random position
// in the view:
var path = new Path.Circle({
center: Point.random() * view.size,
radius: 25,
fillColor: 'black',
strokeColor: 'white'
});
// When the mouse is double clicked on the item, remove it:
path.onDoubleClick = function(event) {
this.remove();
}
}
</script>
<div class="canvas"><canvas width="516" height="100" id="canvas-27"></canvas></div>
</div>
</div>
</div>
</div>
<div id="onmousemove" class="member">
<div class="member-link">
<a name="onmousemove" href="#onmousemove"><tt><b>onMouseMove</b></tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>The function to be called repeatedly when the mouse moves on top of the
item. The function receives a <a href="../classes/MouseEvent.html"><tt>MouseEvent</tt></a> object which contains
information about the mouse event.</p>
<ul><b>Type:</b>
<li>
<tt>Function</tt>
</li>
</ul>
<p>
<b>Example</b> — Move over the circle shaped path, to change its opacity:
</p>
<div class="paperscript split">
<div class="buttons">
<div class="button run">Run</div>
</div>
<script type="text/paperscript" canvas="canvas-28">
// Create a circle shaped path at the center of the view:
var path = new Path.Circle({
center: view.center,
radius: 25,
fillColor: 'black'
});
// When the mouse moves on top of the item, set its opacity
// to a random value between 0 and 1:
path.onMouseMove = function(event) {
this.opacity = Math.random();
}
</script>
<div class="canvas"><canvas width="516" height="100" id="canvas-28"></canvas></div>
</div>
</div>
</div>
</div>
<div id="onmouseenter" class="member">
<div class="member-link">
<a name="onmouseenter" href="#onmouseenter"><tt><b>onMouseEnter</b></tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>The function to be called when the mouse moves over the item. This
function will only be called again, once the mouse moved outside of the
item first. The function receives a <a href="../classes/MouseEvent.html"><tt>MouseEvent</tt></a> object which
contains information about the mouse event.</p>
<ul><b>Type:</b>
<li>
<tt>Function</tt>
</li>
</ul>
<p>
<b>Example</b> — When you move the mouse over the item, its fill color is set to red. When you move the mouse outside again, its fill color is set back to black.
</p>
<div class="paperscript split">
<div class="buttons">
<div class="button run">Run</div>
</div>
<script type="text/paperscript" canvas="canvas-29">
// Create a circle shaped path at the center of the view:
var path = new Path.Circle({
center: view.center,
radius: 25,
fillColor: 'black'
});
// When the mouse enters the item, set its fill color to red:
path.onMouseEnter = function(event) {
this.fillColor = 'red';
}
// When the mouse leaves the item, set its fill color to black:
path.onMouseLeave = function(event) {
this.fillColor = 'black';
}
</script>
<div class="canvas"><canvas width="516" height="100" id="canvas-29"></canvas></div>
</div>
<p>
<b>Example</b> — When you click the mouse, you create new circle shaped items. When you move the mouse over the item, its fill color is set to red. When you move the mouse outside again, its fill color is set back to black.
</p>
<div class="paperscript split">
<div class="buttons">
<div class="button run">Run</div>
</div>
<script type="text/paperscript" canvas="canvas-30">
function enter(event) {
this.fillColor = 'red';
}
function leave(event) {
this.fillColor = 'black';
}
// When the mouse is pressed:
function onMouseDown(event) {
// Create a circle shaped path at the position of the mouse:
var path = new Path.Circle(event.point, 25);
path.fillColor = 'black';
// When the mouse enters the item, set its fill color to red:
path.onMouseEnter = enter;
// When the mouse leaves the item, set its fill color to black:
path.onMouseLeave = leave;
}
</script>
<div class="canvas"><canvas width="516" height="100" id="canvas-30"></canvas></div>
</div>
</div>
</div>
</div>
<div id="onmouseleave" class="member">
<div class="member-link">
<a name="onmouseleave" href="#onmouseleave"><tt><b>onMouseLeave</b></tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>The function to be called when the mouse moves out of the item.</p>
<p>The function receives a <a href="../classes/MouseEvent.html"><tt>MouseEvent</tt></a> object which contains
information about the mouse event.</p>
<ul><b>Type:</b>
<li>
<tt>Function</tt>
</li>
</ul>
<p>
<b>Example</b> — Move the mouse over the circle shaped path and then move it out of it again to set its fill color to red:
</p>
<div class="paperscript split">
<div class="buttons">
<div class="button run">Run</div>
</div>
<script type="text/paperscript" canvas="canvas-31">
// Create a circle shaped path at the center of the view:
var path = new Path.Circle({
center: view.center,
radius: 25,
fillColor: 'black'
});
// When the mouse leaves the item, set its fill color to red:
path.onMouseLeave = function(event) {
this.fillColor = 'red';
}
</script>
<div class="canvas"><canvas width="516" height="100" id="canvas-31"></canvas></div>
</div>
</div>
</div>
</div>
</div>
<!-- =========================== inherited methods ========================= -->
<div class="reference-members"><h2>Methods inherited from <a href="../classes/Item.html"><tt>Item</tt></a></h2>
<div id="set-props" class="member">
<div class="member-link">
<a name="set-props" href="#set-props"><tt><b>set</b>(props)</tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>Sets those properties of the passed object literal on this item to
the values defined in the object literal, if the item has property of the
given name (or a setter defined for it).</p>
<ul><b>Parameters:</b>
<li>
<tt>props:</tt>
<tt>Object</tt>
</li>
</ul>
<ul><b>Returns:</b>
<li>
<tt><a href="../classes/Item.html"><tt>Item</tt></a></tt> — the item itself.
</li>
</ul>
<p>
<b>Example</b> — Setting properties through an object literal
</p>
<div class="paperscript split">
<div class="buttons">
<div class="button run">Run</div>
</div>
<script type="text/paperscript" canvas="canvas-32">
var circle = new Path.Circle({
center: [80, 50],
radius: 35
});
circle.set({
strokeColor: 'red',
strokeWidth: 10,
fillColor: 'black',
selected: true
});
</script>
<div class="canvas"><canvas width="516" height="100" id="canvas-32"></canvas></div>
</div>
</div>
</div>
</div>
<div id="isinserted" class="member">
<div class="member-link">
<a name="isinserted" href="#isinserted"><tt><b>isInserted</b>()</tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>Checks whether the item and all its parents are inserted into the DOM or
not.</p>
<ul><b>Returns:</b>
<li>
<tt><tt>Boolean</tt></tt> — <tt>true</tt> if the item is inserted into the DOM, <tt>false</tt> otherwise
</li>
</ul>
</div>
</div>
</div>
<div id="clone" class="member">
<div class="member-link">
<a name="clone" href="#clone"><tt><b>clone</b>([insert])</tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>Clones the item within the same project and places the copy above the
item.</p>
<ul><b>Parameters:</b>
<li>
<tt>insert:</tt>
<tt>Boolean</tt>
— specifies whether the copy should be
inserted into the DOM. When set to <tt>true</tt>, it is inserted above the
original.
— optional, default: <tt>true</tt>
</li>
</ul>
<ul><b>Returns:</b>
<li>
<tt><a href="../classes/Item.html"><tt>Item</tt></a></tt> — the newly cloned item
</li>
</ul>
<p>
<b>Example</b> — Cloning items:
</p>
<div class="paperscript split">
<div class="buttons">
<div class="button run">Run</div>
</div>
<script type="text/paperscript" canvas="canvas-33">
var circle = new Path.Circle({
center: [50, 50],
radius: 10,
fillColor: 'red'
});
// Make 20 copies of the circle:
for (var i = 0; i < 20; i++) {
var copy = circle.clone();
// Distribute the copies horizontally, so we can see them:
copy.position.x += i * copy.bounds.width;
}
</script>
<div class="canvas"><canvas width="516" height="100" id="canvas-33"></canvas></div>
</div>
</div>
</div>
</div>
<div id="copyto-item" class="member">
<div class="member-link">
<a name="copyto-item" href="#copyto-item"><tt><b>copyTo</b>(item)</tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>When passed a project, copies the item to the project,
or duplicates it within the same project. When passed an item,
copies the item into the specified item.</p>
<ul><b>Parameters:</b>
<li>
<tt>item:</tt>
<a href="../classes/Project.html"><tt>Project</tt></a> / <a href="../classes/Layer.html"><tt>Layer</tt></a> / <a href="../classes/Group.html"><tt>Group</tt></a> / <a href="../classes/CompoundPath.html"><tt>CompoundPath</tt></a>
— the item or project to
copy the item to
</li>
</ul>
<ul><b>Returns:</b>
<li>
<tt><a href="../classes/Item.html"><tt>Item</tt></a></tt> — the new copy of the item
</li>
</ul>
</div>
</div>
</div>
<div id="rasterize" class="member">
<div class="member-link">
<a name="rasterize" href="#rasterize"><tt><b>rasterize</b>([resolution])</tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>Rasterizes the item into a newly created Raster object. The item itself
is not removed after rasterization.</p>
<ul><b>Parameters:</b>
<li>
<tt>resolution:</tt>
<tt>Number</tt>
— the resolution of the raster
in pixels per inch (DPI). If not speceified, the value of
<tt>view.resolution</tt> is used.
— optional, default: <tt>view.resolution</tt>
</li>
</ul>
<ul><b>Returns:</b>
<li>
<tt><a href="../classes/Raster.html"><tt>Raster</tt></a></tt> — the newly created raster item
</li>
</ul>
<p>
<b>Example</b> — Rasterizing an item:
</p>
<div class="paperscript split">
<div class="buttons">
<div class="button run">Run</div>
</div>
<script type="text/paperscript" canvas="canvas-34">
var circle = new Path.Circle({
center: [50, 50],
radius: 5,
fillColor: 'red'
});
// Create a rasterized version of the path:
var raster = circle.rasterize();
// Move it 100pt to the right:
raster.position.x += 100;
// Scale the path and the raster by 300%, so we can compare them:
circle.scale(5);
raster.scale(5);
</script>
<div class="canvas"><canvas width="516" height="100" id="canvas-34"></canvas></div>
</div>
</div>
</div>
</div>
<div id="contains-point" class="member">
<div class="member-link">
<a name="contains-point" href="#contains-point"><tt><b>contains</b>(point)</tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>Checks whether the item's geometry contains the given point.</p>
<ul><b>Parameters:</b>
<li>
<tt>point:</tt>
<a href="../classes/Point.html"><tt>Point</tt></a>
— The point to check for.
</li>
</ul>
<p>
<b>Example</b> — Click within and outside the star below Create a star shaped path:
</p>
<div class="paperscript split">
<div class="buttons">
<div class="button run">Run</div>
</div>
<script type="text/paperscript" canvas="canvas-35">
var path = new Path.Star({
center: [50, 50],
points: 12,
radius1: 20,
radius2: 40,
fillColor: 'black'
});
// Whenever the user presses the mouse:
function onMouseDown(event) {
// If the position of the mouse is within the path,
// set its fill color to red, otherwise set it to
// black:
if (path.contains(event.point)) {
path.fillColor = 'red';
} else {
path.fillColor = 'black';
}
}
</script>
<div class="canvas"><canvas width="516" height="100" id="canvas-35"></canvas></div>
</div>
</div>
</div>
</div>
<div id="hittest-point" class="member">
<div class="member-link">
<a name="hittest-point" href="#hittest-point"><tt><b>hitTest</b>(point[, options])</tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>Perform a hit test on the item (and its children, if it is a
<a href="../classes/Group.html"><tt>Group</tt></a> or <a href="../classes/Layer.html"><tt>Layer</tt></a>) at the location of the specified point.</p>
<p>The options object allows you to control the specifics of the hit test
and may contain a combination of the following values:</p>
<p><b>options.tolerance:</b> <tt>Number</tt> – the tolerance of the hit test
in points. Can also be controlled through
<a href="../classes/Project.html#options"><tt>project.options</tt></a><tt>.hitTolerance</tt>.</p>
<p><b>options.type:</b> Only hit test again a certain item type:</p>
<p><tt>Group, Layer, Path, CompoundPath, Shape, Raster, PlacedSymbol,
PointText</tt>, etc.</p>
<p><b>options.fill:</b> <tt>Boolean</tt> – hit test the fill of items.</p>
<p><b>options.stroke:</b> <tt>Boolean</tt> – hit test the curves of path
items, taking into account stroke width.</p>
<p><b>options.segment:</b> <tt>Boolean</tt> – hit test for
<a href="../classes/Segment.html#point"><tt>segment.point</tt></a> of <a href="../classes/Path.html"><tt>Path</tt></a> items.</p>
<p><b>options.handles:</b> <tt>Boolean</tt> – hit test for the handles
(<a href="../classes/Segment.html#handlein"><tt>segment.handleIn</tt></a> / <a href="../classes/Segment.html#handleout"><tt>segment.handleOut</tt></a>) of path segments.</p>
<p><b>options.ends:</b> <tt>Boolean</tt> – only hit test for the first or
last segment points of open path items.</p>
<p><b>options.bounds:</b> <tt>Boolean</tt> – hit test the corners and
side-centers of the bounding rectangle of items (<a href="../classes/Item.html#bounds"><tt>item.bounds</tt></a>).</p>
<p><b>options.center:</b> <tt>Boolean</tt> – hit test the
<a href="../classes/Rectangle.html#center"><tt>rectangle.center</tt></a> of the bounding rectangle of items
(<a href="../classes/Item.html#bounds"><tt>item.bounds</tt></a>).</p>
<p><b>options.guides:</b> <tt>Boolean</tt> – hit test items that have
<tt>Item#guide</tt> set to <tt>true</tt>.</p>
<p><b>options.selected:</b> <tt>Boolean</tt> – only hit selected items.<b</p>
<ul><b>Parameters:</b>
<li>
<tt>point:</tt>
<a href="../classes/Point.html"><tt>Point</tt></a>
— The point where the hit test should be performed
</li>
<li>
<tt>options:</tt>
<tt>Object</tt>
— optional, default: <tt>{ fill: true, stroke: true, segments: true,
tolerance: 2 }</tt>
</li>
</ul>
<ul><b>Returns:</b>
<li>
<tt><a href="../classes/HitResult.html"><tt>HitResult</tt></a></tt> — a hit result object that contains more
information about what exactly was hit or <tt>null</tt> if nothing was
hit
</li>
</ul>
</div>
</div>
</div>
<h3>Importing / Exporting JSON and SVG</h3>
<div id="exportjson" class="member">
<div class="member-link">
<a name="exportjson" href="#exportjson"><tt><b>exportJSON</b>([options])</tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>Exports (serializes) the item with its content and child items to a JSON
data string.</p>
<p>The options object offers control over some aspects of the SVG export:</p>
<p><b>options.asString:</b> <tt>Boolean</tt> – whether the JSON is returned
as a <tt>Object</tt> or a <tt>String</tt>.</p>
<p><b>options.precision:</b> <tt>Number</tt> – the amount of fractional
digits in numbers used in JSON data.</p>
<ul><b>Parameters:</b>
<li>
<tt>options:</tt>
<tt>Object</tt>
— the
serialization options
— optional, default: <tt>{ asString: true, precision: 5 }</tt>
</li>
</ul>
<ul><b>Returns:</b>
<li>
<tt><tt>String</tt></tt> — the exported JSON data
</li>
</ul>
</div>
</div>
</div>
<div id="importjson-json" class="member">
<div class="member-link">
<a name="importjson-json" href="#importjson-json"><tt><b>importJSON</b>(json)</tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>Imports (deserializes) the stored JSON data into this item. If the data
describes an item of the same class or a parent class of the item, the
data is imported into the item itself. If not, the imported item is added
to this item's <a href="../classes/Item.html#children"><tt>item.children</tt></a> list. Note that not all type of
items can have children.</p>
<ul><b>Parameters:</b>
<li>
<tt>json:</tt>
<tt>String</tt>
— the JSON data to import from.
</li>
</ul>
</div>
</div>
</div>
<div id="exportsvg" class="member">
<div class="member-link">
<a name="exportsvg" href="#exportsvg"><tt><b>exportSVG</b>([options])</tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>Exports the item with its content and child items as an SVG DOM.</p>
<p>The options object offers control over some aspects of the SVG export:</p>
<p><b>options.asString:</b> <tt>Boolean</tt> – whether a SVG node or a
<tt>String</tt> is to be returned.</p>
<p><b>options.precision:</b> <tt>Number</tt> – the amount of fractional
digits in numbers used in SVG data.</p>
<p><b>options.matchShapes:</b> <tt>Boolean</tt> – whether imported path
items should tried to be converted to shape items, if their geometries
match.</p>
<ul><b>Parameters:</b>
<li>
<tt>options:</tt>
<tt>Object</tt>
— the export options.
— optional, default: <tt>{ asString: false, precision: 5,
matchShapes: false }</tt>
</li>
</ul>
<ul><b>Returns:</b>
<li>
<tt><tt>SVGSVGElement</tt></tt> — the item converted to an SVG node
</li>
</ul>
</div>
</div>
</div>
<div id="importsvg-svg" class="member">
<div class="member-link">
<a name="importsvg-svg" href="#importsvg-svg"><tt><b>importSVG</b>(svg[, options])</tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>Converts the provided SVG content into Paper.js items and adds them to
the this item's children list.</p>
<p>Note that the item is not cleared first. You can call
<a href="../classes/Item.html#removechildren"><tt>item.removeChildren</tt></a>() to do so.</p>
<p>The options object offers control over some aspects of the SVG import:</p>
<p><b>options.expandShapes:</b> <tt>Boolean</tt> – whether imported shape
items should be expanded to path items.</p>
<ul><b>Parameters:</b>
<li>
<tt>svg:</tt>
<tt>SVGSVGElement</tt> / <tt>String</tt>
— the SVG content to import
</li>
<li>
<tt>options:</tt>
<tt>Object</tt>
— the import options
— optional, default: <tt>{ expandShapes: false }</tt>
</li>
</ul>
<ul><b>Returns:</b>
<li>
<tt><a href="../classes/Item.html"><tt>Item</tt></a></tt> — the imported Paper.js parent item
</li>
</ul>
</div>
</div>
</div>
<h3>Hierarchy Operations</h3>
<div id="addchild-item-_preserve" class="member">
<div class="member-link">
<a name="addchild-item-_preserve" href="#addchild-item-_preserve"><tt><b>addChild</b>(item)</tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>Adds the specified item as a child of this item at the end of the
its children list. You can use this function for groups, compound
paths and layers.</p>
<ul><b>Parameters:</b>
<li>
<tt>item:</tt>
<a href="../classes/Item.html"><tt>Item</tt></a>
— the item to be added as a child
</li>
</ul>
<ul><b>Returns:</b>
<li>
<tt><a href="../classes/Item.html"><tt>Item</tt></a></tt> — the added item, or <tt>null</tt> if adding was not
possible.
</li>
</ul>
</div>
</div>
</div>
<div id="insertchild-index-item-_preserve" class="member">
<div class="member-link">
<a name="insertchild-index-item-_preserve" href="#insertchild-index-item-_preserve"><tt><b>insertChild</b>(index, item)</tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>Inserts the specified item as a child of this item at the specified
index in its <a href="../classes/Item.html#children" onclick="return toggleMember('children', true);"><tt>children</tt></a> list. You can use this function for
groups, compound paths and layers.</p>
<ul><b>Parameters:</b>
<li>
<tt>index:</tt>
<tt>Number</tt>
</li>
<li>
<tt>item:</tt>
<a href="../classes/Item.html"><tt>Item</tt></a>
— the item to be inserted as a child
</li>
</ul>
<ul><b>Returns:</b>
<li>
<tt><a href="../classes/Item.html"><tt>Item</tt></a></tt> — the inserted item, or <tt>null</tt> if inserting was not
possible.
</li>
</ul>
</div>
</div>
</div>
<div id="addchildren-items-_preserve" class="member">
<div class="member-link">
<a name="addchildren-items-_preserve" href="#addchildren-items-_preserve"><tt><b>addChildren</b>(items)</tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>Adds the specified items as children of this item at the end of the
its children list. You can use this function for groups, compound
paths and layers.</p>
<ul><b>Parameters:</b>
<li>
<tt>items:</tt>
Array of <a href="../classes/Item.html"><tt>Item</tt></a> objects
— The items to be added as children
</li>
</ul>
<ul><b>Returns:</b>
<li>
<tt>Array of <a href="../classes/Item.html"><tt>Item</tt></a> objects</tt> — the added items, or <tt>null</tt> if adding was not
possible.
</li>
</ul>
</div>
</div>
</div>
<div id="insertchildren-index-items-_preserve-_proto" class="member">
<div class="member-link">
<a name="insertchildren-index-items-_preserve-_proto" href="#insertchildren-index-items-_preserve-_proto"><tt><b>insertChildren</b>(index, items)</tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>Inserts the specified items as children of this item at the specified
index in its <a href="../classes/Item.html#children" onclick="return toggleMember('children', true);"><tt>children</tt></a> list. You can use this function for
groups, compound paths and layers.</p>
<ul><b>Parameters:</b>
<li>
<tt>index:</tt>
<tt>Number</tt>
</li>
<li>
<tt>items:</tt>
Array of <a href="../classes/Item.html"><tt>Item</tt></a> objects
— The items to be appended as children
</li>
</ul>
<ul><b>Returns:</b>
<li>
<tt>Array of <a href="../classes/Item.html"><tt>Item</tt></a> objects</tt> — the inserted items, or <tt>null</tt> if inserted was not
possible.
</li>
</ul>
</div>
</div>
</div>
<div id="insertabove-item-_preserve" class="member">
<div class="member-link">
<a name="insertabove-item-_preserve" href="#insertabove-item-_preserve"><tt><b>insertAbove</b>(item)</tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>Inserts this item above the specified item.</p>
<ul><b>Parameters:</b>
<li>
<tt>item:</tt>
<a href="../classes/Item.html"><tt>Item</tt></a>
— the item above which it should be inserted
</li>
</ul>
<ul><b>Returns:</b>
<li>
<tt><a href="../classes/Item.html"><tt>Item</tt></a></tt> — the inserted item, or <tt>null</tt> if inserting was not
possible.
</li>
</ul>
</div>
</div>
</div>
<div id="insertbelow-item-_preserve" class="member">
<div class="member-link">
<a name="insertbelow-item-_preserve" href="#insertbelow-item-_preserve"><tt><b>insertBelow</b>(item)</tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>Inserts this item below the specified item.</p>
<ul><b>Parameters:</b>
<li>
<tt>item:</tt>
<a href="../classes/Item.html"><tt>Item</tt></a>
— the item below which it should be inserted
</li>
</ul>
<ul><b>Returns:</b>
<li>
<tt><a href="../classes/Item.html"><tt>Item</tt></a></tt> — the inserted item, or <tt>null</tt> if inserting was not
possible.
</li>
</ul>
</div>
</div>
</div>
<div id="sendtoback" class="member">
<div class="member-link">
<a name="sendtoback" href="#sendtoback"><tt><b>sendToBack</b>()</tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>Sends this item to the back of all other items within the same parent.</p>
</div>
</div>
</div>
<div id="bringtofront" class="member">
<div class="member-link">
<a name="bringtofront" href="#bringtofront"><tt><b>bringToFront</b>()</tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>Brings this item to the front of all other items within the same parent.</p>
</div>
</div>
</div>
<div id="appendtop-item" class="member">
<div class="member-link">
<a name="appendtop-item" href="#appendtop-item"><tt><b>appendTop</b>(item)</tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>Inserts the specified item as a child of this item by appending it to
the list of children and moving it above all other children. You can
use this function for groups, compound paths and layers.</p>
<ul><b>Parameters:</b>
<li>
<tt>item:</tt>
<a href="../classes/Item.html"><tt>Item</tt></a>
— The item to be appended as a child
</li>
</ul>
</div>
</div>
</div>
<div id="appendbottom-item" class="member">
<div class="member-link">
<a name="appendbottom-item" href="#appendbottom-item"><tt><b>appendBottom</b>(item)</tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>Inserts the specified item as a child of this item by appending it to
the list of children and moving it below all other children. You can
use this function for groups, compound paths and layers.</p>
<ul><b>Parameters:</b>
<li>
<tt>item:</tt>
<a href="../classes/Item.html"><tt>Item</tt></a>
— The item to be appended as a child
</li>
</ul>
</div>
</div>
</div>
<div id="moveabove-item" class="member">
<div class="member-link">
<a name="moveabove-item" href="#moveabove-item"><tt><b>moveAbove</b>(item)</tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>Moves this item above the specified item.</p>
<ul><b>Parameters:</b>
<li>
<tt>item:</tt>
<a href="../classes/Item.html"><tt>Item</tt></a>
— The item above which it should be moved
</li>
</ul>
<ul><b>Returns:</b>
<li>
<tt><tt>Boolean</tt></tt> — <tt>true</tt> if it was moved, <tt>false</tt> otherwise
</li>
</ul>
</div>
</div>
</div>
<div id="movebelow-item" class="member">
<div class="member-link">
<a name="movebelow-item" href="#movebelow-item"><tt><b>moveBelow</b>(item)</tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>Moves the item below the specified item.</p>
<ul><b>Parameters:</b>
<li>
<tt>item:</tt>
<a href="../classes/Item.html"><tt>Item</tt></a>
— the item below which it should be moved
</li>
</ul>
<ul><b>Returns:</b>
<li>
<tt><tt>Boolean</tt></tt> — <tt>true</tt> if it was moved, <tt>false</tt> otherwise
</li>
</ul>
</div>
</div>
</div>
<div id="reduce" class="member">
<div class="member-link">
<a name="reduce" href="#reduce"><tt><b>reduce</b>()</tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>If this is a group, layer or compound-path with only one child-item,
the child-item is moved outside and the parent is erased. Otherwise, the
item itself is returned unmodified.</p>
<ul><b>Returns:</b>
<li>
<tt><a href="../classes/Item.html"><tt>Item</tt></a></tt> — the reduced item
</li>
</ul>
</div>
</div>
</div>
<div id="remove" class="member">
<div class="member-link">
<a name="remove" href="#remove"><tt><b>remove</b>()</tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>Removes the item from the project. If the item has children, they are also
removed.</p>
<ul><b>Returns:</b>
<li>
<tt><tt>Boolean</tt></tt> — <tt>true</tt> if the item was removed, <tt>false</tt> otherwise
</li>
</ul>
</div>
</div>
</div>
<div id="removechildren" class="member">
<div class="member-link">
<a name="removechildren" href="#removechildren"><tt><b>removeChildren</b>()</tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>Removes all of the item's <a href="../classes/Item.html#children" onclick="return toggleMember('children', true);"><tt>children</tt></a> (if any).</p>
<ul><b>Returns:</b>
<li>
<tt>Array of <a href="../classes/Item.html"><tt>Item</tt></a> objects</tt> — an array containing the removed items
</li>
</ul>
</div>
</div>
</div>
<div id="removechildren-from" class="member">
<div class="member-link">
<a name="removechildren-from" href="#removechildren-from"><tt><b>removeChildren</b>(from[, to])</tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>Removes the children from the specified <tt>from</tt> index to the
<tt>to</tt> index from the parent's <a href="../classes/Item.html#children" onclick="return toggleMember('children', true);"><tt>children</tt></a> array.</p>
<ul><b>Parameters:</b>
<li>
<tt>from:</tt>
<tt>Number</tt>
— the beginning index, inclusive
</li>
<li>
<tt>to:</tt>
<tt>Number</tt>
— the ending index, exclusive
— optional, default: <tt>children.length</tt>
</li>
</ul>
<ul><b>Returns:</b>
<li>
<tt>Array of <a href="../classes/Item.html"><tt>Item</tt></a> objects</tt> — an array containing the removed items
</li>
</ul>
</div>
</div>
</div>
<div id="reversechildren" class="member">
<div class="member-link">
<a name="reversechildren" href="#reversechildren"><tt><b>reverseChildren</b>()</tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>Reverses the order of the item's children</p>
</div>
</div>
</div>
<h3>Tests</h3>
<div id="isempty" class="member">
<div class="member-link">
<a name="isempty" href="#isempty"><tt><b>isEmpty</b>()</tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>Specifies whether the item has any content or not. The meaning of what
content is differs from type to type. For example, a <a href="../classes/Group.html"><tt>Group</tt></a> with
no children, a <a href="../classes/TextItem.html"><tt>TextItem</tt></a> with no text content and a <a href="../classes/Path.html"><tt>Path</tt></a>
with no segments all are considered empty.</p>
<ul><b>Returns:</b>
<li>
<tt></tt> — Boolean
</li>
</ul>
</div>
</div>
</div>
<h3>Hierarchy Tests</h3>
<div id="haschildren" class="member">
<div class="member-link">
<a name="haschildren" href="#haschildren"><tt><b>hasChildren</b>()</tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>Checks if the item contains any children items.</p>
<ul><b>Returns:</b>
<li>
<tt><tt>Boolean</tt></tt> — <tt>true</tt> it has one or more children, <tt>false</tt> otherwise
</li>
</ul>
</div>
</div>
</div>
<div id="isabove-item" class="member">
<div class="member-link">
<a name="isabove-item" href="#isabove-item"><tt><b>isAbove</b>(item)</tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>Checks if this item is above the specified item in the stacking order
of the project.</p>
<ul><b>Parameters:</b>
<li>
<tt>item:</tt>
<a href="../classes/Item.html"><tt>Item</tt></a>
— The item to check against
</li>
</ul>
<ul><b>Returns:</b>
<li>
<tt><tt>Boolean</tt></tt> — <tt>true</tt> if it is above the specified item, <tt>false</tt> otherwise
</li>
</ul>
</div>
</div>
</div>
<div id="isbelow-item" class="member">
<div class="member-link">
<a name="isbelow-item" href="#isbelow-item"><tt><b>isBelow</b>(item)</tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>Checks if the item is below the specified item in the stacking order of
the project.</p>
<ul><b>Parameters:</b>
<li>
<tt>item:</tt>
<a href="../classes/Item.html"><tt>Item</tt></a>
— The item to check against
</li>
</ul>
<ul><b>Returns:</b>
<li>
<tt><tt>Boolean</tt></tt> — <tt>true</tt> if it is below the specified item, <tt>false</tt> otherwise
</li>
</ul>
</div>
</div>
</div>
<div id="isparent-item" class="member">
<div class="member-link">
<a name="isparent-item" href="#isparent-item"><tt><b>isParent</b>(item)</tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>Checks whether the specified item is the parent of the item.</p>
<ul><b>Parameters:</b>
<li>
<tt>item:</tt>
<a href="../classes/Item.html"><tt>Item</tt></a>
— The item to check against
</li>
</ul>
<ul><b>Returns:</b>
<li>
<tt><tt>Boolean</tt></tt> — <tt>true</tt> if it is the parent of the item, <tt>false</tt> otherwise
</li>
</ul>
</div>
</div>
</div>
<div id="ischild-item" class="member">
<div class="member-link">
<a name="ischild-item" href="#ischild-item"><tt><b>isChild</b>(item)</tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>Checks whether the specified item is a child of the item.</p>
<ul><b>Parameters:</b>
<li>
<tt>item:</tt>
<a href="../classes/Item.html"><tt>Item</tt></a>
— The item to check against
</li>
</ul>
<ul><b>Returns:</b>
<li>
<tt><tt>Boolean</tt></tt> — <tt>true</tt> it is a child of the item, <tt>false</tt> otherwise
</li>
</ul>
</div>
</div>
</div>
<div id="isdescendant-item" class="member">
<div class="member-link">
<a name="isdescendant-item" href="#isdescendant-item"><tt><b>isDescendant</b>(item)</tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>Checks if the item is contained within the specified item.</p>
<ul><b>Parameters:</b>
<li>
<tt>item:</tt>
<a href="../classes/Item.html"><tt>Item</tt></a>
— The item to check against
</li>
</ul>
<ul><b>Returns:</b>
<li>
<tt><tt>Boolean</tt></tt> — <tt>true</tt> if it is inside the specified item, <tt>false</tt> otherwise
</li>
</ul>
</div>
</div>
</div>
<div id="isancestor-item" class="member">
<div class="member-link">
<a name="isancestor-item" href="#isancestor-item"><tt><b>isAncestor</b>(item)</tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>Checks if the item is an ancestor of the specified item.</p>
<ul><b>Parameters:</b>
<li>
<tt>item:</tt>
<a href="../classes/Item.html"><tt>Item</tt></a>
— the item to check against
</li>
</ul>
<ul><b>Returns:</b>
<li>
<tt><tt>Boolean</tt></tt> — <tt>true</tt> if the item is an ancestor of the specified
item, <tt>false</tt> otherwise
</li>
</ul>
</div>
</div>
</div>
<div id="isgroupedwith-item" class="member">
<div class="member-link">
<a name="isgroupedwith-item" href="#isgroupedwith-item"><tt><b>isGroupedWith</b>(item)</tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>Checks whether the item is grouped with the specified item.</p>
<ul><b>Parameters:</b>
<li>
<tt>item:</tt>
<a href="../classes/Item.html"><tt>Item</tt></a>
</li>
</ul>
<ul><b>Returns:</b>
<li>
<tt><tt>Boolean</tt></tt> — <tt>true</tt> if the items are grouped together, <tt>false</tt> otherwise
</li>
</ul>
</div>
</div>
</div>
<h3>Transform Functions</h3>
<div id="translate-delta" class="member">
<div class="member-link">
<a name="translate-delta" href="#translate-delta"><tt><b>translate</b>(delta)</tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>Translates (moves) the item by the given offset point.</p>
<ul><b>Parameters:</b>
<li>
<tt>delta:</tt>
<a href="../classes/Point.html"><tt>Point</tt></a>
— the offset to translate the item by
</li>
</ul>
</div>
</div>
</div>
<div id="rotate-angle" class="member">
<div class="member-link">
<a name="rotate-angle" href="#rotate-angle"><tt><b>rotate</b>(angle[, center])</tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>Rotates the item by a given angle around the given point.</p>
<p>Angles are oriented clockwise and measured in degrees.</p>
<ul><b>Parameters:</b>
<li>
<tt>angle:</tt>
<tt>Number</tt>
— the rotation angle
</li>
<li>
<tt>center:</tt>
<a href="../classes/Point.html"><tt>Point</tt></a>
— optional, default: <tt><a href="../classes/Item.html#position"><tt>item.position</tt></a></tt>
</li>
</ul>
<p><b>See also:</b>
<tt><a href="../classes/Matrix.html#rotate"><tt>matrix.rotate</tt></a></tt>
</p>
<p>
<b>Example</b> — Rotating an item:
</p>
<div class="paperscript split">
<div class="buttons">
<div class="button run">Run</div>
</div>
<script type="text/paperscript" canvas="canvas-36">
// Create a rectangle shaped path with its top left
// point at {x: 80, y: 25} and a size of {width: 50, height: 50}:
var path = new Path.Rectangle(new Point(80, 25), new Size(50, 50));
path.fillColor = 'black';
// Rotate the path by 30 degrees:
path.rotate(30);
</script>
<div class="canvas"><canvas width="516" height="100" id="canvas-36"></canvas></div>
</div>
<p>
<b>Example</b> — Rotating an item around a specific point:
</p>
<div class="paperscript split">
<div class="buttons">
<div class="button run">Run</div>
</div>
<script type="text/paperscript" canvas="canvas-37">
// Create a rectangle shaped path with its top left
// point at {x: 175, y: 50} and a size of {width: 100, height: 100}:
var topLeft = new Point(175, 50);
var size = new Size(100, 100);
var path = new Path.Rectangle(topLeft, size);
path.fillColor = 'black';
// Draw a circle shaped path in the center of the view,
// to show the rotation point:
var circle = new Path.Circle({
center: view.center,
radius: 5,
fillColor: 'white'
});
// Each frame rotate the path 3 degrees around the center point
// of the view:
function onFrame(event) {
path.rotate(3, view.center);
}
</script>
<div class="canvas"><canvas width="516" height="200" id="canvas-37"></canvas></div>
</div>
</div>
</div>
</div>
<div id="scale-scale" class="member">
<div class="member-link">
<a name="scale-scale" href="#scale-scale"><tt><b>scale</b>(scale[, center])</tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>Scales the item by the given value from its center point, or optionally
from a supplied point.</p>
<ul><b>Parameters:</b>
<li>
<tt>scale:</tt>
<tt>Number</tt>
— the scale factor
</li>
<li>
<tt>center:</tt>
<a href="../classes/Point.html"><tt>Point</tt></a>
— optional, default: <tt><a href="../classes/Item.html#position"><tt>item.position</tt></a></tt>
</li>
</ul>
<p>
<b>Example</b> — Scaling an item from its center point:
</p>
<div class="paperscript split">
<div class="buttons">
<div class="button run">Run</div>
</div>
<script type="text/paperscript" canvas="canvas-38">
// Create a circle shaped path at { x: 80, y: 50 }
// with a radius of 20:
var circle = new Path.Circle({
center: [80, 50],
radius: 20,
fillColor: 'red'
});
// Scale the path by 150% from its center point
circle.scale(1.5);
</script>
<div class="canvas"><canvas width="516" height="100" id="canvas-38"></canvas></div>
</div>
<p>
<b>Example</b> — Scaling an item from a specific point:
</p>
<div class="paperscript split">
<div class="buttons">
<div class="button run">Run</div>
</div>
<script type="text/paperscript" canvas="canvas-39">
// Create a circle shaped path at { x: 80, y: 50 }
// with a radius of 20:
var circle = new Path.Circle({
center: [80, 50],
radius: 20,
fillColor: 'red'
});
// Scale the path 150% from its bottom left corner
circle.scale(1.5, circle.bounds.bottomLeft);
</script>
<div class="canvas"><canvas width="516" height="100" id="canvas-39"></canvas></div>
</div>
</div>
</div>
</div>
<div id="scale-hor-ver" class="member">
<div class="member-link">
<a name="scale-hor-ver" href="#scale-hor-ver"><tt><b>scale</b>(hor, ver[, center])</tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>Scales the item by the given values from its center point, or optionally
from a supplied point.</p>
<ul><b>Parameters:</b>
<li>
<tt>hor:</tt>
<tt>Number</tt>
— the horizontal scale factor
</li>
<li>
<tt>ver:</tt>
<tt>Number</tt>
— the vertical scale factor
</li>
<li>
<tt>center:</tt>
<a href="../classes/Point.html"><tt>Point</tt></a>
— optional, default: <tt><a href="../classes/Item.html#position"><tt>item.position</tt></a></tt>
</li>
</ul>
<p>
<b>Example</b> — Scaling an item horizontally by 300%:
</p>
<div class="paperscript split">
<div class="buttons">
<div class="button run">Run</div>
</div>
<script type="text/paperscript" canvas="canvas-40">
// Create a circle shaped path at { x: 100, y: 50 }
// with a radius of 20:
var circle = new Path.Circle({
center: [100, 50],
radius: 20,
fillColor: 'red'
});
// Scale the path horizontally by 300%
circle.scale(3, 1);
</script>
<div class="canvas"><canvas width="516" height="100" id="canvas-40"></canvas></div>
</div>
</div>
</div>
</div>
<div id="shear-shear" class="member">
<div class="member-link">
<a name="shear-shear" href="#shear-shear"><tt><b>shear</b>(shear[, center])</tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>Shears the item by the given value from its center point, or optionally
by a supplied point.</p>
<ul><b>Parameters:</b>
<li>
<tt>shear:</tt>
<a href="../classes/Point.html"><tt>Point</tt></a>
— the horziontal and vertical shear factors as a point
</li>
<li>
<tt>center:</tt>
<a href="../classes/Point.html"><tt>Point</tt></a>
— optional, default: <tt><a href="../classes/Item.html#position"><tt>item.position</tt></a></tt>
</li>
</ul>
<p><b>See also:</b>
<tt><a href="../classes/Matrix.html#shear"><tt>matrix.shear</tt></a></tt>
</p>
</div>
</div>
</div>
<div id="shear-hor-ver" class="member">
<div class="member-link">
<a name="shear-hor-ver" href="#shear-hor-ver"><tt><b>shear</b>(hor, ver[, center])</tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>Shears the item by the given values from its center point, or optionally
by a supplied point.</p>
<ul><b>Parameters:</b>
<li>
<tt>hor:</tt>
<tt>Number</tt>
— the horizontal shear factor
</li>
<li>
<tt>ver:</tt>
<tt>Number</tt>
— the vertical shear factor
</li>
<li>
<tt>center:</tt>
<a href="../classes/Point.html"><tt>Point</tt></a>
— optional, default: <tt><a href="../classes/Item.html#position"><tt>item.position</tt></a></tt>
</li>
</ul>
<p><b>See also:</b>
<tt><a href="../classes/Matrix.html#shear"><tt>matrix.shear</tt></a></tt>
</p>
</div>
</div>
</div>
<div id="skew-skew" class="member">
<div class="member-link">
<a name="skew-skew" href="#skew-skew"><tt><b>skew</b>(skew[, center])</tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>Skews the item by the given angles from its center point, or optionally
by a supplied point.</p>
<ul><b>Parameters:</b>
<li>
<tt>skew:</tt>
<a href="../classes/Point.html"><tt>Point</tt></a>
— the horziontal and vertical skew angles in degrees
</li>
<li>
<tt>center:</tt>
<a href="../classes/Point.html"><tt>Point</tt></a>
— optional, default: <tt><a href="../classes/Item.html#position"><tt>item.position</tt></a></tt>
</li>
</ul>
<p><b>See also:</b>
<tt><a href="../classes/Matrix.html#shear"><tt>matrix.shear</tt></a></tt>
</p>
</div>
</div>
</div>
<div id="skew-hor-ver" class="member">
<div class="member-link">
<a name="skew-hor-ver" href="#skew-hor-ver"><tt><b>skew</b>(hor, ver[, center])</tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>Skews the item by the given angles from its center point, or optionally
by a supplied point.</p>
<ul><b>Parameters:</b>
<li>
<tt>hor:</tt>
<tt>Number</tt>
— the horizontal skew angle in degrees
</li>
<li>
<tt>ver:</tt>
<tt>Number</tt>
— the vertical sskew angle in degrees
</li>
<li>
<tt>center:</tt>
<a href="../classes/Point.html"><tt>Point</tt></a>
— optional, default: <tt><a href="../classes/Item.html#position"><tt>item.position</tt></a></tt>
</li>
</ul>
<p><b>See also:</b>
<tt><a href="../classes/Matrix.html#shear"><tt>matrix.shear</tt></a></tt>
</p>
</div>
</div>
</div>
<div id="transform-matrix-_applyMatrix" class="member">
<div class="member-link">
<a name="transform-matrix-_applyMatrix" href="#transform-matrix-_applyMatrix"><tt><b>transform</b>(matrix)</tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>Transform the item.</p>
<ul><b>Parameters:</b>
<li>
<tt>matrix:</tt>
<a href="../classes/Matrix.html"><tt>Matrix</tt></a>
— the matrix by which the item shall be transformed.
</li>
</ul>
</div>
</div>
</div>
<div id="globaltolocal-point" class="member">
<div class="member-link">
<a name="globaltolocal-point" href="#globaltolocal-point"><tt><b>globalToLocal</b>(point)</tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>Converts the specified point from global project coordinates to local
coordinates in relation to the the item's own coordinate space.</p>
<ul><b>Parameters:</b>
<li>
<tt>point:</tt>
<a href="../classes/Point.html"><tt>Point</tt></a>
— the point to be transformed
</li>
</ul>
<ul><b>Returns:</b>
<li>
<tt><a href="../classes/Point.html"><tt>Point</tt></a></tt> — the transformed point as a new instance
</li>
</ul>
</div>
</div>
</div>
<div id="localtoglobal-point" class="member">
<div class="member-link">
<a name="localtoglobal-point" href="#localtoglobal-point"><tt><b>localToGlobal</b>(point)</tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>Converts the specified point from local coordinates to global coordinates
in relation to the the project coordinate space.</p>
<ul><b>Parameters:</b>
<li>
<tt>point:</tt>
<a href="../classes/Point.html"><tt>Point</tt></a>
— the point to be transformed
</li>
</ul>
<ul><b>Returns:</b>
<li>
<tt><a href="../classes/Point.html"><tt>Point</tt></a></tt> — the transformed point as a new instance
</li>
</ul>
</div>
</div>
</div>
<div id="fitbounds-rectangle" class="member">
<div class="member-link">
<a name="fitbounds-rectangle" href="#fitbounds-rectangle"><tt><b>fitBounds</b>(rectangle[, fill])</tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>Transform the item so that its <a href="../classes/Item.html#bounds" onclick="return toggleMember('bounds', true);"><tt>bounds</tt></a> fit within the specified
rectangle, without changing its aspect ratio.</p>
<ul><b>Parameters:</b>
<li>
<tt>rectangle:</tt>
<a href="../classes/Rectangle.html"><tt>Rectangle</tt></a>
</li>
<li>
<tt>fill:</tt>
<tt>Boolean</tt>
— optional, default: <tt>false</tt>
</li>
</ul>
<p>
<b>Example</b> — Fitting an item to the bounding rectangle of another item's bounding rectangle:
</p>
<div class="paperscript split">
<div class="buttons">
<div class="button run">Run</div>
</div>
<script type="text/paperscript" canvas="canvas-41">
// Create a rectangle shaped path with its top left corner
// at {x: 80, y: 25} and a size of {width: 75, height: 50}:
var path = new Path.Rectangle({
point: [80, 25],
size: [75, 50],
fillColor: 'black'
});
// Create a circle shaped path with its center at {x: 80, y: 50}
// and a radius of 30.
var circlePath = new Path.Circle({
center: [80, 50],
radius: 30,
fillColor: 'red'
});
// Fit the circlePath to the bounding rectangle of
// the rectangular path:
circlePath.fitBounds(path.bounds);
</script>
<div class="canvas"><canvas width="516" height="100" id="canvas-41"></canvas></div>
</div>
<p>
<b>Example</b> — Fitting an item to the bounding rectangle of another item's bounding rectangle with the fill parameter set to true:
</p>
<div class="paperscript split">
<div class="buttons">
<div class="button run">Run</div>
</div>
<script type="text/paperscript" canvas="canvas-42">
// Create a rectangle shaped path with its top left corner
// at {x: 80, y: 25} and a size of {width: 75, height: 50}:
var path = new Path.Rectangle({
point: [80, 25],
size: [75, 50],
fillColor: 'black'
});
// Create a circle shaped path with its center at {x: 80, y: 50}
// and a radius of 30.
var circlePath = new Path.Circle({
center: [80, 50],
radius: 30,
fillColor: 'red'
});
// Fit the circlePath to the bounding rectangle of
// the rectangular path:
circlePath.fitBounds(path.bounds, true);
</script>
<div class="canvas"><canvas width="516" height="100" id="canvas-42"></canvas></div>
</div>
<p>
<b>Example</b> — Fitting an item to the bounding rectangle of the view
</p>
<div class="paperscript split">
<div class="buttons">
<div class="button run">Run</div>
</div>
<script type="text/paperscript" canvas="canvas-43">
var path = new Path.Circle({
center: [80, 50],
radius: 30,
fillColor: 'red'
});
// Fit the path to the bounding rectangle of the view:
path.fitBounds(view.bounds);
</script>
<div class="canvas"><canvas width="516" height="200" id="canvas-43"></canvas></div>
</div>
</div>
</div>
</div>
<h3>Event Handling</h3>
<div id="attach-type-function" class="member">
<div class="member-link">
<a name="attach-type-function" href="#attach-type-function"><tt><b>attach</b>(type, function)</tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>Attaches an event handler to the item.</p>
<ul><b>Parameters:</b>
<li>
<tt>type:</tt>
<tt>String('mousedown'|'mouseup'|'mousedrag'|'click'|'doubleclick'|'mousemove'|'mouseenter'|'mouseleave')</tt>
— the event
type
</li>
<li>
<tt>function:</tt>
<tt>Function</tt>
— The function to be called when the event
occurs
</li>
</ul>
<p>
<b>Example</b> — Change the fill color of the path to red when the mouse enters its shape and back to black again, when it leaves its shape.
</p>
<div class="paperscript split">
<div class="buttons">
<div class="button run">Run</div>
</div>
<script type="text/paperscript" canvas="canvas-44">
// Create a circle shaped path at the center of the view:
var path = new Path.Circle({
center: view.center,
radius: 25,
fillColor: 'black'
});
// When the mouse enters the item, set its fill color to red:
path.on('mouseenter', function() {
this.fillColor = 'red';
});
// When the mouse leaves the item, set its fill color to black:
path.on('mouseleave', function() {
this.fillColor = 'black';
});
</script>
<div class="canvas"><canvas width="516" height="100" id="canvas-44"></canvas></div>
</div>
</div>
</div>
</div>
<div id="attach-object" class="member">
<div class="member-link">
<a name="attach-object" href="#attach-object"><tt><b>attach</b>(object)</tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>Attaches one or more event handlers to the item.</p>
<ul><b>Parameters:</b>
<li>
<tt>object:</tt>
<tt>Object</tt>
— an object literal containing one or more of the
following properties: <tt>mousedown, mouseup, mousedrag, click,
doubleclick, mousemove, mouseenter, mouseleave</tt>.
</li>
</ul>
<p>
<b>Example</b> — Change the fill color of the path to red when the mouse enters its shape and back to black again, when it leaves its shape.
</p>
<div class="paperscript split">
<div class="buttons">
<div class="button run">Run</div>
</div>
<script type="text/paperscript" canvas="canvas-45">
// Create a circle shaped path at the center of the view:
var path = new Path.Circle({
center: view.center,
radius: 25
});
path.fillColor = 'black';
// When the mouse enters the item, set its fill color to red:
path.on({
mouseenter: function(event) {
this.fillColor = 'red';
},
mouseleave: function(event) {
this.fillColor = 'black';
}
});
</script>
<div class="canvas"><canvas width="516" height="100" id="canvas-45"></canvas></div>
</div>
<p>
<b>Example</b> — When you click the mouse, you create new circle shaped items. When you move the mouse over the item, its fill color is set to red. When you move the mouse outside again, its fill color is set black.
</p>
<div class="paperscript split">
<div class="buttons">
<div class="button run">Run</div>
</div>
<script type="text/paperscript" canvas="canvas-46">
var pathHandlers = {
mouseenter: function(event) {
this.fillColor = 'red';
},
mouseleave: function(event) {
this.fillColor = 'black';
}
}
// When the mouse is pressed:
function onMouseDown(event) {
// Create a circle shaped path at the position of the mouse:
var path = new Path.Circle({
center: event.point,
radius: 25,
fillColor: 'black'
});
// Attach the handers inside the object literal to the path:
path.on(pathHandlers);
}
</script>
<div class="canvas"><canvas width="516" height="100" id="canvas-46"></canvas></div>
</div>
</div>
</div>
</div>
<div id="detach-type-function" class="member">
<div class="member-link">
<a name="detach-type-function" href="#detach-type-function"><tt><b>detach</b>(type, function)</tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>Detach an event handler from the item.</p>
<ul><b>Parameters:</b>
<li>
<tt>type:</tt>
<tt>String('mousedown'|'mouseup'|'mousedrag'|'click'|'doubleclick'|'mousemove'|'mouseenter'|'mouseleave')</tt>
— the event
type
</li>
<li>
<tt>function:</tt>
<tt>Function</tt>
— The function to be detached
</li>
</ul>
</div>
</div>
</div>
<div id="detach-object" class="member">
<div class="member-link">
<a name="detach-object" href="#detach-object"><tt><b>detach</b>(object)</tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>Detach one or more event handlers to the item.</p>
<ul><b>Parameters:</b>
<li>
<tt>object:</tt>
<tt>Object</tt>
— an object literal containing one or more of the
following properties: <tt>mousedown, mouseup, mousedrag, click,
doubleclick, mousemove, mouseenter, mouseleave</tt>
</li>
</ul>
</div>
</div>
</div>
<div id="fire-type-event" class="member">
<div class="member-link">
<a name="fire-type-event" href="#fire-type-event"><tt><b>fire</b>(type, event)</tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>Fire an event on the item.</p>
<ul><b>Parameters:</b>
<li>
<tt>type:</tt>
<tt>String('mousedown'|'mouseup'|'mousedrag'|'click'|'doubleclick'|'mousemove'|'mouseenter'|'mouseleave')</tt>
— the event
type
</li>
<li>
<tt>event:</tt>
<tt>Object</tt>
— an object literal containing properties describing
the event.
</li>
</ul>
</div>
</div>
</div>
<div id="responds-type" class="member">
<div class="member-link">
<a name="responds-type" href="#responds-type"><tt><b>responds</b>(type)</tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>Check if the item has one or more event handlers of the specified type.</p>
<ul><b>Parameters:</b>
<li>
<tt>type:</tt>
<tt>String('mousedown'|'mouseup'|'mousedrag'|'click'|'doubleclick'|'mousemove'|'mouseenter'|'mouseleave')</tt>
— the event
type
</li>
</ul>
<ul><b>Returns:</b>
<li>
<tt><tt>Boolean</tt></tt> — <tt>true</tt> if the item has one or more event handlers of
the specified type, <tt>false</tt> otherwise
</li>
</ul>
</div>
</div>
</div>
<h3>Remove On Event</h3>
<div id="removeon-object" class="member">
<div class="member-link">
<a name="removeon-object" href="#removeon-object"><tt><b>removeOn</b>(object)</tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>Removes the item when the events specified in the passed object literal
occur.</p>
<p>The object literal can contain the following values:</p>
<p>Remove the item when the next <a href="../classes/Tool.html#onmousemove"><tt>tool.onMouseMove</tt></a> event is
fired: <tt>object.move = true</tt></p>
<p>Remove the item when the next <a href="../classes/Tool.html#onmousedrag"><tt>tool.onMouseDrag</tt></a> event is
fired: <tt>object.drag = true</tt></p>
<p>Remove the item when the next <a href="../classes/Tool.html#onmousedown"><tt>tool.onMouseDown</tt></a> event is
fired: <tt>object.down = true</tt></p>
<p>Remove the item when the next <a href="../classes/Tool.html#onmouseup"><tt>tool.onMouseUp</tt></a> event is
fired: <tt>object.up = true</tt></p>
<ul><b>Parameters:</b>
<li>
<tt>object:</tt>
<tt>Object</tt>
</li>
</ul>
<p>
<b>Example</b> — Click and drag below:
</p>
<div class="paperscript split">
<div class="buttons">
<div class="button run">Run</div>
</div>
<script type="text/paperscript" canvas="canvas-47">
function onMouseDrag(event) {
// Create a circle shaped path at the mouse position,
// with a radius of 10:
var path = new Path.Circle({
center: event.point,
radius: 10,
fillColor: 'black'
});
// Remove the path on the next onMouseDrag or onMouseDown event:
path.removeOn({
drag: true,
down: true
});
}
</script>
<div class="canvas"><canvas width="516" height="200" id="canvas-47"></canvas></div>
</div>
</div>
</div>
</div>
<div id="removeonmove" class="member">
<div class="member-link">
<a name="removeonmove" href="#removeonmove"><tt><b>removeOnMove</b>()</tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>Removes the item when the next <a href="../classes/Tool.html#onmousemove"><tt>tool.onMouseMove</tt></a> event is fired.</p>
<p>
<b>Example</b> — Move your mouse below:
</p>
<div class="paperscript split">
<div class="buttons">
<div class="button run">Run</div>
</div>
<script type="text/paperscript" canvas="canvas-48">
function onMouseMove(event) {
// Create a circle shaped path at the mouse position,
// with a radius of 10:
var path = new Path.Circle({
center: event.point,
radius: 10,
fillColor: 'black'
});
// On the next move event, automatically remove the path:
path.removeOnMove();
}
</script>
<div class="canvas"><canvas width="516" height="200" id="canvas-48"></canvas></div>
</div>
</div>
</div>
</div>
<div id="removeondown" class="member">
<div class="member-link">
<a name="removeondown" href="#removeondown"><tt><b>removeOnDown</b>()</tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>Removes the item when the next <a href="../classes/Tool.html#onmousedown"><tt>tool.onMouseDown</tt></a> event is fired.</p>
<p>
<b>Example</b> — Click a few times below:
</p>
<div class="paperscript split">
<div class="buttons">
<div class="button run">Run</div>
</div>
<script type="text/paperscript" canvas="canvas-49">
function onMouseDown(event) {
// Create a circle shaped path at the mouse position,
// with a radius of 10:
var path = new Path.Circle({
center: event.point,
radius: 10,
fillColor: 'black'
});
// Remove the path, next time the mouse is pressed:
path.removeOnDown();
}
</script>
<div class="canvas"><canvas width="516" height="200" id="canvas-49"></canvas></div>
</div>
</div>
</div>
</div>
<div id="removeondrag" class="member">
<div class="member-link">
<a name="removeondrag" href="#removeondrag"><tt><b>removeOnDrag</b>()</tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>Removes the item when the next <a href="../classes/Tool.html#onmousedrag"><tt>tool.onMouseDrag</tt></a> event is fired.</p>
<p>
<b>Example</b> — Click and drag below:
</p>
<div class="paperscript split">
<div class="buttons">
<div class="button run">Run</div>
</div>
<script type="text/paperscript" canvas="canvas-50">
function onMouseDrag(event) {
// Create a circle shaped path at the mouse position,
// with a radius of 10:
var path = new Path.Circle({
center: event.point,
radius: 10,
fillColor: 'black'
});
// On the next drag event, automatically remove the path:
path.removeOnDrag();
}
</script>
<div class="canvas"><canvas width="516" height="200" id="canvas-50"></canvas></div>
</div>
</div>
</div>
</div>
<div id="removeonup" class="member">
<div class="member-link">
<a name="removeonup" href="#removeonup"><tt><b>removeOnUp</b>()</tt></a>
</div>
<div class="member-description hidden">
<div class="member-text">
<p>Removes the item when the next <a href="../classes/Tool.html#onmouseup"><tt>tool.onMouseUp</tt></a> event is fired.</p>
<p>
<b>Example</b> — Click a few times below:
</p>
<div class="paperscript split">
<div class="buttons">
<div class="button run">Run</div>
</div>
<script type="text/paperscript" canvas="canvas-51">
function onMouseDown(event) {
// Create a circle shaped path at the mouse position,
// with a radius of 10:
var path = new Path.Circle({
center: event.point,
radius: 10,
fillColor: 'black'
});
// Remove the path, when the mouse is released:
path.removeOnUp();
}
</script>
<div class="canvas"><canvas width="516" height="200" id="canvas-51"></canvas></div>
</div>
</div>
</div>
</div>
</div>
<!-- =========================== copyright notice ========================= -->
<p class="footer">Copyright © 2011 <a href="http://www.lehni.org" target="_blank">Jürg Lehni</a> & <a href="http://www.jonathanpuckey.com" target="_blank">Jonathan Puckey</a>. All Rights Reserved.</p>
<div class="content-end"></div>
</body> |
doc/apiGuide/mini_Qtc-Enums-Gui-QMovie.html | uduki/hsQt | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--Rendered using the Haskell Html Library v0.2-->
<HTML
><HEAD
><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=UTF-8"
><TITLE
>Qtc.Enums.Gui.QMovie</TITLE
><LINK HREF="haddock.css" REL="stylesheet" TYPE="text/css"
><SCRIPT SRC="haddock-util.js" TYPE="text/javascript"
></SCRIPT
></HEAD
><BODY
><DIV CLASS="outer"
><DIV CLASS="mini-topbar"
>Qtc.Enums.Gui.QMovie</DIV
><DIV CLASS="mini-synopsis"
><DIV CLASS="decl"
><SPAN CLASS="keyword"
>type</SPAN
> <A HREF="Qtc-Enums-Gui-QMovie.html#t%3AMovieState" TARGET="main"
>MovieState</A
> </DIV
> <DIV CLASS="decl"
><SPAN CLASS="keyword"
>type</SPAN
> <A HREF="Qtc-Enums-Gui-QMovie.html#t%3AQMovieCacheMode" TARGET="main"
>QMovieCacheMode</A
> </DIV
> <DIV CLASS="decl"
><A HREF="Qtc-Enums-Gui-QMovie.html#v%3AeCacheAll" TARGET="main"
>eCacheAll</A
></DIV
></DIV
></DIV
></BODY
></HTML
>
|
qextserialport/doc/html/qextserialenumerator-members.html | sergrt/pixie | <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<!-- qextserialenumerator.cpp -->
<title>qesp : List of All Members for QextSerialEnumerator</title>
<link rel="stylesheet" type="text/css" href="style/style.css" />
</head>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td class="postheader" valign="center"><a href="index.html">Home</a> · <a href="classes.html">All Classes</a> ·</td></tr></table><li><a href="http://qt.nokia.com/doc/4.8/modules.html">Modules</a></li>
<li>QextSerialEnumerator</li>
<h1 class="title">List of All Members for QextSerialEnumerator</h1>
<p>This is the complete list of members for <a href="qextserialenumerator.html">QextSerialEnumerator</a>, including inherited members.</p>
<table class="propsummary">
<tr><td class="topAlign"><ul>
<li class="fn"><span class="name"><b><a href="qextserialenumerator.html#QextSerialEnumerator">QextSerialEnumerator</a></b></span> ( QObject * )</li>
<li class="fn"><span class="name"><b><a href="qextserialenumerator.html#dtor.QextSerialEnumerator">~QextSerialEnumerator</a></b></span> ()</li>
<li class="fn"><span class="name"><b><a href="http://qt.nokia.com/doc/4.8/qobject.html#blockSignals">blockSignals</a></b></span> ( bool )</li>
<li class="fn"><span class="name"><b><a href="http://qt.nokia.com/doc/4.8/qobject.html#childEvent">childEvent</a></b></span> ( QChildEvent * )</li>
<li class="fn"><span class="name"><b><a href="http://qt.nokia.com/doc/4.8/qobject.html#children">children</a></b></span> () const</li>
<li class="fn"><span class="name"><b><a href="http://qt.nokia.com/doc/4.8/qobject.html#connect">connect</a></b></span> ( const QObject *, const char *, const QObject *, const char *, Qt::ConnectionType )</li>
<li class="fn"><span class="name"><b><a href="http://qt.nokia.com/doc/4.8/qobject.html#connect-2">connect</a></b></span> ( const QObject *, const QMetaMethod &, const QObject *, const QMetaMethod &, Qt::ConnectionType )</li>
<li class="fn"><span class="name"><b><a href="http://qt.nokia.com/doc/4.8/qobject.html#connect-3">connect</a></b></span> ( const QObject *, const char *, const char *, Qt::ConnectionType ) const</li>
<li class="fn"><span class="name"><b><a href="http://qt.nokia.com/doc/4.8/qobject.html#connectNotify">connectNotify</a></b></span> ( const char * )</li>
<li class="fn"><span class="name"><b><a href="http://qt.nokia.com/doc/4.8/qobject.html#customEvent">customEvent</a></b></span> ( QEvent * )</li>
<li class="fn"><span class="name"><b><a href="http://qt.nokia.com/doc/4.8/qobject.html#d_ptr-var">d_ptr</a></b></span> : </li>
<li class="fn"><span class="name"><b><a href="http://qt.nokia.com/doc/4.8/qobject.html#deleteLater">deleteLater</a></b></span> ()</li>
<li class="fn"><span class="name"><b><a href="http://qt.nokia.com/doc/4.8/qobject.html#destroyed">destroyed</a></b></span> ( QObject * )</li>
<li class="fn"><span class="name"><b><a href="qextserialenumerator.html#deviceDiscovered">deviceDiscovered</a></b></span> ( const QextPortInfo & )</li>
<li class="fn"><span class="name"><b><a href="qextserialenumerator.html#deviceRemoved">deviceRemoved</a></b></span> ( const QextPortInfo & )</li>
<li class="fn"><span class="name"><b><a href="http://qt.nokia.com/doc/4.8/qobject.html#disconnect">disconnect</a></b></span> ( const QObject *, const char *, const QObject *, const char * )</li>
<li class="fn"><span class="name"><b><a href="http://qt.nokia.com/doc/4.8/qobject.html#disconnect-4">disconnect</a></b></span> ( const QObject *, const char * )</li>
<li class="fn"><span class="name"><b><a href="http://qt.nokia.com/doc/4.8/qobject.html#disconnect-2">disconnect</a></b></span> ( const QObject *, const QMetaMethod &, const QObject *, const QMetaMethod & )</li>
<li class="fn"><span class="name"><b><a href="http://qt.nokia.com/doc/4.8/qobject.html#disconnect-3">disconnect</a></b></span> ( const char *, const QObject *, const char * )</li>
<li class="fn"><span class="name"><b><a href="http://qt.nokia.com/doc/4.8/qobject.html#disconnectNotify">disconnectNotify</a></b></span> ( const char * )</li>
<li class="fn"><span class="name"><b><a href="http://qt.nokia.com/doc/4.8/qobject.html#dumpObjectInfo">dumpObjectInfo</a></b></span> ()</li>
<li class="fn"><span class="name"><b><a href="http://qt.nokia.com/doc/4.8/qobject.html#dumpObjectTree">dumpObjectTree</a></b></span> ()</li>
<li class="fn"><span class="name"><b><a href="http://qt.nokia.com/doc/4.8/qobject.html#dynamicPropertyNames">dynamicPropertyNames</a></b></span> () const</li>
<li class="fn"><span class="name"><b><a href="http://qt.nokia.com/doc/4.8/qobject.html#event">event</a></b></span> ( QEvent * )</li>
<li class="fn"><span class="name"><b><a href="http://qt.nokia.com/doc/4.8/qobject.html#eventFilter">eventFilter</a></b></span> ( QObject *, QEvent * )</li>
<li class="fn"><span class="name"><b><a href="http://qt.nokia.com/doc/4.8/qobject.html#findChild">findChild</a></b></span> ( const QString & ) const</li>
<li class="fn"><span class="name"><b><a href="http://qt.nokia.com/doc/4.8/qobject.html#findChildren">findChildren</a></b></span> ( const QString & ) const</li>
</ul></td><td class="topAlign"><ul>
<li class="fn"><span class="name"><b><a href="http://qt.nokia.com/doc/4.8/qobject.html#findChildren-2">findChildren</a></b></span> ( const QRegExp & ) const</li>
<li class="fn"><span class="name"><b><a href="qextserialenumerator.html#getPorts">getPorts</a></b></span> () : QList<QextPortInfo></li>
<li class="fn"><span class="name"><b><a href="http://qt.nokia.com/doc/4.8/qobject.html#inherits">inherits</a></b></span> ( const char * ) const</li>
<li class="fn"><span class="name"><b><a href="http://qt.nokia.com/doc/4.8/qobject.html#installEventFilter">installEventFilter</a></b></span> ( QObject * )</li>
<li class="fn"><span class="name"><b><a href="http://qt.nokia.com/doc/4.8/qobject.html#isWidgetType">isWidgetType</a></b></span> () const</li>
<li class="fn"><span class="name"><b><a href="http://qt.nokia.com/doc/4.8/qobject.html#killTimer">killTimer</a></b></span> ( int )</li>
<li class="fn"><span class="name"><b><a href="http://qt.nokia.com/doc/4.8/qobject.html#metaObject">metaObject</a></b></span> () const</li>
<li class="fn"><span class="name"><b><a href="http://qt.nokia.com/doc/4.8/qobject.html#moveToThread">moveToThread</a></b></span> ( QThread * )</li>
<li class="fn"><span class="name"><b><a href="http://qt.nokia.com/doc/4.8/qobject.html#objectName-prop">objectName</a></b></span> () const</li>
<li class="fn"><span class="name"><b><a href="http://qt.nokia.com/doc/4.8/qobject.html#parent">parent</a></b></span> () const</li>
<li class="fn"><span class="name"><b><a href="http://qt.nokia.com/doc/4.8/qobject.html#property">property</a></b></span> ( const char * ) const</li>
<li class="fn"><span class="name"><b><a href="http://qt.nokia.com/doc/4.8/qobject.html#receivers">receivers</a></b></span> ( const char * ) const</li>
<li class="fn"><span class="name"><b><a href="http://qt.nokia.com/doc/4.8/qobject.html#removeEventFilter">removeEventFilter</a></b></span> ( QObject * )</li>
<li class="fn"><span class="name"><b><a href="http://qt.nokia.com/doc/4.8/qobject.html#sender">sender</a></b></span> () const</li>
<li class="fn"><span class="name"><b><a href="http://qt.nokia.com/doc/4.8/qobject.html#senderSignalIndex">senderSignalIndex</a></b></span> () const</li>
<li class="fn"><span class="name"><b><a href="http://qt.nokia.com/doc/4.8/qobject.html#objectName-prop">setObjectName</a></b></span> ( const QString & )</li>
<li class="fn"><span class="name"><b><a href="http://qt.nokia.com/doc/4.8/qobject.html#setParent">setParent</a></b></span> ( QObject * )</li>
<li class="fn"><span class="name"><b><a href="http://qt.nokia.com/doc/4.8/qobject.html#setProperty">setProperty</a></b></span> ( const char *, const QVariant & )</li>
<li class="fn"><span class="name"><b><a href="qextserialenumerator.html#setUpNotifications">setUpNotifications</a></b></span> ()</li>
<li class="fn"><span class="name"><b><a href="http://qt.nokia.com/doc/4.8/qobject.html#signalsBlocked">signalsBlocked</a></b></span> () const</li>
<li class="fn"><span class="name"><b><a href="http://qt.nokia.com/doc/4.8/qobject.html#startTimer">startTimer</a></b></span> ( int )</li>
<li class="fn"><span class="name"><b><a href="http://qt.nokia.com/doc/4.8/qobject.html#staticMetaObject-var">staticMetaObject</a></b></span> : </li>
<li class="fn"><span class="name"><b><a href="http://qt.nokia.com/doc/4.8/qobject.html#staticQtMetaObject-var">staticQtMetaObject</a></b></span> : </li>
<li class="fn"><span class="name"><b><a href="http://qt.nokia.com/doc/4.8/qobject.html#thread">thread</a></b></span> () const</li>
<li class="fn"><span class="name"><b><a href="http://qt.nokia.com/doc/4.8/qobject.html#timerEvent">timerEvent</a></b></span> ( QTimerEvent * )</li>
<li class="fn"><span class="name"><b><a href="http://qt.nokia.com/doc/4.8/qobject.html#tr">tr</a></b></span> ( const char *, const char *, int )</li>
<li class="fn"><span class="name"><b><a href="http://qt.nokia.com/doc/4.8/qobject.html#trUtf8">trUtf8</a></b></span> ( const char *, const char *, int )</li>
</ul>
</td></tr>
</table>
<p /><address><hr /><div align="center">
<table width="100%" cellspacing="0" border="0"><tr class="address">
<td width="40%" align="left">Copyright © 2000-2012</td>
<td width="20%" align="center"><a href="http://code.google.com/p/qextserialport">QextSerialPort Project</a></td>
<td width="40%" align="right"><div align="right">QextSerialPort Manual</div></td>
</tr></table></div></address></body>
</html>
|
pybb/templates/pybb/moderation/moderator/create.html | thoas/pybbm | {% extends "pybb/base.html" %}
{% load i18n pybb_tags %}
{% block breadcrumb %}
{% include "pybb/breadcrumb.html" with extra_crumb="New moderator" %}
{% endblock %}
{% block content %}
<h2>{% blocktrans with name=forum.name %}Add a new moderator for {{ name }}{% endblocktrans %}</h2>
<style type="text/css">
form#moderator-form label {
display: inline-block;
}
ul li {
list-style-type: none;
}
</style>
<form action="" method="post" id="moderator-form">
{% csrf_token %}
<ul>
{% for form in forms %}
{{ form.as_ul }}
{% endfor %}
</ul>
<p class="submit">{% include "pybb/_button_submit.html" %}</p>
</form>
{% endblock content %}
|
doc/markers.html | yavgech/OSS_SNMP | <!DOCTYPE html><html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;">
<meta charset="utf-8">
<title>OSS_SNMP</title>
<meta name="author" content="Mike van Riel">
<meta name="description" content="">
<link href="css/template.css" rel="stylesheet" media="all">
<script src="js/jquery-1.7.1.min.js" type="text/javascript"></script><script src="js/jquery-ui-1.8.2.custom.min.js" type="text/javascript"></script><script src="js/jquery.mousewheel.min.js" type="text/javascript"></script><script src="js/bootstrap.js" type="text/javascript"></script><script src="js/template.js" type="text/javascript"></script><script src="js/prettify/prettify.min.js" type="text/javascript"></script><link rel="shortcut icon" href="img/favicon.ico">
<link rel="apple-touch-icon" href="img/apple-touch-icon.png">
<link rel="apple-touch-icon" sizes="72x72" href="img/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="114x114" href="img/apple-touch-icon-114x114.png">
</head>
<body>
<div class="navbar navbar-fixed-top">
<div class="navbar-inner"><div class="container">
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse"><span class="icon-bar"></span><span class="icon-bar"></span><span class="icon-bar"></span></a><a class="brand" href="index.html">OSS_SNMP</a><div class="nav-collapse"><ul class="nav">
<li class="dropdown">
<a href="#api" class="dropdown-toggle" data-toggle="dropdown">
API Documentation <b class="caret"></b></a><ul class="dropdown-menu">
<li><a>Namespaces</a></li>
<li><a href="namespaces/OSS_SNMP.html"><i class="icon-th"></i> OSS_SNMP</a></li>
</ul>
</li>
<li class="dropdown" id="charts-menu">
<a href="#charts" class="dropdown-toggle" data-toggle="dropdown">
Charts <b class="caret"></b></a><ul class="dropdown-menu"><li><a href="graph_class.html"><i class="icon-list-alt"></i> Class hierarchy diagram</a></li></ul>
</li>
<li class="dropdown" id="reports-menu">
<a href="#reports" class="dropdown-toggle" data-toggle="dropdown">
Reports <b class="caret"></b></a><ul class="dropdown-menu">
<li><a href="errors.html"><i class="icon-remove-sign"></i> Errors
<span class="label label-info">62</span></a></li>
<li><a href="markers.html"><i class="icon-map-marker"></i> Markers
<ul></ul></a></li>
<li><a href="deprecated.html"><i class="icon-stop"></i> Deprecated elements
<span class="label label-info">2</span></a></li>
</ul>
</li>
</ul></div>
</div></div>
<div class="go_to_top"><a href="#___" style="color: inherit">Back to top <i class="icon-upload icon-white"></i></a></div>
</div>
<div id="___" class="container">
<noscript><div class="alert alert-warning">
Javascript is disabled; several features are only available
if Javascript is enabled.
</div></noscript>
<div class="row">
<div class="span4"><ul class="side-nav nav nav-list">
<li class="nav-header">Navigation</li>
<li><a href="#MIBS/Cisco/RSTP.php"><i class="icon-file"></i>MIBS/Cisco/RSTP.php</a></li>
<li><a href="#MIBS/Cisco/SMST.php"><i class="icon-file"></i>MIBS/Cisco/SMST.php</a></li>
</ul></div>
<div class="span8">
<ul class="breadcrumb">
<li>
<a href=""><i class="icon-map-marker"></i></a><span class="divider">\</span>
</li>
<li>Markers</li>
</ul>
<div id="marker-accordion">
<div class="package-contents">
<a name="MIBS/Cisco/RSTP.php" id="MIBS/Cisco/RSTP.php"></a><h3>
<i class="icon-file"></i>MIBS/Cisco/RSTP.php<small style="float: right;padding-right: 10px;">1</small>
</h3>
<div><table class="table markers table-bordered">
<tr>
<th>Type</th>
<th>Line</th>
<th>Description</th>
</tr>
<tr>
<td>todo</td>
<td>157</td>
<td>Find a better way to translate these?</td>
</tr>
</table></div>
</div>
<div class="package-contents">
<a name="MIBS/Cisco/SMST.php" id="MIBS/Cisco/SMST.php"></a><h3>
<i class="icon-file"></i>MIBS/Cisco/SMST.php<small style="float: right;padding-right: 10px;">1</small>
</h3>
<div><table class="table markers table-bordered">
<tr>
<th>Type</th>
<th>Line</th>
<th>Description</th>
</tr>
<tr>
<td>fixme</td>
<td>206</td>
<td>extract as utility function?</td>
</tr>
</table></div>
</div>
</div>
</div>
</div>
<div class="row"><footer class="span12">
Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br>
Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.4.0
</a> and<br>
generated on 2014-07-08T08:56:26+01:00.<br></footer></div>
</div>
</body>
</html>
|
module/ZfModule/test/clover-html/vendor_ZF2_library_Zend_I18n.dashboard.html | gerardoloan/moduleswdoctrine | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Dashboard for /home/gerard/sites/modules.w.doctrine/modules.zendframework.com/vendor/ZF2/library/Zend/I18n</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/bootstrap-responsive.min.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<header>
<div class="container">
<div class="row">
<div class="span12">
<ul class="breadcrumb">
<li><a href="index.html">/home/gerard/sites/modules.w.doctrine/modules.zendframework.com</a> <span class="divider">/</span></li>
<li><a href="vendor.html">vendor</a> <span class="divider">/</span></li>
<li><a href="vendor_ZF2.html">ZF2</a> <span class="divider">/</span></li>
<li><a href="vendor_ZF2_library.html">library</a> <span class="divider">/</span></li>
<li><a href="vendor_ZF2_library_Zend.html">Zend</a> <span class="divider">/</span></li>
<li><a href="vendor_ZF2_library_Zend_I18n.html">I18n</a></li>
<li class="active">(Dashboard)</li>
</ul>
</div>
</div>
</div>
</header>
<div class="container">
<div class="row">
<div class="span6">
<h2>Class Coverage Distribution</h2>
<div id="classCoverageDistribution"></div>
</div>
<div class="span6">
<h2>Class Complexity</h2>
<div id="classComplexity"></div>
</div>
</div>
<div class="row">
<div class="span6">
<h2>Top Project Risks</h2>
<ul>
<li><a href="vendor_ZF2_library_Zend_I18n_Translator_Translator.php.html#29">Translator</a> (2914)</li>
<li><a href="vendor_ZF2_library_Zend_I18n_View_Helper_AbstractTranslatorHelper.php.html#22">AbstractTranslatorHelper</a> (9)</li>
</ul>
</div>
<div class="span6">
<h2>Least Tested Methods</h2>
<ul>
<li><a href="vendor_ZF2_library_Zend_I18n_Translator_Translator.php.html#419">Translator::addTranslationFile</a> (0%)</li>
<li><a href="vendor_ZF2_library_Zend_I18n_Translator_Translator.php.html#448">Translator::addTranslationFilePattern</a> (0%)</li>
<li><a href="vendor_ZF2_library_Zend_I18n_Translator_Translator.php.html#474">Translator::addRemoteTranslations</a> (0%)</li>
<li><a href="vendor_ZF2_library_Zend_I18n_View_Helper_AbstractTranslatorHelper.php.html#95">AbstractTranslatorHelper::setTranslatorEnabled</a> (0%)</li>
<li><a href="vendor_ZF2_library_Zend_I18n_Translator_Translator.php.html#297">Translator::getPluginManager</a> (0%)</li>
<li><a href="vendor_ZF2_library_Zend_I18n_Translator_Translator.php.html#343">Translator::translatePlural</a> (0%)</li>
<li><a href="vendor_ZF2_library_Zend_I18n_Translator_Translator.php.html#240">Translator::setFallbackLocale</a> (0%)</li>
<li><a href="vendor_ZF2_library_Zend_I18n_Translator_Translator.php.html#284">Translator::setPluginManager</a> (0%)</li>
<li><a href="vendor_ZF2_library_Zend_I18n_Translator_Translator.php.html#262">Translator::setCache</a> (0%)</li>
<li><a href="vendor_ZF2_library_Zend_I18n_Translator_Translator.php.html#94">Translator::factory</a> (16%)</li>
</ul>
</div>
</div>
<footer>
<p>
<small>Generated by <a href="http://github.com/sebastianbergmann/php-code-coverage" target="_top">PHP_CodeCoverage 1.2.13</a> using <a href="http://www.php.net/" target="_top">PHP 5.3.10-1ubuntu3.8</a> and <a href="http://phpunit.de/">PHPUnit 3.7.27</a> at Sat Oct 12 3:31:18 CEST 2013.</small>
</p>
</footer>
</div>
<script src="js/jquery.min.js" type="text/javascript"></script>
<script src="js/bootstrap.min.js" type="text/javascript"></script>
<script src="js/highcharts.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function() {
var classCoverageDistribution = new Highcharts.Chart({
chart: {
renderTo: 'classCoverageDistribution',
type: 'column'
},
title: {text: ''},
legend: {enabled: false},
credits: {enabled: false},
tooltip: {enabled: false},
xAxis: {
labels: {style: {fontSize: '8px'}},
categories: [
'0%','0-10%','10-20%','20-30%','30-40%','40-50%','50-60%','60-70%','70-80%','80-90%','90-100%','100%'
],
min: 0
},
yAxis: {
title: '',
labels: {style: {fontSize: '8px'}},
min: 0
},
series: [{
data: [0,0,0,1,0,0,0,0,0,1,0,2]
}],
});
var classComplexity = new Highcharts.Chart({
chart: {
renderTo: 'classComplexity',
type: 'scatter'
},
title: {text: ''},
legend: {enabled: false},
credits: {enabled: false},
xAxis: {
title: {text: 'Code Coverage (in percent)'},
labels: {enabled: true},
min: 0
},
yAxis: {
title: {text: 'Cyclomatic Complexity'},
labels: {enabled: true},
min: 0
},
tooltip: {
formatter: function() {
return this.point.config[2];
}
},
series: [{
data: [[21.782178217822,77,"<a href=\"vendor_ZF2_library_Zend_I18n_Translator_Translator.php.html#29\">Translator<\/a>"],[100,2,"<a href=\"vendor_ZF2_library_Zend_I18n_Translator_TranslatorServiceFactory.php.html#23\">TranslatorServiceFactory<\/a>"],[80,9,"<a href=\"vendor_ZF2_library_Zend_I18n_View_Helper_AbstractTranslatorHelper.php.html#22\">AbstractTranslatorHelper<\/a>"],[100,2,"<a href=\"vendor_ZF2_library_Zend_I18n_View_HelperConfig.php.html#23\">HelperConfig<\/a>"]],
marker: {
symbol: 'diamond'
}
}],
});
});
</script>
</body>
</html>
|
tollbackend/web/js/angular-1.5.5/docs/examples/example-example48/index.html | mudunuriRaju/tlr-live | <!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Example - example-example48</title>
<script src="../../../angular.min.js"></script>
<script src="script.js"></script>
</head>
<body ng-app="ngAppDemo">
<div ng-controller="ngAppDemoController">
I can add: {{a}} + {{b}} = {{ a+b }}
</div>
</body>
</html> |
doc/Aims-Plugin_Doc/identifier-index-D.html | SPlanzer/QGIS-AIMS-Plugin | <?xml version="1.0" encoding="ascii"?>
<!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>Identifier Index</title>
<link rel="stylesheet" href="epydoc.css" type="text/css" />
<script type="text/javascript" src="epydoc.js"></script>
</head>
<body bgcolor="white" text="black" link="blue" vlink="#204080"
alink="#204080">
<!-- ==================== NAVIGATION BAR ==================== -->
<table class="navbar" border="0" width="100%" cellpadding="0"
bgcolor="#a0c0ff" cellspacing="0">
<tr valign="middle">
<!-- Home link -->
<th> <a
href="QGIS-AIMS-Plugin-module.html">Home</a> </th>
<!-- Tree link -->
<th> <a
href="module-tree.html">Trees</a> </th>
<!-- Index link -->
<th bgcolor="#70b0f0" class="navbar-select"
> Indices </th>
<!-- Help link -->
<th> <a
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%"> </td>
<td>
<table cellpadding="0" cellspacing="0">
<!-- hide/show private -->
<tr><td align="right"><span class="options">[<a href="javascript:void(0);" class="privatelink"
onclick="toggle_private();">hide private</a>]</span></td></tr>
<tr><td align="right"><span class="options"
>[<a href="frames.html" target="_top">frames</a
>] | <a href="identifier-index-D.html"
target="_top">no frames</a>]</span></td></tr>
</table>
</td>
</tr>
</table>
<table border="0" width="100%">
<tr valign="bottom"><td>
<h1 class="epydoc">Identifier Index</h1>
</td><td>
[
<a href="identifier-index-A.html">A</a>
<a href="identifier-index-B.html">B</a>
<a href="identifier-index-C.html">C</a>
<a href="identifier-index-D.html">D</a>
<a href="identifier-index-E.html">E</a>
<a href="identifier-index-F.html">F</a>
<a href="identifier-index-G.html">G</a>
<a href="identifier-index-H.html">H</a>
<a href="identifier-index-I.html">I</a>
<a href="identifier-index-J.html">J</a>
<a href="identifier-index-K.html">K</a>
<a href="identifier-index-L.html">L</a>
<a href="identifier-index-M.html">M</a>
<a href="identifier-index-N.html">N</a>
<a href="identifier-index-O.html">O</a>
<a href="identifier-index-P.html">P</a>
<a href="identifier-index-Q.html">Q</a>
<a href="identifier-index-R.html">R</a>
<a href="identifier-index-S.html">S</a>
<a href="identifier-index-T.html">T</a>
<a href="identifier-index-U.html">U</a>
<a href="identifier-index-V.html">V</a>
<a href="identifier-index-W.html">W</a>
<a href="identifier-index-X.html">X</a>
<a href="identifier-index-Y.html">Y</a>
<a href="identifier-index-Z.html">Z</a>
<a href="identifier-index-_.html">_</a>
]
</td></table>
<table border="0" width="100%">
<tr valign="top"><td valign="top" width="1%"><h2 class="epydoc"><a name="D">D</a></h2></td>
<td valign="top">
<table class="link-index" width="100%" border="1">
<tr>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QLocale-class.html#Danish">Danish</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.QLocale-class.html">QLocale</a>)</span></td>
<td width="33%" class="link-index"><a href="qgis._gui.QgsMapToolIdentify-class.html#DefaultQgsSetting">DefaultQgsSetting</a><br />
<span class="index-where">(in <a href="qgis._gui.QgsMapToolIdentify-class.html">QgsMapToolIdentify</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QPaintEngine.DirtyFlags-class.html">DirtyFlags</a></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QPalette-class.html#Dark">Dark</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QPalette-class.html">QPalette</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QSizePolicy-class.html#DefaultType">DefaultType</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QSizePolicy-class.html">QSizePolicy</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QPaintEngine-class.html#DirtyFont">DirtyFont</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QPaintEngine-class.html">QPaintEngine</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.Qt-class.html#darkBlue">darkBlue</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.Qt-class.html">Qt</a>)</span></td>
<td width="33%" class="link-index"><a href="qgis._core.QgsVectorFileWriter.IntOption-class.html#defaultValue">defaultValue</a><br />
<span class="index-where">(in <a href="qgis._core.QgsVectorFileWriter.IntOption-class.html">IntOption</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QPaintEngine-class.html#DirtyHints">DirtyHints</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QPaintEngine-class.html">QPaintEngine</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.Qt-class.html#darkCyan">darkCyan</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.Qt-class.html">Qt</a>)</span></td>
<td width="33%" class="link-index"><a href="qgis._core.QgsVectorFileWriter.SetOption-class.html#defaultValue">defaultValue</a><br />
<span class="index-where">(in <a href="qgis._core.QgsVectorFileWriter.SetOption-class.html">SetOption</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QPaintEngine-class.html#DirtyOpacity">DirtyOpacity</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QPaintEngine-class.html">QPaintEngine</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.Qt-class.html#darkGray">darkGray</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.Qt-class.html">Qt</a>)</span></td>
<td width="33%" class="link-index"><a href="qgis._core.QgsVectorFileWriter.StringOption-class.html#defaultValue">defaultValue</a><br />
<span class="index-where">(in <a href="qgis._core.QgsVectorFileWriter.StringOption-class.html">StringOption</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QPaintEngine-class.html#DirtyPen">DirtyPen</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QPaintEngine-class.html">QPaintEngine</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.Qt-class.html#darkGreen">darkGreen</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.Qt-class.html">Qt</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QEvent-class.html#DeferredDelete">DeferredDelete</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.QEvent-class.html">QEvent</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QPaintEngine-class.html#DirtyTransform">DirtyTransform</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QPaintEngine-class.html">QPaintEngine</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.Qt-class.html#darkMagenta">darkMagenta</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.Qt-class.html">Qt</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QEventLoop-class.html#DeferredDeletion">DeferredDeletion</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.QEventLoop-class.html">QEventLoop</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QChar-class.html#DirWS">DirWS</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.QChar-class.html">QChar</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.Qt-class.html#darkRed">darkRed</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.Qt-class.html">Qt</a>)</span></td>
<td width="33%" class="link-index"><a href="qgis._core.QgsComposerMap-class.html#DegreeMinute">DegreeMinute</a><br />
<span class="index-where">(in <a href="qgis._core.QgsComposerMap-class.html">QgsComposerMap</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QIcon-class.html#Disabled">Disabled</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QIcon-class.html">QIcon</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.Qt-class.html#darkYellow">darkYellow</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.Qt-class.html">Qt</a>)</span></td>
<td width="33%" class="link-index"><a href="qgis._core.QgsComposerMapGrid-class.html#DegreeMinute">DegreeMinute</a><br />
<span class="index-where">(in <a href="qgis._core.QgsComposerMapGrid-class.html">QgsComposerMapGrid</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QPalette-class.html#Disabled">Disabled</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QPalette-class.html">QPalette</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.Qt-class.html#DashDotDotLine">DashDotDotLine</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.Qt-class.html">Qt</a>)</span></td>
<td width="33%" class="link-index"><a href="qgis._core.QgsComposerMap-class.html#DegreeMinuteNoSuffix">DegreeMinuteNoSuffix</a><br />
<span class="index-where">(in <a href="qgis._core.QgsComposerMap-class.html">QgsComposerMap</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QTreeWidgetItemIterator-class.html#Disabled">Disabled</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QTreeWidgetItemIterator-class.html">QTreeWidgetItemIterator</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QTextCharFormat-class.html#DashDotDotLine">DashDotDotLine</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QTextCharFormat-class.html">QTextCharFormat</a>)</span></td>
<td width="33%" class="link-index"><a href="qgis._core.QgsComposerMapGrid-class.html#DegreeMinuteNoSuffix">DegreeMinuteNoSuffix</a><br />
<span class="index-where">(in <a href="qgis._core.QgsComposerMapGrid-class.html">QgsComposerMapGrid</a>)</span></td>
<td width="33%" class="link-index"><a href="qgis._core.QgsComposerMap-class.html#Disabled">Disabled</a><br />
<span class="index-where">(in <a href="qgis._core.QgsComposerMap-class.html">QgsComposerMap</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.Qt-class.html#DashDotLine">DashDotLine</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.Qt-class.html">Qt</a>)</span></td>
<td width="33%" class="link-index"><a href="qgis._core.QgsComposerMap-class.html#DegreeMinutePadded">DegreeMinutePadded</a><br />
<span class="index-where">(in <a href="qgis._core.QgsComposerMap-class.html">QgsComposerMap</a>)</span></td>
<td width="33%" class="link-index"><a href="qgis._core.QgsComposerMapGrid-class.html#Disabled">Disabled</a><br />
<span class="index-where">(in <a href="qgis._core.QgsComposerMapGrid-class.html">QgsComposerMapGrid</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QTextCharFormat-class.html#DashDotLine">DashDotLine</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QTextCharFormat-class.html">QTextCharFormat</a>)</span></td>
<td width="33%" class="link-index"><a href="qgis._core.QgsComposerMapGrid-class.html#DegreeMinutePadded">DegreeMinutePadded</a><br />
<span class="index-where">(in <a href="qgis._core.QgsComposerMapGrid-class.html">QgsComposerMapGrid</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QWizard-class.html#DisabledBackButtonOnLastPage">DisabledBackButtonOnLastPage</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QWizard-class.html">QWizard</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.Qt-class.html#DashLine">DashLine</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.Qt-class.html">Qt</a>)</span></td>
<td width="33%" class="link-index"><a href="qgis._core.QgsComposerMap-class.html#DegreeMinuteSecond">DegreeMinuteSecond</a><br />
<span class="index-where">(in <a href="qgis._core.QgsComposerMap-class.html">QgsComposerMap</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QDialogButtonBox-class.html#Discard">Discard</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QDialogButtonBox-class.html">QDialogButtonBox</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QTextCharFormat-class.html#DashUnderline">DashUnderline</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QTextCharFormat-class.html">QTextCharFormat</a>)</span></td>
<td width="33%" class="link-index"><a href="qgis._core.QgsComposerMapGrid-class.html#DegreeMinuteSecond">DegreeMinuteSecond</a><br />
<span class="index-where">(in <a href="qgis._core.QgsComposerMapGrid-class.html">QgsComposerMapGrid</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QMessageBox-class.html#Discard">Discard</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QMessageBox-class.html">QMessageBox</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="QGIS-AIMS-Plugin.AimsUI.AimsClient.Database-module.html">Database</a><br />
<span class="index-where">(in <a href="QGIS-AIMS-Plugin.AimsUI.AimsClient-module.html">QGIS-AIMS-Plugin.AimsUI.AimsClient</a>)</span></td>
<td width="33%" class="link-index"><a href="qgis._core.QgsComposerMap-class.html#DegreeMinuteSecondNoSuffix">DegreeMinuteSecondNoSuffix</a><br />
<span class="index-where">(in <a href="qgis._core.QgsComposerMap-class.html">QgsComposerMap</a>)</span></td>
<td width="33%" class="link-index"><a href="QGIS-AIMS-Plugin.AimsUI.LayerManager.LayerManager-class.html#disconnectExtentEvent">disconnectExtentEvent()</a><br />
<span class="index-where">(in <a href="QGIS-AIMS-Plugin.AimsUI.LayerManager.LayerManager-class.html">LayerManager</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="qgis._core.QgsLayerItem-class.html#Database">Database</a><br />
<span class="index-where">(in <a href="qgis._core.QgsLayerItem-class.html">QgsLayerItem</a>)</span></td>
<td width="33%" class="link-index"><a href="qgis._core.QgsComposerMapGrid-class.html#DegreeMinuteSecondNoSuffix">DegreeMinuteSecondNoSuffix</a><br />
<span class="index-where">(in <a href="qgis._core.QgsComposerMapGrid-class.html">QgsComposerMapGrid</a>)</span></td>
<td width="33%" class="link-index"><a href="qgis._core.QgsColorRampShader-class.html#DISCRETE">DISCRETE</a><br />
<span class="index-where">(in <a href="qgis._core.QgsColorRampShader-class.html">QgsColorRampShader</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="QGIS-AIMS-Plugin.AimsUI.AimsClient.Database-module.html#database">database()</a><br />
<span class="index-where">(in <a href="QGIS-AIMS-Plugin.AimsUI.AimsClient.Database-module.html">QGIS-AIMS-Plugin.AimsUI.AimsClient.Database</a>)</span></td>
<td width="33%" class="link-index"><a href="qgis._core.QgsComposerMap-class.html#DegreeMinuteSecondPadded">DegreeMinuteSecondPadded</a><br />
<span class="index-where">(in <a href="qgis._core.QgsComposerMap-class.html">QgsComposerMap</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.Display-class.html">Display</a></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="QGIS-AIMS-Plugin.Test.Database_Test-module.html">Database_Test</a><br />
<span class="index-where">(in QGIS-AIMS-Plugin.Test)</span></td>
<td width="33%" class="link-index"><a href="qgis._core.QgsComposerMapGrid-class.html#DegreeMinuteSecondPadded">DegreeMinuteSecondPadded</a><br />
<span class="index-where">(in <a href="qgis._core.QgsComposerMapGrid-class.html">QgsComposerMapGrid</a>)</span></td>
<td width="33%" class="link-index"><a href="QGIS-AIMS-Plugin.AimsUI.AimsClient.Gui.ReviewQueueWidget.ReviewQueueWidget-class.html#display">display()</a><br />
<span class="index-where">(in <a href="QGIS-AIMS-Plugin.AimsUI.AimsClient.Gui.ReviewQueueWidget.ReviewQueueWidget-class.html">ReviewQueueWidget</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="qgis._core.QgsPalLayerSettings.DataDefinedProperties-class.html">DataDefinedProperties</a></td>
<td width="33%" class="link-index"><a href="qgis._core.QGis-class.html#Degrees">Degrees</a><br />
<span class="index-where">(in <a href="qgis._core.QGis-class.html">QGis</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QStyleOptionViewItem-class.html#displayAlignment">displayAlignment</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QStyleOptionViewItem-class.html">QStyleOptionViewItem</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="qgis._core.QgsPalLayerSettings-class.html#dataDefinedProperties">dataDefinedProperties</a><br />
<span class="index-where">(in <a href="qgis._core.QgsPalLayerSettings-class.html">QgsPalLayerSettings</a>)</span></td>
<td width="33%" class="link-index"><a href="qgis._core.QgsVectorFieldSymbolLayer-class.html#Degrees">Degrees</a><br />
<span class="index-where">(in <a href="qgis._core.QgsVectorFieldSymbolLayer-class.html">QgsVectorFieldSymbolLayer</a>)</span></td>
<td width="33%" class="link-index"><a href="qgis._core.QgsPalLayerSettings-class.html#displayAll">displayAll</a><br />
<span class="index-where">(in <a href="qgis._core.QgsPalLayerSettings-class.html">QgsPalLayerSettings</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="qgis._core.QgsComposerObject.DataDefinedProperty-class.html">DataDefinedProperty</a></td>
<td width="33%" class="link-index"><a href="qgis._core.QGis-class.html#DegreesDecimalMinutes">DegreesDecimalMinutes</a><br />
<span class="index-where">(in <a href="qgis._core.QGis-class.html">QGis</a>)</span></td>
<td width="33%" class="link-index"><a href="qgis._core.QgsComposerMapGrid.DisplayMode-class.html">DisplayMode</a></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="qgis._core.QgsSymbolV2-class.html#DataDefinedRotation">DataDefinedRotation</a><br />
<span class="index-where">(in <a href="qgis._core.QgsSymbolV2-class.html">QgsSymbolV2</a>)</span></td>
<td width="33%" class="link-index"><a href="qgis._core.QGis-class.html#DegreesMinutesSeconds">DegreesMinutesSeconds</a><br />
<span class="index-where">(in <a href="qgis._core.QGis-class.html">QGis</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.Qt-class.html#DisplayRole">DisplayRole</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.Qt-class.html">Qt</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="qgis._core.QgsSymbolV2-class.html#DataDefinedSizeScale">DataDefinedSizeScale</a><br />
<span class="index-where">(in <a href="qgis._core.QgsSymbolV2-class.html">QgsSymbolV2</a>)</span></td>
<td width="33%" class="link-index"><a href="QGIS-AIMS-Plugin.AimsUI.DelAddressTool.DelAddressDialog-class.html">DelAddressDialog</a><br />
<span class="index-where">(in <a href="QGIS-AIMS-Plugin.AimsUI.DelAddressTool-module.html">QGIS-AIMS-Plugin.AimsUI.DelAddressTool</a>)</span></td>
<td width="33%" class="link-index"><a href="QGIS-AIMS-Plugin.AimsUI.AimsClient.Gui.ResponseHandler.ResponseHandler-class.html#displayWarnings">displayWarnings()</a><br />
<span class="index-where">(in <a href="QGIS-AIMS-Plugin.AimsUI.AimsClient.Gui.ResponseHandler.ResponseHandler-class.html">ResponseHandler</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="qgis._gui.QgsDataDefinedSymbolDialog.DataDefinedSymbolEntry-class.html">DataDefinedSymbolEntry</a></td>
<td width="33%" class="link-index"><a href="QGIS-AIMS-Plugin.AimsUI.DelAddressTool-module.html">DelAddressTool</a><br />
<span class="index-where">(in QGIS-AIMS-Plugin.AimsUI)</span></td>
<td width="33%" class="link-index"><a href="qgis._core.QgsDiagramLayerSettings-class.html#dist">dist</a><br />
<span class="index-where">(in <a href="qgis._core.QgsDiagramLayerSettings-class.html">QgsDiagramLayerSettings</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QDesktopServices-class.html#DataLocation">DataLocation</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QDesktopServices-class.html">QDesktopServices</a>)</span></td>
<td width="33%" class="link-index"><a href="QGIS-AIMS-Plugin.AimsUI.DelAddressTool.DelAddressTool-class.html">DelAddressTool</a><br />
<span class="index-where">(in <a href="QGIS-AIMS-Plugin.AimsUI.DelAddressTool-module.html">QGIS-AIMS-Plugin.AimsUI.DelAddressTool</a>)</span></td>
<td width="33%" class="link-index"><a href="qgis._core.QgsPalLayerSettings-class.html#dist">dist</a><br />
<span class="index-where">(in <a href="qgis._core.QgsPalLayerSettings-class.html">QgsPalLayerSettings</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="QGIS-AIMS-Plugin.AIMSDataManager.DataManager-module.html">DataManager</a><br />
<span class="index-where">(in QGIS-AIMS-Plugin.AIMSDataManager)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QToolButton-class.html#DelayedPopup">DelayedPopup</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QToolButton-class.html">QToolButton</a>)</span></td>
<td width="33%" class="link-index"><a href="qgis._core.QgsImageOperation.DistanceTransformProperties-class.html">DistanceTransformProperties</a></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="QGIS-AIMS-Plugin.AIMSDataManager.DataManager.DataManager-class.html">DataManager</a><br />
<span class="index-where">(in <a href="QGIS-AIMS-Plugin.AIMSDataManager.DataManager-module.html">QGIS-AIMS-Plugin.AIMSDataManager.DataManager</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QKeySequence-class.html#Delete">Delete</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QKeySequence-class.html">QKeySequence</a>)</span></td>
<td width="33%" class="link-index"><a href="qgis._core.QgsPalLayerSettings-class.html#DistanceUnits">DistanceUnits</a><br />
<span class="index-where">(in <a href="qgis._core.QgsPalLayerSettings-class.html">QgsPalLayerSettings</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="QGIS-AIMS-Plugin.Test.DataManager_Test-module.html">DataManager_Test</a><br />
<span class="index-where">(in QGIS-AIMS-Plugin.Test)</span></td>
<td width="33%" class="link-index"><a href="qgis._core.QgsVectorDataProvider-class.html#DeleteAttributes">DeleteAttributes</a><br />
<span class="index-where">(in <a href="qgis._core.QgsVectorDataProvider-class.html">QgsVectorDataProvider</a>)</span></td>
<td width="33%" class="link-index"><a href="qgis._core.QgsPalLayerSettings-class.html#distInMapUnits">distInMapUnits</a><br />
<span class="index-where">(in <a href="qgis._core.QgsPalLayerSettings-class.html">QgsPalLayerSettings</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QLibraryInfo-class.html#DataPath">DataPath</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.QLibraryInfo-class.html">QLibraryInfo</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QKeySequence-class.html#DeleteEndOfLine">DeleteEndOfLine</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QKeySequence-class.html">QKeySequence</a>)</span></td>
<td width="33%" class="link-index"><a href="qgis._core.QgsPalLayerSettings-class.html#distMapUnitScale">distMapUnitScale</a><br />
<span class="index-where">(in <a href="qgis._core.QgsPalLayerSettings-class.html">QgsPalLayerSettings</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="QGIS-AIMS-Plugin.Test.AimsService_Mock._Layer-class.html#dataProvider">dataProvider()</a><br />
<span class="index-where">(in <a href="QGIS-AIMS-Plugin.Test.AimsService_Mock._Layer-class.html" onclick="show_private();">_Layer</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QKeySequence-class.html#DeleteEndOfWord">DeleteEndOfWord</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QKeySequence-class.html">QKeySequence</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QLocale-class.html#Divehi">Divehi</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.QLocale-class.html">QLocale</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="qgis._core.QgsGPSConnection-class.html#DataReceived">DataReceived</a><br />
<span class="index-where">(in <a href="qgis._core.QgsGPSConnection-class.html">QgsGPSConnection</a>)</span></td>
<td width="33%" class="link-index"><a href="qgis._core.QgsVectorDataProvider-class.html#DeleteFeatures">DeleteFeatures</a><br />
<span class="index-where">(in <a href="qgis._core.QgsVectorDataProvider-class.html">QgsVectorDataProvider</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QLocale-class.html#Djibouti">Djibouti</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.QLocale-class.html">QLocale</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="QGIS-AIMS-Plugin.AIMSDataManager.DataSync.DataRequestChannel-class.html">DataRequestChannel</a><br />
<span class="index-where">(in <a href="QGIS-AIMS-Plugin.AIMSDataManager.DataSync-module.html">QGIS-AIMS-Plugin.AIMSDataManager.DataSync</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QKeySequence-class.html#DeleteStartOfWord">DeleteStartOfWord</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QKeySequence-class.html">QKeySequence</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QPrinter-class.html#DLE">DLE</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QPrinter-class.html">QPrinter</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="QGIS-AIMS-Plugin.AIMSDataManager.DataSync-module.html">DataSync</a><br />
<span class="index-where">(in QGIS-AIMS-Plugin.AIMSDataManager)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QAbstractAnimation-class.html#DeleteWhenStopped">DeleteWhenStopped</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.QAbstractAnimation-class.html">QAbstractAnimation</a>)</span></td>
<td width="33%" class="link-index"><a href="QGIS-AIMS-Plugin.AimsUI.AimsClient.Gui.UiDataManager.DMData-class.html">DMData</a><br />
<span class="index-where">(in <a href="QGIS-AIMS-Plugin.AimsUI.AimsClient.Gui.UiDataManager-module.html">QGIS-AIMS-Plugin.AimsUI.AimsClient.Gui.UiDataManager</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="QGIS-AIMS-Plugin.AIMSDataManager.DataSync.DataSync-class.html">DataSync</a><br />
<span class="index-where">(in <a href="QGIS-AIMS-Plugin.AIMSDataManager.DataSync-module.html">QGIS-AIMS-Plugin.AIMSDataManager.DataSync</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QAbstractAnimation.DeletionPolicy-class.html">DeletionPolicy</a></td>
<td width="33%" class="link-index"><a href="QGIS-AIMS-Plugin.AimsUI.AimsClient.Gui.UiDataManager.DMObserver-class.html">DMObserver</a><br />
<span class="index-where">(in <a href="QGIS-AIMS-Plugin.AimsUI.AimsClient.Gui.UiDataManager-module.html">QGIS-AIMS-Plugin.AimsUI.AimsClient.Gui.UiDataManager</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="QGIS-AIMS-Plugin.AIMSDataManager.DataSync.DataSyncAdmin-class.html">DataSyncAdmin</a><br />
<span class="index-where">(in <a href="QGIS-AIMS-Plugin.AIMSDataManager.DataSync-module.html">QGIS-AIMS-Plugin.AIMSDataManager.DataSync</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QTextOption.Tab-class.html#delimiter">delimiter</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QTextOption.Tab-class.html">Tab</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QMainWindow.DockOption-class.html">DockOption</a></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="QGIS-AIMS-Plugin.AIMSDataManager.DataSync.DataSyncFeatures-class.html">DataSyncFeatures</a><br />
<span class="index-where">(in <a href="QGIS-AIMS-Plugin.AIMSDataManager.DataSync-module.html">QGIS-AIMS-Plugin.AIMSDataManager.DataSync</a>)</span></td>
<td width="33%" class="link-index"><a href="string.Template-class.html#delimiter">delimiter</a><br />
<span class="index-where">(in <a href="string.Template-class.html">Template</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QMainWindow.DockOptions-class.html">DockOptions</a></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="QGIS-AIMS-Plugin.AIMSDataManager.DataSync.DataSyncFeeds-class.html">DataSyncFeeds</a><br />
<span class="index-where">(in <a href="QGIS-AIMS-Plugin.AIMSDataManager.DataSync-module.html">QGIS-AIMS-Plugin.AIMSDataManager.DataSync</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QTextOption-class.html#DelimiterTab">DelimiterTab</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QTextOption-class.html">QTextOption</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.Qt.DockWidgetArea-class.html">DockWidgetArea</a></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="qgis._core.QGis.DataType-class.html">DataType</a></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QFont-class.html#DemiBold">DemiBold</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QFont-class.html">QFont</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.Qt-class.html#DockWidgetArea_Mask">DockWidgetArea_Mask</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.Qt-class.html">Qt</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="qgis._gui.QgsDataDefinedButton.DataType-class.html">DataType</a></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QLocale-class.html#DemocraticRepublicOfCongo">DemocraticRepublicOfCongo</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.QLocale-class.html">QLocale</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.Qt.DockWidgetAreas-class.html">DockWidgetAreas</a></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="qgis._gui.QgsProjectBadLayerGuiHandler.DataType-class.html">DataType</a></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QLocale-class.html#DemocraticRepublicOfKorea">DemocraticRepublicOfKorea</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.QLocale-class.html">QLocale</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QDockWidget-class.html#DockWidgetClosable">DockWidgetClosable</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QDockWidget-class.html">QDockWidget</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="qgis._gui.QgsDataDefinedButton.DataTypes-class.html">DataTypes</a></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QLibraryInfo-class.html#DemosPath">DemosPath</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.QLibraryInfo-class.html">QLibraryInfo</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QDockWidget.DockWidgetFeature-class.html">DockWidgetFeature</a></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="QGIS-AIMS-Plugin.AimsUI.AimsClient.Gui.UiDataManager.UiDataManager-class.html#dataUpdated">dataUpdated()</a><br />
<span class="index-where">(in <a href="QGIS-AIMS-Plugin.AimsUI.AimsClient.Gui.UiDataManager.UiDataManager-class.html">UiDataManager</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QLocale-class.html#Denmark">Denmark</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.QLocale-class.html">QLocale</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QDockWidget.DockWidgetFeatures-class.html">DockWidgetFeatures</a></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="QGIS-AIMS-Plugin.AIMSDataManager.DataUpdater-module.html">DataUpdater</a><br />
<span class="index-where">(in QGIS-AIMS-Plugin.AIMSDataManager)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.Qt-class.html#Dense1Pattern">Dense1Pattern</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.Qt-class.html">Qt</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QDockWidget-class.html#DockWidgetFloatable">DockWidgetFloatable</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QDockWidget-class.html">QDockWidget</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="QGIS-AIMS-Plugin.AIMSDataManager.DataUpdater.DataUpdater-class.html">DataUpdater</a><br />
<span class="index-where">(in <a href="QGIS-AIMS-Plugin.AIMSDataManager.DataUpdater-module.html">QGIS-AIMS-Plugin.AIMSDataManager.DataUpdater</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.Qt-class.html#Dense2Pattern">Dense2Pattern</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.Qt-class.html">Qt</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QDockWidget-class.html#DockWidgetMovable">DockWidgetMovable</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QDockWidget-class.html">QDockWidget</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="QGIS-AIMS-Plugin.AIMSDataManager.DataUpdater.DataUpdaterAction-class.html">DataUpdaterAction</a><br />
<span class="index-where">(in <a href="QGIS-AIMS-Plugin.AIMSDataManager.DataUpdater-module.html">QGIS-AIMS-Plugin.AIMSDataManager.DataUpdater</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.Qt-class.html#Dense3Pattern">Dense3Pattern</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.Qt-class.html">Qt</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QDockWidget-class.html#DockWidgetVerticalTitleBar">DockWidgetVerticalTitleBar</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QDockWidget-class.html">QDockWidget</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="QGIS-AIMS-Plugin.AIMSDataManager.DataUpdater.DataUpdaterAddress-class.html">DataUpdaterAddress</a><br />
<span class="index-where">(in <a href="QGIS-AIMS-Plugin.AIMSDataManager.DataUpdater-module.html">QGIS-AIMS-Plugin.AIMSDataManager.DataUpdater</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.Qt-class.html#Dense4Pattern">Dense4Pattern</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.Qt-class.html">Qt</a>)</span></td>
<td width="33%" class="link-index"><a href="QGIS-AIMS-Plugin.AimsUI.AimsClient.Gui.DockWindow.DockWindow-class.html">DockWindow</a><br />
<span class="index-where">(in QGIS-AIMS-Plugin.AimsUI.AimsClient.Gui.DockWindow)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="QGIS-AIMS-Plugin.AIMSDataManager.DataUpdater.DataUpdaterApproval-class.html">DataUpdaterApproval</a><br />
<span class="index-where">(in <a href="QGIS-AIMS-Plugin.AIMSDataManager.DataUpdater-module.html">QGIS-AIMS-Plugin.AIMSDataManager.DataUpdater</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.Qt-class.html#Dense5Pattern">Dense5Pattern</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.Qt-class.html">Qt</a>)</span></td>
<td width="33%" class="link-index"><a href="QGIS-AIMS-Plugin.AimsUI.AimsClient.Gui.DockWindow%27-module.html">DockWindow'</a><br />
<span class="index-where">(in <a href="QGIS-AIMS-Plugin.AimsUI.AimsClient.Gui-module.html">QGIS-AIMS-Plugin.AimsUI.AimsClient.Gui</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="QGIS-AIMS-Plugin.AIMSDataManager.DataUpdater.DataUpdaterDRC-class.html">DataUpdaterDRC</a><br />
<span class="index-where">(in <a href="QGIS-AIMS-Plugin.AIMSDataManager.DataUpdater-module.html">QGIS-AIMS-Plugin.AIMSDataManager.DataUpdater</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.Qt-class.html#Dense6Pattern">Dense6Pattern</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.Qt-class.html">Qt</a>)</span></td>
<td width="33%" class="link-index"><a href="qgis._core.QgsVectorFileWriter.Option-class.html#docString">docString</a><br />
<span class="index-where">(in <a href="qgis._core.QgsVectorFileWriter.Option-class.html">Option</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="QGIS-AIMS-Plugin.AIMSDataManager.DataUpdater.DataUpdaterGroup-class.html">DataUpdaterGroup</a><br />
<span class="index-where">(in <a href="QGIS-AIMS-Plugin.AIMSDataManager.DataUpdater-module.html">QGIS-AIMS-Plugin.AIMSDataManager.DataUpdater</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.Qt-class.html#Dense7Pattern">Dense7Pattern</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.Qt-class.html">Qt</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QTextCursor-class.html#Document">Document</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QTextCursor-class.html">QTextCursor</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="QGIS-AIMS-Plugin.AIMSDataManager.DataUpdater.DataUpdaterGroupAction-class.html">DataUpdaterGroupAction</a><br />
<span class="index-where">(in <a href="QGIS-AIMS-Plugin.AIMSDataManager.DataUpdater-module.html">QGIS-AIMS-Plugin.AIMSDataManager.DataUpdater</a>)</span></td>
<td width="33%" class="link-index"><a href="QGIS-AIMS-Plugin.AIMSDataManager.Observable.Observable-class.html#deregister">deregister()</a><br />
<span class="index-where">(in <a href="QGIS-AIMS-Plugin.AIMSDataManager.Observable.Observable-class.html">Observable</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QLibraryInfo-class.html#DocumentationPath">DocumentationPath</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.QLibraryInfo-class.html">QLibraryInfo</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="QGIS-AIMS-Plugin.AIMSDataManager.DataUpdater.DataUpdaterGroupApproval-class.html">DataUpdaterGroupApproval</a><br />
<span class="index-where">(in <a href="QGIS-AIMS-Plugin.AIMSDataManager.DataUpdater-module.html">QGIS-AIMS-Plugin.AIMSDataManager.DataUpdater</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.Qt-class.html#DescendingOrder">DescendingOrder</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.Qt-class.html">Qt</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QStyleOptionTabBarBaseV2-class.html#documentMode">documentMode</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QStyleOptionTabBarBaseV2-class.html">QStyleOptionTabBarBaseV2</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="QGIS-AIMS-Plugin.AIMSDataManager.DataUpdater.DataUpdaterSelectionException-class.html">DataUpdaterSelectionException</a><br />
<span class="index-where">(in <a href="QGIS-AIMS-Plugin.AIMSDataManager.DataUpdater-module.html">QGIS-AIMS-Plugin.AIMSDataManager.DataUpdater</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QImageIOHandler-class.html#Description">Description</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QImageIOHandler-class.html">QImageIOHandler</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QStyleOptionTabV3-class.html#documentMode">documentMode</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QStyleOptionTabV3-class.html">QStyleOptionTabV3</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="QGIS-AIMS-Plugin.AIMSDataManager.DataUpdater.DataUpdaterUser-class.html">DataUpdaterUser</a><br />
<span class="index-where">(in <a href="QGIS-AIMS-Plugin.AIMSDataManager.DataUpdater-module.html">QGIS-AIMS-Plugin.AIMSDataManager.DataUpdater</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QItemSelectionModel-class.html#Deselect">Deselect</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QItemSelectionModel-class.html">QItemSelectionModel</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QDesktopServices-class.html#DocumentsLocation">DocumentsLocation</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QDesktopServices-class.html">QDesktopServices</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="QGIS-AIMS-Plugin.AIMSDataManager.DataUpdater.DataUpdaterUserAction-class.html">DataUpdaterUserAction</a><br />
<span class="index-where">(in <a href="QGIS-AIMS-Plugin.AIMSDataManager.DataUpdater-module.html">QGIS-AIMS-Plugin.AIMSDataManager.DataUpdater</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QLocale-class.html#DeseretScript">DeseretScript</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.QLocale-class.html">QLocale</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QTextDocument-class.html#DocumentTitle">DocumentTitle</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QTextDocument-class.html">QTextDocument</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QVariant-class.html#Date">Date</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.QVariant-class.html">QVariant</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.Qt-class.html#Desktop">Desktop</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.Qt-class.html">Qt</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QTextDocument-class.html#DocumentUrl">DocumentUrl</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QTextDocument-class.html">QTextDocument</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="qgis._core.QgsDirectoryItem-class.html#Date">Date</a><br />
<span class="index-where">(in <a href="qgis._core.QgsDirectoryItem-class.html">QgsDirectoryItem</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QFileIconProvider-class.html#Desktop">Desktop</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QFileIconProvider-class.html">QFileIconProvider</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QLocale-class.html#Dominica">Dominica</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.QLocale-class.html">QLocale</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="qgis._gui.QgsFieldProxyModel-class.html#Date">Date</a><br />
<span class="index-where">(in <a href="qgis._gui.QgsFieldProxyModel-class.html">QgsFieldProxyModel</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QDesktopServices-class.html#DesktopLocation">DesktopLocation</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QDesktopServices-class.html">QDesktopServices</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QLocale-class.html#DominicanRepublic">DominicanRepublic</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.QLocale-class.html">QLocale</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QDate-class.html#DateFormat">DateFormat</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.QDate-class.html">QDate</a>)</span></td>
<td width="33%" class="link-index"><a href="qgis._core.QgsLayerCoordinateTransform-class.html#destAuthId">destAuthId</a><br />
<span class="index-where">(in <a href="qgis._core.QgsLayerCoordinateTransform-class.html">QgsLayerCoordinateTransform</a>)</span></td>
<td width="33%" class="link-index"><a href="sys-module.html#dont_write_bytecode">dont_write_bytecode</a><br />
<span class="index-where">(in <a href="sys-module.html">sys</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.Qt.DateFormat-class.html">DateFormat</a></td>
<td width="33%" class="link-index"><a href="qgis._core.QgsLayerCoordinateTransform-class.html#destDatumTransform">destDatumTransform</a><br />
<span class="index-where">(in <a href="qgis._core.QgsLayerCoordinateTransform-class.html">QgsLayerCoordinateTransform</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QGraphicsView-class.html#DontAdjustForAntialiasing">DontAdjustForAntialiasing</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QGraphicsView-class.html">QGraphicsView</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QSystemLocale-class.html#DateFormatLong">DateFormatLong</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.QSystemLocale-class.html">QSystemLocale</a>)</span></td>
<td width="33%" class="link-index"><a href="qgis._core.QgsRasterFileWriter-class.html#DestProviderError">DestProviderError</a><br />
<span class="index-where">(in <a href="qgis._core.QgsRasterFileWriter-class.html">QgsRasterFileWriter</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QGraphicsView-class.html#DontClipPainter">DontClipPainter</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QGraphicsView-class.html">QGraphicsView</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QSystemLocale-class.html#DateFormatShort">DateFormatShort</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.QSystemLocale-class.html">QSystemLocale</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QDialogButtonBox-class.html#DestructiveRole">DestructiveRole</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QDialogButtonBox-class.html">QDialogButtonBox</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QFile-class.html#DontCloseHandle">DontCloseHandle</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.QFile-class.html">QFile</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QDateTimeEdit-class.html#DateSections_Mask">DateSections_Mask</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QDateTimeEdit-class.html">QDateTimeEdit</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QMessageBox-class.html#DestructiveRole">DestructiveRole</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QMessageBox-class.html">QMessageBox</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QFileDialog-class.html#DontConfirmOverwrite">DontConfirmOverwrite</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QFileDialog-class.html">QFileDialog</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QVariant-class.html#DateTime">DateTime</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.QVariant-class.html">QVariant</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QFileDialog-class.html#Detail">Detail</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QFileDialog-class.html">QFileDialog</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QMdiArea-class.html#DontMaximizeSubWindowOnActivation">DontMaximizeSubWindowOnActivation</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QMdiArea-class.html">QMdiArea</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QSystemLocale-class.html#DateTimeFormatLong">DateTimeFormatLong</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.QSystemLocale-class.html">QSystemLocale</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QFontDatabase-class.html#Devanagari">Devanagari</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QFontDatabase-class.html">QFontDatabase</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QFileDialog-class.html#DontResolveSymlinks">DontResolveSymlinks</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QFileDialog-class.html">QFileDialog</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QSystemLocale-class.html#DateTimeFormatShort">DateTimeFormatShort</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.QSystemLocale-class.html">QSystemLocale</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QGraphicsItem-class.html#DeviceCoordinateCache">DeviceCoordinateCache</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QGraphicsItem-class.html">QGraphicsItem</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QStateMachine-class.html#DontRestoreProperties">DontRestoreProperties</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.QStateMachine-class.html">QStateMachine</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QSystemLocale-class.html#DateTimeToStringLong">DateTimeToStringLong</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.QSystemLocale-class.html">QSystemLocale</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.Qt-class.html#DeviceCoordinates">DeviceCoordinates</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.Qt-class.html">Qt</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QGraphicsView-class.html#DontSavePainterState">DontSavePainterState</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QGraphicsView-class.html">QGraphicsView</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QSystemLocale-class.html#DateTimeToStringShort">DateTimeToStringShort</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.QSystemLocale-class.html">QSystemLocale</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QImageReader-class.html#DeviceError">DeviceError</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QImageReader-class.html">QImageReader</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QTreeWidgetItem-class.html#DontShowIndicator">DontShowIndicator</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QTreeWidgetItem-class.html">QTreeWidgetItem</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QSystemLocale-class.html#DateToStringLong">DateToStringLong</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.QSystemLocale-class.html">QSystemLocale</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QImageWriter-class.html#DeviceError">DeviceError</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QImageWriter-class.html">QImageWriter</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QTreeWidgetItem-class.html#DontShowIndicatorWhenChildless">DontShowIndicatorWhenChildless</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QTreeWidgetItem-class.html">QTreeWidgetItem</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QSystemLocale-class.html#DateToStringShort">DateToStringShort</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.QSystemLocale-class.html">QSystemLocale</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QPrinter-class.html#DevicePixel">DevicePixel</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QPrinter-class.html">QPrinter</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.Qt-class.html#DontStartGestureOnChildren">DontStartGestureOnChildren</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.Qt-class.html">Qt</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QSystemLocale-class.html#DayNameLong">DayNameLong</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.QSystemLocale-class.html">QSystemLocale</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QTouchEvent.DeviceType-class.html">DeviceType</a></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QColorDialog-class.html#DontUseNativeDialog">DontUseNativeDialog</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QColorDialog-class.html">QColorDialog</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QSystemLocale-class.html#DayNameShort">DayNameShort</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.QSystemLocale-class.html">QSystemLocale</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.Qt-class.html#DiagCrossPattern">DiagCrossPattern</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.Qt-class.html">Qt</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QFileDialog-class.html#DontUseNativeDialog">DontUseNativeDialog</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QFileDialog-class.html">QFileDialog</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.Qt.DayOfWeek-class.html">DayOfWeek</a></td>
<td width="33%" class="link-index"><a href="qgis._core.QgsDiagramSettings.DiagramOrientation-class.html">DiagramOrientation</a></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QFontDialog-class.html#DontUseNativeDialog">DontUseNativeDialog</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QFontDialog-class.html">QFontDialog</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QDateTimeEdit-class.html#DaySection">DaySection</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QDateTimeEdit-class.html">QDateTimeEdit</a>)</span></td>
<td width="33%" class="link-index"><a href="qgis._core.QgsDiagramSettings-class.html#diagramOrientation">diagramOrientation</a><br />
<span class="index-where">(in <a href="qgis._core.QgsDiagramSettings-class.html">QgsDiagramSettings</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QAbstractPrintDialog-class.html#DontUseSheet">DontUseSheet</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QAbstractPrintDialog-class.html">QAbstractPrintDialog</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QUuid-class.html#DCE">DCE</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.QUuid-class.html">QUuid</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.Qt-class.html#Dialog">Dialog</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.Qt-class.html">Qt</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QFileDialog-class.html#DontUseSheet">DontUseSheet</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QFileDialog-class.html">QFileDialog</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="QGIS-AIMS-Plugin.Test.Database_Test-module.html#DCONF">DCONF</a><br />
<span class="index-where">(in <a href="QGIS-AIMS-Plugin.Test.Database_Test-module.html">QGIS-AIMS-Plugin.Test.Database_Test</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QDialog.DialogCode-class.html">DialogCode</a></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QPageSetupDialog-class.html#DontUseSheet">DontUseSheet</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QPageSetupDialog-class.html">QPageSetupDialog</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="QGIS-AIMS-Plugin.AimsUI.CreateNewAddressTool.CreateNewAddressTool-class.html#deactivate">deactivate()</a><br />
<span class="index-where">(in <a href="QGIS-AIMS-Plugin.AimsUI.CreateNewAddressTool.CreateNewAddressTool-class.html">CreateNewAddressTool</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QFileDialog.DialogLabel-class.html">DialogLabel</a></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QFormLayout-class.html#DontWrapRows">DontWrapRows</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QFormLayout-class.html">QFormLayout</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="QGIS-AIMS-Plugin.AimsUI.DelAddressTool.DelAddressTool-class.html#deactivate">deactivate()</a><br />
<span class="index-where">(in <a href="QGIS-AIMS-Plugin.AimsUI.DelAddressTool.DelAddressTool-class.html">DelAddressTool</a>)</span></td>
<td width="33%" class="link-index"><a href="qgis._core.QgsVectorLayer-class.html#DialRange">DialRange</a><br />
<span class="index-where">(in <a href="qgis._core.QgsVectorLayer-class.html">QgsVectorLayer</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.Qt-class.html#DotLine">DotLine</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.Qt-class.html">Qt</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="QGIS-AIMS-Plugin.AimsUI.GetRclTool.GetRcl-class.html#deactivate">deactivate()</a><br />
<span class="index-where">(in <a href="QGIS-AIMS-Plugin.AimsUI.GetRclTool.GetRcl-class.html">GetRcl</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QStyleOptionSlider-class.html#dialWrapping">dialWrapping</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QStyleOptionSlider-class.html">QStyleOptionSlider</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QTextCharFormat-class.html#DotLine">DotLine</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QTextCharFormat-class.html">QTextCharFormat</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="QGIS-AIMS-Plugin.AimsUI.MoveAddressTool.MoveAddressTool-class.html#deactivate">deactivate()</a><br />
<span class="index-where">(in <a href="QGIS-AIMS-Plugin.AimsUI.MoveAddressTool.MoveAddressTool-class.html">MoveAddressTool</a>)</span></td>
<td width="33%" class="link-index"><a href="QGIS-AIMS-Plugin.AimsUI.AimsClient.Gui.DictionaryList%27-module.html">DictionaryList'</a><br />
<span class="index-where">(in <a href="QGIS-AIMS-Plugin.AimsUI.AimsClient.Gui-module.html">QGIS-AIMS-Plugin.AimsUI.AimsClient.Gui</a>)</span></td>
<td width="33%" class="link-index"><a href="qgis._core.QgsComposition-class.html#Dots">Dots</a><br />
<span class="index-where">(in <a href="qgis._core.QgsComposition-class.html">QgsComposition</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="QGIS-AIMS-Plugin.AimsUI.UpdateAddressTool.UpdateAddressTool-class.html#deactivate">deactivate()</a><br />
<span class="index-where">(in <a href="QGIS-AIMS-Plugin.AimsUI.UpdateAddressTool.UpdateAddressTool-class.html">UpdateAddressTool</a>)</span></td>
<td width="33%" class="link-index"><a href="QGIS-AIMS-Plugin.AimsUI.AimsClient.Gui.DictionaryList.DictionaryListModel-class.html">DictionaryListModel</a><br />
<span class="index-where">(in QGIS-AIMS-Plugin.AimsUI.AimsClient.Gui.DictionaryList)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QMetaType-class.html#Double">Double</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.QMetaType-class.html">QMetaType</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="QGIS-AIMS-Plugin.AimsUI.UpdateReviewPosition.UpdateReviewPosition-class.html#deactivate">deactivate()</a><br />
<span class="index-where">(in <a href="QGIS-AIMS-Plugin.AimsUI.UpdateReviewPosition.UpdateReviewPosition-class.html">UpdateReviewPosition</a>)</span></td>
<td width="33%" class="link-index"><a href="QGIS-AIMS-Plugin.AimsUI.AimsClient.Gui.DictionaryList.DictionaryListView-class.html">DictionaryListView</a><br />
<span class="index-where">(in QGIS-AIMS-Plugin.AimsUI.AimsClient.Gui.DictionaryList)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QVariant-class.html#Double">Double</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.QVariant-class.html">QVariant</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QLCDNumber-class.html#Dec">Dec</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QLCDNumber-class.html">QLCDNumber</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QPrinter-class.html#Didot">Didot</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QPrinter-class.html">QPrinter</a>)</span></td>
<td width="33%" class="link-index"><a href="qgis._gui.QgsDataDefinedButton-class.html#Double">Double</a><br />
<span class="index-where">(in <a href="qgis._gui.QgsDataDefinedButton-class.html">QgsDataDefinedButton</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="qgis._core.QgsComposerMap-class.html#Decimal">Decimal</a><br />
<span class="index-where">(in <a href="qgis._core.QgsComposerMap-class.html">QgsComposerMap</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.Qt-class.html#DiffuseAlphaDither">DiffuseAlphaDither</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.Qt-class.html">Qt</a>)</span></td>
<td width="33%" class="link-index"><a href="qgis._gui.QgsFieldProxyModel-class.html#Double">Double</a><br />
<span class="index-where">(in <a href="qgis._gui.QgsFieldProxyModel-class.html">QgsFieldProxyModel</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="qgis._core.QgsComposerMapGrid-class.html#Decimal">Decimal</a><br />
<span class="index-where">(in <a href="qgis._core.QgsComposerMapGrid-class.html">QgsComposerMapGrid</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.Qt-class.html#DiffuseDither">DiffuseDither</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.Qt-class.html">Qt</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QSystemTrayIcon-class.html#DoubleClick">DoubleClick</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QSystemTrayIcon-class.html">QSystemTrayIcon</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="qgis._core.QGis-class.html#DecimalDegrees">DecimalDegrees</a><br />
<span class="index-where">(in <a href="qgis._core.QGis-class.html">QGis</a>)</span></td>
<td width="33%" class="link-index"><a href="string-module.html#digits">digits</a><br />
<span class="index-where">(in <a href="string-module.html">string</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QAbstractItemView-class.html#DoubleClicked">DoubleClicked</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QAbstractItemView-class.html">QAbstractItemView</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QSystemLocale-class.html#DecimalPoint">DecimalPoint</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.QSystemLocale-class.html">QSystemLocale</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QChar-class.html#DirAL">DirAL</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.QChar-class.html">QChar</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QInputDialog-class.html#DoubleInput">DoubleInput</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QInputDialog-class.html">QInputDialog</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="qgis._core.QgsPalLayerSettings-class.html#decimals">decimals</a><br />
<span class="index-where">(in <a href="qgis._core.QgsPalLayerSettings-class.html">QgsPalLayerSettings</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QChar-class.html#DirAN">DirAN</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.QChar-class.html">QChar</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QDataStream-class.html#DoublePrecision">DoublePrecision</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.QDataStream-class.html">QDataStream</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="qgis._core.QgsComposerMap-class.html#DecimalWithSuffix">DecimalWithSuffix</a><br />
<span class="index-where">(in <a href="qgis._core.QgsComposerMap-class.html">QgsComposerMap</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QChar-class.html#DirB">DirB</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.QChar-class.html">QChar</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QBoxLayout-class.html#Down">Down</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QBoxLayout-class.html">QBoxLayout</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="qgis._core.QgsComposerMapGrid-class.html#DecimalWithSuffix">DecimalWithSuffix</a><br />
<span class="index-where">(in <a href="qgis._core.QgsComposerMapGrid-class.html">QgsComposerMapGrid</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QChar-class.html#DirBN">DirBN</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.QChar-class.html">QChar</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QSwipeGesture-class.html#Down">Down</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QSwipeGesture-class.html">QSwipeGesture</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="QGIS-AIMS-Plugin.AimsUI.AimsClient.Gui.ReviewQueueWidget.ReviewQueueWidget-class.html#decline">decline()</a><br />
<span class="index-where">(in <a href="QGIS-AIMS-Plugin.AimsUI.AimsClient.Gui.ReviewQueueWidget.ReviewQueueWidget-class.html">ReviewQueueWidget</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QChar-class.html#DirCS">DirCS</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.QChar-class.html">QChar</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QTextCursor-class.html#Down">Down</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QTextCursor-class.html">QTextCursor</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="QGIS-AIMS-Plugin.AimsUI.AimsClient.Gui.UiDataManager.UiDataManager-class.html#decline">decline()</a><br />
<span class="index-where">(in <a href="QGIS-AIMS-Plugin.AimsUI.AimsClient.Gui.UiDataManager.UiDataManager-class.html">UiDataManager</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QPaintEngine-class.html#Direct3D">Direct3D</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QPaintEngine-class.html">QPaintEngine</a>)</span></td>
<td width="33%" class="link-index"><a href="qgis._core.QgsDiagramSettings-class.html#Down">Down</a><br />
<span class="index-where">(in <a href="qgis._core.QgsDiagramSettings-class.html">QgsDiagramSettings</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="QGIS-AIMS-Plugin.AIMSDataManager.DataManager.DataManager-class.html#declineAddress">declineAddress()</a><br />
<span class="index-where">(in <a href="QGIS-AIMS-Plugin.AIMSDataManager.DataManager.DataManager-class.html">DataManager</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.Qt-class.html#DirectConnection">DirectConnection</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.Qt-class.html">Qt</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.Qt-class.html#DownArrow">DownArrow</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.Qt-class.html">Qt</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="QGIS-AIMS-Plugin.AIMSDataManager.DataManager.DataManager-class.html#declineGroup">declineGroup()</a><br />
<span class="index-where">(in <a href="QGIS-AIMS-Plugin.AIMSDataManager.DataManager.DataManager-class.html">DataManager</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QAbstractAnimation.Direction-class.html">Direction</a></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.Qt-class.html#DragCopyCursor">DragCopyCursor</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.Qt-class.html">Qt</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QChar.Decomposition-class.html">Decomposition</a></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QChar.Direction-class.html">Direction</a></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QTreeWidgetItemIterator-class.html#DragDisabled">DragDisabled</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QTreeWidgetItemIterator-class.html">QTreeWidgetItemIterator</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QStyleOptionViewItem-class.html#decorationAlignment">decorationAlignment</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QStyleOptionViewItem-class.html">QStyleOptionViewItem</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QTimeLine.Direction-class.html">Direction</a></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QAbstractItemView-class.html#DragDrop">DragDrop</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QAbstractItemView-class.html">QAbstractItemView</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QStyleOptionViewItem-class.html#decorationPosition">decorationPosition</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QStyleOptionViewItem-class.html">QStyleOptionViewItem</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QBoxLayout.Direction-class.html">Direction</a></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QAbstractItemView.DragDropMode-class.html">DragDropMode</a></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.Qt-class.html#DecorationRole">DecorationRole</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.Qt-class.html">Qt</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QProgressBar.Direction-class.html">Direction</a></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QTreeWidgetItemIterator-class.html#DragEnabled">DragEnabled</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QTreeWidgetItemIterator-class.html">QTreeWidgetItemIterator</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QStyleOptionViewItem-class.html#decorationSize">decorationSize</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QStyleOptionViewItem-class.html">QStyleOptionViewItem</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QStyleOption-class.html#direction">direction</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QStyleOption-class.html">QStyleOption</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QEvent-class.html#DragEnter">DragEnter</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.QEvent-class.html">QEvent</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QFont-class.html#Decorative">Decorative</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QFont-class.html">QFont</a>)</span></td>
<td width="33%" class="link-index"><a href="qgis._core.QgsGPSInformation-class.html#direction">direction</a><br />
<span class="index-where">(in <a href="qgis._core.QgsGPSInformation-class.html">QgsGPSInformation</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QAbstractItemView-class.html#DraggingState">DraggingState</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QAbstractItemView-class.html">QAbstractItemView</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QHistoryState-class.html#DeepHistory">DeepHistory</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.QHistoryState-class.html">QHistoryState</a>)</span></td>
<td width="33%" class="link-index"><a href="qgis._gui.QgsComposerRuler.Direction-class.html">Direction</a></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QEvent-class.html#DragLeave">DragLeave</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.QEvent-class.html">QEvent</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="QGIS-AIMS-Plugin.AIMSDataManager.Config-module.html#DEF_CONFIG">DEF_CONFIG</a><br />
<span class="index-where">(in <a href="QGIS-AIMS-Plugin.AIMSDataManager.Config-module.html">QGIS-AIMS-Plugin.AIMSDataManager.Config</a>)</span></td>
<td width="33%" class="link-index"><a href="qgis._core.QgsPalLayerSettings.DirectionSymbols-class.html">DirectionSymbols</a></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.Qt-class.html#DragLinkCursor">DragLinkCursor</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.Qt-class.html">Qt</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="QGIS-AIMS-Plugin.AIMSDataManager.AddressFactory.AddressChangeFactory-class.html#DEF_REF">DEF_REF</a><br />
<span class="index-where">(in <a href="QGIS-AIMS-Plugin.AIMSDataManager.AddressFactory.AddressChangeFactory-class.html">AddressChangeFactory</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QFileDialog-class.html#Directory">Directory</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QFileDialog-class.html">QFileDialog</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QGraphicsView.DragMode-class.html">DragMode</a></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="QGIS-AIMS-Plugin.AIMSDataManager.AddressFactory.AddressFactory-class.html#DEF_REF">DEF_REF</a><br />
<span class="index-where">(in <a href="QGIS-AIMS-Plugin.AIMSDataManager.AddressFactory.AddressFactory-class.html">AddressFactory</a>)</span></td>
<td width="33%" class="link-index"><a href="qgis._core.QgsCptCityDataItem-class.html#Directory">Directory</a><br />
<span class="index-where">(in <a href="qgis._core.QgsCptCityDataItem-class.html">QgsCptCityDataItem</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QEvent-class.html#DragMove">DragMove</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.QEvent-class.html">QEvent</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="QGIS-AIMS-Plugin.AIMSDataManager.AddressFactory.AddressResolutionFactory-class.html#DEF_REF">DEF_REF</a><br />
<span class="index-where">(in <a href="QGIS-AIMS-Plugin.AIMSDataManager.AddressFactory.AddressResolutionFactory-class.html">AddressResolutionFactory</a>)</span></td>
<td width="33%" class="link-index"><a href="qgis._core.QgsDataItem-class.html#Directory">Directory</a><br />
<span class="index-where">(in <a href="qgis._core.QgsDataItem-class.html">QgsDataItem</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.Qt-class.html#DragMoveCursor">DragMoveCursor</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.Qt-class.html">Qt</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="QGIS-AIMS-Plugin.AIMSDataManager.FeatureFactory.FeatureFactory-class.html#DEF_REF">DEF_REF</a><br />
<span class="index-where">(in <a href="QGIS-AIMS-Plugin.AIMSDataManager.FeatureFactory.FeatureFactory-class.html">FeatureFactory</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QFileDialog-class.html#DirectoryOnly">DirectoryOnly</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QFileDialog-class.html">QFileDialog</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QAbstractItemView-class.html#DragOnly">DragOnly</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QAbstractItemView-class.html">QAbstractItemView</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="QGIS-AIMS-Plugin.AIMSDataManager.GroupFactory.GroupChangeFactory-class.html#DEF_REF">DEF_REF</a><br />
<span class="index-where">(in <a href="QGIS-AIMS-Plugin.AIMSDataManager.GroupFactory.GroupChangeFactory-class.html">GroupChangeFactory</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QAbstractFileEngine-class.html#DirectoryType">DirectoryType</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.QAbstractFileEngine-class.html">QAbstractFileEngine</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QAbstractItemView-class.html#DragSelectingState">DragSelectingState</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QAbstractItemView-class.html">QAbstractItemView</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="QGIS-AIMS-Plugin.AIMSDataManager.GroupFactory.GroupFactory-class.html#DEF_REF">DEF_REF</a><br />
<span class="index-where">(in <a href="QGIS-AIMS-Plugin.AIMSDataManager.GroupFactory.GroupFactory-class.html">GroupFactory</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QChar-class.html#DirEN">DirEN</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.QChar-class.html">QChar</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QWidget-class.html#DrawChildren">DrawChildren</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QWidget-class.html">QWidget</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="QGIS-AIMS-Plugin.AIMSDataManager.GroupFactory.GroupResolutionFactory-class.html#DEF_REF">DEF_REF</a><br />
<span class="index-where">(in <a href="QGIS-AIMS-Plugin.AIMSDataManager.GroupFactory.GroupResolutionFactory-class.html">GroupResolutionFactory</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QChar-class.html#DirES">DirES</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.QChar-class.html">QChar</a>)</span></td>
<td width="33%" class="link-index"><a href="qgis._core.QgsMapSettings-class.html#DrawEditingInfo">DrawEditingInfo</a><br />
<span class="index-where">(in <a href="qgis._core.QgsMapSettings-class.html">QgsMapSettings</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="QGIS-AIMS-Plugin.AIMSDataManager.UserFactory.UserFactory-class.html#DEF_REF">DEF_REF</a><br />
<span class="index-where">(in <a href="QGIS-AIMS-Plugin.AIMSDataManager.UserFactory.UserFactory-class.html">UserFactory</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QChar-class.html#DirET">DirET</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.QChar-class.html">QChar</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.Qt-class.html#Drawer">Drawer</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.Qt-class.html">Qt</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QMessageBox-class.html#Default">Default</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QMessageBox-class.html">QMessageBox</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QChar-class.html#DirL">DirL</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.QChar-class.html">QChar</a>)</span></td>
<td width="33%" class="link-index"><a href="qgis._core.QgsRaster.DrawingStyle-class.html">DrawingStyle</a></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="qgis._gui.QgsRasterFormatSaveOptionsWidget-class.html#Default">Default</a><br />
<span class="index-where">(in <a href="qgis._gui.QgsRasterFormatSaveOptionsWidget-class.html">QgsRasterFormatSaveOptionsWidget</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QChar-class.html#DirLRE">DirLRE</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.QChar-class.html">QChar</a>)</span></td>
<td width="33%" class="link-index"><a href="qgis._core.QgsMapSettings-class.html#DrawLabeling">DrawLabeling</a><br />
<span class="index-where">(in <a href="qgis._core.QgsMapSettings-class.html">QgsMapSettings</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="qgis._core.QGis-class.html#DEFAULT_HIGHLIGHT_BUFFER_MM">DEFAULT_HIGHLIGHT_BUFFER_MM</a><br />
<span class="index-where">(in <a href="qgis._core.QGis-class.html">QGis</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QChar-class.html#DirLRO">DirLRO</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.QChar-class.html">QChar</a>)</span></td>
<td width="33%" class="link-index"><a href="qgis._core.QgsPalLabeling.DrawLabelType-class.html">DrawLabelType</a></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="qgis._core.QGis-class.html#DEFAULT_HIGHLIGHT_COLOR">DEFAULT_HIGHLIGHT_COLOR</a><br />
<span class="index-where">(in <a href="qgis._core.QGis-class.html">QGis</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QChar-class.html#DirNSM">DirNSM</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.QChar-class.html">QChar</a>)</span></td>
<td width="33%" class="link-index"><a href="qgis._core.QgsMapSettings-class.html#DrawSelection">DrawSelection</a><br />
<span class="index-where">(in <a href="qgis._core.QgsMapSettings-class.html">QgsMapSettings</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="qgis._core.QGis-class.html#DEFAULT_HIGHLIGHT_MIN_WIDTH_MM">DEFAULT_HIGHLIGHT_MIN_WIDTH_MM</a><br />
<span class="index-where">(in <a href="qgis._core.QGis-class.html">QGis</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QChar-class.html#DirON">DirON</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.QChar-class.html">QChar</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QWidget-class.html#DrawWindowBackground">DrawWindowBackground</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QWidget-class.html">QWidget</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="qgis._core.QGis-class.html#DEFAULT_IDENTIFY_RADIUS">DEFAULT_IDENTIFY_RADIUS</a><br />
<span class="index-where">(in <a href="qgis._core.QGis-class.html">QGis</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QChar-class.html#DirPDF">DirPDF</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.QChar-class.html">QChar</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QFileIconProvider-class.html#Drive">Drive</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QFileIconProvider-class.html">QFileIconProvider</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="QGIS-AIMS-Plugin.AimsUI.AimsClient.Gui.DictionaryList%27-module.html#DEFAULT_LINE_WIDTH">DEFAULT_LINE_WIDTH</a><br />
<span class="index-where">(in <a href="QGIS-AIMS-Plugin.AimsUI.AimsClient.Gui.DictionaryList%27-module.html">QGIS-AIMS-Plugin.AimsUI.AimsClient.Gui.DictionaryList'</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QChar-class.html#DirR">DirR</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.QChar-class.html">QChar</a>)</span></td>
<td width="33%" class="link-index"><a href="qgis._core.QgsVectorFileWriter.MetaData-class.html#driverOptions">driverOptions</a><br />
<span class="index-where">(in <a href="qgis._core.QgsVectorFileWriter.MetaData-class.html">MetaData</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="QGIS-AIMS-Plugin.AimsUI.AimsClient.Gui.DockWindow%27-module.html#DEFAULT_LINE_WIDTH">DEFAULT_LINE_WIDTH</a><br />
<span class="index-where">(in <a href="QGIS-AIMS-Plugin.AimsUI.AimsClient.Gui.DockWindow%27-module.html">QGIS-AIMS-Plugin.AimsUI.AimsClient.Gui.DockWindow'</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QChar-class.html#DirRLE">DirRLE</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.QChar-class.html">QChar</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QDir-class.html#Drives">Drives</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.QDir-class.html">QDir</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="QGIS-AIMS-Plugin.AimsUI.AimsClient.Gui.FeatureHighlighter%27-module.html#DEFAULT_LINE_WIDTH">DEFAULT_LINE_WIDTH</a><br />
<span class="index-where">(in <a href="QGIS-AIMS-Plugin.AimsUI.AimsClient.Gui.FeatureHighlighter%27-module.html">QGIS-AIMS-Plugin.AimsUI.AimsClient.Gui.FeatureHighlighter'</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QChar-class.html#DirRLO">DirRLO</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.QChar-class.html">QChar</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QEvent-class.html#Drop">Drop</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.QEvent-class.html">QEvent</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="qgis._core.QGis-class.html#DEFAULT_MAPTOPIXEL_THRESHOLD">DEFAULT_MAPTOPIXEL_THRESHOLD</a><br />
<span class="index-where">(in <a href="qgis._core.QGis-class.html">QGis</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QChar-class.html#DirS">DirS</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.QChar-class.html">QChar</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.Qt.DropAction-class.html">DropAction</a></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="QGIS-AIMS-Plugin.AimsUI.AimsClient.Gui.DictionaryList%27-module.html#DEFAULT_POINT_SIZE">DEFAULT_POINT_SIZE</a><br />
<span class="index-where">(in <a href="QGIS-AIMS-Plugin.AimsUI.AimsClient.Gui.DictionaryList%27-module.html">QGIS-AIMS-Plugin.AimsUI.AimsClient.Gui.DictionaryList'</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QDir-class.html#Dirs">Dirs</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.QDir-class.html">QDir</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.Qt.DropActions-class.html">DropActions</a></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="QGIS-AIMS-Plugin.AimsUI.AimsClient.Gui.DockWindow%27-module.html#DEFAULT_POINT_SIZE">DEFAULT_POINT_SIZE</a><br />
<span class="index-where">(in <a href="QGIS-AIMS-Plugin.AimsUI.AimsClient.Gui.DockWindow%27-module.html">QGIS-AIMS-Plugin.AimsUI.AimsClient.Gui.DockWindow'</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QDir-class.html#DirsFirst">DirsFirst</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.QDir-class.html">QDir</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QTreeWidgetItemIterator-class.html#DropDisabled">DropDisabled</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QTreeWidgetItemIterator-class.html">QTreeWidgetItemIterator</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="QGIS-AIMS-Plugin.AimsUI.AimsClient.Gui.FeatureHighlighter%27-module.html#DEFAULT_POINT_SIZE">DEFAULT_POINT_SIZE</a><br />
<span class="index-where">(in <a href="QGIS-AIMS-Plugin.AimsUI.AimsClient.Gui.FeatureHighlighter%27-module.html">QGIS-AIMS-Plugin.AimsUI.AimsClient.Gui.FeatureHighlighter'</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QDir-class.html#DirsLast">DirsLast</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.QDir-class.html">QDir</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QTreeWidgetItemIterator-class.html#DropEnabled">DropEnabled</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QTreeWidgetItemIterator-class.html">QTreeWidgetItemIterator</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="qgis._core.QGis-class.html#DEFAULT_SEARCH_RADIUS_MM">DEFAULT_SEARCH_RADIUS_MM</a><br />
<span class="index-where">(in <a href="qgis._core.QGis-class.html">QGis</a>)</span></td>
<td width="33%" class="link-index"><a href="qgis._core.QgsPalLayerSettings-class.html#DirSymbDraw">DirSymbDraw</a><br />
<span class="index-where">(in <a href="qgis._core.QgsPalLayerSettings-class.html">QgsPalLayerSettings</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QAbstractItemView.DropIndicatorPosition-class.html">DropIndicatorPosition</a></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="QGIS-AIMS-Plugin.AimsUI.AimsClient.Gui.DictionaryList%27-module.html#DEFAULT_SEGMENT_EPSILON">DEFAULT_SEGMENT_EPSILON</a><br />
<span class="index-where">(in <a href="QGIS-AIMS-Plugin.AimsUI.AimsClient.Gui.DictionaryList%27-module.html">QGIS-AIMS-Plugin.AimsUI.AimsClient.Gui.DictionaryList'</a>)</span></td>
<td width="33%" class="link-index"><a href="qgis._core.QgsPalLayerSettings-class.html#DirSymbLeft">DirSymbLeft</a><br />
<span class="index-where">(in <a href="qgis._core.QgsPalLayerSettings-class.html">QgsPalLayerSettings</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QAbstractItemView-class.html#DropOnly">DropOnly</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QAbstractItemView-class.html">QAbstractItemView</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="QGIS-AIMS-Plugin.AimsUI.AimsClient.Gui.DockWindow%27-module.html#DEFAULT_SEGMENT_EPSILON">DEFAULT_SEGMENT_EPSILON</a><br />
<span class="index-where">(in <a href="QGIS-AIMS-Plugin.AimsUI.AimsClient.Gui.DockWindow%27-module.html">QGIS-AIMS-Plugin.AimsUI.AimsClient.Gui.DockWindow'</a>)</span></td>
<td width="33%" class="link-index"><a href="qgis._core.QgsPalLayerSettings-class.html#DirSymbPlacement">DirSymbPlacement</a><br />
<span class="index-where">(in <a href="qgis._core.QgsPalLayerSettings-class.html">QgsPalLayerSettings</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QXmlStreamReader-class.html#DTD">DTD</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.QXmlStreamReader-class.html">QXmlStreamReader</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="QGIS-AIMS-Plugin.AimsUI.AimsClient.Gui.FeatureHighlighter%27-module.html#DEFAULT_SEGMENT_EPSILON">DEFAULT_SEGMENT_EPSILON</a><br />
<span class="index-where">(in <a href="QGIS-AIMS-Plugin.AimsUI.AimsClient.Gui.FeatureHighlighter%27-module.html">QGIS-AIMS-Plugin.AimsUI.AimsClient.Gui.FeatureHighlighter'</a>)</span></td>
<td width="33%" class="link-index"><a href="qgis._core.QgsPalLayerSettings-class.html#DirSymbReverse">DirSymbReverse</a><br />
<span class="index-where">(in <a href="qgis._core.QgsPalLayerSettings-class.html">QgsPalLayerSettings</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QChar-class.html#Dual">Dual</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.QChar-class.html">QChar</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QStyleOptionButton-class.html#DefaultButton">DefaultButton</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QStyleOptionButton-class.html">QStyleOptionButton</a>)</span></td>
<td width="33%" class="link-index"><a href="qgis._core.QgsPalLayerSettings-class.html#DirSymbRight">DirSymbRight</a><br />
<span class="index-where">(in <a href="qgis._core.QgsPalLayerSettings-class.html">QgsPalLayerSettings</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QLocale-class.html#Duala">Duala</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.QLocale-class.html">QLocale</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QCoreApplication-class.html#DefaultCodec">DefaultCodec</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.QCoreApplication-class.html">QCoreApplication</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QPaintEngine-class.html#DirtyBackground">DirtyBackground</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QPaintEngine-class.html">QPaintEngine</a>)</span></td>
<td width="33%" class="link-index"><a href="QGIS-AIMS-Plugin.AIMSDataManager.DataSync.DataSync-class.html#duinst">duinst</a><br />
<span class="index-where">(in <a href="QGIS-AIMS-Plugin.AIMSDataManager.DataSync.DataSync-class.html">DataSync</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.Qt-class.html#DefaultContextMenu">DefaultContextMenu</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.Qt-class.html">Qt</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QPaintEngine-class.html#DirtyBackgroundMode">DirtyBackgroundMode</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QPaintEngine-class.html">QPaintEngine</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QPrinter-class.html#DuplexAuto">DuplexAuto</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QPrinter-class.html">QPrinter</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QTextCodec-class.html#DefaultConversion">DefaultConversion</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.QTextCodec-class.html">QTextCodec</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QPaintEngine-class.html#DirtyBrush">DirtyBrush</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QPaintEngine-class.html">QPaintEngine</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QPrinter-class.html#DuplexLongSide">DuplexLongSide</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QPrinter-class.html">QPrinter</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="qgis._gui.QgsProjectionSelectionWidget-class.html#DefaultCrs">DefaultCrs</a><br />
<span class="index-where">(in <a href="qgis._gui.QgsProjectionSelectionWidget-class.html">QgsProjectionSelectionWidget</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QPaintEngine-class.html#DirtyBrushOrigin">DirtyBrushOrigin</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QPaintEngine-class.html">QPaintEngine</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QPrinter.DuplexMode-class.html">DuplexMode</a></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QStyleOptionMenuItem-class.html#DefaultItem">DefaultItem</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QStyleOptionMenuItem-class.html">QStyleOptionMenuItem</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QPaintEngine-class.html#DirtyClipEnabled">DirtyClipEnabled</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QPaintEngine-class.html">QPaintEngine</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QPrinter-class.html#DuplexNone">DuplexNone</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QPrinter-class.html">QPrinter</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.Qt-class.html#DefaultLocaleLongDate">DefaultLocaleLongDate</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.Qt-class.html">Qt</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QPaintEngine-class.html#DirtyClipPath">DirtyClipPath</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QPaintEngine-class.html">QPaintEngine</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QPrinter-class.html#DuplexShortSide">DuplexShortSide</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QPrinter-class.html">QPrinter</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.Qt-class.html#DefaultLocaleShortDate">DefaultLocaleShortDate</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.Qt-class.html">Qt</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QPaintEngine-class.html#DirtyClipRegion">DirtyClipRegion</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QPaintEngine-class.html">QPaintEngine</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QLocale-class.html#Dutch">Dutch</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.QLocale-class.html">QLocale</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="qgis._core.QgsComposerArrow-class.html#DefaultMarker">DefaultMarker</a><br />
<span class="index-where">(in <a href="qgis._core.QgsComposerArrow-class.html">QgsComposerArrow</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QPaintEngine-class.html#DirtyCompositionMode">DirtyCompositionMode</a><br />
<span class="index-where">(in <a href="PyQt4.QtGui.QPaintEngine-class.html">QPaintEngine</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QEvent-class.html#DynamicPropertyChange">DynamicPropertyChange</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.QEvent-class.html">QEvent</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="PyQt4.QtCore.QAbstractFileEngine-class.html#DefaultName">DefaultName</a><br />
<span class="index-where">(in <a href="PyQt4.QtCore.QAbstractFileEngine-class.html">QAbstractFileEngine</a>)</span></td>
<td width="33%" class="link-index"><a href="PyQt4.QtGui.QPaintEngine.DirtyFlag-class.html">DirtyFlag</a></td>
<td width="33%" class="link-index"> </td>
</tr>
</table>
</td></tr>
</table>
<br /><br /><!-- ==================== NAVIGATION BAR ==================== -->
<table class="navbar" border="0" width="100%" cellpadding="0"
bgcolor="#a0c0ff" cellspacing="0">
<tr valign="middle">
<!-- Home link -->
<th> <a
href="QGIS-AIMS-Plugin-module.html">Home</a> </th>
<!-- Tree link -->
<th> <a
href="module-tree.html">Trees</a> </th>
<!-- Index link -->
<th bgcolor="#70b0f0" class="navbar-select"
> Indices </th>
<!-- Help link -->
<th> <a
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" class="footer">
Generated by Epydoc 3.0.1 on Tue Jun 14 13:29:11 2016
</td>
<td align="right" class="footer">
<a target="mainFrame" href="http://epydoc.sourceforge.net"
>http://epydoc.sourceforge.net</a>
</td>
</tr>
</table>
<script type="text/javascript">
<!--
// Private objects are initially displayed (because if
// javascript is turned off then we want them to be
// visible); but by default, we want to hide them. So hide
// them unless we have a cookie that says to show them.
checkCookie();
// -->
</script>
</body>
</html>
|
examples/testbed.html | ejucovy/xinha | <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<!--------------------------------------:noTabs=true:tabSize=2:indentSize=2:--
-- Xinha example usage. This file shows how a developer might make use of
-- Xinha, it forms the primary example file for the entire Xinha project.
-- This file can be copied and used as a template for development by the
-- end developer who should simply removed the area indicated at the bottom
-- of the file to remove the auto-example-generating code and allow for the
-- use of the file as a boilerplate.
--
-- $HeadURL$
-- $LastChangedDate$
-- $LastChangedRevision$
-- $LastChangedBy$
--------------------------------------------------------------------------->
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Example of Xinha</title>
<link rel="stylesheet" href="files/full_example.css" />
<script type="text/javascript">
// You must set _editor_url to the URL (including trailing slash) where
// where xinha is installed, it's highly recommended to use an absolute URL
// eg: _editor_url = "/path/to/xinha/";
// You may try a relative URL if you wish]
// eg: _editor_url = "../";
// in this example we do a little regular expression to find the absolute path.
_editor_url = document.location.href.replace(/examples\/.*/, '')
_editor_lang = "en"; // And the language we need to use in the editor.
</script>
<!-- Load up the actual editor core -->
<script type="text/javascript" src="../XinhaCore.js"></script>
<script type="text/javascript">
xinha_editors = null;
xinha_init = null;
xinha_config = null;
xinha_plugins = null;
// This contains the names of textareas we will make into Xinha editors
xinha_init = xinha_init ? xinha_init : function()
{
/** STEP 1 ***************************************************************
* First, what are the plugins you will be using in the editors on this
* page. List all the plugins you will need, even if not all the editors
* will use all the plugins.
************************************************************************/
xinha_plugins = xinha_plugins ? xinha_plugins :
[
'CharacterMap', 'SpellChecker', 'Linker', 'ContextMenu'
];
// THIS BIT OF JAVASCRIPT LOADS THE PLUGINS, NO TOUCHING :)
if(!Xinha.loadPlugins(xinha_plugins, xinha_init)) return;
/** STEP 2 ***************************************************************
* Now, what are the names of the textareas you will be turning into
* editors?
************************************************************************/
xinha_editors = xinha_editors ? xinha_editors :
[
'myTextArea'
];
/** STEP 3 ***************************************************************
* We create a default configuration to be used by all the editors.
* If you wish to configure some of the editors differently this will be
* done in step 4.
*
* If you want to modify the default config you might do something like this.
*
* xinha_config = new Xinha.Config();
* xinha_config.width = 640;
* xinha_config.height = 420;
*
*************************************************************************/
xinha_config = xinha_config ? xinha_config : new Xinha.Config();
xinha_config.fullPage = true;
xinha_config.CharacterMap.mode = 'panel';
xinha_config.ContextMenu.customHooks = { 'a': [ ['Label', function() { alert('Action'); }, 'Tooltip', '/xinha/images/ed_copy.gif' ] ] }
/*
// We can load an external stylesheet like this - NOTE : YOU MUST GIVE AN ABSOLUTE URL
// otherwise it won't work!
xinha_config.stylistLoadStylesheet(document.location.href.replace(/[^\/]*\.html/, 'files/stylist.css'));
// Or we can load styles directly
xinha_config.stylistLoadStyles('p.red_text { color:red }');
// If you want to provide "friendly" names you can do so like
// (you can do this for stylistLoadStylesheet as well)
xinha_config.stylistLoadStyles('p.pink_text { color:pink }', {'p.pink_text' : 'Pretty Pink'});
*/
/** STEP 3 ***************************************************************
* We first create editors for the textareas.
*
* You can do this in two ways, either
*
* xinha_editors = Xinha.makeEditors(xinha_editors, xinha_config, xinha_plugins);
*
* if you want all the editor objects to use the same set of plugins, OR;
*
* xinha_editors = Xinha.makeEditors(xinha_editors, xinha_config);
* xinha_editors['myTextArea'].registerPlugins(['Stylist']);
* xinha_editors['anotherOne'].registerPlugins(['CSS','SuperClean']);
*
* if you want to use a different set of plugins for one or more of the
* editors.
************************************************************************/
xinha_editors = Xinha.makeEditors(xinha_editors, xinha_config, xinha_plugins);
/** STEP 4 ***************************************************************
* If you want to change the configuration variables of any of the
* editors, this is the place to do that, for example you might want to
* change the width and height of one of the editors, like this...
*
* xinha_editors.myTextArea.config.width = 640;
* xinha_editors.myTextArea.config.height = 480;
*
************************************************************************/
/** STEP 5 ***************************************************************
* Finally we "start" the editors, this turns the textareas into
* Xinha editors.
************************************************************************/
Xinha.startEditors(xinha_editors);
window.onload = null;
}
window.onload = xinha_init;
</script>
</head>
<body>
<form action="javascript:void(0);" id="editors_here" onsubmit="alert(this.myTextArea.value);">
<div>
<textarea id="myTextArea" name="myTextArea" style="width:100%;height:320px;">
<html>
<head>
<title>Hello</title>
<style type="text/css">
li { color:red; }
</style>
</head>
<body><span style="color:purple">
<img src="../images/xinha_logo.gif" usemap="#m1">
<map name="m1">
<area shape="rect" coords="137,101,255,124" href="http://www.mydomain.com">
</map>
<p>
Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
Aliquam et tellus vitae justo varius placerat. Suspendisse iaculis
velit semper dolor. Donec gravida tincidunt mi. Curabitur tristique
ante elementum turpis. <span style="color:green">Aliquam </span> nisl. Nulla posuere neque non
tellus. Morbi vel nibh. <font face="Arial"><font color="#009933">Cum sociis natoque</font></font> penatibus et magnis dis
parturient montes, nascetur ridiculus mus. Nam nec wisi. In wisi.
Curabitur pharetra bibendum lectus.
</p>
<ul>
<li style="color:green"> Phasellus et massa sed diam viverra semper. </li>
<li> Mauris tincidunt felis in odio. </li>
<li> Nulla placerat nunc ut pede. </li>
<li> Vivamus ultrices mi sit amet urna. </li>
<li> Quisque sed augue quis nunc laoreet volutpat.</li>
<li> Nunc sit amet metus in tortor semper mattis. </li>
</ul>
</span></body>
</html>
</textarea>
<input type="submit" /> <input type="reset" />
</div>
</form>
<script type="text/javascript">
document.write(document.compatMode);
</script>
<div>
<a href="#" onclick="xinha_editors.myTextArea.hidePanels();">Hide</a>
<a href="#" onclick="xinha_editors.myTextArea.showPanels();">Show</a>
</div>
</body>
</html>
|
cagrid/Software/portal/cagrid-portal/portals/liferay/src/themes/cagrid-minimal/css/layout.css | NCIP/cagrid | /* This CSS controls the column layout. It is not recommended that you change this file. */
/* ---------- Wrapper ---------- */
#content-wrapper #layout-grid {
border-collapse: collapse;
width: 100%;
}
#layout-grid .lfr-column {
padding: 5px;
}
/* ---------- Column widths ---------- */
#layout-grid.dragging .lfr-column {
height: 100px;
min-height: 100px;
}
.lfr-column.ten {
width: 10%;
}
.lfr-column.twenty {
width: 20%;
}
.lfr-column.thirty {
width: 30%;
}
.lfr-column.forty {
width: 40%;
}
.lfr-column.fifty {
width: 50%;
}
.lfr-column.sixty {
width: 60%;
}
.lfr-column.seventy {
width: 70%;
}
.lfr-column.eighty {
width: 80%;
}
.lfr-column.ninety {
width: 90%;
}
/* ---------- 1 column ---------- */
.columns-1 #column-1, .columns-max #column-1 {
display: table;
padding-left: 0;
padding-right: 0;
width: 100%;
}
/* ---------- 2 columns ---------- */
.columns-2 #column-1 {
padding-left: 0;
}
.columns-2 #column-2 {
padding-right: 0;
}
/* ---------- 3 columns ---------- */
.columns-3 #column-1 {
padding-left: 0;
}
.columns-3 #column-2 {
}
.columns-3 #column-3 {
padding-right: 0;
}
/* ---------- 1/2/1 ---------- */
.columns-1-2-1 #column-1, .columns-1-2-1 #column-4 {
padding-left: 0;
padding-right: 0;
}
.columns-1-2-1 #column-2 {
padding-left: 0;
}
.columns-1-2-1 #column-3 {
padding-right: 0;
}
/* ---------- 2/2 ---------- */
.columns-2-2 #column-1, .columns-2-2 #column-2 {
padding-left: 0;
}
.columns-2-2 #column-4 {
padding-right: 0;
}
/* ---------- Freeform ---------- */
.freeform .lfr-column {
position: relative;
}
.columns-2-2 #column-4 {
padding-right: 0;
} |
doc/html/search/all_64.html | mralexgray/gvoice | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html><head><title></title>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<link rel="stylesheet" type="text/css" href="search.css"/>
<script type="text/javascript" src="search.js"></script>
</head>
<body class="SRPage">
<div id="SRIndex">
<div class="SRStatus" id="Loading">Loading...</div>
<div class="SRResult" id="SR_defaultgreetingid">
<div class="SREntry">
<a id="Item0" onkeydown="return searchResults.Nav(event,0)" onkeypress="return searchResults.Nav(event,0)" onkeyup="return searchResults.Nav(event,0)" class="SRSymbol" href="javascript:searchResults.Toggle('SR_defaultgreetingid')">defaultGreetingId</a>
<div class="SRChildren">
<a id="Item0_c0" onkeydown="return searchResults.NavChild(event,0,0)" onkeypress="return searchResults.NavChild(event,0,0)" onkeyup="return searchResults.NavChild(event,0,0)" class="SRScope" href="../interface_g_voice.html#acf0806c0afe6d3c226468ef2ac3ff992" target="_parent">GVoice::defaultGreetingId()</a>
<a id="Item0_c1" onkeydown="return searchResults.NavChild(event,0,1)" onkeypress="return searchResults.NavChild(event,0,1)" onkeyup="return searchResults.NavChild(event,0,1)" class="SRScope" href="../interface_g_voice_settings.html#a52b9aff996b19a965985e0d1787d8c48" target="_parent">GVoiceSettings::defaultGreetingId()</a>
</div>
</div>
</div>
<div class="SRResult" id="SR_didinfos">
<div class="SREntry">
<a id="Item1" onkeydown="return searchResults.Nav(event,1)" onkeypress="return searchResults.Nav(event,1)" onkeyup="return searchResults.Nav(event,1)" class="SRSymbol" href="../interface_g_voice_settings.html#a44ab9c0a5a2a543481589e9b0af27d1c" target="_parent">didInfos</a>
<span class="SRScope">GVoiceSettings</span>
</div>
</div>
<div class="SRResult" id="SR_directconnect">
<div class="SREntry">
<a id="Item2" onkeydown="return searchResults.Nav(event,2)" onkeypress="return searchResults.Nav(event,2)" onkeyup="return searchResults.Nav(event,2)" class="SRSymbol" href="javascript:searchResults.Toggle('SR_directconnect')">directConnect</a>
<div class="SRChildren">
<a id="Item2_c0" onkeydown="return searchResults.NavChild(event,2,0)" onkeypress="return searchResults.NavChild(event,2,0)" onkeyup="return searchResults.NavChild(event,2,0)" class="SRScope" href="../interface_g_voice_group.html#a3f0f7068e734774e89b7b11f442cd81d" target="_parent">GVoiceGroup::directConnect()</a>
<a id="Item2_c1" onkeydown="return searchResults.NavChild(event,2,1)" onkeypress="return searchResults.NavChild(event,2,1)" onkeyup="return searchResults.NavChild(event,2,1)" class="SRScope" href="../interface_g_voice_settings.html#a5ed6cfd87d78ded33acaeb3e134f5265" target="_parent">GVoiceSettings::directConnect()</a>
</div>
</div>
</div>
<div class="SRResult" id="SR_directconnectenabled">
<div class="SREntry">
<a id="Item3" onkeydown="return searchResults.Nav(event,3)" onkeypress="return searchResults.Nav(event,3)" onkeyup="return searchResults.Nav(event,3)" class="SRSymbol" href="../interface_g_voice.html#a0a1acf6b9f5b12f3c804f6a4be1bd58e" target="_parent">directConnectEnabled</a>
<span class="SRScope">GVoice</span>
</div>
</div>
<div class="SRResult" id="SR_disabledforwardingids">
<div class="SREntry">
<a id="Item4" onkeydown="return searchResults.Nav(event,4)" onkeypress="return searchResults.Nav(event,4)" onkeyup="return searchResults.Nav(event,4)" class="SRSymbol" href="../interface_g_voice_group.html#a136a7d182d7d4b653a20893851732985" target="_parent">disabledForwardingIds</a>
<span class="SRScope">GVoiceGroup</span>
</div>
</div>
<div class="SRResult" id="SR_disabledids">
<div class="SREntry">
<a id="Item5" onkeydown="return searchResults.Nav(event,5)" onkeypress="return searchResults.Nav(event,5)" onkeyup="return searchResults.Nav(event,5)" class="SRSymbol" href="../interface_g_voice_settings.html#a443d82e7bd3c51f64042ebbdf36a26e9" target="_parent">disabledIds</a>
<span class="SRScope">GVoiceSettings</span>
</div>
</div>
<div class="SRResult" id="SR_donotdisturb">
<div class="SREntry">
<a id="Item6" onkeydown="return searchResults.Nav(event,6)" onkeypress="return searchResults.Nav(event,6)" onkeyup="return searchResults.Nav(event,6)" class="SRSymbol" href="../interface_g_voice_settings.html#ad3f17df2252f339a0404caab2326957c" target="_parent">doNotDisturb</a>
<span class="SRScope">GVoiceSettings</span>
</div>
</div>
<div class="SRResult" id="SR_donotdisturbenabled">
<div class="SREntry">
<a id="Item7" onkeydown="return searchResults.Nav(event,7)" onkeypress="return searchResults.Nav(event,7)" onkeyup="return searchResults.Nav(event,7)" class="SRSymbol" href="../interface_g_voice.html#a8d8728b04620414a5131c50a520f6ef2" target="_parent">doNotDisturbEnabled</a>
<span class="SRScope">GVoice</span>
</div>
</div>
<div class="SRResult" id="SR_">
<div class="SREntry">
<a id="Item8" onkeydown="return searchResults.Nav(event,8)" onkeypress="return searchResults.Nav(event,8)" onkeyup="return searchResults.Nav(event,8)" class="SRSymbol" href="../interface_g_voice.html#a5ecc312ac7a1492ba8aff33ff71883e1" target="_parent"></a>
<span class="SRScope">GVoice</span>
</div>
</div>
<div class="SRResult" id="SR_">
<div class="SREntry">
<a id="Item9" onkeydown="return searchResults.Nav(event,9)" onkeypress="return searchResults.Nav(event,9)" onkeyup="return searchResults.Nav(event,9)" class="SRSymbol" href="../interface_g_voice.html#aeb104f29ead385518706a3d916f59ae3" target="_parent"></a>
<span class="SRScope">GVoice</span>
</div>
</div>
<div class="SRStatus" id="Searching">Searching...</div>
<div class="SRStatus" id="NoMatches">No Matches</div>
<script type="text/javascript"><!--
document.getElementById("Loading").style.display="none";
document.getElementById("NoMatches").style.display="none";
var searchResults = new SearchResults("searchResults");
searchResults.Search();
--></script>
</div>
</body>
</html>
|
pr/ios_logo.html | abortz/saycbridge | <!DOCTYPE html>
<style>
body {
width: 512px;
margin: 8px;
}
#logo {
height: 512px;
background: -webkit-linear-gradient(top, #f9f9f9 0%,#f0f0f9 47%,#eef 100%);
}
#spade {
font-family: Hiragino Maru Gothic Pro;
font-size: 500px;
text-shadow: 0px 3px 3px gray;
position: relative;
top: -24%;
left: 1%;
color: #223;
}
</style>
<div id='logo'>
<div id='spade'>♠</div>
</div>
<div id="max_size">
<div id="recommended_size">
</div>
</div>
|
menu3/screen.css | chemouna/yui-examples | body,td,th,font{ font-family:verdana,arial,sans-serif; font-size:11px; }
ul,ol{ margin-top:2px; margin-bottom:2px; padding-top:2px; padding-bottom:2px; }
h1{ font-family:arial,sans-serif; font-weight:normal; font-size:25px; margin:0; }
h2{ font-family:arial,sans-serif; font-weight:normal; font-size:14px; margin:0; }
h3{ font-family:arial,sans-serif; font-weight:bold; font-size:22px; }
h4{ font-family:arial,sans-serif; font-size:18px; }
p.fnt sup{ vertical-align:top; font-size:8px; }
td.blbg{ height:22px; }
td.upper-masthead-divider{ height:17px; }
#v14-body-table p#subtitle{ font-family:verdana,arial,sans-serif; font-weight:bold; font-size:11px; margin:0; padding:2px 0px 0px 0px; }
#v14-body-table p#subtitle em{ font-style:normal; }
#v14-h-tasks table td,
#v14-h-tasks table th,
table.data-table-1 td,
table.data-table-1 th,
table.data-table-2 td,
table.data-table-2 th{ font-size:10px; padding-bottom:4px; }
table.data-table-3 td,
table.data-table-3 th{ font-size:11px; padding-bottom:4px; }
table.data-table-3 td a.fbox:link,
table.data-table-3 td a.fbox:visited,
table.data-table-3 td a.fbox:hover{ font-size:11px; }
#v14-pop-mast h1{ font-family:arial,helvetica,sans-serif; font-size:16px; font-weight:normal; line-height:1.1em; margin:0; padding-right:6px; }
.left-nav-child-highlight img,
.left-nav-child img,
.rlinks img{ float:right; margin-right:0px; }
td.left-nav,
td.left-nav-overview,
th.left-nav-overview,
tr.left-nav-child td,
td.left-nav-highlight,
tr.left-nav-child-highlight td{ padding-top:3px; padding-bottom:4px; }
td.left-nav,
td.left-nav-overview,
th.left-nav-overview,
td.left-nav-highlight{ padding-left:4px; padding-right:5px;}
tr.left-nav-child td,
tr.left-nav-child-highlight td{ padding-right:4px; }
td.related{ padding-left:4px; padding-right:5px; padding-bottom:3px; }
tr.rlinks td{ padding-bottom:2px; padding-right:4px; }
.bullet-spacer{ padding-right:4px; }
img.pbl{ margin-top:7px; margin-bottom:10px; }
tr.bullet-list td{ vertical-align:top; padding:0px 0px 3px 0px; }
tr.bullet-list td img{ float:right; padding-right:4px; }
tr.no-padding td img{ padding-right:0px; }
.mbbg{ background:#000 url(//www.ibm.com/i/v14/t/masthead-bg.gif) repeat-x; }
.masthead-phone{ font-weight:bold; }
td.lbg,
td.hil,
.mbg{ font-weight:bold; }
.input{ width:130px; }
a.bs:link,
a.bs:visited,
a.bs:hover{ font-family:verdana,arial,sans-serif; font-size:9px; }
.spacer,
.smgraytext,
.small,
.cty-tou-div,
.country,
a.ur-link:link,
a.ur-link:visited,
a.ur-link:hover,
.masthead-phone,
.input,
.input-local,
a.rlinks:link,
a.rlinks:visited,
a.rlinks:hover,
a.rlinks-red:link,
a.rlinks-red:visited,
a.rlinks-red:hover,
a.highlight:link,
a.highlight:visited,
a.highlight:hover,
a.nav:link,
a.nav:visited,
a.nav:hover,
a.left-nav-child:link,
a.left-nav-child:visited,
a.left-nav-child:hover,
.divider,
.bct,
.bctl,
a.smallplainlink:link,
a.smallplainlink:visited,
a.smallplainlink:hover,
a.close:link,
a.close:visited,
a.close:hover,
.fnt{ font-family:verdana,arial,sans-serif; font-size:10px; }
b.related,
a.left-nav:link,
a.left-nav:visited,
a.left-nav:hover,
a.left-nav-overview:link,
a.left-nav-overview:visited,
a.left-nav-overview:hover,
a.mainlink:link,
a.mainlink:visited,
a.mainlink:hover,
a.masthead-mainlink:link,
a.masthead-mainlink:visited,
a.masthead-mainlink:hover,
.small-price,
a.v14-tab-link-selected:link,
a.v14-tab-link-selected:visited,
a.v14-tab-link-selected:hover,
a.v14-tab-link-unselected:link,
a.v14-tab-link-unselected:visited,
a.v14-tab-link-unselected:hover,
td.v14-header-1-small,
th.v14-header-1-small,
td.v14-header-2-small,
th.v14-header-2-small,
td.v14-header-3-small,
th.v14-header-3-small,
td.v14-header-4-small,
th.v14-header-4-small{ font-family:verdana,arial,sans-serif; font-weight:bold; font-size:10px; }
.sth,
.iform,
.iformwh,
a.v14-text-tab-unselect-link:link,
a.v14-text-tab-unselect-link:visited,
a.v14-text-tab-unselect-link:hover,
a.tablink:link,
a.tablink:visited,
a.tablink:hover,
a.tablinkblue:link,
a.tablinkblue:visited,
a.tablinkblue:hover,
a.toclink:link,
a.toclink:visited,
a.toclink:hover,
a.fbox:link,
a.fbox:visited,
a.fbox:hover{ font-family:verdana,arial,sans-serif; font-size:11px; }
.medbluetitlebar,
.medgraytitlebar,
.lightgraytitlebar,
.whitetitlebar,
a.tbmainlink:link,
a.tbmainlink:visited,
a.tbmainlink:hover,
a.texttabselectlink:link,
a.texttabselectlink:visited,
a.texttabselectlink:hover,
a.tocselectlink:link,
a.tocselectlink:visited,
a.tocselectlink:hover,
.tblue,
.tdblue,
.tgray,
.tgreen,
.price,
td.v14-header-1,
th.v14-header-1,
td.v14-header-2,
th.v14-header-2,
td.v14-header-3,
th.v14-header-3,
td.v14-header-4,
th.v14-header-4,
td.v14-header-5,
th.v14-header-5,
a.v14-text-tab-select-link:link,
a.v14-text-tab-select-link:visited,
a.v14-text-tab-select-link:hover{ font-family:verdana,arial,sans-serif; font-weight:bold; font-size:11px; }
table.data-table-1 caption em,
table.data-table-2 caption em,
table.data-table-3 caption em{ font-family:verdana,arial,sans-serif; font-style:normal; font-weight:bold; font-size:11px; }
.greytextbld,
.hdgd,
.mdgd{ font-family:verdana,arial,sans-serif; font-weight:bold; font-size:12px; }
.mstagline{ font-family:verdana,arial,sans-serif; font-weight:bold; font-size:13px; }
a.parent:link,
a.parent:visited,
a.parent:hover{ font-family:verdana,arial,sans-serif; font-size:10px; vertical-align:top; }
/* NS6 */
body > table:first-child td img{ display:block; }
img.display-img{ display:block; }
/* NS6 */
.title1{ font-family:arial,sans-serif; font-size:25px; }
.lggraytitle{ font-size:24px; }
.tvgray{ font-family:verdana,arial,sans-serif; font-weight:bold; }
.title{ font-family:arial,sans-serif; font-size:25px; }
.subtitle{ font-family:arial,sans-serif; font-size:15px; }
.boldtitle{ font-family:"Arial Black",arial,sans-serif; font-size:24px; }
.smalltitle,
#v14-body-table p#newstitle em{ font-family:arial,sans-serif; font-style:normal; font-weight:bold; font-size:15px; }
.pagesubtitle{ font-family:arial,sans-serif; font-size:15px; line-height:18px; }
.pagetitle{ font-family:"Arial Black",arial,sans-serif; font-size:24px; line-height:24px; }
.popup_title{ font-family:arial,sans-serif; font-size:16px; }
td.v14-header-1-small,
th.v14-header-1-small,
td.v14-header-2-small,
th.v14-header-2-small{ padding-top:4px; padding-bottom:4px; }
td.v14-header-3-small,
th.v14-header-3-small,
td.v14-header-4-small,
th.v14-header-4-small,
td.v14-header-5,
th.v14-header-5{ padding-top:3px; padding-bottom:3px; }
td.v14-header-1,
th.v14-header-1,
td.v14-header-2,
th.v14-header-2,
td.v14-header-3,
th.v14-header-3,
td.v14-header-4,
th.v14-header-4{ padding-top:3px; padding-bottom:4px; }
td.v14-header-1,
th.v14-header-1,
td.v14-header-1-small,
th.v14-header-1-small,
td.v14-header-2,
th.v14-header-2,
td.v14-header-2-small,
th.v14-header-2-small,
td.v14-header-3,
th.v14-header-3,
td.v14-header-4,
th.v14-header-4{ padding-left:6px; }
td.v14-header-3-small,
th.v14-header-3-small,
td.v14-header-4-small,
th.v14-header-4-small,
td.v14-header-5,
th.v14-header-5{ padding-left:5px; }
td.gradient_bar { padding-top:2px; padding-bottom:3px; padding-left:6px; }
.imgpaddingright { padding-right:6px; }
.imgpaddingtop { padding-top:6px; }
#v14-body-table p{ padding-bottom:8px; padding-top:5px; margin-top:0px; margin-bottom:0px; }
table.v14-gray-table-border{ border:1px solid #ccc; border-top:0px; }
table.v14-gray-table-border p{ padding:5px 5px 5px 5px; }
table.v14-gray-table-border table{ margin-left:5px; margin-right:5px; }
td.no-padding table{ padding:0px 0px 0px 0px; margin:0px 0px 0px 0px; }
td.no-padding table td p{ padding:0px 0px 0px 0px; margin:0px 0px 0px 0px; }
td.left-nav-spacer{ vertical-align:top; height:22px; }
td.left-nav-spacer img{padding-top:4px;}
* html td.left-nav-spacer img{padding-top:3px;}
tr.left-nav-spacer td{ vertical-align:top; padding-top:4px; padding-bottom:4px; }
table.v14-list-spacing td{ padding-top:2px; padding-bottom:3px; }
table.v14-list-spac-wbg-no td{ padding-top:1px; padding-bottom:5px; }
table.v14-list-spac-wbg-toc td{ padding-top:3px; padding-bottom:3px; }
table.v14-list-spac-wbg-no td,
td.v14-graphic-tab-lblue-table td{ padding-top:3px; }
table.v14-list-spac-wbg-toc tr.bullet-list td,
table.v14-list-spac-wbg-no tr.bullet-list td,
table.v14-list-spacing tr.bullet-list td{ padding-top:0px; padding-bottom:6px; }
.esbp{ padding-bottom:8px; }
.ipt{ padding-top:4px; }
.gbp{ padding-top:5px; padding-bottom:9px; }
.spl{ padding-left:5px; }
td.npl p{ padding-left:0px; }
td.espl p{ padding-left:9px !important; }
td.npb p{ padding-bottom:0px !important; }
td.nlbp p{ padding-left:0px !important; padding-bottom:0px !important; }
td.iltbp{ padding-left:7px; padding-top:8px; padding-bottom:8px; }
td.ntb p{ font-size:11px; }
.imgleft{ float:left; padding:7px 5px 0px 0px; }
table.v14-gray-table-border .imgleft{ padding-left:5px; }
td.v14-header-1-small h2{ font-family:verdana,arial,sans-serif; font-weight:bold; font-size:10px; }
td.text-tab-link-section{ line-height:1.6em; }
td.inc-prof {padding-top:1px;}
.shrinky {
border:#666 solid 1px;
display:none;
position:absolute;
z-index:9;
}
.displaycode {margin-top: 0; margin-bottom: 0; font-family: Andale Mono, Lucida Console, Monaco, fixed, monospace; font-size: 11px}
.boldcode {font-family: Andale Mono, Lucida Console, Monaco, fixed, monospace; font-size: 11px; font-weight: bold}
.code-outline {background-color:#eeeeee; border: 1px solid #ccc; padding: 5px 5px 5px 5px}
/* v15 styles */
/* masthead styles begin ============================================ */
#ibm-geo,
#ibm-geo-tou {
font-family:arial,sans-serif;
font-size:1em;
font-weight:bold;
}
#ibm-change-country,
#ibm-geo a,
#ibm-geo li#ibm-back-country,
#ibm-geo-tou a {font-weight:normal;}
#ibm-site-name span#ibm-site-name-back-link {font-weight:normal;}
#ibm-site-name {
font-family:arial,sans-serif;
font-size:1em;
font-weight:bold;
}
#ibm-geo li#ibm-country,
#ibm-geo li#ibm-language {font-weight:bold;}
#ibm-search-form select,
#ibm-search-form input {
font-family:arial,sans-serif;
font-size:1em;
}
input.ibm-btn-search {
font-family:arial,sans-serif;
font-size:1em !important;
font-weight:bold;
}
#ibm-universal-nav ul {
font-family:arial,sans-serif;
font-size:1em;
font-weight:bold;
}
li#ibm-unav-misc,
li#ibm-unav-misc a {
font-family:arial,sans-serif;
font-size:1em;
font-weight:normal;
}
li#ibm-welcome-message {
font-family:arial,sans-serif;
font-size:1em;
font-weight:bold;
}
li#ibm-welcome-message span,
li#ibm-welcome-message span a {
font-weight:normal;
}
div#ibm-welcome-message span {
font-family:arial,sans-serif;
font-size:1em;
font-weight:bold;
}
div#ibm-welcome-message span a {font-weight:normal;}
*:first-child+html #ibm-search-form {
padding-top:7px;
padding-bottom:2px;
}
* html #ibm-logo {
margin:0px;
margin-bottom /**/:1px;
}
* html #ibm-universal-nav {height:1%;}
* html #ibm-search-form {
padding:7px 0px 0px;
padding-top /**/:8px;
}
* html input#q {margin-bottom /**/:7px;}
* html input.ibm-btn-search {
padding:4px 5px 5px 5px;
margin-bottom:-1px;
}
*:first-child+html input.ibm-btn-search {
padding:4px 5px 5px 5px;
margin-bottom:-1px;
}
/* masthead styles end ============================================== */
/* footer styles begin ============================================== */
#ibm-page-tools ul,
#ibm-footer ul {
font-family:arial,sans-serif;
font-size:1em;
}
#ibm-footer ul {
font-weight:bold;
}
/* footer styles end ================================================ */
.ibm-container h2 {
font-family:verdana,sans-serif;
font-size:.9em;
font-weight:bold;
}
.ibm-container p {
font-family:verdana,sans-serif;
font-size:.9em;
}
/* button styles begin ============================================== */
input.ibm-btn-arrow-pri,
input.ibm-btn-cancel-pri,
input.ibm-btn-cart-pri,
input.ibm-btn-customize-pri,
input.ibm-btn-download-pri,
input.ibm-btn-view-pri,
input.ibm-btn-add-sec,
input.ibm-btn-arrow-sec,
input.ibm-btn-back-sec,
input.ibm-btn-cancel-sec,
input.ibm-btn-cart-sec,
input.ibm-btn-chat-sec,
input.ibm-btn-customize-sec,
input.ibm-btn-download-sec,
input.ibm-btn-email-sec,
input.ibm-btn-pda-sec,
input.ibm-btn-phone-sec,
input.ibm-btn-refresh-sec,
input.ibm-btn-remove-sec,
input.ibm-btn-undo-sec,
input.ibm-btn-view-sec {
font-family:verdana,sans-serif;
font-size:1em;
font-weight:bold;
}
/* button styles end ============================================== */
/* overlay styles begin ============================================== */
div#ibm-overlay-top {
font-family:arial,sans-serif;
}
div#ibm-overlay-masthead p a {
font-size:1em;
}
div#ibm-overlay-content p {
font-size:1.1em;
}
div#ibm-overlay-top .ibm-buttons-row p {font-size:1.1em;}
div.ibm-overlay-legal {font-size:0.9em;}
div#ibm-overlay-top h2 {
font-size:2em;
font-weight:normal;
}
div#ibm-overlay-content p.ibm-overlay-intro {font-size:1.1em;}
/* overlay styles end ============================================== */
|
data_exports/templates/data_exports/base.html | magopian/django-data-exports | {% load i18n %}
<!DOCTYPE html>
<html>
<head>
<title>{% block title %}{% trans "Data export" %}{% endblock title %}</title>
{% block css %}{% endblock css %}
{% block meta %}<meta charset="utf-8" />{% endblock meta %}
{% block extrahead %}{% endblock extrahead %}
</head>
<body>
{% block body %}{% endblock body %}
{% block js %}{% endblock js %}
</body>
</html>
|
objectCart/software/src/web/docs/system/gov/nih/nci/system/security/acegi/providers/class-use/NullUsernameAuthenticationProvider.html | NCIP/cadsr-objectcart | <!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_43) on Tue Aug 06 14:46:48 EDT 2013 -->
<TITLE>
Uses of Class gov.nih.nci.system.security.acegi.providers.NullUsernameAuthenticationProvider (caCORE SDK 4.5 API Documentation)
</TITLE>
<META NAME="date" CONTENT="2013-08-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 gov.nih.nci.system.security.acegi.providers.NullUsernameAuthenticationProvider (caCORE SDK 4.5 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="../../../../../../../../gov/nih/nci/system/security/acegi/providers/NullUsernameAuthenticationProvider.html" title="class in gov.nih.nci.system.security.acegi.providers"><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?gov/nih/nci/system/security/acegi/providers/\class-useNullUsernameAuthenticationProvider.html" target="_top"><B>FRAMES</B></A>
<A HREF="NullUsernameAuthenticationProvider.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>gov.nih.nci.system.security.acegi.providers.NullUsernameAuthenticationProvider</B></H2>
</CENTER>
No usage of gov.nih.nci.system.security.acegi.providers.NullUsernameAuthenticationProvider
<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="../../../../../../../../gov/nih/nci/system/security/acegi/providers/NullUsernameAuthenticationProvider.html" title="class in gov.nih.nci.system.security.acegi.providers"><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?gov/nih/nci/system/security/acegi/providers/\class-useNullUsernameAuthenticationProvider.html" target="_top"><B>FRAMES</B></A>
<A HREF="NullUsernameAuthenticationProvider.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>
This API was generated by the caCORE Software Development Kit (SDK)
</BODY>
</HTML>
|
smra/smra_portal/templates/admin/smra_portal/MediaObjectParameter/change_list.html | eresearchrmit/mavrec | {% extends "admin/change_list.html" %}
{% block extrahead %}
{{ block.super }}
<style type="text/css">
#id_value { width: 500px; }
</style>
{% endblock %}
|
chrome/browser/resources/net_internals/dns_view.html | aYukiSekiguchi/ACCESS-Chromium | <!-- Host resolver info -->
<div id=dns-view-tab-content>
<h4>Host resolver</h4>
<ul>
<li><a href='#events&q=type:HOST_RESOLVER_IMPL_REQUEST%20type:HOST_RESOLVER_IMPL_JOB%20is:active'>View pending lookups</a></li>
<li>Default address family: <span id=dns-view-default-family></span>
<span id=dns-view-ipv6-disabled class=warningText style="display: none;">
(IPv6 disabled)
<input type=button value="Enable IPv6" id=dns-view-enable-ipv6 />
</span>
</li>
</ul>
<h4>
Host resolver cache
<input type=button value="Clear host cache" id=dns-view-clear-cache class="hideOnLoadLog" />
</h4>
<ul>
<li>Capacity: <span id=dns-view-cache-capacity></span></li>
</ul>
<h4>
Current State
</h4>
<ul>
<li>Active entries: <span id=dns-view-cache-active></span></li>
<li>Expired entries: <span id=dns-view-cache-expired></span></li>
</ul>
<table class="styledTable">
<thead>
<tr>
<th>Hostname</th>
<th>Family</th>
<th>Addresses</th>
<th>Expires</th>
</tr>
</thead>
<tbody id=dns-view-cache-tbody>
</tbody>
</table>
</div>
|
modules/collabroom/src/main/resources/META-INF/resources/styles/collabroom/collabroom.css | hadrsystems/nics-web | /**
* Copyright (c) 2008-2016, Massachusetts Institute of Technology (MIT)
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this
* list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* 3. Neither the name of the copyright holder nor the names of its contributors
* may be used to endorse or promote products derived from this software without
* specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
.presets {
overflow: auto;
padding: 0;
margin: 0;
list-style-type: none;
font: normal 11px tahoma,arial,helvetica,sans-serif;
}
.presets li.preset-group {
float:left;
display: inline-block;
padding: 5px 10px;
vertical-align:top;
font-size: 1.3em;
font-weight: bold;
}
.presets li.preset-value {
font-size: 0.9em;
font-weight: normal;
overflow:visible;
margin:0;
padding:0;
border:0;
/* style as link */
color:rgb(0, 0, 238); /* Match your link colour */
line-height:normal;
text-decoration:underline;
cursor:pointer;
}
.presets ol {
list-style-type: none;
padding: 0px 10px;
width: 160px;
}
.presets li.disabled {
text-decoration: line-through;
color: gray;
cursor:default;
} |
webkit/data/layout_tests/chrome/http/mime/main_image_gif9.html | amyvmiwei/chromium | This tests loading of a BMP image and no HTML when the HTTP content-type is set to "image/gif" .
Expected : This page should have NOTHING .
<script>
window.location="resources/getpage.pl?type=image/gif&switch=nohtml&content=type_bmp.bmp";
</script>
|
v0.13.2/generated/statsmodels.distributions.copula.api.FrankCopula.plot_pdf.html | statsmodels/statsmodels.github.io |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="lang:clipboard.copy" content="Copy to clipboard">
<meta name="lang:clipboard.copied" content="Copied to clipboard">
<meta name="lang:search.language" content="en">
<meta name="lang:search.pipeline.stopwords" content="True">
<meta name="lang:search.pipeline.trimmer" content="True">
<meta name="lang:search.result.none" content="No matching documents">
<meta name="lang:search.result.one" content="1 matching document">
<meta name="lang:search.result.other" content="# matching documents">
<meta name="lang:search.tokenizer" content="[\s\-]+">
<link href="https://fonts.gstatic.com/" rel="preconnect" crossorigin>
<link href="https://fonts.googleapis.com/css?family=Roboto+Mono:400,500,700|Roboto:300,400,400i,700&display=fallback" rel="stylesheet">
<style>
body,
input {
font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif
}
code,
kbd,
pre {
font-family: "Roboto Mono", "Courier New", Courier, monospace
}
</style>
<link rel="stylesheet" href="../_static/stylesheets/application.css"/>
<link rel="stylesheet" href="../_static/stylesheets/application-palette.css"/>
<link rel="stylesheet" href="../_static/stylesheets/application-fixes.css"/>
<link rel="stylesheet" href="../_static/fonts/material-icons.css"/>
<meta name="theme-color" content="#3f51b5">
<script src="../_static/javascripts/modernizr.js"></script>
<title>statsmodels.distributions.copula.api.FrankCopula.plot_pdf — statsmodels</title>
<link rel="icon" type="image/png" sizes="32x32" href="../_static/icons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../_static/icons/favicon-16x16.png">
<link rel="manifest" href="../_static/icons/site.webmanifest">
<link rel="mask-icon" href="../_static/icons/safari-pinned-tab.svg" color="#919191">
<meta name="msapplication-TileColor" content="#2b5797">
<meta name="msapplication-config" content="../_static/icons/browserconfig.xml">
<link rel="stylesheet" href="../_static/stylesheets/examples.css">
<link rel="stylesheet" href="../_static/stylesheets/deprecation.css">
<link rel="stylesheet" type="text/css" href="../_static/pygments.css" />
<link rel="stylesheet" type="text/css" href="../_static/material.css" />
<link rel="stylesheet" type="text/css" href="../_static/graphviz.css" />
<link rel="stylesheet" type="text/css" href="../_static/plot_directive.css" />
<script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js"></script>
<script src="../_static/jquery.js"></script>
<script src="../_static/underscore.js"></script>
<script src="../_static/doctools.js"></script>
<script crossorigin="anonymous" integrity="sha256-Ae2Vz/4ePdIu6ZyI/5ZGsYnb+m0JlOmKPjt6XZ9JJkA=" src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.4/require.min.js"></script>
<link rel="shortcut icon" href="../_static/favicon.ico"/>
<link rel="author" title="About these documents" href="../about.html" />
<link rel="index" title="Index" href="../genindex.html" />
<link rel="search" title="Search" href="../search.html" />
<link rel="next" title="statsmodels.distributions.copula.api.FrankCopula.plot_scatter" href="statsmodels.distributions.copula.api.FrankCopula.plot_scatter.html" />
<link rel="prev" title="statsmodels.distributions.copula.api.FrankCopula.pdf" href="statsmodels.distributions.copula.api.FrankCopula.pdf.html" />
</head>
<body dir=ltr
data-md-color-primary=indigo data-md-color-accent=blue>
<svg class="md-svg">
<defs data-children-count="0">
<svg xmlns="http://www.w3.org/2000/svg" width="416" height="448" viewBox="0 0 416 448" id="__github"><path fill="currentColor" d="M160 304q0 10-3.125 20.5t-10.75 19T128 352t-18.125-8.5-10.75-19T96 304t3.125-20.5 10.75-19T128 256t18.125 8.5 10.75 19T160 304zm160 0q0 10-3.125 20.5t-10.75 19T288 352t-18.125-8.5-10.75-19T256 304t3.125-20.5 10.75-19T288 256t18.125 8.5 10.75 19T320 304zm40 0q0-30-17.25-51T296 232q-10.25 0-48.75 5.25Q229.5 240 208 240t-39.25-2.75Q130.75 232 120 232q-29.5 0-46.75 21T56 304q0 22 8 38.375t20.25 25.75 30.5 15 35 7.375 37.25 1.75h42q20.5 0 37.25-1.75t35-7.375 30.5-15 20.25-25.75T360 304zm56-44q0 51.75-15.25 82.75-9.5 19.25-26.375 33.25t-35.25 21.5-42.5 11.875-42.875 5.5T212 416q-19.5 0-35.5-.75t-36.875-3.125-38.125-7.5-34.25-12.875T37 371.5t-21.5-28.75Q0 312 0 260q0-59.25 34-99-6.75-20.5-6.75-42.5 0-29 12.75-54.5 27 0 47.5 9.875t47.25 30.875Q171.5 96 212 96q37 0 70 8 26.25-20.5 46.75-30.25T376 64q12.75 25.5 12.75 54.5 0 21.75-6.75 42 34 40 34 99.5z"/></svg>
</defs>
</svg>
<input class="md-toggle" data-md-toggle="drawer" type="checkbox" id="__drawer">
<input class="md-toggle" data-md-toggle="search" type="checkbox" id="__search">
<label class="md-overlay" data-md-component="overlay" for="__drawer"></label>
<a href="#generated/statsmodels.distributions.copula.api.FrankCopula.plot_pdf" tabindex="1" class="md-skip"> Skip to content </a>
<header class="md-header" data-md-component="header">
<nav class="md-header-nav md-grid">
<div class="md-flex navheader">
<div class="md-flex__cell md-flex__cell--shrink">
<a href="../index.html" title="statsmodels"
class="md-header-nav__button md-logo">
<img src="../_static/statsmodels-logo-v2-bw.svg" height="26"
alt="statsmodels logo">
</a>
</div>
<div class="md-flex__cell md-flex__cell--shrink">
<label class="md-icon md-icon--menu md-header-nav__button" for="__drawer"></label>
</div>
<div class="md-flex__cell md-flex__cell--stretch">
<div class="md-flex__ellipsis md-header-nav__title" data-md-component="title">
<span class="md-header-nav__topic">statsmodels v0.13.2</span>
<span class="md-header-nav__topic"> statsmodels.distributions.copula.api.FrankCopula.plot_pdf </span>
</div>
</div>
<div class="md-flex__cell md-flex__cell--shrink">
<label class="md-icon md-icon--search md-header-nav__button" for="__search"></label>
<div class="md-search" data-md-component="search" role="dialog">
<label class="md-search__overlay" for="__search"></label>
<div class="md-search__inner" role="search">
<form class="md-search__form" action="../search.html" method="get" name="search">
<input type="text" class="md-search__input" name="q" placeholder="Search"
autocapitalize="off" autocomplete="off" spellcheck="false"
data-md-component="query" data-md-state="active">
<label class="md-icon md-search__icon" for="__search"></label>
<button type="reset" class="md-icon md-search__icon" data-md-component="reset" tabindex="-1">

</button>
</form>
<div class="md-search__output">
<div class="md-search__scrollwrap" data-md-scrollfix>
<div class="md-search-result" data-md-component="result">
<div class="md-search-result__meta">
Type to start searching
</div>
<ol class="md-search-result__list"></ol>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="md-flex__cell md-flex__cell--shrink">
<div class="md-header-nav__source">
<a href="https://github.com/statsmodels/statsmodels" title="Go to repository" class="md-source" data-md-source="github">
<div class="md-source__icon">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 24 24" width="28" height="28">
<use xlink:href="#__github" width="24" height="24"></use>
</svg>
</div>
<div class="md-source__repository">
statsmodels
</div>
</a>
</div>
</div>
<script src="../_static/javascripts/version_dropdown.js"></script>
<script>
var json_loc = "../../versions-v2.json",
target_loc = "../../",
text = "Versions";
$( document ).ready( add_version_dropdown(json_loc, target_loc, text));
</script>
</div>
</nav>
</header>
<div class="md-container">
<nav class="md-tabs" data-md-component="tabs">
<div class="md-tabs__inner md-grid">
<ul class="md-tabs__list">
<li class="md-tabs__item"><a href="../user-guide.html" class="md-tabs__link">User Guide</a></li>
<li class="md-tabs__item"><a href="../distributions.html" class="md-tabs__link">Distributions</a></li>
<li class="md-tabs__item"><a href="statsmodels.distributions.copula.api.FrankCopula.html" class="md-tabs__link">statsmodels.distributions.copula.api.FrankCopula</a></li>
</ul>
</div>
</nav>
<main class="md-main">
<div class="md-main__inner md-grid" data-md-component="container">
<div class="md-sidebar md-sidebar--primary" data-md-component="navigation">
<div class="md-sidebar__scrollwrap">
<div class="md-sidebar__inner">
<nav class="md-nav md-nav--primary" data-md-level="0">
<label class="md-nav__title md-nav__title--site" for="__drawer">
<a href="../index.html" title="statsmodels" class="md-nav__button md-logo">
<img src="../_static/statsmodels-logo-v2-bw.svg" alt=" logo" width="48" height="48">
</a>
<a href="../index.html"
title="statsmodels">statsmodels v0.13.2</a>
</label>
<div class="md-nav__source">
<a href="https://github.com/statsmodels/statsmodels" title="Go to repository" class="md-source" data-md-source="github">
<div class="md-source__icon">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 24 24" width="28" height="28">
<use xlink:href="#__github" width="24" height="24"></use>
</svg>
</div>
<div class="md-source__repository">
statsmodels
</div>
</a>
</div>
<ul class="md-nav__list">
<li class="md-nav__item">
<a href="../install.html" class="md-nav__link">Installing statsmodels</a>
</li>
<li class="md-nav__item">
<a href="../gettingstarted.html" class="md-nav__link">Getting started</a>
</li>
<li class="md-nav__item">
<a href="../user-guide.html" class="md-nav__link">User Guide</a>
<ul class="md-nav__list">
<li class="md-nav__item">
<a href="../user-guide.html#background" class="md-nav__link">Background</a>
</li>
<li class="md-nav__item">
<a href="../user-guide.html#regression-and-linear-models" class="md-nav__link">Regression and Linear Models</a>
</li>
<li class="md-nav__item">
<a href="../user-guide.html#time-series-analysis" class="md-nav__link">Time Series Analysis</a>
</li>
<li class="md-nav__item">
<a href="../user-guide.html#other-models" class="md-nav__link">Other Models</a>
</li>
<li class="md-nav__item">
<a href="../user-guide.html#statistics-and-tools" class="md-nav__link">Statistics and Tools</a>
<ul class="md-nav__list">
<li class="md-nav__item">
<a href="../stats.html" class="md-nav__link">Statistics <code class="xref py py-mod docutils literal notranslate"><span class="pre">stats</span></code></a>
</li>
<li class="md-nav__item">
<a href="../contingency_tables.html" class="md-nav__link">Contingency tables</a>
</li>
<li class="md-nav__item">
<a href="../imputation.html" class="md-nav__link">Multiple Imputation with Chained Equations</a>
</li>
<li class="md-nav__item">
<a href="../emplike.html" class="md-nav__link">Empirical Likelihood <code class="xref py py-mod docutils literal notranslate"><span class="pre">emplike</span></code></a>
</li>
<li class="md-nav__item">
<a href="../distributions.html" class="md-nav__link">Distributions</a>
</li>
<li class="md-nav__item">
<a href="../graphics.html" class="md-nav__link">Graphics</a>
</li>
<li class="md-nav__item">
<a href="../iolib.html" class="md-nav__link">Input-Output <code class="xref py py-mod docutils literal notranslate"><span class="pre">iolib</span></code></a>
</li>
<li class="md-nav__item">
<a href="../tools.html" class="md-nav__link">Tools</a>
</li>
<li class="md-nav__item">
<a href="../large_data.html" class="md-nav__link">Working with Large Data Sets</a>
</li>
<li class="md-nav__item">
<a href="../optimization.html" class="md-nav__link">Optimization</a>
</li></ul>
</li>
<li class="md-nav__item">
<a href="../user-guide.html#data-sets" class="md-nav__link">Data Sets</a>
</li>
<li class="md-nav__item">
<a href="../user-guide.html#sandbox" class="md-nav__link">Sandbox</a>
</li></ul>
</li>
<li class="md-nav__item">
<a href="../examples/index.html" class="md-nav__link">Examples</a>
</li>
<li class="md-nav__item">
<a href="../api.html" class="md-nav__link">API Reference</a>
</li>
<li class="md-nav__item">
<a href="../about.html" class="md-nav__link">About statsmodels</a>
</li>
<li class="md-nav__item">
<a href="../dev/index.html" class="md-nav__link">Developer Page</a>
</li>
<li class="md-nav__item">
<a href="../release/index.html" class="md-nav__link">Release Notes</a>
</li>
</ul>
</nav>
</div>
</div>
</div>
<div class="md-sidebar md-sidebar--secondary" data-md-component="toc">
<div class="md-sidebar__scrollwrap">
<div class="md-sidebar__inner">
<nav class="md-nav md-nav--secondary">
<ul class="md-nav__list" data-md-scrollfix="">
<li class="md-nav__item"><a class="md-nav__extra_link" href="../_sources/generated/statsmodels.distributions.copula.api.FrankCopula.plot_pdf.rst.txt">Show Source</a> </li>
<li id="searchbox" class="md-nav__item"></li>
</ul>
</nav>
</div>
</div>
</div>
<div class="md-content">
<article class="md-content__inner md-typeset" role="main">
<section id="statsmodels-distributions-copula-api-frankcopula-plot-pdf">
<h1 id="generated-statsmodels-distributions-copula-api-frankcopula-plot-pdf--page-root">statsmodels.distributions.copula.api.FrankCopula.plot_pdf<a class="headerlink" href="#generated-statsmodels-distributions-copula-api-frankcopula-plot-pdf--page-root" title="Permalink to this headline">¶</a></h1>
<dl class="py method">
<dt class="sig sig-object py" id="statsmodels.distributions.copula.api.FrankCopula.plot_pdf">
<span class="sig-prename descclassname"><span class="pre">FrankCopula.</span></span><span class="sig-name descname"><span class="pre">plot_pdf</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">ticks_nbr</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">10</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">ax</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#statsmodels.distributions.copula.api.FrankCopula.plot_pdf" title="Permalink to this definition">¶</a></dt>
<dd><p>Plot the PDF.</p>
<dl class="field-list">
<dt class="field-odd">Parameters</dt>
<dd class="field-odd"><dl>
<dt><strong>ticks_nbr</strong><span class="classifier"><a class="reference external" href="https://docs.python.org/3/library/functions.html#int" title="(in Python v3.10)"><code class="docutils literal notranslate"><span class="pre">int</span></code></a>, <code class="xref py py-obj docutils literal notranslate"><span class="pre">optional</span></code></span></dt><dd><p>Number of color isolines for the PDF. Default is 10.</p>
</dd>
<dt><strong>ax</strong><span class="classifier"><a class="reference external" href="https://matplotlib.org/api/axes_api.html#matplotlib.axes.Axes" title="(in Matplotlib v3.5.1)"><code class="xref py py-obj docutils literal notranslate"><span class="pre">AxesSubplot</span></code></a>, <code class="xref py py-obj docutils literal notranslate"><span class="pre">optional</span></code></span></dt><dd><p>If given, this subplot is used to plot in instead of a new figure
being created.</p>
</dd>
</dl>
</dd>
<dt class="field-even">Returns</dt>
<dd class="field-even"><dl>
<dt><strong>fig</strong><span class="classifier"><a class="reference external" href="https://matplotlib.org/api/figure_api.html#matplotlib.figure.Figure" title="(in Matplotlib v3.5.1)"><code class="xref py py-obj docutils literal notranslate"><span class="pre">Figure</span></code></a></span></dt><dd><p>If <cite>ax</cite> is None, the created figure. Otherwise the figure to which
<cite>ax</cite> is connected.</p>
</dd>
</dl>
</dd>
</dl>
</dd></dl>
</section>
</article>
</div>
</div>
</main>
</div>
<footer class="md-footer">
<div class="md-footer-nav">
<nav class="md-footer-nav__inner md-grid">
<a href="statsmodels.distributions.copula.api.FrankCopula.pdf.html" title="statsmodels.distributions.copula.api.FrankCopula.pdf"
class="md-flex md-footer-nav__link md-footer-nav__link--prev"
rel="prev">
<div class="md-flex__cell md-flex__cell--shrink">
<i class="md-icon md-icon--arrow-back md-footer-nav__button"></i>
</div>
<div class="md-flex__cell md-flex__cell--stretch md-footer-nav__title">
<span class="md-flex__ellipsis">
<span
class="md-footer-nav__direction"> Previous </span> statsmodels.distributions.copula.api.FrankCopula.pdf </span>
</div>
</a>
<a href="statsmodels.distributions.copula.api.FrankCopula.plot_scatter.html" title="statsmodels.distributions.copula.api.FrankCopula.plot_scatter"
class="md-flex md-footer-nav__link md-footer-nav__link--next"
rel="next">
<div class="md-flex__cell md-flex__cell--stretch md-footer-nav__title"><span
class="md-flex__ellipsis"> <span
class="md-footer-nav__direction"> Next </span> statsmodels.distributions.copula.api.FrankCopula.plot_scatter </span>
</div>
<div class="md-flex__cell md-flex__cell--shrink"><i
class="md-icon md-icon--arrow-forward md-footer-nav__button"></i>
</div>
</a>
</nav>
</div>
<div class="md-footer-meta md-typeset">
<div class="md-footer-meta__inner md-grid">
<div class="md-footer-copyright">
<div class="md-footer-copyright__highlight">
© Copyright 2009-2019, Josef Perktold, Skipper Seabold, Jonathan Taylor, statsmodels-developers.
</div>
Last updated on
Feb 08, 2022.
<br/>
Created using
<a href="http://www.sphinx-doc.org/">Sphinx</a> 4.4.0.
and
<a href="https://github.com/bashtage/sphinx-material/">Material for
Sphinx</a>
</div>
</div>
</div>
</footer>
<script src="../_static/javascripts/application.js"></script>
<script>app.initialize({version: "1.0.4", url: {base: ".."}})</script>
</body>
</html> |
src/ultimate/templates/index/news.html | a2ultimate/ultimate-league-app | {% extends 'layout/layout_home.html' %}
{% load admin_urls %}
{% load markdown_deux_tags %}
{% block title %}{{ article.title }} · {{ block.super }}{% endblock %}
{% block og_title %}{{ article.title }} · {{ block.super }}{% endblock %}
{% block content %}
<h1>{{ article.title }}</h1>
{% if article.is_markdown %}
{{ article.content|markdown }}
{% elif article.is_html %}
{{ article.content|safe }}
{% else %}
{{ article.content }}
{% endif %}
{% if article.updated %}
<hr>
<p>
<small>Last Updated: {{ article.updated|date:'F jS, Y' }}</small>
</p>
{% endif %}
{% if 'index.change_staticcontent' in perms %}
<div class="page-division-teams-notes">
<h4 class="page-division-teams-notes-title">
Admin Only
</h4>
<div class="page-division-teams-notes-content">
<a href="{% url 'admin:index_newsarticle_change' article.id %}">Edit Page</a>
</div>
</div>
{% endif %}
{% endblock %}
|
docs/index.html | deoxxa/node-nyaatorrents | <!DOCTYPE html>
<html>
<head>
<title>index.js</title>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, target-densitydpi=160dpi, initial-scale=1.0; maximum-scale=1.0; user-scalable=0;">
<link rel="stylesheet" media="all" href="docco.css" />
</head>
<body>
<div id="container">
<div id="background"></div>
<ul class="sections">
<li id="title">
<div class="annotation">
<h1>index.js</h1>
</div>
</li>
<li id="section-1">
<div class="annotation">
<div class="pilwrap ">
<a class="pilcrow" href="#section-1">¶</a>
</div>
<p>This is where all the fun happens. Please take a moment to read through this
file to acquaint yourself with the functionality provided and the
implementation thereof.</p>
</div>
<div class="content"><div class='highlight'><pre><span class="keyword">var</span> cheerio = require(<span class="string">"cheerio"</span>),
ent = require(<span class="string">"ent"</span>),
filesize_parser = require(<span class="string">"filesize-parser"</span>),
request = require(<span class="string">"request"</span>),
url = require(<span class="string">"url"</span>);</pre></div></div>
</li>
<li id="section-2">
<div class="annotation">
<div class="pilwrap ">
<a class="pilcrow" href="#section-2">¶</a>
</div>
<p>Main entry point. This is the client class. It takes a single optional
argument, being the base URL of the NyaaTorrents site you want to interact
with. If left out, it will default to "<a href="http://www.nyaa.eu/">http://www.nyaa.eu/</a>".</p>
</div>
<div class="content"><div class='highlight'><pre><span class="keyword">var</span> NyaaTorrents = module.exports = <span class="function"><span class="keyword">function</span> <span class="title">NyaaTorrents</span><span class="params">(base_url)</span> {</span>
<span class="keyword">if</span> (<span class="keyword">typeof</span> base_url === <span class="string">"undefined"</span>) {
base_url = <span class="string">"http://www.nyaa.eu/"</span>;
}
<span class="keyword">this</span>.base_url = base_url;
};</pre></div></div>
</li>
<li id="section-3">
<div class="annotation">
<div class="pilwrap ">
<a class="pilcrow" href="#section-3">¶</a>
</div>
<p>Search method. This maps pretty transparently to <a href="http://www.nyaa.eu/?page=search">the search page</a>,
passing through the <code>query</code> hash verbatim as url parameters. If the <code>query</code>
argument is left out, you'll get a list of the latest torrents as you will
have provided no filter arguments. The second argument is a callback that
will be called on completion with <code>err</code> and <code>results</code> arguments. <code>err</code> will
be null in the case of success.</p>
</div>
<div class="content"><div class='highlight'><pre>NyaaTorrents.prototype.search = <span class="function"><span class="keyword">function</span> <span class="title">search</span><span class="params">(query, cb)</span> {</span>
<span class="keyword">var</span> uri = url.parse(<span class="keyword">this</span>.base_url);
<span class="keyword">if</span> (<span class="keyword">typeof</span> query === <span class="string">"function"</span>) {
cb = query;
query = <span class="literal">null</span>;
}
<span class="keyword">if</span> (<span class="keyword">typeof</span> query !== <span class="string">"object"</span> || query === <span class="literal">null</span>) {
query = {};
}
query.page = <span class="string">"torrents"</span>;
uri.query = query;
request(url.format(uri), <span class="keyword">function</span>(err, res, data) {
<span class="keyword">if</span> (err) {
<span class="keyword">return</span> cb(err);
}
<span class="keyword">var</span> $ = cheerio.load(data);</pre></div></div>
</li>
<li id="section-4">
<div class="annotation">
<div class="pilwrap ">
<a class="pilcrow" href="#section-4">¶</a>
</div>
<p>Our results are found in a table with a predictable structure. Some of
this code might be fragile - expect updates here to improve performance
or stability. PATCHES WELCOME LOL.</p>
</div>
<div class="content"><div class='highlight'><pre> <span class="keyword">var</span> torrents = Array.prototype.slice.apply($(<span class="string">"table.tlist .tlistrow"</span>)).map(<span class="keyword">function</span>(row) {
<span class="keyword">var</span> obj = {};</pre></div></div>
</li>
<li id="section-5">
<div class="annotation">
<div class="pilwrap ">
<a class="pilcrow" href="#section-5">¶</a>
</div>
<p>If we can't find the download link or the category image, we just give
up on this row. It shouldn't happen, but it might indicate bad markup
or unhandled stuff.</p>
</div>
<div class="content"><div class='highlight'><pre> <span class="keyword">var</span> download_link = $(row).find(<span class="string">".tlistdownload a"</span>)[<span class="number">0</span>];
<span class="keyword">if</span> (!download_link) {
<span class="keyword">return</span> <span class="literal">null</span>;
}
<span class="keyword">var</span> category_image = $(row).find(<span class="string">".tlisticon a"</span>)[<span class="number">0</span>];
<span class="keyword">if</span> (!category_image) {
<span class="keyword">return</span> <span class="literal">null</span>;
}
obj.id = parseInt(download_link.attribs.href.trim().replace(<span class="regexp">/^.+?(\d+)$/</span>, <span class="string">"$1"</span>), <span class="number">10</span>);
obj.name = $(row).find(<span class="string">".tlistname"</span>).text().trim();
obj.categories = ent.decode(category_image.attribs.title).trim().split(<span class="regexp">/ >> /g</span>).map(<span class="keyword">function</span>(e) { <span class="keyword">return</span> e.toLowerCase().trim().replace(<span class="regexp">/\s+/g</span>, <span class="string">"-"</span>); });
obj.flags = row.attribs.class.split(<span class="regexp">/ /g</span>).filter(<span class="keyword">function</span>(e) { <span class="keyword">return</span> e !== <span class="string">"tlistrow"</span>; });
obj.size = filesize_parser($(row).find(<span class="string">".tlistsize"</span>).text().trim());
obj.seeds = parseInt($(row).find(<span class="string">".tlistsn"</span>).text().trim(), <span class="number">10</span>);
obj.leeches = parseInt($(row).find(<span class="string">".tlistln"</span>).text().trim(), <span class="number">10</span>);
obj.downloads = parseInt($(row).find(<span class="string">".tlistdn"</span>).text().trim(), <span class="number">10</span>);
obj.comments = parseInt($(row).find(<span class="string">".tlistmn"</span>).text().trim(), <span class="number">10</span>);
<span class="keyword">return</span> obj;
}).filter(<span class="keyword">function</span>(e) {
<span class="keyword">return</span> e !== <span class="literal">null</span>;
});
<span class="keyword">return</span> cb(<span class="literal">null</span>, torrents);
});
};</pre></div></div>
</li>
<li id="section-6">
<div class="annotation">
<div class="pilwrap ">
<a class="pilcrow" href="#section-6">¶</a>
</div>
<p>This method gets the information about a specific torrent, identified by ID.
First argument is a number or a string containing the torrent ID, second is
a callback to be called on completion with <code>err</code> and <code>result</code> arguments. As
with the previous method, <code>err</code> will be null in the case of success.</p>
</div>
<div class="content"><div class='highlight'><pre>NyaaTorrents.prototype.get = <span class="function"><span class="keyword">function</span> <span class="title">get</span><span class="params">(id, cb)</span> {</span>
<span class="keyword">var</span> uri = url.parse(<span class="keyword">this</span>.base_url);
uri.query = {
page: <span class="string">"torrentinfo"</span>,
tid: id,
};
request(url.format(uri), <span class="keyword">function</span>(err, res, data) {
<span class="keyword">if</span> (err) {
<span class="keyword">return</span> cb(err);
}
<span class="keyword">var</span> $ = cheerio.load(data);
<span class="keyword">var</span> content = $(<span class="string">".content"</span>)[<span class="number">0</span>];</pre></div></div>
</li>
<li id="section-7">
<div class="annotation">
<div class="pilwrap ">
<a class="pilcrow" href="#section-7">¶</a>
</div>
<p>When there's an error, it's displayed as text in the spot where the page
content would usually go. We pass that through as-is to the user.</p>
</div>
<div class="content"><div class='highlight'><pre> <span class="keyword">if</span> (content.children.length === <span class="number">1</span> && content.children[<span class="number">0</span>].type === <span class="string">"text"</span>) {
<span class="keyword">return</span> cb(Error(ent.decode(content.children[<span class="number">0</span>].data).trim()));
}
<span class="keyword">var</span> obj = {};</pre></div></div>
</li>
<li id="section-8">
<div class="annotation">
<div class="pilwrap ">
<a class="pilcrow" href="#section-8">¶</a>
</div>
<p>These are things like "trusted" or "remake". See <a href="http://forums.nyaa.eu/index.php?/topic/1284-nyaatorrents-manual/">the NyaaTorrents manual</a>
for more information.</p>
</div>
<div class="content"><div class='highlight'><pre> obj.flags = content.attribs.class.split(<span class="regexp">/ /g</span>).filter(<span class="keyword">function</span>(e) { <span class="keyword">return</span> e !== <span class="string">"content"</span>; });</pre></div></div>
</li>
<li id="section-9">
<div class="annotation">
<div class="pilwrap ">
<a class="pilcrow" href="#section-9">¶</a>
</div>
<p>Categories. Super simple stuff. These are lower-cased, hyphen-delimited,
human-readable strings.</p>
</div>
<div class="content"><div class='highlight'><pre> obj.categories = Array.prototype.slice.apply($(content).find(<span class="string">"td.viewinfocategory a"</span>)).map(<span class="keyword">function</span>(e) {
<span class="keyword">return</span> $(e).text().toLowerCase().trim().replace(<span class="regexp">/\s+/g</span>, <span class="string">"-"</span>);
});</pre></div></div>
</li>
<li id="section-10">
<div class="annotation">
<div class="pilwrap ">
<a class="pilcrow" href="#section-10">¶</a>
</div>
<p>The torrent details are displayed in a wonky table thing. Each field is
displayed as a pair of cells, with the former containing the field name
and the latter displaying the field value. Based on the name, we do some
field-specific transformations on some fields. Others just get passed on
through as text.</p>
</div>
<div class="content"><div class='highlight'><pre> <span class="keyword">var</span> tds = $(content).find(<span class="string">"table.viewtable tr > td"</span>);
<span class="keyword">for</span> (<span class="keyword">var</span> i=<span class="number">0</span>;i<tds.length;i+=<span class="number">2</span>) {</pre></div></div>
</li>
<li id="section-11">
<div class="annotation">
<div class="pilwrap ">
<a class="pilcrow" href="#section-11">¶</a>
</div>
<p>This is the field name.</p>
</div>
<div class="content"><div class='highlight'><pre> <span class="keyword">var</span> k = $(tds[i]).text().replace(<span class="regexp">/:$/</span>, <span class="string">""</span>).replace(<span class="regexp">/\s+/g</span>, <span class="string">"_"</span>).trim().toLowerCase();
<span class="keyword">switch</span> (k) {</pre></div></div>
</li>
<li id="section-12">
<div class="annotation">
<div class="pilwrap ">
<a class="pilcrow" href="#section-12">¶</a>
</div>
<p>"information" is basically synonymous with "website"</p>
</div>
<div class="content"><div class='highlight'><pre> <span class="keyword">case</span> <span class="string">"information"</span>:
<span class="keyword">var</span> link = $(tds[i+<span class="number">1</span>]).find(<span class="string">"a"</span>);
<span class="keyword">if</span> (link.length)
obj.website = link[<span class="number">0</span>].attribs.href;
<span class="keyword">break</span>;</pre></div></div>
</li>
<li id="section-13">
<div class="annotation">
<div class="pilwrap ">
<a class="pilcrow" href="#section-13">¶</a>
</div>
<p>"file_size" is exactly what it sounds like, and it has to be turned
into a real number.</p>
</div>
<div class="content"><div class='highlight'><pre> <span class="keyword">case</span> <span class="string">"file_size"</span>:
obj.size = filesize_parser($(tds[i+<span class="number">1</span>]).text().trim());
<span class="keyword">break</span>;</pre></div></div>
</li>
<li id="section-14">
<div class="annotation">
<div class="pilwrap ">
<a class="pilcrow" href="#section-14">¶</a>
</div>
<p>This is the user that submitted the torrent. We parse it out into the
separate <code>id</code> and <code>name</code> values.</p>
</div>
<div class="content"><div class='highlight'><pre> <span class="keyword">case</span> <span class="string">"submitter"</span>:
obj.user = {
id: parseInt($(tds[i+<span class="number">1</span>]).find(<span class="string">"a"</span>)[<span class="number">0</span>].attribs.href.replace(<span class="regexp">/^.+?(\d+)$/</span>, <span class="string">"$1"</span>), <span class="number">10</span>),
name: $(tds[i+<span class="number">1</span>]).text(),
};
<span class="keyword">break</span>;</pre></div></div>
</li>
<li id="section-15">
<div class="annotation">
<div class="pilwrap ">
<a class="pilcrow" href="#section-15">¶</a>
</div>
<p>This might not work on anything except V8. Will have to check that
if this ever works on anything except node.</p>
</div>
<div class="content"><div class='highlight'><pre> <span class="keyword">case</span> <span class="string">"date"</span>:
obj.date = <span class="keyword">new</span> Date($(tds[i+<span class="number">1</span>]).text());
<span class="keyword">break</span>;</pre></div></div>
</li>
<li id="section-16">
<div class="annotation">
<div class="pilwrap ">
<a class="pilcrow" href="#section-16">¶</a>
</div>
<p>The "stardom" field just displays the number of people who've set
themselves as "fans" of this torrent. I don't really know what the
deal is here.</p>
</div>
<div class="content"><div class='highlight'><pre> <span class="keyword">case</span> <span class="string">"stardom"</span>:
obj.fans = parseInt($(tds[i+<span class="number">1</span>]).text().replace(<span class="regexp">/^.+(\d+).+$/</span>, <span class="string">"$1"</span>), <span class="number">10</span>);
<span class="keyword">break</span>;</pre></div></div>
</li>
<li id="section-17">
<div class="annotation">
<div class="pilwrap ">
<a class="pilcrow" href="#section-17">¶</a>
</div>
<p>All these need to be turned to real numbers instead of strings.</p>
</div>
<div class="content"><div class='highlight'><pre> <span class="keyword">case</span> <span class="string">"seeders"</span>:
<span class="keyword">case</span> <span class="string">"leechers"</span>:
<span class="keyword">case</span> <span class="string">"downloads"</span>:
obj[k] = parseInt($(tds[i+<span class="number">1</span>]).text(), <span class="number">10</span>);
<span class="keyword">break</span>;</pre></div></div>
</li>
<li id="section-18">
<div class="annotation">
<div class="pilwrap ">
<a class="pilcrow" href="#section-18">¶</a>
</div>
<p>Anything not otherwise handled is just sent through as text.</p>
</div>
<div class="content"><div class='highlight'><pre> <span class="keyword">default</span>:
obj[k] = $(tds[i+<span class="number">1</span>]).text();
}
}</pre></div></div>
</li>
<li id="section-19">
<div class="annotation">
<div class="pilwrap ">
<a class="pilcrow" href="#section-19">¶</a>
</div>
<p>This is the torrent ID... You already have it, but this seemed like a
good idea for completeness.</p>
</div>
<div class="content"><div class='highlight'><pre> obj.id = parseInt($(content).find(<span class="string">"div.viewdownloadbutton a"</span>)[<span class="number">0</span>].attribs.href.replace(<span class="regexp">/^.+?(\d+)$/</span>, <span class="string">"$1"</span>), <span class="number">10</span>);</pre></div></div>
</li>
<li id="section-20">
<div class="annotation">
<div class="pilwrap ">
<a class="pilcrow" href="#section-20">¶</a>
</div>
<p>This is a chunk of HTML. You'll probably want to turn it into some other
kind of markup.</p>
</div>
<div class="content"><div class='highlight'><pre> obj.description = $($(content).find(<span class="string">"div.viewdescription"</span>)[<span class="number">0</span>]).html();
<span class="keyword">return</span> cb(<span class="literal">null</span>, obj);
});
};</pre></div></div>
</li>
</ul>
</div>
</body>
</html>
|
postfix/help/opt_max_idle.es.UTF-8.html | xtso520ok/webmin | <header>Tiempo que esperar la siguiente petición de servicio</header>
<center><tt>max_idle</tt></center>
<hr>
Este parámetro limita el tiempo en segundos que un demonio de Postfix
esperará una nueva petición de servicio antes de terminar su ejecución. El
gestor de cola de Postfix ignora este parámetro.
<hr>
|
tools/perf/page_sets/webrtc_cases/multiple-peerconnections.html | endlessm/chromium-browser | <!DOCTYPE html>
<!--
* Copyright 2017 The Chromium Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
-->
<html>
<head>
<title>Multiple peerconnections</title>
</head>
<body>
<div id="wrapper">
<div id="container">
<div class="bottom-border">
<h2>PeerConnection</h2>
<label>
Number of peer connections
<input id="num-peerconnections" value="10">
</label><br>
<label>
Enable googCpuOveruseDetection
<input type="checkbox" id="cpuoveruse-detection" checked>
</label><br>
<button class="green" id="start-test">
Start Test
</button><br>
</div>
<div class="video-area">
<br>
<h2>Remote Streams</h2>
<table border="0" id="test-table"></table>
</div>
</div>
</div>
<script src="multiple-peerconnections.js"></script>
<script src="adapter.js"></script>
<script src="common.js"></script>
</body></html>
|
editor30/override.css | davglass/yui-examples |
body {
color: blue;
}
|
detail/DarkSky.html | IainNZ/pkg.julialang.org | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Julia Package Listing - Testing Information</title>
<style>
/* -- Mix of julialang.org, Bootstrap 3, and custom -- */
body {
background-color: white;
font-family: Georgia, 'Liberation Serif', serif;
font-size: 14px;
color: #333;
line-height: 1.42857143;
}
.site {
max-width: 785px;
margin: 2.5em auto 2em;
padding: 0 1.5em;
}
a {
color: #428bca;
text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
font-family: inherit;
font-weight: 500;
line-height: 1.1;
color: inherit;
}
h1, h2, h3 {
margin-top: 20px;
margin-bottom: 10px;
}
h2 {
font-size: 30px;
}
h3 {
font-size: 24px;
}
h4 {
font-size: 18px;
margin-top: 10px;
margin-bottom: 10px;
}
.titlebox {
text-align: center;
font-size: 120%;
margin-top: 3em;
}
.tests_pass { background-color: #11AA11; } /*Tests passing*/
.tests_fail { background-color: #DD3333; } /*Tests failed*/
.no_tests { background-color: #3333DD; } /*Tests missing*/
.not_possible { background-color: #222222; } /*Package excused*/
.statusbox {
width: 12px;
height: 12px;
display: inline-block;
}
hr {
margin-top: 10px;
margin-bottom: 0px;
border: 0;
border-top: 1px solid #eee;
}
.pkglisting h2 { margin-bottom: 0px; }
pre {margin: 0;}
@media (min-width: 785px) {
.pkglisting {
display: table;
width: 100%;
}
.pkgnamedesc {
display: table-cell;
width: 50%;
}
.pkgvertest {
display: table-cell;
width:50%;
text-align: right
}
}
</style>
<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-44252521-5', 'iainnz.github.io');
ga('send', 'pageview');
</script>
</head>
<body>
<div class="site">
<!-- HEADER -->
<div class="titlebox">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="210px" height="142px" viewBox="0 0 310 216" enable-background="new 0 0 310 216" xml:space="preserve">
<!-- blue dot -->
<circle fill="#6b85dd" stroke="#4266d5" stroke-width="3" cx="50.5" cy="58.665" r="16.5"></circle>
<!-- red dot -->
<circle fill="#d66661" stroke="#c93d39" stroke-width="3" cx="212.459" cy="60.249" r="16.5"></circle>
<!-- green dot -->
<circle fill="#6bab5b" stroke="#3b972e" stroke-width="3" cx="233.834" cy="23.874" r="16.5"></circle>
<!-- purple dot -->
<circle fill="#aa7dc0" stroke="#945bb0" stroke-width="3" cx="255.459" cy="59.999" r="16.5"></circle>
<!-- "j" -->
<path fill="#252525" d="M37.216,138.427c0-15.839,0.006-31.679-0.018-47.517c-0.001-0.827,0.169-1.234,1.043-1.47
c7.876-2.127,15.739-4.308,23.606-6.47c1.33-0.366,1.333-0.36,1.333,1.019c0,25.758,0.015,51.517-0.012,77.274
c-0.006,5.514,0.245,11.032-0.272,16.543c-0.628,6.69-2.15,13.092-6.438,18.506c-3.781,4.771-8.898,7.25-14.767,8.338
c-6.599,1.222-13.251,1.552-19.934,0.938c-4.616-0.423-9.045-1.486-12.844-4.363c-2.863-2.168-4.454-4.935-3.745-8.603
c0.736-3.806,3.348-5.978,6.861-7.127c2.262-0.74,4.628-0.872,6.994-0.53c1.823,0.264,3.42,1.023,4.779,2.288
c1.38,1.284,2.641,2.674,3.778,4.177c0.872,1.15,1.793,2.256,2.991,3.086c2.055,1.426,4,0.965,5.213-1.216
c0.819-1.473,0.997-3.106,1.173-4.731c0.255-2.348,0.255-4.707,0.256-7.062C37.218,167.145,37.216,152.786,37.216,138.427z"></path>
<!-- "u" -->
<path fill="#252525" d="M125.536,162.479c-2.908,2.385-5.783,4.312-8.88,5.904c-10.348,5.323-20.514,4.521-30.324-1.253
c-6.71-3.95-11.012-9.849-12.52-17.606c-0.236-1.213-0.363-2.438-0.363-3.688c0.01-19.797,0.017-39.593-0.02-59.39
c-0.002-1.102,0.285-1.357,1.363-1.351c7.798,0.049,15.597,0.044,23.396,0.003c0.95-0.005,1.177,0.25,1.175,1.183
c-0.027,19.356-0.025,38.713-0.018,58.07c0.002,6.34,3.599,10.934,9.672,12.42c2.13,0.521,4.19,0.396,6.173-0.6
c4.26-2.139,7.457-5.427,10.116-9.307c0.333-0.487,0.224-1,0.224-1.51c0.007-19.635,0.016-39.271-0.02-58.904
c-0.002-1.083,0.255-1.369,1.353-1.361c7.838,0.052,15.677,0.045,23.515,0.004c0.916-0.005,1.103,0.244,1.102,1.124
c-0.025,27.677-0.026,55.353,0.002,83.024c0.001,0.938-0.278,1.099-1.139,1.095c-7.918-0.028-15.837-0.028-23.756-0.001
c-0.815,0.003-1.1-0.166-1.073-1.037C125.581,167.117,125.536,164.928,125.536,162.479z"></path>
<!-- "l" -->
<path fill="#252525" d="M187.423,107.08c0,20.637-0.011,41.273,0.026,61.91c0.003,1.119-0.309,1.361-1.381,1.355
c-7.799-0.052-15.598-0.047-23.396-0.008c-0.898,0.008-1.117-0.222-1.115-1.115c0.021-39.074,0.021-78.147,0-117.226
c0-0.811,0.189-1.169,1.006-1.392c7.871-2.149,15.73-4.327,23.584-6.545c1.045-0.295,1.308-0.17,1.306,0.985
C187.412,65.727,187.423,86.403,187.423,107.08z"></path>
<!-- "i" -->
<path fill="#252525" d="M223.46,126.477c0,14.155-0.011,28.312,0.021,42.467c0.002,1.027-0.164,1.418-1.332,1.408
c-7.838-0.061-15.676-0.047-23.516-0.01c-0.881,0.004-1.121-0.189-1.119-1.104c0.026-26.153,0.025-52.307,0-78.458
c0-0.776,0.203-1.101,0.941-1.302c7.984-2.172,15.972-4.35,23.938-6.596c1.049-0.296,1.08,0.031,1.078,0.886
C223.454,98.004,223.46,112.239,223.46,126.477z"></path>
<!-- "a" -->
<path fill="#252525" d="M277.695,163.6c-0.786,0.646-1.404,1.125-2,1.635c-4.375,3.746-9.42,5.898-15.16,6.42
c-5.792,0.527-11.479,0.244-16.934-2.047c-12.08-5.071-15.554-17.188-11.938-27.448c1.799-5.111,5.472-8.868,9.831-11.94
c5.681-4.003,12.009-6.732,18.504-9.074c5.576-2.014,11.186-3.939,16.955-5.347c0.445-0.104,0.773-0.243,0.757-0.854
c-0.136-4.389,0.261-8.79-0.479-13.165c-1.225-7.209-6.617-10.013-12.895-9.348c-0.516,0.055-1.029,0.129-1.536,0.241
c-4.877,1.081-7.312,4.413-7.374,10.127c-0.02,1.729-0.229,3.418-0.693,5.084c-0.906,3.229-2.969,5.354-6.168,6.266
c-3.422,0.979-6.893,0.998-10.23-0.305c-6.529-2.543-8.877-10.164-5.12-16.512c2.249-3.799,5.606-6.4,9.461-8.405
c6.238-3.246,12.914-4.974,19.896-5.537c7.565-0.61,15.096-0.366,22.49,1.507c4.285,1.085,8.312,2.776,11.744,5.657
c4.473,3.749,6.776,8.647,6.812,14.374c0.139,21.477,0.096,42.951,0.143,64.428c0.002,0.799-0.248,0.983-1.021,0.98
c-8.035-0.025-16.074-0.023-24.113-0.001c-0.716,0.002-0.973-0.146-0.941-0.915C277.736,167.562,277.695,165.698,277.695,163.6z
M277.695,126.393c-4.793,2.104-9.25,4.373-13.287,7.408c-2.151,1.618-4.033,3.483-5.732,5.581
c-4.229,5.226-1.988,13.343,1.693,16.599c1.592,1.406,3.359,1.906,5.419,1.521c1.621-0.307,3.149-0.857,4.549-1.734
c1.521-0.951,2.949-2.072,4.539-2.887c2.31-1.18,2.97-2.861,2.894-5.445C277.561,140.484,277.695,133.527,277.695,126.393z"></path>
</svg>
<h1>
<a href="http://github.com/ellisvalentiner/DarkSky.jl" name="DarkSky">DarkSky</a>
</h1>
<h4>
<a href="http://github.com/ellisvalentiner">ellisvalentiner</a>
</h4>
<p>
<a href="http://pkg.julialang.org#DarkSky">← Back to package list</a>
</p>
</div>
<p>
If you think that there is an error in how your package is being tested or represented, please file an issue at <a href="https://github.com/JuliaCI/PackageEvaluator.jl/">PackageEvaluator.jl</a>, making sure to read the FAQ first.
</p>
<h3>Badges</h3>
<h4>Julia v0.6</h4>
<img src="../badges/DarkSky_0.6.svg">
<br>
<a href="http://pkg.julialang.org/badges/DarkSky_0.6.svg">http://pkg.julialang.org/badges/DarkSky_0.6.svg</a>
<pre>[](http://pkg.julialang.org/detail/DarkSky)</pre>
<h3>Most Recent Test Logs</h3>
<ul>
<li>
<a href="../logs/DarkSky_0.6.log">Julia v0.6</a>
</li>
</ul>
<h3>Version and Status History</h3>
<h4>Julia v0.6</h4>
<pre>2018-06-20 to 2018-08-04, v0.1.1, Tests pass.
2018-03-30 to 2018-05-12, v0.1.1, Tests fail.
</pre>
</div>
</body>
</html>
|
test/nw/template/index.html | uupaa/Cookie.js | <!DOCTYPE html><html><head><title>Cookie test</title>
<meta name="viewport" content="width=device-width, user-scalable=no">
<meta charset="utf-8"></head><body>
<script src="../../lib/WebModule.js"></script>
<script>
WebModule.VERIFY = __WEBMODULE_VERIFY__;
WebModule.VERBOSE = __WEBMODULE_VERBOSE__;
WebModule.PUBLISH = __WEBMODULE_PUBLISH__;
</script>
__MODULES__
__WMTOOLS__
__SOURCES__
__OUTPUT__
__TEST_CASE__
</body></html>
|
bower_components/paper-chip/demo/index.html | polytipe/polytipe-projects | <!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1, user-scalable=yes">
<title>paper-chip Demo</title>
<script src="../../webcomponentsjs/webcomponents-lite.js"></script>
<link rel="import" href="../paper-chip.html">
<link rel="import" href="../../paper-styles/paper-styles.html">
<link rel="import" href="../../paper-toast/paper-toast.html">
<link rel="import" href="avatars.html">
<style is="custom-style">
body {
@apply(--paper-font-body1);
color: #333;
}
section {
margin: 24px;
}
#chip3 .icon {
background-color: var(--default-primary-color);
}
</style>
</head>
<body unresolved>
<section>
<p>Removable chip with <code>iron-icon</code> and a secondary label:</p>
<paper-chip removable id="chip1" active>
<iron-icon class="icon" icon="avatars:avatar-1"></iron-icon>
<h1>John Doe</h1>
<h2>doeboy@example.com</h2>
</paper-chip>
<paper-toast id="toast1" text="John Doe was removed!"></paper-toast>
</section>
<section>
<p>Same chip, with animated transition:</p>
<paper-chip removable animated id="chip1a">
<iron-icon class="icon" icon="avatars:avatar-1"></iron-icon>
<h1>John Doe</h1>
<h2>doeboy@example.com</h2>
</paper-chip>
<paper-toast text="John Doe was removed!"></paper-toast>
</section>
<section>
<p>Animated chip with more content:</p>
<paper-chip removable animated id="chip2">
<iron-icon class="icon" icon="avatars:avatar-13"></iron-icon>
<h1>Jane Doe</h1>
<h2>janedoe@example.com</h2>
<address>
123 Avenue Way<br>
Anytown, USA 12345<br>
<br>
555-123-4567
</address>
</paper-chip>
</section>
<section>
<p>Basic chip with single letter instead of an icon:</p>
<paper-chip id="chip3">
<div class="icon">P</div>
<h1>Peter Parker</h1>
<h2>pete@dailybugle.com</h2>
</paper-chip>
</section>
<section>
<p>Basic chip with no icon</p>
<paper-chip id="chip3">
<h1>Peter Parker</h1>
<h2>pete@dailybugle.com</h2>
</paper-chip>
</section>
</body>
<script>
var $ = document.querySelector.bind(document);
var $$ = document.querySelectorAll.bind(document);
var chips = $$('paper-chip');
function onRemoveChip() {
var toast = this.parentNode.querySelector('paper-toast');
if (toast) toast.show();
}
for (var i=0; i<chips.length; i++) {
chips[i].addEventListener('remove', onRemoveChip);
chips[i].style.zIndex = chips.length - i;
chips[i].setAttribute('tabindex', i + 1);
}
</script>
</html>
|
Source/TeaCommerce.StarterKit.Website/Umbraco/Views/media/move.html | TeaCommerce/Starter-kit-for-Umbraco | <div ng-controller="Umbraco.Editors.Media.MoveController">
<div class="umb-dialog-body" ng-cloak>
<div class="umb-pane">
<div ng-show="error">
<div class="alert alert-error">
<div><strong>{{error.errorMsg}}</strong></div>
<div>{{error.data.message}}</div>
</div>
</div>
<div ng-show="success">
<div class="alert alert-success">
<strong>{{currentNode.name}}</strong>
<localize key="actions_wasMovedTo">was moved to</localize>
<strong>{{target.name}}</strong>
</div>
<button class="btn btn-primary" ng-click="nav.hideDialog()">Ok</button>
</div>
<p class="abstract" ng-hide="success">
<localize key="actions_chooseWhereToMove">Choose where to move</localize>
<strong>{{currentNode.name}}</strong>
<localize key="actions_toInTheTreeStructureBelow">to in the tree structure below</localize>
</p>
<div ng-hide="success">
<div ng-hide="miniListView">
<umb-tree-search-box
hide-search-callback="hideSearch"
search-callback="onSearchResults"
search-from-id="{{searchInfo.searchFromId}}"
search-from-name="{{searchInfo.searchFromName}}"
show-search="{{searchInfo.showSearch}}"
section="media">
</umb-tree-search-box>
<br />
<umb-tree-search-results
ng-if="searchInfo.showSearch"
results="searchInfo.results"
select-result-callback="selectResult">
</umb-tree-search-results>
<div ng-hide="searchInfo.showSearch">
<umb-tree
section="media"
hideheader="{{treeModel.hideHeader}}"
hideoptions="true"
isdialog="true"
eventhandler="dialogTreeEventHandler"
enablelistviewexpand="true"
enablecheckboxes="true">
</umb-tree>
</div>
</div>
<umb-mini-list-view
ng-if="miniListView"
node="miniListView"
entity-type="Media"
on-select="selectListViewNode(node)"
on-close="closeMiniListView()">
</umb-mini-list-view>
</div>
</div>
</div>
<div class="umb-dialog-footer btn-toolbar umb-btn-toolbar" ng-hide="success">
<a class="btn btn-link" ng-click="nav.hideDialog()" ng-show="!busy"><localize key="general_cancel">Cancel</localize></a>
<button class="btn btn-primary" ng-click="move()" ng-disabled="busy || !target"><localize key="actions_move">Move</localize></button>
</div>
</div>
|
public/images/demo/demo.css | designedbyjay/michael_newCMS |
/* WebDesignAndSuch.com Demo */
/* demo page styles */
body {
font-family:Arial, Helvetica, sans-serif;
font-size:13px;
background:url(back.png);
margin: 0;
padding: 0;
color: #000;
}
#container {
width: 780px;
background:#fff;
margin: 0 auto;
-webkit-box-shadow: 0px 0px 15px #000;
-moz-box-shadow: 0px 0px 15px #000;
padding-bottom:30px
}
#content {padding: 0 20px; text-align:center; line-height:18px }
img {border:0px;}
a:link, a:visited {color:#88b0dc; text-decoration:none}
a:hover, a:active {color:#CC5500; text-decoration:none}
.info {width:800px; margin:0 auto; margin-top:20px; text-align:center; font-size:12px; padding-bottom:25px;}
.info a, .info a:visited {color:#333}
.info a:hover {color:#000}
/* demo specific styles */
.gal {text-align:center}
.gal img {margin:10px}
.gal img:hover {-webkit-box-shadow: 0px 0px 5px #333;-moz-box-shadow: 0px 0px 5px #333;} |
appsensor-dot-org/site-contents/docs/v2.3.0/javadoc/org/owasp/appsensor/local/analysis/package-summary.html | ProZachJ/appsensor | <!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) on Thu Sep 29 14:31:06 EDT 2016 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>org.owasp.appsensor.local.analysis (appsensor-parent 2.3.0 API)</title>
<meta name="date" content="2016-09-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="org.owasp.appsensor.local.analysis (appsensor-parent 2.3.0 API)";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<div class="header">
<h1 title="Package" class="title">Package org.owasp.appsensor.local.analysis</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="../../../../../org/owasp/appsensor/local/analysis/LocalResponseAnalysisEngine.html" title="class in org.owasp.appsensor.local.analysis">LocalResponseAnalysisEngine</a></td>
</tr>
</tbody>
</table>
</li>
</ul>
</div>
<p class="legalCopy"><small>Copyright © 2016 <a href="http://www.owasp.org">The Open Web Application Security Project (OWASP)</a>. All rights reserved.</small></p>
</body>
</html>
|
php102/ch04/initial/makemeelvis/removeemail.html | inest-us/php | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Make Me Elvis - Remove Email</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<img src="blankface.jpg" width="161" height="350" alt="" style="float:right" />
<img name="elvislogo" src="elvislogo.gif" width="229" height="32" border="0" alt="Make Me Elvis" />
<p>Enter an email address to remove.</p>
<form method="post" action="removeemail.php">
<label for="email">Email address:</label><br />
<input id="email" name="email" type="text" size="30" /><br />
<input type="submit" name="Remove" value="Remove" />
</form>
</body>
</html>
|
static/themes/SAMBRO/style.css | waidyanatha/sambro-eden | /* Override DRMP */
/* Breaks access to menu
#alert-space {
padding-top: 20px;
}*/
body {
padding-top: 60px;
}
/* Main Map */
.gis_fullscreen_map-btn {
display: none;
}
/* Saved Maps */
#config-gis_config_pe_id-options-filter__row .s3-groupedopts-widget td {
padding-right: 10px;
}
#config-gis_config_pe_id-options-filter__row .s3-groupedopts-widget td:last-child {
border-left: solid 1px;
}
/* Summary Page */
h2.summary {
float: left;
}
.btn.summary-create {
background: linear-gradient(to bottom, #3788B3 0%, #235482 100%) repeat scroll 0 0 transparent;
margin: 15px;
padding: 4px 6px;
float: left;
/* Push above alert-space */
position: relative;
z-index: 1000;
}
.ui-tabs {
clear: left;
}
.ui-tabs .ui-tabs-nav li {
float: right;
}
.ui-tabs .ui-tabs-nav li a,
.ui-tabs .ui-tabs-nav li.ui-tabs-active a {
border-color: #B2B2B2 #B2B2B2 white #B2B2B2
}
#summary-common {
float: left;
margin-top: 10px;
width: 50%;
line-height: 18px;
}
#summary-sections {
background-color: white;
border: 1px solid #b2b2b2;
box-shadow: none;
border-radius: 5px;
box-shadow: none;
min-height: 200px;
}
#summary-sections .map_loader {
margin-top: 125px;
}
#summary-tab-headers li {
z-index: 1000; /* Push above alert-space */
}
#summary-tabs .ui-tabs-nav {
border: none;
margin: 0 10px 0 0;
}
#summary-tabs.ui-widget-content {
width: 100%;
background: none;
float: left;
margin: -33px;
border: none;
}
#summary-tabs .x-panel-body {
border: none;
}
#summary-tabs #filter-form {
margin: 0 20px 0 50px;
position: absolute;
top: 45px;
width: auto;
z-index: 1;
}
#summary-tabs #table,
#summary-tabs #charts {
padding: 82px 20px 20px 20px;
}
#table select {
width: auto;
}
#summary-tabs #table #table-container th,
#summary-tabs #table #table-container tr td {
border-left: 1px solid #d9d8d8;
}
#summary-tabs #map {
border-radius: 5px;
margin: 0;
}
#summary-2_filter {
margin-left: 10px;
}
/* Hide the colons for Location Selectors before JS can hide */
.form-container #org_facility_location_id__label,
.form-container #project_activity_location_id__label,
.form-container #stats_people_location_id__label,
.form-container #vulnerability_evac_route_location_id__label,
.form-container #vulnerability_risk_location_id__label {
display: none;
}
/* But show in Map Popups */
#plain #org_facility_location_id__label {
display: block;
}
[id$=map_icon__row] div.controls{
float: left;
}
.form-horizontal div.geocode {
/* Same height as throbber */
height: 32px;
margin-left: 10px;
}
/* Filter Forms */
#filter-form td {
border: none;
}
input.filter-search {
text-align: center;
}
input.btn.btn-primary.filter-submit {
width: 90%;
padding-right: 5px;
padding-left: 5px;
}
input.btn.btn-primary.filter-submit.filter-ajax {
margin-top: 15px;
margin-bottom: -15px;
}
button.ui-multiselect.ui-state-default.ui-corner-all {
display: inline-block;
*display: inline;
margin-bottom: 0;
*margin-left: .3em;
font-size: 12px;
padding: 2px 5px 2px 12px;
line-height: 20px;
color: #333333;
text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
vertical-align: middle;
cursor: pointer;
background-color: #f5f5f5;
*background-color: #e6e6e6;
background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
background-repeat: repeat-x;
border: 1px solid #cccccc;
*border: 0;
border-color: #e6e6e6 #e6e6e6 #bfbfbf;
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
border-bottom-color: #b3b3b3;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);
filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
*zoom: 1;
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
-moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
}
button.ui-multiselect.ui-state-default.ui-corner-all:hover {
color: #333333;
background: #e6e6e6;
*background: #d9d9d9;
}
button.ui-multiselect.ui-state-default.ui-corner-all {
margin-bottom: 10px;
}
/* Filter Form */
form.filter-form,
form#summary-filter-form
{
float: left;
background-color: rgba(255,255,255,0.8);
padding: 5px 10px;
border-radius: 5px;
}
.horiz_filter_form {
float: left;
margin-right: 20px;
}
.horiz_filter_form .filter-controls,
.horiz_filter_form .filter-submit {
margin: 30px 0 12px 0;
}
.horiz_filter_form div.filter-controls {
margin-right: 20px;
}
.horiz_filter_form.filter-manager-row {
margin: 23px 0 0 0;
}
.fm-accept {
background: url(../../img/filter/save.png) no-repeat scroll 0 0 transparent !important;
}
/* Read & Update - Migrate to DRMP */
#edit-btn {
float: left;
}
.ui-multiselect-all span,
.ui-multiselect-none span,
.filter-clear.action-lnk {
text-decoration: underline;
color: #0088CC;
}
/* Register screen */
#auth_user_org_group_id {
margin-left: 10px;
}
/* Contacts Page */
.form-container #pr_person_sub_human_resourcehuman_resource__label {
/* Hide the colon */
display: none;
}
/* Adjust Field Widths to match Titles/Data */
#sub_human_resourcehuman_resource_human_resourcehuman_resource_i_organisation_id_edit_none,
#sub_human_resourcehuman_resource_human_resourcehuman_resource_i_organisation_id_edit_0 {
width: 250px;
}
#sub_human_resourcehuman_resource_human_resourcehuman_resource_i_job_title_id_edit_none,
#sub_human_resourcehuman_resource_human_resourcehuman_resource_i_job_title_id_edit_0,
#sub_human_resourcehuman_resource_human_resourcehuman_resource_i_site_id_edit_none,
#sub_human_resourcehuman_resource_human_resourcehuman_resource_i_site_id_edit_0 {
width: 120px;
}
#sub_phonecontact_phonecontact_i_value_edit_none,
#sub_phonecontact_phonecontact_i_value_edit_0,
#sub_emailcontact_emailcontact_i_value_edit_none,
#sub_emailcontact_emailcontact_i_value_edit_0 {
width: 240px;
}
/* Action Toolbar */
.action-bar.fleft {
color: #8a8989;
font-size: 14px;
position: relative;
top: 4px;
float: left;
margin-right: 8px;
}
/* Saved Filters Page - Inline Editor for Filter Titles */
form.jeditable-input input {
max-width: 400px !important;
}
.pt-form legend {
font-size: 14px;
margin-bottom: 0;
border: 0 !important;
}
button.toggle-text {
font-size: 10px !important;
margin-left: 12px !important;
}
/* Map Borders*/
div.map_save_button,
div.map_save_panel,
div.map_legend_tab,
div.map_legend_panel,
div.x-panel-body {
border: 1px solid #B2B2B2;
}
div.map_legend_tab {
border-right: none;
margin-right: -1px;
}
div.map_legend_panel {
margin-bottom: 30px;
}
/* Report */
#charts .pt-form,
#charts .pt-form fieldset {
border: none;
background-color: transparent;
margin-top: 0;
padding-top: 0;
margin-bottom: 0;
padding-bottom: 0;
}
.pt-chart-title {
text-align: center;
width: 100%;
}
.pt-chart-contents {
background-color: white;
border: 1px solid #b2b2b2;
border-radius: 5px;
}
#charts legend,
.pt-fact-single-option,
#charts tr td:nth-child(3),
#summary-2-cols,
.pt-show-totals-option,
.pt-chart-controls,
.pt-hide-chart,
.pt-toggle-table {
display: none;
} |
config/google-chrome/Default/Extensions/mlejngncgiocofkcbnnpaieapabmanfl/1.2.3_0/options.css | theodorosploumis/dotfiles | html {
background: #E4E3EB url(vertical-stripes.png);
color: #8972A2;
font: 13px Helvetica, sans-serif;
}
body {
min-width: 640px;
max-width: 1100px;
margin: 0 auto;
padding: 8px;
}
.layout {
width: 100%;
border-collapse: collapse;
border-spacing: 0;
}
thead {
text-align: center;
font-weight: bold;
text-shadow: 0 1px rgba(255, 255, 255, 0.8);
}
thead td {
padding: 1em 0;
}
tbody {
vertical-align: top;
}
td {
padding: 0;
}
h3 {
font-size: 14px;
width: 4em;
margin: 0;
padding: 8px 1em 0 0;
text-align: right;
text-shadow: 0 1px rgba(255, 255, 255, 0.8);
}
fieldset {
border: none;
box-shadow: 0px 1px 3px -1px rgba(35, 0, 124, .5);
margin: 0 auto 16px;
box-sizing: border-box;
padding: 0;
overflow: hidden;
border-radius: 3px;
}
input {
font-family: inherit;
}
.input-text {
width: 99%;
font-size: inherit;
border: none;
background: transparent;
color: black;
padding: 8px 0 8px 4px;
margin: 0;
border-radius: 2px;
-webkit-transition: .1s background-color linear;
}
.input-text::-webkit-input-placeholder {
color: #BCC4D5;
}
.input-text:hover {
background: rgba(255, 255, 255, 0.4);
}
.input-text:focus {
background: #FFFFF5;
color: black;
}
#routes {
min-width: 300px;
}
.error {
display: none;
}
.rule, .pipe {
-webkit-transition: .5s opacity linear;
}
.row {
padding: 6px 8px;
background: #E4ECF8 url(stripes.png);
box-shadow: 0 1px rgba(255, 255, 249, 0.4) inset;
color: #7281A2;
}
.row + .row {
border-top: 1px solid #E4E5F8;
}
.row-error {
background-color: #FDD;
color: #900;
}
.row-error .error {
display: block;
}
.row p {
-webkit-box-flex: 1;
margin: 0;
padding: 0;
}
.row-error .input-text::-webkit-input-placeholder {
color: #CE9191;
}
#routes .row {
display: -webkit-box;
}
.pipes-col {
width: 150px;
}
#pipes {
display: block;
width: 150px;
height: 100%;
}
.pipe-new {
opacity: 0;
}
.pipe-line {
stroke: #b1bcd0;
width: 1px;
}
.pipe-fat-line {
stroke: transparent;
stroke-width: 16;
}
.pipe-line-shadow {
stroke: #eaeaf0;
stroke-width: 3px;
}
.pipe-hovered .pipe-end-middle {
fill: #6969FF;
}
.pipe-hovered .pipe-line {
stroke: #6969FF;
}
.pipe-hovered .pipe-line-shadow {
stroke: #e0f7fe;
}
.draggable {
cursor: -webkit-grab;
}
.pipe-dragging .draggable {
cursor: -webkit-grabbing;
}
.pipe-dragging #servers .rule:not([id]) {
-webkit-transition-duration: .1s;
opacity: 0.5;
}
#servers .row {
display: block;
border-radius: 5px;
}
.rule-nearest {
box-shadow: 0 0 1px 2px #6969FF;
}
.server-ok {
background-color: #D4F1C8;
}
.repeatable-invisible {
opacity: 0;
}
@media (-webkit-min-device-pixel-ratio: 2) {
html {
background-size: 6px;
}
}
|
web/email.html | Annlover/express2.0 | <!doctype html>
<html id="ng-app">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="themes/default/img/favicon.ico" type="image/x-icon">
<link rel="stylesheet" type="text/css" href="themes/default/bootstrap/css/bootstrap.min.css"/>
<link rel="stylesheet" type="text/css" href="themes/default/css/base.css"/>
<script src="js/dev/lib/jquery/dist/jquery.min.js"></script>
<title>成功</title>
<script>
var ss = 10;
function timer()
{
if(ss <= 0){
var href = window.location.href;
window.open(href,"_self","");
window.close();
}
var time = ss--;
document.getElementById("timer").innerHTML = time + " 秒内页面将自动关闭";
}
$(document).ready(function(){
setInterval("timer()",1000);
});
</script>
</head>
<body>
<header class="navbar navbar-static-top sys-navbar navbar-inverse">
<div class="container">
<div class="navbar-header">
<a class="navbar-brand sys-navlogo">
<img src="themes/default/img/logo.jpg" height="40">
</a>
</div>
</div>
</header>
<div class="jumbotron">
<h3 class="col-lg-offset-3">恭喜您!您已经完成了邮箱的验证,请继续操作已完成注册!</h3>
<div class="sp-line"></div>
<div class="jumbotron-step col-lg-offset-3">
<div>STEP 1 - 补充用户详细信息</div>
<div>STEP 2 - 上传证件信息</div>
<div>STEP 3 - 完成注册</div>
<div>STEP 4 - 通过主页直接开启速递之旅</div>
</div>
<div class="text-center margin-height-space-sm">
<button class="btn btn-warning"><div id = "timer">10 秒内页面将自动关闭</div></button>
</div>
</div>
<footer class="footer" coor="footer">
<div class="container">
<div class="row">
<div class="col-lg-10 col-lg-offset-1 partner">
<article class="col-lg-3 partner-item">
<h6 class="title">
<a class="more" target="_blank" title="详细网点"><i class="glyphicon glyphicon-tag padding-width-space-sm"></i>详细网点</a><br>
<b>138 处全球网点支持</b>
</h6>
<div class="partner-img">
<a target="_blank" class="icon-partner-bank">
<img src="themes/default/img/partner1.jpg"/>
</a>
</div>
</article>
<article class="col-lg-3 partner-item">
<h6 class="title">
<a class="more" target="_blank" title="时间故事"><i class="glyphicon glyphicon-tag padding-width-space-sm"></i>时间故事</a><br>
<b>10 年安全稳定零失误的传递</b>
</h6>
<div class="partner-img">
<a target="_blank" class="icon-partner-bank">
<img src="themes/default/img/partner2.jpg"/>
</a>
</div>
</article>
<article class="col-lg-3 partner-item">
<h6 class="title">
<a class="more" target="_blank" title="业务详情"><i class="glyphicon glyphicon-tag padding-width-space-sm"></i>业务详情</a><br>
<b>2,000,000 笔订单处理</b>
</h6>
<div class="partner-img">
<a target="_blank" class="icon-partner-bank">
<img src="themes/default/img/partner3.jpg"/>
</a>
</div>
</article>
<article class="col-lg-3 partner-item">
<h6 class="title">
<a href="http://www.annlover.com" class="more" target="_blank" title="系统信息"><i class="glyphicon glyphicon-tag padding-width-space-sm"></i>系统信息</a><br>
<b>2015.03.01 全新互联网系统</b>
</h6>
<div class="partner-img">
<a href="http://www.annlover.com" target="_blank" class="icon-partner-bank">
<img src="themes/default/img/partner4.jpg"/>
</a>
</div>
</article>
</div>
</div>
<div class="row">
<ul class="link">
<li class="link-item"><a target="_blank" title="关于仲良">关于仲良</a></li>
<li class="link-item"><a target="_blank" title="官方博客">官方博客</a></li>
<li class="link-item"><a target="_blank" title="诚征英才">诚征英才</a></li>
<li class="link-item"><a target="_blank" title="开放平台">开放平台</a></li>
<li class="link-item"><a target="_blank" title="联系我们">联系我们</a></li>
<li class="link-item"><a target="_blank" title="网站地图">网站地图</a></li>
<li class="link-item"><a href="http://www.annlover.com" target="_blank" title="技术支持">技术支持</a></li>
<li class="link-item">仲良物流版权所有 2015-2017 <a href="http://www.brother-express.com" target="_blank">沪ICP备15007970号-1</a></li>
<div class="clearfix"></div>
</ul>
</div>
</div>
</footer>
</body>
</html> |
src/django_toopy_editor/static/css/toopy/style.css | toopy/django-toopy-editor | a {
color: #000;
text-decoration: none;
}
a:hover {
cursor: pointer;
text-shadow: 1px 1px 1px #aaa;
}
body {
font-family: 'Oxygen', Arial, sans-serif;
font-size: 18px;
margin: 0;
}
h1 {
border-bottom: 1px dotted #ddd;
font-size: 32px;
font-weight: normal;
margin: 0;
margin-top: 12px;
text-transform: capitalize;
}
h2 {
font-size: 24px;
font-weight: normal;
text-transform: capitalize;
}
img {
display: block;
margin-left: auto;
margin-right: auto;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
}
li {
margin: 0;
padding: 0;
}
p {
margin: 0;
padding: 0;
}
.container_12 {
background: #fff;
opacity: 0.9;
}
.header {
background: #111;
padding-bottom: 4px;
padding-top: 12px;
}
.header a {
color: #fff;
display: block;
margin-left: 20px;
text-shadow: 1px 1px 1px #aaa;
}
.company a {
font-size: 64px;
margin-left: 40px;
}
.messages li {
background: #0b2;
color: #fff;
padding: 4px 0;
text-align: center;
opacity: 0.6;
}
.company:hover a {
}
.menu {
font-size: 24px;
line-height: 32px;
text-align: center;
text-transform: capitalize;
}
.menu a {
display: block;
}
.menu a:hover {
}
.title {
}
.title a {
padding-left: 20px;
}
div.app-item,
div.app-item a {
display: block;
height: 32px;
line-height: 32px;
}
.app-item {
border-bottom: 1px solid transparent;
}
.app-item:hover {
background: #eee;
border-bottom: 1px dotted #aaa;
cursor: pointer;
}
.app-remove a {
color: #e44;
}
.app-remove a:hover {
color: #e11;
}
div.content,
div.form {
margin-bottom: 24px;
margin-top: 24px;
}
.form p {
margin-top: 10px;
}
.form label,
.form input,
.form select,
.form textarea {
border: none;
background: none;
display: block;
margin-bottom: 8px;
width: 100%;
}
.form input,
.form select,
.form textarea {
border-bottom: 1px dotted #aaa;
}
.form select,
.form option,
.form input {
font-size: 18px;
height: 32px;
line-height: 32px;
}
.form input[type="submit"] {
background: #e44;
border: none;
color: #eee;
text-transform: capitalize;
}
.form input[type="submit"]:hover {
background: #e11;
color: #fff;
border: none;
cursor: pointer;
}
.footer {
border-top: 1px dotted #888;
background: #eee;
margin-top: 10px;
}
.footer div {
margin-bottom: 10px;
}
.footer-title {
font-size: 18px;
text-transform: capitalize;
}
.footer ul {
margin-left: 4px;
margin-bottom: 8px;
}
.credits {
border-top: 1px dotted #fff;
background: #000;
color: #fff;
text-align: center;
}
.credits a {
color: #fff;
}
.credits div {
padding: 10px 0;
}
.credits-licence b {
font-size: 18px;
}
.credits-powered b {
font-size: 12px;
}
|
css/styles/purple.css | samiarshad/samiarshad.github.io | ul#navigation li.external:hover .fa, ul#navigation li.currentmenu .fa{
color: #ec46ef;
}
.ul-boxed li {
border-left-color:#ec46ef;
}
ul.ul-card li .dy .year {
background-color: #ec46ef;
}
ul.ul-dates div.dates span {
background-color: #ec46ef;
}
ul.timeline li .date {
background: #ec46ef;
}
ul.timeline li .data {
border-left-color: #ec46ef;
}
.ul-withdetails li .imageoverlay {
background: #ec46ef;
}
.cd-active.cd-dropdown > span {
color: #ec46ef;
}
.cd-active.cd-dropdown ul li span:hover {
background: #ec46ef;
}
.pitems .pubmain .pubassets {
border-top-color:#ec46ef;
}
.pitems .pubmain .pubassets a:hover,.pitems .pubmain .pubassets a:focus,.pitems .pubmain .pubassets a.pubcollapse {
background: #ec46ef;
}
.contact-office .icon-huge, .contact-lab .icon-huge {
color: #ec46ef;
}
/* socpndary color
**************************************************/
ul.ul-card li .dy .degree {
background-color: #ef65f2;
}
ul.ul-dates div.dates span:last-child {
background-color: #ef65f2;
}
ul.timeline li.open .circle {
background-color: #ef65f2;
}
ul.timeline li.open .data {
border-color: #ef65f2;
}
#labp-heads-wrap {
background-color: #ef65f2;
}
#labp-heads-wrap:after{
border-top-color: #ef65f2;
}
|
doc/_build/html/_modules/intermol/gromacs/grofile_parser.html | mrshirts/InterMol |
<!DOCTYPE html>
<!--[if IE 8]><html class="no-js lt-ie9" lang="en" > <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en" > <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>intermol.gromacs.grofile_parser — InterMol 0.2a1 documentation</title>
<link href='https://fonts.googleapis.com/css?family=Lato:400,700|Roboto+Slab:400,700|Inconsolata:400,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="../../../_static/css/theme.css" type="text/css" />
<link rel="top" title="InterMol 0.2a1 documentation" href="../../../index.html"/>
<link rel="up" title="Module code" href="../../index.html"/>
<script src="https://cdnjs.cloudflare.com/ajax/libs/modernizr/2.6.2/modernizr.min.js"></script>
</head>
<body class="wy-body-for-nav" role="document">
<div class="wy-grid-for-nav">
<nav data-toggle="wy-nav-shift" class="wy-nav-side">
<div class="wy-side-nav-search">
<a href="../../../index.html" class="fa fa-home"> InterMol</a>
<div role="search">
<form id ="rtd-search-form" class="wy-form" action="../../../search.html" method="get">
<input type="text" name="q" placeholder="Search docs" />
<input type="hidden" name="check_keywords" value="yes" />
<input type="hidden" name="area" value="default" />
</form>
</div>
</div>
<div class="wy-menu wy-menu-vertical" data-spy="affix" role="navigation" aria-label="main navigation">
<ul>
<li class="toctree-l1"><a class="reference internal" href="../../../installation.html">Installation</a><ul>
<li class="toctree-l2"><a class="reference internal" href="../../../installation.html#install-with-pip-coming-soon">Install with pip (coming soon!)</a></li>
<li class="toctree-l2"><a class="reference internal" href="../../../installation.html#install-from-source">Install from source</a></li>
<li class="toctree-l2"><a class="reference internal" href="../../../installation.html#dependencies">Dependencies</a></li>
</ul>
</li>
</ul>
<ul>
<li class="toctree-l1"><a class="reference internal" href="../../../development.html">Contributing</a><ul>
<li class="toctree-l2"><a class="reference internal" href="../../../development.html#bug-reports">Bug Reports</a></li>
<li class="toctree-l2"><a class="reference internal" href="../../../development.html#code-style">Code Style</a></li>
<li class="toctree-l2"><a class="reference internal" href="../../../development.html#running-our-tests">Running our tests</a></li>
<li class="toctree-l2"><a class="reference internal" href="../../../development.html#git-flow">Git Flow</a></li>
</ul>
</li>
</ul>
<ul>
<li class="toctree-l1"><a class="reference internal" href="../../../apidoc/intermol.html">intermol package</a><ul>
<li class="toctree-l2"><a class="reference internal" href="../../../apidoc/intermol.html#subpackages">Subpackages</a></li>
<li class="toctree-l2"><a class="reference internal" href="../../../apidoc/intermol.html#submodules">Submodules</a></li>
<li class="toctree-l2"><a class="reference internal" href="../../../apidoc/intermol.html#module-intermol">Module contents</a></li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="../../../apidoc/intermol.gromacs.html">intermol.gromacs package</a><ul>
<li class="toctree-l2"><a class="reference internal" href="../../../apidoc/intermol.gromacs.html#submodules">Submodules</a></li>
<li class="toctree-l2"><a class="reference internal" href="../../../apidoc/intermol.gromacs.html#module-intermol.gromacs">Module contents</a></li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="../../../apidoc/intermol.lammps.html">intermol.lammps package</a><ul>
<li class="toctree-l2"><a class="reference internal" href="../../../apidoc/intermol.lammps.html#submodules">Submodules</a></li>
<li class="toctree-l2"><a class="reference internal" href="../../../apidoc/intermol.lammps.html#module-intermol.lammps">Module contents</a></li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="../../../apidoc/intermol.forces.html">intermol.forces package</a><ul>
<li class="toctree-l2"><a class="reference internal" href="../../../apidoc/intermol.forces.html#submodules">Submodules</a></li>
<li class="toctree-l2"><a class="reference internal" href="../../../apidoc/intermol.forces.html#module-intermol.forces">Module contents</a></li>
</ul>
</li>
</ul>
</div>
</nav>
<section data-toggle="wy-nav-shift" class="wy-nav-content-wrap">
<nav class="wy-nav-top" role="navigation" aria-label="top navigation">
<i data-toggle="wy-nav-top" class="fa fa-bars"></i>
<a href="../../../index.html">InterMol</a>
</nav>
<div class="wy-nav-content">
<div class="rst-content">
<div role="navigation" aria-label="breadcrumbs navigation">
<ul class="wy-breadcrumbs">
<li><a href="../../../index.html">Docs</a> »</li>
<li><a href="../../index.html">Module code</a> »</li>
<li>intermol.gromacs.grofile_parser</li>
<li class="wy-breadcrumbs-aside">
</li>
</ul>
<hr/>
</div>
<div role="main">
<h1>Source code for intermol.gromacs.grofile_parser</h1><div class="highlight"><pre>
<span class="kn">import</span> <span class="nn">logging</span>
<span class="kn">from</span> <span class="nn">simtk.unit</span> <span class="kn">import</span> <span class="n">nanometers</span>
<span class="kn">import</span> <span class="nn">numpy</span> <span class="kn">as</span> <span class="nn">np</span>
<span class="n">logger</span> <span class="o">=</span> <span class="n">logging</span><span class="o">.</span><span class="n">getLogger</span><span class="p">(</span><span class="s">'InterMolLog'</span><span class="p">)</span>
<div class="viewcode-block" id="GromacsGroParser"><a class="viewcode-back" href="../../../apidoc/intermol.gromacs.grofile_parser.html#intermol.gromacs.grofile_parser.GromacsGroParser">[docs]</a><span class="k">class</span> <span class="nc">GromacsGroParser</span><span class="p">(</span><span class="nb">object</span><span class="p">):</span>
<span class="sd">"""GromacsGroParser reads and writes Gromacs .gro files</span>
<span class="sd"> A .gro file also contains some topological information, such as elements and</span>
<span class="sd"> residue names, but not enough to construct a full Topology object. This</span>
<span class="sd"> information is recorded and stored in the object's public fields.</span>
<span class="sd"> """</span>
<span class="k">def</span> <span class="nf">__init__</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">gro_file</span><span class="p">):</span>
<span class="sd">"""Load a .gro gro_file.</span>
<span class="sd"> The atom positions can be retrieved by calling getPositions().</span>
<span class="sd"> Parameters:</span>
<span class="sd"> - gro_file (string) the name of the gro_file to read or write</span>
<span class="sd"> """</span>
<span class="bp">self</span><span class="o">.</span><span class="n">gro_file</span> <span class="o">=</span> <span class="n">gro_file</span>
<div class="viewcode-block" id="GromacsGroParser.read"><a class="viewcode-back" href="../../../apidoc/intermol.gromacs.grofile_parser.html#intermol.gromacs.grofile_parser.GromacsGroParser.read">[docs]</a> <span class="k">def</span> <span class="nf">read</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span>
<span class="n">atomname</span> <span class="o">=</span> <span class="nb">list</span><span class="p">()</span>
<span class="n">resid</span> <span class="o">=</span> <span class="nb">list</span><span class="p">()</span>
<span class="n">resname</span> <span class="o">=</span> <span class="nb">list</span><span class="p">()</span>
<span class="n">boxes</span> <span class="o">=</span> <span class="nb">list</span><span class="p">()</span>
<span class="n">xyzs</span> <span class="o">=</span> <span class="nb">list</span><span class="p">()</span>
<span class="k">with</span> <span class="nb">open</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">gro_file</span><span class="p">)</span> <span class="k">as</span> <span class="n">gro</span><span class="p">:</span>
<span class="nb">next</span><span class="p">(</span><span class="n">gro</span><span class="p">)</span>
<span class="n">n_atoms</span> <span class="o">=</span> <span class="nb">int</span><span class="p">(</span><span class="nb">next</span><span class="p">(</span><span class="n">gro</span><span class="p">)</span><span class="o">.</span><span class="n">strip</span><span class="p">())</span>
<span class="k">for</span> <span class="n">_</span> <span class="ow">in</span> <span class="nb">range</span><span class="p">(</span><span class="n">n_atoms</span><span class="p">):</span>
<span class="n">line</span> <span class="o">=</span> <span class="nb">next</span><span class="p">(</span><span class="n">gro</span><span class="p">)</span>
<span class="p">(</span><span class="n">thisresnum</span><span class="p">,</span> <span class="n">thisresname</span><span class="p">,</span> <span class="n">thisatomname</span><span class="p">)</span> <span class="o">=</span> <span class="p">[</span><span class="n">line</span><span class="p">[</span><span class="n">i</span><span class="o">*</span><span class="mi">5</span><span class="p">:</span><span class="n">i</span><span class="o">*</span><span class="mi">5</span><span class="o">+</span><span class="mi">5</span><span class="p">]</span><span class="o">.</span><span class="n">strip</span><span class="p">()</span> <span class="k">for</span> <span class="n">i</span> <span class="ow">in</span> <span class="nb">range</span><span class="p">(</span><span class="mi">3</span><span class="p">)]</span>
<span class="n">resname</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="n">thisresname</span><span class="p">)</span>
<span class="n">resid</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="nb">int</span><span class="p">(</span><span class="n">thisresnum</span><span class="p">))</span>
<span class="n">atomname</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="n">thisatomname</span><span class="p">)</span>
<span class="n">entries</span> <span class="o">=</span> <span class="n">line</span><span class="p">[</span><span class="mi">20</span><span class="p">:]</span><span class="o">.</span><span class="n">split</span><span class="p">()</span>
<span class="c"># If there aren't 6, then fixed column, presumably 8 digit</span>
<span class="k">if</span> <span class="nb">len</span><span class="p">(</span><span class="n">entries</span><span class="p">)</span> <span class="ow">not</span> <span class="ow">in</span> <span class="p">[</span><span class="mi">3</span><span class="p">,</span> <span class="mi">6</span><span class="p">]:</span>
<span class="n">data</span> <span class="o">=</span> <span class="n">line</span><span class="p">[</span><span class="mi">20</span><span class="p">:]</span>
<span class="n">entries</span> <span class="o">=</span> <span class="p">[]</span>
<span class="n">spacing</span> <span class="o">=</span> <span class="mi">8</span>
<span class="k">for</span> <span class="n">j</span> <span class="ow">in</span> <span class="nb">range</span><span class="p">(</span><span class="mi">0</span><span class="p">,</span> <span class="nb">len</span><span class="p">(</span><span class="n">data</span><span class="p">),</span> <span class="n">spacing</span><span class="p">):</span>
<span class="n">entry</span> <span class="o">=</span> <span class="n">data</span><span class="p">[</span><span class="n">j</span><span class="p">:</span><span class="n">j</span><span class="o">+</span><span class="n">spacing</span><span class="p">]</span><span class="o">.</span><span class="n">strip</span><span class="p">()</span>
<span class="k">if</span> <span class="nb">len</span><span class="p">(</span><span class="n">entry</span><span class="p">)</span> <span class="o">></span> <span class="mi">0</span><span class="p">:</span>
<span class="n">entries</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="n">entry</span><span class="p">)</span>
<span class="n">entries</span> <span class="o">=</span> <span class="p">[</span><span class="nb">float</span><span class="p">(</span><span class="n">x</span><span class="p">)</span> <span class="k">for</span> <span class="n">x</span> <span class="ow">in</span> <span class="n">entries</span><span class="p">]</span>
<span class="n">xyz</span> <span class="o">=</span> <span class="p">[</span><span class="n">x</span> <span class="o">*</span> <span class="n">nanometers</span> <span class="k">for</span> <span class="n">x</span> <span class="ow">in</span> <span class="n">entries</span><span class="p">[:</span><span class="mi">3</span><span class="p">]]</span>
<span class="n">xyzs</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="n">xyz</span><span class="p">)</span>
<span class="n">line</span> <span class="o">=</span> <span class="nb">next</span><span class="p">(</span><span class="n">gro</span><span class="p">)</span>
<span class="n">raw_box_vector</span> <span class="o">=</span> <span class="n">line</span><span class="o">.</span><span class="n">split</span><span class="p">()</span>
<span class="n">v</span> <span class="o">=</span> <span class="n">np</span><span class="o">.</span><span class="n">zeros</span><span class="p">([</span><span class="mi">3</span><span class="p">,</span> <span class="mi">3</span><span class="p">],</span> <span class="nb">float</span><span class="p">)</span> <span class="o">*</span> <span class="n">nanometers</span>
<span class="c"># Diagonals</span>
<span class="k">for</span> <span class="n">i</span> <span class="ow">in</span> <span class="nb">range</span><span class="p">(</span><span class="mi">3</span><span class="p">):</span>
<span class="n">v</span><span class="p">[</span><span class="n">i</span><span class="p">,</span> <span class="n">i</span><span class="p">]</span> <span class="o">=</span> <span class="nb">float</span><span class="p">(</span><span class="n">raw_box_vector</span><span class="p">[</span><span class="n">i</span><span class="p">])</span> <span class="o">*</span> <span class="n">nanometers</span>
<span class="k">if</span> <span class="nb">len</span><span class="p">(</span><span class="n">raw_box_vector</span><span class="p">)</span> <span class="o">==</span> <span class="mi">9</span><span class="p">:</span>
<span class="n">k</span> <span class="o">=</span> <span class="mi">3</span>
<span class="c"># Then the off-diagonals</span>
<span class="k">for</span> <span class="n">i</span> <span class="ow">in</span> <span class="nb">range</span><span class="p">(</span><span class="mi">3</span><span class="p">):</span>
<span class="k">for</span> <span class="n">j</span> <span class="ow">in</span> <span class="nb">range</span><span class="p">(</span><span class="mi">3</span><span class="p">):</span>
<span class="k">if</span> <span class="n">i</span> <span class="o">!=</span> <span class="n">j</span><span class="p">:</span>
<span class="n">v</span><span class="p">[</span><span class="n">i</span><span class="p">,</span> <span class="n">j</span><span class="p">]</span> <span class="o">=</span> <span class="nb">float</span><span class="p">(</span><span class="n">raw_box_vector</span><span class="p">[</span><span class="n">k</span><span class="p">])</span> <span class="o">*</span> <span class="n">nanometers</span>
<span class="n">k</span> <span class="o">+=</span> <span class="mi">1</span>
<span class="n">boxes</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="n">v</span><span class="p">)</span>
<span class="bp">self</span><span class="o">.</span><span class="n">positions</span> <span class="o">=</span> <span class="n">np</span><span class="o">.</span><span class="n">array</span><span class="p">(</span><span class="n">xyzs</span><span class="p">)</span>
<span class="bp">self</span><span class="o">.</span><span class="n">atom_names</span> <span class="o">=</span> <span class="n">atomname</span>
<span class="bp">self</span><span class="o">.</span><span class="n">residue_ids</span> <span class="o">=</span> <span class="n">resid</span>
<span class="bp">self</span><span class="o">.</span><span class="n">residue_names</span> <span class="o">=</span> <span class="n">resname</span>
<span class="bp">self</span><span class="o">.</span><span class="n">box_vector</span> <span class="o">=</span> <span class="n">boxes</span><span class="p">[</span><span class="mi">0</span><span class="p">]</span>
</div>
<div class="viewcode-block" id="GromacsGroParser.write"><a class="viewcode-back" href="../../../apidoc/intermol.gromacs.grofile_parser.html#intermol.gromacs.grofile_parser.GromacsGroParser.write">[docs]</a> <span class="k">def</span> <span class="nf">write</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">system</span><span class="p">):</span>
<span class="sd">"""Write the system out in a Gromacs 4.6 format</span>
<span class="sd"> Args:</span>
<span class="sd"> filename (str): the file to write out to</span>
<span class="sd"> """</span>
<span class="k">with</span> <span class="nb">open</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">gro_file</span><span class="p">,</span> <span class="s">'w'</span><span class="p">)</span> <span class="k">as</span> <span class="n">gro</span><span class="p">:</span>
<span class="n">gro</span><span class="o">.</span><span class="n">write</span><span class="p">(</span><span class="s">"{0}</span><span class="se">\n</span><span class="s">"</span><span class="o">.</span><span class="n">format</span><span class="p">(</span><span class="n">system</span><span class="o">.</span><span class="n">name</span><span class="p">))</span>
<span class="n">gro</span><span class="o">.</span><span class="n">write</span><span class="p">(</span><span class="s">"{0}</span><span class="se">\n</span><span class="s">"</span><span class="o">.</span><span class="n">format</span><span class="p">(</span><span class="n">system</span><span class="o">.</span><span class="n">n_atoms</span><span class="p">))</span>
<span class="k">for</span> <span class="n">n</span><span class="p">,</span> <span class="n">atom</span> <span class="ow">in</span> <span class="nb">enumerate</span><span class="p">(</span><span class="n">system</span><span class="o">.</span><span class="n">atoms</span><span class="p">):</span>
<span class="k">if</span> <span class="n">atom</span><span class="o">.</span><span class="n">name</span><span class="o">.</span><span class="n">isdigit</span><span class="p">():</span>
<span class="c"># Kluge for atoms read in from a LAMMPS data file.</span>
<span class="n">atom</span><span class="o">.</span><span class="n">name</span> <span class="o">=</span> <span class="s">"LMP_{0}"</span><span class="o">.</span><span class="n">format</span><span class="p">(</span><span class="n">atom</span><span class="o">.</span><span class="n">name</span><span class="p">)</span>
<span class="n">gro</span><span class="o">.</span><span class="n">write</span><span class="p">(</span><span class="s">'{0:5d}{1:<4s}{2:6s}{3:5d}'</span><span class="o">.</span><span class="n">format</span><span class="p">(</span>
<span class="n">atom</span><span class="o">.</span><span class="n">residue_index</span><span class="p">,</span> <span class="n">atom</span><span class="o">.</span><span class="n">residue_name</span><span class="p">,</span> <span class="n">atom</span><span class="o">.</span><span class="n">name</span><span class="p">,</span> <span class="n">n</span> <span class="o">+</span> <span class="mi">1</span><span class="p">))</span>
<span class="k">for</span> <span class="n">pos</span> <span class="ow">in</span> <span class="n">atom</span><span class="o">.</span><span class="n">position</span><span class="p">:</span>
<span class="n">gro</span><span class="o">.</span><span class="n">write</span><span class="p">(</span><span class="s">'{0:17.12f}'</span><span class="o">.</span><span class="n">format</span><span class="p">(</span><span class="n">pos</span><span class="o">.</span><span class="n">value_in_unit</span><span class="p">(</span><span class="n">nanometers</span><span class="p">)))</span>
<span class="k">if</span> <span class="nb">len</span><span class="p">(</span><span class="n">atom</span><span class="o">.</span><span class="n">position</span><span class="p">)</span> <span class="o">==</span> <span class="mi">0</span><span class="p">:</span>
<span class="kn">import</span> <span class="nn">pdb</span>
<span class="n">pdb</span><span class="o">.</span><span class="n">set_trace</span><span class="p">()</span>
<span class="n">gro</span><span class="o">.</span><span class="n">write</span><span class="p">(</span><span class="s">'</span><span class="se">\n</span><span class="s">'</span><span class="p">)</span>
<span class="c"># Check for rectangular; should be symmetric, so we don't have to</span>
<span class="c"># check 6 values</span>
<span class="k">if</span> <span class="p">(</span><span class="n">system</span><span class="o">.</span><span class="n">box_vector</span><span class="p">[</span><span class="mi">1</span><span class="p">,</span> <span class="mi">0</span><span class="p">]</span><span class="o">.</span><span class="n">_value</span> <span class="o">==</span> <span class="mi">0</span> <span class="ow">and</span>
<span class="n">system</span><span class="o">.</span><span class="n">box_vector</span><span class="p">[</span><span class="mi">2</span><span class="p">,</span> <span class="mi">0</span><span class="p">]</span><span class="o">.</span><span class="n">_value</span> <span class="o">==</span> <span class="mi">0</span> <span class="ow">and</span>
<span class="n">system</span><span class="o">.</span><span class="n">box_vector</span><span class="p">[</span><span class="mi">2</span><span class="p">,</span> <span class="mi">1</span><span class="p">]</span><span class="o">.</span><span class="n">_value</span> <span class="o">==</span> <span class="mi">0</span><span class="p">):</span>
<span class="k">for</span> <span class="n">i</span> <span class="ow">in</span> <span class="nb">range</span><span class="p">(</span><span class="mi">3</span><span class="p">):</span>
<span class="n">gro</span><span class="o">.</span><span class="n">write</span><span class="p">(</span><span class="s">'{0:11.7f}'</span><span class="o">.</span><span class="n">format</span><span class="p">(</span><span class="n">system</span><span class="o">.</span><span class="n">box_vector</span><span class="p">[</span><span class="n">i</span><span class="p">,</span> <span class="n">i</span><span class="p">]</span><span class="o">.</span><span class="n">value_in_unit</span><span class="p">(</span><span class="n">nanometers</span><span class="p">)))</span>
<span class="k">else</span><span class="p">:</span>
<span class="k">for</span> <span class="n">i</span> <span class="ow">in</span> <span class="nb">range</span><span class="p">(</span><span class="mi">3</span><span class="p">):</span>
<span class="n">gro</span><span class="o">.</span><span class="n">write</span><span class="p">(</span><span class="s">'{0:11.7f}'</span><span class="o">.</span><span class="n">format</span><span class="p">(</span><span class="n">system</span><span class="o">.</span><span class="n">box_vector</span><span class="p">[</span><span class="n">i</span><span class="p">,</span> <span class="n">i</span><span class="p">]</span><span class="o">.</span><span class="n">value_in_unit</span><span class="p">(</span><span class="n">nanometers</span><span class="p">)))</span>
<span class="k">for</span> <span class="n">i</span> <span class="ow">in</span> <span class="nb">range</span><span class="p">(</span><span class="mi">3</span><span class="p">):</span>
<span class="k">for</span> <span class="n">j</span> <span class="ow">in</span> <span class="nb">range</span><span class="p">(</span><span class="mi">3</span><span class="p">):</span>
<span class="k">if</span> <span class="n">i</span> <span class="o">!=</span> <span class="n">j</span><span class="p">:</span>
<span class="n">gro</span><span class="o">.</span><span class="n">write</span><span class="p">(</span><span class="s">'{0:11.7f}'</span><span class="o">.</span><span class="n">format</span><span class="p">(</span><span class="n">system</span><span class="o">.</span><span class="n">box_vector</span><span class="p">[</span><span class="n">i</span><span class="p">,</span> <span class="n">j</span><span class="p">]</span><span class="o">.</span><span class="n">value_in_unit</span><span class="p">(</span><span class="n">nanometers</span><span class="p">)))</span>
<span class="n">gro</span><span class="o">.</span><span class="n">write</span><span class="p">(</span><span class="s">'</span><span class="se">\n</span><span class="s">'</span><span class="p">)</span>
</pre></div></div></div>
</div>
<footer>
<hr/>
<div role="contentinfo">
<p>
© Copyright 2015, Christoph Klein, Christopher Lee, Ellen Zhong, and Michael Shirts.
</p>
</div>
<a href="https://github.com/snide/sphinx_rtd_theme">Sphinx theme</a> provided by <a href="https://readthedocs.org">Read the Docs</a>
</footer>
</div>
</div>
</section>
</div>
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'../../../',
VERSION:'0.2a1',
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>
<script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
<script type="text/javascript" src="../../../_static/js/theme.js"></script>
<script type="text/javascript">
jQuery(function () {
SphinxRtdTheme.StickyNav.enable();
});
</script>
</body>
</html> |
examples/texture_video_emit.html | dayo7116/scenejs | <!DOCTYPE html>
<html lang="en">
<head>
<title>SceneJS</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<style>
body {
margin: 0;
-moz-user-select: -moz-none;
-khtml-user-select: none;
-webkit-user-select: none;
}
</style>
<script src="../api/latest/scenejs.min.js"></script>
<link href="css/styles.css" rel="stylesheet"/>
<body>
<div id="infoLight">
<a href="http://scenejs.org">SceneJS</a> - <a href="../api/latest/plugins/node/texture/video.js" target="_other">video texture</a> applied to material emissivity
</div>
<script>
// Point SceneJS to the bundled plugins
SceneJS.setConfigs({
pluginPath: "../api/latest/plugins"
});
// Create scene
SceneJS.createScene({
nodes: [
// Orbiting camera node, implemented by plugin at
// http://scenejs.org/api/latest/plugins/node/cameras/orbit.js
{
type: "cameras/orbit",
yaw: 30,
pitch: -30,
zoom: 5,
zoomSensitivity: 1.0,
nodes: [
// Override SceneJS' default lights to define dull ambient light
// to accentuate our glow map
{
type: "lights",
lights: [
{
mode: "ambient",
color: { r: 0.2, g: 0.2, b: 0.2 },
diffuse: true,
specular: false
},
{
mode: "dir",
color: { r: 0.5, g: 0.5, b: 1.0 },
diffuse: true,
specular: true,
dir: { x: 0.5, y: 0.5, z: -1.0 },
space: "view"
}
],
nodes: [
{
type: "material",
color: { r: 1.0, g: 0.6, b: 0.6 },
emit: 1.0,
nodes: [
// Video texture, implemented by plugin at
// http://scenejs.org/api/latest/plugins/node/texture/video.js
{
type: "texture/video",
src: "movies/testVideo.ogv",
applyTo: "emit",
nodes: [
// Box primitive implemented by plugin at http://scenejs.org/api/latest/plugins/node/geometry/box.js
{
type: "geometry/box"
}
]
}
]
}
]
}
]
}
]
});
</script>
</body>
</html> |
src/common/layers/partials/layerattributevisibility.tpl.html | terranodo/MapLoom | <div class="modal-body">
<div id="attributeRow" class="row" ng-show="layer.get('metadata').editable">
<ul class="list-group">
<li class="list-group-item" ng-repeat="attribute in getAttrList(layer)">
<div class="attribute-value ellipsis">{{attribute._name}}</div>
<div class="layer-buttons">
<span ng-click="toggleAttributeVisibility(attribute)"
class="btn btn-xs btn-default layer-visible-button"
ng-class="{'layer-visible': attribute.visible}">
<i class="glyphicon" ng-class="{'glyphicon-eye-close': !attribute.visible, 'glyphicon-eye-open': attribute.visible}"></i>
</span>
</div>
</li>
</ul>
</div>
</div>
|
example/css/default.css | Wildhoney/MayBee | * {
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: "Roboto Condensed", sans-serif;
}
body, html {
width: 100%;
height: 100%;
}
body {
display: flex;
justify-content: center;
align-items: center;
background: linear-gradient(to bottom, rgba(64, 150, 238, 1) 0%,rgba(64, 150, 238, 1) 100%);
flex-direction: column;
}
h1, h2, h3 {
color: white;
display: block;
font-weight: normal;
}
h1 {
font-weight: 700;
font-size: 65px;
}
h2 {
font-weight: 400;
font-size: 20px;
color: rgba(255, 255, 255, .85);
}
h3 {
color: rgba(255, 255, 255, .75);
font-weight: 300;
font-size: 12px;
opacity: 0;
transition: opacity 10s;
}
h3 a {
color: rgba(255, 255, 255, .75);
}
h3.visible {
opacity: 1;
}
ul.chalkboard {
list-style-type: square;
}
ul.chalkboard li {
color: white;
font-size: 11px;
}
ul.chalkboard li span {
color: rgba(255, 255, 255, .5);
}
|
workshop/templates/workshop/workshop_detail.html | akshayharidas/fosswebsite | <!-- Created by Navaneeth S, navisk13@gmail.com -->
{% extends 'base/base.html' %}
{% block title %} {{ object.name }} {% endblock %}
{% load static %}
{% block script %}
<!-- Latest compiled and minified JavaScript -->
{% endblock %}
{% block body %}
{% include 'base/nav-bar.html' %}
<div id="wrap">
<div id="main">
<!-- content goes here -->
<div class="container">
<div class="row">
<h1 class="head col-md-12">{{ object.name }}</h1>
<div class="col-md-12">
<div class="card mb-3">
{% if object.poster %}
<img class="card-img-top img-fluid" src="/static/media/{{ object.poster }}">
{% else %}
<img class="card-img-top img-fluid" src="{% static 'workshop/default.png' %}">
{% endif %}
<div class="card-block">
<h4 class="card-title">{{ object.name }}</h4>
<p class="card-text preserve-contents">{{ object.overview }}</p>
<p class="card-text preserve-contents">{{ object.course_details }}</p>
<p class="card-text preserve-contents">{{ object.project }}</p>
<p class="card-text preserve-contents">{{ object.other_info }}</p>
<p class="card-text">{{ object.start_date_time }} to {{ object.end_date_time }}</p>
<hr>
<h5 class="card-text">Rs. {{ object.price }}</h5>
<p>
<small>Register and pay the amount at FOSS club, ground floor lab after 4:30pm
on or before {{ object.start_date_time }} Please make sure you pay the amount as
soon as possible so that your seat gets confirmed.
</small>
</p>
<p>Contact: {{ object.contact_info }}</p>
<p>Resource link: <a href="{{ object.link }}">{{ object.link }}</a> </p>
<p>
<small class="text-muted">
seats remaining : {{ no_of_seats_left }}
</small>
</p>
{% if seats_left %}
<a href="{% url 'workshop_register' object.id %}">
<button type="submit" class="btn btn-primary add-btn">Register now</button>
</a>
{% else %}
<a>
<button type="submit" class="btn add-btn">No seat left</button>
</a>
<p>
<small class="text-muted">
<a href="{% url 'foss_intro' %}#seventh">Contact us</a> to check for more
seats.
</small>
</p>
{% endif %}
</div>
</div>
</div>
</div>
</div>
<div class="container">
<h2 class="head col-md-12">Feedback</h2>
{% for i in feedback %}
<div class="card">
<ul class="list-group list-group-flush">
<li class="list-group-item">
{% if i.name %}
<strong>{{ i.name }}</strong>
{% else %}
<strong>Anonymous</strong>
{% endif %}
:{{ i.comment }}</li>
</ul>
</div>
{% endfor %}
</div>
</div>
</div>
{% include 'base/footer.html' %}
<style>
.container {
margin-top: 50px;
}
.add-btn {
margin-top: 20px;
}
.margin-20 {
margin: 24px;
}
.head {
margin: 30px 0;
}
.link {
text-decoration: none !important;
color: black;
}
</style>
{% endblock %}
|
client/lib/angular/docs/partials/api/ngMessages/directive/ngMessageExp.html | SergKam/uade | <a href='https://github.com/angular/angular.js/edit/v1.5.x/src/ngMessages/messages.js?message=docs(ngMessageExp)%3A%20describe%20your%20change...#L571' class='improve-docs btn btn-primary'><i class="glyphicon glyphicon-edit"> </i>Improve this Doc</a>
<a href='https://github.com/angular/angular.js/tree/v1.5.0-rc.1/src/ngMessages/messages.js#L571' class='view-source pull-right btn btn-primary'>
<i class="glyphicon glyphicon-zoom-in"> </i>View Source
</a>
<header class="api-profile-header">
<h1 class="api-profile-header-heading">ngMessageExp</h1>
<ol class="api-profile-header-structure naked-list step-list">
<li>
- directive in module <a href="api/ngMessages">ngMessages</a>
</li>
</ol>
</header>
<div class="api-profile-description">
<p><code>ngMessageExp</code> is a directive with the purpose to show and hide a particular message.
For <code>ngMessageExp</code> to operate, a parent <code>ngMessages</code> directive on a parent DOM element
must be situated since it determines which messages are visible based on the state
of the provided key/value map that <code>ngMessages</code> listens on.</p>
</div>
<div>
<h2>Directive Info</h2>
<ul>
<li>This directive creates new scope.</li>
<li>This directive executes at priority level 1.</li>
</ul>
<h2 id="usage">Usage</h2>
<div class="usage">
<pre><code class="lang-html"><!-- using attribute directives -->
<ANY ng-messages="expression">
<ANY ng-message-exp="expressionValue">...</ANY>
</ANY>
<!-- or by using element directives -->
<ng-messages for="expression">
<ng-message when-exp="expressionValue">...</ng-message>
</ng-messages>
</code></pre>
<p><a href="api/ngMessages">Click here</a> to learn more about <code>ngMessages</code> and <code>ngMessage</code>.</p>
</div>
<section class="api-section">
<h3>Arguments</h3>
<table class="variables-matrix input-arguments">
<thead>
<tr>
<th>Param</th>
<th>Type</th>
<th>Details</th>
</tr>
</thead>
<tbody>
<tr>
<td>
ngMessageExp
| whenExp
</td>
<td>
<a href="" class="label type-hint type-hint-expression">expression</a>
</td>
<td>
<p>an expression value corresponding to the message key.</p>
</td>
</tr>
</tbody>
</table>
</section>
</div>
|
_includes/head.html | cubeplan/cubeplan.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 content='#2f3241' name='theme-color' />
<link rel='shortcut icon' href='{{ site.baseurl }}/images/favicon.ico'/>
<link rel='stylesheet' href='{{ site.baseurl }}/css/index.css'>
{% seo %}
{% feed_meta %}
<script src="{{ site.baseurl }}/js/index.js"></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-3769691-57', 'auto');
ga('send', 'pageview');
</script>
</head>
|
lit2go.ok/186/miscellaneous-poems/3488/evening/index.html | adrianosb/HtmlToText | <!DOCTYPE html>
<html>
<head>
<title>Evening | Miscellaneous Poems | Paul Laurence Dunbar | Lit2Go ETC</title>
<link rel="stylesheet" href="http://etc.usf.edu/lit2go/css/screenless.css" type="text/css" media="screen" title="no title" charset="utf-8">
<link rel="stylesheet" href="http://etc.usf.edu/lit2go/css/printless.css" type="text/css" media="print" title="no title" charset="utf-8">
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script type="text/javascript" defer src="http://etc.usf.edu/lit2go/js/js.min.js"></script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-5574891-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
$(document).ready(function() {
$('img').unveil();
$('#contactable').contactable({
url: 'http://etc.usf.edu/lit2go/welcome/feedback/',
subject: 'Lit2Go Feedback — Evening | Miscellaneous Poems | Paul Laurence Dunbar — http://etc.usf.edu/lit2go/186/miscellaneous-poems/3488/evening/'
});
});
</script>
</head>
<body>
<div class="page"> <header>
<h1>
<a href="http://etc.usf.edu/lit2go/">Lit<span class="blue">2</span>Go</a>
</h1>
<ul>
<li id="search"><form action="http://etc.usf.edu/lit2go/search/"><input type="text" name="q" placeholder="Search" value=""></form></li>
</ul>
</header>
<nav id="shell">
<ul>
<li><a href="http://etc.usf.edu/lit2go/authors/" class="">Authors</a></li>
<li><a href="http://etc.usf.edu/lit2go/books/" class="selected">Books</a></li>
<li><a href="http://etc.usf.edu/lit2go/genres/" class="">Genres</a></li>
<li><a href="http://etc.usf.edu/lit2go/collections/" class="">Collections</a></li>
<li><a href="http://etc.usf.edu/lit2go/readability/" class="">Readability</a></li>
</ul>
</nav>
<section id="content">
<div id="contactable"><!-- contactable html placeholder --></div>
<div id="page_content">
<header>
<h2>
<a href="http://etc.usf.edu/lit2go/186/miscellaneous-poems/">Miscellaneous Poems</a>
</h2>
<h3>
by <a href="http://etc.usf.edu/lit2go/authors/172/paul-laurence-dunbar/">Paul Laurence Dunbar</a>
</h3>
<h4>
Evening </h4>
</header>
<div id="poem">
<details open>
<summary>
Additional Information
</summary>
<div id="columns">
<ul>
<li>
<strong>Year Published:</strong>
1913 </li>
<li>
<strong>Language:</strong>
English </li>
<li>
<strong>Country of Origin:</strong>
United States of America </li>
<li>
<strong>Source:</strong>
Dunbar, P.L. (1913). <em>The Complete Poems of Paul Laurence Dunbar</em>. New York: Dodd, Mead, and Company. </li>
</ul>
</div>
<div id="columns">
<ul>
<li>
<strong>Readability:</strong>
<ul>
<li>
Flesch–Kincaid Level:
<a href="http://etc.usf.edu/lit2go/readability/flesch_kincaid_grade_level/6/" title="Flesch–Kincaid Grade Level 6.5">6.5</a>
</li>
</ul>
</li>
<li>
<strong>Word Count:</strong>
68 </li>
</ul>
</div>
<div id="columns">
<ul>
<li>
<strong>Genre:</strong>
<a href="http://etc.usf.edu/lit2go/genres/24/poetry/">Poetry</a>
</li>
<li>
<strong>Keywords:</strong>
calm, night, nighttime, rest </li>
<li>
<a class="btn" data-toggle="modal" href="#cite_this" >✎ Cite This</a>
</li>
<li>
<!-- AddThis Button BEGIN -->
<div class="addthis_toolbox addthis_default_style ">
<a addthis:ui_delay="500" href="http://www.addthis.com/bookmark.php?v=250&pub=roywinkelman" class="addthis_button_compact">Share</a>
<span class="addthis_separator">|</span>
<a class="addthis_button_preferred_1"></a>
<a class="addthis_button_preferred_2"></a>
<a class="addthis_button_preferred_3"></a>
<a class="addthis_button_preferred_4"></a>
</div>
<script type="text/javascript">$($.getScript("http://s7.addthis.com/js/250/addthis_widget.js?pub=roywinkelman"))</script>
<!-- <script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js?pub=roywinkelman"></script> -->
<!-- AddThis Button END -->
</li>
</ul>
</div>
<h4>Downloads</h4>
<ul id="downloads">
<li>
<a href="http://etc.usf.edu/lit2go/audio/mp3/miscellaneous-poems-005-evening.3488.mp3">Audio</a>
</li>
<li>
<a href="http://etc.usf.edu/lit2go/pdf/passage/3488/miscellaneous-poems-005-evening.pdf">Passage PDF</a>
</li>
<li><a href="http://etc.usf.edu/lit2go/pdf/student_activity/3488/3488-1.pdf">Student Activity</a></li>
</ul>
<hr>
</details>
<div class="modal hide" id="cite_this">
<script>
$($('#myTab a').click(function (e) {e.preventDefault();$('#myTab a[href="#apa"]').tab('show');}));
</script>
<nav>
<ul id="myTab">
<li class="active">
<a href="#apa" data-toggle="tab">APA</a>
</li>
<li>
<a href="#mla" data-toggle="tab">MLA</a>
</li>
<li>
<a href="#chicago" data-toggle="tab">Chicago</a>
</li>
</ul>
</nav>
<div class="tab-content">
<div class="content tab-pane hide active" id="apa">
<p class="citation">
Dunbar, P. (1913). Evening. <em>Miscellaneous Poems</em> (Lit2Go Edition). Retrieved February 15, 2016, from <span class="faux_link">http://etc.usf.edu/lit2go/186/miscellaneous-poems/3488/evening/</span>
</p>
</div>
<div class="content tab-pane" id="mla">
<p class="citation">
Dunbar, Paul Laurence. "Evening." <em>Miscellaneous Poems</em>. Lit2Go Edition. 1913. Web. <<span class="faux_link">http://etc.usf.edu/lit2go/186/miscellaneous-poems/3488/evening/</span>>. February 15, 2016.
</p>
</div>
<div class="content tab-pane" id="chicago">
<p class="citation">
Paul Laurence Dunbar, "Evening," <em>Miscellaneous Poems</em>, Lit2Go Edition, (1913), accessed February 15, 2016, <span class="faux_link">http://etc.usf.edu/lit2go/186/miscellaneous-poems/3488/evening/</span>.
</p>
</div>
</div>
</div>
<span class="top"> <nav class="passage">
<ul>
<li><a href="http://etc.usf.edu/lit2go/186/miscellaneous-poems/3485/equipment/" title="Equipment" class="back">Back</a></li>
<li><a href="http://etc.usf.edu/lit2go/186/miscellaneous-poems/3490/to-pfrimmer/" title="To Pfrimmer" class="next">Next</a></li>
</ul>
</nav>
</span>
<div id="shrink_wrap">
<div id="i_apologize_for_the_soup">
<audio controls style="width:99%;">
<source src="http://etc.usf.edu/lit2go/audio/mp3/miscellaneous-poems-005-evening.3488.mp3" type="audio/mpeg" />
<source src="http://etc.usf.edu/lit2go/audio/ogg/miscellaneous-poems-005-evening.3488.ogg" type="audio/ogg" />
The embedded audio player requires a modern internet browser. You should visit <a href="http://browsehappy.com/">Browse Happy</a> and update your internet browser today!
</audio>
<p>
The moon begins her stately ride<br />
Across the summer sky;<br />
The happy wavelets lash the shore,—<br />
The tide is rising high.</p>
<p>
Beneath some friendly blade of grass<br />
The lazy beetle cowers;<br />
The coffers of the air are filled<br />
With offerings from the flowers.</p>
<p>
And slowly buzzing o’er my head<br />
A swallow wings her flight;<br />
I hear the weary plowman sing<br />
As falls the restful night.</p>
</div>
</div>
<span class="bottom"> <nav class="passage">
<ul>
<li><a href="http://etc.usf.edu/lit2go/186/miscellaneous-poems/3485/equipment/" title="Equipment" class="back">Back</a></li>
<li><a href="http://etc.usf.edu/lit2go/186/miscellaneous-poems/3490/to-pfrimmer/" title="To Pfrimmer" class="next">Next</a></li>
</ul>
</nav>
</span>
</div>
</div>
</section>
<footer screen>
<div id="footer-text">
<p>
This collection of children's literature is a part of the <a href="http://etc.usf.edu/">Educational Technology Clearinghouse</a> and is funded by various <a href="http://etc.usf.edu/lit2go/welcome/funding/">grants</a>.
</p>
<p>
Copyright © 2006—2016 by the <a href="http://fcit.usf.edu/">Florida Center for Instructional Technology</a>, <a href="http://www.coedu.usf.edu/">College of Education</a>, <a href="http://www.usf.edu/">University of South Florida</a>.
</p>
</div>
<ul id="footer-links">
<li><a href="http://etc.usf.edu/lit2go/welcome/license/">License</a></li>
<li><a href="http://etc.usf.edu/lit2go/welcome/credits/">Credits</a></li>
<li><a href="http://etc.usf.edu/lit2go/welcome/faq/">FAQ</a></li>
<li><a href="http://etc.usf.edu/lit2go/giving/">Giving</a></li>
</ul>
</footer>
<footer print>
<div id="footer-text">
<p>This document was downloaded from <a href="http://etc.usf.edu/lit2go/">Lit2Go</a>, a free online collection of stories and poems in Mp3 (audiobook) format published by the <a href="http://fcit.usf.edu/">Florida Center for Instructional Technology</a>. For more information, including classroom activities, readability data, and original sources, please visit <a href="http://etc.usf.edu/lit2go/186/miscellaneous-poems/3488/evening/">http://etc.usf.edu/lit2go/186/miscellaneous-poems/3488/evening/</a>.</p>
</div>
<div id="book-footer">
<p>Lit2Go: <em>Miscellaneous Poems</em></p>
<p>Evening</p>
</div>
</footer>
<script type="text/javascript" defer src="http://etc.usf.edu/lit2go/js/details.js"></script>
</div>
</body>
</html>
|
dist/css/paper.css | bendroid/paper | /*! paper - v0.7.0
* Copyright (c) 2015 "Sudharsanan" Muralidharan; Licensed */
/*!
* Font Awesome 4.2.0 by @davegandy - http://fontawesome.io - @fontawesome
* License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
*/
/* FONT PATH
* -------------------------- */
@font-face {
font-family: 'FontAwesome';
src: url('fonts/fontawesome-webfont.eot?v=4.2.0');
src: url('fonts/fontawesome-webfont.eot?#iefix&v=4.2.0') format('embedded-opentype'), url('fonts/fontawesome-webfont.woff?v=4.2.0') format('woff'), url('fonts/fontawesome-webfont.ttf?v=4.2.0') format('truetype'), url('fonts/fontawesome-webfont.svg?v=4.2.0#fontawesomeregular') format('svg');
font-weight: normal;
font-style: normal;
}
.fa {
display: inline-block;
font: normal normal normal 14px/1 FontAwesome;
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* makes the font 33% larger relative to the icon container */
.fa-lg {
font-size: 1.33333333em;
line-height: 0.75em;
vertical-align: -15%;
}
.fa-2x {
font-size: 2em;
}
.fa-3x {
font-size: 3em;
}
.fa-4x {
font-size: 4em;
}
.fa-5x {
font-size: 5em;
}
.fa-fw {
width: 1.28571429em;
text-align: center;
}
.fa-ul {
padding-left: 0;
margin-left: 2.14285714em;
list-style-type: none;
}
.fa-ul > li {
position: relative;
}
.fa-li {
position: absolute;
left: -2.14285714em;
width: 2.14285714em;
top: 0.14285714em;
text-align: center;
}
.fa-li.fa-lg {
left: -1.85714286em;
}
.fa-border {
padding: .2em .25em .15em;
border: solid 0.08em #eeeeee;
border-radius: .1em;
}
.pull-right {
float: right;
}
.pull-left {
float: left;
}
.fa.pull-left {
margin-right: .3em;
}
.fa.pull-right {
margin-left: .3em;
}
.fa-spin {
-webkit-animation: fa-spin 2s infinite linear;
animation: fa-spin 2s infinite linear;
}
@-webkit-keyframes fa-spin {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}
@keyframes fa-spin {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}
.fa-rotate-90 {
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
-webkit-transform: rotate(90deg);
-ms-transform: rotate(90deg);
transform: rotate(90deg);
}
.fa-rotate-180 {
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
-webkit-transform: rotate(180deg);
-ms-transform: rotate(180deg);
transform: rotate(180deg);
}
.fa-rotate-270 {
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
-webkit-transform: rotate(270deg);
-ms-transform: rotate(270deg);
transform: rotate(270deg);
}
.fa-flip-horizontal {
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
-webkit-transform: scale(-1, 1);
-ms-transform: scale(-1, 1);
transform: scale(-1, 1);
}
.fa-flip-vertical {
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
-webkit-transform: scale(1, -1);
-ms-transform: scale(1, -1);
transform: scale(1, -1);
}
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
filter: none;
}
.fa-stack {
position: relative;
display: inline-block;
width: 2em;
height: 2em;
line-height: 2em;
vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
position: absolute;
left: 0;
width: 100%;
text-align: center;
}
.fa-stack-1x {
line-height: inherit;
}
.fa-stack-2x {
font-size: 2em;
}
.fa-inverse {
color: #ffffff;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */
.fa-glass:before {
content: "\f000";
}
.fa-music:before {
content: "\f001";
}
.fa-search:before {
content: "\f002";
}
.fa-envelope-o:before {
content: "\f003";
}
.fa-heart:before {
content: "\f004";
}
.fa-star:before {
content: "\f005";
}
.fa-star-o:before {
content: "\f006";
}
.fa-user:before {
content: "\f007";
}
.fa-film:before {
content: "\f008";
}
.fa-th-large:before {
content: "\f009";
}
.fa-th:before {
content: "\f00a";
}
.fa-th-list:before {
content: "\f00b";
}
.fa-check:before {
content: "\f00c";
}
.fa-remove:before,
.fa-close:before,
.fa-times:before {
content: "\f00d";
}
.fa-search-plus:before {
content: "\f00e";
}
.fa-search-minus:before {
content: "\f010";
}
.fa-power-off:before {
content: "\f011";
}
.fa-signal:before {
content: "\f012";
}
.fa-gear:before,
.fa-cog:before {
content: "\f013";
}
.fa-trash-o:before {
content: "\f014";
}
.fa-home:before {
content: "\f015";
}
.fa-file-o:before {
content: "\f016";
}
.fa-clock-o:before {
content: "\f017";
}
.fa-road:before {
content: "\f018";
}
.fa-download:before {
content: "\f019";
}
.fa-arrow-circle-o-down:before {
content: "\f01a";
}
.fa-arrow-circle-o-up:before {
content: "\f01b";
}
.fa-inbox:before {
content: "\f01c";
}
.fa-play-circle-o:before {
content: "\f01d";
}
.fa-rotate-right:before,
.fa-repeat:before {
content: "\f01e";
}
.fa-refresh:before {
content: "\f021";
}
.fa-list-alt:before {
content: "\f022";
}
.fa-lock:before {
content: "\f023";
}
.fa-flag:before {
content: "\f024";
}
.fa-headphones:before {
content: "\f025";
}
.fa-volume-off:before {
content: "\f026";
}
.fa-volume-down:before {
content: "\f027";
}
.fa-volume-up:before {
content: "\f028";
}
.fa-qrcode:before {
content: "\f029";
}
.fa-barcode:before {
content: "\f02a";
}
.fa-tag:before {
content: "\f02b";
}
.fa-tags:before {
content: "\f02c";
}
.fa-book:before {
content: "\f02d";
}
.fa-bookmark:before {
content: "\f02e";
}
.fa-print:before {
content: "\f02f";
}
.fa-camera:before {
content: "\f030";
}
.fa-font:before {
content: "\f031";
}
.fa-bold:before {
content: "\f032";
}
.fa-italic:before {
content: "\f033";
}
.fa-text-height:before {
content: "\f034";
}
.fa-text-width:before {
content: "\f035";
}
.fa-align-left:before {
content: "\f036";
}
.fa-align-center:before {
content: "\f037";
}
.fa-align-right:before {
content: "\f038";
}
.fa-align-justify:before {
content: "\f039";
}
.fa-list:before {
content: "\f03a";
}
.fa-dedent:before,
.fa-outdent:before {
content: "\f03b";
}
.fa-indent:before {
content: "\f03c";
}
.fa-video-camera:before {
content: "\f03d";
}
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
content: "\f03e";
}
.fa-pencil:before {
content: "\f040";
}
.fa-map-marker:before {
content: "\f041";
}
.fa-adjust:before {
content: "\f042";
}
.fa-tint:before {
content: "\f043";
}
.fa-edit:before,
.fa-pencil-square-o:before {
content: "\f044";
}
.fa-share-square-o:before {
content: "\f045";
}
.fa-check-square-o:before {
content: "\f046";
}
.fa-arrows:before {
content: "\f047";
}
.fa-step-backward:before {
content: "\f048";
}
.fa-fast-backward:before {
content: "\f049";
}
.fa-backward:before {
content: "\f04a";
}
.fa-play:before {
content: "\f04b";
}
.fa-pause:before {
content: "\f04c";
}
.fa-stop:before {
content: "\f04d";
}
.fa-forward:before {
content: "\f04e";
}
.fa-fast-forward:before {
content: "\f050";
}
.fa-step-forward:before {
content: "\f051";
}
.fa-eject:before {
content: "\f052";
}
.fa-chevron-left:before {
content: "\f053";
}
.fa-chevron-right:before {
content: "\f054";
}
.fa-plus-circle:before {
content: "\f055";
}
.fa-minus-circle:before {
content: "\f056";
}
.fa-times-circle:before {
content: "\f057";
}
.fa-check-circle:before {
content: "\f058";
}
.fa-question-circle:before {
content: "\f059";
}
.fa-info-circle:before {
content: "\f05a";
}
.fa-crosshairs:before {
content: "\f05b";
}
.fa-times-circle-o:before {
content: "\f05c";
}
.fa-check-circle-o:before {
content: "\f05d";
}
.fa-ban:before {
content: "\f05e";
}
.fa-arrow-left:before {
content: "\f060";
}
.fa-arrow-right:before {
content: "\f061";
}
.fa-arrow-up:before {
content: "\f062";
}
.fa-arrow-down:before {
content: "\f063";
}
.fa-mail-forward:before,
.fa-share:before {
content: "\f064";
}
.fa-expand:before {
content: "\f065";
}
.fa-compress:before {
content: "\f066";
}
.fa-plus:before {
content: "\f067";
}
.fa-minus:before {
content: "\f068";
}
.fa-asterisk:before {
content: "\f069";
}
.fa-exclamation-circle:before {
content: "\f06a";
}
.fa-gift:before {
content: "\f06b";
}
.fa-leaf:before {
content: "\f06c";
}
.fa-fire:before {
content: "\f06d";
}
.fa-eye:before {
content: "\f06e";
}
.fa-eye-slash:before {
content: "\f070";
}
.fa-warning:before,
.fa-exclamation-triangle:before {
content: "\f071";
}
.fa-plane:before {
content: "\f072";
}
.fa-calendar:before {
content: "\f073";
}
.fa-random:before {
content: "\f074";
}
.fa-comment:before {
content: "\f075";
}
.fa-magnet:before {
content: "\f076";
}
.fa-chevron-up:before {
content: "\f077";
}
.fa-chevron-down:before {
content: "\f078";
}
.fa-retweet:before {
content: "\f079";
}
.fa-shopping-cart:before {
content: "\f07a";
}
.fa-folder:before {
content: "\f07b";
}
.fa-folder-open:before {
content: "\f07c";
}
.fa-arrows-v:before {
content: "\f07d";
}
.fa-arrows-h:before {
content: "\f07e";
}
.fa-bar-chart-o:before,
.fa-bar-chart:before {
content: "\f080";
}
.fa-twitter-square:before {
content: "\f081";
}
.fa-facebook-square:before {
content: "\f082";
}
.fa-camera-retro:before {
content: "\f083";
}
.fa-key:before {
content: "\f084";
}
.fa-gears:before,
.fa-cogs:before {
content: "\f085";
}
.fa-comments:before {
content: "\f086";
}
.fa-thumbs-o-up:before {
content: "\f087";
}
.fa-thumbs-o-down:before {
content: "\f088";
}
.fa-star-half:before {
content: "\f089";
}
.fa-heart-o:before {
content: "\f08a";
}
.fa-sign-out:before {
content: "\f08b";
}
.fa-linkedin-square:before {
content: "\f08c";
}
.fa-thumb-tack:before {
content: "\f08d";
}
.fa-external-link:before {
content: "\f08e";
}
.fa-sign-in:before {
content: "\f090";
}
.fa-trophy:before {
content: "\f091";
}
.fa-github-square:before {
content: "\f092";
}
.fa-upload:before {
content: "\f093";
}
.fa-lemon-o:before {
content: "\f094";
}
.fa-phone:before {
content: "\f095";
}
.fa-square-o:before {
content: "\f096";
}
.fa-bookmark-o:before {
content: "\f097";
}
.fa-phone-square:before {
content: "\f098";
}
.fa-twitter:before {
content: "\f099";
}
.fa-facebook:before {
content: "\f09a";
}
.fa-github:before {
content: "\f09b";
}
.fa-unlock:before {
content: "\f09c";
}
.fa-credit-card:before {
content: "\f09d";
}
.fa-rss:before {
content: "\f09e";
}
.fa-hdd-o:before {
content: "\f0a0";
}
.fa-bullhorn:before {
content: "\f0a1";
}
.fa-bell:before {
content: "\f0f3";
}
.fa-certificate:before {
content: "\f0a3";
}
.fa-hand-o-right:before {
content: "\f0a4";
}
.fa-hand-o-left:before {
content: "\f0a5";
}
.fa-hand-o-up:before {
content: "\f0a6";
}
.fa-hand-o-down:before {
content: "\f0a7";
}
.fa-arrow-circle-left:before {
content: "\f0a8";
}
.fa-arrow-circle-right:before {
content: "\f0a9";
}
.fa-arrow-circle-up:before {
content: "\f0aa";
}
.fa-arrow-circle-down:before {
content: "\f0ab";
}
.fa-globe:before {
content: "\f0ac";
}
.fa-wrench:before {
content: "\f0ad";
}
.fa-tasks:before {
content: "\f0ae";
}
.fa-filter:before {
content: "\f0b0";
}
.fa-briefcase:before {
content: "\f0b1";
}
.fa-arrows-alt:before {
content: "\f0b2";
}
.fa-group:before,
.fa-users:before {
content: "\f0c0";
}
.fa-chain:before,
.fa-link:before {
content: "\f0c1";
}
.fa-cloud:before {
content: "\f0c2";
}
.fa-flask:before {
content: "\f0c3";
}
.fa-cut:before,
.fa-scissors:before {
content: "\f0c4";
}
.fa-copy:before,
.fa-files-o:before {
content: "\f0c5";
}
.fa-paperclip:before {
content: "\f0c6";
}
.fa-save:before,
.fa-floppy-o:before {
content: "\f0c7";
}
.fa-square:before {
content: "\f0c8";
}
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
content: "\f0c9";
}
.fa-list-ul:before {
content: "\f0ca";
}
.fa-list-ol:before {
content: "\f0cb";
}
.fa-strikethrough:before {
content: "\f0cc";
}
.fa-underline:before {
content: "\f0cd";
}
.fa-table:before {
content: "\f0ce";
}
.fa-magic:before {
content: "\f0d0";
}
.fa-truck:before {
content: "\f0d1";
}
.fa-pinterest:before {
content: "\f0d2";
}
.fa-pinterest-square:before {
content: "\f0d3";
}
.fa-google-plus-square:before {
content: "\f0d4";
}
.fa-google-plus:before {
content: "\f0d5";
}
.fa-money:before {
content: "\f0d6";
}
.fa-caret-down:before {
content: "\f0d7";
}
.fa-caret-up:before {
content: "\f0d8";
}
.fa-caret-left:before {
content: "\f0d9";
}
.fa-caret-right:before {
content: "\f0da";
}
.fa-columns:before {
content: "\f0db";
}
.fa-unsorted:before,
.fa-sort:before {
content: "\f0dc";
}
.fa-sort-down:before,
.fa-sort-desc:before {
content: "\f0dd";
}
.fa-sort-up:before,
.fa-sort-asc:before {
content: "\f0de";
}
.fa-envelope:before {
content: "\f0e0";
}
.fa-linkedin:before {
content: "\f0e1";
}
.fa-rotate-left:before,
.fa-undo:before {
content: "\f0e2";
}
.fa-legal:before,
.fa-gavel:before {
content: "\f0e3";
}
.fa-dashboard:before,
.fa-tachometer:before {
content: "\f0e4";
}
.fa-comment-o:before {
content: "\f0e5";
}
.fa-comments-o:before {
content: "\f0e6";
}
.fa-flash:before,
.fa-bolt:before {
content: "\f0e7";
}
.fa-sitemap:before {
content: "\f0e8";
}
.fa-umbrella:before {
content: "\f0e9";
}
.fa-paste:before,
.fa-clipboard:before {
content: "\f0ea";
}
.fa-lightbulb-o:before {
content: "\f0eb";
}
.fa-exchange:before {
content: "\f0ec";
}
.fa-cloud-download:before {
content: "\f0ed";
}
.fa-cloud-upload:before {
content: "\f0ee";
}
.fa-user-md:before {
content: "\f0f0";
}
.fa-stethoscope:before {
content: "\f0f1";
}
.fa-suitcase:before {
content: "\f0f2";
}
.fa-bell-o:before {
content: "\f0a2";
}
.fa-coffee:before {
content: "\f0f4";
}
.fa-cutlery:before {
content: "\f0f5";
}
.fa-file-text-o:before {
content: "\f0f6";
}
.fa-building-o:before {
content: "\f0f7";
}
.fa-hospital-o:before {
content: "\f0f8";
}
.fa-ambulance:before {
content: "\f0f9";
}
.fa-medkit:before {
content: "\f0fa";
}
.fa-fighter-jet:before {
content: "\f0fb";
}
.fa-beer:before {
content: "\f0fc";
}
.fa-h-square:before {
content: "\f0fd";
}
.fa-plus-square:before {
content: "\f0fe";
}
.fa-angle-double-left:before {
content: "\f100";
}
.fa-angle-double-right:before {
content: "\f101";
}
.fa-angle-double-up:before {
content: "\f102";
}
.fa-angle-double-down:before {
content: "\f103";
}
.fa-angle-left:before {
content: "\f104";
}
.fa-angle-right:before {
content: "\f105";
}
.fa-angle-up:before {
content: "\f106";
}
.fa-angle-down:before {
content: "\f107";
}
.fa-desktop:before {
content: "\f108";
}
.fa-laptop:before {
content: "\f109";
}
.fa-tablet:before {
content: "\f10a";
}
.fa-mobile-phone:before,
.fa-mobile:before {
content: "\f10b";
}
.fa-circle-o:before {
content: "\f10c";
}
.fa-quote-left:before {
content: "\f10d";
}
.fa-quote-right:before {
content: "\f10e";
}
.fa-spinner:before {
content: "\f110";
}
.fa-circle:before {
content: "\f111";
}
.fa-mail-reply:before,
.fa-reply:before {
content: "\f112";
}
.fa-github-alt:before {
content: "\f113";
}
.fa-folder-o:before {
content: "\f114";
}
.fa-folder-open-o:before {
content: "\f115";
}
.fa-smile-o:before {
content: "\f118";
}
.fa-frown-o:before {
content: "\f119";
}
.fa-meh-o:before {
content: "\f11a";
}
.fa-gamepad:before {
content: "\f11b";
}
.fa-keyboard-o:before {
content: "\f11c";
}
.fa-flag-o:before {
content: "\f11d";
}
.fa-flag-checkered:before {
content: "\f11e";
}
.fa-terminal:before {
content: "\f120";
}
.fa-code:before {
content: "\f121";
}
.fa-mail-reply-all:before,
.fa-reply-all:before {
content: "\f122";
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
content: "\f123";
}
.fa-location-arrow:before {
content: "\f124";
}
.fa-crop:before {
content: "\f125";
}
.fa-code-fork:before {
content: "\f126";
}
.fa-unlink:before,
.fa-chain-broken:before {
content: "\f127";
}
.fa-question:before {
content: "\f128";
}
.fa-info:before {
content: "\f129";
}
.fa-exclamation:before {
content: "\f12a";
}
.fa-superscript:before {
content: "\f12b";
}
.fa-subscript:before {
content: "\f12c";
}
.fa-eraser:before {
content: "\f12d";
}
.fa-puzzle-piece:before {
content: "\f12e";
}
.fa-microphone:before {
content: "\f130";
}
.fa-microphone-slash:before {
content: "\f131";
}
.fa-shield:before {
content: "\f132";
}
.fa-calendar-o:before {
content: "\f133";
}
.fa-fire-extinguisher:before {
content: "\f134";
}
.fa-rocket:before {
content: "\f135";
}
.fa-maxcdn:before {
content: "\f136";
}
.fa-chevron-circle-left:before {
content: "\f137";
}
.fa-chevron-circle-right:before {
content: "\f138";
}
.fa-chevron-circle-up:before {
content: "\f139";
}
.fa-chevron-circle-down:before {
content: "\f13a";
}
.fa-html5:before {
content: "\f13b";
}
.fa-css3:before {
content: "\f13c";
}
.fa-anchor:before {
content: "\f13d";
}
.fa-unlock-alt:before {
content: "\f13e";
}
.fa-bullseye:before {
content: "\f140";
}
.fa-ellipsis-h:before {
content: "\f141";
}
.fa-ellipsis-v:before {
content: "\f142";
}
.fa-rss-square:before {
content: "\f143";
}
.fa-play-circle:before {
content: "\f144";
}
.fa-ticket:before {
content: "\f145";
}
.fa-minus-square:before {
content: "\f146";
}
.fa-minus-square-o:before {
content: "\f147";
}
.fa-level-up:before {
content: "\f148";
}
.fa-level-down:before {
content: "\f149";
}
.fa-check-square:before {
content: "\f14a";
}
.fa-pencil-square:before {
content: "\f14b";
}
.fa-external-link-square:before {
content: "\f14c";
}
.fa-share-square:before {
content: "\f14d";
}
.fa-compass:before {
content: "\f14e";
}
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
content: "\f150";
}
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
content: "\f151";
}
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
content: "\f152";
}
.fa-euro:before,
.fa-eur:before {
content: "\f153";
}
.fa-gbp:before {
content: "\f154";
}
.fa-dollar:before,
.fa-usd:before {
content: "\f155";
}
.fa-rupee:before,
.fa-inr:before {
content: "\f156";
}
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
content: "\f157";
}
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
content: "\f158";
}
.fa-won:before,
.fa-krw:before {
content: "\f159";
}
.fa-bitcoin:before,
.fa-btc:before {
content: "\f15a";
}
.fa-file:before {
content: "\f15b";
}
.fa-file-text:before {
content: "\f15c";
}
.fa-sort-alpha-asc:before {
content: "\f15d";
}
.fa-sort-alpha-desc:before {
content: "\f15e";
}
.fa-sort-amount-asc:before {
content: "\f160";
}
.fa-sort-amount-desc:before {
content: "\f161";
}
.fa-sort-numeric-asc:before {
content: "\f162";
}
.fa-sort-numeric-desc:before {
content: "\f163";
}
.fa-thumbs-up:before {
content: "\f164";
}
.fa-thumbs-down:before {
content: "\f165";
}
.fa-youtube-square:before {
content: "\f166";
}
.fa-youtube:before {
content: "\f167";
}
.fa-xing:before {
content: "\f168";
}
.fa-xing-square:before {
content: "\f169";
}
.fa-youtube-play:before {
content: "\f16a";
}
.fa-dropbox:before {
content: "\f16b";
}
.fa-stack-overflow:before {
content: "\f16c";
}
.fa-instagram:before {
content: "\f16d";
}
.fa-flickr:before {
content: "\f16e";
}
.fa-adn:before {
content: "\f170";
}
.fa-bitbucket:before {
content: "\f171";
}
.fa-bitbucket-square:before {
content: "\f172";
}
.fa-tumblr:before {
content: "\f173";
}
.fa-tumblr-square:before {
content: "\f174";
}
.fa-long-arrow-down:before {
content: "\f175";
}
.fa-long-arrow-up:before {
content: "\f176";
}
.fa-long-arrow-left:before {
content: "\f177";
}
.fa-long-arrow-right:before {
content: "\f178";
}
.fa-apple:before {
content: "\f179";
}
.fa-windows:before {
content: "\f17a";
}
.fa-android:before {
content: "\f17b";
}
.fa-linux:before {
content: "\f17c";
}
.fa-dribbble:before {
content: "\f17d";
}
.fa-skype:before {
content: "\f17e";
}
.fa-foursquare:before {
content: "\f180";
}
.fa-trello:before {
content: "\f181";
}
.fa-female:before {
content: "\f182";
}
.fa-male:before {
content: "\f183";
}
.fa-gittip:before {
content: "\f184";
}
.fa-sun-o:before {
content: "\f185";
}
.fa-moon-o:before {
content: "\f186";
}
.fa-archive:before {
content: "\f187";
}
.fa-bug:before {
content: "\f188";
}
.fa-vk:before {
content: "\f189";
}
.fa-weibo:before {
content: "\f18a";
}
.fa-renren:before {
content: "\f18b";
}
.fa-pagelines:before {
content: "\f18c";
}
.fa-stack-exchange:before {
content: "\f18d";
}
.fa-arrow-circle-o-right:before {
content: "\f18e";
}
.fa-arrow-circle-o-left:before {
content: "\f190";
}
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
content: "\f191";
}
.fa-dot-circle-o:before {
content: "\f192";
}
.fa-wheelchair:before {
content: "\f193";
}
.fa-vimeo-square:before {
content: "\f194";
}
.fa-turkish-lira:before,
.fa-try:before {
content: "\f195";
}
.fa-plus-square-o:before {
content: "\f196";
}
.fa-space-shuttle:before {
content: "\f197";
}
.fa-slack:before {
content: "\f198";
}
.fa-envelope-square:before {
content: "\f199";
}
.fa-wordpress:before {
content: "\f19a";
}
.fa-openid:before {
content: "\f19b";
}
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
content: "\f19c";
}
.fa-mortar-board:before,
.fa-graduation-cap:before {
content: "\f19d";
}
.fa-yahoo:before {
content: "\f19e";
}
.fa-google:before {
content: "\f1a0";
}
.fa-reddit:before {
content: "\f1a1";
}
.fa-reddit-square:before {
content: "\f1a2";
}
.fa-stumbleupon-circle:before {
content: "\f1a3";
}
.fa-stumbleupon:before {
content: "\f1a4";
}
.fa-delicious:before {
content: "\f1a5";
}
.fa-digg:before {
content: "\f1a6";
}
.fa-pied-piper:before {
content: "\f1a7";
}
.fa-pied-piper-alt:before {
content: "\f1a8";
}
.fa-drupal:before {
content: "\f1a9";
}
.fa-joomla:before {
content: "\f1aa";
}
.fa-language:before {
content: "\f1ab";
}
.fa-fax:before {
content: "\f1ac";
}
.fa-building:before {
content: "\f1ad";
}
.fa-child:before {
content: "\f1ae";
}
.fa-paw:before {
content: "\f1b0";
}
.fa-spoon:before {
content: "\f1b1";
}
.fa-cube:before {
content: "\f1b2";
}
.fa-cubes:before {
content: "\f1b3";
}
.fa-behance:before {
content: "\f1b4";
}
.fa-behance-square:before {
content: "\f1b5";
}
.fa-steam:before {
content: "\f1b6";
}
.fa-steam-square:before {
content: "\f1b7";
}
.fa-recycle:before {
content: "\f1b8";
}
.fa-automobile:before,
.fa-car:before {
content: "\f1b9";
}
.fa-cab:before,
.fa-taxi:before {
content: "\f1ba";
}
.fa-tree:before {
content: "\f1bb";
}
.fa-spotify:before {
content: "\f1bc";
}
.fa-deviantart:before {
content: "\f1bd";
}
.fa-soundcloud:before {
content: "\f1be";
}
.fa-database:before {
content: "\f1c0";
}
.fa-file-pdf-o:before {
content: "\f1c1";
}
.fa-file-word-o:before {
content: "\f1c2";
}
.fa-file-excel-o:before {
content: "\f1c3";
}
.fa-file-powerpoint-o:before {
content: "\f1c4";
}
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
content: "\f1c5";
}
.fa-file-zip-o:before,
.fa-file-archive-o:before {
content: "\f1c6";
}
.fa-file-sound-o:before,
.fa-file-audio-o:before {
content: "\f1c7";
}
.fa-file-movie-o:before,
.fa-file-video-o:before {
content: "\f1c8";
}
.fa-file-code-o:before {
content: "\f1c9";
}
.fa-vine:before {
content: "\f1ca";
}
.fa-codepen:before {
content: "\f1cb";
}
.fa-jsfiddle:before {
content: "\f1cc";
}
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
content: "\f1cd";
}
.fa-circle-o-notch:before {
content: "\f1ce";
}
.fa-ra:before,
.fa-rebel:before {
content: "\f1d0";
}
.fa-ge:before,
.fa-empire:before {
content: "\f1d1";
}
.fa-git-square:before {
content: "\f1d2";
}
.fa-git:before {
content: "\f1d3";
}
.fa-hacker-news:before {
content: "\f1d4";
}
.fa-tencent-weibo:before {
content: "\f1d5";
}
.fa-qq:before {
content: "\f1d6";
}
.fa-wechat:before,
.fa-weixin:before {
content: "\f1d7";
}
.fa-send:before,
.fa-paper-plane:before {
content: "\f1d8";
}
.fa-send-o:before,
.fa-paper-plane-o:before {
content: "\f1d9";
}
.fa-history:before {
content: "\f1da";
}
.fa-circle-thin:before {
content: "\f1db";
}
.fa-header:before {
content: "\f1dc";
}
.fa-paragraph:before {
content: "\f1dd";
}
.fa-sliders:before {
content: "\f1de";
}
.fa-share-alt:before {
content: "\f1e0";
}
.fa-share-alt-square:before {
content: "\f1e1";
}
.fa-bomb:before {
content: "\f1e2";
}
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
content: "\f1e3";
}
.fa-tty:before {
content: "\f1e4";
}
.fa-binoculars:before {
content: "\f1e5";
}
.fa-plug:before {
content: "\f1e6";
}
.fa-slideshare:before {
content: "\f1e7";
}
.fa-twitch:before {
content: "\f1e8";
}
.fa-yelp:before {
content: "\f1e9";
}
.fa-newspaper-o:before {
content: "\f1ea";
}
.fa-wifi:before {
content: "\f1eb";
}
.fa-calculator:before {
content: "\f1ec";
}
.fa-paypal:before {
content: "\f1ed";
}
.fa-google-wallet:before {
content: "\f1ee";
}
.fa-cc-visa:before {
content: "\f1f0";
}
.fa-cc-mastercard:before {
content: "\f1f1";
}
.fa-cc-discover:before {
content: "\f1f2";
}
.fa-cc-amex:before {
content: "\f1f3";
}
.fa-cc-paypal:before {
content: "\f1f4";
}
.fa-cc-stripe:before {
content: "\f1f5";
}
.fa-bell-slash:before {
content: "\f1f6";
}
.fa-bell-slash-o:before {
content: "\f1f7";
}
.fa-trash:before {
content: "\f1f8";
}
.fa-copyright:before {
content: "\f1f9";
}
.fa-at:before {
content: "\f1fa";
}
.fa-eyedropper:before {
content: "\f1fb";
}
.fa-paint-brush:before {
content: "\f1fc";
}
.fa-birthday-cake:before {
content: "\f1fd";
}
.fa-area-chart:before {
content: "\f1fe";
}
.fa-pie-chart:before {
content: "\f200";
}
.fa-line-chart:before {
content: "\f201";
}
.fa-lastfm:before {
content: "\f202";
}
.fa-lastfm-square:before {
content: "\f203";
}
.fa-toggle-off:before {
content: "\f204";
}
.fa-toggle-on:before {
content: "\f205";
}
.fa-bicycle:before {
content: "\f206";
}
.fa-bus:before {
content: "\f207";
}
.fa-ioxhost:before {
content: "\f208";
}
.fa-angellist:before {
content: "\f209";
}
.fa-cc:before {
content: "\f20a";
}
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
content: "\f20b";
}
.fa-meanpath:before {
content: "\f20c";
}
@charset "UTF-8";
@font-face {
font-family: 'Lato';
font-style: normal;
font-weight: 300;
src: url(fonts/Lato/Lato-Light.woff) format("woff"); }
@font-face {
font-family: 'Lato';
font-style: normal;
font-weight: 400;
src: url(fonts/Lato/Lato-Regular.woff) format("woff"); }
@font-face {
font-family: 'Lato';
font-style: normal;
font-weight: 600;
src: url(fonts/Lato/Lato-Semibold.woff) format("woff"); }
@font-face {
font-family: 'Lato';
font-style: normal;
font-weight: 700;
src: url(fonts/Lato/Lato-Bold.woff) format("woff"); }
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
html {
font-family: sans-serif;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%; }
body {
margin: 0; }
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
display: block; }
audio,
canvas,
progress,
video {
display: inline-block;
vertical-align: baseline; }
audio:not([controls]) {
display: none;
height: 0; }
[hidden],
template {
display: none; }
a {
background-color: transparent; }
a:active,
a:hover {
outline: 0; }
abbr[title] {
border-bottom: 1px dotted; }
b,
strong {
font-weight: bold; }
dfn {
font-style: italic; }
h1 {
font-size: 2em;
margin: 0.67em 0; }
mark {
background: #ff0;
color: #000; }
small {
font-size: 80%; }
sub,
sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline; }
sup {
top: -0.5em; }
sub {
bottom: -0.25em; }
img {
border: 0; }
svg:not(:root) {
overflow: hidden; }
figure {
margin: 1em 40px; }
hr {
-moz-box-sizing: content-box;
box-sizing: content-box;
height: 0; }
pre {
overflow: auto; }
code,
kbd,
pre,
samp {
font-family: monospace, monospace;
font-size: 1em; }
button,
input,
optgroup,
select,
textarea {
color: inherit;
font: inherit;
margin: 0; }
button {
overflow: visible; }
button,
select {
text-transform: none; }
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
-webkit-appearance: button;
cursor: pointer; }
button[disabled],
html input[disabled] {
cursor: default; }
button::-moz-focus-inner,
input::-moz-focus-inner {
border: 0;
padding: 0; }
input {
line-height: normal; }
input[type="checkbox"],
input[type="radio"] {
box-sizing: border-box;
padding: 0; }
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
height: auto; }
input[type="search"] {
-webkit-appearance: textfield;
-moz-box-sizing: content-box;
-webkit-box-sizing: content-box;
box-sizing: content-box; }
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
-webkit-appearance: none; }
fieldset {
border: 1px solid #c0c0c0;
margin: 0 2px;
padding: 0.35em 0.625em 0.75em; }
legend {
border: 0;
padding: 0; }
textarea {
overflow: auto; }
optgroup {
font-weight: bold; }
table {
border-collapse: collapse;
border-spacing: 0; }
td,
th {
padding: 0; }
/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
*,
*:before,
*:after {
background: transparent !important;
color: #000 !important;
box-shadow: none !important;
text-shadow: none !important; }
a,
a:visited {
text-decoration: underline; }
a[href]:after {
content: " (" attr(href) ")"; }
abbr[title]:after {
content: " (" attr(title) ")"; }
a[href^="#"]:after,
a[href^="javascript:"]:after {
content: ""; }
pre,
blockquote {
border: 1px solid #999;
page-break-inside: avoid; }
thead {
display: table-header-group; }
tr,
img {
page-break-inside: avoid; }
img {
max-width: 100% !important; }
p,
h2,
h3 {
orphans: 3;
widows: 3; }
h2,
h3 {
page-break-after: avoid; }
select {
background: #fff !important; }
.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; } }
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box; }
*:before,
*:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box; }
html {
font-size: 10px;
-webkit-tap-highlight-color: transparent; }
body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 14.5px;
line-height: 1.5;
color: #333333;
background-color: #fff; }
input,
button,
select,
textarea {
font-family: inherit;
font-size: inherit;
line-height: inherit; }
a {
color: #3a92d7;
text-decoration: none; }
a:hover, a:focus {
color: #216aa3;
text-decoration: underline; }
a:focus {
/* // Default
outline: thin dotted;
// WebKit
outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px; */ }
figure {
margin: 0; }
img {
vertical-align: middle; }
.img-responsive {
display: block;
max-width: 100%;
height: auto; }
.img-rounded {
border-radius: 0px; }
.img-thumbnail {
padding: 4px;
line-height: 1.5;
background-color: #fff;
border: 1px solid #ddd;
border-radius: 0px;
-webkit-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
display: inline-block;
max-width: 100%;
height: auto; }
.img-circle {
border-radius: 50%; }
hr {
margin-top: 21px;
margin-bottom: 21px;
border: 0;
border-top: 1px solid #eeeeee; }
.sr-only {
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
padding: 0;
overflow: hidden;
clip: rect(0, 0, 0, 0);
border: 0; }
.sr-only-focusable:active, .sr-only-focusable:focus {
position: static;
width: auto;
height: auto;
margin: 0;
overflow: visible;
clip: auto; }
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,
h1 .small, h2 small,
h2 .small, h3 small,
h3 .small, h4 small,
h4 .small, h5 small,
h5 .small, h6 small,
h6 .small,
.h1 small,
.h1 .small, .h2 small,
.h2 .small, .h3 small,
.h3 .small, .h4 small,
.h4 .small, .h5 small,
.h5 .small, .h6 small,
.h6 .small {
font-weight: normal;
line-height: 1;
color: #777777; }
h1, .h1,
h2, .h2,
h3, .h3 {
margin-top: 21px;
margin-bottom: 10.5px; }
h1 small,
h1 .small, .h1 small,
.h1 .small,
h2 small,
h2 .small, .h2 small,
.h2 .small,
h3 small,
h3 .small, .h3 small,
.h3 .small {
font-size: 65%; }
h4, .h4,
h5, .h5,
h6, .h6 {
margin-top: 10.5px;
margin-bottom: 10.5px; }
h4 small,
h4 .small, .h4 small,
.h4 .small,
h5 small,
h5 .small, .h5 small,
.h5 .small,
h6 small,
h6 .small, .h6 small,
.h6 .small {
font-size: 75%; }
h1, .h1 {
font-size: 33px; }
h2, .h2 {
font-size: 29px; }
h3, .h3 {
font-size: 23px; }
h4, .h4 {
font-size: 19px; }
h5, .h5 {
font-size: 14.5px; }
h6, .h6 {
font-size: 13px; }
p {
margin: 0 0 10.5px; }
.lead {
margin-bottom: 21px;
font-size: 16px;
font-weight: 300;
line-height: 1.4; }
@media (min-width: 768px) {
.lead {
font-size: 21.75px; } }
small,
.small {
font-size: 82%; }
mark,
.mark {
background-color: #d0d0d0;
padding: .2em; }
.text-left {
text-align: left; }
.text-right {
text-align: right; }
.text-center {
text-align: center; }
.text-justify {
text-align: justify; }
.text-nowrap {
white-space: nowrap; }
.text-lowercase {
text-transform: lowercase; }
.text-uppercase {
text-transform: uppercase; }
.text-capitalize {
text-transform: capitalize; }
.text-muted {
color: #777777; }
.text-primary {
color: #3a92d7; }
a.text-primary:hover {
color: #2578b9; }
.text-success {
color: #fff; }
a.text-success:hover {
color: #e6e6e6; }
.text-info {
color: #fff; }
a.text-info:hover {
color: #e6e6e6; }
.text-warning {
color: #fff; }
a.text-warning:hover {
color: #e6e6e6; }
.text-danger {
color: #fff; }
a.text-danger:hover {
color: #e6e6e6; }
.bg-primary {
color: #fff; }
.bg-primary {
background-color: #3a92d7; }
a.bg-primary:hover {
background-color: #2578b9; }
.bg-success {
background-color: #00ca6d; }
a.bg-success:hover {
background-color: #009751; }
.bg-info {
background-color: #00acd6; }
a.bg-info:hover {
background-color: #0083a3; }
.bg-warning {
background-color: #fcad26; }
a.bg-warning:hover {
background-color: #ec9603; }
.bg-danger {
background-color: #f56954; }
a.bg-danger:hover {
background-color: #f23f24; }
.page-header {
padding-bottom: 9.5px;
margin: 42px 0 21px;
border-bottom: 1px solid #eeeeee; }
ul,
ol {
margin-top: 0;
margin-bottom: 10.5px; }
ul ul,
ul ol,
ol ul,
ol ol {
margin-bottom: 0; }
.list-unstyled {
padding-left: 0;
list-style: none; }
.list-inline {
padding-left: 0;
list-style: none;
margin-left: -5px; }
.list-inline > li {
display: inline-block;
padding-left: 5px;
padding-right: 5px; }
dl {
margin-top: 0;
margin-bottom: 21px; }
dt,
dd {
line-height: 1.5; }
dt {
font-weight: bold; }
dd {
margin-left: 0; }
.dl-horizontal dd:before, .dl-horizontal dd:after {
content: " ";
display: table; }
.dl-horizontal dd:after {
clear: both; }
@media (min-width: 768px) {
.dl-horizontal dt {
float: left;
width: 160px;
clear: left;
text-align: right;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap; }
.dl-horizontal dd {
margin-left: 180px; } }
abbr[title],
abbr[data-original-title] {
cursor: pointer;
border-bottom: 1px dotted #777777; }
.initialism {
font-size: 90%;
text-transform: uppercase; }
blockquote {
padding: 10.5px 21px;
margin: 0 0 21px;
font-size: 14.5px;
border-left: 5px solid #c0c0c0;
font-weight: 700; }
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: 90%;
line-height: 1.5;
color: #777777; }
blockquote footer:before,
blockquote small:before,
blockquote .small:before {
content: '\2014 \00A0'; }
.blockquote-reverse,
blockquote.pull-right {
padding-right: 15px;
padding-left: 0;
border-right: 5px solid #c0c0c0;
border-left: 0;
text-align: right; }
.blockquote-reverse footer:before,
.blockquote-reverse small:before,
.blockquote-reverse .small:before,
blockquote.pull-right footer:before,
blockquote.pull-right small:before,
blockquote.pull-right .small:before {
content: ''; }
.blockquote-reverse footer:after,
.blockquote-reverse small:after,
.blockquote-reverse .small:after,
blockquote.pull-right footer:after,
blockquote.pull-right small:after,
blockquote.pull-right .small:after {
content: '\00A0 \2014'; }
address {
margin-bottom: 21px;
font-style: normal;
line-height: 1.5; }
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: 0px; }
kbd {
padding: 2px 4px;
font-size: 90%;
color: #fff;
background-color: #333;
border-radius: 0px;
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25); }
kbd kbd {
padding: 0;
font-size: 100%;
font-weight: bold;
box-shadow: none; }
pre {
display: block;
padding: 10px;
margin: 0 0 10.5px;
font-size: 13.5px;
line-height: 1.5;
word-break: break-all;
word-wrap: break-word;
color: #333333;
background-color: #f5f5f5;
border: 1px solid #ccc;
border-radius: 0px; }
pre code {
padding: 0;
font-size: inherit;
color: inherit;
white-space: pre-wrap;
background-color: transparent;
border-radius: 0; }
.pre-scrollable {
max-height: 340px;
overflow-y: scroll; }
.container {
margin-right: auto;
margin-left: auto;
padding-left: 15px;
padding-right: 15px; }
.container:before, .container:after {
content: " ";
display: table; }
.container:after {
clear: both; }
@media (min-width: 768px) {
.container {
width: 750px; } }
@media (min-width: 992px) {
.container {
width: 970px; } }
@media (min-width: 1200px) {
.container {
width: 1170px; } }
.container-fluid {
margin-right: auto;
margin-left: auto;
padding-left: 15px;
padding-right: 15px; }
.container-fluid:before, .container-fluid:after {
content: " ";
display: table; }
.container-fluid:after {
clear: both; }
.row, .feed .micropost .content, .feed .micropost .actions {
margin-left: -15px;
margin-right: -15px; }
.row:before, .feed .micropost .content:before, .feed .micropost .actions:before, .row:after, .feed .micropost .content:after, .feed .micropost .actions:after {
content: " ";
display: table; }
.row:after, .feed .micropost .content:after, .feed .micropost .actions:after {
clear: both; }
.col-xs-1, .feed .micropost .content .avatar-content, .col-sm-1, .col-md-1, .feed .micropost .content .avatar-content, .col-lg-1, .feed .micropost .content .avatar-content, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .feed .micropost .content .right-content, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .feed .micropost .content .right-content, .col-sm-4, .col-md-4, .feed .micropost .content .right-content, .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, .feed .micropost .content .post-content, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .feed .micropost .content .post-content, .col-sm-11, .col-md-11, .feed .micropost .content .post-content, .col-lg-11, .feed .micropost .actions .actions-content, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
position: relative;
min-height: 1px;
padding-left: 15px;
padding-right: 15px; }
.col-xs-1, .feed .micropost .content .avatar-content, .col-xs-2, .col-xs-3, .col-xs-4, .feed .micropost .content .right-content, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .feed .micropost .content .post-content, .col-xs-12 {
float: left; }
.col-xs-1, .feed .micropost .content .avatar-content {
width: 8.33333%; }
.col-xs-2 {
width: 16.66667%; }
.col-xs-3 {
width: 25%; }
.col-xs-4, .feed .micropost .content .right-content {
width: 33.33333%; }
.col-xs-5 {
width: 41.66667%; }
.col-xs-6 {
width: 50%; }
.col-xs-7 {
width: 58.33333%; }
.col-xs-8 {
width: 66.66667%; }
.col-xs-9 {
width: 75%; }
.col-xs-10 {
width: 83.33333%; }
.col-xs-11, .feed .micropost .content .post-content {
width: 91.66667%; }
.col-xs-12 {
width: 100%; }
.col-xs-pull-0 {
right: auto; }
.col-xs-pull-1 {
right: 8.33333%; }
.col-xs-pull-2 {
right: 16.66667%; }
.col-xs-pull-3 {
right: 25%; }
.col-xs-pull-4 {
right: 33.33333%; }
.col-xs-pull-5 {
right: 41.66667%; }
.col-xs-pull-6 {
right: 50%; }
.col-xs-pull-7 {
right: 58.33333%; }
.col-xs-pull-8 {
right: 66.66667%; }
.col-xs-pull-9 {
right: 75%; }
.col-xs-pull-10 {
right: 83.33333%; }
.col-xs-pull-11 {
right: 91.66667%; }
.col-xs-pull-12 {
right: 100%; }
.col-xs-push-0 {
left: auto; }
.col-xs-push-1 {
left: 8.33333%; }
.col-xs-push-2 {
left: 16.66667%; }
.col-xs-push-3 {
left: 25%; }
.col-xs-push-4 {
left: 33.33333%; }
.col-xs-push-5 {
left: 41.66667%; }
.col-xs-push-6 {
left: 50%; }
.col-xs-push-7 {
left: 58.33333%; }
.col-xs-push-8 {
left: 66.66667%; }
.col-xs-push-9 {
left: 75%; }
.col-xs-push-10 {
left: 83.33333%; }
.col-xs-push-11 {
left: 91.66667%; }
.col-xs-push-12 {
left: 100%; }
.col-xs-offset-0 {
margin-left: 0%; }
.col-xs-offset-1 {
margin-left: 8.33333%; }
.col-xs-offset-2, .feed .micropost .content .right-content {
margin-left: 16.66667%; }
.col-xs-offset-3 {
margin-left: 25%; }
.col-xs-offset-4 {
margin-left: 33.33333%; }
.col-xs-offset-5 {
margin-left: 41.66667%; }
.col-xs-offset-6 {
margin-left: 50%; }
.col-xs-offset-7 {
margin-left: 58.33333%; }
.col-xs-offset-8 {
margin-left: 66.66667%; }
.col-xs-offset-9 {
margin-left: 75%; }
.col-xs-offset-10 {
margin-left: 83.33333%; }
.col-xs-offset-11 {
margin-left: 91.66667%; }
.col-xs-offset-12 {
margin-left: 100%; }
@media (min-width: 768px) {
.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
float: left; }
.col-sm-1 {
width: 8.33333%; }
.col-sm-2 {
width: 16.66667%; }
.col-sm-3 {
width: 25%; }
.col-sm-4 {
width: 33.33333%; }
.col-sm-5 {
width: 41.66667%; }
.col-sm-6 {
width: 50%; }
.col-sm-7 {
width: 58.33333%; }
.col-sm-8 {
width: 66.66667%; }
.col-sm-9 {
width: 75%; }
.col-sm-10 {
width: 83.33333%; }
.col-sm-11 {
width: 91.66667%; }
.col-sm-12 {
width: 100%; }
.col-sm-pull-0 {
right: auto; }
.col-sm-pull-1 {
right: 8.33333%; }
.col-sm-pull-2 {
right: 16.66667%; }
.col-sm-pull-3 {
right: 25%; }
.col-sm-pull-4 {
right: 33.33333%; }
.col-sm-pull-5 {
right: 41.66667%; }
.col-sm-pull-6 {
right: 50%; }
.col-sm-pull-7 {
right: 58.33333%; }
.col-sm-pull-8 {
right: 66.66667%; }
.col-sm-pull-9 {
right: 75%; }
.col-sm-pull-10 {
right: 83.33333%; }
.col-sm-pull-11 {
right: 91.66667%; }
.col-sm-pull-12 {
right: 100%; }
.col-sm-push-0 {
left: auto; }
.col-sm-push-1 {
left: 8.33333%; }
.col-sm-push-2 {
left: 16.66667%; }
.col-sm-push-3 {
left: 25%; }
.col-sm-push-4 {
left: 33.33333%; }
.col-sm-push-5 {
left: 41.66667%; }
.col-sm-push-6 {
left: 50%; }
.col-sm-push-7 {
left: 58.33333%; }
.col-sm-push-8 {
left: 66.66667%; }
.col-sm-push-9 {
left: 75%; }
.col-sm-push-10 {
left: 83.33333%; }
.col-sm-push-11 {
left: 91.66667%; }
.col-sm-push-12 {
left: 100%; }
.col-sm-offset-0 {
margin-left: 0%; }
.col-sm-offset-1 {
margin-left: 8.33333%; }
.col-sm-offset-2 {
margin-left: 16.66667%; }
.col-sm-offset-3 {
margin-left: 25%; }
.col-sm-offset-4 {
margin-left: 33.33333%; }
.col-sm-offset-5 {
margin-left: 41.66667%; }
.col-sm-offset-6 {
margin-left: 50%; }
.col-sm-offset-7 {
margin-left: 58.33333%; }
.col-sm-offset-8 {
margin-left: 66.66667%; }
.col-sm-offset-9 {
margin-left: 75%; }
.col-sm-offset-10 {
margin-left: 83.33333%; }
.col-sm-offset-11 {
margin-left: 91.66667%; }
.col-sm-offset-12 {
margin-left: 100%; } }
@media (min-width: 992px) {
.col-md-1, .feed .micropost .content .avatar-content, .col-md-2, .col-md-3, .col-md-4, .feed .micropost .content .right-content, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .feed .micropost .content .post-content, .col-md-12 {
float: left; }
.col-md-1, .feed .micropost .content .avatar-content {
width: 8.33333%; }
.col-md-2 {
width: 16.66667%; }
.col-md-3 {
width: 25%; }
.col-md-4, .feed .micropost .content .right-content {
width: 33.33333%; }
.col-md-5 {
width: 41.66667%; }
.col-md-6 {
width: 50%; }
.col-md-7 {
width: 58.33333%; }
.col-md-8 {
width: 66.66667%; }
.col-md-9 {
width: 75%; }
.col-md-10 {
width: 83.33333%; }
.col-md-11, .feed .micropost .content .post-content {
width: 91.66667%; }
.col-md-12 {
width: 100%; }
.col-md-pull-0 {
right: auto; }
.col-md-pull-1 {
right: 8.33333%; }
.col-md-pull-2 {
right: 16.66667%; }
.col-md-pull-3 {
right: 25%; }
.col-md-pull-4 {
right: 33.33333%; }
.col-md-pull-5 {
right: 41.66667%; }
.col-md-pull-6 {
right: 50%; }
.col-md-pull-7 {
right: 58.33333%; }
.col-md-pull-8 {
right: 66.66667%; }
.col-md-pull-9 {
right: 75%; }
.col-md-pull-10 {
right: 83.33333%; }
.col-md-pull-11 {
right: 91.66667%; }
.col-md-pull-12 {
right: 100%; }
.col-md-push-0 {
left: auto; }
.col-md-push-1 {
left: 8.33333%; }
.col-md-push-2 {
left: 16.66667%; }
.col-md-push-3 {
left: 25%; }
.col-md-push-4 {
left: 33.33333%; }
.col-md-push-5 {
left: 41.66667%; }
.col-md-push-6 {
left: 50%; }
.col-md-push-7 {
left: 58.33333%; }
.col-md-push-8 {
left: 66.66667%; }
.col-md-push-9 {
left: 75%; }
.col-md-push-10 {
left: 83.33333%; }
.col-md-push-11 {
left: 91.66667%; }
.col-md-push-12 {
left: 100%; }
.col-md-offset-0 {
margin-left: 0%; }
.col-md-offset-1 {
margin-left: 8.33333%; }
.col-md-offset-2, .feed .micropost .content .right-content {
margin-left: 16.66667%; }
.col-md-offset-3 {
margin-left: 25%; }
.col-md-offset-4 {
margin-left: 33.33333%; }
.col-md-offset-5 {
margin-left: 41.66667%; }
.col-md-offset-6 {
margin-left: 50%; }
.col-md-offset-7 {
margin-left: 58.33333%; }
.col-md-offset-8 {
margin-left: 66.66667%; }
.col-md-offset-9 {
margin-left: 75%; }
.col-md-offset-10 {
margin-left: 83.33333%; }
.col-md-offset-11 {
margin-left: 91.66667%; }
.col-md-offset-12 {
margin-left: 100%; } }
@media (min-width: 1200px) {
.col-lg-1, .feed .micropost .content .avatar-content, .col-lg-2, .feed .micropost .content .right-content, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .feed .micropost .content .post-content, .col-lg-10, .col-lg-11, .feed .micropost .actions .actions-content, .col-lg-12 {
float: left; }
.col-lg-1, .feed .micropost .content .avatar-content {
width: 8.33333%; }
.col-lg-2, .feed .micropost .content .right-content {
width: 16.66667%; }
.col-lg-3 {
width: 25%; }
.col-lg-4 {
width: 33.33333%; }
.col-lg-5 {
width: 41.66667%; }
.col-lg-6 {
width: 50%; }
.col-lg-7 {
width: 58.33333%; }
.col-lg-8 {
width: 66.66667%; }
.col-lg-9, .feed .micropost .content .post-content {
width: 75%; }
.col-lg-10 {
width: 83.33333%; }
.col-lg-11, .feed .micropost .actions .actions-content {
width: 91.66667%; }
.col-lg-12 {
width: 100%; }
.col-lg-pull-0 {
right: auto; }
.col-lg-pull-1 {
right: 8.33333%; }
.col-lg-pull-2 {
right: 16.66667%; }
.col-lg-pull-3 {
right: 25%; }
.col-lg-pull-4 {
right: 33.33333%; }
.col-lg-pull-5 {
right: 41.66667%; }
.col-lg-pull-6 {
right: 50%; }
.col-lg-pull-7 {
right: 58.33333%; }
.col-lg-pull-8 {
right: 66.66667%; }
.col-lg-pull-9 {
right: 75%; }
.col-lg-pull-10 {
right: 83.33333%; }
.col-lg-pull-11 {
right: 91.66667%; }
.col-lg-pull-12 {
right: 100%; }
.col-lg-push-0 {
left: auto; }
.col-lg-push-1 {
left: 8.33333%; }
.col-lg-push-2 {
left: 16.66667%; }
.col-lg-push-3 {
left: 25%; }
.col-lg-push-4 {
left: 33.33333%; }
.col-lg-push-5 {
left: 41.66667%; }
.col-lg-push-6 {
left: 50%; }
.col-lg-push-7 {
left: 58.33333%; }
.col-lg-push-8 {
left: 66.66667%; }
.col-lg-push-9 {
left: 75%; }
.col-lg-push-10 {
left: 83.33333%; }
.col-lg-push-11 {
left: 91.66667%; }
.col-lg-push-12 {
left: 100%; }
.col-lg-offset-0, .feed .micropost .content .right-content {
margin-left: 0%; }
.col-lg-offset-1, .feed .micropost .actions .actions-content {
margin-left: 8.33333%; }
.col-lg-offset-2 {
margin-left: 16.66667%; }
.col-lg-offset-3 {
margin-left: 25%; }
.col-lg-offset-4 {
margin-left: 33.33333%; }
.col-lg-offset-5 {
margin-left: 41.66667%; }
.col-lg-offset-6 {
margin-left: 50%; }
.col-lg-offset-7 {
margin-left: 58.33333%; }
.col-lg-offset-8 {
margin-left: 66.66667%; }
.col-lg-offset-9 {
margin-left: 75%; }
.col-lg-offset-10 {
margin-left: 83.33333%; }
.col-lg-offset-11 {
margin-left: 91.66667%; }
.col-lg-offset-12 {
margin-left: 100%; } }
table {
background-color: transparent; }
caption {
padding-top: 9px;
padding-bottom: 9px;
color: #777777;
text-align: left; }
th {
text-align: left; }
.table {
width: 100%;
max-width: 100%;
margin-bottom: 21px; }
.table > thead > tr > th,
.table > thead > tr > td,
.table > tbody > tr > th,
.table > tbody > tr > td,
.table > tfoot > tr > th,
.table > tfoot > tr > td {
padding: 9px;
line-height: 1.5;
vertical-align: top;
border-top: 1px solid #ccc; }
.table > thead > tr > th {
vertical-align: bottom;
border-bottom: 2px solid #ccc; }
.table > caption + thead > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > th,
.table > thead:first-child > tr:first-child > td {
border-top: 0; }
.table > tbody + tbody {
border-top: 2px solid #ccc; }
.table .table {
background-color: #fff; }
.table-condensed > thead > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > th,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > th,
.table-condensed > tfoot > tr > td {
padding: 6px; }
.table-bordered {
border: 1px solid #ccc; }
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > th,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > th,
.table-bordered > tfoot > tr > td {
border: 1px solid #ccc; }
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
border-bottom-width: 2px; }
.table-striped > tbody > tr:nth-child(odd) {
background-color: #f9f9f9; }
.table-hover > tbody > tr:hover {
background-color: #f5f5f5; }
table col[class*="col-"] {
position: static;
float: none;
display: table-column; }
table td[class*="col-"],
table th[class*="col-"] {
position: static;
float: none;
display: table-cell; }
.table > thead > tr > td.active,
.table > thead > tr > th.active, .table > thead > tr.active > td, .table > thead > tr.active > th,
.table > tbody > tr > td.active,
.table > tbody > tr > th.active,
.table > tbody > tr.active > td,
.table > tbody > tr.active > th,
.table > tfoot > tr > td.active,
.table > tfoot > tr > th.active,
.table > tfoot > tr.active > td,
.table > tfoot > tr.active > th {
color: white;
background-color: #f5f5f5; }
.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover, .table-hover > tbody > tr.active:hover > td, .table-hover > tbody > tr:hover > .active, .table-hover > tbody > tr.active:hover > th {
background-color: #e8e8e8; }
.table > thead > tr > td.success,
.table > thead > tr > th.success, .table > thead > tr.success > td, .table > thead > tr.success > th,
.table > tbody > tr > td.success,
.table > tbody > tr > th.success,
.table > tbody > tr.success > td,
.table > tbody > tr.success > th,
.table > tfoot > tr > td.success,
.table > tfoot > tr > th.success,
.table > tfoot > tr.success > td,
.table > tfoot > tr.success > th {
color: white;
background-color: #00ca6d; }
.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: #00b15f; }
.table > thead > tr > td.info,
.table > thead > tr > th.info, .table > thead > tr.info > td, .table > thead > tr.info > th,
.table > tbody > tr > td.info,
.table > tbody > tr > th.info,
.table > tbody > tr.info > td,
.table > tbody > tr.info > th,
.table > tfoot > tr > td.info,
.table > tfoot > tr > th.info,
.table > tfoot > tr.info > td,
.table > tfoot > tr.info > th {
color: white;
background-color: #00acd6; }
.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: #0097bc; }
.table > thead > tr > td.warning,
.table > thead > tr > th.warning, .table > thead > tr.warning > td, .table > thead > tr.warning > th,
.table > tbody > tr > td.warning,
.table > tbody > tr > th.warning,
.table > tbody > tr.warning > td,
.table > tbody > tr.warning > th,
.table > tfoot > tr > td.warning,
.table > tfoot > tr > th.warning,
.table > tfoot > tr.warning > td,
.table > tfoot > tr.warning > th {
color: white;
background-color: #fcad26; }
.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: #fca30d; }
.table > thead > tr > td.danger,
.table > thead > tr > th.danger, .table > thead > tr.danger > td, .table > thead > tr.danger > th,
.table > tbody > tr > td.danger,
.table > tbody > tr > th.danger,
.table > tbody > tr.danger > td,
.table > tbody > tr.danger > th,
.table > tfoot > tr > td.danger,
.table > tfoot > tr > th.danger,
.table > tfoot > tr.danger > td,
.table > tfoot > tr.danger > th {
color: white;
background-color: #f56954; }
.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: #f4543c; }
.table-responsive {
overflow-x: auto;
min-height: 0.01%; }
@media screen and (max-width: 767px) {
.table-responsive {
width: 100%;
margin-bottom: 15.75px;
overflow-y: hidden;
-ms-overflow-style: -ms-autohiding-scrollbar;
border: 1px solid #ccc; }
.table-responsive > .table {
margin-bottom: 0; }
.table-responsive > .table > thead > tr > th,
.table-responsive > .table > thead > tr > td,
.table-responsive > .table > tbody > tr > th,
.table-responsive > .table > tbody > tr > td,
.table-responsive > .table > tfoot > tr > th,
.table-responsive > .table > tfoot > tr > td {
white-space: nowrap; }
.table-responsive > .table-bordered {
border: 0; }
.table-responsive > .table-bordered > thead > tr > th:first-child,
.table-responsive > .table-bordered > thead > tr > td:first-child,
.table-responsive > .table-bordered > tbody > tr > th:first-child,
.table-responsive > .table-bordered > tbody > tr > td:first-child,
.table-responsive > .table-bordered > tfoot > tr > th:first-child,
.table-responsive > .table-bordered > tfoot > tr > td:first-child {
border-left: 0; }
.table-responsive > .table-bordered > thead > tr > th:last-child,
.table-responsive > .table-bordered > thead > tr > td:last-child,
.table-responsive > .table-bordered > tbody > tr > th:last-child,
.table-responsive > .table-bordered > tbody > tr > td:last-child,
.table-responsive > .table-bordered > tfoot > tr > th:last-child,
.table-responsive > .table-bordered > tfoot > tr > td:last-child {
border-right: 0; }
.table-responsive > .table-bordered > tbody > tr:last-child > th,
.table-responsive > .table-bordered > tbody > tr:last-child > td,
.table-responsive > .table-bordered > tfoot > tr:last-child > th,
.table-responsive > .table-bordered > tfoot > tr:last-child > td {
border-bottom: 0; } }
fieldset {
padding: 0;
margin: 0;
border: 0;
min-width: 0; }
legend {
display: block;
width: 100%;
padding: 0;
margin-bottom: 21px;
font-size: 21.75px;
line-height: inherit;
color: #333333;
border: 0;
border-bottom: 1px solid #e5e5e5; }
label {
display: inline-block;
max-width: 100%;
margin-bottom: 5px;
font-weight: bold; }
input[type="search"] {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box; }
input[type="radio"],
input[type="checkbox"] {
margin: 4px 0 0;
margin-top: 1px \9;
line-height: normal; }
input[type="file"] {
display: block; }
input[type="range"] {
display: block;
width: 100%; }
select[multiple],
select[size] {
height: auto; }
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
/* // Default
outline: thin dotted;
// WebKit
outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px; */ }
output {
display: block;
padding-top: 7px;
font-size: 14.5px;
line-height: 1.5;
color: #555555; }
.form-control {
display: block;
width: 100%;
height: 35px;
padding: 6px 12px;
font-size: 13.775px;
line-height: 1.5;
color: #555555;
background-color: #fff;
background-image: none;
border: 1px solid #ccc;
border-radius: 0px;
-webkit-box-shadow: none;
box-shadow: none;
-webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
-o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
/* @include form-control-focus; */ }
.form-control::-moz-placeholder {
color: #999;
opacity: 1; }
.form-control:-ms-input-placeholder {
color: #999; }
.form-control::-webkit-input-placeholder {
color: #999; }
.form-control:focus {
border: 1px solid #444; }
.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
cursor: not-allowed;
background-color: #fff;
opacity: 1; }
textarea.form-control {
height: auto; }
input[type="search"] {
-webkit-appearance: none; }
@media screen and (-webkit-min-device-pixel-ratio: 0) {
input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
line-height: 35px; }
input[type="date"].input-sm, .input-group-sm > input[type="date"].form-control,
.input-group-sm > input[type="date"].input-group-addon,
.input-group-sm > .input-group-btn > input[type="date"].btn,
input[type="time"].input-sm,
.input-group-sm > input[type="time"].form-control,
.input-group-sm > input[type="time"].input-group-addon,
.input-group-sm > .input-group-btn > input[type="time"].btn,
input[type="datetime-local"].input-sm,
.input-group-sm > input[type="datetime-local"].form-control,
.input-group-sm > input[type="datetime-local"].input-group-addon,
.input-group-sm > .input-group-btn > input[type="datetime-local"].btn,
input[type="month"].input-sm,
.input-group-sm > input[type="month"].form-control,
.input-group-sm > input[type="month"].input-group-addon,
.input-group-sm > .input-group-btn > input[type="month"].btn {
line-height: 30px; }
input[type="date"].input-lg, .input-group-lg > input[type="date"].form-control,
.input-group-lg > input[type="date"].input-group-addon,
.input-group-lg > .input-group-btn > input[type="date"].btn,
input[type="time"].input-lg,
.input-group-lg > input[type="time"].form-control,
.input-group-lg > input[type="time"].input-group-addon,
.input-group-lg > .input-group-btn > input[type="time"].btn,
input[type="datetime-local"].input-lg,
.input-group-lg > input[type="datetime-local"].form-control,
.input-group-lg > input[type="datetime-local"].input-group-addon,
.input-group-lg > .input-group-btn > input[type="datetime-local"].btn,
input[type="month"].input-lg,
.input-group-lg > input[type="month"].form-control,
.input-group-lg > input[type="month"].input-group-addon,
.input-group-lg > .input-group-btn > input[type="month"].btn {
line-height: 48px; } }
.form-group {
margin-bottom: 15px; }
.radio,
.checkbox {
position: relative;
display: block;
margin-top: 10px;
margin-bottom: 10px; }
.radio label,
.checkbox label {
min-height: 21px;
padding-left: 20px;
margin-bottom: 0;
font-weight: normal;
cursor: pointer; }
.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
position: absolute;
margin-left: -20px;
margin-top: 4px \9; }
.radio + .radio,
.checkbox + .checkbox {
margin-top: -5px; }
.radio-inline,
.checkbox-inline {
display: inline-block;
padding-left: 20px;
margin-bottom: 0;
vertical-align: middle;
font-weight: normal;
cursor: pointer; }
.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
margin-top: 0;
margin-left: 10px; }
input[type="radio"][disabled], input[type="radio"].disabled, fieldset[disabled] input[type="radio"],
input[type="checkbox"][disabled],
input[type="checkbox"].disabled, fieldset[disabled]
input[type="checkbox"] {
cursor: not-allowed; }
.radio-inline.disabled, fieldset[disabled] .radio-inline,
.checkbox-inline.disabled, fieldset[disabled]
.checkbox-inline {
cursor: not-allowed; }
.radio.disabled label, fieldset[disabled] .radio label,
.checkbox.disabled label, fieldset[disabled]
.checkbox label {
cursor: not-allowed; }
.form-control-static {
padding-top: 7px;
padding-bottom: 7px;
margin-bottom: 0; }
.form-control-static.input-lg, .input-group-lg > .form-control-static.form-control,
.input-group-lg > .form-control-static.input-group-addon,
.input-group-lg > .input-group-btn > .form-control-static.btn, .form-control-static.input-sm, .input-group-sm > .form-control-static.form-control,
.input-group-sm > .form-control-static.input-group-addon,
.input-group-sm > .input-group-btn > .form-control-static.btn {
padding-left: 0;
padding-right: 0; }
.input-sm, .input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn, .form-group-sm .form-control {
height: 30px;
padding: 5px 10px;
font-size: 12px;
line-height: 1.5;
border-radius: 0px; }
select.input-sm, .input-group-sm > select.form-control,
.input-group-sm > select.input-group-addon,
.input-group-sm > .input-group-btn > select.btn, .form-group-sm .form-control {
height: 30px;
line-height: 30px; }
textarea.input-sm, .input-group-sm > textarea.form-control,
.input-group-sm > textarea.input-group-addon,
.input-group-sm > .input-group-btn > textarea.btn, .form-group-sm .form-control,
select[multiple].input-sm,
.input-group-sm > select[multiple].form-control,
.input-group-sm > select[multiple].input-group-addon,
.input-group-sm > .input-group-btn > select[multiple].btn, .form-group-sm .form-control {
height: auto; }
.input-lg, .input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn, .form-group-lg .form-control {
height: 48px;
padding: 10px 16px;
font-size: 19px;
line-height: 1.33;
border-radius: 0px; }
select.input-lg, .input-group-lg > select.form-control,
.input-group-lg > select.input-group-addon,
.input-group-lg > .input-group-btn > select.btn, .form-group-lg .form-control {
height: 48px;
line-height: 48px; }
textarea.input-lg, .input-group-lg > textarea.form-control,
.input-group-lg > textarea.input-group-addon,
.input-group-lg > .input-group-btn > textarea.btn, .form-group-lg .form-control,
select[multiple].input-lg,
.input-group-lg > select[multiple].form-control,
.input-group-lg > select[multiple].input-group-addon,
.input-group-lg > .input-group-btn > select[multiple].btn, .form-group-lg .form-control {
height: auto; }
.has-feedback {
position: relative; }
.has-feedback .form-control {
padding-right: 43.75px; }
.form-control-feedback {
position: absolute;
top: 0;
right: 0;
z-index: 2;
display: block;
width: 35px;
height: 35px;
line-height: 35px;
text-align: center;
pointer-events: none; }
.input-lg + .form-control-feedback, .input-group-lg > .form-control + .form-control-feedback,
.input-group-lg > .input-group-addon + .form-control-feedback,
.input-group-lg > .input-group-btn > .btn + .form-control-feedback {
width: 48px;
height: 48px;
line-height: 48px; }
.input-sm + .form-control-feedback, .input-group-sm > .form-control + .form-control-feedback,
.input-group-sm > .input-group-addon + .form-control-feedback,
.input-group-sm > .input-group-btn > .btn + .form-control-feedback {
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: #5cb85c; }
.has-success .form-control {
border-color: #5cb85c;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
.has-success .form-control:focus {
border-color: #449d44;
-webkit-box-shadow: none;
box-shadow: none; }
.has-success .input-group-addon {
color: #5cb85c;
border-color: #5cb85c;
background-color: #5cb85c; }
.has-success .form-control-feedback {
color: #5cb85c; }
.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: #fca30d; }
.has-warning .form-control {
border-color: #fcad26;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
.has-warning .form-control:focus {
border-color: #ec9603;
-webkit-box-shadow: none;
box-shadow: none; }
.has-warning .input-group-addon {
color: #fca30d;
border-color: #fcad26;
background-color: #fcad26; }
.has-warning .form-control-feedback {
color: #fca30d; }
.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: #f35037; }
.has-error .form-control {
border-color: #f56954;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
.has-error .form-control:focus {
border-color: #f23f24;
-webkit-box-shadow: none;
box-shadow: none; }
.has-error .input-group-addon {
color: #f35037;
border-color: #f56954;
background-color: #f56954; }
.has-error .form-control-feedback {
color: #f35037; }
.has-feedback label ~ .form-control-feedback {
top: 26px; }
.has-feedback label.sr-only ~ .form-control-feedback {
top: 0; }
.help-block {
display: block;
margin-top: 5px;
margin-bottom: 10px;
color: #737373; }
@media (min-width: 768px) {
.form-inline .form-group {
display: inline-block;
margin-bottom: 0;
vertical-align: middle; }
.form-inline .form-control {
display: inline-block;
width: auto;
vertical-align: middle; }
.form-inline .form-control-static {
display: inline-block; }
.form-inline .input-group {
display: inline-table;
vertical-align: middle; }
.form-inline .input-group .input-group-addon,
.form-inline .input-group .input-group-btn,
.form-inline .input-group .form-control {
width: auto; }
.form-inline .input-group > .form-control {
width: 100%; }
.form-inline .control-label {
margin-bottom: 0;
vertical-align: middle; }
.form-inline .radio,
.form-inline .checkbox {
display: inline-block;
margin-top: 0;
margin-bottom: 0;
vertical-align: middle; }
.form-inline .radio label,
.form-inline .checkbox label {
padding-left: 0; }
.form-inline .radio input[type="radio"],
.form-inline .checkbox input[type="checkbox"] {
position: relative;
margin-left: 0; }
.form-inline .has-feedback .form-control-feedback {
top: 0; } }
.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
margin-top: 0;
margin-bottom: 0;
padding-top: 7px; }
.form-horizontal .radio,
.form-horizontal .checkbox {
min-height: 28px; }
.form-horizontal .form-group {
margin-left: -15px;
margin-right: -15px; }
.form-horizontal .form-group:before, .form-horizontal .form-group:after {
content: " ";
display: table; }
.form-horizontal .form-group:after {
clear: both; }
@media (min-width: 768px) {
.form-horizontal .control-label {
text-align: right;
margin-bottom: 0;
padding-top: 7px; } }
.form-horizontal .has-feedback .form-control-feedback {
right: 15px; }
@media (min-width: 768px) {
.form-horizontal .form-group-lg .control-label {
padding-top: 14.3px; } }
@media (min-width: 768px) {
.form-horizontal .form-group-sm .control-label {
padding-top: 6px; } }
.btn {
display: inline-block;
margin-bottom: 0;
font-weight: 600;
text-align: center;
vertical-align: middle;
touch-action: manipulation;
cursor: pointer;
background-image: none;
border: 1px solid transparent;
white-space: nowrap;
padding: 6px 12px;
font-size: 13.775px;
line-height: 1.5;
border-radius: 0px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none; }
.btn:focus, .btn.focus, .btn:active:focus, .btn:active.focus, .btn.active:focus, .btn.active.focus {
/* // Default
outline: thin dotted;
// WebKit
outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px; */ }
.btn:hover, .btn:focus, .btn.focus {
color: #333;
text-decoration: none; }
.btn:active, .btn.active {
outline: 0;
background-image: none;
/* @include box-shadow(inset 0 3px 5px rgba(0,0,0,.125)); */ }
.btn.disabled, .btn[disabled], fieldset[disabled] .btn {
cursor: not-allowed;
pointer-events: none;
opacity: 0.65;
filter: alpha(opacity=65);
-webkit-box-shadow: none;
box-shadow: none; }
.btn-default {
color: #333;
background-color: #fff;
border-color: #ccc; }
.btn-default:hover, .btn-default:focus, .btn-default.focus, .btn-default:active, .btn-default.active, .open > .btn-default.dropdown-toggle {
color: #333;
background-color: #e6e6e6;
border-color: #adadad; }
.btn-default:active, .btn-default.active, .open > .btn-default.dropdown-toggle {
background-image: none; }
.btn-default.disabled, .btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disabled.focus, .btn-default.disabled:active, .btn-default.disabled.active, .btn-default[disabled], .btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default[disabled].focus, .btn-default[disabled]:active, .btn-default[disabled].active, fieldset[disabled] .btn-default, fieldset[disabled] .btn-default:hover, fieldset[disabled] .btn-default:focus, fieldset[disabled] .btn-default.focus, fieldset[disabled] .btn-default:active, fieldset[disabled] .btn-default.active {
background-color: #fff;
border-color: #ccc; }
.btn-default .badge {
color: #fff;
background-color: #333; }
.btn-primary {
color: #fff;
background-color: #3a92d7;
border-color: #2a86ce; }
.btn-primary:hover, .btn-primary:focus, .btn-primary.focus, .btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle {
color: #fff;
background-color: #2578b9;
border-color: #1f659b; }
.btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle {
background-image: none; }
.btn-primary.disabled, .btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled.focus, .btn-primary.disabled:active, .btn-primary.disabled.active, .btn-primary[disabled], .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled].focus, .btn-primary[disabled]:active, .btn-primary[disabled].active, fieldset[disabled] .btn-primary, fieldset[disabled] .btn-primary:hover, fieldset[disabled] .btn-primary:focus, fieldset[disabled] .btn-primary.focus, fieldset[disabled] .btn-primary:active, fieldset[disabled] .btn-primary.active {
background-color: #3a92d7;
border-color: #2a86ce; }
.btn-primary .badge {
color: #3a92d7;
background-color: #fff; }
.btn-success {
color: #fff;
background-color: #00ca6d;
border-color: #00b15f; }
.btn-success:hover, .btn-success:focus, .btn-success.focus, .btn-success:active, .btn-success.active, .open > .btn-success.dropdown-toggle {
color: #fff;
background-color: #009751;
border-color: #00733e; }
.btn-success:active, .btn-success.active, .open > .btn-success.dropdown-toggle {
background-image: none; }
.btn-success.disabled, .btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled.focus, .btn-success.disabled:active, .btn-success.disabled.active, .btn-success[disabled], .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success[disabled].focus, .btn-success[disabled]:active, .btn-success[disabled].active, fieldset[disabled] .btn-success, fieldset[disabled] .btn-success:hover, fieldset[disabled] .btn-success:focus, fieldset[disabled] .btn-success.focus, fieldset[disabled] .btn-success:active, fieldset[disabled] .btn-success.active {
background-color: #00ca6d;
border-color: #00b15f; }
.btn-success .badge {
color: #00ca6d;
background-color: #fff; }
.btn-info {
color: #fff;
background-color: #00c0ef;
border-color: #00acd6; }
.btn-info:hover, .btn-info:focus, .btn-info.focus, .btn-info:active, .btn-info.active, .open > .btn-info.dropdown-toggle {
color: #fff;
background-color: #0097bc;
border-color: #007a98; }
.btn-info:active, .btn-info.active, .open > .btn-info.dropdown-toggle {
background-image: none; }
.btn-info.disabled, .btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled.focus, .btn-info.disabled:active, .btn-info.disabled.active, .btn-info[disabled], .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info[disabled].focus, .btn-info[disabled]:active, .btn-info[disabled].active, fieldset[disabled] .btn-info, fieldset[disabled] .btn-info:hover, fieldset[disabled] .btn-info:focus, fieldset[disabled] .btn-info.focus, fieldset[disabled] .btn-info:active, fieldset[disabled] .btn-info.active {
background-color: #00c0ef;
border-color: #00acd6; }
.btn-info .badge {
color: #00c0ef;
background-color: #fff; }
.btn-warning {
color: #fff;
background-color: #fcad26;
border-color: #fca30d; }
.btn-warning:hover, .btn-warning:focus, .btn-warning.focus, .btn-warning:active, .btn-warning.active, .open > .btn-warning.dropdown-toggle {
color: #fff;
background-color: #ec9603;
border-color: #c98003; }
.btn-warning:active, .btn-warning.active, .open > .btn-warning.dropdown-toggle {
background-image: none; }
.btn-warning.disabled, .btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled.focus, .btn-warning.disabled:active, .btn-warning.disabled.active, .btn-warning[disabled], .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning[disabled].focus, .btn-warning[disabled]:active, .btn-warning[disabled].active, fieldset[disabled] .btn-warning, fieldset[disabled] .btn-warning:hover, fieldset[disabled] .btn-warning:focus, fieldset[disabled] .btn-warning.focus, fieldset[disabled] .btn-warning:active, fieldset[disabled] .btn-warning.active {
background-color: #fcad26;
border-color: #fca30d; }
.btn-warning .badge {
color: #fcad26;
background-color: #fff; }
.btn-danger {
color: #fff;
background-color: #f56954;
border-color: #f4543c; }
.btn-danger:hover, .btn-danger:focus, .btn-danger.focus, .btn-danger:active, .btn-danger.active, .open > .btn-danger.dropdown-toggle {
color: #fff;
background-color: #f23f24;
border-color: #e5290d; }
.btn-danger:active, .btn-danger.active, .open > .btn-danger.dropdown-toggle {
background-image: none; }
.btn-danger.disabled, .btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled.focus, .btn-danger.disabled:active, .btn-danger.disabled.active, .btn-danger[disabled], .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger[disabled].focus, .btn-danger[disabled]:active, .btn-danger[disabled].active, fieldset[disabled] .btn-danger, fieldset[disabled] .btn-danger:hover, fieldset[disabled] .btn-danger:focus, fieldset[disabled] .btn-danger.focus, fieldset[disabled] .btn-danger:active, fieldset[disabled] .btn-danger.active {
background-color: #f56954;
border-color: #f4543c; }
.btn-danger .badge {
color: #f56954;
background-color: #fff; }
.btn-link {
color: #3a92d7;
font-weight: normal;
border-radius: 0; }
.btn-link, .btn-link:active, .btn-link.active, .btn-link[disabled], fieldset[disabled] .btn-link {
background-color: transparent;
-webkit-box-shadow: none;
box-shadow: none; }
.btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active {
border-color: transparent; }
.btn-link:hover, .btn-link:focus {
color: #216aa3;
text-decoration: underline;
background-color: transparent; }
.btn-link[disabled]:hover, .btn-link[disabled]:focus, fieldset[disabled] .btn-link:hover, fieldset[disabled] .btn-link:focus {
color: #777777;
text-decoration: none; }
.btn-lg, .btn-group-lg > .btn {
padding: 10px 16px;
font-size: 19px;
line-height: 1.33;
border-radius: 0px; }
.btn-sm, .btn-group-sm > .btn {
padding: 5px 10px;
font-size: 12px;
line-height: 1.5;
border-radius: 0px; }
.btn-xs, .btn-group-xs > .btn {
padding: 1px 5px;
font-size: 12px;
line-height: 1.5;
border-radius: 0px; }
.btn-block {
display: block;
width: 100%; }
.btn-block + .btn-block {
margin-top: 5px; }
input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
width: 100%; }
.fade {
opacity: 0;
-webkit-transition: opacity 0.15s linear;
-o-transition: opacity 0.15s linear;
transition: opacity 0.15s linear; }
.fade.in {
opacity: 1; }
.collapse {
display: none;
visibility: hidden; }
.collapse.in {
display: block;
visibility: visible; }
tr.collapse.in {
display: table-row; }
tbody.collapse.in {
display: table-row-group; }
.collapsing {
position: relative;
height: 0;
overflow: hidden;
-webkit-transition-property: height, visibility;
transition-property: height, visibility;
-webkit-transition-duration: 0.35s;
transition-duration: 0.35s;
-webkit-transition-timing-function: ease;
transition-timing-function: ease; }
.caret {
display: inline-block;
width: 0;
height: 0;
margin-left: 2px;
vertical-align: middle;
border-top: 4px solid;
border-right: 4px solid transparent;
border-left: 4px solid transparent; }
.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: 0;
margin: 2px 0 0;
list-style: none;
font-size: 13.05px;
text-align: left;
background-color: #fff;
border: 1px solid #ccc;
border: 1px solid rgba(0, 0, 0, 0.15);
border-radius: 0px;
background-clip: padding-box; }
.dropdown-menu.pull-right {
right: 0;
left: auto; }
.dropdown-menu .divider {
height: 1px;
margin: 9.5px 0;
overflow: hidden;
background-color: #e5e5e5; }
.dropdown-menu > li > a {
display: block;
padding: 7px 20px;
clear: both;
font-weight: 400;
line-height: 1.5;
color: #333333;
white-space: nowrap; }
.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
text-decoration: none;
color: #262626;
background-color: #f0f0f0; }
.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus {
color: #fff;
text-decoration: none;
outline: 0;
background-color: #3a92d7; }
.dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
color: #777777; }
.dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
text-decoration: none;
background-color: transparent;
background-image: none;
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
cursor: not-allowed; }
.open > .dropdown-menu {
display: block; }
.open > a {
outline: 0; }
.dropdown-menu-right {
left: auto;
right: 0; }
.dropdown-menu-left {
left: 0;
right: auto; }
.dropdown-header {
display: block;
padding: 3px 20px;
font-size: 12px;
line-height: 1.5;
color: #777777;
white-space: nowrap; }
.dropdown-backdrop {
position: fixed;
left: 0;
right: 0;
bottom: 0;
top: 0;
z-index: 990; }
.pull-right > .dropdown-menu {
right: 0;
left: auto; }
.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
border-top: 0;
border-bottom: 4px solid;
content: ""; }
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
top: auto;
bottom: 100%;
margin-bottom: 1px; }
@media (min-width: 768px) {
.navbar-right .dropdown-menu {
right: 0;
left: auto; }
.navbar-right .dropdown-menu-left {
left: 0;
right: auto; } }
.btn-group,
.btn-group-vertical {
position: relative;
display: inline-block;
vertical-align: middle; }
.btn-group > .btn,
.btn-group-vertical > .btn {
position: relative;
float: left; }
.btn-group > .btn:hover, .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
.btn-group-vertical > .btn:hover,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
z-index: 2; }
.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
margin-left: -1px; }
.btn-toolbar {
margin-left: -5px; }
.btn-toolbar:before, .btn-toolbar:after {
content: " ";
display: table; }
.btn-toolbar:after {
clear: both; }
.btn-toolbar .btn-group,
.btn-toolbar .input-group {
float: left; }
.btn-toolbar > .btn,
.btn-toolbar > .btn-group,
.btn-toolbar > .input-group {
margin-left: 5px; }
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
border-radius: 0; }
.btn-group > .btn:first-child {
margin-left: 0; }
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
border-bottom-right-radius: 0;
border-top-right-radius: 0; }
.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
border-bottom-left-radius: 0;
border-top-left-radius: 0; }
.btn-group > .btn-group {
float: left; }
.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
border-radius: 0; }
.btn-group > .btn-group:first-child > .btn:last-child,
.btn-group > .btn-group:first-child > .dropdown-toggle {
border-bottom-right-radius: 0;
border-top-right-radius: 0; }
.btn-group > .btn-group:last-child > .btn:first-child {
border-bottom-left-radius: 0;
border-top-left-radius: 0; }
.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
outline: 0; }
.btn-group > .btn + .dropdown-toggle {
padding-left: 8px;
padding-right: 8px; }
.btn-group > .btn-lg + .dropdown-toggle, .btn-group-lg.btn-group > .btn + .dropdown-toggle {
padding-left: 12px;
padding-right: 12px; }
.btn-group.open .dropdown-toggle {
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); }
.btn-group.open .dropdown-toggle.btn-link {
-webkit-box-shadow: none;
box-shadow: none; }
.btn .caret {
margin-left: 0; }
.btn-lg .caret, .btn-group-lg > .btn .caret {
border-width: 5px 5px 0;
border-bottom-width: 0; }
.dropup .btn-lg .caret, .dropup .btn-group-lg > .btn .caret {
border-width: 0 5px 5px; }
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn {
display: block;
float: none;
width: 100%;
max-width: 100%; }
.btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after {
content: " ";
display: table; }
.btn-group-vertical > .btn-group:after {
clear: both; }
.btn-group-vertical > .btn-group > .btn {
float: none; }
.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
margin-top: -1px;
margin-left: 0; }
.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
border-radius: 0; }
.btn-group-vertical > .btn:first-child:not(:last-child) {
border-top-right-radius: 0px;
border-bottom-right-radius: 0;
border-bottom-left-radius: 0; }
.btn-group-vertical > .btn:last-child:not(:first-child) {
border-bottom-left-radius: 0px;
border-top-right-radius: 0;
border-top-left-radius: 0; }
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
border-radius: 0; }
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
border-bottom-right-radius: 0;
border-bottom-left-radius: 0; }
.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
border-top-right-radius: 0;
border-top-left-radius: 0; }
.btn-group-justified {
display: table;
width: 100%;
table-layout: fixed;
border-collapse: separate; }
.btn-group-justified > .btn,
.btn-group-justified > .btn-group {
float: none;
display: table-cell;
width: 1%; }
.btn-group-justified > .btn-group .btn {
width: 100%; }
.btn-group-justified > .btn-group .dropdown-menu {
left: auto; }
[data-toggle="buttons"] > .btn input[type="radio"],
[data-toggle="buttons"] > .btn input[type="checkbox"],
[data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
position: absolute;
clip: rect(0, 0, 0, 0);
pointer-events: none; }
.input-group {
position: relative;
display: table;
border-collapse: separate; }
.input-group[class*="col-"] {
float: none;
padding-left: 0;
padding-right: 0; }
.input-group .form-control {
position: relative;
z-index: 2;
float: left;
width: 100%;
margin-bottom: 0; }
.input-group-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: 14.5px;
font-weight: normal;
line-height: 1;
color: #555555;
text-align: center;
background-color: #eeeeee;
border: 1px solid #ccc;
border-radius: 0px; }
.input-group-addon.input-sm,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .input-group-addon.btn {
padding: 5px 10px;
font-size: 12px;
border-radius: 0px; }
.input-group-addon.input-lg,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .input-group-addon.btn {
padding: 10px 16px;
font-size: 19px;
border-radius: 0px; }
.input-group-addon input[type="radio"],
.input-group-addon input[type="checkbox"] {
margin-top: 0; }
.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
border-bottom-right-radius: 0;
border-top-right-radius: 0; }
.input-group-addon:first-child {
border-right: 0; }
.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
border-bottom-left-radius: 0;
border-top-left-radius: 0; }
.input-group-addon:last-child {
border-left: 0; }
.input-group-btn {
position: relative;
font-size: 0;
white-space: nowrap; }
.input-group-btn > .btn {
position: relative; }
.input-group-btn > .btn + .btn {
margin-left: -1px; }
.input-group-btn > .btn:hover, .input-group-btn > .btn:focus, .input-group-btn > .btn:active {
z-index: 2; }
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group {
margin-right: -1px; }
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
margin-left: -1px; }
.nav {
margin-bottom: 0;
padding-left: 0;
list-style: none; }
.nav:before, .nav:after {
content: " ";
display: table; }
.nav:after {
clear: both; }
.nav > li {
position: relative;
display: block; }
.nav > li > a {
position: relative;
display: block;
padding: 5px 12px; }
.nav > li > a:hover, .nav > li > a:focus {
text-decoration: none;
background-color: #eeeeee; }
.nav > li.disabled > a {
color: #777777; }
.nav > li.disabled > a:hover, .nav > li.disabled > a:focus {
color: #777777;
text-decoration: none;
background-color: transparent;
cursor: not-allowed; }
.nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
background-color: #eeeeee;
border-color: #3a92d7; }
.nav .nav-divider {
height: 1px;
margin: 9.5px 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.5;
border: 1px solid transparent;
border-radius: 0px 0px 0 0; }
.nav-tabs > li > a:hover {
border-color: #eeeeee #eeeeee #ddd; }
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
color: #555555;
background-color: #fff;
border: 1px solid #ddd;
border-bottom-color: transparent;
cursor: default; }
.nav-pills > li {
float: left; }
.nav-pills > li > a {
border-radius: 0px; }
.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: #3a92d7; }
.nav-stacked > li {
float: none; }
.nav-stacked > li + li {
margin-top: 2px;
margin-left: 0; }
.nav-justified, .nav-tabs.nav-justified {
width: 100%; }
.nav-justified > li, .nav-tabs.nav-justified > li {
float: none; }
.nav-justified > li > a, .nav-tabs.nav-justified > li > a {
text-align: center;
margin-bottom: 5px; }
.nav-justified > .dropdown .dropdown-menu {
top: auto;
left: auto; }
@media (min-width: 768px) {
.nav-justified > li, .nav-tabs.nav-justified > li {
display: table-cell;
width: 1%; }
.nav-justified > li > a, .nav-tabs.nav-justified > li > a {
margin-bottom: 0; } }
.nav-tabs-justified, .nav-tabs.nav-justified {
border-bottom: 0; }
.nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
margin-right: 0;
border-radius: 0px; }
.nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus,
.nav-tabs.nav-justified > .active > a:focus {
border: 1px solid #ddd; }
@media (min-width: 768px) {
.nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
border-bottom: 1px solid #ddd;
border-radius: 0px 0px 0 0; }
.nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus,
.nav-tabs.nav-justified > .active > a:focus {
border-bottom-color: #fff; } }
.tab-content > .tab-pane {
display: none;
visibility: hidden; }
.tab-content > .active {
display: block;
visibility: visible; }
.nav-tabs .dropdown-menu {
margin-top: -1px;
border-top-right-radius: 0;
border-top-left-radius: 0; }
.navbar {
position: relative;
min-height: 50px;
margin-bottom: 21px;
border: 1px solid transparent; }
.navbar:before, .navbar:after {
content: " ";
display: table; }
.navbar:after {
clear: both; }
@media (min-width: 768px) {
.navbar {
border-radius: 0px; } }
.navbar-header:before, .navbar-header:after {
content: " ";
display: table; }
.navbar-header:after {
clear: both; }
@media (min-width: 768px) {
.navbar-header {
float: left; } }
.navbar-collapse {
overflow-x: visible;
padding-right: 15px;
padding-left: 15px;
border-top: 1px solid transparent;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
-webkit-overflow-scrolling: touch; }
.navbar-collapse:before, .navbar-collapse:after {
content: " ";
display: table; }
.navbar-collapse:after {
clear: both; }
.navbar-collapse.in {
overflow-y: auto; }
@media (min-width: 768px) {
.navbar-collapse {
width: auto;
border-top: 0;
box-shadow: none; }
.navbar-collapse.collapse {
display: block !important;
visibility: visible !important;
height: auto !important;
padding-bottom: 0;
overflow: visible !important; }
.navbar-collapse.in {
overflow-y: visible; }
.navbar-fixed-top .navbar-collapse, .navbar-static-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse {
padding-left: 0;
padding-right: 0; } }
.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
max-height: 340px; }
@media (max-device-width: 480px) and (orientation: landscape) {
.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
max-height: 200px; } }
.container > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-header,
.container-fluid > .navbar-collapse {
margin-right: -15px;
margin-left: -15px; }
@media (min-width: 768px) {
.container > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-header,
.container-fluid > .navbar-collapse {
margin-right: 0;
margin-left: 0; } }
.navbar-static-top {
z-index: 1000;
border-width: 0 0 1px; }
@media (min-width: 768px) {
.navbar-static-top {
border-radius: 0; } }
.navbar-fixed-top,
.navbar-fixed-bottom {
position: fixed;
right: 0;
left: 0;
z-index: 1030; }
@media (min-width: 768px) {
.navbar-fixed-top,
.navbar-fixed-bottom {
border-radius: 0; } }
.navbar-fixed-top {
top: 0;
border-width: 0 0 1px; }
.navbar-fixed-bottom {
bottom: 0;
margin-bottom: 0;
border-width: 1px 0 0; }
.navbar-brand {
float: left;
padding: 14.5px 15px;
font-size: 19px;
line-height: 21px;
height: 50px;
font-weight: 700; }
.navbar-brand:hover, .navbar-brand:focus {
text-decoration: none; }
.navbar-brand > img {
display: block; }
@media (min-width: 768px) {
.navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand {
margin-left: -15px; } }
.navbar-toggle {
position: relative;
float: right;
margin-right: 15px;
padding: 9px 10px;
margin-top: 8px;
margin-bottom: 8px;
background-color: transparent;
background-image: none;
border: 1px solid transparent;
border-radius: 0px; }
.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.25px -15px; }
.navbar-nav > li > a {
padding-top: 10px;
padding-bottom: 10px;
line-height: 21px; }
@media (max-width: 767px) {
.navbar-nav .open .dropdown-menu {
position: static;
float: none;
width: auto;
margin-top: 0;
background-color: transparent;
border: 0;
box-shadow: none; }
.navbar-nav .open .dropdown-menu > li > a,
.navbar-nav .open .dropdown-menu .dropdown-header {
padding: 5px 15px 5px 25px; }
.navbar-nav .open .dropdown-menu > li > a {
line-height: 21px; }
.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: 14.5px;
padding-bottom: 14.5px; } }
.navbar-inverse .navbar-form button {
background-color: transparent;
border: 1px solid #fff;
color: white; }
.navbar-inverse .navbar-form button:hover {
background-color: #303c3e; }
.navbar-form {
margin-left: -15px;
margin-right: -15px;
padding: 10px 15px;
border-top: 1px solid transparent;
border-bottom: 1px solid transparent;
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
margin-top: 7.5px;
margin-bottom: 7.5px; }
@media (min-width: 768px) {
.navbar-form .form-group {
display: inline-block;
margin-bottom: 0;
vertical-align: middle; }
.navbar-form .form-control {
display: inline-block;
width: auto;
vertical-align: middle; }
.navbar-form .form-control-static {
display: inline-block; }
.navbar-form .input-group {
display: inline-table;
vertical-align: middle; }
.navbar-form .input-group .input-group-addon,
.navbar-form .input-group .input-group-btn,
.navbar-form .input-group .form-control {
width: auto; }
.navbar-form .input-group > .form-control {
width: 100%; }
.navbar-form .control-label {
margin-bottom: 0;
vertical-align: middle; }
.navbar-form .radio,
.navbar-form .checkbox {
display: inline-block;
margin-top: 0;
margin-bottom: 0;
vertical-align: middle; }
.navbar-form .radio label,
.navbar-form .checkbox label {
padding-left: 0; }
.navbar-form .radio input[type="radio"],
.navbar-form .checkbox input[type="checkbox"] {
position: relative;
margin-left: 0; }
.navbar-form .has-feedback .form-control-feedback {
top: 0; } }
@media (max-width: 767px) {
.navbar-form .form-group {
margin-bottom: 5px; }
.navbar-form .form-group:last-child {
margin-bottom: 0; } }
@media (min-width: 768px) {
.navbar-form {
width: auto;
border: 0;
margin-left: 0;
margin-right: 0;
padding-top: 0;
padding-bottom: 0;
-webkit-box-shadow: none;
box-shadow: none; } }
.navbar-nav > li > .dropdown-menu {
margin-top: 15px;
border-top-right-radius: 0;
border-top-left-radius: 0; }
.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
border-top-right-radius: 0px;
border-top-left-radius: 0px;
border-bottom-right-radius: 0;
border-bottom-left-radius: 0; }
.navbar-btn {
margin-top: 7.5px;
margin-bottom: 7.5px; }
.navbar-btn.btn-sm, .btn-group-sm > .navbar-btn.btn {
margin-top: 10px;
margin-bottom: 10px; }
.navbar-btn.btn-xs, .btn-group-xs > .navbar-btn.btn {
margin-top: 14px;
margin-bottom: 14px; }
.navbar-text {
margin-top: 14.5px;
margin-bottom: 14.5px; }
@media (min-width: 768px) {
.navbar-text {
float: left;
margin-left: 15px;
margin-right: 15px; } }
@media (min-width: 768px) {
.navbar-left {
float: left !important; }
.navbar-right {
float: right !important;
margin-right: -15px; }
.navbar-right ~ .navbar-right {
margin-right: 0; } }
.navbar-default {
background-color: #fff;
border-color: #ccc; }
.navbar-default .navbar-brand {
color: #000; }
.navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus {
color: black;
background-color: transparent; }
.navbar-default .navbar-text {
color: #000; }
.navbar-default .navbar-nav > li > a {
color: #000;
font-weight: 600; }
.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
color: #505050;
background-color: transparent; }
.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
color: #000;
background-color: #f0f0f0; }
.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: #000; }
.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
background-color: #f0f0f0; }
.navbar-default .navbar-toggle .icon-bar {
background-color: #000; }
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
border-color: #ccc; }
.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
background-color: #f0f0f0;
color: #000; }
@media (max-width: 767px) {
.navbar-default .navbar-nav .open .dropdown-menu > li > a {
color: #000; }
.navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
color: #505050;
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: #000;
background-color: #f0f0f0; }
.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: #000; }
.navbar-default .navbar-link:hover {
color: #505050; }
.navbar-default .btn-link {
color: #000; }
.navbar-default .btn-link:hover, .navbar-default .btn-link:focus {
color: #505050; }
.navbar-default .btn-link[disabled]:hover, .navbar-default .btn-link[disabled]:focus, fieldset[disabled] .navbar-default .btn-link:hover, fieldset[disabled] .navbar-default .btn-link:focus {
color: #ccc; }
.navbar-inverse {
background-color: #252e30;
border-color: #0f1213; }
.navbar-inverse .navbar-brand {
color: #fff; }
.navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus {
color: #e6e6e6;
background-color: transparent; }
.navbar-inverse .navbar-text {
color: #9d9d9d; }
.navbar-inverse .navbar-nav > li > a {
color: #fff; }
.navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus {
color: #019c70;
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: #181d1f; }
.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: #fff; }
.navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus {
background-color: #3b4a4d; }
.navbar-inverse .navbar-toggle .icon-bar {
background-color: #fff; }
.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
border-color: #151b1c; }
.navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus {
background-color: #181d1f;
color: #fff; }
@media (max-width: 767px) {
.navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
border-color: #0f1213; }
.navbar-inverse .navbar-nav .open .dropdown-menu .divider {
background-color: #0f1213; }
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
color: #fff; }
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
color: #019c70;
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: #181d1f; }
.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: #fff; }
.navbar-inverse .navbar-link:hover {
color: #019c70; }
.navbar-inverse .btn-link {
color: #fff; }
.navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus {
color: #019c70; }
.navbar-inverse .btn-link[disabled]:hover, .navbar-inverse .btn-link[disabled]:focus, fieldset[disabled] .navbar-inverse .btn-link:hover, fieldset[disabled] .navbar-inverse .btn-link:focus {
color: #444; }
.breadcrumb {
padding: 8px 15px;
margin-bottom: 21px;
list-style: none;
background-color: #f7f7f7;
border: 1px solid #ccc;
border-radius: 0px; }
.breadcrumb > li {
display: inline-block; }
.breadcrumb > li + li:before {
content: "/ ";
padding: 0 5px;
color: #ccc; }
.breadcrumb > .active {
color: #505050; }
.pagination {
display: inline-block;
padding-left: 0;
margin: 21px 0;
border-radius: 0px; }
.pagination > li {
display: inline; }
.pagination > li > a,
.pagination > li > span {
position: relative;
float: left;
padding: 6px 12px;
line-height: 1.5;
text-decoration: none;
color: #3a92d7;
background-color: #fff;
border: 1px solid #ddd;
margin-left: -1px; }
.pagination > li:first-child > a,
.pagination > li:first-child > span {
margin-left: 0;
border-bottom-left-radius: 0px;
border-top-left-radius: 0px; }
.pagination > li:last-child > a,
.pagination > li:last-child > span {
border-bottom-right-radius: 0px;
border-top-right-radius: 0px; }
.pagination > li > a:hover, .pagination > li > a:focus,
.pagination > li > span:hover,
.pagination > li > span:focus {
color: #216aa3;
background-color: #eeeeee;
border-color: #ddd; }
.pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus,
.pagination > .active > span,
.pagination > .active > span:hover,
.pagination > .active > span:focus {
z-index: 2;
color: #fff;
background-color: #3a92d7;
border-color: #3a92d7;
cursor: default; }
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
color: #777777;
background-color: #fff;
border-color: #ddd;
cursor: not-allowed; }
.pagination-lg > li > a,
.pagination-lg > li > span {
padding: 10px 16px;
font-size: 19px; }
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
border-bottom-left-radius: 0px;
border-top-left-radius: 0px; }
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
border-bottom-right-radius: 0px;
border-top-right-radius: 0px; }
.pagination-sm > li > a,
.pagination-sm > li > span {
padding: 5px 10px;
font-size: 12px; }
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
border-bottom-left-radius: 0px;
border-top-left-radius: 0px; }
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
border-bottom-right-radius: 0px;
border-top-right-radius: 0px; }
.pager {
padding-left: 0;
margin: 21px 0;
list-style: none;
text-align: center; }
.pager:before, .pager:after {
content: " ";
display: table; }
.pager:after {
clear: both; }
.pager li {
display: inline; }
.pager li > a,
.pager li > span {
display: inline-block;
padding: 5px 14px;
background-color: #fff;
border: 1px solid #ddd;
border-radius: 0px; }
.pager li > a:hover,
.pager li > a:focus {
text-decoration: none;
background-color: #eeeeee; }
.pager .next > a,
.pager .next > span {
float: right; }
.pager .previous > a,
.pager .previous > span {
float: left; }
.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
color: #777777;
background-color: #fff;
cursor: not-allowed; }
.label {
display: inline;
padding: .5em 1.2em;
font-size: 80%;
font-weight: bold;
line-height: 1;
color: #fff;
text-align: center;
white-space: nowrap;
vertical-align: baseline;
border-radius: 0; }
.label:empty {
display: none; }
.btn .label {
position: relative;
top: -1px; }
a.label:hover, a.label:focus {
color: #fff;
text-decoration: none;
cursor: pointer; }
.label-default {
background-color: #505050; }
.label-default[href]:hover, .label-default[href]:focus {
background-color: #373737; }
.label-primary {
background-color: #3a92d7; }
.label-primary[href]:hover, .label-primary[href]:focus {
background-color: #2578b9; }
.label-success {
background-color: #00ca6d; }
.label-success[href]:hover, .label-success[href]:focus {
background-color: #009751; }
.label-info {
background-color: #00c0ef; }
.label-info[href]:hover, .label-info[href]:focus {
background-color: #0097bc; }
.label-warning {
background-color: #fcad26; }
.label-warning[href]:hover, .label-warning[href]:focus {
background-color: #ec9603; }
.label-danger {
background-color: #f56954; }
.label-danger[href]:hover, .label-danger[href]:focus {
background-color: #f23f24; }
.badge {
display: inline-block;
min-width: 10px;
padding: 5px;
font-size: 12px;
font-weight: bold;
color: #555;
line-height: 1;
vertical-align: baseline;
white-space: nowrap;
text-align: center;
background-color: #fff;
border: 1px solid #ccc;
border-radius: 10rem; }
.badge:empty {
display: none; }
.btn .badge {
position: relative;
top: -1px; }
.btn-xs .badge, .btn-group-xs > .btn .badge {
top: 0;
padding: 1px 5px; }
.list-group-item.active > .badge, .nav-pills > .active > a > .badge {
color: #3a92d7;
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; }
button > .badge {
padding: 3px 6px;
border: none; }
a.badge:hover, a.badge:focus {
color: #fff;
text-decoration: none;
cursor: pointer; }
.jumbotron {
padding: 30px 15px;
margin-bottom: 30px;
color: inherit;
background-color: #eeeeee; }
.jumbotron h1,
.jumbotron .h1 {
color: inherit; }
.jumbotron p {
margin-bottom: 15px;
font-size: 22px;
font-weight: 200; }
.jumbotron > hr {
border-top-color: #d5d5d5; }
.container .jumbotron, .container-fluid .jumbotron {
border-radius: 0px; }
.jumbotron .container {
max-width: 100%; }
@media screen and (min-width: 768px) {
.jumbotron {
padding: 48px 0; }
.container .jumbotron, .container-fluid .jumbotron {
padding-left: 60px;
padding-right: 60px; }
.jumbotron h1,
.jumbotron .h1 {
font-size: 50.75px; } }
.thumbnail {
display: block;
padding: 4px;
margin-bottom: 21px;
line-height: 1.5;
background-color: #fff;
border: 1px solid #ddd;
border-radius: 0px;
-webkit-transition: border 0.2s ease-in-out;
-o-transition: border 0.2s ease-in-out;
transition: border 0.2s ease-in-out; }
.thumbnail > img,
.thumbnail a > img {
display: block;
max-width: 100%;
height: auto;
margin-left: auto;
margin-right: auto; }
.thumbnail .caption {
padding: 9px;
color: #333333; }
a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
border-color: #3a92d7; }
.alert {
padding: 7px;
margin-bottom: 21px;
border: 1px solid transparent;
border-radius: 0px;
font-size: 13.05px; }
.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: 27px; }
.alert-dismissable .close,
.alert-dismissible .close {
position: relative;
top: -2px;
right: -21px;
color: inherit; }
.alert-success {
background-color: #00ca6d;
border-color: #00b142;
color: #fff; }
.alert-success hr {
border-top-color: #009738; }
.alert-success .alert-link {
color: #e6e6e6; }
.alert-info {
background-color: #00acd6;
border-color: #00acb2;
color: #fff; }
.alert-info hr {
border-top-color: #009498; }
.alert-info .alert-link {
color: #e6e6e6; }
.alert-warning {
background-color: #fcad26;
border-color: #fc7c0d;
color: #fff; }
.alert-warning hr {
border-top-color: #ec6f03; }
.alert-warning .alert-link {
color: #e6e6e6; }
.alert-danger {
background-color: #f56954;
border-color: #f43c43;
color: #fff; }
.alert-danger hr {
border-top-color: #f2242b; }
.alert-danger .alert-link {
color: #e6e6e6; }
@-webkit-keyframes progress-bar-stripes {
from {
background-position: 40px 0; }
to {
background-position: 0 0; } }
@keyframes progress-bar-stripes {
from {
background-position: 40px 0; }
to {
background-position: 0 0; } }
.progress {
overflow: hidden;
height: 1.5rem;
margin-bottom: 21px;
background-color: #fff;
border-radius: 0px;
-webkit-box-shadow: none;
box-shadow: none;
border: 1px solid #ccc; }
.progress-bar {
float: left;
width: 0%;
height: 100%;
font-size: 9.6px;
line-height: 1.5rem;
color: #fff;
text-align: center;
background-color: #3a92d7;
-webkit-box-shadow: none;
box-shadow: none;
-webkit-transition: width 0.6s ease;
-o-transition: width 0.6s ease;
transition: width 0.6s ease; }
.progress-striped .progress-bar,
.progress-bar-striped {
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-size: 40px 40px; }
.progress.active .progress-bar,
.progress-bar.active {
-webkit-animation: progress-bar-stripes 2s linear infinite;
-o-animation: progress-bar-stripes 2s linear infinite;
animation: progress-bar-stripes 2s linear infinite; }
.progress-bar-success {
background-color: #00ca6d; }
.progress-striped .progress-bar-success {
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }
.progress-bar-info {
background-color: #00c0ef; }
.progress-striped .progress-bar-info {
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }
.progress-bar-warning {
background-color: #fcad26; }
.progress-striped .progress-bar-warning {
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }
.progress-bar-danger {
background-color: #f56954; }
.progress-striped .progress-bar-danger {
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }
.media {
margin-top: 15px; }
.media:first-child {
margin-top: 0; }
.media-right,
.media > .pull-right {
padding-left: 10px; }
.media-left,
.media > .pull-left {
padding-right: 10px; }
.media-left,
.media-right,
.media-body {
display: table-cell;
vertical-align: top; }
.media-middle {
vertical-align: middle; }
.media-bottom {
vertical-align: bottom; }
.media-heading {
margin-top: 0;
margin-bottom: 5px; }
.media-list {
padding-left: 0;
list-style: none; }
.list-group {
margin-bottom: 20px;
padding-left: 0; }
.list-group-item {
position: relative;
display: block;
padding: 10px 15px;
margin-bottom: -1px;
background-color: #fff;
border: 1px solid #ddd; }
.list-group-item:first-child {
border-top-right-radius: 0px;
border-top-left-radius: 0px; }
.list-group-item:last-child {
margin-bottom: 0;
border-bottom-right-radius: 0px;
border-bottom-left-radius: 0px; }
a.list-group-item {
color: #555; }
a.list-group-item .list-group-item-heading {
color: #333; }
a.list-group-item:hover, a.list-group-item:focus {
text-decoration: none;
color: #555;
background-color: #f5f5f5; }
.list-group-item.disabled, .list-group-item.disabled:hover, .list-group-item.disabled:focus {
background-color: #eeeeee;
color: #777777;
cursor: not-allowed; }
.list-group-item.disabled .list-group-item-heading, .list-group-item.disabled:hover .list-group-item-heading, .list-group-item.disabled:focus .list-group-item-heading {
color: inherit; }
.list-group-item.disabled .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text {
color: #777777; }
.list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus {
z-index: 2;
color: #fff;
background-color: #3a92d7;
border-color: #3a92d7; }
.list-group-item.active .list-group-item-heading,
.list-group-item.active .list-group-item-heading > small,
.list-group-item.active .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading > small,
.list-group-item.active:hover .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading,
.list-group-item.active:focus .list-group-item-heading > small,
.list-group-item.active:focus .list-group-item-heading > .small {
color: inherit; }
.list-group-item.active .list-group-item-text, .list-group-item.active:hover .list-group-item-text, .list-group-item.active:focus .list-group-item-text {
color: #e4f0f9; }
.list-group-item-success {
color: #fff;
background-color: #00ca6d; }
a.list-group-item-success {
color: #fff; }
a.list-group-item-success .list-group-item-heading {
color: inherit; }
a.list-group-item-success:hover, a.list-group-item-success:focus {
color: #fff;
background-color: #00b15f; }
a.list-group-item-success.active, a.list-group-item-success.active:hover, a.list-group-item-success.active:focus {
color: #fff;
background-color: #fff;
border-color: #fff; }
.list-group-item-info {
color: #fff;
background-color: #00acd6; }
a.list-group-item-info {
color: #fff; }
a.list-group-item-info .list-group-item-heading {
color: inherit; }
a.list-group-item-info:hover, a.list-group-item-info:focus {
color: #fff;
background-color: #0097bc; }
a.list-group-item-info.active, a.list-group-item-info.active:hover, a.list-group-item-info.active:focus {
color: #fff;
background-color: #fff;
border-color: #fff; }
.list-group-item-warning {
color: #fff;
background-color: #fcad26; }
a.list-group-item-warning {
color: #fff; }
a.list-group-item-warning .list-group-item-heading {
color: inherit; }
a.list-group-item-warning:hover, a.list-group-item-warning:focus {
color: #fff;
background-color: #fca30d; }
a.list-group-item-warning.active, a.list-group-item-warning.active:hover, a.list-group-item-warning.active:focus {
color: #fff;
background-color: #fff;
border-color: #fff; }
.list-group-item-danger {
color: #fff;
background-color: #f56954; }
a.list-group-item-danger {
color: #fff; }
a.list-group-item-danger .list-group-item-heading {
color: inherit; }
a.list-group-item-danger:hover, a.list-group-item-danger:focus {
color: #fff;
background-color: #f4543c; }
a.list-group-item-danger.active, a.list-group-item-danger.active:hover, a.list-group-item-danger.active:focus {
color: #fff;
background-color: #fff;
border-color: #fff; }
.list-group-item-heading {
margin-top: 0;
margin-bottom: 5px; }
.list-group-item-text {
margin-bottom: 0;
line-height: 1.3; }
.panel {
margin-bottom: 21px;
background-color: #fff;
border: 1px solid #ccc;
border-radius: 0px;
-webkit-box-shadow: none;
box-shadow: none; }
.panel-body {
padding: 15px; }
.panel-body:before, .panel-body:after {
content: " ";
display: table; }
.panel-body:after {
clear: both; }
.panel-heading {
padding: 10px 15px;
border-bottom: 1px solid transparent;
border-top-right-radius: -1px;
border-top-left-radius: -1px; }
.panel-heading > .dropdown .dropdown-toggle {
color: inherit; }
.panel-title {
margin-top: 0;
margin-bottom: 0;
font-size: 17px;
color: inherit; }
.panel-title > a {
color: inherit; }
.panel-footer {
padding: 10px 15px;
background-color: #f5f5f5;
border-top: 1px solid #ddd;
border-bottom-right-radius: -1px;
border-bottom-left-radius: -1px; }
.panel > .list-group,
.panel > .panel-collapse > .list-group {
margin-bottom: 0; }
.panel > .list-group .list-group-item,
.panel > .panel-collapse > .list-group .list-group-item {
border-width: 1px 0;
border-radius: 0; }
.panel > .list-group:first-child .list-group-item:first-child,
.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
border-top: 0;
border-top-right-radius: -1px;
border-top-left-radius: -1px; }
.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: -1px;
border-bottom-left-radius: -1px; }
.panel-heading + .list-group .list-group-item:first-child {
border-top-width: 0; }
.list-group + .panel-footer {
border-top-width: 0; }
.panel > .table,
.panel > .table-responsive > .table,
.panel > .panel-collapse > .table {
margin-bottom: 0; }
.panel > .table caption,
.panel > .table-responsive > .table caption,
.panel > .panel-collapse > .table caption {
padding-left: 15px;
padding-right: 15px; }
.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
border-top-right-radius: -1px;
border-top-left-radius: -1px; }
.panel > .table:first-child > thead:first-child > tr:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
border-top-left-radius: -1px;
border-top-right-radius: -1px; }
.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
border-top-left-radius: -1px; }
.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
border-top-right-radius: -1px; }
.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
border-bottom-right-radius: -1px;
border-bottom-left-radius: -1px; }
.panel > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
border-bottom-left-radius: -1px;
border-bottom-right-radius: -1px; }
.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
border-bottom-left-radius: -1px; }
.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
border-bottom-right-radius: -1px; }
.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive,
.panel > .table + .panel-body,
.panel > .table-responsive + .panel-body {
border-top: 1px solid #ccc; }
.panel > .table > tbody:first-child > tr:first-child th,
.panel > .table > tbody:first-child > tr:first-child td {
border-top: 0; }
.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
border: 0; }
.panel > .table-bordered > thead > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
border-left: 0; }
.panel > .table-bordered > thead > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
border-right: 0; }
.panel > .table-bordered > thead > tr:first-child > td,
.panel > .table-bordered > thead > tr:first-child > th,
.panel > .table-bordered > tbody > tr:first-child > td,
.panel > .table-bordered > tbody > tr:first-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
border-bottom: 0; }
.panel > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
border-bottom: 0; }
.panel > .table-responsive {
border: 0;
margin-bottom: 0; }
.panel-group {
margin-bottom: 21px; }
.panel-group .panel {
margin-bottom: 0;
border-radius: 0px; }
.panel-group .panel + .panel {
margin-top: 5px; }
.panel-group .panel-heading {
border-bottom: 0; }
.panel-group .panel-heading + .panel-collapse > .panel-body,
.panel-group .panel-heading + .panel-collapse > .list-group {
border-top: 1px solid #ddd; }
.panel-group .panel-footer {
border-top: 0; }
.panel-group .panel-footer + .panel-collapse .panel-body {
border-bottom: 1px solid #ddd; }
.panel-default {
border-color: #ddd; }
.panel-default > .panel-heading {
color: #333333;
background-color: #f5f5f5;
border-color: #ddd; }
.panel-default > .panel-heading + .panel-collapse > .panel-body {
border-top-color: #ddd; }
.panel-default > .panel-heading .badge {
color: #f5f5f5;
background-color: #333333; }
.panel-default > .panel-footer + .panel-collapse > .panel-body {
border-bottom-color: #ddd; }
.panel-primary {
border-color: #3a92d7; }
.panel-primary > .panel-heading {
color: #fff;
background-color: #3a92d7;
border-color: #3a92d7; }
.panel-primary > .panel-heading + .panel-collapse > .panel-body {
border-top-color: #3a92d7; }
.panel-primary > .panel-heading .badge {
color: #3a92d7;
background-color: #fff; }
.panel-primary > .panel-footer + .panel-collapse > .panel-body {
border-bottom-color: #3a92d7; }
.panel-success {
border-color: #00b142; }
.panel-success > .panel-heading {
color: #fff;
background-color: #00ca6d;
border-color: #00b142; }
.panel-success > .panel-heading + .panel-collapse > .panel-body {
border-top-color: #00b142; }
.panel-success > .panel-heading .badge {
color: #00ca6d;
background-color: #fff; }
.panel-success > .panel-footer + .panel-collapse > .panel-body {
border-bottom-color: #00b142; }
.panel-info {
border-color: #00acb2; }
.panel-info > .panel-heading {
color: #fff;
background-color: #00acd6;
border-color: #00acb2; }
.panel-info > .panel-heading + .panel-collapse > .panel-body {
border-top-color: #00acb2; }
.panel-info > .panel-heading .badge {
color: #00acd6;
background-color: #fff; }
.panel-info > .panel-footer + .panel-collapse > .panel-body {
border-bottom-color: #00acb2; }
.panel-warning {
border-color: #fc7c0d; }
.panel-warning > .panel-heading {
color: #fff;
background-color: #fcad26;
border-color: #fc7c0d; }
.panel-warning > .panel-heading + .panel-collapse > .panel-body {
border-top-color: #fc7c0d; }
.panel-warning > .panel-heading .badge {
color: #fcad26;
background-color: #fff; }
.panel-warning > .panel-footer + .panel-collapse > .panel-body {
border-bottom-color: #fc7c0d; }
.panel-danger {
border-color: #f43c43; }
.panel-danger > .panel-heading {
color: #fff;
background-color: #f56954;
border-color: #f43c43; }
.panel-danger > .panel-heading + .panel-collapse > .panel-body {
border-top-color: #f43c43; }
.panel-danger > .panel-heading .badge {
color: #f56954;
background-color: #fff; }
.panel-danger > .panel-footer + .panel-collapse > .panel-body {
border-bottom-color: #f43c43; }
.embed-responsive {
position: relative;
display: block;
height: 0;
padding: 0;
overflow: hidden; }
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
position: absolute;
top: 0;
left: 0;
bottom: 0;
height: 100%;
width: 100%;
border: 0; }
.embed-responsive.embed-responsive-16by9 {
padding-bottom: 56.25%; }
.embed-responsive.embed-responsive-4by3 {
padding-bottom: 75%; }
.well, .feed {
min-height: 20px;
padding: 19px;
margin-bottom: 20px;
background-color: #fff;
border: 1px solid #ccc;
border-radius: 0px;
-webkit-box-shadow: none;
box-shadow: none; }
.well blockquote, .feed blockquote {
border-color: #ddd;
border-color: rgba(0, 0, 0, 0.15); }
.well-lg {
padding: 24px;
border-radius: 0px; }
.well-sm {
padding: 9px;
border-radius: 0px; }
.close {
float: right;
font-size: 18.125px;
font-weight: 600;
line-height: 1.25;
color: #000;
text-shadow: none;
opacity: 1;
filter: alpha(opacity=100); }
.close:hover, .close:focus {
color: #000;
text-decoration: none;
cursor: pointer;
opacity: 0.5;
filter: alpha(opacity=50); }
button.close {
padding: 0;
cursor: pointer;
background: transparent;
border: 0;
-webkit-appearance: none; }
.modal-open {
overflow: hidden; }
.modal {
display: none;
overflow: hidden;
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 1040;
-webkit-overflow-scrolling: touch;
outline: 0; }
.modal.fade .modal-dialog {
-webkit-transform: translate(0, -25%);
-ms-transform: translate(0, -25%);
-o-transform: translate(0, -25%);
transform: translate(0, -25%);
-webkit-transition: -webkit-transform 0.3s ease-out;
-moz-transition: -moz-transform 0.3s ease-out;
-o-transition: -o-transform 0.3s ease-out;
transition: transform 0.3s ease-out; }
.modal.in .modal-dialog {
-webkit-transform: translate(0, 0);
-ms-transform: translate(0, 0);
-o-transform: translate(0, 0);
transform: translate(0, 0); }
.modal-open .modal {
overflow-x: hidden;
overflow-y: auto; }
.modal-dialog {
position: relative;
width: auto;
margin: 10px; }
.modal-content {
position: relative;
background-color: #fff;
border: 1px solid #999;
border: 1px solid rgba(0, 0, 0, 0.2);
border-radius: 0px;
-webkit-box-shadow: none;
box-shadow: none;
background-clip: padding-box;
outline: 0; }
.modal-backdrop {
position: absolute;
top: 0;
right: 0;
left: 0;
background-color: #000; }
.modal-backdrop.fade {
opacity: 0;
filter: alpha(opacity=0); }
.modal-backdrop.in {
opacity: 0.7;
filter: alpha(opacity=70); }
.modal-header {
padding: 10px 20px;
border-bottom: 1px solid #ccc;
min-height: 11.5px; }
.modal-header .close {
margin-top: -2px; }
.modal-title {
margin: 0;
font-weight: 700;
line-height: 1.5; }
.modal-body {
position: relative;
padding: 20px; }
.modal-footer {
padding: 10px 20px;
text-align: left;
border-top: 1px solid #ccc; }
.modal-footer:before, .modal-footer:after {
content: " ";
display: table; }
.modal-footer:after {
clear: both; }
.modal-footer .btn + .btn {
margin-left: 5px;
margin-bottom: 0; }
.modal-footer .btn-group .btn + .btn {
margin-left: -1px; }
.modal-footer .btn-block + .btn-block {
margin-left: 0; }
.modal-scrollbar-measure {
position: absolute;
top: -9999px;
width: 50px;
height: 50px;
overflow: scroll; }
@media (min-width: 768px) {
.modal-dialog {
width: 550px;
margin: 30px auto; }
.modal-content {
-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); }
.modal-sm {
width: 450px; } }
@media (min-width: 992px) {
.modal-lg {
width: 750px; } }
.tooltip {
position: absolute;
z-index: 1070;
display: block;
visibility: visible;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 12px;
font-weight: normal;
line-height: 1.4;
opacity: 0;
filter: alpha(opacity=0); }
.tooltip.in {
opacity: 0.9;
filter: alpha(opacity=90); }
.tooltip.top {
margin-top: -3px;
padding: 5px 0; }
.tooltip.right {
margin-left: 3px;
padding: 0 5px; }
.tooltip.bottom {
margin-top: 3px;
padding: 5px 0; }
.tooltip.left {
margin-left: -3px;
padding: 0 5px; }
.tooltip-inner {
max-width: 200px;
padding: 3px 8px;
color: #fff;
text-align: center;
text-decoration: none;
background-color: #000;
border-radius: 0px; }
.tooltip-arrow {
position: absolute;
width: 0;
height: 0;
border-color: transparent;
border-style: solid; }
.tooltip.top .tooltip-arrow {
bottom: 0;
left: 50%;
margin-left: -5px;
border-width: 5px 5px 0;
border-top-color: #000; }
.tooltip.top-left .tooltip-arrow {
bottom: 0;
right: 5px;
margin-bottom: -5px;
border-width: 5px 5px 0;
border-top-color: #000; }
.tooltip.top-right .tooltip-arrow {
bottom: 0;
left: 5px;
margin-bottom: -5px;
border-width: 5px 5px 0;
border-top-color: #000; }
.tooltip.right .tooltip-arrow {
top: 50%;
left: 0;
margin-top: -5px;
border-width: 5px 5px 5px 0;
border-right-color: #000; }
.tooltip.left .tooltip-arrow {
top: 50%;
right: 0;
margin-top: -5px;
border-width: 5px 0 5px 5px;
border-left-color: #000; }
.tooltip.bottom .tooltip-arrow {
top: 0;
left: 50%;
margin-left: -5px;
border-width: 0 5px 5px;
border-bottom-color: #000; }
.tooltip.bottom-left .tooltip-arrow {
top: 0;
right: 5px;
margin-top: -5px;
border-width: 0 5px 5px;
border-bottom-color: #000; }
.tooltip.bottom-right .tooltip-arrow {
top: 0;
left: 5px;
margin-top: -5px;
border-width: 0 5px 5px;
border-bottom-color: #000; }
.popover {
position: absolute;
top: 0;
left: 0;
z-index: 1060;
display: none;
max-width: 276px;
padding: 1px;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 14.5px;
font-weight: normal;
line-height: 1.5;
text-align: left;
background-color: #fff;
background-clip: padding-box;
border: 1px solid #ccc;
border: 1px solid rgba(0, 0, 0, 0.2);
border-radius: 0px;
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
white-space: normal; }
.popover.top {
margin-top: -10px; }
.popover.right {
margin-left: 10px; }
.popover.bottom {
margin-top: 10px; }
.popover.left {
margin-left: -10px; }
.popover-title {
margin: 0;
padding: 8px 14px;
font-size: 14.5px;
background-color: #f7f7f7;
border-bottom: 1px solid #ebebeb;
border-radius: -1px -1px 0 0; }
.popover-content {
padding: 9px 14px; }
.popover > .arrow, .popover > .arrow:after {
position: absolute;
display: block;
width: 0;
height: 0;
border-color: transparent;
border-style: solid; }
.popover > .arrow {
border-width: 11px; }
.popover > .arrow:after {
border-width: 10px;
content: ""; }
.popover.top > .arrow {
left: 50%;
margin-left: -11px;
border-bottom-width: 0;
border-top-color: #999999;
border-top-color: rgba(0, 0, 0, 0.25);
bottom: -11px; }
.popover.top > .arrow:after {
content: " ";
bottom: 1px;
margin-left: -10px;
border-bottom-width: 0;
border-top-color: #fff; }
.popover.right > .arrow {
top: 50%;
left: -11px;
margin-top: -11px;
border-left-width: 0;
border-right-color: #999999;
border-right-color: rgba(0, 0, 0, 0.25); }
.popover.right > .arrow:after {
content: " ";
left: 1px;
bottom: -10px;
border-left-width: 0;
border-right-color: #fff; }
.popover.bottom > .arrow {
left: 50%;
margin-left: -11px;
border-top-width: 0;
border-bottom-color: #999999;
border-bottom-color: rgba(0, 0, 0, 0.25);
top: -11px; }
.popover.bottom > .arrow:after {
content: " ";
top: 1px;
margin-left: -10px;
border-top-width: 0;
border-bottom-color: #fff; }
.popover.left > .arrow {
top: 50%;
right: -11px;
margin-top: -11px;
border-right-width: 0;
border-left-color: #999999;
border-left-color: rgba(0, 0, 0, 0.25); }
.popover.left > .arrow:after {
content: " ";
right: 1px;
border-right-width: 0;
border-left-color: #fff;
bottom: -10px; }
.carousel {
position: relative; }
.carousel-inner {
position: relative;
overflow: hidden;
border: 1px solid #ccc;
width: 100%; }
.carousel-inner > .item {
display: none;
position: relative;
-webkit-transition: 0.6s ease-in-out left;
-o-transition: 0.6s ease-in-out left;
transition: 0.6s ease-in-out left; }
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
display: block;
max-width: 100%;
height: auto;
line-height: 1; }
@media all and (transform-3d), (-webkit-transform-3d) {
.carousel-inner > .item {
transition: transform .6s ease-in-out;
backface-visibility: hidden;
perspective: 1000; }
.carousel-inner > .item.next, .carousel-inner > .item.active.right {
transform: translate3d(100%, 0, 0);
left: 0; }
.carousel-inner > .item.prev, .carousel-inner > .item.active.left {
transform: translate3d(-100%, 0, 0);
left: 0; }
.carousel-inner > .item.next.left, .carousel-inner > .item.prev.right, .carousel-inner > .item.active {
transform: translate3d(0, 0, 0);
left: 0; } }
.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
display: block; }
.carousel-inner > .active {
left: 0; }
.carousel-inner > .next,
.carousel-inner > .prev {
position: absolute;
top: 0;
width: 100%; }
.carousel-inner > .next {
left: 100%; }
.carousel-inner > .prev {
left: -100%; }
.carousel-inner > .next.left,
.carousel-inner > .prev.right {
left: 0; }
.carousel-inner > .active.left {
left: -100%; }
.carousel-inner > .active.right {
left: 100%; }
.carousel-control {
position: absolute;
top: 0;
left: 0;
bottom: 0;
width: 15%;
opacity: 0.5;
filter: alpha(opacity=50);
font-size: 20px;
color: #fff;
text-align: center;
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); }
.carousel-control.left {
/* @include gradient-horizontal($start-color: rgba(0,0,0,.5), $end-color: rgba(0,0,0,.0001)); */ }
.carousel-control.right {
left: auto;
right: 0;
/* @include gradient-horizontal($start-color: rgba(0,0,0,.0001), $end-color: rgba(0,0,0,.5)); */ }
.carousel-control:hover, .carousel-control:focus {
outline: 0;
color: #fff;
text-decoration: none;
opacity: 0.9;
filter: alpha(opacity=90); }
.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .fa-chevron-left,
.carousel-control .fa-chevron-right {
position: absolute;
top: 50%;
z-index: 5;
display: inline-block; }
.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
left: 50%;
margin-left: -10px; }
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
right: 50%;
margin-right: -10px; }
.carousel-control .icon-prev,
.carousel-control .icon-next {
width: 20px;
height: 20px;
margin-top: -10px;
font-family: serif; }
.carousel-control .icon-prev:before {
content: '\2039'; }
.carousel-control .icon-next:before {
content: '\203a'; }
.carousel-indicators {
position: absolute;
bottom: 0;
left: 50%;
z-index: 15;
width: 60%;
margin-left: -30%;
padding-left: 0;
list-style: none;
text-align: center; }
.carousel-indicators li {
display: inline-block;
width: 10px;
height: 10px;
margin: 1px;
text-indent: -999px;
border: 1px solid #fff;
border-radius: 10px;
cursor: pointer;
background-color: #000 \9;
background-color: transparent; }
.carousel-indicators .active {
margin: 0;
width: 12px;
height: 12px;
background-color: #fff; }
.carousel-caption {
position: absolute;
left: 15%;
right: 15%;
bottom: 30px;
z-index: 10;
padding-top: 20px;
padding-bottom: 20px;
color: #fff;
text-align: center;
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); }
.carousel-caption .btn {
text-shadow: none; }
@media screen and (min-width: 768px) {
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-prev,
.carousel-control .icon-next {
width: 30px;
height: 30px;
margin-top: -15px;
font-size: 30px; }
.carousel-control .glyphicon-chevron-left,
.carousel-control .icon-prev {
margin-left: -15px; }
.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-next {
margin-right: -15px; }
.carousel-caption {
left: 20%;
right: 20%;
padding-bottom: 30px; }
.carousel-indicators {
bottom: 20px; } }
.clearfix:before, .clearfix:after {
content: " ";
display: table; }
.clearfix:after {
clear: both; }
.center-block {
display: block;
margin-left: auto;
margin-right: auto; }
.pull-right {
float: right !important; }
.pull-left {
float: left !important; }
.hide {
display: none !important; }
.show {
display: block !important; }
.invisible {
visibility: hidden; }
.text-hide {
font: 0/0 a;
color: transparent;
text-shadow: none;
background-color: transparent;
border: 0; }
.hidden {
display: none !important;
visibility: hidden !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; }
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; }
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; }
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; }
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; }
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; } }
body {
font-family: 'Lato'; }
*:focus {
outline: 0; }
.affix-bottom {
position: relative; }
body[data-slide='push'] {
margin: 0;
overflow: hidden;
position: fixed;
height: 100%;
width: 100%; }
.overlay {
width: 100%;
height: 100%;
position: fixed;
display: none;
background-color: rgba(0, 0, 0, 0.25); }
.wrapper, .left-panel {
visibility: visible !important;
-webkit-transition: -webkit-transform 0.2s cubic-bezier(0.2, 0.3, 0.25, 0.9);
-moz-transition: -moz-transform 0.2s cubic-bezier(0.2, 0.3, 0.25, 0.9) 0s;
-o-transition: -o-transform 0.2s cubic-bezier(0.2, 0.3, 0.25, 0.9);
transition: transform 0.2s cubic-bezier(0.2, 0.3, 0.25, 0.9) 0s; }
.left-panel {
width: 300px !important;
height: 100%;
display: inline-block; }
.slide-in-left {
-webkit-transform: translate3d(300px, 0, 0);
-moz-transform: translate3d(300px, 0, 0);
-ms-transform: translate3d(300px, 0, 0);
-o-transform: translate3d(300px, 0, 0);
transform: translate3d(300px, 0, 0); }
.slide-out {
-webkit-transform: translate3d(0, 0, 0);
-moz-transform: translate3d(0, 0, 0);
-ms-transform: translate3d(0, 0, 0);
-o-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0); }
.hide-overflow {
overflow: hidden !important; }
.slider-panel {
position: fixed;
visibility: hidden;
margin-left: -300px;
border-radius: 0; }
.wrapper {
height: 100%;
position: relative;
overflow-y: auto;
overflow-x: hidden; }
.card {
background-color: white;
border: 1px solid #ddd; }
.card .cover {
height: 150px;
position: relative; }
.card .cover .cover-pics {
display: none; }
.card .cover .avatar {
width: 35px;
border-radius: 10rem;
position: absolute;
bottom: 0;
left: 40%;
margin-bottom: -30px;
width: 63px !important;
border: 4px solid #fff; }
.card .about {
margin-top: 40px;
line-height: 1.85rem !important;
padding-left: 10px;
padding-right: 10px;
padding-bottom: 10px;
text-align: center; }
.card .about .name {
font-weight: 600;
font-size: 1.65rem; }
.card .about .username {
display: block;
font-size: 1.35rem;
color: #888; }
.feed {
border: 1px solid #ddd; }
.feed .micropost {
padding: 20px; }
.feed .micropost .content .avatar-content img {
border-radius: 10rem;
width: 40px; }
.feed .micropost .content .post-content .post {
margin-top: 5px;
margin-left: 20px; }
.feed .micropost .content .post-content .name {
font-weight: 700;
font-size: 1.35rem;
display: inline;
margin-left: 20px; }
.feed .micropost .content .post-content .username {
font-weight: 600;
font-size: 1.25rem;
color: #888;
display: inline; }
.feed .micropost .content .post-content .mention {
font-weight: 700;
color: #019c70; }
.feed .micropost .content .post-content .hashtags {
color: #4285f4;
cursor: pointer;
font-weight: bold; }
.feed .micropost .content .right-content {
color: #999;
font-size: 1.2rem;
font-weight: 700; }
.feed .micropost .actions {
margin-left: 10px;
margin-top: 15px; }
.feed .micropost .actions .actions-content a {
color: #888;
font-size: 1.75rem;
margin-right: 20px;
text-decoration: none; }
.feed .micropost .actions .actions-content a:hover {
color: #4285f4; }
.feed .micropost .actions .actions-content i.disabled {
color: #ccc;
cursor: default; }
.pricing-table {
padding: 0 !important;
background-color: white;
border: 1px solid #ddd; }
.pricing-table .header {
padding: 20px 0px;
background-color: #00ca6d;
text-align: center;
color: white; }
.pricing-table .header .title {
font-weight: bold;
font-size: 3.5rem; }
.pricing-table .header .subtitle {
display: block;
font-weight: lighter;
font-size: 1.25rem; }
.pricing-table .center {
padding: 10px; }
.pricing-table .center ul {
list-style: none;
padding: 5px; }
.pricing-table .center ul li {
font-weight: lighter;
margin-top: 20px;
margin-left: 20px;
font-size: 1.5rem; }
.pricing-table .foot {
background-color: #f4f4f4;
padding: 20px;
text-align: center; }
.pricing-table .foot a, .pricing-table .foot button {
background-color: #00ca6d;
border: none;
width: 150px; }
.gold .header {
background-color: #f29e0d; }
.gold .foot a, .gold .foot button {
background-color: #f29e0d; }
.basic .header {
background-color: #3a92d7; }
.basic .foot a, .basic .foot button {
background-color: #3a92d7; }
.enterprise .header {
background-color: #f56954; }
.enterprise .foot a, .enterprise .foot button {
background-color: #f56954; }
.free .header {
background-color: #476c73; }
.free .foot a, .free .foot button {
background-color: #476c73; }
/*# sourceMappingURL=paper.css.map */
|
docs/identifier-index.html | FujiMakoto/makoto-rivescript | <?xml version="1.0" encoding="ascii"?>
<!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>Identifier Index</title>
<link rel="stylesheet" href="epydoc.css" type="text/css" />
<script type="text/javascript" src="epydoc.js"></script>
</head>
<body bgcolor="white" text="black" link="blue" vlink="#204080"
alink="#204080">
<!-- ==================== NAVIGATION BAR ==================== -->
<table class="navbar" border="0" width="100%" cellpadding="0"
bgcolor="#a0c0ff" cellspacing="0">
<tr valign="middle">
<!-- Tree link -->
<th> <a
href="module-tree.html">Trees</a> </th>
<!-- Index link -->
<th bgcolor="#70b0f0" class="navbar-select"
> Indices </th>
<!-- Help link -->
<th> <a
href="help.html">Help</a> </th>
<!-- Project homepage -->
<th class="navbar" align="right" width="100%">
<table border="0" cellpadding="0" cellspacing="0">
<tr><th class="navbar" align="center"
><a class="navbar" target="_top" href="https://github.com/kirsle/rivescript-python">RiveScript</a></th>
</tr></table></th>
</tr>
</table>
<table width="100%" cellpadding="0" cellspacing="0">
<tr valign="top">
<td width="100%"> </td>
<td>
<table cellpadding="0" cellspacing="0">
<!-- hide/show private -->
<tr><td align="right"><span class="options">[<a href="javascript:void(0);" class="privatelink"
onclick="toggle_private();">hide private</a>]</span></td></tr>
<tr><td align="right"><span class="options"
>[<a href="frames.html" target="_top">frames</a
>] | <a href="identifier-index.html"
target="_top">no frames</a>]</span></td></tr>
</table>
</td>
</tr>
</table>
<table border="0" width="100%">
<tr valign="bottom"><td>
<h1 class="epydoc">Identifier Index</h1>
</td><td>
[
A
B
<a href="#C">C</a>
<a href="#D">D</a>
E
<a href="#F">F</a>
<a href="#G">G</a>
H
I
J
K
<a href="#L">L</a>
M
N
O
<a href="#P">P</a>
Q
<a href="#R">R</a>
<a href="#S">S</a>
<a href="#T">T</a>
U
<a href="#V">V</a>
<a href="#W">W</a>
X
Y
Z
<a href="#_">_</a>
]
</td></table>
<table border="0" width="100%">
<tr valign="top"><td valign="top" width="1%"><h2 class="epydoc"><a name="C">C</a></h2></td>
<td valign="top">
<table class="link-index" width="100%" border="1">
<tr>
<td width="33%" class="link-index"><a href="rivescript.python.PyRiveObjects-class.html#call">call()</a><br />
<span class="index-where">(in <a href="rivescript.python.PyRiveObjects-class.html">PyRiveObjects</a>)</span></td>
<td width="33%" class="link-index"><a href="rivescript.rivescript.RiveScript-class.html#clear_uservars">clear_uservars()</a><br />
<span class="index-where">(in <a href="rivescript.rivescript.RiveScript-class.html">RiveScript</a>)</span></td>
<td width="33%" class="link-index"> </td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="rivescript.rivescript.RiveScript-class.html#check_syntax">check_syntax()</a><br />
<span class="index-where">(in <a href="rivescript.rivescript.RiveScript-class.html">RiveScript</a>)</span></td>
<td width="33%" class="link-index"><a href="rivescript.rivescript.RiveScript-class.html#current_user">current_user()</a><br />
<span class="index-where">(in <a href="rivescript.rivescript.RiveScript-class.html">RiveScript</a>)</span></td>
<td width="33%" class="link-index"> </td>
</tr>
</table>
</td></tr>
<tr valign="top"><td valign="top" width="1%"><h2 class="epydoc"><a name="D">D</a></h2></td>
<td valign="top">
<table class="link-index" width="100%" border="1">
<tr>
<td width="33%" class="link-index"><a href="rivescript.rivescript.RiveScript-class.html#deparse">deparse()</a><br />
<span class="index-where">(in <a href="rivescript.rivescript.RiveScript-class.html">RiveScript</a>)</span></td>
<td width="33%" class="link-index"> </td>
<td width="33%" class="link-index"> </td>
</tr>
<tr><td class="link-index"> </td><td class="link-index"> </td><td class="link-index"> </td></tr>
</table>
</td></tr>
<tr valign="top"><td valign="top" width="1%"><h2 class="epydoc"><a name="F">F</a></h2></td>
<td valign="top">
<table class="link-index" width="100%" border="1">
<tr>
<td width="33%" class="link-index"><a href="rivescript.rivescript.RiveScript-class.html#freeze_uservars">freeze_uservars()</a><br />
<span class="index-where">(in <a href="rivescript.rivescript.RiveScript-class.html">RiveScript</a>)</span></td>
<td width="33%" class="link-index"> </td>
<td width="33%" class="link-index"> </td>
</tr>
<tr><td class="link-index"> </td><td class="link-index"> </td><td class="link-index"> </td></tr>
</table>
</td></tr>
<tr valign="top"><td valign="top" width="1%"><h2 class="epydoc"><a name="G">G</a></h2></td>
<td valign="top">
<table class="link-index" width="100%" border="1">
<tr>
<td width="33%" class="link-index"><a href="rivescript.rivescript.RiveScript-class.html#get_uservar">get_uservar()</a><br />
<span class="index-where">(in <a href="rivescript.rivescript.RiveScript-class.html">RiveScript</a>)</span></td>
<td width="33%" class="link-index"><a href="rivescript.rivescript.RiveScript-class.html#get_uservars">get_uservars()</a><br />
<span class="index-where">(in <a href="rivescript.rivescript.RiveScript-class.html">RiveScript</a>)</span></td>
<td width="33%" class="link-index"> </td>
</tr>
<tr><td class="link-index"> </td><td class="link-index"> </td><td class="link-index"> </td></tr>
</table>
</td></tr>
<tr valign="top"><td valign="top" width="1%"><h2 class="epydoc"><a name="L">L</a></h2></td>
<td valign="top">
<table class="link-index" width="100%" border="1">
<tr>
<td width="33%" class="link-index"><a href="rivescript.rivescript.RiveScript-class.html#last_match">last_match()</a><br />
<span class="index-where">(in <a href="rivescript.rivescript.RiveScript-class.html">RiveScript</a>)</span></td>
<td width="33%" class="link-index"><a href="rivescript.rivescript.RiveScript-class.html#load_directory">load_directory()</a><br />
<span class="index-where">(in <a href="rivescript.rivescript.RiveScript-class.html">RiveScript</a>)</span></td>
<td width="33%" class="link-index"> </td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="rivescript.python.PyRiveObjects-class.html#load">load()</a><br />
<span class="index-where">(in <a href="rivescript.python.PyRiveObjects-class.html">PyRiveObjects</a>)</span></td>
<td width="33%" class="link-index"><a href="rivescript.rivescript.RiveScript-class.html#load_file">load_file()</a><br />
<span class="index-where">(in <a href="rivescript.rivescript.RiveScript-class.html">RiveScript</a>)</span></td>
<td width="33%" class="link-index"> </td>
</tr>
</table>
</td></tr>
<tr valign="top"><td valign="top" width="1%"><h2 class="epydoc"><a name="P">P</a></h2></td>
<td valign="top">
<table class="link-index" width="100%" border="1">
<tr>
<td width="33%" class="link-index"><a href="rivescript.python.PyRiveObjects-class.html">PyRiveObjects</a><br />
<span class="index-where">(in <a href="rivescript.python-module.html" onclick="show_private();">rivescript.python</a>)</span></td>
<td width="33%" class="link-index"><a href="rivescript.python-module.html">python</a><br />
<span class="index-where">(in rivescript)</span></td>
<td width="33%" class="link-index"> </td>
</tr>
<tr><td class="link-index"> </td><td class="link-index"> </td><td class="link-index"> </td></tr>
</table>
</td></tr>
<tr valign="top"><td valign="top" width="1%"><h2 class="epydoc"><a name="R">R</a></h2></td>
<td valign="top">
<table class="link-index" width="100%" border="1">
<tr>
<td width="33%" class="link-index"><a href="rivescript.rivescript-module.html#re_equals">re_equals</a><br />
<span class="index-where">(in <a href="rivescript.rivescript-module.html">rivescript.rivescript</a>)</span></td>
<td width="33%" class="link-index"><a href="rivescript.rivescript-module.html#re_wilds">re_wilds</a><br />
<span class="index-where">(in <a href="rivescript.rivescript-module.html">rivescript.rivescript</a>)</span></td>
<td width="33%" class="link-index"><a href="rivescript.rivescript-module.html#RS_ERR_MATCH">RS_ERR_MATCH</a><br />
<span class="index-where">(in <a href="rivescript.rivescript-module.html">rivescript.rivescript</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="rivescript.rivescript-module.html#re_inherit">re_inherit</a><br />
<span class="index-where">(in <a href="rivescript.rivescript-module.html">rivescript.rivescript</a>)</span></td>
<td width="33%" class="link-index"><a href="rivescript.rivescript-module.html#re_ws">re_ws</a><br />
<span class="index-where">(in <a href="rivescript.rivescript-module.html">rivescript.rivescript</a>)</span></td>
<td width="33%" class="link-index"><a href="rivescript.rivescript-module.html#RS_ERR_REPLY">RS_ERR_REPLY</a><br />
<span class="index-where">(in <a href="rivescript.rivescript-module.html">rivescript.rivescript</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="rivescript.rivescript-module.html#re_nasties">re_nasties</a><br />
<span class="index-where">(in <a href="rivescript.rivescript-module.html">rivescript.rivescript</a>)</span></td>
<td width="33%" class="link-index"><a href="rivescript.rivescript.RiveScript-class.html#reply">reply()</a><br />
<span class="index-where">(in <a href="rivescript.rivescript.RiveScript-class.html">RiveScript</a>)</span></td>
<td width="33%" class="link-index"><a href="rivescript.rivescript-module.html#rs_version">rs_version</a><br />
<span class="index-where">(in <a href="rivescript.rivescript-module.html">rivescript.rivescript</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="rivescript.rivescript-module.html#re_objend">re_objend</a><br />
<span class="index-where">(in <a href="rivescript.rivescript-module.html">rivescript.rivescript</a>)</span></td>
<td width="33%" class="link-index"><a href="rivescript.rivescript-module.html">rivescript</a><br />
<span class="index-where">(in rivescript)</span></td>
<td width="33%" class="link-index"> </td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="rivescript.rivescript-module.html#re_weight">re_weight</a><br />
<span class="index-where">(in <a href="rivescript.rivescript-module.html">rivescript.rivescript</a>)</span></td>
<td width="33%" class="link-index"><a href="rivescript.rivescript.RiveScript-class.html">RiveScript</a><br />
<span class="index-where">(in <a href="rivescript.rivescript-module.html">rivescript.rivescript</a>)</span></td>
<td width="33%" class="link-index"> </td>
</tr>
</table>
</td></tr>
<tr valign="top"><td valign="top" width="1%"><h2 class="epydoc"><a name="S">S</a></h2></td>
<td valign="top">
<table class="link-index" width="100%" border="1">
<tr>
<td width="33%" class="link-index"><a href="rivescript.rivescript.RiveScript-class.html#set_global">set_global()</a><br />
<span class="index-where">(in <a href="rivescript.rivescript.RiveScript-class.html">RiveScript</a>)</span></td>
<td width="33%" class="link-index"><a href="rivescript.rivescript.RiveScript-class.html#set_subroutine">set_subroutine()</a><br />
<span class="index-where">(in <a href="rivescript.rivescript.RiveScript-class.html">RiveScript</a>)</span></td>
<td width="33%" class="link-index"><a href="rivescript.rivescript.RiveScript-class.html#set_variable">set_variable()</a><br />
<span class="index-where">(in <a href="rivescript.rivescript.RiveScript-class.html">RiveScript</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="rivescript.rivescript.RiveScript-class.html#set_handler">set_handler()</a><br />
<span class="index-where">(in <a href="rivescript.rivescript.RiveScript-class.html">RiveScript</a>)</span></td>
<td width="33%" class="link-index"><a href="rivescript.rivescript.RiveScript-class.html#set_substitution">set_substitution()</a><br />
<span class="index-where">(in <a href="rivescript.rivescript.RiveScript-class.html">RiveScript</a>)</span></td>
<td width="33%" class="link-index"><a href="rivescript.rivescript.RiveScript-class.html#sort_replies">sort_replies()</a><br />
<span class="index-where">(in <a href="rivescript.rivescript.RiveScript-class.html">RiveScript</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="rivescript.rivescript.RiveScript-class.html#set_person">set_person()</a><br />
<span class="index-where">(in <a href="rivescript.rivescript.RiveScript-class.html">RiveScript</a>)</span></td>
<td width="33%" class="link-index"><a href="rivescript.rivescript.RiveScript-class.html#set_uservar">set_uservar()</a><br />
<span class="index-where">(in <a href="rivescript.rivescript.RiveScript-class.html">RiveScript</a>)</span></td>
<td width="33%" class="link-index"><a href="rivescript.rivescript.RiveScript-class.html#stream">stream()</a><br />
<span class="index-where">(in <a href="rivescript.rivescript.RiveScript-class.html">RiveScript</a>)</span></td>
</tr>
</table>
</td></tr>
<tr valign="top"><td valign="top" width="1%"><h2 class="epydoc"><a name="T">T</a></h2></td>
<td valign="top">
<table class="link-index" width="100%" border="1">
<tr>
<td width="33%" class="link-index"><a href="rivescript.rivescript.RiveScript-class.html#thaw_uservars">thaw_uservars()</a><br />
<span class="index-where">(in <a href="rivescript.rivescript.RiveScript-class.html">RiveScript</a>)</span></td>
<td width="33%" class="link-index"><a href="rivescript.rivescript.RiveScript-class.html#trigger_info">trigger_info()</a><br />
<span class="index-where">(in <a href="rivescript.rivescript.RiveScript-class.html">RiveScript</a>)</span></td>
<td width="33%" class="link-index"> </td>
</tr>
<tr><td class="link-index"> </td><td class="link-index"> </td><td class="link-index"> </td></tr>
</table>
</td></tr>
<tr valign="top"><td valign="top" width="1%"><h2 class="epydoc"><a name="V">V</a></h2></td>
<td valign="top">
<table class="link-index" width="100%" border="1">
<tr>
<td width="33%" class="link-index"><a href="rivescript.rivescript.RiveScript-class.html#VERSION">VERSION()</a><br />
<span class="index-where">(in <a href="rivescript.rivescript.RiveScript-class.html">RiveScript</a>)</span></td>
<td width="33%" class="link-index"> </td>
<td width="33%" class="link-index"> </td>
</tr>
<tr><td class="link-index"> </td><td class="link-index"> </td><td class="link-index"> </td></tr>
</table>
</td></tr>
<tr valign="top"><td valign="top" width="1%"><h2 class="epydoc"><a name="W">W</a></h2></td>
<td valign="top">
<table class="link-index" width="100%" border="1">
<tr>
<td width="33%" class="link-index"><a href="rivescript.rivescript.RiveScript-class.html#write">write()</a><br />
<span class="index-where">(in <a href="rivescript.rivescript.RiveScript-class.html">RiveScript</a>)</span></td>
<td width="33%" class="link-index"> </td>
<td width="33%" class="link-index"> </td>
</tr>
<tr><td class="link-index"> </td><td class="link-index"> </td><td class="link-index"> </td></tr>
</table>
</td></tr>
<tr valign="top"><td valign="top" width="1%"><h2 class="epydoc"><a name="_">_</a></h2></td>
<td valign="top">
<table class="link-index" width="100%" border="1">
<tr>
<td width="33%" class="link-index"><a href="rivescript.python.PyRiveObjects-class.html#__init__">__init__()</a><br />
<span class="index-where">(in <a href="rivescript.python.PyRiveObjects-class.html">PyRiveObjects</a>)</span></td>
<td width="33%" class="link-index"><a href="rivescript.rivescript.RiveScript-class.html#_init_sort_track">_init_sort_track()</a><br />
<span class="index-where">(in <a href="rivescript.rivescript.RiveScript-class.html">RiveScript</a>)</span></td>
<td width="33%" class="link-index"><a href="rivescript.rivescript.RiveScript-class.html#_sort_trigger_set">_sort_trigger_set()</a><br />
<span class="index-where">(in <a href="rivescript.rivescript.RiveScript-class.html">RiveScript</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="rivescript.rivescript.RiveScript-class.html#__init__">__init__()</a><br />
<span class="index-where">(in <a href="rivescript.rivescript.RiveScript-class.html">RiveScript</a>)</span></td>
<td width="33%" class="link-index"><a href="rivescript.rivescript.RiveScript-class.html#_initTT">_initTT()</a><br />
<span class="index-where">(in <a href="rivescript.rivescript.RiveScript-class.html">RiveScript</a>)</span></td>
<td width="33%" class="link-index"><a href="rivescript.rivescript.RiveScript-class.html#_string_format">_string_format()</a><br />
<span class="index-where">(in <a href="rivescript.rivescript.RiveScript-class.html">RiveScript</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="rivescript.python-module.html#__package__">__package__</a><br />
<span class="index-where">(in <a href="rivescript.python-module.html" onclick="show_private();">rivescript.python</a>)</span></td>
<td width="33%" class="link-index"><a href="rivescript.rivescript.RiveScript-class.html#_is_atomic">_is_atomic()</a><br />
<span class="index-where">(in <a href="rivescript.rivescript.RiveScript-class.html">RiveScript</a>)</span></td>
<td width="33%" class="link-index"><a href="rivescript.rivescript.RiveScript-class.html#_strip_nasties">_strip_nasties()</a><br />
<span class="index-where">(in <a href="rivescript.rivescript.RiveScript-class.html">RiveScript</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="rivescript.rivescript-module.html#__package__">__package__</a><br />
<span class="index-where">(in <a href="rivescript.rivescript-module.html">rivescript.rivescript</a>)</span></td>
<td width="33%" class="link-index"><a href="rivescript.python.PyRiveObjects-class.html#_objects">_objects</a><br />
<span class="index-where">(in <a href="rivescript.python.PyRiveObjects-class.html">PyRiveObjects</a>)</span></td>
<td width="33%" class="link-index"><a href="rivescript.rivescript.RiveScript-class.html#_substitute">_substitute()</a><br />
<span class="index-where">(in <a href="rivescript.rivescript.RiveScript-class.html">RiveScript</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="rivescript.rivescript.RiveScript-class.html#_copy_trigger">_copy_trigger()</a><br />
<span class="index-where">(in <a href="rivescript.rivescript.RiveScript-class.html">RiveScript</a>)</span></td>
<td width="33%" class="link-index"><a href="rivescript.rivescript.RiveScript-class.html#_parse">_parse()</a><br />
<span class="index-where">(in <a href="rivescript.rivescript.RiveScript-class.html">RiveScript</a>)</span></td>
<td width="33%" class="link-index"><a href="rivescript.rivescript.RiveScript-class.html#_topic_triggers">_topic_triggers()</a><br />
<span class="index-where">(in <a href="rivescript.rivescript.RiveScript-class.html">RiveScript</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="rivescript.rivescript.RiveScript-class.html#_dump">_dump()</a><br />
<span class="index-where">(in <a href="rivescript.rivescript.RiveScript-class.html">RiveScript</a>)</span></td>
<td width="33%" class="link-index"><a href="rivescript.rivescript.RiveScript-class.html#_process_tags">_process_tags()</a><br />
<span class="index-where">(in <a href="rivescript.rivescript.RiveScript-class.html">RiveScript</a>)</span></td>
<td width="33%" class="link-index"><a href="rivescript.rivescript.RiveScript-class.html#_warn">_warn()</a><br />
<span class="index-where">(in <a href="rivescript.rivescript.RiveScript-class.html">RiveScript</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="rivescript.rivescript.RiveScript-class.html#_find_trigger_by_inheritence">_find_trigger_by_inheritence()</a><br />
<span class="index-where">(in <a href="rivescript.rivescript.RiveScript-class.html">RiveScript</a>)</span></td>
<td width="33%" class="link-index"><a href="rivescript.rivescript.RiveScript-class.html#_reply_regexp">_reply_regexp()</a><br />
<span class="index-where">(in <a href="rivescript.rivescript.RiveScript-class.html">RiveScript</a>)</span></td>
<td width="33%" class="link-index"><a href="rivescript.rivescript.RiveScript-class.html#_word_count">_word_count()</a><br />
<span class="index-where">(in <a href="rivescript.rivescript.RiveScript-class.html">RiveScript</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="rivescript.rivescript.RiveScript-class.html#_format_message">_format_message()</a><br />
<span class="index-where">(in <a href="rivescript.rivescript.RiveScript-class.html">RiveScript</a>)</span></td>
<td width="33%" class="link-index"><a href="rivescript.rivescript.RiveScript-class.html#_say">_say()</a><br />
<span class="index-where">(in <a href="rivescript.rivescript.RiveScript-class.html">RiveScript</a>)</span></td>
<td width="33%" class="link-index"><a href="rivescript.rivescript.RiveScript-class.html#_write_triggers">_write_triggers()</a><br />
<span class="index-where">(in <a href="rivescript.rivescript.RiveScript-class.html">RiveScript</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="rivescript.rivescript.RiveScript-class.html#_get_topic_tree">_get_topic_tree()</a><br />
<span class="index-where">(in <a href="rivescript.rivescript.RiveScript-class.html">RiveScript</a>)</span></td>
<td width="33%" class="link-index"><a href="rivescript.rivescript.RiveScript-class.html#_sort_list">_sort_list()</a><br />
<span class="index-where">(in <a href="rivescript.rivescript.RiveScript-class.html">RiveScript</a>)</span></td>
<td width="33%" class="link-index"><a href="rivescript.rivescript.RiveScript-class.html#_write_wrapped">_write_wrapped()</a><br />
<span class="index-where">(in <a href="rivescript.rivescript.RiveScript-class.html">RiveScript</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="rivescript.rivescript.RiveScript-class.html#_getreply">_getreply()</a><br />
<span class="index-where">(in <a href="rivescript.rivescript.RiveScript-class.html">RiveScript</a>)</span></td>
<td width="33%" class="link-index"><a href="rivescript.rivescript.RiveScript-class.html#_sort_that_triggers">_sort_that_triggers()</a><br />
<span class="index-where">(in <a href="rivescript.rivescript.RiveScript-class.html">RiveScript</a>)</span></td>
<td width="33%" class="link-index"> </td>
</tr>
</table>
</td></tr>
</table>
<br /><br /><!-- ==================== NAVIGATION BAR ==================== -->
<table class="navbar" border="0" width="100%" cellpadding="0"
bgcolor="#a0c0ff" cellspacing="0">
<tr valign="middle">
<!-- Tree link -->
<th> <a
href="module-tree.html">Trees</a> </th>
<!-- Index link -->
<th bgcolor="#70b0f0" class="navbar-select"
> Indices </th>
<!-- Help link -->
<th> <a
href="help.html">Help</a> </th>
<!-- Project homepage -->
<th class="navbar" align="right" width="100%">
<table border="0" cellpadding="0" cellspacing="0">
<tr><th class="navbar" align="center"
><a class="navbar" target="_top" href="https://github.com/kirsle/rivescript-python">RiveScript</a></th>
</tr></table></th>
</tr>
</table>
<table border="0" cellpadding="0" cellspacing="0" width="100%%">
<tr>
<td align="left" class="footer">
Generated by Epydoc 3.0.1 on Tue Nov 25 18:56:01 2014
</td>
<td align="right" class="footer">
<a target="mainFrame" href="http://epydoc.sourceforge.net"
>http://epydoc.sourceforge.net</a>
</td>
</tr>
</table>
<script type="text/javascript">
<!--
// Private objects are initially displayed (because if
// javascript is turned off then we want them to be
// visible); but by default, we want to hide them. So hide
// them unless we have a cookie that says to show them.
checkCookie();
// -->
</script>
</body>
</html>
|
dashboards/mono/browser/its-companies.html | jsmanrique/talks | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="Bitergia" >
<link rel="shortcut icon" href="../../assets/ico/favicon.png">
<title></title>
<!-- Bootstrap core CSS -->
<link href="./css/bootstrap.min.css" rel="stylesheet">
<link href="./css/jasny-bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="./css/custom.css" rel="stylesheet">
<!-- icons -->
<link rel="stylesheet" href="./css/awesome/css/font-awesome.min.css">
<!-- custom -->
<!-- <link rel="stylesheet" href="VizGrimoireJS/custom.css">-->
<link rel="stylesheet" type="text/css" id="theme" href="./css/vizgrimoire.css">
</head>
<body>
<div id="Navbar"></div>
<div class="container-fluid">
<div class="row"><span class="SectionBreadcrumb col-md-12"></span></div>
<!-- Section HTML will be placed here, do not modify manually -->
<!-- REPLACE SECTION HTML -->
<!-- info text -->
<div class="well">
<div class="row">
<div class="col-md-6">
<p>Some charts and tables for top companies in the project, and a summary of the evolution of their participation with links to more detailed information per company</p>
</div>
<div class="col-md-6">
<!-- evolution #companies -->
<div class="MetricsEvol" data-data-source="its"
data-metrics="its_companies" data-legend="false"
data-title="Active companies per month" data-help="false"
data-light-style="true" style="height: 80px; margin-right:20px;"></div>
</div>
</div>
<div class="row">
<div class="col-md-12 FilterItemsNav">
<div class="FilterItemsNav center-block" data-data-source="its"
data-order-by="its_closed" data-filter="companies"></div>
</div>
</div>
<!-- bar charts: commits, authors company -->
<div class="row">
<!-- commits -->
<div class="col-md-1"></div>
<div class="col-md-4">
<div class="FilterItemsGlobal" data-data-source="its"
data-metric="its_closed" data-filter="companies"
data-legend-div="barchart_legend" data-limit="10"
data-order-by="its_closed"
data-title="Issues closed per company"></div>
</div>
<!-- end commits -->
<div class="col-md-2" id="barchart_legend"
style="text-align:left;font-size: 1.2em;padding-top:10px;padding-left:20px;"></div>
<!-- authors -->
<div class="col-md-4">
<div class="FilterItemsGlobal" data-data-source="its"
data-metric="its_closers" data-filter="companies"
data-legend="false" data-limit="10" data-order-by="its_closed"
data-title="People closing issues per company"></div>
</div>
<!-- end authors -->
<div class="col-md-1"></div>
</div>
<!-- end of bar charts: commits, authors company -->
<!-- commits per company -->
<div id="list" class="row">
<div class="FilterItemsMiniCharts" data-data-source="its"
data-metrics="its_closed,its_closers" data-filter="companies"
data-order-by="its_closed" style="margin-right:20px;"></div>
</div>
<div class="row"><div class="col-md-12">
<div class="FilterItemsNav" data-data-source="its"
data-order-by="its_closed" data-filter="companies"></div>
</div>
</div>
</div>
<!-- end commits per company -->
<!-- END SECTION HTML-->
<footer>
<div id="Footer"></div>
</footer>
</div>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="./lib/jquery-1.11.1.min.js"></script>
<script src="./lib/bootstrap-3.1.1.min.js"></script>
<script src="./lib/jasny-bootstrap-3.1.3.min.js"></script>
<script src="./lib/vizgrimoire.min.js"></script>
<script src="./lib/timezones.js"></script>
<script src="./lib/filter_panel.js"></script>
<script src="./lib/events.js"></script>
<script src="./lib/project_comparison.js"></script>
<!-- Piwik code will be included here-->
<!-- Piwik -->
<!-- End Piwik Code -->
<!-- End of Piwik code -->
</body>
</html>
|
_ng2_docs/4.0.0/classes/url.urlrouter.html | ui-router/ui-router.github.io | ---
---
<!doctype html>
<html class="default no-js">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>UrlRouter | @uirouter/angular</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="../assets/css/main.css">
<link rel="stylesheet" href="../assets/css/uirouter.css">
<script src="../assets/js/modernizr.js"></script>
<script src="../assets/js/reset.js"></script>
</head>
<body>
<header>
<div class="tsd-page-toolbar">
<div class="container">
<div class="table-wrap">
<div class="table-cell" id="tsd-search" data-index="../assets/js/search.js" data-base="..">
<div class="field">
<label for="tsd-search-field" class="tsd-widget search no-caption">Search</label>
<input id="tsd-search-field" type="text" />
</div>
<ul class="results">
<li class="state loading">Preparing search index...</li>
<li class="state failure">The search index is not available</li>
</ul>
<a href="../index.html" class="title">@uirouter/angular</a>
</div>
<div class="table-cell" id="tsd-widgets">
<div id="tsd-filter">
<a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a>
<div class="tsd-filter-group">
<!--
<div class="tsd-select" id="tsd-filter-visibility">
<span class="tsd-select-label">All</span>
<ul class="tsd-select-list">
<li data-value="public">Public</li>
<li data-value="protected">Public/Protected</li>
<li data-value="private" class="selected">All</li>
</ul>
</div>
<input type="checkbox" id="tsd-filter-inherited" checked />
<label class="tsd-widget" for="tsd-filter-inherited">Inherited</label>
-->
<input type="checkbox" id="tsd-filter-externals" checked />
<label class="tsd-widget" for="tsd-filter-externals">Internal UI-Router API</label>
<!--
<input type="checkbox" id="tsd-filter-only-exported" />
<label class="tsd-widget" for="tsd-filter-only-exported">Only exported</label>
-->
</div>
</div>
<a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a>
</div>
</div>
</div>
</div>
<div class="tsd-page-title">
<div class="container">
<ul class="tsd-breadcrumb">
<li>
<a href="../index.html">@uirouter/angular</a>
</li>
<li>
<a href="../modules/url.html">url</a>
</li>
<li>
<a href="url.urlrouter.html">UrlRouter</a>
</li>
</ul>
<h1>Class UrlRouter</h1>
</div>
</div>
</header>
<div class="container container-main">
<div class="row">
<div class="col-8 col-content">
<section class="tsd-panel tsd-comment">
<div class="tsd-comment tsd-typography">
<div class="lead">
<p>Updates URL and responds to URL changes</p>
</div>
<h3 id="deprecation-warning-">Deprecation warning:</h3>
<p>This class is now considered to be an internal API
Use the <a href="url.urlservice.html">UrlService</a> instead.
For configuring URL rules, use the <a href="url.urlrules.html">UrlRules</a> which can be found as <a href="url.urlservice.html#rules">UrlService.rules</a>.</p>
</div>
</section>
<section class="tsd-panel tsd-hierarchy">
<h3>Hierarchy</h3>
<ul class="tsd-hierarchy">
<li>
<span class="target">UrlRouter</span>
</li>
</ul>
</section>
<section class="tsd-panel-group tsd-index-group">
<h2>Index</h2>
<section class="tsd-panel tsd-index-panel">
<div class="tsd-index-content">
<section class="tsd-index-section ">
<h3>Properties</h3>
<ul class="tsd-index-list">
<li class="tsd-kind-property tsd-parent-kind-class"><a href="url.urlrouter.html#urlrulefactory" class="tsd-kind-icon">url<wbr>Rule<wbr>Factory</a></li>
</ul>
</section>
<section class="tsd-index-section ">
<h3>Accessors</h3>
<ul class="tsd-index-list">
<li class="tsd-kind-get-signature tsd-parent-kind-class"><a href="url.urlrouter.html#interceptdeferred" class="tsd-kind-icon">intercept<wbr>Deferred</a></li>
</ul>
</section>
<section class="tsd-index-section ">
<h3>Methods</h3>
<ul class="tsd-index-list">
<li class="tsd-kind-method tsd-parent-kind-class"><a href="url.urlrouter.html#deferintercept" class="tsd-kind-icon">defer<wbr>Intercept</a></li>
<li class="tsd-kind-method tsd-parent-kind-class"><a href="url.urlrouter.html#href" class="tsd-kind-icon">href</a></li>
<li class="tsd-kind-method tsd-parent-kind-class"><a href="url.urlrouter.html#initial" class="tsd-kind-icon">initial</a></li>
<li class="tsd-kind-method tsd-parent-kind-class"><a href="url.urlrouter.html#listen" class="tsd-kind-icon">listen</a></li>
<li class="tsd-kind-method tsd-parent-kind-class"><a href="url.urlrouter.html#match" class="tsd-kind-icon">match</a></li>
<li class="tsd-kind-method tsd-parent-kind-class"><a href="url.urlrouter.html#otherwise" class="tsd-kind-icon">otherwise</a></li>
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-external"><a href="url.urlrouter.html#push" class="tsd-kind-icon">push</a></li>
<li class="tsd-kind-method tsd-parent-kind-class"><a href="url.urlrouter.html#removerule" class="tsd-kind-icon">remove<wbr>Rule</a></li>
<li class="tsd-kind-method tsd-parent-kind-class"><a href="url.urlrouter.html#rule" class="tsd-kind-icon">rule</a></li>
<li class="tsd-kind-method tsd-parent-kind-class"><a href="url.urlrouter.html#rules" class="tsd-kind-icon">rules</a></li>
<li class="tsd-kind-method tsd-parent-kind-class"><a href="url.urlrouter.html#sort" class="tsd-kind-icon">sort</a></li>
<li class="tsd-kind-method tsd-parent-kind-class"><a href="url.urlrouter.html#sync" class="tsd-kind-icon">sync</a></li>
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-external"><a href="url.urlrouter.html#update" class="tsd-kind-icon">update</a></li>
<li class="tsd-kind-method tsd-parent-kind-class"><a href="url.urlrouter.html#when" class="tsd-kind-icon">when</a></li>
</ul>
</section>
</div>
</section>
</section>
<section class="tsd-panel-group tsd-member-group ">
<h2>Properties</h2>
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class">
<a name="urlrulefactory" class="tsd-anchor"></a>
<!--
<h3>url<wbr>Rule<wbr>Factory</h3>
-->
<div class="tsd-signature tsd-kind-icon">url<wbr>Rule<wbr>Factory<span class="tsd-signature-symbol">:</span> <a href="url.urlrulefactory.html" class="tsd-signature-type">UrlRuleFactory</a> <div class="tsd-header">
<p> used to create <a href="../interfaces/url.urlrule.html">UrlRule</a> objects for common cases </p>
</div>
</div>
<div class="tsd-declaration">
<div class="tsd-comment tsd-typography">
<div class="lead">
<p>used to create <a href="../interfaces/url.urlrule.html">UrlRule</a> objects for common cases</p>
</div>
</div>
</div>
<aside class="tsd-sources">
<ul>
<li>Defined in ui-router-core/src/url/urlRouter.ts:30</li>
</ul>
</aside>
</section>
</section>
<section class="tsd-panel-group tsd-member-group ">
<h2>Accessors</h2>
<section class="tsd-panel tsd-member tsd-kind-get-signature tsd-parent-kind-class">
<a name="interceptdeferred" class="tsd-anchor"></a>
<!--
<h3>intercept<wbr>Deferred</h3>
-->
<ul class="tsd-signatures tsd-kind-get-signature tsd-parent-kind-class">
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">get</span> interceptDeferred<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<div class="tsd-comment tsd-typography">
<dl class="tsd-comment-tags">
<dt>deprecated</dt>
<dd><p>use [[UrlService.interceptDeferred]]</p>
</dd>
</dl>
</div>
<div class="tsd-returns">
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4>
</div>
<hr>
<aside class="tsd-sources">
<ul>
<li>Defined in ui-router-core/src/url/urlRouter.ts:119</li>
</ul>
</aside> </li>
</ul>
</section>
</section>
<section class="tsd-panel-group tsd-member-group ">
<h2>Methods</h2>
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class">
<a name="deferintercept" class="tsd-anchor"></a>
<!--
<h3>defer<wbr>Intercept</h3>
-->
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
<li class="tsd-signature tsd-kind-icon">defer<wbr>Intercept<span class="tsd-signature-symbol">(</span>defer<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>defer: <span class="tsd-flag ts-flagOptional">Optional</span> <span class="tsd-signature-type">boolean</span></h5>
</li>
</ul>
<div class="tsd-returns">
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
</div>
<hr>
<aside class="tsd-sources">
<ul>
<li>Defined in ui-router-core/src/url/urlRouter.ts:117</li>
</ul>
</aside> </li>
</ul>
</section>
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class">
<a name="href" class="tsd-anchor"></a>
<!--
<h3>href</h3>
-->
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
<li class="tsd-signature tsd-kind-icon">href<span class="tsd-signature-symbol">(</span>urlMatcher<span class="tsd-signature-symbol">: </span><a href="url.urlmatcher.html" class="tsd-signature-type">UrlMatcher</a>, params<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">any</span>, options<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">object</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span></li>
<li class="tsd-header">
<p> Builds and returns a URL with interpolated parameters </p>
</li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<div class="tsd-comment tsd-typography">
<div class="lead">
<p>Builds and returns a URL with interpolated parameters</p>
</div>
<h4 id="example-">Example:</h4>
<pre><code class="language-js">matcher = $umf.compile(<span class="hljs-string">"/about/:person"</span>);
params = { <span class="hljs-attr">person</span>: <span class="hljs-string">"bob"</span> };
$bob = $urlRouter.href(matcher, params);
<span class="hljs-comment">// $bob == "/about/bob";</span></code></pre>
</div>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>urlMatcher <a href="url.urlmatcher.html" class="tsd-signature-type">UrlMatcher</a></h5>
: <div class="tsd-comment tsd-typography">
<p>The <a href="url.urlmatcher.html">UrlMatcher</a> object which is used as the template of the URL to generate.</p>
</div>
</li>
<li>
<h5>params: <span class="tsd-flag ts-flagOptional">Optional</span> <span class="tsd-signature-type">any</span></h5>
: <div class="tsd-comment tsd-typography">
<p>An object of parameter values to fill the matcher's required parameters.</p>
</div>
</li>
<li>
<h5>options: <span class="tsd-flag ts-flagOptional">Optional</span> <span class="tsd-signature-type">object</span></h5>
: <div class="tsd-comment tsd-typography">
<p>Options object. The options are:</p>
<ul>
<li><strong><code>absolute</code></strong> - {boolean=false}, If true will generate an absolute url, e.g. "<a href="http://www.example.com/fullurl"">http://www.example.com/fullurl"</a>.</li>
</ul>
</div>
<ul class="tsd-parameters">
<li class="tsd-parameter">
<h5>absolute<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></h5>
</li>
</ul>
</li>
</ul>
<div class="tsd-returns">
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4>
: <p>Returns the fully compiled URL, or <code>null</code> if <code>params</code> fail validation against <code>urlMatcher</code></p>
</div>
<hr>
<aside class="tsd-sources">
<ul>
<li>Defined in ui-router-core/src/url/urlRouter.ts:87</li>
</ul>
</aside> </li>
</ul>
</section>
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class">
<a name="initial" class="tsd-anchor"></a>
<!--
<h3>initial</h3>
-->
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
<li class="tsd-signature tsd-kind-icon">initial<span class="tsd-signature-symbol">(</span>handler<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><a href="../interfaces/url.urlrulehandlerfn.html" class="tsd-signature-type">UrlRuleHandlerFn</a><span class="tsd-signature-symbol"> | </span><a href="state.targetstate.html" class="tsd-signature-type">TargetState</a><span class="tsd-signature-symbol"> | </span><a href="../interfaces/state.targetstatedef.html" class="tsd-signature-type">TargetStateDef</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>handler <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><a href="../interfaces/url.urlrulehandlerfn.html" class="tsd-signature-type">UrlRuleHandlerFn</a><span class="tsd-signature-symbol"> | </span><a href="state.targetstate.html" class="tsd-signature-type">TargetState</a><span class="tsd-signature-symbol"> | </span><a href="../interfaces/state.targetstatedef.html" class="tsd-signature-type">TargetStateDef</a></h5>
</li>
</ul>
<div class="tsd-returns">
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
</div>
<hr>
<aside class="tsd-sources">
<ul>
<li>Defined in ui-router-core/src/url/urlRouter.ts:127</li>
</ul>
</aside> </li>
</ul>
</section>
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class">
<a name="listen" class="tsd-anchor"></a>
<!--
<h3>listen</h3>
-->
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
<li class="tsd-signature tsd-kind-icon">listen<span class="tsd-signature-symbol">(</span>enabled<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Function</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>enabled: <span class="tsd-flag ts-flagOptional">Optional</span> <span class="tsd-signature-type">boolean</span></h5>
</li>
</ul>
<div class="tsd-returns">
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Function</span></h4>
</div>
<hr>
<aside class="tsd-sources">
<ul>
<li>Defined in ui-router-core/src/url/urlRouter.ts:115</li>
</ul>
</aside> </li>
</ul>
</section>
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class">
<a name="match" class="tsd-anchor"></a>
<!--
<h3>match</h3>
-->
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
<li class="tsd-signature tsd-kind-icon">match<span class="tsd-signature-symbol">(</span>urlParts<span class="tsd-signature-symbol">: </span><a href="../interfaces/url.urlparts.html" class="tsd-signature-type">UrlParts</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../interfaces/url.matchresult.html" class="tsd-signature-type">MatchResult</a></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>urlParts <a href="../interfaces/url.urlparts.html" class="tsd-signature-type">UrlParts</a></h5>
</li>
</ul>
<div class="tsd-returns">
<h4 class="tsd-returns-title">Returns <a href="../interfaces/url.matchresult.html" class="tsd-signature-type">MatchResult</a></h4>
</div>
<hr>
<aside class="tsd-sources">
<ul>
<li>Defined in ui-router-core/src/url/urlRouter.ts:123</li>
</ul>
</aside> </li>
</ul>
</section>
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class">
<a name="otherwise" class="tsd-anchor"></a>
<!--
<h3>otherwise</h3>
-->
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
<li class="tsd-signature tsd-kind-icon">otherwise<span class="tsd-signature-symbol">(</span>handler<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><a href="../interfaces/url.urlrulehandlerfn.html" class="tsd-signature-type">UrlRuleHandlerFn</a><span class="tsd-signature-symbol"> | </span><a href="state.targetstate.html" class="tsd-signature-type">TargetState</a><span class="tsd-signature-symbol"> | </span><a href="../interfaces/state.targetstatedef.html" class="tsd-signature-type">TargetStateDef</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>handler <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><a href="../interfaces/url.urlrulehandlerfn.html" class="tsd-signature-type">UrlRuleHandlerFn</a><span class="tsd-signature-symbol"> | </span><a href="state.targetstate.html" class="tsd-signature-type">TargetState</a><span class="tsd-signature-symbol"> | </span><a href="../interfaces/state.targetstatedef.html" class="tsd-signature-type">TargetStateDef</a></h5>
</li>
</ul>
<div class="tsd-returns">
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
</div>
<hr>
<aside class="tsd-sources">
<ul>
<li>Defined in ui-router-core/src/url/urlRouter.ts:130</li>
</ul>
</aside> </li>
</ul>
</section>
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-external">
<a name="push" class="tsd-anchor"></a>
<!--
<h3>push</h3>
-->
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-external">
<li class="tsd-signature tsd-kind-icon">push<span class="tsd-signature-symbol">(</span>urlMatcher<span class="tsd-signature-symbol">: </span><a href="url.urlmatcher.html" class="tsd-signature-type">UrlMatcher</a>, params<span class="tsd-signature-symbol">?: </span><a href="../interfaces/params.rawparams.html" class="tsd-signature-type">RawParams</a>, options<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">object</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
<li class="tsd-header">
<p> Internal API. </p>
</li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<div class="tsd-comment tsd-typography">
<div class="lead">
<p>Internal API.</p>
</div>
<p>Pushes a new location to the browser history.</p>
</div>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>urlMatcher <a href="url.urlmatcher.html" class="tsd-signature-type">UrlMatcher</a></h5>
:
</li>
<li>
<h5>params: <span class="tsd-flag ts-flagOptional">Optional</span> <a href="../interfaces/params.rawparams.html" class="tsd-signature-type">RawParams</a></h5>
:
</li>
<li>
<h5>options: <span class="tsd-flag ts-flagOptional">Optional</span> <span class="tsd-signature-type">object</span></h5>
: <div class="tsd-comment tsd-typography">
</div>
<ul class="tsd-parameters">
<li class="tsd-parameter">
<h5><span class="tsd-flag ts-flagOptional">Optional</span> replace<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">boolean</span></h5>
</li>
</ul>
</li>
</ul>
<div class="tsd-returns">
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
</div>
<hr>
<aside class="tsd-sources">
<ul>
<li>Defined in ui-router-core/src/url/urlRouter.ts:63</li>
</ul>
</aside> </li>
</ul>
</section>
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class">
<a name="removerule" class="tsd-anchor"></a>
<!--
<h3>remove<wbr>Rule</h3>
-->
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
<li class="tsd-signature tsd-kind-icon">remove<wbr>Rule<span class="tsd-signature-symbol">(</span>rule<span class="tsd-signature-symbol">: </span><a href="../interfaces/url.urlrule.html" class="tsd-signature-type">UrlRule</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>rule <a href="../interfaces/url.urlrule.html" class="tsd-signature-type">UrlRule</a></h5>
</li>
</ul>
<div class="tsd-returns">
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
</div>
<hr>
<aside class="tsd-sources">
<ul>
<li>Defined in ui-router-core/src/url/urlRouter.ts:133</li>
</ul>
</aside> </li>
</ul>
</section>
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class">
<a name="rule" class="tsd-anchor"></a>
<!--
<h3>rule</h3>
-->
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
<li class="tsd-signature tsd-kind-icon">rule<span class="tsd-signature-symbol">(</span>rule<span class="tsd-signature-symbol">: </span><a href="../interfaces/url.urlrule.html" class="tsd-signature-type">UrlRule</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Function</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>rule <a href="../interfaces/url.urlrule.html" class="tsd-signature-type">UrlRule</a></h5>
</li>
</ul>
<div class="tsd-returns">
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Function</span></h4>
</div>
<hr>
<aside class="tsd-sources">
<ul>
<li>Defined in ui-router-core/src/url/urlRouter.ts:135</li>
</ul>
</aside> </li>
</ul>
</section>
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class">
<a name="rules" class="tsd-anchor"></a>
<!--
<h3>rules</h3>
-->
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
<li class="tsd-signature tsd-kind-icon">rules<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">UrlRule[]</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<div class="tsd-returns">
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">UrlRule[]</span></h4>
</div>
<hr>
<aside class="tsd-sources">
<ul>
<li>Defined in ui-router-core/src/url/urlRouter.ts:137</li>
</ul>
</aside> </li>
</ul>
</section>
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class">
<a name="sort" class="tsd-anchor"></a>
<!--
<h3>sort</h3>
-->
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
<li class="tsd-signature tsd-kind-icon">sort<span class="tsd-signature-symbol">(</span>compareFn<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">function</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>compareFn: <span class="tsd-flag ts-flagOptional">Optional</span> <span class="tsd-signature-type">function</span></h5>
<ul class="tsd-parameters">
<li class="tsd-parameter-siganture">
<ul class="tsd-signatures tsd-kind-type-literal tsd-is-not-exported">
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span>a<span class="tsd-signature-symbol">: </span><a href="../interfaces/url.urlrule.html" class="tsd-signature-type">UrlRule</a>, b<span class="tsd-signature-symbol">: </span><a href="../interfaces/url.urlrule.html" class="tsd-signature-type">UrlRule</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>a <a href="../interfaces/url.urlrule.html" class="tsd-signature-type">UrlRule</a></h5>
</li>
<li>
<h5>b <a href="../interfaces/url.urlrule.html" class="tsd-signature-type">UrlRule</a></h5>
</li>
</ul>
<div class="tsd-returns">
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span></h4>
</div>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<div class="tsd-returns">
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
</div>
<hr>
<aside class="tsd-sources">
<ul>
<li>Defined in ui-router-core/src/url/urlRouter.ts:139</li>
</ul>
</aside> </li>
</ul>
</section>
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class">
<a name="sync" class="tsd-anchor"></a>
<!--
<h3>sync</h3>
-->
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
<li class="tsd-signature tsd-kind-icon">sync<span class="tsd-signature-symbol">(</span>evt<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>evt: <span class="tsd-flag ts-flagOptional">Optional</span> <span class="tsd-signature-type">any</span></h5>
</li>
</ul>
<div class="tsd-returns">
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
</div>
<hr>
<aside class="tsd-sources">
<ul>
<li>Defined in ui-router-core/src/url/urlRouter.ts:113</li>
</ul>
</aside> </li>
</ul>
</section>
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-external">
<a name="update" class="tsd-anchor"></a>
<!--
<h3>update</h3>
-->
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-external">
<li class="tsd-signature tsd-kind-icon">update<span class="tsd-signature-symbol">(</span>read<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
<li class="tsd-header">
<p> Internal API. </p>
</li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<div class="tsd-comment tsd-typography">
<div class="lead">
<p>Internal API.</p>
</div>
</div>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>read: <span class="tsd-flag ts-flagOptional">Optional</span> <span class="tsd-signature-type">boolean</span></h5>
</li>
</ul>
<div class="tsd-returns">
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
</div>
<hr>
<aside class="tsd-sources">
<ul>
<li>Defined in ui-router-core/src/url/urlRouter.ts:42</li>
</ul>
</aside> </li>
</ul>
</section>
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class">
<a name="when" class="tsd-anchor"></a>
<!--
<h3>when</h3>
-->
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
<li class="tsd-signature tsd-kind-icon">when<span class="tsd-signature-symbol">(</span>matcher<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">RegExp</span><span class="tsd-signature-symbol"> | </span><a href="url.urlmatcher.html" class="tsd-signature-type">UrlMatcher</a><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span>, handler<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><a href="../interfaces/url.urlrulehandlerfn.html" class="tsd-signature-type">UrlRuleHandlerFn</a>, options<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">object</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../interfaces/url.urlrule.html" class="tsd-signature-type">UrlRule</a></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>matcher <span class="tsd-signature-type">RegExp</span><span class="tsd-signature-symbol"> | </span><a href="url.urlmatcher.html" class="tsd-signature-type">UrlMatcher</a><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span></h5>
</li>
<li>
<h5>handler <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><a href="../interfaces/url.urlrulehandlerfn.html" class="tsd-signature-type">UrlRuleHandlerFn</a></h5>
</li>
<li>
<h5>options: <span class="tsd-flag ts-flagOptional">Optional</span> <span class="tsd-signature-type">object</span></h5>
<ul class="tsd-parameters">
<li class="tsd-parameter">
<h5>priority<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span></h5>
</li>
</ul>
</li>
</ul>
<div class="tsd-returns">
<h4 class="tsd-returns-title">Returns <a href="../interfaces/url.urlrule.html" class="tsd-signature-type">UrlRule</a></h4>
</div>
<hr>
<aside class="tsd-sources">
<ul>
<li>Defined in ui-router-core/src/url/urlRouter.ts:141</li>
</ul>
</aside> </li>
</ul>
</section>
</section>
</div>
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
<nav class="tsd-navigation primary">
<ul>
<li class="globals ">
<a href="../index.html"><em>@uirouter/angular</em></a>
</li>
<li class="label tsd-is-external">
<span>Public API</span>
</li>
<li class=" tsd-kind-external-module">
<a href="../modules/common.html">common</a>
</li>
<li class=" tsd-kind-external-module">
<a href="../modules/core.html">core</a>
</li>
<li class=" tsd-kind-external-module">
<a href="../modules/directives.html">directives</a>
</li>
<li class=" tsd-kind-external-module">
<a href="../modules/params.html">params</a>
</li>
<li class=" tsd-kind-external-module">
<a href="../modules/resolve.html">resolve</a>
</li>
<li class=" tsd-kind-external-module">
<a href="../modules/state.html">state</a>
</li>
<li class=" tsd-kind-external-module">
<a href="../modules/transition.html">transition</a>
</li>
<li class="current tsd-kind-external-module">
<a href="../modules/url.html">url</a>
</li>
<li class=" tsd-kind-external-module">
<a href="../modules/view.html">view</a>
</li>
<li class="label tsd-is-external">
<span>Internal UI-<wbr><wbr>Router API</span>
</li>
<li class=" tsd-kind-external-module tsd-is-external">
<a href="../modules/common_hof.html">common_<wbr>hof</a>
</li>
<li class=" tsd-kind-external-module tsd-is-external">
<a href="../modules/common_predicates.html">common_<wbr>predicates</a>
</li>
<li class=" tsd-kind-external-module tsd-is-external">
<a href="../modules/common_strings.html">common_<wbr>strings</a>
</li>
<li class=" tsd-kind-external-module tsd-is-external">
<a href="../modules/hooks.html">hooks</a>
</li>
<li class=" tsd-kind-external-module tsd-is-external">
<a href="../modules/ng2.html">ng2</a>
</li>
<li class=" tsd-kind-external-module tsd-is-external">
<a href="../modules/path.html">path</a>
</li>
<li class=" tsd-kind-external-module tsd-is-external">
<a href="../modules/trace.html">trace</a>
</li>
<li class=" tsd-kind-external-module tsd-is-external">
<a href="../modules/vanilla.html">vanilla</a>
</li>
</ul>
</nav>
<nav class="tsd-navigation secondary menu-sticky">
<ul class="before-current">
<li class=" tsd-kind-class tsd-parent-kind-external-module tsd-is-external">
<a href="url.baseurlrule.html" class="tsd-kind-icon">Base<wbr>Url<wbr>Rule</a>
</li>
<li class=" tsd-kind-class tsd-parent-kind-external-module tsd-is-external">
<a href="url.paramfactory.html" class="tsd-kind-icon">Param<wbr>Factory</a>
</li>
<li class=" tsd-kind-class tsd-parent-kind-external-module">
<a href="url.urlconfig.html" class="tsd-kind-icon">Url<wbr>Config</a>
</li>
<li class=" tsd-kind-class tsd-parent-kind-external-module">
<a href="url.urlmatcher.html" class="tsd-kind-icon">Url<wbr>Matcher</a>
</li>
<li class=" tsd-kind-class tsd-parent-kind-external-module tsd-is-external">
<a href="url.urlmatcherfactory.html" class="tsd-kind-icon">Url<wbr>Matcher<wbr>Factory</a>
</li>
</ul>
<ul class="current">
<li class="current tsd-kind-class tsd-parent-kind-external-module tsd-is-external">
<a href="url.urlrouter.html" class="tsd-kind-icon">Url<wbr>Router</a>
<ul>
<li class=" tsd-kind-property tsd-parent-kind-class">
<a href="url.urlrouter.html#urlrulefactory" class="tsd-kind-icon">url<wbr>Rule<wbr>Factory</a>
</li>
<li class=" tsd-kind-get-signature tsd-parent-kind-class">
<a href="url.urlrouter.html#interceptdeferred" class="tsd-kind-icon">intercept<wbr>Deferred</a>
</li>
<li class=" tsd-kind-method tsd-parent-kind-class">
<a href="url.urlrouter.html#deferintercept" class="tsd-kind-icon">defer<wbr>Intercept</a>
</li>
<li class=" tsd-kind-method tsd-parent-kind-class">
<a href="url.urlrouter.html#href" class="tsd-kind-icon">href</a>
</li>
<li class=" tsd-kind-method tsd-parent-kind-class">
<a href="url.urlrouter.html#initial" class="tsd-kind-icon">initial</a>
</li>
<li class=" tsd-kind-method tsd-parent-kind-class">
<a href="url.urlrouter.html#listen" class="tsd-kind-icon">listen</a>
</li>
<li class=" tsd-kind-method tsd-parent-kind-class">
<a href="url.urlrouter.html#match" class="tsd-kind-icon">match</a>
</li>
<li class=" tsd-kind-method tsd-parent-kind-class">
<a href="url.urlrouter.html#otherwise" class="tsd-kind-icon">otherwise</a>
</li>
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-external">
<a href="url.urlrouter.html#push" class="tsd-kind-icon">push</a>
</li>
<li class=" tsd-kind-method tsd-parent-kind-class">
<a href="url.urlrouter.html#removerule" class="tsd-kind-icon">remove<wbr>Rule</a>
</li>
<li class=" tsd-kind-method tsd-parent-kind-class">
<a href="url.urlrouter.html#rule" class="tsd-kind-icon">rule</a>
</li>
<li class=" tsd-kind-method tsd-parent-kind-class">
<a href="url.urlrouter.html#rules" class="tsd-kind-icon">rules</a>
</li>
<li class=" tsd-kind-method tsd-parent-kind-class">
<a href="url.urlrouter.html#sort" class="tsd-kind-icon">sort</a>
</li>
<li class=" tsd-kind-method tsd-parent-kind-class">
<a href="url.urlrouter.html#sync" class="tsd-kind-icon">sync</a>
</li>
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-external">
<a href="url.urlrouter.html#update" class="tsd-kind-icon">update</a>
</li>
<li class=" tsd-kind-method tsd-parent-kind-class">
<a href="url.urlrouter.html#when" class="tsd-kind-icon">when</a>
</li>
</ul>
</li>
</ul>
<ul class="after-current">
<li class=" tsd-kind-class tsd-parent-kind-external-module tsd-is-external">
<a href="url.urlrulefactory.html" class="tsd-kind-icon">Url<wbr>Rule<wbr>Factory</a>
</li>
<li class=" tsd-kind-class tsd-parent-kind-external-module">
<a href="url.urlrules.html" class="tsd-kind-icon">Url<wbr>Rules</a>
</li>
<li class=" tsd-kind-class tsd-parent-kind-external-module">
<a href="url.urlservice.html" class="tsd-kind-icon">Url<wbr>Service</a>
</li>
<li class=" tsd-kind-interface tsd-parent-kind-external-module">
<a href="../interfaces/url.matchresult.html" class="tsd-kind-icon">Match<wbr>Result</a>
</li>
<li class=" tsd-kind-interface tsd-parent-kind-external-module tsd-is-external">
<a href="../interfaces/url.matcherurlrule.html" class="tsd-kind-icon">Matcher<wbr>Url<wbr>Rule</a>
</li>
<li class=" tsd-kind-interface tsd-parent-kind-external-module tsd-is-external">
<a href="../interfaces/url.regexprule.html" class="tsd-kind-icon">Reg<wbr>Exp<wbr>Rule</a>
</li>
<li class=" tsd-kind-interface tsd-parent-kind-external-module tsd-is-external">
<a href="../interfaces/url.staterule.html" class="tsd-kind-icon">State<wbr>Rule</a>
</li>
<li class=" tsd-kind-interface tsd-parent-kind-external-module tsd-is-external">
<a href="../interfaces/url.urlconfigapi.html" class="tsd-kind-icon">Url<wbr>Config<wbr>Api</a>
</li>
<li class=" tsd-kind-interface tsd-parent-kind-external-module tsd-is-external">
<a href="../interfaces/url.urlmatchercompileconfig.html" class="tsd-kind-icon">Url<wbr>Matcher<wbr>Compile<wbr>Config</a>
</li>
<li class=" tsd-kind-interface tsd-parent-kind-external-module tsd-is-external">
<a href="../interfaces/url.urlmatcherconfig.html" class="tsd-kind-icon">Url<wbr>Matcher<wbr>Config</a>
</li>
<li class=" tsd-kind-interface tsd-parent-kind-external-module">
<a href="../interfaces/url.urlparts.html" class="tsd-kind-icon">Url<wbr>Parts</a>
</li>
<li class=" tsd-kind-interface tsd-parent-kind-external-module">
<a href="../interfaces/url.urlrule.html" class="tsd-kind-icon">Url<wbr>Rule</a>
</li>
<li class=" tsd-kind-interface tsd-parent-kind-external-module">
<a href="../interfaces/url.urlrulehandlerfn.html" class="tsd-kind-icon">Url<wbr>Rule<wbr>Handler<wbr>Fn</a>
</li>
<li class=" tsd-kind-interface tsd-parent-kind-external-module">
<a href="../interfaces/url.urlrulematchfn.html" class="tsd-kind-icon">Url<wbr>Rule<wbr>Match<wbr>Fn</a>
</li>
<li class=" tsd-kind-interface tsd-parent-kind-external-module tsd-is-external">
<a href="../interfaces/url.urlrulesapi.html" class="tsd-kind-icon">Url<wbr>Rules<wbr>Api</a>
</li>
<li class=" tsd-kind-interface tsd-parent-kind-external-module tsd-is-external">
<a href="../interfaces/url.urlsyncapi.html" class="tsd-kind-icon">Url<wbr>Sync<wbr>Api</a>
</li>
<li class=" tsd-kind-type-alias tsd-parent-kind-external-module tsd-is-external">
<a href="../modules/url.html#urlruletype" class="tsd-kind-icon">Url<wbr>Rule<wbr>Type</a>
</li>
<li class=" tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported">
<a href="../modules/url.html#defaultrulesortfn" class="tsd-kind-icon">default<wbr>Rule<wbr>Sort<wbr>Fn</a>
</li>
</ul>
</nav>
</div>
</div>
</div>
<footer class="with-border-bottom">
<div class="container">
<h2>Legend</h2>
<div class="tsd-legend-group">
<ul class="tsd-legend">
<li class="tsd-kind-module"><span class="tsd-kind-icon">Module</span></li>
<li class="tsd-kind-object-literal"><span class="tsd-kind-icon">Object literal</span></li>
<li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li>
<li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li>
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
</ul>
<ul class="tsd-legend">
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
<li class="tsd-kind-enum-member"><span class="tsd-kind-icon">Enumeration member</span></li>
<li class="tsd-kind-property tsd-parent-kind-enum"><span class="tsd-kind-icon">Property</span></li>
<li class="tsd-kind-method tsd-parent-kind-enum"><span class="tsd-kind-icon">Method</span></li>
</ul>
<ul class="tsd-legend">
<li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li>
<li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li>
<li class="tsd-kind-constructor tsd-parent-kind-interface"><span class="tsd-kind-icon">Constructor</span></li>
<li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li>
<li class="tsd-kind-method tsd-parent-kind-interface"><span class="tsd-kind-icon">Method</span></li>
<li class="tsd-kind-index-signature tsd-parent-kind-interface"><span class="tsd-kind-icon">Index signature</span></li>
</ul>
<ul class="tsd-legend">
<li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li>
<li class="tsd-kind-class tsd-has-type-parameter"><span class="tsd-kind-icon">Class with type parameter</span></li>
<li class="tsd-kind-constructor tsd-parent-kind-class"><span class="tsd-kind-icon">Constructor</span></li>
<li class="tsd-kind-property tsd-parent-kind-class"><span class="tsd-kind-icon">Property</span></li>
<li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li>
<li class="tsd-kind-accessor tsd-parent-kind-class"><span class="tsd-kind-icon">Accessor</span></li>
<li class="tsd-kind-index-signature tsd-parent-kind-class"><span class="tsd-kind-icon">Index signature</span></li>
</ul>
<ul class="tsd-legend">
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited constructor</span></li>
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited property</span></li>
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited method</span></li>
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited accessor</span></li>
</ul>
<ul class="tsd-legend">
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected property</span></li>
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected method</span></li>
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected accessor</span></li>
</ul>
<ul class="tsd-legend">
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private property</span></li>
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private method</span></li>
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private accessor</span></li>
</ul>
<ul class="tsd-legend">
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static property</span></li>
<li class="tsd-kind-call-signature tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static method</span></li>
</ul>
</div>
</div>
</footer>
<div class="container tsd-generator">
<p>Generated using <a href="http://typedoc.io" target="_blank">TypeDoc</a></p>
</div>
<div class="overlay"></div>
<script src="../assets/js/main.js"></script>
<script>if (location.protocol == 'file:') document.write('<script src="../assets/js/search.js"><' + '/script>');</script>
</body>
</html> |
tmp/rust/inline-sidebar-items/std/collections/hash_map/ValuesMut.t.html | liigo/liigo.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="refresh" content="0;URL=struct.ValuesMut.html">
</head>
<body>
<p>Redirecting to <a href="struct.ValuesMut.html">struct.ValuesMut.html</a>...</p>
<script>location.replace("struct.ValuesMut.html" + location.search + location.hash);</script>
</body>
</html> |
ext/c++/thirdpart/c++/boost/libs/icl/doc/html/header/boost/icl/ptime_hpp.html | yinchunlong/abelkhan-1 | <html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>Header <boost/icl/ptime.hpp></title>
<link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css">
<meta name="generator" content="DocBook XSL Stylesheets V1.76.1">
<link rel="home" href="../../../index.html" title="Chapter 1. Boost.Icl">
<link rel="up" href="../../../interval_container_library_reference.html" title="Interval Container Library Reference">
<link rel="prev" href="../../../boost/icl/value_size_icl_idp27303888.html" title="Struct template value_size<icl::open_interval< DomainT, Compare >>">
<link rel="next" href="../../../boost/icl/is_discrete_bo_idp27312000.html" title="Struct is_discrete<boost::posix_time::ptime>">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
<table cellpadding="2" width="100%"><tr>
<td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../../../boost.png"></td>
<td align="center"><a href="../../../../../../../index.html">Home</a></td>
<td align="center"><a href="../../../../../../libraries.htm">Libraries</a></td>
<td align="center"><a href="http://www.boost.org/users/people.html">People</a></td>
<td align="center"><a href="http://www.boost.org/users/faq.html">FAQ</a></td>
<td align="center"><a href="../../../../../../../more/index.htm">More</a></td>
</tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="../../../boost/icl/value_size_icl_idp27303888.html"><img src="../../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../../interval_container_library_reference.html"><img src="../../../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../index.html"><img src="../../../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="../../../boost/icl/is_discrete_bo_idp27312000.html"><img src="../../../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
<div class="section">
<div class="titlepage"><div><div><h3 class="title">
<a name="header.boost.icl.ptime_hpp"></a>Header <<a href="../../../../../../../boost/icl/ptime.hpp" target="_top">boost/icl/ptime.hpp</a>></h3></div></div></div>
<pre class="synopsis"><span class="keyword">namespace</span> <span class="identifier">boost</span> <span class="special">{</span>
<span class="keyword">namespace</span> <span class="identifier">icl</span> <span class="special">{</span>
<span class="keyword">template</span><span class="special"><</span><span class="special">></span> <span class="keyword">struct</span> <a class="link" href="../../../boost/icl/is_discrete_bo_idp27312000.html" title="Struct is_discrete<boost::posix_time::ptime>">is_discrete</a><span class="special"><</span><span class="identifier">boost</span><span class="special">::</span><span class="identifier">posix_time</span><span class="special">::</span><span class="identifier">ptime</span><span class="special">></span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="special">></span> <span class="keyword">struct</span> <a class="link" href="../../../boost/icl/has_difference_idp27317040.html" title="Struct has_difference<boost::posix_time::ptime>">has_difference</a><span class="special"><</span><span class="identifier">boost</span><span class="special">::</span><span class="identifier">posix_time</span><span class="special">::</span><span class="identifier">ptime</span><span class="special">></span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="special">></span> <span class="keyword">struct</span> <a class="link" href="../../../boost/icl/difference_typ_idp27322080.html" title="Struct difference_type_of<boost::posix_time::ptime>">difference_type_of</a><span class="special"><</span><span class="identifier">boost</span><span class="special">::</span><span class="identifier">posix_time</span><span class="special">::</span><span class="identifier">ptime</span><span class="special">></span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="special">></span> <span class="keyword">struct</span> <a class="link" href="../../../boost/icl/size_type_of_b_idp27324064.html" title="Struct size_type_of<boost::posix_time::ptime>">size_type_of</a><span class="special"><</span><span class="identifier">boost</span><span class="special">::</span><span class="identifier">posix_time</span><span class="special">::</span><span class="identifier">ptime</span><span class="special">></span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="special">></span> <span class="keyword">struct</span> <a class="link" href="../../../boost/icl/is_discrete_bo_idp27326048.html" title="Struct is_discrete<boost::posix_time::time_duration>">is_discrete</a><span class="special"><</span><span class="identifier">boost</span><span class="special">::</span><span class="identifier">posix_time</span><span class="special">::</span><span class="identifier">time_duration</span><span class="special">></span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="special">></span> <span class="keyword">struct</span> <a class="link" href="../../../boost/icl/has_difference_idp27331088.html" title="Struct has_difference<boost::posix_time::time_duration>">has_difference</a><span class="special"><</span><span class="identifier">boost</span><span class="special">::</span><span class="identifier">posix_time</span><span class="special">::</span><span class="identifier">time_duration</span><span class="special">></span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="special">></span> <span class="keyword">struct</span> <a class="link" href="../../../boost/icl/size_type_of_b_idp27336128.html" title="Struct size_type_of<boost::posix_time::time_duration>">size_type_of</a><span class="special"><</span><span class="identifier">boost</span><span class="special">::</span><span class="identifier">posix_time</span><span class="special">::</span><span class="identifier">time_duration</span><span class="special">></span><span class="special">;</span>
<span class="identifier">boost</span><span class="special">::</span><span class="identifier">posix_time</span><span class="special">::</span><span class="identifier">ptime</span> <a name="boost.icl.operator++_idp27338272"></a><span class="keyword">operator</span><span class="special">++</span><span class="special">(</span><span class="identifier">boost</span><span class="special">::</span><span class="identifier">posix_time</span><span class="special">::</span><span class="identifier">ptime</span> <span class="special">&</span> x<span class="special">)</span><span class="special">;</span>
<span class="identifier">boost</span><span class="special">::</span><span class="identifier">posix_time</span><span class="special">::</span><span class="identifier">ptime</span> <a name="boost.icl.operator--_idp27339840"></a><span class="keyword">operator</span><span class="special">--</span><span class="special">(</span><span class="identifier">boost</span><span class="special">::</span><span class="identifier">posix_time</span><span class="special">::</span><span class="identifier">ptime</span> <span class="special">&</span> x<span class="special">)</span><span class="special">;</span>
<span class="identifier">boost</span><span class="special">::</span><span class="identifier">posix_time</span><span class="special">::</span><span class="identifier">time_duration</span>
<a name="boost.icl.operator++_idp27341408"></a><span class="keyword">operator</span><span class="special">++</span><span class="special">(</span><span class="identifier">boost</span><span class="special">::</span><span class="identifier">posix_time</span><span class="special">::</span><span class="identifier">time_duration</span> <span class="special">&</span> x<span class="special">)</span><span class="special">;</span>
<span class="identifier">boost</span><span class="special">::</span><span class="identifier">posix_time</span><span class="special">::</span><span class="identifier">time_duration</span>
<a name="boost.icl.operator--_idp27342976"></a><span class="keyword">operator</span><span class="special">--</span><span class="special">(</span><span class="identifier">boost</span><span class="special">::</span><span class="identifier">posix_time</span><span class="special">::</span><span class="identifier">time_duration</span> <span class="special">&</span> x<span class="special">)</span><span class="special">;</span>
<span class="special">}</span>
<span class="special">}</span></pre>
</div>
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
<td align="left"></td>
<td align="right"><div class="copyright-footer">Copyright © 2007-2010 Joachim
Faulhaber<br>Copyright © 1999-2006 Cortex Software
GmbH<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="../../../boost/icl/value_size_icl_idp27303888.html"><img src="../../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../../interval_container_library_reference.html"><img src="../../../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../index.html"><img src="../../../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="../../../boost/icl/is_discrete_bo_idp27312000.html"><img src="../../../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
</body>
</html>
|
src/main/resources/css/maven-base.css | yyuu/specs | body {
margin: 0px;
padding: 0px;
}
img {
border:none;
}
table {
padding:0px;
width: 100%;
margin-left: -2px;
margin-right: -2px;
}
acronym {
cursor: help;
border-bottom: 1px dotted #feb;
}
table.bodyTable th, table.bodyTable td {
padding: 2px 4px 2px 4px;
vertical-align: top;
}
div.clear{
clear:both;
visibility: hidden;
}
div.clear hr{
display: none;
}
#bannerLeft, #bannerRight {
font-size: xx-large;
font-weight: bold;
}
#bannerLeft img, #bannerRight img {
margin: 0px;
}
.xleft, #bannerLeft img {
float:left;
text-shadow: #7CFC00 1px 1px 1px;
}
.xright, #bannerRight {
float:right;
text-shadow: #7CFC00 1px 1px 1px;
}
#banner {
padding: 0px;
}
#banner img {
border: none;
}
#breadcrumbs {
padding: 3px 10px 3px 10px;
}
#leftColumn {
width: 250px;
float:left;
overflow: auto;
}
#bodyColumn {
margin-right: 1.5em;
margin-left: 277px;
}
#legend {
padding: 8px 0 8px 0;
}
#navcolumn {
padding: 8px 4px 0 8px;
}
#navcolumn h5 {
margin: 0;
padding: 0;
font-size: small;
}
#navcolumn ul {
margin: 0;
padding: 0;
font-size: small;
}
#navcolumn li {
list-style-type: none;
background-image: none;
background-repeat: no-repeat;
background-position: 0 0.4em;
padding-left: 16px;
list-style-position: outside;
line-height: 1.2em;
font-size: smaller;
}
#navcolumn li.expanded {
background-image: url(../images/expanded.gif);
}
#navcolumn li.collapsed {
background-image: url(../images/collapsed.gif);
}
#poweredBy {
text-align: center;
}
#navcolumn img {
margin-top: 10px;
margin-bottom: 3px;
}
#poweredBy img {
display:block;
margin: 20px 0 20px 17px;
}
#search img {
margin: 0px;
display: block;
}
#search #q, #search #btnG {
border: 1px solid #999;
margin-bottom:10px;
}
#search form {
margin: 0px;
}
#lastPublished {
font-size: x-small;
}
.navSection {
margin-bottom: 2px;
padding: 8px;
}
.navSectionHead {
font-weight: bold;
font-size: x-small;
}
.section {
padding: 4px;
}
#footer {
padding: 3px 10px 3px 10px;
font-size: x-small;
}
#breadcrumbs {
font-size: x-small;
margin: 0pt;
}
.source {
padding: 12px;
margin: 1em 7px 1em 7px;
}
.source pre {
margin: 0px;
padding: 0px;
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.